From d2b0ce2efea68aaeef3ad344baf8fd54ac08af19 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Mon, 1 Jan 2024 20:56:17 +0200 Subject: [PATCH 01/23] Initialize v0.41 --- holidays/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/holidays/__init__.py b/holidays/__init__.py index a9ac8f74c..cf2691c17 100644 --- a/holidays/__init__.py +++ b/holidays/__init__.py @@ -16,7 +16,7 @@ from holidays.registry import EntityLoader from holidays.utils import * -__version__ = "0.40" +__version__ = "0.41" EntityLoader.load("countries", globals()) From 5bf63efaa2fb291259c1452af85ab001d6f4c848 Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Mon, 1 Jan 2024 11:37:05 -0800 Subject: [PATCH 02/23] Document the release process (#1611) --- holidays/RELEASE.rst | 69 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 holidays/RELEASE.rst diff --git a/holidays/RELEASE.rst b/holidays/RELEASE.rst new file mode 100644 index 000000000..5e5fffdd4 --- /dev/null +++ b/holidays/RELEASE.rst @@ -0,0 +1,69 @@ +How to release a new version of Python Holidays +=============================================== + +- Finalize the current development version + + - switch to ``beta`` branch and pull the most recent changes + from https://github.com/vacanza/python-holidays remote ``beta`` branch. + - generate release notes by running the following script + ``scripts/generate_release_notes.py -t ``, where is the + value of tag/version you're going to release, e.g. 0.39 + - insert the script's output into the top of ``CHANGES`` file + (see previous release notes for consistent formatting) + - commit the updated ``CHANGES`` file to ``beta`` branch with the following + commit message 'Finalize v', e.g. 'Finalize v0.39' + - push changes to https://github.com/vacanza/python-holidays ``beta`` branch + - make sure the push related CI/CD job(s) have been completed successfully + +- Merge the finalized changes into ``master`` branch: + + - create a new PR for the recent changes from ``beta`` to ``master`` branch + using 'v' as a PR title and the previously generated release notes + as a PR description + - get the PR reviewed by at least one of the code owners + - merge the PR into ``master`` branch with 'Create a merge commit' action + (**do not use 'Squash and merge'**) + - make sure the PR related CI/CD job(s) have been completed successfully + - make sure readthedocs.org documentation build jobs at + https://readthedocs.org/projects/python-holidays/builds/ + have been completed successfully + +- Create a new release: + + - open https://github.com/vacanza/python-holidays/releases page and click + on the 'Draft a new release' button + - click on 'Choose a tag', enter 'v' into the input field + (you should see something like 'Create a new tag: v0.39' on publish' + - select **master** - instead of default ``beta`` in 'Target' dropdown + - put 'v' into 'Release title' field, e.g. 'v0.39' + - click on 'Generate release notes' button to collect new contributors and + full changelog link information (we normally keep it at the bottom with + a bit of re-formatting) + - replace auto-generated release notes with the previously generated release + notes (keep the new contributors and full changelog link) + - check/uncheck the 'Set as the latest release' checkbox depending on the + release status + - save the draft (do not publish it yet) + - preview the release on https://github.com/vacanza/python-holidays/releases + - after making sure everything looks right click 'Edit' and then + 'Publish release' + +- Verify the new release: + + - make sure the release related CI/CD job(s) have been completed successfully + - check https://pypi.org/project/holidays/ package page -- it should have + the current version and the released date updated + +- Finish the process with the following post-release actions: + + - send "Python Holidays 'v' has been released!" (or similar) message + to Vacanza Team Slack #release channel + - pull the recent changes from ``master`` branch into ``beta`` + - bump the Python Holidays version at ``holidays/__init__.py`` file + - create a commit with 'Initialize v' message, e.g. + 'Initialize v0.40' and push it to ``beta`` branch (this may require + running ``make package`` to pass the tests locally) + - make sure ``beta`` branch **is not behind** the master branch (there + will be a message on top of the + https://github.com/vacanza/python-holidays/tree/beta page in case it is) + - make sure the push related CI/CD job(s) have been completed successfully From af3dc7a14976185b3a557bf5ba24db2a6cabdb7e Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Tue, 2 Jan 2024 10:57:23 -0800 Subject: [PATCH 03/23] Move RELEASE.rst to upper level (#1623) --- holidays/RELEASE.rst => RELEASE.rst | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename holidays/RELEASE.rst => RELEASE.rst (100%) diff --git a/holidays/RELEASE.rst b/RELEASE.rst similarity index 100% rename from holidays/RELEASE.rst rename to RELEASE.rst From 781b370f03e28bbb0cbbc5b35de520abab658b14 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Wed, 3 Jan 2024 01:29:19 +0200 Subject: [PATCH 04/23] Update China holidays: add observed and substituted holidays in 2001-2024 (#1613) --- holidays/countries/china.py | 430 ++++---- holidays/groups/chinese.py | 20 - holidays/locale/en_US/LC_MESSAGES/CN.po | 34 +- holidays/locale/th/LC_MESSAGES/CN.po | 32 +- holidays/locale/zh_CN/LC_MESSAGES/CN.po | 32 +- holidays/locale/zh_TW/LC_MESSAGES/CN.po | 32 +- snapshots/countries/CN_COMMON.json | 1209 +++++++---------------- tests/countries/test_china.py | 945 +++++++++--------- 8 files changed, 1197 insertions(+), 1537 deletions(-) diff --git a/holidays/countries/china.py b/holidays/countries/china.py index ca1228ab5..5ecb145b2 100644 --- a/holidays/countries/china.py +++ b/holidays/countries/china.py @@ -9,21 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) -from datetime import date -from datetime import timedelta as td from gettext import gettext as tr -from holidays.calendars.gregorian import JAN, MAY, SEP, OCT, DEC +from holidays.calendars.gregorian import JAN, FEB, MAR, APR, MAY, JUN, SEP, OCT, DEC from holidays.constants import HALF_DAY, PUBLIC from holidays.groups import ChineseCalendarHolidays, InternationalHolidays, StaticHolidays -from holidays.holiday_base import HolidayBase +from holidays.observed_holiday_base import ObservedHolidayBase, SAT_SUN_TO_NEXT_WORKDAY -class China(HolidayBase, ChineseCalendarHolidays, InternationalHolidays, StaticHolidays): +class China(ObservedHolidayBase, ChineseCalendarHolidays, InternationalHolidays, StaticHolidays): """ References: - https://en.wikipedia.org/wiki/Public_holidays_in_China - `Festivals and Public Holidays `_ + - `2024 `_ - `2023 `_ - `2022 `_ - `2021 `_ @@ -61,6 +60,8 @@ class China(HolidayBase, ChineseCalendarHolidays, InternationalHolidays, StaticH """ country = "CN" + # %s (Observed). + observed_label = tr("%s(观察日)") supported_categories = (PUBLIC, HALF_DAY) default_language = "zh_CN" supported_languages = ("en_US", "th", "zh_CN", "zh_TW") @@ -69,123 +70,30 @@ def __init__(self, *args, **kwargs): ChineseCalendarHolidays.__init__(self) InternationalHolidays.__init__(self) StaticHolidays.__init__(self, cls=ChinaStaticHolidays) + kwargs.setdefault("observed_rule", SAT_SUN_TO_NEXT_WORKDAY) + kwargs.setdefault("observed_since", 2000) super().__init__(*args, **kwargs) - def _add_observed_one_off_holidays(self, dt: date): - """ - Based on 2002-2023 data, adds observance for one-off - holidays (New Year's Day, Tomb-Sweeping Day, ..., etc.) - - Monday -> TUE-WED (????-2007), [SAT]-[SUN] (2008-???) - - Tuesday -> WED-THU (????-2007), [SUN]-[MON] (2008-????) - - Wednesday -> None (????-2007), [MON]-[TUE] (2008-????) - - Thursday -> None (????-2007), FRI-SAT (2008-????) - - Friday -> SAT-SUN (????-????) - - Saturday -> [FRI]-SUN (2012-2019), SUN-MON (????-2011, 2020-????) - - Sunday -> MON-TUE (????-2007, 2012-2019), [SAT]-MON (2008-2011, 2020-????) - - '[DAY]' denotes that this applies prior to the input date, with 'DAY' as after. - """ - - if self._is_monday(dt): - if self._year <= 2007: - # TUE-WED - self._add_holiday(self[dt], dt + td(days=+1)) - self._add_holiday(self[dt], dt + td(days=+2)) - else: - # [SAT]-[SUN] - self._add_holiday(self[dt], dt + td(days=-2)) - self._add_holiday(self[dt], dt + td(days=-1)) - if self._year >= 2020 and dt == date(self._year, MAY, 1): - # 2 Extra Days for May Day >= 2020: - self._add_holiday(self[dt], dt + td(days=+1)) - self._add_holiday(self[dt], dt + td(days=+2)) - elif self._is_tuesday(dt): - if self._year <= 2007: - # WED-THU - self._add_holiday(self[dt], dt + td(days=+1)) - self._add_holiday(self[dt], dt + td(days=+2)) - else: - # [SUN]-[MON] - self._add_holiday(self[dt], dt + td(days=-2)) - self._add_holiday(self[dt], dt + td(days=-1)) - if self._year >= 2020 and dt == date(self._year, MAY, 1): - # 2 Extra Days for May Day >= 2020: - self._add_holiday(self[dt], dt + td(days=+1)) - self._add_holiday(self[dt], dt + td(days=+2)) - elif self._is_wednesday(dt) and self._year >= 2008: - # [MON]-[TUE] - self._add_holiday(self[dt], dt + td(days=-2)) - self._add_holiday(self[dt], dt + td(days=-1)) - if self._year >= 2020 and dt == date(self._year, MAY, 1): - # 2 Extra Days for May Day >= 2020: - self._add_holiday(self[dt], dt + td(days=+1)) - self._add_holiday(self[dt], dt + td(days=+2)) - elif self._is_thursday(dt) and self._year >= 2008: - # FRI-SAT - self._add_holiday(self[dt], dt + td(days=+1)) - self._add_holiday(self[dt], dt + td(days=+2)) - if self._year >= 2020 and dt == date(self._year, MAY, 1): - # 2 Extra Days for May Day >= 2020: - self._add_holiday(self[dt], dt + td(days=+3)) - self._add_holiday(self[dt], dt + td(days=+4)) - elif self._is_friday(dt): - # SAT-SUN - self._add_holiday(self[dt], dt + td(days=+1)) - self._add_holiday(self[dt], dt + td(days=+2)) - if self._year >= 2020 and dt == date(self._year, MAY, 1): - # 2 Extra Days for May Day >= 2020: - self._add_holiday(self[dt], dt + td(days=+3)) - self._add_holiday(self[dt], dt + td(days=+4)) - elif self._is_saturday(dt): - if self._year <= 2011 or self._year >= 2020: - # SUN-MON - self._add_holiday(self[dt], dt + td(days=+1)) - self._add_holiday(self[dt], dt + td(days=+2)) - if self._year >= 2020 and dt == date(self._year, MAY, 1): - # 2 Extra Days for May Day >= 2020: - self._add_holiday(self[dt], dt + td(days=+3)) - self._add_holiday(self[dt], dt + td(days=+4)) - else: - # [FRI]-SUN - self._add_holiday(self[dt], dt + td(days=-1)) - self._add_holiday(self[dt], dt + td(days=+1)) - elif self._is_sunday(dt): - if self._year <= 2007 or 2012 <= self._year <= 2019: - # MON-TUE - self._add_holiday(self[dt], dt + td(days=+1)) - self._add_holiday(self[dt], dt + td(days=+2)) - else: - # [SAT]-MON - self._add_holiday(self[dt], dt + td(days=-1)) - self._add_holiday(self[dt], dt + td(days=+1)) - if self._year >= 2020 and dt == date(self._year, MAY, 1): - # 2 Extra Days for May Day >= 2020: - self._add_holiday(self[dt], dt + td(days=+2)) - self._add_holiday(self[dt], dt + td(days=+3)) - def _populate_public_holidays(self): # Proclamation of the People's Republic of China on Oct 1, 1949. if self._year <= 1949: return None + dts_observed = set() + # 元旦 (simp.) / 新年 (trad.) # Status: In-Use (Statutory). # Jan 1 in 1949, 1999, 2007, and 2013 revision. # Consecutive Holidays are available from 2002, except in 2014/2016/2017/2018. # New Year's Day. - jan_1 = self._add_new_years_day(tr("元旦")) - - if ( - self.observed - and (2002 <= self._year <= 2015 or self._year >= 2020) - and self._year not in {2008, 2013, 2014, 2023} - ): - self._add_observed_one_off_holidays(jan_1) + dts_observed.add(self._add_new_years_day(tr("元旦"))) # 春节 # Status: In-Use (Statutory). # Day 1-3 of Chinese New Year in 1949, 1999, 2007, and 2013 revision. + # 2007 revision introduced New Year's Eve (农历除夕) instead of + # New Year's 3rd day; 2013 revision returned it back. # Spring Festival Golden Weekend # Checked with Official Notice from 2001-2023. @@ -193,18 +101,13 @@ def _populate_public_holidays(self): # Chinese New Year (Spring Festival). chinese_new_year = tr("春节") - self._add_chinese_new_years_day(chinese_new_year) - self._add_chinese_new_years_day_two(chinese_new_year) - self._add_chinese_new_years_day_three(chinese_new_year) - if self.observed and self._year >= 2000: - # Non-Statutory. - self._add_chinese_new_years_day_four(chinese_new_year) - self._add_chinese_new_years_day_five(chinese_new_year) - self._add_chinese_new_years_day_six(chinese_new_year) - if 2008 <= self._year <= 2013 or self._year >= 2015: - self._add_chinese_new_years_eve(chinese_new_year) - else: - self._add_chinese_new_years_day_seven(chinese_new_year) + dts_observed.add(self._add_chinese_new_years_day(chinese_new_year)) + dts_observed.add(self._add_chinese_new_years_day_two(chinese_new_year)) + if 2008 <= self._year <= 2013: + # Chinese New Year's Eve. + dts_observed.add(self._add_chinese_new_years_eve(tr("农历除夕"))) + else: + dts_observed.add(self._add_chinese_new_years_day_three(chinese_new_year)) # 劳动节 # Status: In-Use (Statutory). @@ -217,20 +120,10 @@ def _populate_public_holidays(self): # Labor Day. labor_day = tr("劳动节") - may_1 = self._add_labor_day(labor_day) + dts_observed.add(self._add_labor_day(labor_day)) if 2000 <= self._year <= 2007: - self._add_labor_day_two(labor_day) - self._add_labor_day_three(labor_day) - if self.observed: - # Non-Statutory. - self._add_holiday_may_4(labor_day) - self._add_holiday_may_5(labor_day) - self._add_holiday_may_6(labor_day) - self._add_holiday_may_7(labor_day) - elif self.observed and ( - 2008 <= self._year <= 2014 or self._year == 2018 or self._year >= 2020 - ): - self._add_observed_one_off_holidays(may_1) + dts_observed.add(self._add_labor_day_two(labor_day)) + dts_observed.add(self._add_labor_day_three(labor_day)) # 国庆节 # Status: In-Use (Statutory). @@ -242,17 +135,10 @@ def _populate_public_holidays(self): # National Day. national_day = tr("国庆节") - self._add_holiday_oct_1(national_day) - self._add_holiday_oct_2(national_day) + dts_observed.add(self._add_holiday_oct_1(national_day)) + dts_observed.add(self._add_holiday_oct_2(national_day)) if self._year >= 1999: - self._add_holiday_oct_3(national_day) - if self.observed and 2000 <= self._year != 2008: - # Non-Statutory. - self._add_holiday_oct_4(national_day) - self._add_holiday_oct_5(national_day) - self._add_holiday_oct_6(national_day) - if self._year != 2023: - self._add_holiday_oct_7(national_day) + dts_observed.add(self._add_holiday_oct_3(national_day)) if self._year >= 2008: # 清明节 @@ -261,11 +147,7 @@ def _populate_public_holidays(self): # Consecutive Holidays are available from 2008, except in 2014/2015/2016/2019. # Tomb-Sweeping Day. - qingming_festival = self._add_qingming_festival(tr("清明节")) - - if self.observed and self._year not in {2014, 2015, 2016, 2019, 2023}: - # Non-Statutory. - self._add_observed_one_off_holidays(qingming_festival) + dts_observed.add(self._add_qingming_festival(tr("清明节"))) # 端午节 # Status: In-Use (Statutory). @@ -274,10 +156,8 @@ def _populate_public_holidays(self): # Dragon Boat Festival. dragon_boat_festival = self._add_dragon_boat_festival(tr("端午节")) - - if self.observed and self._year not in {2014, 2015, 2018, 2019}: - # Non-Statutory. - self._add_observed_one_off_holidays(dragon_boat_festival) + if self._year != 2012: + dts_observed.add(dragon_boat_festival) # 中秋节 # Status: In-Use (Statutory). @@ -287,16 +167,11 @@ def _populate_public_holidays(self): # Mid-Autumn Festival. mid_autumn_festival = self._add_mid_autumn_festival(tr("中秋节")) + if self._year != 2015: + dts_observed.add(mid_autumn_festival) - if self.observed: - # Non-Statutory. - if mid_autumn_festival.month == OCT and 1 <= mid_autumn_festival.day <= 7: - self._add_holiday_oct_8(national_day) - elif mid_autumn_festival == date(self._year, SEP, 29): - self._add_holiday_sep_30(self[mid_autumn_festival]) - elif self._year not in {2010, 2012, 2014, 2015, 2018, 2019, 2030, 2050, 2096}: - # SEP 30's "no observance added" rule for 2012/2030/2050/2096 included. - self._add_observed_one_off_holidays(mid_autumn_festival) + if self.observed: + self._populate_observed(dts_observed, multiple=True) def _populate_half_day_holidays(self): # No in lieus are given for this category. @@ -326,51 +201,234 @@ class CHN(China): class ChinaStaticHolidays: - # Special Cases. - - # New Year's Day. - new_years_day_overflow = tr("元旦") + # Date format (see strftime() Format Codes). + substituted_date_format = tr("%Y-%m-%d") + # Day off (substituted from %s). + substituted_label = tr("休息日(%s日起取代)") - # National Day. - national_day_2008_golden_week = tr("国庆节") + # Dragon Boat Festival. + dragon_boat_festival = tr("端午节") # Mid-Autumn Festival. - mid_autumn_festival_2010_special = tr("中秋节") + mid_autumn_festival = tr("中秋节") + + # 70th Anniversary of the Victory of the Chinese People’s War of Resistance against + # Japanese Aggression and the World Anti-Fascist War. + victory_70_anniversary = tr("中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日") special_public_holidays = { + 2001: ( + (JAN, 29, JAN, 20), # Spring Festival + (JAN, 30, JAN, 21), # Spring Festival + (MAY, 4, APR, 28), # Labor Day + (MAY, 7, APR, 29), # Labor Day + (OCT, 4, SEP, 29), # National Day + (OCT, 5, SEP, 30), # National Day + ), + 2002: ( + (JAN, 2, DEC, 29, 2001), # New Year's Day + (JAN, 3, DEC, 30, 2001), # New Year's Day + (FEB, 15, FEB, 9), # Spring Festival + (FEB, 18, FEB, 10), # Spring Festival + (MAY, 6, APR, 27), # Labor Day + (MAY, 7, APR, 28), # Labor Day + (OCT, 4, SEP, 28), # National Day + (OCT, 7, SEP, 29), # National Day + ), + 2003: ( + (FEB, 6, FEB, 8), # Spring Festival + (FEB, 7, FEB, 9), # Spring Festival + (MAY, 6, APR, 26), # Labor Day + (MAY, 7, APR, 27), # Labor Day + (OCT, 6, SEP, 27), # National Day + (OCT, 7, SEP, 28), # National Day + ), + 2004: ( + (JAN, 27, JAN, 17), # Spring Festival + (JAN, 28, JAN, 18), # Spring Festival + (MAY, 6, MAY, 8), # Labor Day + (MAY, 7, MAY, 9), # Labor Day + (OCT, 6, OCT, 9), # National Day + (OCT, 7, OCT, 10), # National Day + ), + 2005: ( + (FEB, 14, FEB, 5), # Spring Festival + (FEB, 15, FEB, 6), # Spring Festival + (MAY, 5, APR, 30), # Labor Day + (MAY, 6, MAY, 8), # Labor Day + (OCT, 6, OCT, 8), # National Day + (OCT, 7, OCT, 9), # National Day + ), + 2006: ( + (JAN, 3, DEC, 31, 2005), # New Year's Day + (FEB, 2, JAN, 28), # Spring Festival + (FEB, 3, FEB, 5), # Spring Festival + (MAY, 4, APR, 29), # Labor Day + (MAY, 5, APR, 30), # Labor Day + (OCT, 5, SEP, 30), # National Day + (OCT, 6, OCT, 8), # National Day + ), 2007: ( - # 2007: Overflow from 2008 Notice. - (DEC, 30, new_years_day_overflow), - (DEC, 31, new_years_day_overflow), + (JAN, 2, DEC, 30, 2006), # New Year's Day + (JAN, 3, DEC, 31, 2006), # New Year's Day + (FEB, 22, FEB, 17), # Spring Festival + (FEB, 23, FEB, 25), # Spring Festival + (MAY, 4, APR, 28), # Labor Day + (MAY, 7, APR, 29), # Labor Day + (OCT, 4, SEP, 29), # National Day + (OCT, 5, SEP, 30), # National Day + (DEC, 31, DEC, 29), # New Year's Day ), 2008: ( - # 2008: weird National Day Golden Week pattern. - (SEP, 29, national_day_2008_golden_week), - (SEP, 30, national_day_2008_golden_week), - (OCT, 4, national_day_2008_golden_week), - (OCT, 5, national_day_2008_golden_week), + (FEB, 11, FEB, 2), # Spring Festival + (FEB, 12, FEB, 3), # Spring Festival + (MAY, 2, MAY, 4), # Labor Day + (SEP, 29, SEP, 27), # National Day + (SEP, 30, SEP, 28), # National Day + ), + 2009: ( + (JAN, 2, JAN, 4), # New Year's Day + (JAN, 29, JAN, 24), # Spring Festival + (JAN, 30, FEB, 1), # Spring Festival + (MAY, 29, MAY, 31), # Dragon Boat Festival + (OCT, 7, SEP, 27), # National Day + (OCT, 8, OCT, 10), # National Day ), 2010: ( - # 2010: doesn't fit with existing observed pattern. - (SEP, 23, mid_autumn_festival_2010_special), - (SEP, 24, mid_autumn_festival_2010_special), + (FEB, 18, FEB, 20), # Spring Festival + (FEB, 19, FEB, 21), # Spring Festival + (JUN, 14, JUN, 12), # Dragon Boat Festival + (JUN, 15, JUN, 13), # Dragon Boat Festival + (SEP, 23, SEP, 19), # Mid-Autumn Festival + (SEP, 24, SEP, 25), # Mid-Autumn Festival + (OCT, 6, SEP, 26), # National Day + (OCT, 7, OCT, 9), # National Day + ), + 2011: ( + (FEB, 7, JAN, 30), # Spring Festival + (FEB, 8, FEB, 12), # Spring Festival + (APR, 4, APR, 2), # Tomb-Sweeping Day + (OCT, 6, OCT, 8), # National Day + (OCT, 7, OCT, 9), # National Day + ), + 2012: ( + (JAN, 3, DEC, 31, 2011), # New Year's Day + (JAN, 26, JAN, 21), # Spring Festival + (JAN, 27, JAN, 29), # Spring Festival + (APR, 2, MAR, 31), # Tomb-Sweeping Day + (APR, 3, APR, 1), # Tomb-Sweeping Day + (APR, 30, APR, 28), # Labor Day + (OCT, 5, SEP, 29), # National Day ), 2013: ( - # 2013: doesn't fit with existing observed pattern. - (JAN, 2, new_years_day_overflow), - (JAN, 3, new_years_day_overflow), + (JAN, 2, JAN, 5), # New Year's Day + (JAN, 3, JAN, 6), # New Year's Day + (FEB, 14, FEB, 16), # Spring Festival + (FEB, 15, FEB, 17), # Spring Festival + (APR, 5, APR, 7), # Tomb-Sweeping Day + (APR, 29, APR, 27), # Labor Day + (APR, 30, APR, 28), # Labor Day + (JUN, 10, JUN, 8), # Dragon Boat Festival + (JUN, 11, JUN, 9), # Dragon Boat Festival + (SEP, 20, SEP, 22), # Mid-Autumn Festival + (OCT, 4, SEP, 29), # National Day + (OCT, 7, OCT, 12), # National Day + ), + 2014: ( + (FEB, 5, JAN, 26), # Spring Festival + (FEB, 6, FEB, 8), # Spring Festival + (MAY, 2, MAY, 4), # Labor Day + (OCT, 6, SEP, 28), # National Day + (OCT, 7, OCT, 11), # National Day + ), + 2015: ( + (JAN, 2, JAN, 4), # New Year's Day + (FEB, 18, FEB, 15), # Spring Festival + (FEB, 24, FEB, 28), # Spring Festival + (SEP, 3, victory_70_anniversary), + (SEP, 4, SEP, 6), # 70th Anniversary of the Victory + (OCT, 7, OCT, 10), # National Day + ), + 2016: ( + (FEB, 11, FEB, 6), # Spring Festival + (FEB, 12, FEB, 14), # Spring Festival + (JUN, 10, JUN, 12), # Dragon Boat Festival + (SEP, 16, SEP, 18), # Mid-Autumn Festival + (OCT, 6, OCT, 8), # National Day + (OCT, 7, OCT, 9), # National Day + ), + 2017: ( + (JAN, 27, JAN, 22), # Spring Festival + (FEB, 2, FEB, 4), # Spring Festival + (APR, 3, APR, 1), # Tomb-Sweeping Day + (MAY, 29, MAY, 27), # Dragon Boat Festival + (OCT, 6, SEP, 30), # National Day ), 2018: ( - # 2018: Overflow from 2019 Notice. - (DEC, 30, new_years_day_overflow), - (DEC, 31, new_years_day_overflow), + (FEB, 15, FEB, 11), # Spring Festival + (FEB, 21, FEB, 24), # Spring Festival + (APR, 6, APR, 8), # Tomb-Sweeping Day + (APR, 30, APR, 28), # Labor Day + (OCT, 4, SEP, 29), # National Day + (OCT, 5, SEP, 30), # National Day + (DEC, 31, DEC, 29), # New Year's Day + ), + 2019: ( + (FEB, 4, FEB, 2), # Spring Festival + (FEB, 8, FEB, 3), # Spring Festival + (OCT, 4, SEP, 29), # National Day + (OCT, 7, OCT, 12), # National Day + ), + 2020: ( + (JAN, 24, JAN, 19), # Spring Festival + (JAN, 30, FEB, 1), # Spring Festival + (MAY, 4, APR, 26), # Labor Day + (MAY, 5, MAY, 9), # Labor Day + (JUN, 26, JUN, 28), # Dragon Boat Festival + (OCT, 7, SEP, 27), # National Day + (OCT, 8, OCT, 10), # National Day + ), + 2021: ( + (FEB, 11, FEB, 7), # Spring Festival + (FEB, 17, FEB, 20), # Spring Festival + (MAY, 4, APR, 25), # Labor Day + (MAY, 5, MAY, 8), # Labor Day + (SEP, 20, SEP, 18), # Mid-Autumn Festival + (OCT, 6, SEP, 26), # National Day + (OCT, 7, OCT, 9), # National Day ), 2022: ( - # 2022: Overflow from 2023 Notice. - (DEC, 31, new_years_day_overflow), + (JAN, 31, JAN, 29), # Spring Festival + (FEB, 4, JAN, 30), # Spring Festival + (APR, 4, APR, 2), # Tomb-Sweeping Day + (MAY, 3, APR, 24), # Labor Day + (MAY, 4, MAY, 7), # Labor Day + (OCT, 6, OCT, 8), # National Day + (OCT, 7, OCT, 9), # National Day ), 2023: ( - # 2023: Overflow from 2023 Notice. - (JAN, 2, new_years_day_overflow), + (JAN, 26, JAN, 28), # Spring Festival + (JAN, 27, JAN, 29), # Spring Festival + (MAY, 2, APR, 23), # Labor Day + (MAY, 3, MAY, 6), # Labor Day + (JUN, 23, JUN, 25), # Dragon Boat Festival + (OCT, 5, OCT, 7), # National Day + (OCT, 6, OCT, 8), # National Day ), + 2024: ( + (FEB, 15, FEB, 4), # Spring Festival + (FEB, 16, FEB, 18), # Spring Festival + (APR, 5, APR, 7), # Tomb-Sweeping Day + (MAY, 2, APR, 28), # Labor Day + (MAY, 3, MAY, 11), # Labor Day + (SEP, 16, SEP, 14), # Mid-Autumn Festival + (OCT, 4, SEP, 29), # National Day + (OCT, 7, OCT, 12), # National Day + ), + } + + special_public_holidays_observed = { + 2012: (JUN, 22, dragon_boat_festival), # observed from Jun 23 + 2015: (OCT, 6, mid_autumn_festival), # observed from Sep 27 + 2020: (OCT, 6, mid_autumn_festival), # observed from Oct 1, overlap with National Day } diff --git a/holidays/groups/chinese.py b/holidays/groups/chinese.py index 870d0884f..fdfb70276 100644 --- a/holidays/groups/chinese.py +++ b/holidays/groups/chinese.py @@ -146,26 +146,6 @@ def _add_chinese_new_years_day_five(self, name) -> Optional[date]: name, self._chinese_calendar.lunar_new_year_date(self._year), days_delta=+4 ) - def _add_chinese_new_years_day_six(self, name) -> Optional[date]: - """ - Add Chinese New Year's Day Six. - - https://en.wikipedia.org/wiki/Chinese_New_Year - """ - return self._add_chinese_calendar_holiday( - name, self._chinese_calendar.lunar_new_year_date(self._year), days_delta=+5 - ) - - def _add_chinese_new_years_day_seven(self, name) -> Optional[date]: - """ - Add Chinese New Year's Day Seven. - - https://en.wikipedia.org/wiki/Chinese_New_Year - """ - return self._add_chinese_calendar_holiday( - name, self._chinese_calendar.lunar_new_year_date(self._year), days_delta=+6 - ) - def _add_qingming_festival(self, name) -> date: """ Add Qingming Festival (15th day after the Spring Equinox). diff --git a/holidays/locale/en_US/LC_MESSAGES/CN.po b/holidays/locale/en_US/LC_MESSAGES/CN.po index 95435241a..56cda3ffe 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CN.po +++ b/holidays/locale/en_US/LC_MESSAGES/CN.po @@ -3,10 +3,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.35\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-09-28 19:23+0700\n" -"PO-Revision-Date: 2023-09-28 19:49+0700\n" -"Last-Translator: PPsyrius \n" +"PO-Revision-Date: 2023-12-29 19:02+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" @@ -14,7 +14,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.4\n" + +#. %s (Observed). +#, c-format +msgid "%s(观察日)" +msgstr "%s (Observed)" #. New Year's Day. msgid "元旦" @@ -32,6 +37,10 @@ msgstr "Mid-Autumn Festival" msgid "春节" msgstr "Chinese New Year (Spring Festival)" +#. Chinese New Year's Eve. +msgid "农历除夕" +msgstr "Chinese New Year's Eve" + #. Labor Day. msgid "劳动节" msgstr "Labor Day" @@ -59,3 +68,20 @@ msgstr "Children's Day" #. Army Day. msgid "建军节" msgstr "Army Day" + +#. Date format (see strftime() Format Codes). +msgid "%Y-%m-%d" +msgstr "%m/%d/%Y" + +#. Day off (substituted from %s). +#, c-format +msgid "休息日(%s日起取代)" +msgstr "Day off (substituted from %s)" + +#. 70th Anniversary of the Victory of the Chinese People’s War of Resistance +#. against Japanese +#. Aggression and the World Anti-Fascist War. +msgid "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日" +msgstr "" +"70th Anniversary of the Victory of the Chinese People’s War of Resistance " +"against Japanese Aggression and the World Anti-Fascist War" diff --git a/holidays/locale/th/LC_MESSAGES/CN.po b/holidays/locale/th/LC_MESSAGES/CN.po index 624febef3..8f8e30312 100644 --- a/holidays/locale/th/LC_MESSAGES/CN.po +++ b/holidays/locale/th/LC_MESSAGES/CN.po @@ -3,10 +3,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.35\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-09-28 19:23+0700\n" -"PO-Revision-Date: 2023-09-28 19:57+0700\n" -"Last-Translator: PPsyrius \n" +"PO-Revision-Date: 2023-12-30 17:46+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: th\n" "MIME-Version: 1.0\n" @@ -14,7 +14,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.4\n" + +#. %s (Observed). +#, c-format +msgid "%s(观察日)" +msgstr "ชดเชย%s" #. New Year's Day. msgid "元旦" @@ -32,6 +37,10 @@ msgstr "วันไหว้พระจันทร์" msgid "春节" msgstr "วันตรุษจีน" +#. Chinese New Year's Eve. +msgid "农历除夕" +msgstr "วันก่อนวันตรุษจีน" + #. Labor Day. msgid "劳动节" msgstr "วันแรงงาน" @@ -59,3 +68,18 @@ msgstr "วันเด็กสากล" #. Army Day. msgid "建军节" msgstr "วันสถาปนากองทัพปลดปล่อยประชาชนจีน" + +#. Date format (see strftime() Format Codes). +msgid "%Y-%m-%d" +msgstr "%d/%m/%Y" + +#. Day off (substituted from %s). +#, c-format +msgid "休息日(%s日起取代)" +msgstr "วันหยุด (แทน %s)" + +#. 70th Anniversary of the Victory of the Chinese People’s War of Resistance +#. against Japanese +#. Aggression and the World Anti-Fascist War. +msgid "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日" +msgstr "ครบรอบ 70 ปีแห่งการได้รับชัยชนะจากสงครามต่อต้านญี่ปุ่นและลัทธิฟาสซิสต์โลก" diff --git a/holidays/locale/zh_CN/LC_MESSAGES/CN.po b/holidays/locale/zh_CN/LC_MESSAGES/CN.po index 1b08d96c7..9e903f4b6 100644 --- a/holidays/locale/zh_CN/LC_MESSAGES/CN.po +++ b/holidays/locale/zh_CN/LC_MESSAGES/CN.po @@ -3,10 +3,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.35\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-09-28 19:23+0700\n" -"PO-Revision-Date: 2023-09-28 19:42+0700\n" -"Last-Translator: PPsyrius \n" +"PO-Revision-Date: 2023-12-29 19:03+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -14,7 +14,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.4\n" + +#. %s (Observed). +#, c-format +msgid "%s(观察日)" +msgstr "" #. New Year's Day. msgid "元旦" @@ -32,6 +37,10 @@ msgstr "" msgid "春节" msgstr "" +#. Chinese New Year's Eve. +msgid "农历除夕" +msgstr "" + #. Labor Day. msgid "劳动节" msgstr "" @@ -59,3 +68,18 @@ msgstr "" #. Army Day. msgid "建军节" msgstr "" + +#. Date format (see strftime() Format Codes). +msgid "%Y-%m-%d" +msgstr "" + +#. Day off (substituted from %s). +#, c-format +msgid "休息日(%s日起取代)" +msgstr "" + +#. 70th Anniversary of the Victory of the Chinese People’s War of Resistance +#. against Japanese +#. Aggression and the World Anti-Fascist War. +msgid "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日" +msgstr "" diff --git a/holidays/locale/zh_TW/LC_MESSAGES/CN.po b/holidays/locale/zh_TW/LC_MESSAGES/CN.po index f43adb3cc..d514082c6 100644 --- a/holidays/locale/zh_TW/LC_MESSAGES/CN.po +++ b/holidays/locale/zh_TW/LC_MESSAGES/CN.po @@ -3,10 +3,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.35\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-09-28 19:23+0700\n" -"PO-Revision-Date: 2023-09-28 19:43+0700\n" -"Last-Translator: PPsyrius \n" +"PO-Revision-Date: 2023-12-29 19:04+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" @@ -14,7 +14,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.4\n" + +#. %s (Observed). +#, c-format +msgid "%s(观察日)" +msgstr "%s(觀察日)" #. New Year's Day. msgid "元旦" @@ -32,6 +37,10 @@ msgstr "中秋節" msgid "春节" msgstr "春節" +#. Chinese New Year's Eve. +msgid "农历除夕" +msgstr "農曆除夕" + #. Labor Day. msgid "劳动节" msgstr "勞動節" @@ -59,3 +68,18 @@ msgstr "六一兒童節" #. Army Day. msgid "建军节" msgstr "建軍節" + +#. Date format (see strftime() Format Codes). +msgid "%Y-%m-%d" +msgstr "%Y-%m-%d" + +#. Day off (substituted from %s). +#, c-format +msgid "休息日(%s日起取代)" +msgstr "休息日(%s日起取代)" + +#. 70th Anniversary of the Victory of the Chinese People’s War of Resistance +#. against Japanese +#. Aggression and the World Anti-Fascist War. +msgid "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日" +msgstr "中國人民抗日戰爭暨世界反法西斯戰爭勝利70週年紀念日" diff --git a/snapshots/countries/CN_COMMON.json b/snapshots/countries/CN_COMMON.json index 71cf0ed06..32a2adfe2 100644 --- a/snapshots/countries/CN_COMMON.json +++ b/snapshots/countries/CN_COMMON.json @@ -551,420 +551,346 @@ "1999-10-02": "National Day", "1999-10-03": "National Day", "2000-01-01": "New Year's Day", + "2000-01-03": "New Year's Day (Observed)", "2000-02-05": "Chinese New Year (Spring Festival)", "2000-02-06": "Chinese New Year (Spring Festival)", "2000-02-07": "Chinese New Year (Spring Festival)", - "2000-02-08": "Chinese New Year (Spring Festival)", - "2000-02-09": "Chinese New Year (Spring Festival)", - "2000-02-10": "Chinese New Year (Spring Festival)", - "2000-02-11": "Chinese New Year (Spring Festival)", + "2000-02-08": "Chinese New Year (Spring Festival) (Observed)", + "2000-02-09": "Chinese New Year (Spring Festival) (Observed)", "2000-03-08": "International Women's Day", "2000-05-01": "Labor Day", "2000-05-02": "Labor Day", "2000-05-03": "Labor Day", - "2000-05-04": "Labor Day; Youth Day", - "2000-05-05": "Labor Day", - "2000-05-06": "Labor Day", - "2000-05-07": "Labor Day", + "2000-05-04": "Youth Day", "2000-06-01": "Children's Day", "2000-08-01": "Army Day", "2000-10-01": "National Day", "2000-10-02": "National Day", "2000-10-03": "National Day", - "2000-10-04": "National Day", - "2000-10-05": "National Day", - "2000-10-06": "National Day", - "2000-10-07": "National Day", + "2000-10-04": "National Day (Observed)", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year (Spring Festival)", "2001-01-25": "Chinese New Year (Spring Festival)", "2001-01-26": "Chinese New Year (Spring Festival)", - "2001-01-27": "Chinese New Year (Spring Festival)", - "2001-01-28": "Chinese New Year (Spring Festival)", - "2001-01-29": "Chinese New Year (Spring Festival)", - "2001-01-30": "Chinese New Year (Spring Festival)", + "2001-01-29": "Day off (substituted from 01/20/2001)", + "2001-01-30": "Day off (substituted from 01/21/2001)", "2001-03-08": "International Women's Day", "2001-05-01": "Labor Day", "2001-05-02": "Labor Day", "2001-05-03": "Labor Day", - "2001-05-04": "Labor Day; Youth Day", - "2001-05-05": "Labor Day", - "2001-05-06": "Labor Day", - "2001-05-07": "Labor Day", + "2001-05-04": "Day off (substituted from 04/28/2001); Youth Day", + "2001-05-07": "Day off (substituted from 04/29/2001)", "2001-06-01": "Children's Day", "2001-08-01": "Army Day", "2001-10-01": "National Day", "2001-10-02": "National Day", "2001-10-03": "National Day", - "2001-10-04": "National Day", - "2001-10-05": "National Day", - "2001-10-06": "National Day", - "2001-10-07": "National Day", + "2001-10-04": "Day off (substituted from 09/29/2001)", + "2001-10-05": "Day off (substituted from 09/30/2001)", "2002-01-01": "New Year's Day", - "2002-01-02": "New Year's Day", - "2002-01-03": "New Year's Day", + "2002-01-02": "Day off (substituted from 12/29/2001)", + "2002-01-03": "Day off (substituted from 12/30/2001)", "2002-02-12": "Chinese New Year (Spring Festival)", "2002-02-13": "Chinese New Year (Spring Festival)", "2002-02-14": "Chinese New Year (Spring Festival)", - "2002-02-15": "Chinese New Year (Spring Festival)", - "2002-02-16": "Chinese New Year (Spring Festival)", - "2002-02-17": "Chinese New Year (Spring Festival)", - "2002-02-18": "Chinese New Year (Spring Festival)", + "2002-02-15": "Day off (substituted from 02/09/2002)", + "2002-02-18": "Day off (substituted from 02/10/2002)", "2002-03-08": "International Women's Day", "2002-05-01": "Labor Day", "2002-05-02": "Labor Day", "2002-05-03": "Labor Day", - "2002-05-04": "Labor Day; Youth Day", - "2002-05-05": "Labor Day", - "2002-05-06": "Labor Day", - "2002-05-07": "Labor Day", + "2002-05-04": "Youth Day", + "2002-05-06": "Day off (substituted from 04/27/2002)", + "2002-05-07": "Day off (substituted from 04/28/2002)", "2002-06-01": "Children's Day", "2002-08-01": "Army Day", "2002-10-01": "National Day", "2002-10-02": "National Day", "2002-10-03": "National Day", - "2002-10-04": "National Day", - "2002-10-05": "National Day", - "2002-10-06": "National Day", - "2002-10-07": "National Day", + "2002-10-04": "Day off (substituted from 09/28/2002)", + "2002-10-07": "Day off (substituted from 09/29/2002)", "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year (Spring Festival)", "2003-02-02": "Chinese New Year (Spring Festival)", "2003-02-03": "Chinese New Year (Spring Festival)", - "2003-02-04": "Chinese New Year (Spring Festival)", - "2003-02-05": "Chinese New Year (Spring Festival)", - "2003-02-06": "Chinese New Year (Spring Festival)", - "2003-02-07": "Chinese New Year (Spring Festival)", + "2003-02-04": "Chinese New Year (Spring Festival) (Observed)", + "2003-02-05": "Chinese New Year (Spring Festival) (Observed)", + "2003-02-06": "Day off (substituted from 02/08/2003)", + "2003-02-07": "Day off (substituted from 02/09/2003)", "2003-03-08": "International Women's Day", "2003-05-01": "Labor Day", "2003-05-02": "Labor Day", "2003-05-03": "Labor Day", - "2003-05-04": "Labor Day; Youth Day", - "2003-05-05": "Labor Day", - "2003-05-06": "Labor Day", - "2003-05-07": "Labor Day", + "2003-05-04": "Youth Day", + "2003-05-05": "Labor Day (Observed)", + "2003-05-06": "Day off (substituted from 04/26/2003)", + "2003-05-07": "Day off (substituted from 04/27/2003)", "2003-06-01": "Children's Day", "2003-08-01": "Army Day", "2003-10-01": "National Day", "2003-10-02": "National Day", "2003-10-03": "National Day", - "2003-10-04": "National Day", - "2003-10-05": "National Day", - "2003-10-06": "National Day", - "2003-10-07": "National Day", + "2003-10-06": "Day off (substituted from 09/27/2003)", + "2003-10-07": "Day off (substituted from 09/28/2003)", "2004-01-01": "New Year's Day", "2004-01-22": "Chinese New Year (Spring Festival)", "2004-01-23": "Chinese New Year (Spring Festival)", "2004-01-24": "Chinese New Year (Spring Festival)", - "2004-01-25": "Chinese New Year (Spring Festival)", - "2004-01-26": "Chinese New Year (Spring Festival)", - "2004-01-27": "Chinese New Year (Spring Festival)", - "2004-01-28": "Chinese New Year (Spring Festival)", + "2004-01-26": "Chinese New Year (Spring Festival) (Observed)", + "2004-01-27": "Day off (substituted from 01/17/2004)", + "2004-01-28": "Day off (substituted from 01/18/2004)", "2004-03-08": "International Women's Day", "2004-05-01": "Labor Day", "2004-05-02": "Labor Day", "2004-05-03": "Labor Day", - "2004-05-04": "Labor Day; Youth Day", - "2004-05-05": "Labor Day", - "2004-05-06": "Labor Day", - "2004-05-07": "Labor Day", + "2004-05-04": "Youth Day", + "2004-05-05": "Labor Day (Observed)", + "2004-05-06": "Day off (substituted from 05/08/2004); Labor Day (Observed)", + "2004-05-07": "Day off (substituted from 05/09/2004)", "2004-06-01": "Children's Day", "2004-08-01": "Army Day", "2004-10-01": "National Day", "2004-10-02": "National Day", "2004-10-03": "National Day", - "2004-10-04": "National Day", - "2004-10-05": "National Day", - "2004-10-06": "National Day", - "2004-10-07": "National Day", + "2004-10-04": "National Day (Observed)", + "2004-10-05": "National Day (Observed)", + "2004-10-06": "Day off (substituted from 10/09/2004)", + "2004-10-07": "Day off (substituted from 10/10/2004)", "2005-01-01": "New Year's Day", - "2005-01-02": "New Year's Day", - "2005-01-03": "New Year's Day", + "2005-01-03": "New Year's Day (Observed)", "2005-02-09": "Chinese New Year (Spring Festival)", "2005-02-10": "Chinese New Year (Spring Festival)", "2005-02-11": "Chinese New Year (Spring Festival)", - "2005-02-12": "Chinese New Year (Spring Festival)", - "2005-02-13": "Chinese New Year (Spring Festival)", - "2005-02-14": "Chinese New Year (Spring Festival)", - "2005-02-15": "Chinese New Year (Spring Festival)", + "2005-02-14": "Day off (substituted from 02/05/2005)", + "2005-02-15": "Day off (substituted from 02/06/2005)", "2005-03-08": "International Women's Day", "2005-05-01": "Labor Day", "2005-05-02": "Labor Day", "2005-05-03": "Labor Day", - "2005-05-04": "Labor Day; Youth Day", - "2005-05-05": "Labor Day", - "2005-05-06": "Labor Day", - "2005-05-07": "Labor Day", + "2005-05-04": "Youth Day", + "2005-05-05": "Day off (substituted from 04/30/2005); Labor Day (Observed)", + "2005-05-06": "Day off (substituted from 05/08/2005)", "2005-06-01": "Children's Day", "2005-08-01": "Army Day", "2005-10-01": "National Day", "2005-10-02": "National Day", "2005-10-03": "National Day", - "2005-10-04": "National Day", - "2005-10-05": "National Day", - "2005-10-06": "National Day", - "2005-10-07": "National Day", + "2005-10-04": "National Day (Observed)", + "2005-10-05": "National Day (Observed)", + "2005-10-06": "Day off (substituted from 10/08/2005)", + "2005-10-07": "Day off (substituted from 10/09/2005)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day", - "2006-01-03": "New Year's Day", + "2006-01-02": "New Year's Day (Observed)", + "2006-01-03": "Day off (substituted from 12/31/2005)", "2006-01-29": "Chinese New Year (Spring Festival)", "2006-01-30": "Chinese New Year (Spring Festival)", "2006-01-31": "Chinese New Year (Spring Festival)", - "2006-02-01": "Chinese New Year (Spring Festival)", - "2006-02-02": "Chinese New Year (Spring Festival)", - "2006-02-03": "Chinese New Year (Spring Festival)", - "2006-02-04": "Chinese New Year (Spring Festival)", + "2006-02-01": "Chinese New Year (Spring Festival) (Observed)", + "2006-02-02": "Day off (substituted from 01/28/2006)", + "2006-02-03": "Day off (substituted from 02/05/2006)", "2006-03-08": "International Women's Day", "2006-05-01": "Labor Day", "2006-05-02": "Labor Day", "2006-05-03": "Labor Day", - "2006-05-04": "Labor Day; Youth Day", - "2006-05-05": "Labor Day", - "2006-05-06": "Labor Day", - "2006-05-07": "Labor Day", + "2006-05-04": "Day off (substituted from 04/29/2006); Youth Day", + "2006-05-05": "Day off (substituted from 04/30/2006)", "2006-06-01": "Children's Day", "2006-08-01": "Army Day", "2006-10-01": "National Day", "2006-10-02": "National Day", "2006-10-03": "National Day", - "2006-10-04": "National Day", - "2006-10-05": "National Day", - "2006-10-06": "National Day", - "2006-10-07": "National Day", + "2006-10-04": "National Day (Observed)", + "2006-10-05": "Day off (substituted from 09/30/2006)", + "2006-10-06": "Day off (substituted from 10/08/2006)", "2007-01-01": "New Year's Day", - "2007-01-02": "New Year's Day", - "2007-01-03": "New Year's Day", + "2007-01-02": "Day off (substituted from 12/30/2006)", + "2007-01-03": "Day off (substituted from 12/31/2006)", "2007-02-18": "Chinese New Year (Spring Festival)", "2007-02-19": "Chinese New Year (Spring Festival)", "2007-02-20": "Chinese New Year (Spring Festival)", - "2007-02-21": "Chinese New Year (Spring Festival)", - "2007-02-22": "Chinese New Year (Spring Festival)", - "2007-02-23": "Chinese New Year (Spring Festival)", - "2007-02-24": "Chinese New Year (Spring Festival)", + "2007-02-21": "Chinese New Year (Spring Festival) (Observed)", + "2007-02-22": "Day off (substituted from 02/17/2007)", + "2007-02-23": "Day off (substituted from 02/25/2007)", "2007-03-08": "International Women's Day", "2007-05-01": "Labor Day", "2007-05-02": "Labor Day", "2007-05-03": "Labor Day", - "2007-05-04": "Labor Day; Youth Day", - "2007-05-05": "Labor Day", - "2007-05-06": "Labor Day", - "2007-05-07": "Labor Day", + "2007-05-04": "Day off (substituted from 04/28/2007); Youth Day", + "2007-05-07": "Day off (substituted from 04/29/2007)", "2007-06-01": "Children's Day", "2007-08-01": "Army Day", "2007-10-01": "National Day", "2007-10-02": "National Day", "2007-10-03": "National Day", - "2007-10-04": "National Day", - "2007-10-05": "National Day", - "2007-10-06": "National Day", - "2007-10-07": "National Day", - "2007-12-30": "New Year's Day", - "2007-12-31": "New Year's Day", + "2007-10-04": "Day off (substituted from 09/29/2007)", + "2007-10-05": "Day off (substituted from 09/30/2007)", + "2007-12-31": "Day off (substituted from 12/29/2007)", "2008-01-01": "New Year's Day", - "2008-02-06": "Chinese New Year (Spring Festival)", + "2008-02-06": "Chinese New Year's Eve", "2008-02-07": "Chinese New Year (Spring Festival)", "2008-02-08": "Chinese New Year (Spring Festival)", - "2008-02-09": "Chinese New Year (Spring Festival)", - "2008-02-10": "Chinese New Year (Spring Festival)", - "2008-02-11": "Chinese New Year (Spring Festival)", - "2008-02-12": "Chinese New Year (Spring Festival)", + "2008-02-11": "Day off (substituted from 02/02/2008)", + "2008-02-12": "Day off (substituted from 02/03/2008)", "2008-03-08": "International Women's Day", "2008-04-04": "Tomb-Sweeping Day", - "2008-04-05": "Tomb-Sweeping Day", - "2008-04-06": "Tomb-Sweeping Day", "2008-05-01": "Labor Day", - "2008-05-02": "Labor Day", - "2008-05-03": "Labor Day", + "2008-05-02": "Day off (substituted from 05/04/2008)", "2008-05-04": "Youth Day", "2008-06-01": "Children's Day", - "2008-06-07": "Dragon Boat Festival", "2008-06-08": "Dragon Boat Festival", - "2008-06-09": "Dragon Boat Festival", + "2008-06-09": "Dragon Boat Festival (Observed)", "2008-08-01": "Army Day", - "2008-09-13": "Mid-Autumn Festival", "2008-09-14": "Mid-Autumn Festival", - "2008-09-15": "Mid-Autumn Festival", - "2008-09-29": "National Day", - "2008-09-30": "National Day", + "2008-09-15": "Mid-Autumn Festival (Observed)", + "2008-09-29": "Day off (substituted from 09/27/2008)", + "2008-09-30": "Day off (substituted from 09/28/2008)", "2008-10-01": "National Day", "2008-10-02": "National Day", "2008-10-03": "National Day", - "2008-10-04": "National Day", - "2008-10-05": "National Day", "2009-01-01": "New Year's Day", - "2009-01-02": "New Year's Day", - "2009-01-03": "New Year's Day", - "2009-01-25": "Chinese New Year (Spring Festival)", + "2009-01-02": "Day off (substituted from 01/04/2009)", + "2009-01-25": "Chinese New Year's Eve", "2009-01-26": "Chinese New Year (Spring Festival)", "2009-01-27": "Chinese New Year (Spring Festival)", - "2009-01-28": "Chinese New Year (Spring Festival)", - "2009-01-29": "Chinese New Year (Spring Festival)", - "2009-01-30": "Chinese New Year (Spring Festival)", - "2009-01-31": "Chinese New Year (Spring Festival)", + "2009-01-28": "Chinese New Year's Eve (Observed)", + "2009-01-29": "Day off (substituted from 01/24/2009)", + "2009-01-30": "Day off (substituted from 02/01/2009)", "2009-03-08": "International Women's Day", "2009-04-04": "Tomb-Sweeping Day", - "2009-04-05": "Tomb-Sweeping Day", - "2009-04-06": "Tomb-Sweeping Day", + "2009-04-06": "Tomb-Sweeping Day (Observed)", "2009-05-01": "Labor Day", - "2009-05-02": "Labor Day", - "2009-05-03": "Labor Day", "2009-05-04": "Youth Day", "2009-05-28": "Dragon Boat Festival", - "2009-05-29": "Dragon Boat Festival", - "2009-05-30": "Dragon Boat Festival", + "2009-05-29": "Day off (substituted from 05/31/2009)", "2009-06-01": "Children's Day", "2009-08-01": "Army Day", "2009-10-01": "National Day", "2009-10-02": "National Day", "2009-10-03": "Mid-Autumn Festival; National Day", - "2009-10-04": "National Day", - "2009-10-05": "National Day", - "2009-10-06": "National Day", - "2009-10-07": "National Day", - "2009-10-08": "National Day", + "2009-10-05": "Mid-Autumn Festival (Observed)", + "2009-10-06": "National Day (Observed)", + "2009-10-07": "Day off (substituted from 09/27/2009)", + "2009-10-08": "Day off (substituted from 10/10/2009)", "2010-01-01": "New Year's Day", - "2010-01-02": "New Year's Day", - "2010-01-03": "New Year's Day", - "2010-02-13": "Chinese New Year (Spring Festival)", + "2010-02-13": "Chinese New Year's Eve", "2010-02-14": "Chinese New Year (Spring Festival)", "2010-02-15": "Chinese New Year (Spring Festival)", - "2010-02-16": "Chinese New Year (Spring Festival)", - "2010-02-17": "Chinese New Year (Spring Festival)", - "2010-02-18": "Chinese New Year (Spring Festival)", - "2010-02-19": "Chinese New Year (Spring Festival)", + "2010-02-16": "Chinese New Year's Eve (Observed)", + "2010-02-17": "Chinese New Year (Spring Festival) (Observed)", + "2010-02-18": "Day off (substituted from 02/20/2010)", + "2010-02-19": "Day off (substituted from 02/21/2010)", "2010-03-08": "International Women's Day", - "2010-04-03": "Tomb-Sweeping Day", - "2010-04-04": "Tomb-Sweeping Day", "2010-04-05": "Tomb-Sweeping Day", "2010-05-01": "Labor Day", - "2010-05-02": "Labor Day", - "2010-05-03": "Labor Day", + "2010-05-03": "Labor Day (Observed)", "2010-05-04": "Youth Day", "2010-06-01": "Children's Day", - "2010-06-14": "Dragon Boat Festival", - "2010-06-15": "Dragon Boat Festival", + "2010-06-14": "Day off (substituted from 06/12/2010)", + "2010-06-15": "Day off (substituted from 06/13/2010)", "2010-06-16": "Dragon Boat Festival", "2010-08-01": "Army Day", "2010-09-22": "Mid-Autumn Festival", - "2010-09-23": "Mid-Autumn Festival", - "2010-09-24": "Mid-Autumn Festival", + "2010-09-23": "Day off (substituted from 09/19/2010)", + "2010-09-24": "Day off (substituted from 09/25/2010)", "2010-10-01": "National Day", "2010-10-02": "National Day", "2010-10-03": "National Day", - "2010-10-04": "National Day", - "2010-10-05": "National Day", - "2010-10-06": "National Day", - "2010-10-07": "National Day", + "2010-10-04": "National Day (Observed)", + "2010-10-05": "National Day (Observed)", + "2010-10-06": "Day off (substituted from 09/26/2010)", + "2010-10-07": "Day off (substituted from 10/09/2010)", "2011-01-01": "New Year's Day", - "2011-01-02": "New Year's Day", - "2011-01-03": "New Year's Day", - "2011-02-02": "Chinese New Year (Spring Festival)", + "2011-01-03": "New Year's Day (Observed)", + "2011-02-02": "Chinese New Year's Eve", "2011-02-03": "Chinese New Year (Spring Festival)", "2011-02-04": "Chinese New Year (Spring Festival)", - "2011-02-05": "Chinese New Year (Spring Festival)", - "2011-02-06": "Chinese New Year (Spring Festival)", - "2011-02-07": "Chinese New Year (Spring Festival)", - "2011-02-08": "Chinese New Year (Spring Festival)", + "2011-02-07": "Day off (substituted from 01/30/2011)", + "2011-02-08": "Day off (substituted from 02/12/2011)", "2011-03-08": "International Women's Day", - "2011-04-03": "Tomb-Sweeping Day", - "2011-04-04": "Tomb-Sweeping Day", + "2011-04-04": "Day off (substituted from 04/02/2011)", "2011-04-05": "Tomb-Sweeping Day", - "2011-04-30": "Labor Day", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day", + "2011-05-02": "Labor Day (Observed)", "2011-05-04": "Youth Day", "2011-06-01": "Children's Day", - "2011-06-04": "Dragon Boat Festival", - "2011-06-05": "Dragon Boat Festival", "2011-06-06": "Dragon Boat Festival", "2011-08-01": "Army Day", - "2011-09-10": "Mid-Autumn Festival", - "2011-09-11": "Mid-Autumn Festival", "2011-09-12": "Mid-Autumn Festival", "2011-10-01": "National Day", "2011-10-02": "National Day", "2011-10-03": "National Day", - "2011-10-04": "National Day", - "2011-10-05": "National Day", - "2011-10-06": "National Day", - "2011-10-07": "National Day", + "2011-10-04": "National Day (Observed)", + "2011-10-05": "National Day (Observed)", + "2011-10-06": "Day off (substituted from 10/08/2011)", + "2011-10-07": "Day off (substituted from 10/09/2011)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day", - "2012-01-03": "New Year's Day", - "2012-01-22": "Chinese New Year (Spring Festival)", + "2012-01-02": "New Year's Day (Observed)", + "2012-01-03": "Day off (substituted from 12/31/2011)", + "2012-01-22": "Chinese New Year's Eve", "2012-01-23": "Chinese New Year (Spring Festival)", "2012-01-24": "Chinese New Year (Spring Festival)", - "2012-01-25": "Chinese New Year (Spring Festival)", - "2012-01-26": "Chinese New Year (Spring Festival)", - "2012-01-27": "Chinese New Year (Spring Festival)", - "2012-01-28": "Chinese New Year (Spring Festival)", + "2012-01-25": "Chinese New Year's Eve (Observed)", + "2012-01-26": "Day off (substituted from 01/21/2012)", + "2012-01-27": "Day off (substituted from 01/29/2012)", "2012-03-08": "International Women's Day", - "2012-04-02": "Tomb-Sweeping Day", - "2012-04-03": "Tomb-Sweeping Day", + "2012-04-02": "Day off (substituted from 03/31/2012)", + "2012-04-03": "Day off (substituted from 04/01/2012)", "2012-04-04": "Tomb-Sweeping Day", - "2012-04-29": "Labor Day", - "2012-04-30": "Labor Day", + "2012-04-30": "Day off (substituted from 04/28/2012)", "2012-05-01": "Labor Day", "2012-05-04": "Youth Day", "2012-06-01": "Children's Day", - "2012-06-22": "Dragon Boat Festival", + "2012-06-22": "Dragon Boat Festival (Observed)", "2012-06-23": "Dragon Boat Festival", - "2012-06-24": "Dragon Boat Festival", "2012-08-01": "Army Day", "2012-09-30": "Mid-Autumn Festival", "2012-10-01": "National Day", "2012-10-02": "National Day", "2012-10-03": "National Day", - "2012-10-04": "National Day", - "2012-10-05": "National Day", - "2012-10-06": "National Day", - "2012-10-07": "National Day", + "2012-10-04": "Mid-Autumn Festival (Observed)", + "2012-10-05": "Day off (substituted from 09/29/2012)", "2013-01-01": "New Year's Day", - "2013-01-02": "New Year's Day", - "2013-01-03": "New Year's Day", - "2013-02-09": "Chinese New Year (Spring Festival)", + "2013-01-02": "Day off (substituted from 01/05/2013)", + "2013-01-03": "Day off (substituted from 01/06/2013)", + "2013-02-09": "Chinese New Year's Eve", "2013-02-10": "Chinese New Year (Spring Festival)", "2013-02-11": "Chinese New Year (Spring Festival)", - "2013-02-12": "Chinese New Year (Spring Festival)", - "2013-02-13": "Chinese New Year (Spring Festival)", - "2013-02-14": "Chinese New Year (Spring Festival)", - "2013-02-15": "Chinese New Year (Spring Festival)", + "2013-02-12": "Chinese New Year's Eve (Observed)", + "2013-02-13": "Chinese New Year (Spring Festival) (Observed)", + "2013-02-14": "Day off (substituted from 02/16/2013)", + "2013-02-15": "Day off (substituted from 02/17/2013)", "2013-03-08": "International Women's Day", "2013-04-04": "Tomb-Sweeping Day", - "2013-04-05": "Tomb-Sweeping Day", - "2013-04-06": "Tomb-Sweeping Day", - "2013-04-29": "Labor Day", - "2013-04-30": "Labor Day", + "2013-04-05": "Day off (substituted from 04/07/2013)", + "2013-04-29": "Day off (substituted from 04/27/2013)", + "2013-04-30": "Day off (substituted from 04/28/2013)", "2013-05-01": "Labor Day", "2013-05-04": "Youth Day", "2013-06-01": "Children's Day", - "2013-06-10": "Dragon Boat Festival", - "2013-06-11": "Dragon Boat Festival", + "2013-06-10": "Day off (substituted from 06/08/2013)", + "2013-06-11": "Day off (substituted from 06/09/2013)", "2013-06-12": "Dragon Boat Festival", "2013-08-01": "Army Day", "2013-09-19": "Mid-Autumn Festival", - "2013-09-20": "Mid-Autumn Festival", - "2013-09-21": "Mid-Autumn Festival", + "2013-09-20": "Day off (substituted from 09/22/2013)", "2013-10-01": "National Day", "2013-10-02": "National Day", "2013-10-03": "National Day", - "2013-10-04": "National Day", - "2013-10-05": "National Day", - "2013-10-06": "National Day", - "2013-10-07": "National Day", + "2013-10-04": "Day off (substituted from 09/29/2013)", + "2013-10-07": "Day off (substituted from 10/12/2013)", "2014-01-01": "New Year's Day", "2014-01-31": "Chinese New Year (Spring Festival)", "2014-02-01": "Chinese New Year (Spring Festival)", "2014-02-02": "Chinese New Year (Spring Festival)", - "2014-02-03": "Chinese New Year (Spring Festival)", - "2014-02-04": "Chinese New Year (Spring Festival)", - "2014-02-05": "Chinese New Year (Spring Festival)", - "2014-02-06": "Chinese New Year (Spring Festival)", + "2014-02-03": "Chinese New Year (Spring Festival) (Observed)", + "2014-02-04": "Chinese New Year (Spring Festival) (Observed)", + "2014-02-05": "Day off (substituted from 01/26/2014)", + "2014-02-06": "Day off (substituted from 02/08/2014)", "2014-03-08": "International Women's Day", "2014-04-05": "Tomb-Sweeping Day", + "2014-04-07": "Tomb-Sweeping Day (Observed)", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day", - "2014-05-03": "Labor Day", + "2014-05-02": "Day off (substituted from 05/04/2014)", "2014-05-04": "Youth Day", "2014-06-01": "Children's Day", "2014-06-02": "Dragon Boat Festival", @@ -973,103 +899,94 @@ "2014-10-01": "National Day", "2014-10-02": "National Day", "2014-10-03": "National Day", - "2014-10-04": "National Day", - "2014-10-05": "National Day", - "2014-10-06": "National Day", - "2014-10-07": "National Day", + "2014-10-06": "Day off (substituted from 09/28/2014)", + "2014-10-07": "Day off (substituted from 10/11/2014)", "2015-01-01": "New Year's Day", - "2015-01-02": "New Year's Day", - "2015-01-03": "New Year's Day", - "2015-02-18": "Chinese New Year (Spring Festival)", + "2015-01-02": "Day off (substituted from 01/04/2015)", + "2015-02-18": "Day off (substituted from 02/15/2015)", "2015-02-19": "Chinese New Year (Spring Festival)", "2015-02-20": "Chinese New Year (Spring Festival)", "2015-02-21": "Chinese New Year (Spring Festival)", - "2015-02-22": "Chinese New Year (Spring Festival)", - "2015-02-23": "Chinese New Year (Spring Festival)", - "2015-02-24": "Chinese New Year (Spring Festival)", + "2015-02-23": "Chinese New Year (Spring Festival) (Observed)", + "2015-02-24": "Day off (substituted from 02/28/2015)", "2015-03-08": "International Women's Day", "2015-04-05": "Tomb-Sweeping Day", + "2015-04-06": "Tomb-Sweeping Day (Observed)", "2015-05-01": "Labor Day", "2015-05-04": "Youth Day", "2015-06-01": "Children's Day", "2015-06-20": "Dragon Boat Festival", + "2015-06-22": "Dragon Boat Festival (Observed)", "2015-08-01": "Army Day", + "2015-09-03": "70th Anniversary of the Victory of the Chinese People\u2019s War of Resistance against Japanese Aggression and the World Anti-Fascist War", + "2015-09-04": "Day off (substituted from 09/06/2015)", "2015-09-27": "Mid-Autumn Festival", "2015-10-01": "National Day", "2015-10-02": "National Day", "2015-10-03": "National Day", - "2015-10-04": "National Day", - "2015-10-05": "National Day", - "2015-10-06": "National Day", - "2015-10-07": "National Day", + "2015-10-05": "National Day (Observed)", + "2015-10-06": "Mid-Autumn Festival (Observed)", + "2015-10-07": "Day off (substituted from 10/10/2015)", "2016-01-01": "New Year's Day", - "2016-02-07": "Chinese New Year (Spring Festival)", "2016-02-08": "Chinese New Year (Spring Festival)", "2016-02-09": "Chinese New Year (Spring Festival)", "2016-02-10": "Chinese New Year (Spring Festival)", - "2016-02-11": "Chinese New Year (Spring Festival)", - "2016-02-12": "Chinese New Year (Spring Festival)", - "2016-02-13": "Chinese New Year (Spring Festival)", + "2016-02-11": "Day off (substituted from 02/06/2016)", + "2016-02-12": "Day off (substituted from 02/14/2016)", "2016-03-08": "International Women's Day", "2016-04-04": "Tomb-Sweeping Day", "2016-05-01": "Labor Day", + "2016-05-02": "Labor Day (Observed)", "2016-05-04": "Youth Day", "2016-06-01": "Children's Day", "2016-06-09": "Dragon Boat Festival", - "2016-06-10": "Dragon Boat Festival", - "2016-06-11": "Dragon Boat Festival", + "2016-06-10": "Day off (substituted from 06/12/2016)", "2016-08-01": "Army Day", "2016-09-15": "Mid-Autumn Festival", - "2016-09-16": "Mid-Autumn Festival", - "2016-09-17": "Mid-Autumn Festival", + "2016-09-16": "Day off (substituted from 09/18/2016)", "2016-10-01": "National Day", "2016-10-02": "National Day", "2016-10-03": "National Day", - "2016-10-04": "National Day", - "2016-10-05": "National Day", - "2016-10-06": "National Day", - "2016-10-07": "National Day", + "2016-10-04": "National Day (Observed)", + "2016-10-05": "National Day (Observed)", + "2016-10-06": "Day off (substituted from 10/08/2016)", + "2016-10-07": "Day off (substituted from 10/09/2016)", "2017-01-01": "New Year's Day", - "2017-01-27": "Chinese New Year (Spring Festival)", + "2017-01-02": "New Year's Day (Observed)", + "2017-01-27": "Day off (substituted from 01/22/2017)", "2017-01-28": "Chinese New Year (Spring Festival)", "2017-01-29": "Chinese New Year (Spring Festival)", "2017-01-30": "Chinese New Year (Spring Festival)", - "2017-01-31": "Chinese New Year (Spring Festival)", - "2017-02-01": "Chinese New Year (Spring Festival)", - "2017-02-02": "Chinese New Year (Spring Festival)", + "2017-01-31": "Chinese New Year (Spring Festival) (Observed)", + "2017-02-01": "Chinese New Year (Spring Festival) (Observed)", + "2017-02-02": "Day off (substituted from 02/04/2017)", "2017-03-08": "International Women's Day", - "2017-04-02": "Tomb-Sweeping Day", - "2017-04-03": "Tomb-Sweeping Day", + "2017-04-03": "Day off (substituted from 04/01/2017)", "2017-04-04": "Tomb-Sweeping Day", "2017-05-01": "Labor Day", "2017-05-04": "Youth Day", - "2017-05-28": "Dragon Boat Festival", - "2017-05-29": "Dragon Boat Festival", + "2017-05-29": "Day off (substituted from 05/27/2017)", "2017-05-30": "Dragon Boat Festival", "2017-06-01": "Children's Day", "2017-08-01": "Army Day", "2017-10-01": "National Day", "2017-10-02": "National Day", "2017-10-03": "National Day", - "2017-10-04": "Mid-Autumn Festival; National Day", - "2017-10-05": "National Day", - "2017-10-06": "National Day", - "2017-10-07": "National Day", - "2017-10-08": "National Day", + "2017-10-04": "Mid-Autumn Festival", + "2017-10-05": "National Day (Observed)", + "2017-10-06": "Day off (substituted from 09/30/2017)", "2018-01-01": "New Year's Day", - "2018-02-15": "Chinese New Year (Spring Festival)", + "2018-02-15": "Day off (substituted from 02/11/2018)", "2018-02-16": "Chinese New Year (Spring Festival)", "2018-02-17": "Chinese New Year (Spring Festival)", "2018-02-18": "Chinese New Year (Spring Festival)", - "2018-02-19": "Chinese New Year (Spring Festival)", - "2018-02-20": "Chinese New Year (Spring Festival)", - "2018-02-21": "Chinese New Year (Spring Festival)", + "2018-02-19": "Chinese New Year (Spring Festival) (Observed)", + "2018-02-20": "Chinese New Year (Spring Festival) (Observed)", + "2018-02-21": "Day off (substituted from 02/24/2018)", "2018-03-08": "International Women's Day", "2018-04-05": "Tomb-Sweeping Day", - "2018-04-06": "Tomb-Sweeping Day", - "2018-04-07": "Tomb-Sweeping Day", - "2018-04-29": "Labor Day", - "2018-04-30": "Labor Day", + "2018-04-06": "Day off (substituted from 04/08/2018)", + "2018-04-30": "Day off (substituted from 04/28/2018)", "2018-05-01": "Labor Day", "2018-05-04": "Youth Day", "2018-06-01": "Children's Day", @@ -1079,20 +996,15 @@ "2018-10-01": "National Day", "2018-10-02": "National Day", "2018-10-03": "National Day", - "2018-10-04": "National Day", - "2018-10-05": "National Day", - "2018-10-06": "National Day", - "2018-10-07": "National Day", - "2018-12-30": "New Year's Day", - "2018-12-31": "New Year's Day", + "2018-10-04": "Day off (substituted from 09/29/2018)", + "2018-10-05": "Day off (substituted from 09/30/2018)", + "2018-12-31": "Day off (substituted from 12/29/2018)", "2019-01-01": "New Year's Day", - "2019-02-04": "Chinese New Year (Spring Festival)", + "2019-02-04": "Day off (substituted from 02/02/2019)", "2019-02-05": "Chinese New Year (Spring Festival)", "2019-02-06": "Chinese New Year (Spring Festival)", "2019-02-07": "Chinese New Year (Spring Festival)", - "2019-02-08": "Chinese New Year (Spring Festival)", - "2019-02-09": "Chinese New Year (Spring Festival)", - "2019-02-10": "Chinese New Year (Spring Festival)", + "2019-02-08": "Day off (substituted from 02/03/2019)", "2019-03-08": "International Women's Day", "2019-04-05": "Tomb-Sweeping Day", "2019-05-01": "Labor Day", @@ -1104,1017 +1016,600 @@ "2019-10-01": "National Day", "2019-10-02": "National Day", "2019-10-03": "National Day", - "2019-10-04": "National Day", - "2019-10-05": "National Day", - "2019-10-06": "National Day", - "2019-10-07": "National Day", + "2019-10-04": "Day off (substituted from 09/29/2019)", + "2019-10-07": "Day off (substituted from 10/12/2019)", "2020-01-01": "New Year's Day", - "2020-01-24": "Chinese New Year (Spring Festival)", + "2020-01-24": "Day off (substituted from 01/19/2020)", "2020-01-25": "Chinese New Year (Spring Festival)", "2020-01-26": "Chinese New Year (Spring Festival)", "2020-01-27": "Chinese New Year (Spring Festival)", - "2020-01-28": "Chinese New Year (Spring Festival)", - "2020-01-29": "Chinese New Year (Spring Festival)", - "2020-01-30": "Chinese New Year (Spring Festival)", + "2020-01-28": "Chinese New Year (Spring Festival) (Observed)", + "2020-01-29": "Chinese New Year (Spring Festival) (Observed)", + "2020-01-30": "Day off (substituted from 02/01/2020)", "2020-03-08": "International Women's Day", "2020-04-04": "Tomb-Sweeping Day", - "2020-04-05": "Tomb-Sweeping Day", - "2020-04-06": "Tomb-Sweeping Day", + "2020-04-06": "Tomb-Sweeping Day (Observed)", "2020-05-01": "Labor Day", - "2020-05-02": "Labor Day", - "2020-05-03": "Labor Day", - "2020-05-04": "Labor Day; Youth Day", - "2020-05-05": "Labor Day", + "2020-05-04": "Day off (substituted from 04/26/2020); Youth Day", + "2020-05-05": "Day off (substituted from 05/09/2020)", "2020-06-01": "Children's Day", "2020-06-25": "Dragon Boat Festival", - "2020-06-26": "Dragon Boat Festival", - "2020-06-27": "Dragon Boat Festival", + "2020-06-26": "Day off (substituted from 06/28/2020)", "2020-08-01": "Army Day", "2020-10-01": "Mid-Autumn Festival; National Day", "2020-10-02": "National Day", "2020-10-03": "National Day", - "2020-10-04": "National Day", - "2020-10-05": "National Day", - "2020-10-06": "National Day", - "2020-10-07": "National Day", - "2020-10-08": "National Day", + "2020-10-05": "National Day (Observed)", + "2020-10-06": "Mid-Autumn Festival (Observed)", + "2020-10-07": "Day off (substituted from 09/27/2020)", + "2020-10-08": "Day off (substituted from 10/10/2020)", "2021-01-01": "New Year's Day", - "2021-01-02": "New Year's Day", - "2021-01-03": "New Year's Day", - "2021-02-11": "Chinese New Year (Spring Festival)", + "2021-02-11": "Day off (substituted from 02/07/2021)", "2021-02-12": "Chinese New Year (Spring Festival)", "2021-02-13": "Chinese New Year (Spring Festival)", "2021-02-14": "Chinese New Year (Spring Festival)", - "2021-02-15": "Chinese New Year (Spring Festival)", - "2021-02-16": "Chinese New Year (Spring Festival)", - "2021-02-17": "Chinese New Year (Spring Festival)", + "2021-02-15": "Chinese New Year (Spring Festival) (Observed)", + "2021-02-16": "Chinese New Year (Spring Festival) (Observed)", + "2021-02-17": "Day off (substituted from 02/20/2021)", "2021-03-08": "International Women's Day", - "2021-04-03": "Tomb-Sweeping Day", "2021-04-04": "Tomb-Sweeping Day", - "2021-04-05": "Tomb-Sweeping Day", + "2021-04-05": "Tomb-Sweeping Day (Observed)", "2021-05-01": "Labor Day", - "2021-05-02": "Labor Day", - "2021-05-03": "Labor Day", - "2021-05-04": "Labor Day; Youth Day", - "2021-05-05": "Labor Day", + "2021-05-03": "Labor Day (Observed)", + "2021-05-04": "Day off (substituted from 04/25/2021); Youth Day", + "2021-05-05": "Day off (substituted from 05/08/2021)", "2021-06-01": "Children's Day", - "2021-06-12": "Dragon Boat Festival", - "2021-06-13": "Dragon Boat Festival", "2021-06-14": "Dragon Boat Festival", "2021-08-01": "Army Day", - "2021-09-19": "Mid-Autumn Festival", - "2021-09-20": "Mid-Autumn Festival", + "2021-09-20": "Day off (substituted from 09/18/2021)", "2021-09-21": "Mid-Autumn Festival", "2021-10-01": "National Day", "2021-10-02": "National Day", "2021-10-03": "National Day", - "2021-10-04": "National Day", - "2021-10-05": "National Day", - "2021-10-06": "National Day", - "2021-10-07": "National Day", + "2021-10-04": "National Day (Observed)", + "2021-10-05": "National Day (Observed)", + "2021-10-06": "Day off (substituted from 09/26/2021)", + "2021-10-07": "Day off (substituted from 10/09/2021)", "2022-01-01": "New Year's Day", - "2022-01-02": "New Year's Day", - "2022-01-03": "New Year's Day", - "2022-01-31": "Chinese New Year (Spring Festival)", + "2022-01-03": "New Year's Day (Observed)", + "2022-01-31": "Day off (substituted from 01/29/2022)", "2022-02-01": "Chinese New Year (Spring Festival)", "2022-02-02": "Chinese New Year (Spring Festival)", "2022-02-03": "Chinese New Year (Spring Festival)", - "2022-02-04": "Chinese New Year (Spring Festival)", - "2022-02-05": "Chinese New Year (Spring Festival)", - "2022-02-06": "Chinese New Year (Spring Festival)", + "2022-02-04": "Day off (substituted from 01/30/2022)", "2022-03-08": "International Women's Day", - "2022-04-03": "Tomb-Sweeping Day", - "2022-04-04": "Tomb-Sweeping Day", + "2022-04-04": "Day off (substituted from 04/02/2022)", "2022-04-05": "Tomb-Sweeping Day", - "2022-04-30": "Labor Day", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day", - "2022-05-03": "Labor Day", - "2022-05-04": "Labor Day; Youth Day", + "2022-05-02": "Labor Day (Observed)", + "2022-05-03": "Day off (substituted from 04/24/2022)", + "2022-05-04": "Day off (substituted from 05/07/2022); Youth Day", "2022-06-01": "Children's Day", "2022-06-03": "Dragon Boat Festival", - "2022-06-04": "Dragon Boat Festival", - "2022-06-05": "Dragon Boat Festival", "2022-08-01": "Army Day", "2022-09-10": "Mid-Autumn Festival", - "2022-09-11": "Mid-Autumn Festival", - "2022-09-12": "Mid-Autumn Festival", + "2022-09-12": "Mid-Autumn Festival (Observed)", "2022-10-01": "National Day", "2022-10-02": "National Day", "2022-10-03": "National Day", - "2022-10-04": "National Day", - "2022-10-05": "National Day", - "2022-10-06": "National Day", - "2022-10-07": "National Day", - "2022-12-31": "New Year's Day", + "2022-10-04": "National Day (Observed)", + "2022-10-05": "National Day (Observed)", + "2022-10-06": "Day off (substituted from 10/08/2022)", + "2022-10-07": "Day off (substituted from 10/09/2022)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day", - "2023-01-21": "Chinese New Year (Spring Festival)", + "2023-01-02": "New Year's Day (Observed)", "2023-01-22": "Chinese New Year (Spring Festival)", "2023-01-23": "Chinese New Year (Spring Festival)", "2023-01-24": "Chinese New Year (Spring Festival)", - "2023-01-25": "Chinese New Year (Spring Festival)", - "2023-01-26": "Chinese New Year (Spring Festival)", - "2023-01-27": "Chinese New Year (Spring Festival)", + "2023-01-25": "Chinese New Year (Spring Festival) (Observed)", + "2023-01-26": "Day off (substituted from 01/28/2023)", + "2023-01-27": "Day off (substituted from 01/29/2023)", "2023-03-08": "International Women's Day", "2023-04-05": "Tomb-Sweeping Day", - "2023-04-29": "Labor Day", - "2023-04-30": "Labor Day", "2023-05-01": "Labor Day", - "2023-05-02": "Labor Day", - "2023-05-03": "Labor Day", + "2023-05-02": "Day off (substituted from 04/23/2023)", + "2023-05-03": "Day off (substituted from 05/06/2023)", "2023-05-04": "Youth Day", "2023-06-01": "Children's Day", "2023-06-22": "Dragon Boat Festival", - "2023-06-23": "Dragon Boat Festival", - "2023-06-24": "Dragon Boat Festival", + "2023-06-23": "Day off (substituted from 06/25/2023)", "2023-08-01": "Army Day", "2023-09-29": "Mid-Autumn Festival", - "2023-09-30": "Mid-Autumn Festival", "2023-10-01": "National Day", "2023-10-02": "National Day", "2023-10-03": "National Day", - "2023-10-04": "National Day", - "2023-10-05": "National Day", - "2023-10-06": "National Day", + "2023-10-04": "National Day (Observed)", + "2023-10-05": "Day off (substituted from 10/07/2023)", + "2023-10-06": "Day off (substituted from 10/08/2023)", "2024-01-01": "New Year's Day", - "2024-02-09": "Chinese New Year (Spring Festival)", "2024-02-10": "Chinese New Year (Spring Festival)", "2024-02-11": "Chinese New Year (Spring Festival)", "2024-02-12": "Chinese New Year (Spring Festival)", - "2024-02-13": "Chinese New Year (Spring Festival)", - "2024-02-14": "Chinese New Year (Spring Festival)", - "2024-02-15": "Chinese New Year (Spring Festival)", + "2024-02-13": "Chinese New Year (Spring Festival) (Observed)", + "2024-02-14": "Chinese New Year (Spring Festival) (Observed)", + "2024-02-15": "Day off (substituted from 02/04/2024)", + "2024-02-16": "Day off (substituted from 02/18/2024)", "2024-03-08": "International Women's Day", "2024-04-04": "Tomb-Sweeping Day", - "2024-04-05": "Tomb-Sweeping Day", - "2024-04-06": "Tomb-Sweeping Day", - "2024-04-29": "Labor Day", - "2024-04-30": "Labor Day", + "2024-04-05": "Day off (substituted from 04/07/2024)", "2024-05-01": "Labor Day", - "2024-05-02": "Labor Day", - "2024-05-03": "Labor Day", + "2024-05-02": "Day off (substituted from 04/28/2024)", + "2024-05-03": "Day off (substituted from 05/11/2024)", "2024-05-04": "Youth Day", "2024-06-01": "Children's Day", - "2024-06-08": "Dragon Boat Festival", - "2024-06-09": "Dragon Boat Festival", "2024-06-10": "Dragon Boat Festival", "2024-08-01": "Army Day", - "2024-09-15": "Mid-Autumn Festival", - "2024-09-16": "Mid-Autumn Festival", + "2024-09-16": "Day off (substituted from 09/14/2024)", "2024-09-17": "Mid-Autumn Festival", "2024-10-01": "National Day", "2024-10-02": "National Day", "2024-10-03": "National Day", - "2024-10-04": "National Day", - "2024-10-05": "National Day", - "2024-10-06": "National Day", - "2024-10-07": "National Day", + "2024-10-04": "Day off (substituted from 09/29/2024)", + "2024-10-07": "Day off (substituted from 10/12/2024)", "2025-01-01": "New Year's Day", - "2025-01-28": "Chinese New Year (Spring Festival)", "2025-01-29": "Chinese New Year (Spring Festival)", "2025-01-30": "Chinese New Year (Spring Festival)", "2025-01-31": "Chinese New Year (Spring Festival)", - "2025-02-01": "Chinese New Year (Spring Festival)", - "2025-02-02": "Chinese New Year (Spring Festival)", - "2025-02-03": "Chinese New Year (Spring Festival)", "2025-03-08": "International Women's Day", "2025-04-04": "Tomb-Sweeping Day", - "2025-04-05": "Tomb-Sweeping Day", - "2025-04-06": "Tomb-Sweeping Day", "2025-05-01": "Labor Day", - "2025-05-02": "Labor Day", - "2025-05-03": "Labor Day", - "2025-05-04": "Labor Day; Youth Day", - "2025-05-05": "Labor Day", + "2025-05-04": "Youth Day", "2025-05-31": "Dragon Boat Festival", - "2025-06-01": "Children's Day; Dragon Boat Festival", - "2025-06-02": "Dragon Boat Festival", + "2025-06-01": "Children's Day", + "2025-06-02": "Dragon Boat Festival (Observed)", "2025-08-01": "Army Day", "2025-10-01": "National Day", "2025-10-02": "National Day", "2025-10-03": "National Day", - "2025-10-04": "National Day", - "2025-10-05": "National Day", - "2025-10-06": "Mid-Autumn Festival; National Day", - "2025-10-07": "National Day", - "2025-10-08": "National Day", + "2025-10-06": "Mid-Autumn Festival", "2026-01-01": "New Year's Day", - "2026-01-02": "New Year's Day", - "2026-01-03": "New Year's Day", - "2026-02-16": "Chinese New Year (Spring Festival)", "2026-02-17": "Chinese New Year (Spring Festival)", "2026-02-18": "Chinese New Year (Spring Festival)", "2026-02-19": "Chinese New Year (Spring Festival)", - "2026-02-20": "Chinese New Year (Spring Festival)", - "2026-02-21": "Chinese New Year (Spring Festival)", - "2026-02-22": "Chinese New Year (Spring Festival)", "2026-03-08": "International Women's Day", - "2026-04-04": "Tomb-Sweeping Day", "2026-04-05": "Tomb-Sweeping Day", - "2026-04-06": "Tomb-Sweeping Day", + "2026-04-06": "Tomb-Sweeping Day (Observed)", "2026-05-01": "Labor Day", - "2026-05-02": "Labor Day", - "2026-05-03": "Labor Day", - "2026-05-04": "Labor Day; Youth Day", - "2026-05-05": "Labor Day", + "2026-05-04": "Youth Day", "2026-06-01": "Children's Day", "2026-06-19": "Dragon Boat Festival", - "2026-06-20": "Dragon Boat Festival", - "2026-06-21": "Dragon Boat Festival", "2026-08-01": "Army Day", "2026-09-25": "Mid-Autumn Festival", - "2026-09-26": "Mid-Autumn Festival", - "2026-09-27": "Mid-Autumn Festival", "2026-10-01": "National Day", "2026-10-02": "National Day", "2026-10-03": "National Day", - "2026-10-04": "National Day", - "2026-10-05": "National Day", - "2026-10-06": "National Day", - "2026-10-07": "National Day", + "2026-10-05": "National Day (Observed)", "2027-01-01": "New Year's Day", - "2027-01-02": "New Year's Day", - "2027-01-03": "New Year's Day", - "2027-02-05": "Chinese New Year (Spring Festival)", "2027-02-06": "Chinese New Year (Spring Festival)", "2027-02-07": "Chinese New Year (Spring Festival)", "2027-02-08": "Chinese New Year (Spring Festival)", - "2027-02-09": "Chinese New Year (Spring Festival)", - "2027-02-10": "Chinese New Year (Spring Festival)", - "2027-02-11": "Chinese New Year (Spring Festival)", + "2027-02-09": "Chinese New Year (Spring Festival) (Observed)", + "2027-02-10": "Chinese New Year (Spring Festival) (Observed)", "2027-03-08": "International Women's Day", - "2027-04-03": "Tomb-Sweeping Day", - "2027-04-04": "Tomb-Sweeping Day", "2027-04-05": "Tomb-Sweeping Day", "2027-05-01": "Labor Day", - "2027-05-02": "Labor Day", - "2027-05-03": "Labor Day", - "2027-05-04": "Labor Day; Youth Day", - "2027-05-05": "Labor Day", + "2027-05-03": "Labor Day (Observed)", + "2027-05-04": "Youth Day", "2027-06-01": "Children's Day", - "2027-06-07": "Dragon Boat Festival", - "2027-06-08": "Dragon Boat Festival", "2027-06-09": "Dragon Boat Festival", "2027-08-01": "Army Day", - "2027-09-13": "Mid-Autumn Festival", - "2027-09-14": "Mid-Autumn Festival", "2027-09-15": "Mid-Autumn Festival", "2027-10-01": "National Day", "2027-10-02": "National Day", "2027-10-03": "National Day", - "2027-10-04": "National Day", - "2027-10-05": "National Day", - "2027-10-06": "National Day", - "2027-10-07": "National Day", + "2027-10-04": "National Day (Observed)", + "2027-10-05": "National Day (Observed)", "2028-01-01": "New Year's Day", - "2028-01-02": "New Year's Day", - "2028-01-03": "New Year's Day", - "2028-01-25": "Chinese New Year (Spring Festival)", + "2028-01-03": "New Year's Day (Observed)", "2028-01-26": "Chinese New Year (Spring Festival)", "2028-01-27": "Chinese New Year (Spring Festival)", "2028-01-28": "Chinese New Year (Spring Festival)", - "2028-01-29": "Chinese New Year (Spring Festival)", - "2028-01-30": "Chinese New Year (Spring Festival)", - "2028-01-31": "Chinese New Year (Spring Festival)", "2028-03-08": "International Women's Day", - "2028-04-02": "Tomb-Sweeping Day", - "2028-04-03": "Tomb-Sweeping Day", "2028-04-04": "Tomb-Sweeping Day", - "2028-04-29": "Labor Day", - "2028-04-30": "Labor Day", "2028-05-01": "Labor Day", - "2028-05-02": "Labor Day", - "2028-05-03": "Labor Day", "2028-05-04": "Youth Day", - "2028-05-27": "Dragon Boat Festival", "2028-05-28": "Dragon Boat Festival", - "2028-05-29": "Dragon Boat Festival", + "2028-05-29": "Dragon Boat Festival (Observed)", "2028-06-01": "Children's Day", "2028-08-01": "Army Day", "2028-10-01": "National Day", "2028-10-02": "National Day", "2028-10-03": "Mid-Autumn Festival; National Day", - "2028-10-04": "National Day", - "2028-10-05": "National Day", - "2028-10-06": "National Day", - "2028-10-07": "National Day", - "2028-10-08": "National Day", + "2028-10-04": "National Day (Observed)", "2029-01-01": "New Year's Day", - "2029-02-12": "Chinese New Year (Spring Festival)", "2029-02-13": "Chinese New Year (Spring Festival)", "2029-02-14": "Chinese New Year (Spring Festival)", "2029-02-15": "Chinese New Year (Spring Festival)", - "2029-02-16": "Chinese New Year (Spring Festival)", - "2029-02-17": "Chinese New Year (Spring Festival)", - "2029-02-18": "Chinese New Year (Spring Festival)", "2029-03-08": "International Women's Day", - "2029-04-02": "Tomb-Sweeping Day", - "2029-04-03": "Tomb-Sweeping Day", "2029-04-04": "Tomb-Sweeping Day", - "2029-04-29": "Labor Day", - "2029-04-30": "Labor Day", "2029-05-01": "Labor Day", - "2029-05-02": "Labor Day", - "2029-05-03": "Labor Day", "2029-05-04": "Youth Day", "2029-06-01": "Children's Day", "2029-06-16": "Dragon Boat Festival", - "2029-06-17": "Dragon Boat Festival", - "2029-06-18": "Dragon Boat Festival", + "2029-06-18": "Dragon Boat Festival (Observed)", "2029-08-01": "Army Day", "2029-09-22": "Mid-Autumn Festival", - "2029-09-23": "Mid-Autumn Festival", - "2029-09-24": "Mid-Autumn Festival", + "2029-09-24": "Mid-Autumn Festival (Observed)", "2029-10-01": "National Day", "2029-10-02": "National Day", "2029-10-03": "National Day", - "2029-10-04": "National Day", - "2029-10-05": "National Day", - "2029-10-06": "National Day", - "2029-10-07": "National Day", "2030-01-01": "New Year's Day", - "2030-02-02": "Chinese New Year (Spring Festival)", "2030-02-03": "Chinese New Year (Spring Festival)", "2030-02-04": "Chinese New Year (Spring Festival)", "2030-02-05": "Chinese New Year (Spring Festival)", - "2030-02-06": "Chinese New Year (Spring Festival)", - "2030-02-07": "Chinese New Year (Spring Festival)", - "2030-02-08": "Chinese New Year (Spring Festival)", + "2030-02-06": "Chinese New Year (Spring Festival) (Observed)", "2030-03-08": "International Women's Day", "2030-04-05": "Tomb-Sweeping Day", - "2030-04-06": "Tomb-Sweeping Day", - "2030-04-07": "Tomb-Sweeping Day", - "2030-04-29": "Labor Day", - "2030-04-30": "Labor Day", "2030-05-01": "Labor Day", - "2030-05-02": "Labor Day", - "2030-05-03": "Labor Day", "2030-05-04": "Youth Day", "2030-06-01": "Children's Day", - "2030-06-03": "Dragon Boat Festival", - "2030-06-04": "Dragon Boat Festival", "2030-06-05": "Dragon Boat Festival", "2030-08-01": "Army Day", "2030-09-12": "Mid-Autumn Festival", "2030-10-01": "National Day", "2030-10-02": "National Day", "2030-10-03": "National Day", - "2030-10-04": "National Day", - "2030-10-05": "National Day", - "2030-10-06": "National Day", - "2030-10-07": "National Day", "2031-01-01": "New Year's Day", - "2031-01-22": "Chinese New Year (Spring Festival)", "2031-01-23": "Chinese New Year (Spring Festival)", "2031-01-24": "Chinese New Year (Spring Festival)", "2031-01-25": "Chinese New Year (Spring Festival)", - "2031-01-26": "Chinese New Year (Spring Festival)", - "2031-01-27": "Chinese New Year (Spring Festival)", - "2031-01-28": "Chinese New Year (Spring Festival)", + "2031-01-27": "Chinese New Year (Spring Festival) (Observed)", "2031-03-08": "International Women's Day", "2031-04-05": "Tomb-Sweeping Day", - "2031-04-06": "Tomb-Sweeping Day", - "2031-04-07": "Tomb-Sweeping Day", + "2031-04-07": "Tomb-Sweeping Day (Observed)", "2031-05-01": "Labor Day", - "2031-05-02": "Labor Day", - "2031-05-03": "Labor Day", - "2031-05-04": "Labor Day; Youth Day", - "2031-05-05": "Labor Day", + "2031-05-04": "Youth Day", "2031-06-01": "Children's Day", - "2031-06-22": "Dragon Boat Festival", - "2031-06-23": "Dragon Boat Festival", "2031-06-24": "Dragon Boat Festival", "2031-08-01": "Army Day", "2031-10-01": "Mid-Autumn Festival; National Day", "2031-10-02": "National Day", "2031-10-03": "National Day", - "2031-10-04": "National Day", - "2031-10-05": "National Day", - "2031-10-06": "National Day", - "2031-10-07": "National Day", - "2031-10-08": "National Day", "2032-01-01": "New Year's Day", - "2032-01-02": "New Year's Day", - "2032-01-03": "New Year's Day", - "2032-02-10": "Chinese New Year (Spring Festival)", "2032-02-11": "Chinese New Year (Spring Festival)", "2032-02-12": "Chinese New Year (Spring Festival)", "2032-02-13": "Chinese New Year (Spring Festival)", - "2032-02-14": "Chinese New Year (Spring Festival)", - "2032-02-15": "Chinese New Year (Spring Festival)", - "2032-02-16": "Chinese New Year (Spring Festival)", "2032-03-08": "International Women's Day", - "2032-04-03": "Tomb-Sweeping Day", "2032-04-04": "Tomb-Sweeping Day", - "2032-04-05": "Tomb-Sweeping Day", + "2032-04-05": "Tomb-Sweeping Day (Observed)", "2032-05-01": "Labor Day", - "2032-05-02": "Labor Day", - "2032-05-03": "Labor Day", - "2032-05-04": "Labor Day; Youth Day", - "2032-05-05": "Labor Day", + "2032-05-03": "Labor Day (Observed)", + "2032-05-04": "Youth Day", "2032-06-01": "Children's Day", "2032-06-12": "Dragon Boat Festival", - "2032-06-13": "Dragon Boat Festival", - "2032-06-14": "Dragon Boat Festival", + "2032-06-14": "Dragon Boat Festival (Observed)", "2032-08-01": "Army Day", - "2032-09-18": "Mid-Autumn Festival", "2032-09-19": "Mid-Autumn Festival", - "2032-09-20": "Mid-Autumn Festival", + "2032-09-20": "Mid-Autumn Festival (Observed)", "2032-10-01": "National Day", "2032-10-02": "National Day", "2032-10-03": "National Day", - "2032-10-04": "National Day", - "2032-10-05": "National Day", - "2032-10-06": "National Day", - "2032-10-07": "National Day", + "2032-10-04": "National Day (Observed)", + "2032-10-05": "National Day (Observed)", "2033-01-01": "New Year's Day", - "2033-01-02": "New Year's Day", - "2033-01-03": "New Year's Day", - "2033-01-30": "Chinese New Year (Spring Festival)", + "2033-01-03": "New Year's Day (Observed)", "2033-01-31": "Chinese New Year (Spring Festival)", "2033-02-01": "Chinese New Year (Spring Festival)", "2033-02-02": "Chinese New Year (Spring Festival)", - "2033-02-03": "Chinese New Year (Spring Festival)", - "2033-02-04": "Chinese New Year (Spring Festival)", - "2033-02-05": "Chinese New Year (Spring Festival)", "2033-03-08": "International Women's Day", - "2033-04-02": "Tomb-Sweeping Day", - "2033-04-03": "Tomb-Sweeping Day", "2033-04-04": "Tomb-Sweeping Day", - "2033-04-30": "Labor Day", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day", - "2033-05-03": "Labor Day", - "2033-05-04": "Labor Day; Youth Day", - "2033-05-30": "Children's Day; Dragon Boat Festival", - "2033-05-31": "Children's Day; Dragon Boat Festival", + "2033-05-02": "Labor Day (Observed)", + "2033-05-04": "Youth Day", "2033-06-01": "Children's Day; Dragon Boat Festival", "2033-08-01": "Army Day", "2033-09-08": "Mid-Autumn Festival", - "2033-09-09": "Mid-Autumn Festival", - "2033-09-10": "Mid-Autumn Festival", "2033-10-01": "National Day", "2033-10-02": "National Day", "2033-10-03": "National Day", - "2033-10-04": "National Day", - "2033-10-05": "National Day", - "2033-10-06": "National Day", - "2033-10-07": "National Day", + "2033-10-04": "National Day (Observed)", + "2033-10-05": "National Day (Observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day", - "2034-02-18": "Chinese New Year (Spring Festival)", + "2034-01-02": "New Year's Day (Observed)", "2034-02-19": "Chinese New Year (Spring Festival)", "2034-02-20": "Chinese New Year (Spring Festival)", "2034-02-21": "Chinese New Year (Spring Festival)", - "2034-02-22": "Chinese New Year (Spring Festival)", - "2034-02-23": "Chinese New Year (Spring Festival)", - "2034-02-24": "Chinese New Year (Spring Festival)", + "2034-02-22": "Chinese New Year (Spring Festival) (Observed)", "2034-03-08": "International Women's Day", - "2034-04-03": "Tomb-Sweeping Day", - "2034-04-04": "Tomb-Sweeping Day", "2034-04-05": "Tomb-Sweeping Day", - "2034-04-29": "Labor Day", - "2034-04-30": "Labor Day", "2034-05-01": "Labor Day", - "2034-05-02": "Labor Day", - "2034-05-03": "Labor Day", "2034-05-04": "Youth Day", "2034-06-01": "Children's Day", - "2034-06-18": "Dragon Boat Festival", - "2034-06-19": "Dragon Boat Festival", "2034-06-20": "Dragon Boat Festival", "2034-08-01": "Army Day", - "2034-09-25": "Mid-Autumn Festival", - "2034-09-26": "Mid-Autumn Festival", "2034-09-27": "Mid-Autumn Festival", "2034-10-01": "National Day", "2034-10-02": "National Day", "2034-10-03": "National Day", - "2034-10-04": "National Day", - "2034-10-05": "National Day", - "2034-10-06": "National Day", - "2034-10-07": "National Day", + "2034-10-04": "National Day (Observed)", "2035-01-01": "New Year's Day", - "2035-02-07": "Chinese New Year (Spring Festival)", "2035-02-08": "Chinese New Year (Spring Festival)", "2035-02-09": "Chinese New Year (Spring Festival)", "2035-02-10": "Chinese New Year (Spring Festival)", - "2035-02-11": "Chinese New Year (Spring Festival)", - "2035-02-12": "Chinese New Year (Spring Festival)", - "2035-02-13": "Chinese New Year (Spring Festival)", + "2035-02-12": "Chinese New Year (Spring Festival) (Observed)", "2035-03-08": "International Women's Day", "2035-04-05": "Tomb-Sweeping Day", - "2035-04-06": "Tomb-Sweeping Day", - "2035-04-07": "Tomb-Sweeping Day", - "2035-04-29": "Labor Day", - "2035-04-30": "Labor Day", "2035-05-01": "Labor Day", - "2035-05-02": "Labor Day", - "2035-05-03": "Labor Day", "2035-05-04": "Youth Day", "2035-06-01": "Children's Day", - "2035-06-09": "Dragon Boat Festival", "2035-06-10": "Dragon Boat Festival", - "2035-06-11": "Dragon Boat Festival", + "2035-06-11": "Dragon Boat Festival (Observed)", "2035-08-01": "Army Day", - "2035-09-15": "Mid-Autumn Festival", "2035-09-16": "Mid-Autumn Festival", - "2035-09-17": "Mid-Autumn Festival", + "2035-09-17": "Mid-Autumn Festival (Observed)", "2035-10-01": "National Day", "2035-10-02": "National Day", "2035-10-03": "National Day", - "2035-10-04": "National Day", - "2035-10-05": "National Day", - "2035-10-06": "National Day", - "2035-10-07": "National Day", "2036-01-01": "New Year's Day", - "2036-01-27": "Chinese New Year (Spring Festival)", "2036-01-28": "Chinese New Year (Spring Festival)", "2036-01-29": "Chinese New Year (Spring Festival)", "2036-01-30": "Chinese New Year (Spring Festival)", - "2036-01-31": "Chinese New Year (Spring Festival)", - "2036-02-01": "Chinese New Year (Spring Festival)", - "2036-02-02": "Chinese New Year (Spring Festival)", "2036-03-08": "International Women's Day", "2036-04-04": "Tomb-Sweeping Day", - "2036-04-05": "Tomb-Sweeping Day", - "2036-04-06": "Tomb-Sweeping Day", "2036-05-01": "Labor Day", - "2036-05-02": "Labor Day", - "2036-05-03": "Labor Day", - "2036-05-04": "Labor Day; Youth Day", - "2036-05-05": "Labor Day", + "2036-05-04": "Youth Day", "2036-05-30": "Dragon Boat Festival", - "2036-05-31": "Dragon Boat Festival", - "2036-06-01": "Children's Day; Dragon Boat Festival", + "2036-06-01": "Children's Day", "2036-08-01": "Army Day", "2036-10-01": "National Day", "2036-10-02": "National Day", "2036-10-03": "National Day", - "2036-10-04": "Mid-Autumn Festival; National Day", - "2036-10-05": "National Day", - "2036-10-06": "National Day", - "2036-10-07": "National Day", - "2036-10-08": "National Day", + "2036-10-04": "Mid-Autumn Festival", + "2036-10-06": "Mid-Autumn Festival (Observed)", "2037-01-01": "New Year's Day", - "2037-01-02": "New Year's Day", - "2037-01-03": "New Year's Day", - "2037-02-14": "Chinese New Year (Spring Festival)", "2037-02-15": "Chinese New Year (Spring Festival)", "2037-02-16": "Chinese New Year (Spring Festival)", "2037-02-17": "Chinese New Year (Spring Festival)", - "2037-02-18": "Chinese New Year (Spring Festival)", - "2037-02-19": "Chinese New Year (Spring Festival)", - "2037-02-20": "Chinese New Year (Spring Festival)", + "2037-02-18": "Chinese New Year (Spring Festival) (Observed)", "2037-03-08": "International Women's Day", "2037-04-04": "Tomb-Sweeping Day", - "2037-04-05": "Tomb-Sweeping Day", - "2037-04-06": "Tomb-Sweeping Day", + "2037-04-06": "Tomb-Sweeping Day (Observed)", "2037-05-01": "Labor Day", - "2037-05-02": "Labor Day", - "2037-05-03": "Labor Day", - "2037-05-04": "Labor Day; Youth Day", - "2037-05-05": "Labor Day", + "2037-05-04": "Youth Day", "2037-06-01": "Children's Day", "2037-06-18": "Dragon Boat Festival", - "2037-06-19": "Dragon Boat Festival", - "2037-06-20": "Dragon Boat Festival", "2037-08-01": "Army Day", "2037-09-24": "Mid-Autumn Festival", - "2037-09-25": "Mid-Autumn Festival", - "2037-09-26": "Mid-Autumn Festival", "2037-10-01": "National Day", "2037-10-02": "National Day", "2037-10-03": "National Day", - "2037-10-04": "National Day", - "2037-10-05": "National Day", - "2037-10-06": "National Day", - "2037-10-07": "National Day", + "2037-10-05": "National Day (Observed)", "2038-01-01": "New Year's Day", - "2038-01-02": "New Year's Day", - "2038-01-03": "New Year's Day", - "2038-02-03": "Chinese New Year (Spring Festival)", "2038-02-04": "Chinese New Year (Spring Festival)", "2038-02-05": "Chinese New Year (Spring Festival)", "2038-02-06": "Chinese New Year (Spring Festival)", - "2038-02-07": "Chinese New Year (Spring Festival)", - "2038-02-08": "Chinese New Year (Spring Festival)", - "2038-02-09": "Chinese New Year (Spring Festival)", + "2038-02-08": "Chinese New Year (Spring Festival) (Observed)", "2038-03-08": "International Women's Day", - "2038-04-03": "Tomb-Sweeping Day", - "2038-04-04": "Tomb-Sweeping Day", "2038-04-05": "Tomb-Sweeping Day", "2038-05-01": "Labor Day", - "2038-05-02": "Labor Day", - "2038-05-03": "Labor Day", - "2038-05-04": "Labor Day; Youth Day", - "2038-05-05": "Labor Day", + "2038-05-03": "Labor Day (Observed)", + "2038-05-04": "Youth Day", "2038-06-01": "Children's Day", - "2038-06-05": "Dragon Boat Festival", - "2038-06-06": "Dragon Boat Festival", "2038-06-07": "Dragon Boat Festival", "2038-08-01": "Army Day", - "2038-09-11": "Mid-Autumn Festival", - "2038-09-12": "Mid-Autumn Festival", "2038-09-13": "Mid-Autumn Festival", "2038-10-01": "National Day", "2038-10-02": "National Day", "2038-10-03": "National Day", - "2038-10-04": "National Day", - "2038-10-05": "National Day", - "2038-10-06": "National Day", - "2038-10-07": "National Day", + "2038-10-04": "National Day (Observed)", + "2038-10-05": "National Day (Observed)", "2039-01-01": "New Year's Day", - "2039-01-02": "New Year's Day", - "2039-01-03": "New Year's Day", - "2039-01-23": "Chinese New Year (Spring Festival)", + "2039-01-03": "New Year's Day (Observed)", "2039-01-24": "Chinese New Year (Spring Festival)", "2039-01-25": "Chinese New Year (Spring Festival)", "2039-01-26": "Chinese New Year (Spring Festival)", - "2039-01-27": "Chinese New Year (Spring Festival)", - "2039-01-28": "Chinese New Year (Spring Festival)", - "2039-01-29": "Chinese New Year (Spring Festival)", "2039-03-08": "International Women's Day", - "2039-04-03": "Tomb-Sweeping Day", - "2039-04-04": "Tomb-Sweeping Day", "2039-04-05": "Tomb-Sweeping Day", - "2039-04-30": "Labor Day", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day", - "2039-05-03": "Labor Day", - "2039-05-04": "Labor Day; Youth Day", + "2039-05-02": "Labor Day (Observed)", + "2039-05-04": "Youth Day", "2039-05-27": "Dragon Boat Festival", - "2039-05-28": "Dragon Boat Festival", - "2039-05-29": "Dragon Boat Festival", "2039-06-01": "Children's Day", "2039-08-01": "Army Day", "2039-10-01": "National Day", "2039-10-02": "Mid-Autumn Festival; National Day", "2039-10-03": "National Day", - "2039-10-04": "National Day", - "2039-10-05": "National Day", - "2039-10-06": "National Day", - "2039-10-07": "National Day", - "2039-10-08": "National Day", + "2039-10-04": "National Day (Observed)", + "2039-10-05": "Mid-Autumn Festival (Observed)", + "2039-10-06": "National Day (Observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day", - "2040-02-11": "Chinese New Year (Spring Festival)", + "2040-01-02": "New Year's Day (Observed)", "2040-02-12": "Chinese New Year (Spring Festival)", "2040-02-13": "Chinese New Year (Spring Festival)", "2040-02-14": "Chinese New Year (Spring Festival)", - "2040-02-15": "Chinese New Year (Spring Festival)", - "2040-02-16": "Chinese New Year (Spring Festival)", - "2040-02-17": "Chinese New Year (Spring Festival)", + "2040-02-15": "Chinese New Year (Spring Festival) (Observed)", "2040-03-08": "International Women's Day", - "2040-04-02": "Tomb-Sweeping Day", - "2040-04-03": "Tomb-Sweeping Day", "2040-04-04": "Tomb-Sweeping Day", - "2040-04-29": "Labor Day", - "2040-04-30": "Labor Day", "2040-05-01": "Labor Day", - "2040-05-02": "Labor Day", - "2040-05-03": "Labor Day", "2040-05-04": "Youth Day", "2040-06-01": "Children's Day", "2040-06-14": "Dragon Boat Festival", - "2040-06-15": "Dragon Boat Festival", - "2040-06-16": "Dragon Boat Festival", "2040-08-01": "Army Day", "2040-09-20": "Mid-Autumn Festival", - "2040-09-21": "Mid-Autumn Festival", - "2040-09-22": "Mid-Autumn Festival", "2040-10-01": "National Day", "2040-10-02": "National Day", "2040-10-03": "National Day", - "2040-10-04": "National Day", - "2040-10-05": "National Day", - "2040-10-06": "National Day", - "2040-10-07": "National Day", "2041-01-01": "New Year's Day", - "2041-01-31": "Chinese New Year (Spring Festival)", "2041-02-01": "Chinese New Year (Spring Festival)", "2041-02-02": "Chinese New Year (Spring Festival)", "2041-02-03": "Chinese New Year (Spring Festival)", - "2041-02-04": "Chinese New Year (Spring Festival)", - "2041-02-05": "Chinese New Year (Spring Festival)", - "2041-02-06": "Chinese New Year (Spring Festival)", + "2041-02-04": "Chinese New Year (Spring Festival) (Observed)", + "2041-02-05": "Chinese New Year (Spring Festival) (Observed)", "2041-03-08": "International Women's Day", "2041-04-04": "Tomb-Sweeping Day", - "2041-04-05": "Tomb-Sweeping Day", - "2041-04-06": "Tomb-Sweeping Day", - "2041-04-29": "Labor Day", - "2041-04-30": "Labor Day", "2041-05-01": "Labor Day", - "2041-05-02": "Labor Day", - "2041-05-03": "Labor Day", "2041-05-04": "Youth Day", - "2041-06-01": "Children's Day; Dragon Boat Festival", - "2041-06-02": "Dragon Boat Festival", + "2041-06-01": "Children's Day", "2041-06-03": "Dragon Boat Festival", "2041-08-01": "Army Day", - "2041-09-08": "Mid-Autumn Festival", - "2041-09-09": "Mid-Autumn Festival", "2041-09-10": "Mid-Autumn Festival", "2041-10-01": "National Day", "2041-10-02": "National Day", "2041-10-03": "National Day", - "2041-10-04": "National Day", - "2041-10-05": "National Day", - "2041-10-06": "National Day", - "2041-10-07": "National Day", "2042-01-01": "New Year's Day", - "2042-01-21": "Chinese New Year (Spring Festival)", "2042-01-22": "Chinese New Year (Spring Festival)", "2042-01-23": "Chinese New Year (Spring Festival)", "2042-01-24": "Chinese New Year (Spring Festival)", - "2042-01-25": "Chinese New Year (Spring Festival)", - "2042-01-26": "Chinese New Year (Spring Festival)", - "2042-01-27": "Chinese New Year (Spring Festival)", "2042-03-08": "International Women's Day", "2042-04-05": "Tomb-Sweeping Day", - "2042-04-06": "Tomb-Sweeping Day", - "2042-04-07": "Tomb-Sweeping Day", + "2042-04-07": "Tomb-Sweeping Day (Observed)", "2042-05-01": "Labor Day", - "2042-05-02": "Labor Day", - "2042-05-03": "Labor Day", - "2042-05-04": "Labor Day; Youth Day", - "2042-05-05": "Labor Day", + "2042-05-04": "Youth Day", "2042-06-01": "Children's Day", - "2042-06-21": "Dragon Boat Festival", "2042-06-22": "Dragon Boat Festival", - "2042-06-23": "Dragon Boat Festival", + "2042-06-23": "Dragon Boat Festival (Observed)", "2042-08-01": "Army Day", - "2042-09-27": "Mid-Autumn Festival", "2042-09-28": "Mid-Autumn Festival", - "2042-09-29": "Mid-Autumn Festival", + "2042-09-29": "Mid-Autumn Festival (Observed)", "2042-10-01": "National Day", "2042-10-02": "National Day", "2042-10-03": "National Day", - "2042-10-04": "National Day", - "2042-10-05": "National Day", - "2042-10-06": "National Day", - "2042-10-07": "National Day", "2043-01-01": "New Year's Day", - "2043-01-02": "New Year's Day", - "2043-01-03": "New Year's Day", - "2043-02-09": "Chinese New Year (Spring Festival)", "2043-02-10": "Chinese New Year (Spring Festival)", "2043-02-11": "Chinese New Year (Spring Festival)", "2043-02-12": "Chinese New Year (Spring Festival)", - "2043-02-13": "Chinese New Year (Spring Festival)", - "2043-02-14": "Chinese New Year (Spring Festival)", - "2043-02-15": "Chinese New Year (Spring Festival)", "2043-03-08": "International Women's Day", - "2043-04-04": "Tomb-Sweeping Day", "2043-04-05": "Tomb-Sweeping Day", - "2043-04-06": "Tomb-Sweeping Day", + "2043-04-06": "Tomb-Sweeping Day (Observed)", "2043-05-01": "Labor Day", - "2043-05-02": "Labor Day", - "2043-05-03": "Labor Day", - "2043-05-04": "Labor Day; Youth Day", - "2043-05-05": "Labor Day", + "2043-05-04": "Youth Day", "2043-06-01": "Children's Day", "2043-06-11": "Dragon Boat Festival", - "2043-06-12": "Dragon Boat Festival", - "2043-06-13": "Dragon Boat Festival", "2043-08-01": "Army Day", "2043-09-17": "Mid-Autumn Festival", - "2043-09-18": "Mid-Autumn Festival", - "2043-09-19": "Mid-Autumn Festival", "2043-10-01": "National Day", "2043-10-02": "National Day", "2043-10-03": "National Day", - "2043-10-04": "National Day", - "2043-10-05": "National Day", - "2043-10-06": "National Day", - "2043-10-07": "National Day", + "2043-10-05": "National Day (Observed)", "2044-01-01": "New Year's Day", - "2044-01-02": "New Year's Day", - "2044-01-03": "New Year's Day", - "2044-01-29": "Chinese New Year (Spring Festival)", "2044-01-30": "Chinese New Year (Spring Festival)", "2044-01-31": "Chinese New Year (Spring Festival)", "2044-02-01": "Chinese New Year (Spring Festival)", - "2044-02-02": "Chinese New Year (Spring Festival)", - "2044-02-03": "Chinese New Year (Spring Festival)", - "2044-02-04": "Chinese New Year (Spring Festival)", + "2044-02-02": "Chinese New Year (Spring Festival) (Observed)", + "2044-02-03": "Chinese New Year (Spring Festival) (Observed)", "2044-03-08": "International Women's Day", - "2044-04-02": "Tomb-Sweeping Day", - "2044-04-03": "Tomb-Sweeping Day", "2044-04-04": "Tomb-Sweeping Day", - "2044-04-30": "Labor Day", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day", - "2044-05-03": "Labor Day", - "2044-05-04": "Labor Day; Youth Day", - "2044-05-29": "Dragon Boat Festival", - "2044-05-30": "Dragon Boat Festival", + "2044-05-02": "Labor Day (Observed)", + "2044-05-04": "Youth Day", "2044-05-31": "Dragon Boat Festival", "2044-06-01": "Children's Day", "2044-08-01": "Army Day", "2044-10-01": "National Day", "2044-10-02": "National Day", "2044-10-03": "National Day", - "2044-10-04": "National Day", - "2044-10-05": "Mid-Autumn Festival; National Day", - "2044-10-06": "National Day", - "2044-10-07": "National Day", - "2044-10-08": "National Day", + "2044-10-04": "National Day (Observed)", + "2044-10-05": "Mid-Autumn Festival", + "2044-10-06": "National Day (Observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day", - "2045-02-16": "Chinese New Year (Spring Festival)", + "2045-01-02": "New Year's Day (Observed)", "2045-02-17": "Chinese New Year (Spring Festival)", "2045-02-18": "Chinese New Year (Spring Festival)", "2045-02-19": "Chinese New Year (Spring Festival)", - "2045-02-20": "Chinese New Year (Spring Festival)", - "2045-02-21": "Chinese New Year (Spring Festival)", - "2045-02-22": "Chinese New Year (Spring Festival)", + "2045-02-20": "Chinese New Year (Spring Festival) (Observed)", + "2045-02-21": "Chinese New Year (Spring Festival) (Observed)", "2045-03-08": "International Women's Day", - "2045-04-02": "Tomb-Sweeping Day", - "2045-04-03": "Tomb-Sweeping Day", "2045-04-04": "Tomb-Sweeping Day", - "2045-04-29": "Labor Day", - "2045-04-30": "Labor Day", "2045-05-01": "Labor Day", - "2045-05-02": "Labor Day", - "2045-05-03": "Labor Day", "2045-05-04": "Youth Day", "2045-06-01": "Children's Day", - "2045-06-17": "Dragon Boat Festival", - "2045-06-18": "Dragon Boat Festival", "2045-06-19": "Dragon Boat Festival", "2045-08-01": "Army Day", - "2045-09-23": "Mid-Autumn Festival", - "2045-09-24": "Mid-Autumn Festival", "2045-09-25": "Mid-Autumn Festival", "2045-10-01": "National Day", "2045-10-02": "National Day", "2045-10-03": "National Day", - "2045-10-04": "National Day", - "2045-10-05": "National Day", - "2045-10-06": "National Day", - "2045-10-07": "National Day", + "2045-10-04": "National Day (Observed)", "2046-01-01": "New Year's Day", - "2046-02-05": "Chinese New Year (Spring Festival)", "2046-02-06": "Chinese New Year (Spring Festival)", "2046-02-07": "Chinese New Year (Spring Festival)", "2046-02-08": "Chinese New Year (Spring Festival)", - "2046-02-09": "Chinese New Year (Spring Festival)", - "2046-02-10": "Chinese New Year (Spring Festival)", - "2046-02-11": "Chinese New Year (Spring Festival)", "2046-03-08": "International Women's Day", "2046-04-05": "Tomb-Sweeping Day", - "2046-04-06": "Tomb-Sweeping Day", - "2046-04-07": "Tomb-Sweeping Day", - "2046-04-29": "Labor Day", - "2046-04-30": "Labor Day", "2046-05-01": "Labor Day", - "2046-05-02": "Labor Day", - "2046-05-03": "Labor Day", "2046-05-04": "Youth Day", "2046-06-01": "Children's Day", "2046-06-08": "Dragon Boat Festival", - "2046-06-09": "Dragon Boat Festival", - "2046-06-10": "Dragon Boat Festival", "2046-08-01": "Army Day", "2046-09-15": "Mid-Autumn Festival", - "2046-09-16": "Mid-Autumn Festival", - "2046-09-17": "Mid-Autumn Festival", + "2046-09-17": "Mid-Autumn Festival (Observed)", "2046-10-01": "National Day", "2046-10-02": "National Day", "2046-10-03": "National Day", - "2046-10-04": "National Day", - "2046-10-05": "National Day", - "2046-10-06": "National Day", - "2046-10-07": "National Day", "2047-01-01": "New Year's Day", - "2047-01-25": "Chinese New Year (Spring Festival)", "2047-01-26": "Chinese New Year (Spring Festival)", "2047-01-27": "Chinese New Year (Spring Festival)", "2047-01-28": "Chinese New Year (Spring Festival)", - "2047-01-29": "Chinese New Year (Spring Festival)", - "2047-01-30": "Chinese New Year (Spring Festival)", - "2047-01-31": "Chinese New Year (Spring Festival)", + "2047-01-29": "Chinese New Year (Spring Festival) (Observed)", + "2047-01-30": "Chinese New Year (Spring Festival) (Observed)", "2047-03-08": "International Women's Day", "2047-04-05": "Tomb-Sweeping Day", - "2047-04-06": "Tomb-Sweeping Day", - "2047-04-07": "Tomb-Sweeping Day", - "2047-04-29": "Labor Day", - "2047-04-30": "Labor Day", "2047-05-01": "Labor Day", - "2047-05-02": "Labor Day", - "2047-05-03": "Labor Day", "2047-05-04": "Youth Day", - "2047-05-27": "Dragon Boat Festival", - "2047-05-28": "Dragon Boat Festival", "2047-05-29": "Dragon Boat Festival", "2047-06-01": "Children's Day", "2047-08-01": "Army Day", "2047-10-01": "National Day", "2047-10-02": "National Day", "2047-10-03": "National Day", - "2047-10-04": "Mid-Autumn Festival; National Day", - "2047-10-05": "National Day", - "2047-10-06": "National Day", - "2047-10-07": "National Day", - "2047-10-08": "National Day", + "2047-10-04": "Mid-Autumn Festival", "2048-01-01": "New Year's Day", - "2048-02-13": "Chinese New Year (Spring Festival)", "2048-02-14": "Chinese New Year (Spring Festival)", "2048-02-15": "Chinese New Year (Spring Festival)", "2048-02-16": "Chinese New Year (Spring Festival)", - "2048-02-17": "Chinese New Year (Spring Festival)", - "2048-02-18": "Chinese New Year (Spring Festival)", - "2048-02-19": "Chinese New Year (Spring Festival)", + "2048-02-17": "Chinese New Year (Spring Festival) (Observed)", + "2048-02-18": "Chinese New Year (Spring Festival) (Observed)", "2048-03-08": "International Women's Day", "2048-04-04": "Tomb-Sweeping Day", - "2048-04-05": "Tomb-Sweeping Day", - "2048-04-06": "Tomb-Sweeping Day", + "2048-04-06": "Tomb-Sweeping Day (Observed)", "2048-05-01": "Labor Day", - "2048-05-02": "Labor Day", - "2048-05-03": "Labor Day", - "2048-05-04": "Labor Day; Youth Day", - "2048-05-05": "Labor Day", + "2048-05-04": "Youth Day", "2048-06-01": "Children's Day", - "2048-06-13": "Dragon Boat Festival", - "2048-06-14": "Dragon Boat Festival", "2048-06-15": "Dragon Boat Festival", "2048-08-01": "Army Day", - "2048-09-20": "Mid-Autumn Festival", - "2048-09-21": "Mid-Autumn Festival", "2048-09-22": "Mid-Autumn Festival", "2048-10-01": "National Day", "2048-10-02": "National Day", "2048-10-03": "National Day", - "2048-10-04": "National Day", - "2048-10-05": "National Day", - "2048-10-06": "National Day", - "2048-10-07": "National Day", + "2048-10-05": "National Day (Observed)", "2049-01-01": "New Year's Day", - "2049-01-02": "New Year's Day", - "2049-01-03": "New Year's Day", - "2049-02-01": "Chinese New Year (Spring Festival)", "2049-02-02": "Chinese New Year (Spring Festival)", "2049-02-03": "Chinese New Year (Spring Festival)", "2049-02-04": "Chinese New Year (Spring Festival)", - "2049-02-05": "Chinese New Year (Spring Festival)", - "2049-02-06": "Chinese New Year (Spring Festival)", - "2049-02-07": "Chinese New Year (Spring Festival)", "2049-03-08": "International Women's Day", - "2049-04-03": "Tomb-Sweeping Day", "2049-04-04": "Tomb-Sweeping Day", - "2049-04-05": "Tomb-Sweeping Day", + "2049-04-05": "Tomb-Sweeping Day (Observed)", "2049-05-01": "Labor Day", - "2049-05-02": "Labor Day", - "2049-05-03": "Labor Day", - "2049-05-04": "Labor Day; Youth Day", - "2049-05-05": "Labor Day", + "2049-05-03": "Labor Day (Observed)", + "2049-05-04": "Youth Day", "2049-06-01": "Children's Day", "2049-06-04": "Dragon Boat Festival", - "2049-06-05": "Dragon Boat Festival", - "2049-06-06": "Dragon Boat Festival", "2049-08-01": "Army Day", "2049-09-11": "Mid-Autumn Festival", - "2049-09-12": "Mid-Autumn Festival", - "2049-09-13": "Mid-Autumn Festival", + "2049-09-13": "Mid-Autumn Festival (Observed)", "2049-10-01": "National Day", "2049-10-02": "National Day", "2049-10-03": "National Day", - "2049-10-04": "National Day", - "2049-10-05": "National Day", - "2049-10-06": "National Day", - "2049-10-07": "National Day", + "2049-10-04": "National Day (Observed)", + "2049-10-05": "National Day (Observed)", "2050-01-01": "New Year's Day", - "2050-01-02": "New Year's Day", - "2050-01-03": "New Year's Day", - "2050-01-22": "Chinese New Year (Spring Festival)", + "2050-01-03": "New Year's Day (Observed)", "2050-01-23": "Chinese New Year (Spring Festival)", "2050-01-24": "Chinese New Year (Spring Festival)", "2050-01-25": "Chinese New Year (Spring Festival)", - "2050-01-26": "Chinese New Year (Spring Festival)", - "2050-01-27": "Chinese New Year (Spring Festival)", - "2050-01-28": "Chinese New Year (Spring Festival)", + "2050-01-26": "Chinese New Year (Spring Festival) (Observed)", "2050-03-08": "International Women's Day", - "2050-04-03": "Tomb-Sweeping Day", - "2050-04-04": "Tomb-Sweeping Day", "2050-04-05": "Tomb-Sweeping Day", - "2050-04-30": "Labor Day", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day", - "2050-05-03": "Labor Day", - "2050-05-04": "Labor Day; Youth Day", + "2050-05-02": "Labor Day (Observed)", + "2050-05-04": "Youth Day", "2050-06-01": "Children's Day", "2050-06-23": "Dragon Boat Festival", - "2050-06-24": "Dragon Boat Festival", - "2050-06-25": "Dragon Boat Festival", "2050-08-01": "Army Day", "2050-09-30": "Mid-Autumn Festival", "2050-10-01": "National Day", "2050-10-02": "National Day", "2050-10-03": "National Day", - "2050-10-04": "National Day", - "2050-10-05": "National Day", - "2050-10-06": "National Day", - "2050-10-07": "National Day" + "2050-10-04": "National Day (Observed)", + "2050-10-05": "National Day (Observed)" } diff --git a/tests/countries/test_china.py b/tests/countries/test_china.py index 054c673ba..e9fe2a578 100644 --- a/tests/countries/test_china.py +++ b/tests/countries/test_china.py @@ -17,7 +17,7 @@ class TestChina(TestCase): @classmethod def setUpClass(cls): - super().setUpClass(China, years=range(1950, 2051)) + super().setUpClass(China, years=range(1950, 2051), years_non_observed=range(2001, 2025)) def test_country_aliases(self): self.assertCountryAliases(China, CN, CHN) @@ -26,6 +26,97 @@ def test_no_holidays(self): self.assertNoHolidays(China(years=1949)) self.assertNoHolidays(China(years=1949, categories=HALF_DAY)) + def test_new_years_day(self): + self.assertHolidayName("元旦", (f"{year}-01-01" for year in range(1950, 2051))) + + self.assertNoNonObservedHoliday( + "2005-01-03", + "2006-01-02", + "2011-01-03", + "2012-01-02", + "2017-01-02", + "2022-01-03", + "2023-01-02", + ) + + def test_chinese_new_year_eve(self): + name = "农历除夕" + self.assertHolidayName( + name, + "2008-02-06", + "2009-01-25", + "2010-02-13", + "2011-02-02", + "2012-01-22", + "2013-02-09", + ) + self.assertNoHolidayName(name, range(1950, 2008), range(2014, 2051)) + + self.assertNoNonObservedHoliday( + "2009-01-28", + "2010-02-16", + "2012-01-25", + "2013-02-12", + ) + + def test_chinese_new_year(self): + name = "春节" + self.assertHolidayName(name, range(1950, 2051)) + self.assertHolidayName( + name, + "2021-02-12", + "2021-02-13", + "2021-02-14", + "2022-02-01", + "2022-02-02", + "2022-02-03", + "2023-01-22", + "2023-01-23", + "2023-01-24", + ) + + self.assertNoNonObservedHoliday( + "2003-02-04", + "2003-02-05", + "2004-01-26", + "2006-02-01", + "2007-02-21", + "2010-02-17", + "2013-02-13", + "2014-02-03", + "2014-02-04", + "2015-02-23", + "2017-01-31", + "2017-02-01", + "2018-02-19", + "2018-02-20", + "2020-01-28", + "2020-01-29", + "2021-02-15", + "2021-02-16", + "2023-01-25", + "2024-02-13", + "2024-02-14", + ) + + def test_labor_day(self): + name = "劳动节" + self.assertHolidayName(name, (f"{year}-05-01" for year in range(1950, 2051))) + for year in range(2000, 2008): + self.assertHolidayName(name, (f"{year}-05-02", f"{year}-05-03")) + + self.assertNoNonObservedHoliday( + "2003-05-05", + "2004-05-04", + "2004-05-05", + "2005-05-04", + "2010-05-03", + "2011-05-02", + "2016-05-02", + "2021-05-03", + "2022-05-02", + ) + def test_national_day(self): name = "国庆节" for year in range(1950, 1999): @@ -34,23 +125,100 @@ def test_national_day(self): self.assertHolidayName(name, (f"{year}-10-01", f"{year}-10-02", f"{year}-10-03")) self.assertNoNonObservedHoliday( - "2020-10-04", + "2004-10-04", + "2004-10-05", + "2005-10-04", + "2005-10-05", + "2006-10-04", + "2009-10-06", + "2010-10-04", + "2010-10-05", + "2011-10-04", + "2011-10-05", + "2015-10-05", + "2016-10-04", + "2016-10-05", + "2017-10-05", "2020-10-05", - "2020-10-06", - "2020-10-07", - "2020-10-08", "2021-10-04", "2021-10-05", - "2021-10-06", - "2021-10-07", "2022-10-04", "2022-10-05", - "2022-10-06", - "2022-10-07", - "2023-09-30", "2023-10-04", - "2023-10-05", - "2023-10-06", + ) + + def test_qingming_festival(self): + name = "清明节" + self.assertHolidayName(name, range(2008, 2051)) + self.assertNoHolidayName(name, range(1950, 2008)) + + self.assertHolidayName( + name, + "2017-04-04", + "2018-04-05", + "2019-04-05", + "2020-04-04", + "2021-04-04", + "2022-04-05", + "2023-04-05", + "2024-04-04", + ) + + self.assertNoNonObservedHoliday( + "2009-04-06", + "2014-04-07", + "2015-04-06", + "2020-04-06", + "2021-04-05", + ) + + def test_dragon_boat_festival(self): + name = "端午节" + self.assertHolidayName(name, range(2008, 2051)) + self.assertNoHolidayName(name, range(1950, 2008)) + + self.assertHolidayName( + name, + "2017-05-30", + "2018-06-18", + "2019-06-07", + "2020-06-25", + "2021-06-14", + "2022-06-03", + "2023-06-22", + "2024-06-10", + ) + + self.assertNoNonObservedHoliday( + "2008-06-09", + "2012-06-22", + "2015-06-22", + ) + + def test_mid_autumn_festival(self): + name = "中秋节" + self.assertHolidayName(name, range(2008, 2051)) + self.assertNoHolidayName(name, range(1950, 2008)) + + self.assertHolidayName( + name, + "2017-10-04", + "2018-09-24", + "2019-09-13", + "2020-10-01", + "2021-09-21", + "2022-09-10", + "2023-09-29", + "2024-09-17", + ) + + self.assertNoNonObservedHoliday( + "2008-09-15", + "2009-10-05", + "2012-10-04", + "2015-10-06", + "2020-10-06", + "2022-09-12", ) def test_1950_public_holiday(self): @@ -87,24 +255,18 @@ def test_2001_public_holiday(self): ("2001-01-24", "春节"), ("2001-01-25", "春节"), ("2001-01-26", "春节"), - ("2001-01-27", "春节"), - ("2001-01-28", "春节"), - ("2001-01-29", "春节"), - ("2001-01-30", "春节"), + ("2001-01-29", "休息日(2001-01-20日起取代)"), + ("2001-01-30", "休息日(2001-01-21日起取代)"), ("2001-05-01", "劳动节"), ("2001-05-02", "劳动节"), ("2001-05-03", "劳动节"), - ("2001-05-04", "劳动节"), - ("2001-05-05", "劳动节"), - ("2001-05-06", "劳动节"), - ("2001-05-07", "劳动节"), + ("2001-05-04", "休息日(2001-04-28日起取代)"), + ("2001-05-07", "休息日(2001-04-29日起取代)"), ("2001-10-01", "国庆节"), ("2001-10-02", "国庆节"), ("2001-10-03", "国庆节"), - ("2001-10-04", "国庆节"), - ("2001-10-05", "国庆节"), - ("2001-10-06", "国庆节"), - ("2001-10-07", "国庆节"), + ("2001-10-04", "休息日(2001-09-29日起取代)"), + ("2001-10-05", "休息日(2001-09-30日起取代)"), ) def test_2002_public_holiday(self): @@ -112,29 +274,23 @@ def test_2002_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2002), ("2002-01-01", "元旦"), - ("2002-01-02", "元旦"), - ("2002-01-03", "元旦"), + ("2002-01-02", "休息日(2001-12-29日起取代)"), + ("2002-01-03", "休息日(2001-12-30日起取代)"), ("2002-02-12", "春节"), ("2002-02-13", "春节"), ("2002-02-14", "春节"), - ("2002-02-15", "春节"), - ("2002-02-16", "春节"), - ("2002-02-17", "春节"), - ("2002-02-18", "春节"), + ("2002-02-15", "休息日(2002-02-09日起取代)"), + ("2002-02-18", "休息日(2002-02-10日起取代)"), ("2002-05-01", "劳动节"), ("2002-05-02", "劳动节"), ("2002-05-03", "劳动节"), - ("2002-05-04", "劳动节"), - ("2002-05-05", "劳动节"), - ("2002-05-06", "劳动节"), - ("2002-05-07", "劳动节"), + ("2002-05-06", "休息日(2002-04-27日起取代)"), + ("2002-05-07", "休息日(2002-04-28日起取代)"), ("2002-10-01", "国庆节"), ("2002-10-02", "国庆节"), ("2002-10-03", "国庆节"), - ("2002-10-04", "国庆节"), - ("2002-10-05", "国庆节"), - ("2002-10-06", "国庆节"), - ("2002-10-07", "国庆节"), + ("2002-10-04", "休息日(2002-09-28日起取代)"), + ("2002-10-07", "休息日(2002-09-29日起取代)"), ) def test_2003_public_holiday(self): @@ -145,24 +301,21 @@ def test_2003_public_holiday(self): ("2003-02-01", "春节"), ("2003-02-02", "春节"), ("2003-02-03", "春节"), - ("2003-02-04", "春节"), - ("2003-02-05", "春节"), - ("2003-02-06", "春节"), - ("2003-02-07", "春节"), + ("2003-02-04", "春节(观察日)"), + ("2003-02-05", "春节(观察日)"), + ("2003-02-06", "休息日(2003-02-08日起取代)"), + ("2003-02-07", "休息日(2003-02-09日起取代)"), ("2003-05-01", "劳动节"), ("2003-05-02", "劳动节"), ("2003-05-03", "劳动节"), - ("2003-05-04", "劳动节"), - ("2003-05-05", "劳动节"), - ("2003-05-06", "劳动节"), - ("2003-05-07", "劳动节"), + ("2003-05-05", "劳动节(观察日)"), + ("2003-05-06", "休息日(2003-04-26日起取代)"), + ("2003-05-07", "休息日(2003-04-27日起取代)"), ("2003-10-01", "国庆节"), ("2003-10-02", "国庆节"), ("2003-10-03", "国庆节"), - ("2003-10-04", "国庆节"), - ("2003-10-05", "国庆节"), - ("2003-10-06", "国庆节"), - ("2003-10-07", "国庆节"), + ("2003-10-06", "休息日(2003-09-27日起取代)"), + ("2003-10-07", "休息日(2003-09-28日起取代)"), ) def test_2004_public_holiday(self): @@ -173,24 +326,23 @@ def test_2004_public_holiday(self): ("2004-01-22", "春节"), ("2004-01-23", "春节"), ("2004-01-24", "春节"), - ("2004-01-25", "春节"), - ("2004-01-26", "春节"), - ("2004-01-27", "春节"), - ("2004-01-28", "春节"), + ("2004-01-26", "春节(观察日)"), + ("2004-01-27", "休息日(2004-01-17日起取代)"), + ("2004-01-28", "休息日(2004-01-18日起取代)"), ("2004-05-01", "劳动节"), ("2004-05-02", "劳动节"), ("2004-05-03", "劳动节"), - ("2004-05-04", "劳动节"), - ("2004-05-05", "劳动节"), - ("2004-05-06", "劳动节"), - ("2004-05-07", "劳动节"), + ("2004-05-04", "劳动节(观察日)"), + ("2004-05-05", "劳动节(观察日)"), + ("2004-05-06", "休息日(2004-05-08日起取代)"), + ("2004-05-07", "休息日(2004-05-09日起取代)"), ("2004-10-01", "国庆节"), ("2004-10-02", "国庆节"), ("2004-10-03", "国庆节"), - ("2004-10-04", "国庆节"), - ("2004-10-05", "国庆节"), - ("2004-10-06", "国庆节"), - ("2004-10-07", "国庆节"), + ("2004-10-04", "国庆节(观察日)"), + ("2004-10-05", "国庆节(观察日)"), + ("2004-10-06", "休息日(2004-10-09日起取代)"), + ("2004-10-07", "休息日(2004-10-10日起取代)"), ) def test_2005_public_holiday(self): @@ -198,29 +350,25 @@ def test_2005_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2005), ("2005-01-01", "元旦"), - ("2005-01-02", "元旦"), - ("2005-01-03", "元旦"), + ("2005-01-03", "元旦(观察日)"), ("2005-02-09", "春节"), ("2005-02-10", "春节"), ("2005-02-11", "春节"), - ("2005-02-12", "春节"), - ("2005-02-13", "春节"), - ("2005-02-14", "春节"), - ("2005-02-15", "春节"), + ("2005-02-14", "休息日(2005-02-05日起取代)"), + ("2005-02-15", "休息日(2005-02-06日起取代)"), ("2005-05-01", "劳动节"), ("2005-05-02", "劳动节"), ("2005-05-03", "劳动节"), - ("2005-05-04", "劳动节"), - ("2005-05-05", "劳动节"), - ("2005-05-06", "劳动节"), - ("2005-05-07", "劳动节"), + ("2005-05-04", "劳动节(观察日)"), + ("2005-05-05", "休息日(2005-04-30日起取代)"), + ("2005-05-06", "休息日(2005-05-08日起取代)"), ("2005-10-01", "国庆节"), ("2005-10-02", "国庆节"), ("2005-10-03", "国庆节"), - ("2005-10-04", "国庆节"), - ("2005-10-05", "国庆节"), - ("2005-10-06", "国庆节"), - ("2005-10-07", "国庆节"), + ("2005-10-04", "国庆节(观察日)"), + ("2005-10-05", "国庆节(观察日)"), + ("2005-10-06", "休息日(2005-10-08日起取代)"), + ("2005-10-07", "休息日(2005-10-09日起取代)"), ) def test_2006_public_holiday(self): @@ -228,29 +376,25 @@ def test_2006_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2006), ("2006-01-01", "元旦"), - ("2006-01-02", "元旦"), - ("2006-01-03", "元旦"), + ("2006-01-02", "元旦(观察日)"), + ("2006-01-03", "休息日(2005-12-31日起取代)"), ("2006-01-29", "春节"), ("2006-01-30", "春节"), ("2006-01-31", "春节"), - ("2006-02-01", "春节"), - ("2006-02-02", "春节"), - ("2006-02-03", "春节"), - ("2006-02-04", "春节"), + ("2006-02-01", "春节(观察日)"), + ("2006-02-02", "休息日(2006-01-28日起取代)"), + ("2006-02-03", "休息日(2006-02-05日起取代)"), ("2006-05-01", "劳动节"), ("2006-05-02", "劳动节"), ("2006-05-03", "劳动节"), - ("2006-05-04", "劳动节"), - ("2006-05-05", "劳动节"), - ("2006-05-06", "劳动节"), - ("2006-05-07", "劳动节"), + ("2006-05-04", "休息日(2006-04-29日起取代)"), + ("2006-05-05", "休息日(2006-04-30日起取代)"), ("2006-10-01", "国庆节"), ("2006-10-02", "国庆节"), ("2006-10-03", "国庆节"), - ("2006-10-04", "国庆节"), - ("2006-10-05", "国庆节"), - ("2006-10-06", "国庆节"), - ("2006-10-07", "国庆节"), + ("2006-10-04", "国庆节(观察日)"), + ("2006-10-05", "休息日(2006-09-30日起取代)"), + ("2006-10-06", "休息日(2006-10-08日起取代)"), ) def test_2007_public_holiday(self): @@ -258,48 +402,25 @@ def test_2007_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2007), ("2007-01-01", "元旦"), - ("2007-01-02", "元旦"), - ("2007-01-03", "元旦"), + ("2007-01-02", "休息日(2006-12-30日起取代)"), + ("2007-01-03", "休息日(2006-12-31日起取代)"), ("2007-02-18", "春节"), ("2007-02-19", "春节"), ("2007-02-20", "春节"), - ("2007-02-21", "春节"), - ("2007-02-22", "春节"), - ("2007-02-23", "春节"), - ("2007-02-24", "春节"), + ("2007-02-21", "春节(观察日)"), + ("2007-02-22", "休息日(2007-02-17日起取代)"), + ("2007-02-23", "休息日(2007-02-25日起取代)"), ("2007-05-01", "劳动节"), ("2007-05-02", "劳动节"), ("2007-05-03", "劳动节"), - ("2007-05-04", "劳动节"), - ("2007-05-05", "劳动节"), - ("2007-05-06", "劳动节"), - ("2007-05-07", "劳动节"), + ("2007-05-04", "休息日(2007-04-28日起取代)"), + ("2007-05-07", "休息日(2007-04-29日起取代)"), ("2007-10-01", "国庆节"), ("2007-10-02", "国庆节"), ("2007-10-03", "国庆节"), - ("2007-10-04", "国庆节"), - ("2007-10-05", "国庆节"), - ("2007-10-06", "国庆节"), - ("2007-10-07", "国庆节"), - # From 2008 Notice. - ("2007-12-30", "元旦"), - ("2007-12-31", "元旦"), - ) - - self.assertNonObservedHolidays( - China(categories=PUBLIC, observed=False, years=2007), - ("2007-01-01", "元旦"), - ("2007-02-18", "春节"), - ("2007-02-19", "春节"), - ("2007-02-20", "春节"), - ("2007-05-01", "劳动节"), - ("2007-05-02", "劳动节"), - ("2007-05-03", "劳动节"), - ("2007-10-01", "国庆节"), - ("2007-10-02", "国庆节"), - ("2007-10-03", "国庆节"), - ("2007-12-30", "元旦"), - ("2007-12-31", "元旦"), + ("2007-10-04", "休息日(2007-09-29日起取代)"), + ("2007-10-05", "休息日(2007-09-30日起取代)"), + ("2007-12-31", "休息日(2007-12-29日起取代)"), ) def test_2008_public_holiday(self): @@ -307,32 +428,23 @@ def test_2008_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2008), ("2008-01-01", "元旦"), - ("2008-02-06", "春节"), + ("2008-02-06", "农历除夕"), ("2008-02-07", "春节"), ("2008-02-08", "春节"), - ("2008-02-09", "春节"), - ("2008-02-10", "春节"), - ("2008-02-11", "春节"), - ("2008-02-12", "春节"), + ("2008-02-11", "休息日(2008-02-02日起取代)"), + ("2008-02-12", "休息日(2008-02-03日起取代)"), ("2008-04-04", "清明节"), - ("2008-04-05", "清明节"), - ("2008-04-06", "清明节"), ("2008-05-01", "劳动节"), - ("2008-05-02", "劳动节"), - ("2008-05-03", "劳动节"), - ("2008-06-07", "端午节"), + ("2008-05-02", "休息日(2008-05-04日起取代)"), ("2008-06-08", "端午节"), - ("2008-06-09", "端午节"), - ("2008-09-13", "中秋节"), + ("2008-06-09", "端午节(观察日)"), ("2008-09-14", "中秋节"), - ("2008-09-15", "中秋节"), - ("2008-09-29", "国庆节"), - ("2008-09-30", "国庆节"), + ("2008-09-15", "中秋节(观察日)"), + ("2008-09-29", "休息日(2008-09-27日起取代)"), + ("2008-09-30", "休息日(2008-09-28日起取代)"), ("2008-10-01", "国庆节"), ("2008-10-02", "国庆节"), ("2008-10-03", "国庆节"), - ("2008-10-04", "国庆节"), - ("2008-10-05", "国庆节"), ) def test_2009_public_holiday(self): @@ -340,32 +452,25 @@ def test_2009_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2009), ("2009-01-01", "元旦"), - ("2009-01-02", "元旦"), - ("2009-01-03", "元旦"), - ("2009-01-25", "春节"), + ("2009-01-02", "休息日(2009-01-04日起取代)"), + ("2009-01-25", "农历除夕"), ("2009-01-26", "春节"), ("2009-01-27", "春节"), - ("2009-01-28", "春节"), - ("2009-01-29", "春节"), - ("2009-01-30", "春节"), - ("2009-01-31", "春节"), + ("2009-01-28", "农历除夕(观察日)"), + ("2009-01-29", "休息日(2009-01-24日起取代)"), + ("2009-01-30", "休息日(2009-02-01日起取代)"), ("2009-04-04", "清明节"), - ("2009-04-05", "清明节"), - ("2009-04-06", "清明节"), + ("2009-04-06", "清明节(观察日)"), ("2009-05-01", "劳动节"), - ("2009-05-02", "劳动节"), - ("2009-05-03", "劳动节"), ("2009-05-28", "端午节"), - ("2009-05-29", "端午节"), - ("2009-05-30", "端午节"), + ("2009-05-29", "休息日(2009-05-31日起取代)"), ("2009-10-01", "国庆节"), ("2009-10-02", "国庆节"), ("2009-10-03", "中秋节; 国庆节"), - ("2009-10-04", "国庆节"), - ("2009-10-05", "国庆节"), - ("2009-10-06", "国庆节"), - ("2009-10-07", "国庆节"), - ("2009-10-08", "国庆节"), + ("2009-10-05", "中秋节(观察日)"), + ("2009-10-06", "国庆节(观察日)"), + ("2009-10-07", "休息日(2009-09-27日起取代)"), + ("2009-10-08", "休息日(2009-10-10日起取代)"), ) def test_2010_public_holiday(self): @@ -373,34 +478,29 @@ def test_2010_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2010), ("2010-01-01", "元旦"), - ("2010-01-02", "元旦"), - ("2010-01-03", "元旦"), - ("2010-02-13", "春节"), + ("2010-02-13", "农历除夕"), ("2010-02-14", "春节"), ("2010-02-15", "春节"), - ("2010-02-16", "春节"), - ("2010-02-17", "春节"), - ("2010-02-18", "春节"), - ("2010-02-19", "春节"), - ("2010-04-03", "清明节"), - ("2010-04-04", "清明节"), + ("2010-02-16", "农历除夕(观察日)"), + ("2010-02-17", "春节(观察日)"), + ("2010-02-18", "休息日(2010-02-20日起取代)"), + ("2010-02-19", "休息日(2010-02-21日起取代)"), ("2010-04-05", "清明节"), ("2010-05-01", "劳动节"), - ("2010-05-02", "劳动节"), - ("2010-05-03", "劳动节"), - ("2010-06-14", "端午节"), - ("2010-06-15", "端午节"), + ("2010-05-03", "劳动节(观察日)"), + ("2010-06-14", "休息日(2010-06-12日起取代)"), + ("2010-06-15", "休息日(2010-06-13日起取代)"), ("2010-06-16", "端午节"), ("2010-09-22", "中秋节"), - ("2010-09-23", "中秋节"), - ("2010-09-24", "中秋节"), + ("2010-09-23", "休息日(2010-09-19日起取代)"), + ("2010-09-24", "休息日(2010-09-25日起取代)"), ("2010-10-01", "国庆节"), ("2010-10-02", "国庆节"), ("2010-10-03", "国庆节"), - ("2010-10-04", "国庆节"), - ("2010-10-05", "国庆节"), - ("2010-10-06", "国庆节"), - ("2010-10-07", "国庆节"), + ("2010-10-04", "国庆节(观察日)"), + ("2010-10-05", "国庆节(观察日)"), + ("2010-10-06", "休息日(2010-09-26日起取代)"), + ("2010-10-07", "休息日(2010-10-09日起取代)"), ) def test_2011_public_holiday(self): @@ -408,34 +508,25 @@ def test_2011_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2011), ("2011-01-01", "元旦"), - ("2011-01-02", "元旦"), - ("2011-01-03", "元旦"), - ("2011-02-02", "春节"), + ("2011-01-03", "元旦(观察日)"), + ("2011-02-02", "农历除夕"), ("2011-02-03", "春节"), ("2011-02-04", "春节"), - ("2011-02-05", "春节"), - ("2011-02-06", "春节"), - ("2011-02-07", "春节"), - ("2011-02-08", "春节"), - ("2011-04-03", "清明节"), - ("2011-04-04", "清明节"), + ("2011-02-07", "休息日(2011-01-30日起取代)"), + ("2011-02-08", "休息日(2011-02-12日起取代)"), + ("2011-04-04", "休息日(2011-04-02日起取代)"), ("2011-04-05", "清明节"), - ("2011-04-30", "劳动节"), ("2011-05-01", "劳动节"), - ("2011-05-02", "劳动节"), - ("2011-06-04", "端午节"), - ("2011-06-05", "端午节"), + ("2011-05-02", "劳动节(观察日)"), ("2011-06-06", "端午节"), - ("2011-09-10", "中秋节"), - ("2011-09-11", "中秋节"), ("2011-09-12", "中秋节"), ("2011-10-01", "国庆节"), ("2011-10-02", "国庆节"), ("2011-10-03", "国庆节"), - ("2011-10-04", "国庆节"), - ("2011-10-05", "国庆节"), - ("2011-10-06", "国庆节"), - ("2011-10-07", "国庆节"), + ("2011-10-04", "国庆节(观察日)"), + ("2011-10-05", "国庆节(观察日)"), + ("2011-10-06", "休息日(2011-10-08日起取代)"), + ("2011-10-07", "休息日(2011-10-09日起取代)"), ) def test_2012_public_holiday(self): @@ -443,32 +534,27 @@ def test_2012_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2012), ("2012-01-01", "元旦"), - ("2012-01-02", "元旦"), - ("2012-01-03", "元旦"), - ("2012-01-22", "春节"), + ("2012-01-02", "元旦(观察日)"), + ("2012-01-03", "休息日(2011-12-31日起取代)"), + ("2012-01-22", "农历除夕"), ("2012-01-23", "春节"), ("2012-01-24", "春节"), - ("2012-01-25", "春节"), - ("2012-01-26", "春节"), - ("2012-01-27", "春节"), - ("2012-01-28", "春节"), - ("2012-04-02", "清明节"), - ("2012-04-03", "清明节"), + ("2012-01-25", "农历除夕(观察日)"), + ("2012-01-26", "休息日(2012-01-21日起取代)"), + ("2012-01-27", "休息日(2012-01-29日起取代)"), + ("2012-04-02", "休息日(2012-03-31日起取代)"), + ("2012-04-03", "休息日(2012-04-01日起取代)"), ("2012-04-04", "清明节"), - ("2012-04-29", "劳动节"), - ("2012-04-30", "劳动节"), + ("2012-04-30", "休息日(2012-04-28日起取代)"), ("2012-05-01", "劳动节"), - ("2012-06-22", "端午节"), + ("2012-06-22", "端午节(观察日)"), ("2012-06-23", "端午节"), - ("2012-06-24", "端午节"), ("2012-09-30", "中秋节"), ("2012-10-01", "国庆节"), ("2012-10-02", "国庆节"), ("2012-10-03", "国庆节"), - ("2012-10-04", "国庆节"), - ("2012-10-05", "国庆节"), - ("2012-10-06", "国庆节"), - ("2012-10-07", "国庆节"), + ("2012-10-04", "中秋节(观察日)"), + ("2012-10-05", "休息日(2012-09-29日起取代)"), ) def test_2013_public_holiday(self): @@ -476,34 +562,30 @@ def test_2013_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2013), ("2013-01-01", "元旦"), - ("2013-01-02", "元旦"), - ("2013-01-03", "元旦"), - ("2013-02-09", "春节"), + ("2013-01-02", "休息日(2013-01-05日起取代)"), + ("2013-01-03", "休息日(2013-01-06日起取代)"), + ("2013-02-09", "农历除夕"), ("2013-02-10", "春节"), ("2013-02-11", "春节"), - ("2013-02-12", "春节"), - ("2013-02-13", "春节"), - ("2013-02-14", "春节"), - ("2013-02-15", "春节"), + ("2013-02-12", "农历除夕(观察日)"), + ("2013-02-13", "春节(观察日)"), + ("2013-02-14", "休息日(2013-02-16日起取代)"), + ("2013-02-15", "休息日(2013-02-17日起取代)"), ("2013-04-04", "清明节"), - ("2013-04-05", "清明节"), - ("2013-04-06", "清明节"), - ("2013-04-29", "劳动节"), - ("2013-04-30", "劳动节"), + ("2013-04-05", "休息日(2013-04-07日起取代)"), + ("2013-04-29", "休息日(2013-04-27日起取代)"), + ("2013-04-30", "休息日(2013-04-28日起取代)"), ("2013-05-01", "劳动节"), - ("2013-06-10", "端午节"), - ("2013-06-11", "端午节"), + ("2013-06-10", "休息日(2013-06-08日起取代)"), + ("2013-06-11", "休息日(2013-06-09日起取代)"), ("2013-06-12", "端午节"), ("2013-09-19", "中秋节"), - ("2013-09-20", "中秋节"), - ("2013-09-21", "中秋节"), + ("2013-09-20", "休息日(2013-09-22日起取代)"), ("2013-10-01", "国庆节"), ("2013-10-02", "国庆节"), ("2013-10-03", "国庆节"), - ("2013-10-04", "国庆节"), - ("2013-10-05", "国庆节"), - ("2013-10-06", "国庆节"), - ("2013-10-07", "国庆节"), + ("2013-10-04", "休息日(2013-09-29日起取代)"), + ("2013-10-07", "休息日(2013-10-12日起取代)"), ) def test_2014_public_holiday(self): @@ -514,23 +596,21 @@ def test_2014_public_holiday(self): ("2014-01-31", "春节"), ("2014-02-01", "春节"), ("2014-02-02", "春节"), - ("2014-02-03", "春节"), - ("2014-02-04", "春节"), - ("2014-02-05", "春节"), - ("2014-02-06", "春节"), + ("2014-02-03", "春节(观察日)"), + ("2014-02-04", "春节(观察日)"), + ("2014-02-05", "休息日(2014-01-26日起取代)"), + ("2014-02-06", "休息日(2014-02-08日起取代)"), ("2014-04-05", "清明节"), + ("2014-04-07", "清明节(观察日)"), ("2014-05-01", "劳动节"), - ("2014-05-02", "劳动节"), - ("2014-05-03", "劳动节"), + ("2014-05-02", "休息日(2014-05-04日起取代)"), ("2014-06-02", "端午节"), ("2014-09-08", "中秋节"), ("2014-10-01", "国庆节"), ("2014-10-02", "国庆节"), ("2014-10-03", "国庆节"), - ("2014-10-04", "国庆节"), - ("2014-10-05", "国庆节"), - ("2014-10-06", "国庆节"), - ("2014-10-07", "国庆节"), + ("2014-10-06", "休息日(2014-09-28日起取代)"), + ("2014-10-07", "休息日(2014-10-11日起取代)"), ) def test_2015_public_holiday(self): @@ -538,26 +618,27 @@ def test_2015_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2015), ("2015-01-01", "元旦"), - ("2015-01-02", "元旦"), - ("2015-01-03", "元旦"), - ("2015-02-18", "春节"), + ("2015-01-02", "休息日(2015-01-04日起取代)"), + ("2015-02-18", "休息日(2015-02-15日起取代)"), ("2015-02-19", "春节"), ("2015-02-20", "春节"), ("2015-02-21", "春节"), - ("2015-02-22", "春节"), - ("2015-02-23", "春节"), - ("2015-02-24", "春节"), + ("2015-02-23", "春节(观察日)"), + ("2015-02-24", "休息日(2015-02-28日起取代)"), ("2015-04-05", "清明节"), + ("2015-04-06", "清明节(观察日)"), ("2015-05-01", "劳动节"), ("2015-06-20", "端午节"), + ("2015-06-22", "端午节(观察日)"), + ("2015-09-03", "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日"), + ("2015-09-04", "休息日(2015-09-06日起取代)"), ("2015-09-27", "中秋节"), ("2015-10-01", "国庆节"), ("2015-10-02", "国庆节"), ("2015-10-03", "国庆节"), - ("2015-10-04", "国庆节"), - ("2015-10-05", "国庆节"), - ("2015-10-06", "国庆节"), - ("2015-10-07", "国庆节"), + ("2015-10-05", "国庆节(观察日)"), + ("2015-10-06", "中秋节(观察日)"), + ("2015-10-07", "休息日(2015-10-10日起取代)"), ) def test_2016_public_holiday(self): @@ -565,28 +646,25 @@ def test_2016_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2016), ("2016-01-01", "元旦"), - ("2016-02-07", "春节"), ("2016-02-08", "春节"), ("2016-02-09", "春节"), ("2016-02-10", "春节"), - ("2016-02-11", "春节"), - ("2016-02-12", "春节"), - ("2016-02-13", "春节"), + ("2016-02-11", "休息日(2016-02-06日起取代)"), + ("2016-02-12", "休息日(2016-02-14日起取代)"), ("2016-04-04", "清明节"), ("2016-05-01", "劳动节"), + ("2016-05-02", "劳动节(观察日)"), ("2016-06-09", "端午节"), - ("2016-06-10", "端午节"), - ("2016-06-11", "端午节"), + ("2016-06-10", "休息日(2016-06-12日起取代)"), ("2016-09-15", "中秋节"), - ("2016-09-16", "中秋节"), - ("2016-09-17", "中秋节"), + ("2016-09-16", "休息日(2016-09-18日起取代)"), ("2016-10-01", "国庆节"), ("2016-10-02", "国庆节"), ("2016-10-03", "国庆节"), - ("2016-10-04", "国庆节"), - ("2016-10-05", "国庆节"), - ("2016-10-06", "国庆节"), - ("2016-10-07", "国庆节"), + ("2016-10-04", "国庆节(观察日)"), + ("2016-10-05", "国庆节(观察日)"), + ("2016-10-06", "休息日(2016-10-08日起取代)"), + ("2016-10-07", "休息日(2016-10-09日起取代)"), ) def test_2017_public_holiday(self): @@ -594,28 +672,25 @@ def test_2017_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2017), ("2017-01-01", "元旦"), - ("2017-01-27", "春节"), + ("2017-01-02", "元旦(观察日)"), + ("2017-01-27", "休息日(2017-01-22日起取代)"), ("2017-01-28", "春节"), ("2017-01-29", "春节"), ("2017-01-30", "春节"), - ("2017-01-31", "春节"), - ("2017-02-01", "春节"), - ("2017-02-02", "春节"), - ("2017-04-02", "清明节"), - ("2017-04-03", "清明节"), + ("2017-01-31", "春节(观察日)"), + ("2017-02-01", "春节(观察日)"), + ("2017-02-02", "休息日(2017-02-04日起取代)"), + ("2017-04-03", "休息日(2017-04-01日起取代)"), ("2017-04-04", "清明节"), ("2017-05-01", "劳动节"), - ("2017-05-28", "端午节"), - ("2017-05-29", "端午节"), + ("2017-05-29", "休息日(2017-05-27日起取代)"), ("2017-05-30", "端午节"), ("2017-10-01", "国庆节"), ("2017-10-02", "国庆节"), ("2017-10-03", "国庆节"), - ("2017-10-04", "中秋节; 国庆节"), - ("2017-10-05", "国庆节"), - ("2017-10-06", "国庆节"), - ("2017-10-07", "国庆节"), - ("2017-10-08", "国庆节"), + ("2017-10-04", "中秋节"), + ("2017-10-05", "国庆节(观察日)"), + ("2017-10-06", "休息日(2017-09-30日起取代)"), ) def test_2018_public_holiday(self): @@ -623,31 +698,25 @@ def test_2018_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2018), ("2018-01-01", "元旦"), - ("2018-02-15", "春节"), + ("2018-02-15", "休息日(2018-02-11日起取代)"), ("2018-02-16", "春节"), ("2018-02-17", "春节"), ("2018-02-18", "春节"), - ("2018-02-19", "春节"), - ("2018-02-20", "春节"), - ("2018-02-21", "春节"), + ("2018-02-19", "春节(观察日)"), + ("2018-02-20", "春节(观察日)"), + ("2018-02-21", "休息日(2018-02-24日起取代)"), ("2018-04-05", "清明节"), - ("2018-04-06", "清明节"), - ("2018-04-07", "清明节"), - ("2018-04-29", "劳动节"), - ("2018-04-30", "劳动节"), + ("2018-04-06", "休息日(2018-04-08日起取代)"), + ("2018-04-30", "休息日(2018-04-28日起取代)"), ("2018-05-01", "劳动节"), ("2018-06-18", "端午节"), ("2018-09-24", "中秋节"), ("2018-10-01", "国庆节"), ("2018-10-02", "国庆节"), ("2018-10-03", "国庆节"), - ("2018-10-04", "国庆节"), - ("2018-10-05", "国庆节"), - ("2018-10-06", "国庆节"), - ("2018-10-07", "国庆节"), - # From 2019 Notice. - ("2018-12-30", "元旦"), - ("2018-12-31", "元旦"), + ("2018-10-04", "休息日(2018-09-29日起取代)"), + ("2018-10-05", "休息日(2018-09-30日起取代)"), + ("2018-12-31", "休息日(2018-12-29日起取代)"), ) def test_2019_public_holiday(self): @@ -655,13 +724,11 @@ def test_2019_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2019), ("2019-01-01", "元旦"), - ("2019-02-04", "春节"), + ("2019-02-04", "休息日(2019-02-02日起取代)"), ("2019-02-05", "春节"), ("2019-02-06", "春节"), ("2019-02-07", "春节"), - ("2019-02-08", "春节"), - ("2019-02-09", "春节"), - ("2019-02-10", "春节"), + ("2019-02-08", "休息日(2019-02-03日起取代)"), ("2019-04-05", "清明节"), ("2019-05-01", "劳动节"), ("2019-06-07", "端午节"), @@ -669,10 +736,8 @@ def test_2019_public_holiday(self): ("2019-10-01", "国庆节"), ("2019-10-02", "国庆节"), ("2019-10-03", "国庆节"), - ("2019-10-04", "国庆节"), - ("2019-10-05", "国庆节"), - ("2019-10-06", "国庆节"), - ("2019-10-07", "国庆节"), + ("2019-10-04", "休息日(2019-09-29日起取代)"), + ("2019-10-07", "休息日(2019-10-12日起取代)"), ) def test_2020_public_holiday(self): @@ -680,32 +745,27 @@ def test_2020_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2020), ("2020-01-01", "元旦"), - ("2020-01-24", "春节"), + ("2020-01-24", "休息日(2020-01-19日起取代)"), ("2020-01-25", "春节"), ("2020-01-26", "春节"), ("2020-01-27", "春节"), - ("2020-01-28", "春节"), - ("2020-01-29", "春节"), - ("2020-01-30", "春节"), + ("2020-01-28", "春节(观察日)"), + ("2020-01-29", "春节(观察日)"), + ("2020-01-30", "休息日(2020-02-01日起取代)"), ("2020-04-04", "清明节"), - ("2020-04-05", "清明节"), - ("2020-04-06", "清明节"), + ("2020-04-06", "清明节(观察日)"), ("2020-05-01", "劳动节"), - ("2020-05-02", "劳动节"), - ("2020-05-03", "劳动节"), - ("2020-05-04", "劳动节"), - ("2020-05-05", "劳动节"), + ("2020-05-04", "休息日(2020-04-26日起取代)"), + ("2020-05-05", "休息日(2020-05-09日起取代)"), ("2020-06-25", "端午节"), - ("2020-06-26", "端午节"), - ("2020-06-27", "端午节"), + ("2020-06-26", "休息日(2020-06-28日起取代)"), ("2020-10-01", "中秋节; 国庆节"), ("2020-10-02", "国庆节"), ("2020-10-03", "国庆节"), - ("2020-10-04", "国庆节"), - ("2020-10-05", "国庆节"), - ("2020-10-06", "国庆节"), - ("2020-10-07", "国庆节"), - ("2020-10-08", "国庆节"), + ("2020-10-05", "国庆节(观察日)"), + ("2020-10-06", "中秋节(观察日)"), + ("2020-10-07", "休息日(2020-09-27日起取代)"), + ("2020-10-08", "休息日(2020-10-10日起取代)"), ) def test_2021_public_holiday(self): @@ -713,36 +773,29 @@ def test_2021_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2021), ("2021-01-01", "元旦"), - ("2021-01-02", "元旦"), - ("2021-01-03", "元旦"), - ("2021-02-11", "春节"), + ("2021-02-11", "休息日(2021-02-07日起取代)"), ("2021-02-12", "春节"), ("2021-02-13", "春节"), ("2021-02-14", "春节"), - ("2021-02-15", "春节"), - ("2021-02-16", "春节"), - ("2021-02-17", "春节"), - ("2021-04-03", "清明节"), + ("2021-02-15", "春节(观察日)"), + ("2021-02-16", "春节(观察日)"), + ("2021-02-17", "休息日(2021-02-20日起取代)"), ("2021-04-04", "清明节"), - ("2021-04-05", "清明节"), + ("2021-04-05", "清明节(观察日)"), ("2021-05-01", "劳动节"), - ("2021-05-02", "劳动节"), - ("2021-05-03", "劳动节"), - ("2021-05-04", "劳动节"), - ("2021-05-05", "劳动节"), - ("2021-06-12", "端午节"), - ("2021-06-13", "端午节"), + ("2021-05-03", "劳动节(观察日)"), + ("2021-05-04", "休息日(2021-04-25日起取代)"), + ("2021-05-05", "休息日(2021-05-08日起取代)"), ("2021-06-14", "端午节"), - ("2021-09-19", "中秋节"), - ("2021-09-20", "中秋节"), + ("2021-09-20", "休息日(2021-09-18日起取代)"), ("2021-09-21", "中秋节"), ("2021-10-01", "国庆节"), ("2021-10-02", "国庆节"), ("2021-10-03", "国庆节"), - ("2021-10-04", "国庆节"), - ("2021-10-05", "国庆节"), - ("2021-10-06", "国庆节"), - ("2021-10-07", "国庆节"), + ("2021-10-04", "国庆节(观察日)"), + ("2021-10-05", "国庆节(观察日)"), + ("2021-10-06", "休息日(2021-09-26日起取代)"), + ("2021-10-07", "休息日(2021-10-09日起取代)"), ) def test_2022_public_holiday(self): @@ -750,38 +803,28 @@ def test_2022_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2022), ("2022-01-01", "元旦"), - ("2022-01-02", "元旦"), - ("2022-01-03", "元旦"), - ("2022-01-31", "春节"), + ("2022-01-03", "元旦(观察日)"), + ("2022-01-31", "休息日(2022-01-29日起取代)"), ("2022-02-01", "春节"), ("2022-02-02", "春节"), ("2022-02-03", "春节"), - ("2022-02-04", "春节"), - ("2022-02-05", "春节"), - ("2022-02-06", "春节"), - ("2022-04-03", "清明节"), - ("2022-04-04", "清明节"), + ("2022-02-04", "休息日(2022-01-30日起取代)"), + ("2022-04-04", "休息日(2022-04-02日起取代)"), ("2022-04-05", "清明节"), - ("2022-04-30", "劳动节"), ("2022-05-01", "劳动节"), - ("2022-05-02", "劳动节"), - ("2022-05-03", "劳动节"), - ("2022-05-04", "劳动节"), + ("2022-05-02", "劳动节(观察日)"), + ("2022-05-03", "休息日(2022-04-24日起取代)"), + ("2022-05-04", "休息日(2022-05-07日起取代)"), ("2022-06-03", "端午节"), - ("2022-06-04", "端午节"), - ("2022-06-05", "端午节"), ("2022-09-10", "中秋节"), - ("2022-09-11", "中秋节"), - ("2022-09-12", "中秋节"), + ("2022-09-12", "中秋节(观察日)"), ("2022-10-01", "国庆节"), ("2022-10-02", "国庆节"), ("2022-10-03", "国庆节"), - ("2022-10-04", "国庆节"), - ("2022-10-05", "国庆节"), - ("2022-10-06", "国庆节"), - ("2022-10-07", "国庆节"), - # From 2023 Notice. - ("2022-12-31", "元旦"), + ("2022-10-04", "国庆节(观察日)"), + ("2022-10-05", "国庆节(观察日)"), + ("2022-10-06", "休息日(2022-10-08日起取代)"), + ("2022-10-07", "休息日(2022-10-09日起取代)"), ) def test_2023_public_holiday(self): @@ -789,31 +832,53 @@ def test_2023_public_holiday(self): self.assertHolidays( China(categories=PUBLIC, years=2023), ("2023-01-01", "元旦"), - ("2023-01-02", "元旦"), - ("2023-01-21", "春节"), + ("2023-01-02", "元旦(观察日)"), ("2023-01-22", "春节"), ("2023-01-23", "春节"), ("2023-01-24", "春节"), - ("2023-01-25", "春节"), - ("2023-01-26", "春节"), - ("2023-01-27", "春节"), + ("2023-01-25", "春节(观察日)"), + ("2023-01-26", "休息日(2023-01-28日起取代)"), + ("2023-01-27", "休息日(2023-01-29日起取代)"), ("2023-04-05", "清明节"), - ("2023-04-29", "劳动节"), - ("2023-04-30", "劳动节"), ("2023-05-01", "劳动节"), - ("2023-05-02", "劳动节"), - ("2023-05-03", "劳动节"), + ("2023-05-02", "休息日(2023-04-23日起取代)"), + ("2023-05-03", "休息日(2023-05-06日起取代)"), ("2023-06-22", "端午节"), - ("2023-06-23", "端午节"), - ("2023-06-24", "端午节"), + ("2023-06-23", "休息日(2023-06-25日起取代)"), ("2023-09-29", "中秋节"), - ("2023-09-30", "中秋节"), ("2023-10-01", "国庆节"), ("2023-10-02", "国庆节"), ("2023-10-03", "国庆节"), - ("2023-10-04", "国庆节"), - ("2023-10-05", "国庆节"), - ("2023-10-06", "国庆节"), + ("2023-10-04", "国庆节(观察日)"), + ("2023-10-05", "休息日(2023-10-07日起取代)"), + ("2023-10-06", "休息日(2023-10-08日起取代)"), + ) + + def test_2024_public_holiday(self): + # https://www.gov.cn/zhengce/content/202310/content_6911527.htm + self.assertHolidays( + China(categories=PUBLIC, years=2024), + ("2024-01-01", "元旦"), + ("2024-02-10", "春节"), + ("2024-02-11", "春节"), + ("2024-02-12", "春节"), + ("2024-02-13", "春节(观察日)"), + ("2024-02-14", "春节(观察日)"), + ("2024-02-15", "休息日(2024-02-04日起取代)"), + ("2024-02-16", "休息日(2024-02-18日起取代)"), + ("2024-04-04", "清明节"), + ("2024-04-05", "休息日(2024-04-07日起取代)"), + ("2024-05-01", "劳动节"), + ("2024-05-02", "休息日(2024-04-28日起取代)"), + ("2024-05-03", "休息日(2024-05-11日起取代)"), + ("2024-06-10", "端午节"), + ("2024-09-16", "休息日(2024-09-14日起取代)"), + ("2024-09-17", "中秋节"), + ("2024-10-01", "国庆节"), + ("2024-10-02", "国庆节"), + ("2024-10-03", "国庆节"), + ("2024-10-04", "休息日(2024-09-29日起取代)"), + ("2024-10-07", "休息日(2024-10-12日起取代)"), ) def test_2022_half_day_holiday(self): @@ -837,158 +902,122 @@ def test_2023_half_day_holiday(self): def test_l10n_default(self): self.assertLocalizedHolidays( ("2022-01-01", "元旦"), - ("2022-01-02", "元旦"), - ("2022-01-03", "元旦"), - ("2022-01-31", "春节"), + ("2022-01-03", "元旦(观察日)"), + ("2022-01-31", "休息日(2022-01-29日起取代)"), ("2022-02-01", "春节"), ("2022-02-02", "春节"), ("2022-02-03", "春节"), - ("2022-02-04", "春节"), - ("2022-02-05", "春节"), - ("2022-02-06", "春节"), + ("2022-02-04", "休息日(2022-01-30日起取代)"), ("2022-03-08", "国际妇女节"), - ("2022-04-03", "清明节"), - ("2022-04-04", "清明节"), + ("2022-04-04", "休息日(2022-04-02日起取代)"), ("2022-04-05", "清明节"), - ("2022-04-30", "劳动节"), ("2022-05-01", "劳动节"), - ("2022-05-02", "劳动节"), - ("2022-05-03", "劳动节"), - ("2022-05-04", "五四青年节; 劳动节"), + ("2022-05-02", "劳动节(观察日)"), + ("2022-05-03", "休息日(2022-04-24日起取代)"), + ("2022-05-04", "五四青年节; 休息日(2022-05-07日起取代)"), ("2022-06-01", "六一儿童节"), ("2022-06-03", "端午节"), - ("2022-06-04", "端午节"), - ("2022-06-05", "端午节"), ("2022-08-01", "建军节"), ("2022-09-10", "中秋节"), - ("2022-09-11", "中秋节"), - ("2022-09-12", "中秋节"), + ("2022-09-12", "中秋节(观察日)"), ("2022-10-01", "国庆节"), ("2022-10-02", "国庆节"), ("2022-10-03", "国庆节"), - ("2022-10-04", "国庆节"), - ("2022-10-05", "国庆节"), - ("2022-10-06", "国庆节"), - ("2022-10-07", "国庆节"), - ("2022-12-31", "元旦"), + ("2022-10-04", "国庆节(观察日)"), + ("2022-10-05", "国庆节(观察日)"), + ("2022-10-06", "休息日(2022-10-08日起取代)"), + ("2022-10-07", "休息日(2022-10-09日起取代)"), ) def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2022-01-01", "New Year's Day"), - ("2022-01-02", "New Year's Day"), - ("2022-01-03", "New Year's Day"), - ("2022-01-31", "Chinese New Year (Spring Festival)"), + ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-31", "Day off (substituted from 01/29/2022)"), ("2022-02-01", "Chinese New Year (Spring Festival)"), ("2022-02-02", "Chinese New Year (Spring Festival)"), ("2022-02-03", "Chinese New Year (Spring Festival)"), - ("2022-02-04", "Chinese New Year (Spring Festival)"), - ("2022-02-05", "Chinese New Year (Spring Festival)"), - ("2022-02-06", "Chinese New Year (Spring Festival)"), + ("2022-02-04", "Day off (substituted from 01/30/2022)"), ("2022-03-08", "International Women's Day"), - ("2022-04-03", "Tomb-Sweeping Day"), - ("2022-04-04", "Tomb-Sweeping Day"), + ("2022-04-04", "Day off (substituted from 04/02/2022)"), ("2022-04-05", "Tomb-Sweeping Day"), - ("2022-04-30", "Labor Day"), ("2022-05-01", "Labor Day"), - ("2022-05-02", "Labor Day"), - ("2022-05-03", "Labor Day"), - ("2022-05-04", "Labor Day; Youth Day"), + ("2022-05-02", "Labor Day (Observed)"), + ("2022-05-03", "Day off (substituted from 04/24/2022)"), + ("2022-05-04", "Day off (substituted from 05/07/2022); Youth Day"), ("2022-06-01", "Children's Day"), ("2022-06-03", "Dragon Boat Festival"), - ("2022-06-04", "Dragon Boat Festival"), - ("2022-06-05", "Dragon Boat Festival"), ("2022-08-01", "Army Day"), ("2022-09-10", "Mid-Autumn Festival"), - ("2022-09-11", "Mid-Autumn Festival"), - ("2022-09-12", "Mid-Autumn Festival"), + ("2022-09-12", "Mid-Autumn Festival (Observed)"), ("2022-10-01", "National Day"), ("2022-10-02", "National Day"), ("2022-10-03", "National Day"), - ("2022-10-04", "National Day"), - ("2022-10-05", "National Day"), - ("2022-10-06", "National Day"), - ("2022-10-07", "National Day"), - ("2022-12-31", "New Year's Day"), + ("2022-10-04", "National Day (Observed)"), + ("2022-10-05", "National Day (Observed)"), + ("2022-10-06", "Day off (substituted from 10/08/2022)"), + ("2022-10-07", "Day off (substituted from 10/09/2022)"), ) def test_l10n_th(self): self.assertLocalizedHolidays( "th", ("2022-01-01", "วันปีใหม่สากล"), - ("2022-01-02", "วันปีใหม่สากล"), - ("2022-01-03", "วันปีใหม่สากล"), - ("2022-01-31", "วันตรุษจีน"), + ("2022-01-03", "ชดเชยวันปีใหม่สากล"), + ("2022-01-31", "วันหยุด (แทน 29/01/2022)"), ("2022-02-01", "วันตรุษจีน"), ("2022-02-02", "วันตรุษจีน"), ("2022-02-03", "วันตรุษจีน"), - ("2022-02-04", "วันตรุษจีน"), - ("2022-02-05", "วันตรุษจีน"), - ("2022-02-06", "วันตรุษจีน"), + ("2022-02-04", "วันหยุด (แทน 30/01/2022)"), ("2022-03-08", "วันสตรีสากล"), - ("2022-04-03", "วันเช็งเม้ง"), - ("2022-04-04", "วันเช็งเม้ง"), + ("2022-04-04", "วันหยุด (แทน 02/04/2022)"), ("2022-04-05", "วันเช็งเม้ง"), - ("2022-04-30", "วันแรงงาน"), ("2022-05-01", "วันแรงงาน"), - ("2022-05-02", "วันแรงงาน"), - ("2022-05-03", "วันแรงงาน"), - ("2022-05-04", "วันเยาวชนห่งชาติจีน; วันแรงงาน"), + ("2022-05-02", "ชดเชยวันแรงงาน"), + ("2022-05-03", "วันหยุด (แทน 24/04/2022)"), + ("2022-05-04", "วันหยุด (แทน 07/05/2022); วันเยาวชนห่งชาติจีน"), ("2022-06-01", "วันเด็กสากล"), ("2022-06-03", "วันไหว้บ๊ะจ่าง"), - ("2022-06-04", "วันไหว้บ๊ะจ่าง"), - ("2022-06-05", "วันไหว้บ๊ะจ่าง"), ("2022-08-01", "วันสถาปนากองทัพปลดปล่อยประชาชนจีน"), ("2022-09-10", "วันไหว้พระจันทร์"), - ("2022-09-11", "วันไหว้พระจันทร์"), - ("2022-09-12", "วันไหว้พระจันทร์"), + ("2022-09-12", "ชดเชยวันไหว้พระจันทร์"), ("2022-10-01", "วันชาติจีน"), ("2022-10-02", "วันชาติจีน"), ("2022-10-03", "วันชาติจีน"), - ("2022-10-04", "วันชาติจีน"), - ("2022-10-05", "วันชาติจีน"), - ("2022-10-06", "วันชาติจีน"), - ("2022-10-07", "วันชาติจีน"), - ("2022-12-31", "วันปีใหม่สากล"), + ("2022-10-04", "ชดเชยวันชาติจีน"), + ("2022-10-05", "ชดเชยวันชาติจีน"), + ("2022-10-06", "วันหยุด (แทน 08/10/2022)"), + ("2022-10-07", "วันหยุด (แทน 09/10/2022)"), ) def test_l10n_zh_tw(self): self.assertLocalizedHolidays( "zh_TW", ("2022-01-01", "元旦"), - ("2022-01-02", "元旦"), - ("2022-01-03", "元旦"), - ("2022-01-31", "春節"), + ("2022-01-03", "元旦(觀察日)"), + ("2022-01-31", "休息日(2022-01-29日起取代)"), ("2022-02-01", "春節"), ("2022-02-02", "春節"), ("2022-02-03", "春節"), - ("2022-02-04", "春節"), - ("2022-02-05", "春節"), - ("2022-02-06", "春節"), + ("2022-02-04", "休息日(2022-01-30日起取代)"), ("2022-03-08", "國際婦女節"), - ("2022-04-03", "清明節"), - ("2022-04-04", "清明節"), + ("2022-04-04", "休息日(2022-04-02日起取代)"), ("2022-04-05", "清明節"), - ("2022-04-30", "勞動節"), ("2022-05-01", "勞動節"), - ("2022-05-02", "勞動節"), - ("2022-05-03", "勞動節"), - ("2022-05-04", "五四青年節; 勞動節"), + ("2022-05-02", "勞動節(觀察日)"), + ("2022-05-03", "休息日(2022-04-24日起取代)"), + ("2022-05-04", "五四青年節; 休息日(2022-05-07日起取代)"), ("2022-06-01", "六一兒童節"), ("2022-06-03", "端午節"), - ("2022-06-04", "端午節"), - ("2022-06-05", "端午節"), ("2022-08-01", "建軍節"), ("2022-09-10", "中秋節"), - ("2022-09-11", "中秋節"), - ("2022-09-12", "中秋節"), + ("2022-09-12", "中秋節(觀察日)"), ("2022-10-01", "國慶日"), ("2022-10-02", "國慶日"), ("2022-10-03", "國慶日"), - ("2022-10-04", "國慶日"), - ("2022-10-05", "國慶日"), - ("2022-10-06", "國慶日"), - ("2022-10-07", "國慶日"), - ("2022-12-31", "元旦"), + ("2022-10-04", "國慶日(觀察日)"), + ("2022-10-05", "國慶日(觀察日)"), + ("2022-10-06", "休息日(2022-10-08日起取代)"), + ("2022-10-07", "休息日(2022-10-09日起取代)"), ) From 774e1af7d89634aa58e63b5fc4f7fb7d569910b8 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Wed, 3 Jan 2024 22:20:17 +0200 Subject: [PATCH 05/23] Implement en_US localization for all localized countries (#1614) --- README.rst | 4 +- holidays/countries/canada.py | 4 +- holidays/countries/malta.py | 28 +- .../locale/{en => en_CA}/LC_MESSAGES/CA.po | 6 +- holidays/locale/en_US/LC_MESSAGES/CA.po | 150 ++ .../locale/{en_MT => en_US}/LC_MESSAGES/MT.po | 36 +- holidays/locale/mt/LC_MESSAGES/MT.po | 26 +- snapshots/countries/MT_COMMON.json | 1758 ++++++++--------- tests/countries/test_canada.py | 17 + tests/countries/test_malta.py | 4 +- 10 files changed, 1100 insertions(+), 933 deletions(-) rename holidays/locale/{en => en_CA}/LC_MESSAGES/CA.po (96%) create mode 100644 holidays/locale/en_US/LC_MESSAGES/CA.po rename holidays/locale/{en_MT => en_US}/LC_MESSAGES/MT.po (72%) diff --git a/README.rst b/README.rst index 6b2b4e50f..52c7e29bf 100644 --- a/README.rst +++ b/README.rst @@ -316,7 +316,7 @@ All other default values are highlighted with bold: * - Canada - CA - Provinces and territories: AB, BC, MB, NB, NL, NS, NT, NU, ON, PE, QC, SK, YT - - ar, **en**, fr, th + - ar, **en_CA**, en_US, fr, th - GOVERNMENT, OPTIONAL * - Chad - TD @@ -586,7 +586,7 @@ All other default values are highlighted with bold: * - Malta - MT - - - en_MT, **mt** + - en_US, **mt** - * - Marshall Islands (the) - MH diff --git a/holidays/countries/canada.py b/holidays/countries/canada.py index 4ed00473e..c3ce2f0d8 100644 --- a/holidays/countries/canada.py +++ b/holidays/countries/canada.py @@ -40,7 +40,7 @@ class Canada(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Stat """ country = "CA" - default_language = "en" + default_language = "en_CA" # %s (Observed). observed_label = tr("%s (Observed)") supported_categories = (GOVERNMENT, OPTIONAL, PUBLIC) @@ -59,7 +59,7 @@ class Canada(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Stat "SK", "YT", ) - supported_languages = ("ar", "en", "fr", "th") + supported_languages = ("ar", "en_CA", "en_US", "fr", "th") def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/malta.py b/holidays/countries/malta.py index e2fef2c74..3919b24d6 100644 --- a/holidays/countries/malta.py +++ b/holidays/countries/malta.py @@ -38,7 +38,7 @@ class Malta(HolidayBase, ChristianHolidays, InternationalHolidays): country = "MT" default_language = "mt" - supported_languages = ("en_MT", "mt") + supported_languages = ("en_US", "mt") def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) @@ -53,7 +53,7 @@ def _populate_public_holidays(self): # L-Ewwel tas-Sena # Status: In-Use. - # New Year's Day + # New Year's Day. self._add_new_years_day(tr("L-Ewwel tas-Sena")) # Il-Festa tan-Nawfraġju ta' San Pawl @@ -61,7 +61,7 @@ def _populate_public_holidays(self): # Started in 1987 via Act LX of 1987. if self._year >= 1987: - # Feast of St. Paul's Shipwreck + # Feast of St. Paul's Shipwreck. self._add_holiday_feb_10(tr("Il-Festa tan-Nawfraġju ta' San Pawl")) # Il-Festa ta' San Ġużepp @@ -69,7 +69,7 @@ def _populate_public_holidays(self): # Started in 1987 via Act LX of 1987. if self._year >= 1987: - # Feast of St. Joseph + # Feast of St. Joseph. self._add_saint_josephs_day(tr("Il-Festa ta' San Ġużepp")) # Jum il-Ħelsien @@ -78,19 +78,19 @@ def _populate_public_holidays(self): # Not presented in 1987-1988 if self._year <= 1986 or self._year >= 1989: - # Freedom Day + # Freedom Day. self._add_holiday_mar_31(tr("Jum il-Ħelsien")) # Il-Ġimgħa l-Kbira # Status: In-Use. - # Good Friday + # Good Friday. self._add_good_friday(tr("Il-Ġimgħa l-Kbira")) # Jum il-Ħaddiem # Status: In-Use. - # Worker's Day + # Worker's Day. self._add_labor_day(tr("Jum il-Ħaddiem")) # Sette Giugno @@ -98,7 +98,7 @@ def _populate_public_holidays(self): # Start in 1989 via Act VIII of 1989. if self._year >= 1989: - # Sette Giugno + # Sette Giugno. self._add_holiday_jun_7(tr("Sette Giugno")) # Il-Festa ta' San Pietru u San Pawl @@ -106,13 +106,13 @@ def _populate_public_holidays(self): # Started in 1987 via Act LX of 1987. if self._year >= 1987: - # Feast of St. Peter and St. Paul + # Feast of St. Peter and St. Paul. self._add_saints_peter_and_paul_day(tr("Il-Festa ta' San Pietru u San Pawl")) # Il-Festa ta' Santa Marija # Status: In-Use. - # Feast of the Assumption + # Feast of the Assumption. self._add_assumption_of_mary_day(tr("Il-Festa ta' Santa Marija")) # Jum il-Vitorja @@ -121,7 +121,7 @@ def _populate_public_holidays(self): # While this concides with Nativity Of Mary Day, the two are considered separate. if self._year >= 1987: - # Feast of Our Lady of Victories + # Feast of Our Lady of Victories. self._add_holiday_sep_8(tr("Jum il-Vitorja")) # Jum l-Indipendenza @@ -129,7 +129,7 @@ def _populate_public_holidays(self): # Started in 1987 via Act LX of 1987. if self._year >= 1987: - # Independence Day + # Independence Day. self._add_holiday_sep_21(tr("Jum l-Indipendenza")) # Il-Festa tal-Immakulata Kunċizzjoni @@ -143,13 +143,13 @@ def _populate_public_holidays(self): # Jum ir-Repubblika # Status: In-Use. - # Republic Day + # Republic Day. self._add_holiday_dec_13(tr("Jum ir-Repubblika")) # Il-Milied # Status: In-Use. - # Christmas Day + # Christmas Day. self._add_christmas_day(tr("Il-Milied")) diff --git a/holidays/locale/en/LC_MESSAGES/CA.po b/holidays/locale/en_CA/LC_MESSAGES/CA.po similarity index 96% rename from holidays/locale/en/LC_MESSAGES/CA.po rename to holidays/locale/en_CA/LC_MESSAGES/CA.po index 486136783..d923a0549 100644 --- a/holidays/locale/en/LC_MESSAGES/CA.po +++ b/holidays/locale/en_CA/LC_MESSAGES/CA.po @@ -5,16 +5,16 @@ msgid "" msgstr "" "Project-Id-Version: Python Holidays 0.32\n" "POT-Creation-Date: 2023-04-10 14:10+0300\n" -"PO-Revision-Date: 2023-08-26 18:22+0300\n" +"PO-Revision-Date: 2023-12-26 22:10+0200\n" "Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" -"Language: en\n" +"Language: en_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.4\n" #. %s (Observed). #, c-format diff --git a/holidays/locale/en_US/LC_MESSAGES/CA.po b/holidays/locale/en_US/LC_MESSAGES/CA.po new file mode 100644 index 000000000..dceaf0e98 --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/CA.po @@ -0,0 +1,150 @@ +# Canada holidays en_US localization. +# Authors: Arkadii Yakovets , (c) 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.41\n" +"POT-Creation-Date: 2023-04-10 14:10+0300\n" +"PO-Revision-Date: 2023-12-26 22:10+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Python Holidays localization team\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Lingua 4.15.0\n" +"X-Generator: Poedit 3.4\n" + +#. %s (Observed). +#, c-format +msgid "%s (Observed)" +msgstr "%s (Observed)" + +#. New Year's Day. +msgid "New Year's Day" +msgstr "New Year's Day" + +#. Good Friday. +msgid "Good Friday" +msgstr "Good Friday" + +#. Easter Monday. +msgid "Easter Monday" +msgstr "Easter Monday" + +#. Dominion Day. +msgid "Dominion Day" +msgstr "Dominion Day" + +#. Labour Day. +msgid "Labour Day" +msgstr "Labor Day" + +#. Christmas Day. +msgid "Christmas Day" +msgstr "Christmas Day" + +#. Boxing Day. +msgid "Boxing Day" +msgstr "Boxing Day" + +#. Family Day. +msgid "Family Day" +msgstr "Family Day" + +#. Thanksgiving Day. +msgid "Thanksgiving Day" +msgstr "Thanksgiving Day" + +#. Funeral of Queen Elizabeth II. +msgid "Funeral of Her Majesty the Queen Elizabeth II" +msgstr "Funeral of Her Majesty the Queen Elizabeth II" + +#. Memorial Day. +msgid "Memorial Day" +msgstr "Memorial Day" + +#. Canada Day. +msgid "Canada Day" +msgstr "Canada Day" + +#. Victoria Day. +msgid "Victoria Day" +msgstr "Victoria Day" + +#. Heritage Day. +msgid "Heritage Day" +msgstr "Heritage Day" + +#. Remembrance Day. +msgid "Remembrance Day" +msgstr "Remembrance Day" + +#. British Columbia Day. +msgid "British Columbia Day" +msgstr "British Columbia Day" + +#. National Day for Truth and Reconciliation. +msgid "National Day for Truth and Reconciliation" +msgstr "National Day for Truth and Reconciliation" + +#. Louis Riel Day. +msgid "Louis Riel Day" +msgstr "Louis Riel Day" + +#. Terry Fox Day. +msgid "Terry Fox Day" +msgstr "Terry Fox Day" + +#. Civic Holiday. +msgid "Civic Holiday" +msgstr "Civic Holiday" + +#. New Brunswick Day. +msgid "New Brunswick Day" +msgstr "New Brunswick Day" + +#. St. Patrick's Day. +msgid "St. Patrick's Day" +msgstr "St. Patrick's Day" + +#. St. George's Day. +msgid "St. George's Day" +msgstr "St. George's Day" + +#. Discovery Day. +msgid "Discovery Day" +msgstr "Discovery Day" + +#. National Aboriginal Day. +msgid "National Aboriginal Day" +msgstr "National Aboriginal Day" + +#. Nunavut Day. +msgid "Nunavut Day" +msgstr "Nunavut Day" + +#. Islander Day. +msgid "Islander Day" +msgstr "Islander Day" + +#. National Patriots' Day. +msgid "National Patriots' Day" +msgstr "National Patriots' Day" + +#. St. Jean Baptiste Day. +msgid "St. Jean Baptiste Day" +msgstr "St. John the Baptist Day" + +#. Saskatchewan Day. +msgid "Saskatchewan Day" +msgstr "Saskatchewan Day" + +#. Orangemen's Day. +msgid "Orangemen's Day" +msgstr "Orangemen's Day" + +#. Natal Day. +msgid "Natal Day" +msgstr "Natal Day" diff --git a/holidays/locale/en_MT/LC_MESSAGES/MT.po b/holidays/locale/en_US/LC_MESSAGES/MT.po similarity index 72% rename from holidays/locale/en_MT/LC_MESSAGES/MT.po rename to holidays/locale/en_US/LC_MESSAGES/MT.po index e4a7c5ee1..4c2cd28c6 100644 --- a/holidays/locale/en_MT/LC_MESSAGES/MT.po +++ b/holidays/locale/en_US/LC_MESSAGES/MT.po @@ -1,61 +1,61 @@ -# Malta holidays en_MT localization. +# Malta holidays en_US localization. # Authors: PPsyrius , (c) 2023. # msgid "" msgstr "" "Project-Id-Version: Python Holidays 0.28\n" "POT-Creation-Date: 2023-06-27 19:10+0700\n" -"PO-Revision-Date: \n" -"Last-Translator: PPsyrius \n" +"PO-Revision-Date: 2023-12-26 22:02+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" -"Language: en_MT\n" +"Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.4\n" -#. New Year's Day +#. New Year's Day. msgid "L-Ewwel tas-Sena" msgstr "New Year's Day" -#. Feast of St. Paul's Shipwreck +#. Feast of St. Paul's Shipwreck. msgid "Il-Festa tan-Nawfraġju ta' San Pawl" msgstr "Feast of St. Paul's Shipwreck" -#. Feast of St. Joseph +#. Feast of St. Joseph. msgid "Il-Festa ta' San Ġużepp" msgstr "Feast of St. Joseph" -#. Freedom Day +#. Freedom Day. msgid "Jum il-Ħelsien" msgstr "Freedom Day" -#. Good Friday +#. Good Friday. msgid "Il-Ġimgħa l-Kbira" msgstr "Good Friday" -#. Worker's Day +#. Worker's Day. msgid "Jum il-Ħaddiem" msgstr "Worker's Day" -#. Sette Giugno +#. Sette Giugno. msgid "Sette Giugno" msgstr "Sette Giugno" -#. Feast of St. Peter and St. Paul +#. Feast of St. Peter and St. Paul. msgid "Il-Festa ta' San Pietru u San Pawl" msgstr "Feast of St. Peter and St. Paul" -#. Feast of the Assumption +#. Feast of the Assumption. msgid "Il-Festa ta' Santa Marija" msgstr "Feast of the Assumption" -#. Feast of Our Lady of Victories +#. Feast of Our Lady of Victories. msgid "Jum il-Vitorja" msgstr "Feast of Our Lady of Victories" -#. Independence Day +#. Independence Day. msgid "Jum l-Indipendenza" msgstr "Independence Day" @@ -63,10 +63,10 @@ msgstr "Independence Day" msgid "Il-Festa tal-Immakulata Kunċizzjoni" msgstr "Feast of the Immaculate Conception" -#. Republic Day +#. Republic Day. msgid "Jum ir-Repubblika" msgstr "Republic Day" -#. Christmas Day +#. Christmas Day. msgid "Il-Milied" msgstr "Christmas Day" diff --git a/holidays/locale/mt/LC_MESSAGES/MT.po b/holidays/locale/mt/LC_MESSAGES/MT.po index f65097af2..6b453498f 100644 --- a/holidays/locale/mt/LC_MESSAGES/MT.po +++ b/holidays/locale/mt/LC_MESSAGES/MT.po @@ -15,47 +15,47 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || (n%100>=2 && n%100<=10) ? 1 : n%100>=11 && n%100<=19 ? 2 : 3);\n" "X-Generator: Poedit 3.3.2\n" -#. New Year's Day +#. New Year's Day. msgid "L-Ewwel tas-Sena" msgstr "" -#. Feast of St. Paul's Shipwreck +#. Feast of St. Paul's Shipwreck. msgid "Il-Festa tan-Nawfraġju ta' San Pawl" msgstr "" -#. Feast of St. Joseph +#. Feast of St. Joseph. msgid "Il-Festa ta' San Ġużepp" msgstr "" -#. Freedom Day +#. Freedom Day. msgid "Jum il-Ħelsien" msgstr "" -#. Good Friday +#. Good Friday. msgid "Il-Ġimgħa l-Kbira" msgstr "" -#. Worker's Day +#. Worker's Day. msgid "Jum il-Ħaddiem" msgstr "" -#. Sette Giugno +#. Sette Giugno. msgid "Sette Giugno" msgstr "" -#. Feast of St. Peter and St. Paul +#. Feast of St. Peter and St. Paul. msgid "Il-Festa ta' San Pietru u San Pawl" msgstr "" -#. Feast of the Assumption +#. Feast of the Assumption. msgid "Il-Festa ta' Santa Marija" msgstr "" -#. Feast of Our Lady of Victories +#. Feast of Our Lady of Victories. msgid "Jum il-Vitorja" msgstr "" -#. Independence Day +#. Independence Day. msgid "Jum l-Indipendenza" msgstr "" @@ -63,10 +63,10 @@ msgstr "" msgid "Il-Festa tal-Immakulata Kunċizzjoni" msgstr "" -#. Republic Day +#. Republic Day. msgid "Jum ir-Repubblika" msgstr "" -#. Christmas Day +#. Christmas Day. msgid "Il-Milied" msgstr "" diff --git a/snapshots/countries/MT_COMMON.json b/snapshots/countries/MT_COMMON.json index a770aabe3..04f50308a 100644 --- a/snapshots/countries/MT_COMMON.json +++ b/snapshots/countries/MT_COMMON.json @@ -1,943 +1,943 @@ { - "1980-01-01": "L-Ewwel tas-Sena", - "1980-03-31": "Jum il-\u0126elsien", - "1980-04-04": "Il-\u0120img\u0127a l-Kbira", - "1980-05-01": "Jum il-\u0126addiem", - "1980-08-15": "Il-Festa ta' Santa Marija", - "1980-12-13": "Jum ir-Repubblika", - "1980-12-25": "Il-Milied", - "1981-01-01": "L-Ewwel tas-Sena", - "1981-03-31": "Jum il-\u0126elsien", - "1981-04-17": "Il-\u0120img\u0127a l-Kbira", - "1981-05-01": "Jum il-\u0126addiem", - "1981-08-15": "Il-Festa ta' Santa Marija", - "1981-12-13": "Jum ir-Repubblika", - "1981-12-25": "Il-Milied", - "1982-01-01": "L-Ewwel tas-Sena", - "1982-03-31": "Jum il-\u0126elsien", - "1982-04-09": "Il-\u0120img\u0127a l-Kbira", - "1982-05-01": "Jum il-\u0126addiem", - "1982-08-15": "Il-Festa ta' Santa Marija", - "1982-12-13": "Jum ir-Repubblika", - "1982-12-25": "Il-Milied", - "1983-01-01": "L-Ewwel tas-Sena", - "1983-03-31": "Jum il-\u0126elsien", - "1983-04-01": "Il-\u0120img\u0127a l-Kbira", - "1983-05-01": "Jum il-\u0126addiem", - "1983-08-15": "Il-Festa ta' Santa Marija", - "1983-12-13": "Jum ir-Repubblika", - "1983-12-25": "Il-Milied", - "1984-01-01": "L-Ewwel tas-Sena", - "1984-03-31": "Jum il-\u0126elsien", - "1984-04-20": "Il-\u0120img\u0127a l-Kbira", - "1984-05-01": "Jum il-\u0126addiem", - "1984-08-15": "Il-Festa ta' Santa Marija", - "1984-12-13": "Jum ir-Repubblika", - "1984-12-25": "Il-Milied", - "1985-01-01": "L-Ewwel tas-Sena", - "1985-03-31": "Jum il-\u0126elsien", - "1985-04-05": "Il-\u0120img\u0127a l-Kbira", - "1985-05-01": "Jum il-\u0126addiem", - "1985-08-15": "Il-Festa ta' Santa Marija", - "1985-12-13": "Jum ir-Repubblika", - "1985-12-25": "Il-Milied", - "1986-01-01": "L-Ewwel tas-Sena", - "1986-03-28": "Il-\u0120img\u0127a l-Kbira", - "1986-03-31": "Jum il-\u0126elsien", - "1986-05-01": "Jum il-\u0126addiem", - "1986-08-15": "Il-Festa ta' Santa Marija", - "1986-12-13": "Jum ir-Repubblika", - "1986-12-25": "Il-Milied", - "1987-01-01": "L-Ewwel tas-Sena", - "1987-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1987-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1987-04-17": "Il-\u0120img\u0127a l-Kbira", - "1987-05-01": "Jum il-\u0126addiem", - "1987-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1987-08-15": "Il-Festa ta' Santa Marija", - "1987-09-08": "Jum il-Vitorja", - "1987-09-21": "Jum l-Indipendenza", - "1987-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1987-12-13": "Jum ir-Repubblika", - "1987-12-25": "Il-Milied", - "1988-01-01": "L-Ewwel tas-Sena", - "1988-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1988-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1988-04-01": "Il-\u0120img\u0127a l-Kbira", - "1988-05-01": "Jum il-\u0126addiem", - "1988-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1988-08-15": "Il-Festa ta' Santa Marija", - "1988-09-08": "Jum il-Vitorja", - "1988-09-21": "Jum l-Indipendenza", - "1988-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1988-12-13": "Jum ir-Repubblika", - "1988-12-25": "Il-Milied", - "1989-01-01": "L-Ewwel tas-Sena", - "1989-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1989-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1989-03-24": "Il-\u0120img\u0127a l-Kbira", - "1989-03-31": "Jum il-\u0126elsien", - "1989-05-01": "Jum il-\u0126addiem", + "1980-01-01": "New Year's Day", + "1980-03-31": "Freedom Day", + "1980-04-04": "Good Friday", + "1980-05-01": "Worker's Day", + "1980-08-15": "Feast of the Assumption", + "1980-12-13": "Republic Day", + "1980-12-25": "Christmas Day", + "1981-01-01": "New Year's Day", + "1981-03-31": "Freedom Day", + "1981-04-17": "Good Friday", + "1981-05-01": "Worker's Day", + "1981-08-15": "Feast of the Assumption", + "1981-12-13": "Republic Day", + "1981-12-25": "Christmas Day", + "1982-01-01": "New Year's Day", + "1982-03-31": "Freedom Day", + "1982-04-09": "Good Friday", + "1982-05-01": "Worker's Day", + "1982-08-15": "Feast of the Assumption", + "1982-12-13": "Republic Day", + "1982-12-25": "Christmas Day", + "1983-01-01": "New Year's Day", + "1983-03-31": "Freedom Day", + "1983-04-01": "Good Friday", + "1983-05-01": "Worker's Day", + "1983-08-15": "Feast of the Assumption", + "1983-12-13": "Republic Day", + "1983-12-25": "Christmas Day", + "1984-01-01": "New Year's Day", + "1984-03-31": "Freedom Day", + "1984-04-20": "Good Friday", + "1984-05-01": "Worker's Day", + "1984-08-15": "Feast of the Assumption", + "1984-12-13": "Republic Day", + "1984-12-25": "Christmas Day", + "1985-01-01": "New Year's Day", + "1985-03-31": "Freedom Day", + "1985-04-05": "Good Friday", + "1985-05-01": "Worker's Day", + "1985-08-15": "Feast of the Assumption", + "1985-12-13": "Republic Day", + "1985-12-25": "Christmas Day", + "1986-01-01": "New Year's Day", + "1986-03-28": "Good Friday", + "1986-03-31": "Freedom Day", + "1986-05-01": "Worker's Day", + "1986-08-15": "Feast of the Assumption", + "1986-12-13": "Republic Day", + "1986-12-25": "Christmas Day", + "1987-01-01": "New Year's Day", + "1987-02-10": "Feast of St. Paul's Shipwreck", + "1987-03-19": "Feast of St. Joseph", + "1987-04-17": "Good Friday", + "1987-05-01": "Worker's Day", + "1987-06-29": "Feast of St. Peter and St. Paul", + "1987-08-15": "Feast of the Assumption", + "1987-09-08": "Feast of Our Lady of Victories", + "1987-09-21": "Independence Day", + "1987-12-08": "Feast of the Immaculate Conception", + "1987-12-13": "Republic Day", + "1987-12-25": "Christmas Day", + "1988-01-01": "New Year's Day", + "1988-02-10": "Feast of St. Paul's Shipwreck", + "1988-03-19": "Feast of St. Joseph", + "1988-04-01": "Good Friday", + "1988-05-01": "Worker's Day", + "1988-06-29": "Feast of St. Peter and St. Paul", + "1988-08-15": "Feast of the Assumption", + "1988-09-08": "Feast of Our Lady of Victories", + "1988-09-21": "Independence Day", + "1988-12-08": "Feast of the Immaculate Conception", + "1988-12-13": "Republic Day", + "1988-12-25": "Christmas Day", + "1989-01-01": "New Year's Day", + "1989-02-10": "Feast of St. Paul's Shipwreck", + "1989-03-19": "Feast of St. Joseph", + "1989-03-24": "Good Friday", + "1989-03-31": "Freedom Day", + "1989-05-01": "Worker's Day", "1989-06-07": "Sette Giugno", - "1989-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1989-08-15": "Il-Festa ta' Santa Marija", - "1989-09-08": "Jum il-Vitorja", - "1989-09-21": "Jum l-Indipendenza", - "1989-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1989-12-13": "Jum ir-Repubblika", - "1989-12-25": "Il-Milied", - "1990-01-01": "L-Ewwel tas-Sena", - "1990-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1990-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1990-03-31": "Jum il-\u0126elsien", - "1990-04-13": "Il-\u0120img\u0127a l-Kbira", - "1990-05-01": "Jum il-\u0126addiem", + "1989-06-29": "Feast of St. Peter and St. Paul", + "1989-08-15": "Feast of the Assumption", + "1989-09-08": "Feast of Our Lady of Victories", + "1989-09-21": "Independence Day", + "1989-12-08": "Feast of the Immaculate Conception", + "1989-12-13": "Republic Day", + "1989-12-25": "Christmas Day", + "1990-01-01": "New Year's Day", + "1990-02-10": "Feast of St. Paul's Shipwreck", + "1990-03-19": "Feast of St. Joseph", + "1990-03-31": "Freedom Day", + "1990-04-13": "Good Friday", + "1990-05-01": "Worker's Day", "1990-06-07": "Sette Giugno", - "1990-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1990-08-15": "Il-Festa ta' Santa Marija", - "1990-09-08": "Jum il-Vitorja", - "1990-09-21": "Jum l-Indipendenza", - "1990-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1990-12-13": "Jum ir-Repubblika", - "1990-12-25": "Il-Milied", - "1991-01-01": "L-Ewwel tas-Sena", - "1991-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1991-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1991-03-29": "Il-\u0120img\u0127a l-Kbira", - "1991-03-31": "Jum il-\u0126elsien", - "1991-05-01": "Jum il-\u0126addiem", + "1990-06-29": "Feast of St. Peter and St. Paul", + "1990-08-15": "Feast of the Assumption", + "1990-09-08": "Feast of Our Lady of Victories", + "1990-09-21": "Independence Day", + "1990-12-08": "Feast of the Immaculate Conception", + "1990-12-13": "Republic Day", + "1990-12-25": "Christmas Day", + "1991-01-01": "New Year's Day", + "1991-02-10": "Feast of St. Paul's Shipwreck", + "1991-03-19": "Feast of St. Joseph", + "1991-03-29": "Good Friday", + "1991-03-31": "Freedom Day", + "1991-05-01": "Worker's Day", "1991-06-07": "Sette Giugno", - "1991-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1991-08-15": "Il-Festa ta' Santa Marija", - "1991-09-08": "Jum il-Vitorja", - "1991-09-21": "Jum l-Indipendenza", - "1991-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1991-12-13": "Jum ir-Repubblika", - "1991-12-25": "Il-Milied", - "1992-01-01": "L-Ewwel tas-Sena", - "1992-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1992-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1992-03-31": "Jum il-\u0126elsien", - "1992-04-17": "Il-\u0120img\u0127a l-Kbira", - "1992-05-01": "Jum il-\u0126addiem", + "1991-06-29": "Feast of St. Peter and St. Paul", + "1991-08-15": "Feast of the Assumption", + "1991-09-08": "Feast of Our Lady of Victories", + "1991-09-21": "Independence Day", + "1991-12-08": "Feast of the Immaculate Conception", + "1991-12-13": "Republic Day", + "1991-12-25": "Christmas Day", + "1992-01-01": "New Year's Day", + "1992-02-10": "Feast of St. Paul's Shipwreck", + "1992-03-19": "Feast of St. Joseph", + "1992-03-31": "Freedom Day", + "1992-04-17": "Good Friday", + "1992-05-01": "Worker's Day", "1992-06-07": "Sette Giugno", - "1992-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1992-08-15": "Il-Festa ta' Santa Marija", - "1992-09-08": "Jum il-Vitorja", - "1992-09-21": "Jum l-Indipendenza", - "1992-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1992-12-13": "Jum ir-Repubblika", - "1992-12-25": "Il-Milied", - "1993-01-01": "L-Ewwel tas-Sena", - "1993-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1993-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1993-03-31": "Jum il-\u0126elsien", - "1993-04-09": "Il-\u0120img\u0127a l-Kbira", - "1993-05-01": "Jum il-\u0126addiem", + "1992-06-29": "Feast of St. Peter and St. Paul", + "1992-08-15": "Feast of the Assumption", + "1992-09-08": "Feast of Our Lady of Victories", + "1992-09-21": "Independence Day", + "1992-12-08": "Feast of the Immaculate Conception", + "1992-12-13": "Republic Day", + "1992-12-25": "Christmas Day", + "1993-01-01": "New Year's Day", + "1993-02-10": "Feast of St. Paul's Shipwreck", + "1993-03-19": "Feast of St. Joseph", + "1993-03-31": "Freedom Day", + "1993-04-09": "Good Friday", + "1993-05-01": "Worker's Day", "1993-06-07": "Sette Giugno", - "1993-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1993-08-15": "Il-Festa ta' Santa Marija", - "1993-09-08": "Jum il-Vitorja", - "1993-09-21": "Jum l-Indipendenza", - "1993-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1993-12-13": "Jum ir-Repubblika", - "1993-12-25": "Il-Milied", - "1994-01-01": "L-Ewwel tas-Sena", - "1994-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1994-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1994-03-31": "Jum il-\u0126elsien", - "1994-04-01": "Il-\u0120img\u0127a l-Kbira", - "1994-05-01": "Jum il-\u0126addiem", + "1993-06-29": "Feast of St. Peter and St. Paul", + "1993-08-15": "Feast of the Assumption", + "1993-09-08": "Feast of Our Lady of Victories", + "1993-09-21": "Independence Day", + "1993-12-08": "Feast of the Immaculate Conception", + "1993-12-13": "Republic Day", + "1993-12-25": "Christmas Day", + "1994-01-01": "New Year's Day", + "1994-02-10": "Feast of St. Paul's Shipwreck", + "1994-03-19": "Feast of St. Joseph", + "1994-03-31": "Freedom Day", + "1994-04-01": "Good Friday", + "1994-05-01": "Worker's Day", "1994-06-07": "Sette Giugno", - "1994-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1994-08-15": "Il-Festa ta' Santa Marija", - "1994-09-08": "Jum il-Vitorja", - "1994-09-21": "Jum l-Indipendenza", - "1994-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1994-12-13": "Jum ir-Repubblika", - "1994-12-25": "Il-Milied", - "1995-01-01": "L-Ewwel tas-Sena", - "1995-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1995-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1995-03-31": "Jum il-\u0126elsien", - "1995-04-14": "Il-\u0120img\u0127a l-Kbira", - "1995-05-01": "Jum il-\u0126addiem", + "1994-06-29": "Feast of St. Peter and St. Paul", + "1994-08-15": "Feast of the Assumption", + "1994-09-08": "Feast of Our Lady of Victories", + "1994-09-21": "Independence Day", + "1994-12-08": "Feast of the Immaculate Conception", + "1994-12-13": "Republic Day", + "1994-12-25": "Christmas Day", + "1995-01-01": "New Year's Day", + "1995-02-10": "Feast of St. Paul's Shipwreck", + "1995-03-19": "Feast of St. Joseph", + "1995-03-31": "Freedom Day", + "1995-04-14": "Good Friday", + "1995-05-01": "Worker's Day", "1995-06-07": "Sette Giugno", - "1995-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1995-08-15": "Il-Festa ta' Santa Marija", - "1995-09-08": "Jum il-Vitorja", - "1995-09-21": "Jum l-Indipendenza", - "1995-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1995-12-13": "Jum ir-Repubblika", - "1995-12-25": "Il-Milied", - "1996-01-01": "L-Ewwel tas-Sena", - "1996-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1996-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1996-03-31": "Jum il-\u0126elsien", - "1996-04-05": "Il-\u0120img\u0127a l-Kbira", - "1996-05-01": "Jum il-\u0126addiem", + "1995-06-29": "Feast of St. Peter and St. Paul", + "1995-08-15": "Feast of the Assumption", + "1995-09-08": "Feast of Our Lady of Victories", + "1995-09-21": "Independence Day", + "1995-12-08": "Feast of the Immaculate Conception", + "1995-12-13": "Republic Day", + "1995-12-25": "Christmas Day", + "1996-01-01": "New Year's Day", + "1996-02-10": "Feast of St. Paul's Shipwreck", + "1996-03-19": "Feast of St. Joseph", + "1996-03-31": "Freedom Day", + "1996-04-05": "Good Friday", + "1996-05-01": "Worker's Day", "1996-06-07": "Sette Giugno", - "1996-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1996-08-15": "Il-Festa ta' Santa Marija", - "1996-09-08": "Jum il-Vitorja", - "1996-09-21": "Jum l-Indipendenza", - "1996-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1996-12-13": "Jum ir-Repubblika", - "1996-12-25": "Il-Milied", - "1997-01-01": "L-Ewwel tas-Sena", - "1997-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1997-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1997-03-28": "Il-\u0120img\u0127a l-Kbira", - "1997-03-31": "Jum il-\u0126elsien", - "1997-05-01": "Jum il-\u0126addiem", + "1996-06-29": "Feast of St. Peter and St. Paul", + "1996-08-15": "Feast of the Assumption", + "1996-09-08": "Feast of Our Lady of Victories", + "1996-09-21": "Independence Day", + "1996-12-08": "Feast of the Immaculate Conception", + "1996-12-13": "Republic Day", + "1996-12-25": "Christmas Day", + "1997-01-01": "New Year's Day", + "1997-02-10": "Feast of St. Paul's Shipwreck", + "1997-03-19": "Feast of St. Joseph", + "1997-03-28": "Good Friday", + "1997-03-31": "Freedom Day", + "1997-05-01": "Worker's Day", "1997-06-07": "Sette Giugno", - "1997-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1997-08-15": "Il-Festa ta' Santa Marija", - "1997-09-08": "Jum il-Vitorja", - "1997-09-21": "Jum l-Indipendenza", - "1997-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1997-12-13": "Jum ir-Repubblika", - "1997-12-25": "Il-Milied", - "1998-01-01": "L-Ewwel tas-Sena", - "1998-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1998-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1998-03-31": "Jum il-\u0126elsien", - "1998-04-10": "Il-\u0120img\u0127a l-Kbira", - "1998-05-01": "Jum il-\u0126addiem", + "1997-06-29": "Feast of St. Peter and St. Paul", + "1997-08-15": "Feast of the Assumption", + "1997-09-08": "Feast of Our Lady of Victories", + "1997-09-21": "Independence Day", + "1997-12-08": "Feast of the Immaculate Conception", + "1997-12-13": "Republic Day", + "1997-12-25": "Christmas Day", + "1998-01-01": "New Year's Day", + "1998-02-10": "Feast of St. Paul's Shipwreck", + "1998-03-19": "Feast of St. Joseph", + "1998-03-31": "Freedom Day", + "1998-04-10": "Good Friday", + "1998-05-01": "Worker's Day", "1998-06-07": "Sette Giugno", - "1998-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1998-08-15": "Il-Festa ta' Santa Marija", - "1998-09-08": "Jum il-Vitorja", - "1998-09-21": "Jum l-Indipendenza", - "1998-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1998-12-13": "Jum ir-Repubblika", - "1998-12-25": "Il-Milied", - "1999-01-01": "L-Ewwel tas-Sena", - "1999-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "1999-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "1999-03-31": "Jum il-\u0126elsien", - "1999-04-02": "Il-\u0120img\u0127a l-Kbira", - "1999-05-01": "Jum il-\u0126addiem", + "1998-06-29": "Feast of St. Peter and St. Paul", + "1998-08-15": "Feast of the Assumption", + "1998-09-08": "Feast of Our Lady of Victories", + "1998-09-21": "Independence Day", + "1998-12-08": "Feast of the Immaculate Conception", + "1998-12-13": "Republic Day", + "1998-12-25": "Christmas Day", + "1999-01-01": "New Year's Day", + "1999-02-10": "Feast of St. Paul's Shipwreck", + "1999-03-19": "Feast of St. Joseph", + "1999-03-31": "Freedom Day", + "1999-04-02": "Good Friday", + "1999-05-01": "Worker's Day", "1999-06-07": "Sette Giugno", - "1999-06-29": "Il-Festa ta' San Pietru u San Pawl", - "1999-08-15": "Il-Festa ta' Santa Marija", - "1999-09-08": "Jum il-Vitorja", - "1999-09-21": "Jum l-Indipendenza", - "1999-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "1999-12-13": "Jum ir-Repubblika", - "1999-12-25": "Il-Milied", - "2000-01-01": "L-Ewwel tas-Sena", - "2000-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2000-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2000-03-31": "Jum il-\u0126elsien", - "2000-04-21": "Il-\u0120img\u0127a l-Kbira", - "2000-05-01": "Jum il-\u0126addiem", + "1999-06-29": "Feast of St. Peter and St. Paul", + "1999-08-15": "Feast of the Assumption", + "1999-09-08": "Feast of Our Lady of Victories", + "1999-09-21": "Independence Day", + "1999-12-08": "Feast of the Immaculate Conception", + "1999-12-13": "Republic Day", + "1999-12-25": "Christmas Day", + "2000-01-01": "New Year's Day", + "2000-02-10": "Feast of St. Paul's Shipwreck", + "2000-03-19": "Feast of St. Joseph", + "2000-03-31": "Freedom Day", + "2000-04-21": "Good Friday", + "2000-05-01": "Worker's Day", "2000-06-07": "Sette Giugno", - "2000-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2000-08-15": "Il-Festa ta' Santa Marija", - "2000-09-08": "Jum il-Vitorja", - "2000-09-21": "Jum l-Indipendenza", - "2000-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2000-12-13": "Jum ir-Repubblika", - "2000-12-25": "Il-Milied", - "2001-01-01": "L-Ewwel tas-Sena", - "2001-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2001-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2001-03-31": "Jum il-\u0126elsien", - "2001-04-13": "Il-\u0120img\u0127a l-Kbira", - "2001-05-01": "Jum il-\u0126addiem", + "2000-06-29": "Feast of St. Peter and St. Paul", + "2000-08-15": "Feast of the Assumption", + "2000-09-08": "Feast of Our Lady of Victories", + "2000-09-21": "Independence Day", + "2000-12-08": "Feast of the Immaculate Conception", + "2000-12-13": "Republic Day", + "2000-12-25": "Christmas Day", + "2001-01-01": "New Year's Day", + "2001-02-10": "Feast of St. Paul's Shipwreck", + "2001-03-19": "Feast of St. Joseph", + "2001-03-31": "Freedom Day", + "2001-04-13": "Good Friday", + "2001-05-01": "Worker's Day", "2001-06-07": "Sette Giugno", - "2001-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2001-08-15": "Il-Festa ta' Santa Marija", - "2001-09-08": "Jum il-Vitorja", - "2001-09-21": "Jum l-Indipendenza", - "2001-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2001-12-13": "Jum ir-Repubblika", - "2001-12-25": "Il-Milied", - "2002-01-01": "L-Ewwel tas-Sena", - "2002-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2002-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2002-03-29": "Il-\u0120img\u0127a l-Kbira", - "2002-03-31": "Jum il-\u0126elsien", - "2002-05-01": "Jum il-\u0126addiem", + "2001-06-29": "Feast of St. Peter and St. Paul", + "2001-08-15": "Feast of the Assumption", + "2001-09-08": "Feast of Our Lady of Victories", + "2001-09-21": "Independence Day", + "2001-12-08": "Feast of the Immaculate Conception", + "2001-12-13": "Republic Day", + "2001-12-25": "Christmas Day", + "2002-01-01": "New Year's Day", + "2002-02-10": "Feast of St. Paul's Shipwreck", + "2002-03-19": "Feast of St. Joseph", + "2002-03-29": "Good Friday", + "2002-03-31": "Freedom Day", + "2002-05-01": "Worker's Day", "2002-06-07": "Sette Giugno", - "2002-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2002-08-15": "Il-Festa ta' Santa Marija", - "2002-09-08": "Jum il-Vitorja", - "2002-09-21": "Jum l-Indipendenza", - "2002-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2002-12-13": "Jum ir-Repubblika", - "2002-12-25": "Il-Milied", - "2003-01-01": "L-Ewwel tas-Sena", - "2003-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2003-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2003-03-31": "Jum il-\u0126elsien", - "2003-04-18": "Il-\u0120img\u0127a l-Kbira", - "2003-05-01": "Jum il-\u0126addiem", + "2002-06-29": "Feast of St. Peter and St. Paul", + "2002-08-15": "Feast of the Assumption", + "2002-09-08": "Feast of Our Lady of Victories", + "2002-09-21": "Independence Day", + "2002-12-08": "Feast of the Immaculate Conception", + "2002-12-13": "Republic Day", + "2002-12-25": "Christmas Day", + "2003-01-01": "New Year's Day", + "2003-02-10": "Feast of St. Paul's Shipwreck", + "2003-03-19": "Feast of St. Joseph", + "2003-03-31": "Freedom Day", + "2003-04-18": "Good Friday", + "2003-05-01": "Worker's Day", "2003-06-07": "Sette Giugno", - "2003-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2003-08-15": "Il-Festa ta' Santa Marija", - "2003-09-08": "Jum il-Vitorja", - "2003-09-21": "Jum l-Indipendenza", - "2003-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2003-12-13": "Jum ir-Repubblika", - "2003-12-25": "Il-Milied", - "2004-01-01": "L-Ewwel tas-Sena", - "2004-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2004-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2004-03-31": "Jum il-\u0126elsien", - "2004-04-09": "Il-\u0120img\u0127a l-Kbira", - "2004-05-01": "Jum il-\u0126addiem", + "2003-06-29": "Feast of St. Peter and St. Paul", + "2003-08-15": "Feast of the Assumption", + "2003-09-08": "Feast of Our Lady of Victories", + "2003-09-21": "Independence Day", + "2003-12-08": "Feast of the Immaculate Conception", + "2003-12-13": "Republic Day", + "2003-12-25": "Christmas Day", + "2004-01-01": "New Year's Day", + "2004-02-10": "Feast of St. Paul's Shipwreck", + "2004-03-19": "Feast of St. Joseph", + "2004-03-31": "Freedom Day", + "2004-04-09": "Good Friday", + "2004-05-01": "Worker's Day", "2004-06-07": "Sette Giugno", - "2004-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2004-08-15": "Il-Festa ta' Santa Marija", - "2004-09-08": "Jum il-Vitorja", - "2004-09-21": "Jum l-Indipendenza", - "2004-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2004-12-13": "Jum ir-Repubblika", - "2004-12-25": "Il-Milied", - "2005-01-01": "L-Ewwel tas-Sena", - "2005-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2005-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2005-03-25": "Il-\u0120img\u0127a l-Kbira", - "2005-03-31": "Jum il-\u0126elsien", - "2005-05-01": "Jum il-\u0126addiem", + "2004-06-29": "Feast of St. Peter and St. Paul", + "2004-08-15": "Feast of the Assumption", + "2004-09-08": "Feast of Our Lady of Victories", + "2004-09-21": "Independence Day", + "2004-12-08": "Feast of the Immaculate Conception", + "2004-12-13": "Republic Day", + "2004-12-25": "Christmas Day", + "2005-01-01": "New Year's Day", + "2005-02-10": "Feast of St. Paul's Shipwreck", + "2005-03-19": "Feast of St. Joseph", + "2005-03-25": "Good Friday", + "2005-03-31": "Freedom Day", + "2005-05-01": "Worker's Day", "2005-06-07": "Sette Giugno", - "2005-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2005-08-15": "Il-Festa ta' Santa Marija", - "2005-09-08": "Jum il-Vitorja", - "2005-09-21": "Jum l-Indipendenza", - "2005-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2005-12-13": "Jum ir-Repubblika", - "2005-12-25": "Il-Milied", - "2006-01-01": "L-Ewwel tas-Sena", - "2006-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2006-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2006-03-31": "Jum il-\u0126elsien", - "2006-04-14": "Il-\u0120img\u0127a l-Kbira", - "2006-05-01": "Jum il-\u0126addiem", + "2005-06-29": "Feast of St. Peter and St. Paul", + "2005-08-15": "Feast of the Assumption", + "2005-09-08": "Feast of Our Lady of Victories", + "2005-09-21": "Independence Day", + "2005-12-08": "Feast of the Immaculate Conception", + "2005-12-13": "Republic Day", + "2005-12-25": "Christmas Day", + "2006-01-01": "New Year's Day", + "2006-02-10": "Feast of St. Paul's Shipwreck", + "2006-03-19": "Feast of St. Joseph", + "2006-03-31": "Freedom Day", + "2006-04-14": "Good Friday", + "2006-05-01": "Worker's Day", "2006-06-07": "Sette Giugno", - "2006-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2006-08-15": "Il-Festa ta' Santa Marija", - "2006-09-08": "Jum il-Vitorja", - "2006-09-21": "Jum l-Indipendenza", - "2006-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2006-12-13": "Jum ir-Repubblika", - "2006-12-25": "Il-Milied", - "2007-01-01": "L-Ewwel tas-Sena", - "2007-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2007-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2007-03-31": "Jum il-\u0126elsien", - "2007-04-06": "Il-\u0120img\u0127a l-Kbira", - "2007-05-01": "Jum il-\u0126addiem", + "2006-06-29": "Feast of St. Peter and St. Paul", + "2006-08-15": "Feast of the Assumption", + "2006-09-08": "Feast of Our Lady of Victories", + "2006-09-21": "Independence Day", + "2006-12-08": "Feast of the Immaculate Conception", + "2006-12-13": "Republic Day", + "2006-12-25": "Christmas Day", + "2007-01-01": "New Year's Day", + "2007-02-10": "Feast of St. Paul's Shipwreck", + "2007-03-19": "Feast of St. Joseph", + "2007-03-31": "Freedom Day", + "2007-04-06": "Good Friday", + "2007-05-01": "Worker's Day", "2007-06-07": "Sette Giugno", - "2007-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2007-08-15": "Il-Festa ta' Santa Marija", - "2007-09-08": "Jum il-Vitorja", - "2007-09-21": "Jum l-Indipendenza", - "2007-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2007-12-13": "Jum ir-Repubblika", - "2007-12-25": "Il-Milied", - "2008-01-01": "L-Ewwel tas-Sena", - "2008-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2008-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2008-03-21": "Il-\u0120img\u0127a l-Kbira", - "2008-03-31": "Jum il-\u0126elsien", - "2008-05-01": "Jum il-\u0126addiem", + "2007-06-29": "Feast of St. Peter and St. Paul", + "2007-08-15": "Feast of the Assumption", + "2007-09-08": "Feast of Our Lady of Victories", + "2007-09-21": "Independence Day", + "2007-12-08": "Feast of the Immaculate Conception", + "2007-12-13": "Republic Day", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-02-10": "Feast of St. Paul's Shipwreck", + "2008-03-19": "Feast of St. Joseph", + "2008-03-21": "Good Friday", + "2008-03-31": "Freedom Day", + "2008-05-01": "Worker's Day", "2008-06-07": "Sette Giugno", - "2008-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2008-08-15": "Il-Festa ta' Santa Marija", - "2008-09-08": "Jum il-Vitorja", - "2008-09-21": "Jum l-Indipendenza", - "2008-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2008-12-13": "Jum ir-Repubblika", - "2008-12-25": "Il-Milied", - "2009-01-01": "L-Ewwel tas-Sena", - "2009-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2009-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2009-03-31": "Jum il-\u0126elsien", - "2009-04-10": "Il-\u0120img\u0127a l-Kbira", - "2009-05-01": "Jum il-\u0126addiem", + "2008-06-29": "Feast of St. Peter and St. Paul", + "2008-08-15": "Feast of the Assumption", + "2008-09-08": "Feast of Our Lady of Victories", + "2008-09-21": "Independence Day", + "2008-12-08": "Feast of the Immaculate Conception", + "2008-12-13": "Republic Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-02-10": "Feast of St. Paul's Shipwreck", + "2009-03-19": "Feast of St. Joseph", + "2009-03-31": "Freedom Day", + "2009-04-10": "Good Friday", + "2009-05-01": "Worker's Day", "2009-06-07": "Sette Giugno", - "2009-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2009-08-15": "Il-Festa ta' Santa Marija", - "2009-09-08": "Jum il-Vitorja", - "2009-09-21": "Jum l-Indipendenza", - "2009-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2009-12-13": "Jum ir-Repubblika", - "2009-12-25": "Il-Milied", - "2010-01-01": "L-Ewwel tas-Sena", - "2010-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2010-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2010-03-31": "Jum il-\u0126elsien", - "2010-04-02": "Il-\u0120img\u0127a l-Kbira", - "2010-05-01": "Jum il-\u0126addiem", + "2009-06-29": "Feast of St. Peter and St. Paul", + "2009-08-15": "Feast of the Assumption", + "2009-09-08": "Feast of Our Lady of Victories", + "2009-09-21": "Independence Day", + "2009-12-08": "Feast of the Immaculate Conception", + "2009-12-13": "Republic Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-10": "Feast of St. Paul's Shipwreck", + "2010-03-19": "Feast of St. Joseph", + "2010-03-31": "Freedom Day", + "2010-04-02": "Good Friday", + "2010-05-01": "Worker's Day", "2010-06-07": "Sette Giugno", - "2010-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2010-08-15": "Il-Festa ta' Santa Marija", - "2010-09-08": "Jum il-Vitorja", - "2010-09-21": "Jum l-Indipendenza", - "2010-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2010-12-13": "Jum ir-Repubblika", - "2010-12-25": "Il-Milied", - "2011-01-01": "L-Ewwel tas-Sena", - "2011-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2011-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2011-03-31": "Jum il-\u0126elsien", - "2011-04-22": "Il-\u0120img\u0127a l-Kbira", - "2011-05-01": "Jum il-\u0126addiem", + "2010-06-29": "Feast of St. Peter and St. Paul", + "2010-08-15": "Feast of the Assumption", + "2010-09-08": "Feast of Our Lady of Victories", + "2010-09-21": "Independence Day", + "2010-12-08": "Feast of the Immaculate Conception", + "2010-12-13": "Republic Day", + "2010-12-25": "Christmas Day", + "2011-01-01": "New Year's Day", + "2011-02-10": "Feast of St. Paul's Shipwreck", + "2011-03-19": "Feast of St. Joseph", + "2011-03-31": "Freedom Day", + "2011-04-22": "Good Friday", + "2011-05-01": "Worker's Day", "2011-06-07": "Sette Giugno", - "2011-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2011-08-15": "Il-Festa ta' Santa Marija", - "2011-09-08": "Jum il-Vitorja", - "2011-09-21": "Jum l-Indipendenza", - "2011-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2011-12-13": "Jum ir-Repubblika", - "2011-12-25": "Il-Milied", - "2012-01-01": "L-Ewwel tas-Sena", - "2012-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2012-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2012-03-31": "Jum il-\u0126elsien", - "2012-04-06": "Il-\u0120img\u0127a l-Kbira", - "2012-05-01": "Jum il-\u0126addiem", + "2011-06-29": "Feast of St. Peter and St. Paul", + "2011-08-15": "Feast of the Assumption", + "2011-09-08": "Feast of Our Lady of Victories", + "2011-09-21": "Independence Day", + "2011-12-08": "Feast of the Immaculate Conception", + "2011-12-13": "Republic Day", + "2011-12-25": "Christmas Day", + "2012-01-01": "New Year's Day", + "2012-02-10": "Feast of St. Paul's Shipwreck", + "2012-03-19": "Feast of St. Joseph", + "2012-03-31": "Freedom Day", + "2012-04-06": "Good Friday", + "2012-05-01": "Worker's Day", "2012-06-07": "Sette Giugno", - "2012-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2012-08-15": "Il-Festa ta' Santa Marija", - "2012-09-08": "Jum il-Vitorja", - "2012-09-21": "Jum l-Indipendenza", - "2012-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2012-12-13": "Jum ir-Repubblika", - "2012-12-25": "Il-Milied", - "2013-01-01": "L-Ewwel tas-Sena", - "2013-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2013-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2013-03-29": "Il-\u0120img\u0127a l-Kbira", - "2013-03-31": "Jum il-\u0126elsien", - "2013-05-01": "Jum il-\u0126addiem", + "2012-06-29": "Feast of St. Peter and St. Paul", + "2012-08-15": "Feast of the Assumption", + "2012-09-08": "Feast of Our Lady of Victories", + "2012-09-21": "Independence Day", + "2012-12-08": "Feast of the Immaculate Conception", + "2012-12-13": "Republic Day", + "2012-12-25": "Christmas Day", + "2013-01-01": "New Year's Day", + "2013-02-10": "Feast of St. Paul's Shipwreck", + "2013-03-19": "Feast of St. Joseph", + "2013-03-29": "Good Friday", + "2013-03-31": "Freedom Day", + "2013-05-01": "Worker's Day", "2013-06-07": "Sette Giugno", - "2013-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2013-08-15": "Il-Festa ta' Santa Marija", - "2013-09-08": "Jum il-Vitorja", - "2013-09-21": "Jum l-Indipendenza", - "2013-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2013-12-13": "Jum ir-Repubblika", - "2013-12-25": "Il-Milied", - "2014-01-01": "L-Ewwel tas-Sena", - "2014-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2014-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2014-03-31": "Jum il-\u0126elsien", - "2014-04-18": "Il-\u0120img\u0127a l-Kbira", - "2014-05-01": "Jum il-\u0126addiem", + "2013-06-29": "Feast of St. Peter and St. Paul", + "2013-08-15": "Feast of the Assumption", + "2013-09-08": "Feast of Our Lady of Victories", + "2013-09-21": "Independence Day", + "2013-12-08": "Feast of the Immaculate Conception", + "2013-12-13": "Republic Day", + "2013-12-25": "Christmas Day", + "2014-01-01": "New Year's Day", + "2014-02-10": "Feast of St. Paul's Shipwreck", + "2014-03-19": "Feast of St. Joseph", + "2014-03-31": "Freedom Day", + "2014-04-18": "Good Friday", + "2014-05-01": "Worker's Day", "2014-06-07": "Sette Giugno", - "2014-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2014-08-15": "Il-Festa ta' Santa Marija", - "2014-09-08": "Jum il-Vitorja", - "2014-09-21": "Jum l-Indipendenza", - "2014-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2014-12-13": "Jum ir-Repubblika", - "2014-12-25": "Il-Milied", - "2015-01-01": "L-Ewwel tas-Sena", - "2015-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2015-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2015-03-31": "Jum il-\u0126elsien", - "2015-04-03": "Il-\u0120img\u0127a l-Kbira", - "2015-05-01": "Jum il-\u0126addiem", + "2014-06-29": "Feast of St. Peter and St. Paul", + "2014-08-15": "Feast of the Assumption", + "2014-09-08": "Feast of Our Lady of Victories", + "2014-09-21": "Independence Day", + "2014-12-08": "Feast of the Immaculate Conception", + "2014-12-13": "Republic Day", + "2014-12-25": "Christmas Day", + "2015-01-01": "New Year's Day", + "2015-02-10": "Feast of St. Paul's Shipwreck", + "2015-03-19": "Feast of St. Joseph", + "2015-03-31": "Freedom Day", + "2015-04-03": "Good Friday", + "2015-05-01": "Worker's Day", "2015-06-07": "Sette Giugno", - "2015-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2015-08-15": "Il-Festa ta' Santa Marija", - "2015-09-08": "Jum il-Vitorja", - "2015-09-21": "Jum l-Indipendenza", - "2015-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2015-12-13": "Jum ir-Repubblika", - "2015-12-25": "Il-Milied", - "2016-01-01": "L-Ewwel tas-Sena", - "2016-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2016-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2016-03-25": "Il-\u0120img\u0127a l-Kbira", - "2016-03-31": "Jum il-\u0126elsien", - "2016-05-01": "Jum il-\u0126addiem", + "2015-06-29": "Feast of St. Peter and St. Paul", + "2015-08-15": "Feast of the Assumption", + "2015-09-08": "Feast of Our Lady of Victories", + "2015-09-21": "Independence Day", + "2015-12-08": "Feast of the Immaculate Conception", + "2015-12-13": "Republic Day", + "2015-12-25": "Christmas Day", + "2016-01-01": "New Year's Day", + "2016-02-10": "Feast of St. Paul's Shipwreck", + "2016-03-19": "Feast of St. Joseph", + "2016-03-25": "Good Friday", + "2016-03-31": "Freedom Day", + "2016-05-01": "Worker's Day", "2016-06-07": "Sette Giugno", - "2016-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2016-08-15": "Il-Festa ta' Santa Marija", - "2016-09-08": "Jum il-Vitorja", - "2016-09-21": "Jum l-Indipendenza", - "2016-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2016-12-13": "Jum ir-Repubblika", - "2016-12-25": "Il-Milied", - "2017-01-01": "L-Ewwel tas-Sena", - "2017-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2017-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2017-03-31": "Jum il-\u0126elsien", - "2017-04-14": "Il-\u0120img\u0127a l-Kbira", - "2017-05-01": "Jum il-\u0126addiem", + "2016-06-29": "Feast of St. Peter and St. Paul", + "2016-08-15": "Feast of the Assumption", + "2016-09-08": "Feast of Our Lady of Victories", + "2016-09-21": "Independence Day", + "2016-12-08": "Feast of the Immaculate Conception", + "2016-12-13": "Republic Day", + "2016-12-25": "Christmas Day", + "2017-01-01": "New Year's Day", + "2017-02-10": "Feast of St. Paul's Shipwreck", + "2017-03-19": "Feast of St. Joseph", + "2017-03-31": "Freedom Day", + "2017-04-14": "Good Friday", + "2017-05-01": "Worker's Day", "2017-06-07": "Sette Giugno", - "2017-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2017-08-15": "Il-Festa ta' Santa Marija", - "2017-09-08": "Jum il-Vitorja", - "2017-09-21": "Jum l-Indipendenza", - "2017-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2017-12-13": "Jum ir-Repubblika", - "2017-12-25": "Il-Milied", - "2018-01-01": "L-Ewwel tas-Sena", - "2018-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2018-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2018-03-30": "Il-\u0120img\u0127a l-Kbira", - "2018-03-31": "Jum il-\u0126elsien", - "2018-05-01": "Jum il-\u0126addiem", + "2017-06-29": "Feast of St. Peter and St. Paul", + "2017-08-15": "Feast of the Assumption", + "2017-09-08": "Feast of Our Lady of Victories", + "2017-09-21": "Independence Day", + "2017-12-08": "Feast of the Immaculate Conception", + "2017-12-13": "Republic Day", + "2017-12-25": "Christmas Day", + "2018-01-01": "New Year's Day", + "2018-02-10": "Feast of St. Paul's Shipwreck", + "2018-03-19": "Feast of St. Joseph", + "2018-03-30": "Good Friday", + "2018-03-31": "Freedom Day", + "2018-05-01": "Worker's Day", "2018-06-07": "Sette Giugno", - "2018-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2018-08-15": "Il-Festa ta' Santa Marija", - "2018-09-08": "Jum il-Vitorja", - "2018-09-21": "Jum l-Indipendenza", - "2018-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2018-12-13": "Jum ir-Repubblika", - "2018-12-25": "Il-Milied", - "2019-01-01": "L-Ewwel tas-Sena", - "2019-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2019-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2019-03-31": "Jum il-\u0126elsien", - "2019-04-19": "Il-\u0120img\u0127a l-Kbira", - "2019-05-01": "Jum il-\u0126addiem", + "2018-06-29": "Feast of St. Peter and St. Paul", + "2018-08-15": "Feast of the Assumption", + "2018-09-08": "Feast of Our Lady of Victories", + "2018-09-21": "Independence Day", + "2018-12-08": "Feast of the Immaculate Conception", + "2018-12-13": "Republic Day", + "2018-12-25": "Christmas Day", + "2019-01-01": "New Year's Day", + "2019-02-10": "Feast of St. Paul's Shipwreck", + "2019-03-19": "Feast of St. Joseph", + "2019-03-31": "Freedom Day", + "2019-04-19": "Good Friday", + "2019-05-01": "Worker's Day", "2019-06-07": "Sette Giugno", - "2019-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2019-08-15": "Il-Festa ta' Santa Marija", - "2019-09-08": "Jum il-Vitorja", - "2019-09-21": "Jum l-Indipendenza", - "2019-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2019-12-13": "Jum ir-Repubblika", - "2019-12-25": "Il-Milied", - "2020-01-01": "L-Ewwel tas-Sena", - "2020-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2020-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2020-03-31": "Jum il-\u0126elsien", - "2020-04-10": "Il-\u0120img\u0127a l-Kbira", - "2020-05-01": "Jum il-\u0126addiem", + "2019-06-29": "Feast of St. Peter and St. Paul", + "2019-08-15": "Feast of the Assumption", + "2019-09-08": "Feast of Our Lady of Victories", + "2019-09-21": "Independence Day", + "2019-12-08": "Feast of the Immaculate Conception", + "2019-12-13": "Republic Day", + "2019-12-25": "Christmas Day", + "2020-01-01": "New Year's Day", + "2020-02-10": "Feast of St. Paul's Shipwreck", + "2020-03-19": "Feast of St. Joseph", + "2020-03-31": "Freedom Day", + "2020-04-10": "Good Friday", + "2020-05-01": "Worker's Day", "2020-06-07": "Sette Giugno", - "2020-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2020-08-15": "Il-Festa ta' Santa Marija", - "2020-09-08": "Jum il-Vitorja", - "2020-09-21": "Jum l-Indipendenza", - "2020-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2020-12-13": "Jum ir-Repubblika", - "2020-12-25": "Il-Milied", - "2021-01-01": "L-Ewwel tas-Sena", - "2021-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2021-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2021-03-31": "Jum il-\u0126elsien", - "2021-04-02": "Il-\u0120img\u0127a l-Kbira", - "2021-05-01": "Jum il-\u0126addiem", + "2020-06-29": "Feast of St. Peter and St. Paul", + "2020-08-15": "Feast of the Assumption", + "2020-09-08": "Feast of Our Lady of Victories", + "2020-09-21": "Independence Day", + "2020-12-08": "Feast of the Immaculate Conception", + "2020-12-13": "Republic Day", + "2020-12-25": "Christmas Day", + "2021-01-01": "New Year's Day", + "2021-02-10": "Feast of St. Paul's Shipwreck", + "2021-03-19": "Feast of St. Joseph", + "2021-03-31": "Freedom Day", + "2021-04-02": "Good Friday", + "2021-05-01": "Worker's Day", "2021-06-07": "Sette Giugno", - "2021-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2021-08-15": "Il-Festa ta' Santa Marija", - "2021-09-08": "Jum il-Vitorja", - "2021-09-21": "Jum l-Indipendenza", - "2021-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2021-12-13": "Jum ir-Repubblika", - "2021-12-25": "Il-Milied", - "2022-01-01": "L-Ewwel tas-Sena", - "2022-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2022-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2022-03-31": "Jum il-\u0126elsien", - "2022-04-15": "Il-\u0120img\u0127a l-Kbira", - "2022-05-01": "Jum il-\u0126addiem", + "2021-06-29": "Feast of St. Peter and St. Paul", + "2021-08-15": "Feast of the Assumption", + "2021-09-08": "Feast of Our Lady of Victories", + "2021-09-21": "Independence Day", + "2021-12-08": "Feast of the Immaculate Conception", + "2021-12-13": "Republic Day", + "2021-12-25": "Christmas Day", + "2022-01-01": "New Year's Day", + "2022-02-10": "Feast of St. Paul's Shipwreck", + "2022-03-19": "Feast of St. Joseph", + "2022-03-31": "Freedom Day", + "2022-04-15": "Good Friday", + "2022-05-01": "Worker's Day", "2022-06-07": "Sette Giugno", - "2022-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2022-08-15": "Il-Festa ta' Santa Marija", - "2022-09-08": "Jum il-Vitorja", - "2022-09-21": "Jum l-Indipendenza", - "2022-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2022-12-13": "Jum ir-Repubblika", - "2022-12-25": "Il-Milied", - "2023-01-01": "L-Ewwel tas-Sena", - "2023-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2023-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2023-03-31": "Jum il-\u0126elsien", - "2023-04-07": "Il-\u0120img\u0127a l-Kbira", - "2023-05-01": "Jum il-\u0126addiem", + "2022-06-29": "Feast of St. Peter and St. Paul", + "2022-08-15": "Feast of the Assumption", + "2022-09-08": "Feast of Our Lady of Victories", + "2022-09-21": "Independence Day", + "2022-12-08": "Feast of the Immaculate Conception", + "2022-12-13": "Republic Day", + "2022-12-25": "Christmas Day", + "2023-01-01": "New Year's Day", + "2023-02-10": "Feast of St. Paul's Shipwreck", + "2023-03-19": "Feast of St. Joseph", + "2023-03-31": "Freedom Day", + "2023-04-07": "Good Friday", + "2023-05-01": "Worker's Day", "2023-06-07": "Sette Giugno", - "2023-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2023-08-15": "Il-Festa ta' Santa Marija", - "2023-09-08": "Jum il-Vitorja", - "2023-09-21": "Jum l-Indipendenza", - "2023-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2023-12-13": "Jum ir-Repubblika", - "2023-12-25": "Il-Milied", - "2024-01-01": "L-Ewwel tas-Sena", - "2024-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2024-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2024-03-29": "Il-\u0120img\u0127a l-Kbira", - "2024-03-31": "Jum il-\u0126elsien", - "2024-05-01": "Jum il-\u0126addiem", + "2023-06-29": "Feast of St. Peter and St. Paul", + "2023-08-15": "Feast of the Assumption", + "2023-09-08": "Feast of Our Lady of Victories", + "2023-09-21": "Independence Day", + "2023-12-08": "Feast of the Immaculate Conception", + "2023-12-13": "Republic Day", + "2023-12-25": "Christmas Day", + "2024-01-01": "New Year's Day", + "2024-02-10": "Feast of St. Paul's Shipwreck", + "2024-03-19": "Feast of St. Joseph", + "2024-03-29": "Good Friday", + "2024-03-31": "Freedom Day", + "2024-05-01": "Worker's Day", "2024-06-07": "Sette Giugno", - "2024-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2024-08-15": "Il-Festa ta' Santa Marija", - "2024-09-08": "Jum il-Vitorja", - "2024-09-21": "Jum l-Indipendenza", - "2024-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2024-12-13": "Jum ir-Repubblika", - "2024-12-25": "Il-Milied", - "2025-01-01": "L-Ewwel tas-Sena", - "2025-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2025-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2025-03-31": "Jum il-\u0126elsien", - "2025-04-18": "Il-\u0120img\u0127a l-Kbira", - "2025-05-01": "Jum il-\u0126addiem", + "2024-06-29": "Feast of St. Peter and St. Paul", + "2024-08-15": "Feast of the Assumption", + "2024-09-08": "Feast of Our Lady of Victories", + "2024-09-21": "Independence Day", + "2024-12-08": "Feast of the Immaculate Conception", + "2024-12-13": "Republic Day", + "2024-12-25": "Christmas Day", + "2025-01-01": "New Year's Day", + "2025-02-10": "Feast of St. Paul's Shipwreck", + "2025-03-19": "Feast of St. Joseph", + "2025-03-31": "Freedom Day", + "2025-04-18": "Good Friday", + "2025-05-01": "Worker's Day", "2025-06-07": "Sette Giugno", - "2025-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2025-08-15": "Il-Festa ta' Santa Marija", - "2025-09-08": "Jum il-Vitorja", - "2025-09-21": "Jum l-Indipendenza", - "2025-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2025-12-13": "Jum ir-Repubblika", - "2025-12-25": "Il-Milied", - "2026-01-01": "L-Ewwel tas-Sena", - "2026-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2026-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2026-03-31": "Jum il-\u0126elsien", - "2026-04-03": "Il-\u0120img\u0127a l-Kbira", - "2026-05-01": "Jum il-\u0126addiem", + "2025-06-29": "Feast of St. Peter and St. Paul", + "2025-08-15": "Feast of the Assumption", + "2025-09-08": "Feast of Our Lady of Victories", + "2025-09-21": "Independence Day", + "2025-12-08": "Feast of the Immaculate Conception", + "2025-12-13": "Republic Day", + "2025-12-25": "Christmas Day", + "2026-01-01": "New Year's Day", + "2026-02-10": "Feast of St. Paul's Shipwreck", + "2026-03-19": "Feast of St. Joseph", + "2026-03-31": "Freedom Day", + "2026-04-03": "Good Friday", + "2026-05-01": "Worker's Day", "2026-06-07": "Sette Giugno", - "2026-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2026-08-15": "Il-Festa ta' Santa Marija", - "2026-09-08": "Jum il-Vitorja", - "2026-09-21": "Jum l-Indipendenza", - "2026-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2026-12-13": "Jum ir-Repubblika", - "2026-12-25": "Il-Milied", - "2027-01-01": "L-Ewwel tas-Sena", - "2027-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2027-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2027-03-26": "Il-\u0120img\u0127a l-Kbira", - "2027-03-31": "Jum il-\u0126elsien", - "2027-05-01": "Jum il-\u0126addiem", + "2026-06-29": "Feast of St. Peter and St. Paul", + "2026-08-15": "Feast of the Assumption", + "2026-09-08": "Feast of Our Lady of Victories", + "2026-09-21": "Independence Day", + "2026-12-08": "Feast of the Immaculate Conception", + "2026-12-13": "Republic Day", + "2026-12-25": "Christmas Day", + "2027-01-01": "New Year's Day", + "2027-02-10": "Feast of St. Paul's Shipwreck", + "2027-03-19": "Feast of St. Joseph", + "2027-03-26": "Good Friday", + "2027-03-31": "Freedom Day", + "2027-05-01": "Worker's Day", "2027-06-07": "Sette Giugno", - "2027-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2027-08-15": "Il-Festa ta' Santa Marija", - "2027-09-08": "Jum il-Vitorja", - "2027-09-21": "Jum l-Indipendenza", - "2027-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2027-12-13": "Jum ir-Repubblika", - "2027-12-25": "Il-Milied", - "2028-01-01": "L-Ewwel tas-Sena", - "2028-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2028-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2028-03-31": "Jum il-\u0126elsien", - "2028-04-14": "Il-\u0120img\u0127a l-Kbira", - "2028-05-01": "Jum il-\u0126addiem", + "2027-06-29": "Feast of St. Peter and St. Paul", + "2027-08-15": "Feast of the Assumption", + "2027-09-08": "Feast of Our Lady of Victories", + "2027-09-21": "Independence Day", + "2027-12-08": "Feast of the Immaculate Conception", + "2027-12-13": "Republic Day", + "2027-12-25": "Christmas Day", + "2028-01-01": "New Year's Day", + "2028-02-10": "Feast of St. Paul's Shipwreck", + "2028-03-19": "Feast of St. Joseph", + "2028-03-31": "Freedom Day", + "2028-04-14": "Good Friday", + "2028-05-01": "Worker's Day", "2028-06-07": "Sette Giugno", - "2028-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2028-08-15": "Il-Festa ta' Santa Marija", - "2028-09-08": "Jum il-Vitorja", - "2028-09-21": "Jum l-Indipendenza", - "2028-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2028-12-13": "Jum ir-Repubblika", - "2028-12-25": "Il-Milied", - "2029-01-01": "L-Ewwel tas-Sena", - "2029-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2029-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2029-03-30": "Il-\u0120img\u0127a l-Kbira", - "2029-03-31": "Jum il-\u0126elsien", - "2029-05-01": "Jum il-\u0126addiem", + "2028-06-29": "Feast of St. Peter and St. Paul", + "2028-08-15": "Feast of the Assumption", + "2028-09-08": "Feast of Our Lady of Victories", + "2028-09-21": "Independence Day", + "2028-12-08": "Feast of the Immaculate Conception", + "2028-12-13": "Republic Day", + "2028-12-25": "Christmas Day", + "2029-01-01": "New Year's Day", + "2029-02-10": "Feast of St. Paul's Shipwreck", + "2029-03-19": "Feast of St. Joseph", + "2029-03-30": "Good Friday", + "2029-03-31": "Freedom Day", + "2029-05-01": "Worker's Day", "2029-06-07": "Sette Giugno", - "2029-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2029-08-15": "Il-Festa ta' Santa Marija", - "2029-09-08": "Jum il-Vitorja", - "2029-09-21": "Jum l-Indipendenza", - "2029-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2029-12-13": "Jum ir-Repubblika", - "2029-12-25": "Il-Milied", - "2030-01-01": "L-Ewwel tas-Sena", - "2030-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2030-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2030-03-31": "Jum il-\u0126elsien", - "2030-04-19": "Il-\u0120img\u0127a l-Kbira", - "2030-05-01": "Jum il-\u0126addiem", + "2029-06-29": "Feast of St. Peter and St. Paul", + "2029-08-15": "Feast of the Assumption", + "2029-09-08": "Feast of Our Lady of Victories", + "2029-09-21": "Independence Day", + "2029-12-08": "Feast of the Immaculate Conception", + "2029-12-13": "Republic Day", + "2029-12-25": "Christmas Day", + "2030-01-01": "New Year's Day", + "2030-02-10": "Feast of St. Paul's Shipwreck", + "2030-03-19": "Feast of St. Joseph", + "2030-03-31": "Freedom Day", + "2030-04-19": "Good Friday", + "2030-05-01": "Worker's Day", "2030-06-07": "Sette Giugno", - "2030-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2030-08-15": "Il-Festa ta' Santa Marija", - "2030-09-08": "Jum il-Vitorja", - "2030-09-21": "Jum l-Indipendenza", - "2030-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2030-12-13": "Jum ir-Repubblika", - "2030-12-25": "Il-Milied", - "2031-01-01": "L-Ewwel tas-Sena", - "2031-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2031-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2031-03-31": "Jum il-\u0126elsien", - "2031-04-11": "Il-\u0120img\u0127a l-Kbira", - "2031-05-01": "Jum il-\u0126addiem", + "2030-06-29": "Feast of St. Peter and St. Paul", + "2030-08-15": "Feast of the Assumption", + "2030-09-08": "Feast of Our Lady of Victories", + "2030-09-21": "Independence Day", + "2030-12-08": "Feast of the Immaculate Conception", + "2030-12-13": "Republic Day", + "2030-12-25": "Christmas Day", + "2031-01-01": "New Year's Day", + "2031-02-10": "Feast of St. Paul's Shipwreck", + "2031-03-19": "Feast of St. Joseph", + "2031-03-31": "Freedom Day", + "2031-04-11": "Good Friday", + "2031-05-01": "Worker's Day", "2031-06-07": "Sette Giugno", - "2031-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2031-08-15": "Il-Festa ta' Santa Marija", - "2031-09-08": "Jum il-Vitorja", - "2031-09-21": "Jum l-Indipendenza", - "2031-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2031-12-13": "Jum ir-Repubblika", - "2031-12-25": "Il-Milied", - "2032-01-01": "L-Ewwel tas-Sena", - "2032-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2032-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2032-03-26": "Il-\u0120img\u0127a l-Kbira", - "2032-03-31": "Jum il-\u0126elsien", - "2032-05-01": "Jum il-\u0126addiem", + "2031-06-29": "Feast of St. Peter and St. Paul", + "2031-08-15": "Feast of the Assumption", + "2031-09-08": "Feast of Our Lady of Victories", + "2031-09-21": "Independence Day", + "2031-12-08": "Feast of the Immaculate Conception", + "2031-12-13": "Republic Day", + "2031-12-25": "Christmas Day", + "2032-01-01": "New Year's Day", + "2032-02-10": "Feast of St. Paul's Shipwreck", + "2032-03-19": "Feast of St. Joseph", + "2032-03-26": "Good Friday", + "2032-03-31": "Freedom Day", + "2032-05-01": "Worker's Day", "2032-06-07": "Sette Giugno", - "2032-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2032-08-15": "Il-Festa ta' Santa Marija", - "2032-09-08": "Jum il-Vitorja", - "2032-09-21": "Jum l-Indipendenza", - "2032-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2032-12-13": "Jum ir-Repubblika", - "2032-12-25": "Il-Milied", - "2033-01-01": "L-Ewwel tas-Sena", - "2033-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2033-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2033-03-31": "Jum il-\u0126elsien", - "2033-04-15": "Il-\u0120img\u0127a l-Kbira", - "2033-05-01": "Jum il-\u0126addiem", + "2032-06-29": "Feast of St. Peter and St. Paul", + "2032-08-15": "Feast of the Assumption", + "2032-09-08": "Feast of Our Lady of Victories", + "2032-09-21": "Independence Day", + "2032-12-08": "Feast of the Immaculate Conception", + "2032-12-13": "Republic Day", + "2032-12-25": "Christmas Day", + "2033-01-01": "New Year's Day", + "2033-02-10": "Feast of St. Paul's Shipwreck", + "2033-03-19": "Feast of St. Joseph", + "2033-03-31": "Freedom Day", + "2033-04-15": "Good Friday", + "2033-05-01": "Worker's Day", "2033-06-07": "Sette Giugno", - "2033-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2033-08-15": "Il-Festa ta' Santa Marija", - "2033-09-08": "Jum il-Vitorja", - "2033-09-21": "Jum l-Indipendenza", - "2033-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2033-12-13": "Jum ir-Repubblika", - "2033-12-25": "Il-Milied", - "2034-01-01": "L-Ewwel tas-Sena", - "2034-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2034-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2034-03-31": "Jum il-\u0126elsien", - "2034-04-07": "Il-\u0120img\u0127a l-Kbira", - "2034-05-01": "Jum il-\u0126addiem", + "2033-06-29": "Feast of St. Peter and St. Paul", + "2033-08-15": "Feast of the Assumption", + "2033-09-08": "Feast of Our Lady of Victories", + "2033-09-21": "Independence Day", + "2033-12-08": "Feast of the Immaculate Conception", + "2033-12-13": "Republic Day", + "2033-12-25": "Christmas Day", + "2034-01-01": "New Year's Day", + "2034-02-10": "Feast of St. Paul's Shipwreck", + "2034-03-19": "Feast of St. Joseph", + "2034-03-31": "Freedom Day", + "2034-04-07": "Good Friday", + "2034-05-01": "Worker's Day", "2034-06-07": "Sette Giugno", - "2034-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2034-08-15": "Il-Festa ta' Santa Marija", - "2034-09-08": "Jum il-Vitorja", - "2034-09-21": "Jum l-Indipendenza", - "2034-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2034-12-13": "Jum ir-Repubblika", - "2034-12-25": "Il-Milied", - "2035-01-01": "L-Ewwel tas-Sena", - "2035-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2035-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2035-03-23": "Il-\u0120img\u0127a l-Kbira", - "2035-03-31": "Jum il-\u0126elsien", - "2035-05-01": "Jum il-\u0126addiem", + "2034-06-29": "Feast of St. Peter and St. Paul", + "2034-08-15": "Feast of the Assumption", + "2034-09-08": "Feast of Our Lady of Victories", + "2034-09-21": "Independence Day", + "2034-12-08": "Feast of the Immaculate Conception", + "2034-12-13": "Republic Day", + "2034-12-25": "Christmas Day", + "2035-01-01": "New Year's Day", + "2035-02-10": "Feast of St. Paul's Shipwreck", + "2035-03-19": "Feast of St. Joseph", + "2035-03-23": "Good Friday", + "2035-03-31": "Freedom Day", + "2035-05-01": "Worker's Day", "2035-06-07": "Sette Giugno", - "2035-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2035-08-15": "Il-Festa ta' Santa Marija", - "2035-09-08": "Jum il-Vitorja", - "2035-09-21": "Jum l-Indipendenza", - "2035-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2035-12-13": "Jum ir-Repubblika", - "2035-12-25": "Il-Milied", - "2036-01-01": "L-Ewwel tas-Sena", - "2036-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2036-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2036-03-31": "Jum il-\u0126elsien", - "2036-04-11": "Il-\u0120img\u0127a l-Kbira", - "2036-05-01": "Jum il-\u0126addiem", + "2035-06-29": "Feast of St. Peter and St. Paul", + "2035-08-15": "Feast of the Assumption", + "2035-09-08": "Feast of Our Lady of Victories", + "2035-09-21": "Independence Day", + "2035-12-08": "Feast of the Immaculate Conception", + "2035-12-13": "Republic Day", + "2035-12-25": "Christmas Day", + "2036-01-01": "New Year's Day", + "2036-02-10": "Feast of St. Paul's Shipwreck", + "2036-03-19": "Feast of St. Joseph", + "2036-03-31": "Freedom Day", + "2036-04-11": "Good Friday", + "2036-05-01": "Worker's Day", "2036-06-07": "Sette Giugno", - "2036-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2036-08-15": "Il-Festa ta' Santa Marija", - "2036-09-08": "Jum il-Vitorja", - "2036-09-21": "Jum l-Indipendenza", - "2036-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2036-12-13": "Jum ir-Repubblika", - "2036-12-25": "Il-Milied", - "2037-01-01": "L-Ewwel tas-Sena", - "2037-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2037-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2037-03-31": "Jum il-\u0126elsien", - "2037-04-03": "Il-\u0120img\u0127a l-Kbira", - "2037-05-01": "Jum il-\u0126addiem", + "2036-06-29": "Feast of St. Peter and St. Paul", + "2036-08-15": "Feast of the Assumption", + "2036-09-08": "Feast of Our Lady of Victories", + "2036-09-21": "Independence Day", + "2036-12-08": "Feast of the Immaculate Conception", + "2036-12-13": "Republic Day", + "2036-12-25": "Christmas Day", + "2037-01-01": "New Year's Day", + "2037-02-10": "Feast of St. Paul's Shipwreck", + "2037-03-19": "Feast of St. Joseph", + "2037-03-31": "Freedom Day", + "2037-04-03": "Good Friday", + "2037-05-01": "Worker's Day", "2037-06-07": "Sette Giugno", - "2037-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2037-08-15": "Il-Festa ta' Santa Marija", - "2037-09-08": "Jum il-Vitorja", - "2037-09-21": "Jum l-Indipendenza", - "2037-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2037-12-13": "Jum ir-Repubblika", - "2037-12-25": "Il-Milied", - "2038-01-01": "L-Ewwel tas-Sena", - "2038-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2038-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2038-03-31": "Jum il-\u0126elsien", - "2038-04-23": "Il-\u0120img\u0127a l-Kbira", - "2038-05-01": "Jum il-\u0126addiem", + "2037-06-29": "Feast of St. Peter and St. Paul", + "2037-08-15": "Feast of the Assumption", + "2037-09-08": "Feast of Our Lady of Victories", + "2037-09-21": "Independence Day", + "2037-12-08": "Feast of the Immaculate Conception", + "2037-12-13": "Republic Day", + "2037-12-25": "Christmas Day", + "2038-01-01": "New Year's Day", + "2038-02-10": "Feast of St. Paul's Shipwreck", + "2038-03-19": "Feast of St. Joseph", + "2038-03-31": "Freedom Day", + "2038-04-23": "Good Friday", + "2038-05-01": "Worker's Day", "2038-06-07": "Sette Giugno", - "2038-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2038-08-15": "Il-Festa ta' Santa Marija", - "2038-09-08": "Jum il-Vitorja", - "2038-09-21": "Jum l-Indipendenza", - "2038-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2038-12-13": "Jum ir-Repubblika", - "2038-12-25": "Il-Milied", - "2039-01-01": "L-Ewwel tas-Sena", - "2039-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2039-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2039-03-31": "Jum il-\u0126elsien", - "2039-04-08": "Il-\u0120img\u0127a l-Kbira", - "2039-05-01": "Jum il-\u0126addiem", + "2038-06-29": "Feast of St. Peter and St. Paul", + "2038-08-15": "Feast of the Assumption", + "2038-09-08": "Feast of Our Lady of Victories", + "2038-09-21": "Independence Day", + "2038-12-08": "Feast of the Immaculate Conception", + "2038-12-13": "Republic Day", + "2038-12-25": "Christmas Day", + "2039-01-01": "New Year's Day", + "2039-02-10": "Feast of St. Paul's Shipwreck", + "2039-03-19": "Feast of St. Joseph", + "2039-03-31": "Freedom Day", + "2039-04-08": "Good Friday", + "2039-05-01": "Worker's Day", "2039-06-07": "Sette Giugno", - "2039-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2039-08-15": "Il-Festa ta' Santa Marija", - "2039-09-08": "Jum il-Vitorja", - "2039-09-21": "Jum l-Indipendenza", - "2039-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2039-12-13": "Jum ir-Repubblika", - "2039-12-25": "Il-Milied", - "2040-01-01": "L-Ewwel tas-Sena", - "2040-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2040-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2040-03-30": "Il-\u0120img\u0127a l-Kbira", - "2040-03-31": "Jum il-\u0126elsien", - "2040-05-01": "Jum il-\u0126addiem", + "2039-06-29": "Feast of St. Peter and St. Paul", + "2039-08-15": "Feast of the Assumption", + "2039-09-08": "Feast of Our Lady of Victories", + "2039-09-21": "Independence Day", + "2039-12-08": "Feast of the Immaculate Conception", + "2039-12-13": "Republic Day", + "2039-12-25": "Christmas Day", + "2040-01-01": "New Year's Day", + "2040-02-10": "Feast of St. Paul's Shipwreck", + "2040-03-19": "Feast of St. Joseph", + "2040-03-30": "Good Friday", + "2040-03-31": "Freedom Day", + "2040-05-01": "Worker's Day", "2040-06-07": "Sette Giugno", - "2040-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2040-08-15": "Il-Festa ta' Santa Marija", - "2040-09-08": "Jum il-Vitorja", - "2040-09-21": "Jum l-Indipendenza", - "2040-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2040-12-13": "Jum ir-Repubblika", - "2040-12-25": "Il-Milied", - "2041-01-01": "L-Ewwel tas-Sena", - "2041-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2041-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2041-03-31": "Jum il-\u0126elsien", - "2041-04-19": "Il-\u0120img\u0127a l-Kbira", - "2041-05-01": "Jum il-\u0126addiem", + "2040-06-29": "Feast of St. Peter and St. Paul", + "2040-08-15": "Feast of the Assumption", + "2040-09-08": "Feast of Our Lady of Victories", + "2040-09-21": "Independence Day", + "2040-12-08": "Feast of the Immaculate Conception", + "2040-12-13": "Republic Day", + "2040-12-25": "Christmas Day", + "2041-01-01": "New Year's Day", + "2041-02-10": "Feast of St. Paul's Shipwreck", + "2041-03-19": "Feast of St. Joseph", + "2041-03-31": "Freedom Day", + "2041-04-19": "Good Friday", + "2041-05-01": "Worker's Day", "2041-06-07": "Sette Giugno", - "2041-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2041-08-15": "Il-Festa ta' Santa Marija", - "2041-09-08": "Jum il-Vitorja", - "2041-09-21": "Jum l-Indipendenza", - "2041-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2041-12-13": "Jum ir-Repubblika", - "2041-12-25": "Il-Milied", - "2042-01-01": "L-Ewwel tas-Sena", - "2042-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2042-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2042-03-31": "Jum il-\u0126elsien", - "2042-04-04": "Il-\u0120img\u0127a l-Kbira", - "2042-05-01": "Jum il-\u0126addiem", + "2041-06-29": "Feast of St. Peter and St. Paul", + "2041-08-15": "Feast of the Assumption", + "2041-09-08": "Feast of Our Lady of Victories", + "2041-09-21": "Independence Day", + "2041-12-08": "Feast of the Immaculate Conception", + "2041-12-13": "Republic Day", + "2041-12-25": "Christmas Day", + "2042-01-01": "New Year's Day", + "2042-02-10": "Feast of St. Paul's Shipwreck", + "2042-03-19": "Feast of St. Joseph", + "2042-03-31": "Freedom Day", + "2042-04-04": "Good Friday", + "2042-05-01": "Worker's Day", "2042-06-07": "Sette Giugno", - "2042-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2042-08-15": "Il-Festa ta' Santa Marija", - "2042-09-08": "Jum il-Vitorja", - "2042-09-21": "Jum l-Indipendenza", - "2042-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2042-12-13": "Jum ir-Repubblika", - "2042-12-25": "Il-Milied", - "2043-01-01": "L-Ewwel tas-Sena", - "2043-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2043-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2043-03-27": "Il-\u0120img\u0127a l-Kbira", - "2043-03-31": "Jum il-\u0126elsien", - "2043-05-01": "Jum il-\u0126addiem", + "2042-06-29": "Feast of St. Peter and St. Paul", + "2042-08-15": "Feast of the Assumption", + "2042-09-08": "Feast of Our Lady of Victories", + "2042-09-21": "Independence Day", + "2042-12-08": "Feast of the Immaculate Conception", + "2042-12-13": "Republic Day", + "2042-12-25": "Christmas Day", + "2043-01-01": "New Year's Day", + "2043-02-10": "Feast of St. Paul's Shipwreck", + "2043-03-19": "Feast of St. Joseph", + "2043-03-27": "Good Friday", + "2043-03-31": "Freedom Day", + "2043-05-01": "Worker's Day", "2043-06-07": "Sette Giugno", - "2043-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2043-08-15": "Il-Festa ta' Santa Marija", - "2043-09-08": "Jum il-Vitorja", - "2043-09-21": "Jum l-Indipendenza", - "2043-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2043-12-13": "Jum ir-Repubblika", - "2043-12-25": "Il-Milied", - "2044-01-01": "L-Ewwel tas-Sena", - "2044-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2044-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2044-03-31": "Jum il-\u0126elsien", - "2044-04-15": "Il-\u0120img\u0127a l-Kbira", - "2044-05-01": "Jum il-\u0126addiem", + "2043-06-29": "Feast of St. Peter and St. Paul", + "2043-08-15": "Feast of the Assumption", + "2043-09-08": "Feast of Our Lady of Victories", + "2043-09-21": "Independence Day", + "2043-12-08": "Feast of the Immaculate Conception", + "2043-12-13": "Republic Day", + "2043-12-25": "Christmas Day", + "2044-01-01": "New Year's Day", + "2044-02-10": "Feast of St. Paul's Shipwreck", + "2044-03-19": "Feast of St. Joseph", + "2044-03-31": "Freedom Day", + "2044-04-15": "Good Friday", + "2044-05-01": "Worker's Day", "2044-06-07": "Sette Giugno", - "2044-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2044-08-15": "Il-Festa ta' Santa Marija", - "2044-09-08": "Jum il-Vitorja", - "2044-09-21": "Jum l-Indipendenza", - "2044-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2044-12-13": "Jum ir-Repubblika", - "2044-12-25": "Il-Milied", - "2045-01-01": "L-Ewwel tas-Sena", - "2045-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2045-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2045-03-31": "Jum il-\u0126elsien", - "2045-04-07": "Il-\u0120img\u0127a l-Kbira", - "2045-05-01": "Jum il-\u0126addiem", + "2044-06-29": "Feast of St. Peter and St. Paul", + "2044-08-15": "Feast of the Assumption", + "2044-09-08": "Feast of Our Lady of Victories", + "2044-09-21": "Independence Day", + "2044-12-08": "Feast of the Immaculate Conception", + "2044-12-13": "Republic Day", + "2044-12-25": "Christmas Day", + "2045-01-01": "New Year's Day", + "2045-02-10": "Feast of St. Paul's Shipwreck", + "2045-03-19": "Feast of St. Joseph", + "2045-03-31": "Freedom Day", + "2045-04-07": "Good Friday", + "2045-05-01": "Worker's Day", "2045-06-07": "Sette Giugno", - "2045-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2045-08-15": "Il-Festa ta' Santa Marija", - "2045-09-08": "Jum il-Vitorja", - "2045-09-21": "Jum l-Indipendenza", - "2045-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2045-12-13": "Jum ir-Repubblika", - "2045-12-25": "Il-Milied", - "2046-01-01": "L-Ewwel tas-Sena", - "2046-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2046-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2046-03-23": "Il-\u0120img\u0127a l-Kbira", - "2046-03-31": "Jum il-\u0126elsien", - "2046-05-01": "Jum il-\u0126addiem", + "2045-06-29": "Feast of St. Peter and St. Paul", + "2045-08-15": "Feast of the Assumption", + "2045-09-08": "Feast of Our Lady of Victories", + "2045-09-21": "Independence Day", + "2045-12-08": "Feast of the Immaculate Conception", + "2045-12-13": "Republic Day", + "2045-12-25": "Christmas Day", + "2046-01-01": "New Year's Day", + "2046-02-10": "Feast of St. Paul's Shipwreck", + "2046-03-19": "Feast of St. Joseph", + "2046-03-23": "Good Friday", + "2046-03-31": "Freedom Day", + "2046-05-01": "Worker's Day", "2046-06-07": "Sette Giugno", - "2046-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2046-08-15": "Il-Festa ta' Santa Marija", - "2046-09-08": "Jum il-Vitorja", - "2046-09-21": "Jum l-Indipendenza", - "2046-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2046-12-13": "Jum ir-Repubblika", - "2046-12-25": "Il-Milied", - "2047-01-01": "L-Ewwel tas-Sena", - "2047-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2047-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2047-03-31": "Jum il-\u0126elsien", - "2047-04-12": "Il-\u0120img\u0127a l-Kbira", - "2047-05-01": "Jum il-\u0126addiem", + "2046-06-29": "Feast of St. Peter and St. Paul", + "2046-08-15": "Feast of the Assumption", + "2046-09-08": "Feast of Our Lady of Victories", + "2046-09-21": "Independence Day", + "2046-12-08": "Feast of the Immaculate Conception", + "2046-12-13": "Republic Day", + "2046-12-25": "Christmas Day", + "2047-01-01": "New Year's Day", + "2047-02-10": "Feast of St. Paul's Shipwreck", + "2047-03-19": "Feast of St. Joseph", + "2047-03-31": "Freedom Day", + "2047-04-12": "Good Friday", + "2047-05-01": "Worker's Day", "2047-06-07": "Sette Giugno", - "2047-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2047-08-15": "Il-Festa ta' Santa Marija", - "2047-09-08": "Jum il-Vitorja", - "2047-09-21": "Jum l-Indipendenza", - "2047-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2047-12-13": "Jum ir-Repubblika", - "2047-12-25": "Il-Milied", - "2048-01-01": "L-Ewwel tas-Sena", - "2048-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2048-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2048-03-31": "Jum il-\u0126elsien", - "2048-04-03": "Il-\u0120img\u0127a l-Kbira", - "2048-05-01": "Jum il-\u0126addiem", + "2047-06-29": "Feast of St. Peter and St. Paul", + "2047-08-15": "Feast of the Assumption", + "2047-09-08": "Feast of Our Lady of Victories", + "2047-09-21": "Independence Day", + "2047-12-08": "Feast of the Immaculate Conception", + "2047-12-13": "Republic Day", + "2047-12-25": "Christmas Day", + "2048-01-01": "New Year's Day", + "2048-02-10": "Feast of St. Paul's Shipwreck", + "2048-03-19": "Feast of St. Joseph", + "2048-03-31": "Freedom Day", + "2048-04-03": "Good Friday", + "2048-05-01": "Worker's Day", "2048-06-07": "Sette Giugno", - "2048-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2048-08-15": "Il-Festa ta' Santa Marija", - "2048-09-08": "Jum il-Vitorja", - "2048-09-21": "Jum l-Indipendenza", - "2048-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2048-12-13": "Jum ir-Repubblika", - "2048-12-25": "Il-Milied", - "2049-01-01": "L-Ewwel tas-Sena", - "2049-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2049-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2049-03-31": "Jum il-\u0126elsien", - "2049-04-16": "Il-\u0120img\u0127a l-Kbira", - "2049-05-01": "Jum il-\u0126addiem", + "2048-06-29": "Feast of St. Peter and St. Paul", + "2048-08-15": "Feast of the Assumption", + "2048-09-08": "Feast of Our Lady of Victories", + "2048-09-21": "Independence Day", + "2048-12-08": "Feast of the Immaculate Conception", + "2048-12-13": "Republic Day", + "2048-12-25": "Christmas Day", + "2049-01-01": "New Year's Day", + "2049-02-10": "Feast of St. Paul's Shipwreck", + "2049-03-19": "Feast of St. Joseph", + "2049-03-31": "Freedom Day", + "2049-04-16": "Good Friday", + "2049-05-01": "Worker's Day", "2049-06-07": "Sette Giugno", - "2049-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2049-08-15": "Il-Festa ta' Santa Marija", - "2049-09-08": "Jum il-Vitorja", - "2049-09-21": "Jum l-Indipendenza", - "2049-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2049-12-13": "Jum ir-Repubblika", - "2049-12-25": "Il-Milied", - "2050-01-01": "L-Ewwel tas-Sena", - "2050-02-10": "Il-Festa tan-Nawfra\u0121ju ta' San Pawl", - "2050-03-19": "Il-Festa ta' San \u0120u\u017cepp", - "2050-03-31": "Jum il-\u0126elsien", - "2050-04-08": "Il-\u0120img\u0127a l-Kbira", - "2050-05-01": "Jum il-\u0126addiem", + "2049-06-29": "Feast of St. Peter and St. Paul", + "2049-08-15": "Feast of the Assumption", + "2049-09-08": "Feast of Our Lady of Victories", + "2049-09-21": "Independence Day", + "2049-12-08": "Feast of the Immaculate Conception", + "2049-12-13": "Republic Day", + "2049-12-25": "Christmas Day", + "2050-01-01": "New Year's Day", + "2050-02-10": "Feast of St. Paul's Shipwreck", + "2050-03-19": "Feast of St. Joseph", + "2050-03-31": "Freedom Day", + "2050-04-08": "Good Friday", + "2050-05-01": "Worker's Day", "2050-06-07": "Sette Giugno", - "2050-06-29": "Il-Festa ta' San Pietru u San Pawl", - "2050-08-15": "Il-Festa ta' Santa Marija", - "2050-09-08": "Jum il-Vitorja", - "2050-09-21": "Jum l-Indipendenza", - "2050-12-08": "Il-Festa tal-Immakulata Kun\u010bizzjoni", - "2050-12-13": "Jum ir-Repubblika", - "2050-12-25": "Il-Milied" + "2050-06-29": "Feast of St. Peter and St. Paul", + "2050-08-15": "Feast of the Assumption", + "2050-09-08": "Feast of Our Lady of Victories", + "2050-09-21": "Independence Day", + "2050-12-08": "Feast of the Immaculate Conception", + "2050-12-13": "Republic Day", + "2050-12-25": "Christmas Day" } diff --git a/tests/countries/test_canada.py b/tests/countries/test_canada.py index ab53cdb4d..576e57269 100644 --- a/tests/countries/test_canada.py +++ b/tests/countries/test_canada.py @@ -864,6 +864,23 @@ def test_l10n_ar(self): ("2022-12-27", "(تمت ملاحظته) عيد الميلاد"), ) + def test_l10n_en_us(self): + self.assertLocalizedHolidays( + "en_US", + ("2022-01-01", "New Year's Day"), + ("2022-01-03", "New Year's Day (Observed)"), + ("2022-04-15", "Good Friday"), + ("2022-05-23", "Victoria Day"), + ("2022-07-01", "Canada Day"), + ("2022-09-05", "Labor Day"), + ("2022-09-30", "National Day for Truth and Reconciliation"), + ("2022-10-10", "Thanksgiving Day"), + ("2022-11-11", "Remembrance Day"), + ("2022-12-25", "Christmas Day"), + ("2022-12-26", "Boxing Day; Christmas Day (Observed)"), + ("2022-12-27", "Christmas Day (Observed)"), + ) + def test_l10n_fr(self): self.assertLocalizedHolidays( "fr", diff --git a/tests/countries/test_malta.py b/tests/countries/test_malta.py index cea4a3fdf..1985877f0 100644 --- a/tests/countries/test_malta.py +++ b/tests/countries/test_malta.py @@ -109,9 +109,9 @@ def test_l10n_default(self): ("2023-12-25", "Il-Milied"), ) - def test_l10n_en_mt(self): + def test_l10n_en_us(self): self.assertLocalizedHolidays( - "en_MT", + "en_US", ("2023-01-01", "New Year's Day"), ("2023-02-10", "Feast of St. Paul's Shipwreck"), ("2023-03-19", "Feast of St. Joseph"), From 154181d9692a7cef6aa1fbc522416f10cb053bd2 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Thu, 4 Jan 2024 19:02:22 +0200 Subject: [PATCH 06/23] Simplify estimated label text (#1615) --- holidays/countries/algeria.py | 2 +- holidays/countries/azerbaijan.py | 2 +- holidays/countries/bahrain.py | 2 +- holidays/countries/brunei.py | 2 +- holidays/countries/djibouti.py | 2 +- holidays/countries/egypt.py | 2 +- holidays/countries/ethiopia.py | 2 +- holidays/countries/indonesia.py | 2 +- holidays/countries/iran.py | 2 +- holidays/countries/morocco.py | 2 +- holidays/countries/saudi_arabia.py | 2 +- holidays/countries/tanzania.py | 2 +- holidays/countries/timor_leste.py | 2 +- holidays/countries/tunisia.py | 2 +- holidays/countries/turkey.py | 2 +- holidays/countries/united_arab_emirates.py | 2 +- holidays/groups/buddhist.py | 2 +- holidays/groups/chinese.py | 2 +- holidays/groups/hindu.py | 2 +- holidays/groups/islamic.py | 2 +- holidays/locale/am/LC_MESSAGES/ET.po | 2 +- holidays/locale/ar/LC_MESSAGES/AE.po | 2 +- holidays/locale/ar/LC_MESSAGES/BH.po | 2 +- holidays/locale/ar/LC_MESSAGES/DJ.po | 4 +- holidays/locale/ar/LC_MESSAGES/DZ.po | 2 +- holidays/locale/ar/LC_MESSAGES/EG.po | 2 +- holidays/locale/ar/LC_MESSAGES/ET.po | 4 +- holidays/locale/ar/LC_MESSAGES/MA.po | 2 +- holidays/locale/ar/LC_MESSAGES/SA.po | 2 +- holidays/locale/ar/LC_MESSAGES/TN.po | 2 +- holidays/locale/az/LC_MESSAGES/AZ.po | 2 +- holidays/locale/en_US/LC_MESSAGES/AE.po | 4 +- holidays/locale/en_US/LC_MESSAGES/AZ.po | 4 +- holidays/locale/en_US/LC_MESSAGES/BH.po | 4 +- holidays/locale/en_US/LC_MESSAGES/BN.po | 4 +- holidays/locale/en_US/LC_MESSAGES/DJ.po | 4 +- holidays/locale/en_US/LC_MESSAGES/DZ.po | 4 +- holidays/locale/en_US/LC_MESSAGES/EG.po | 4 +- holidays/locale/en_US/LC_MESSAGES/ET.po | 4 +- holidays/locale/en_US/LC_MESSAGES/ID.po | 4 +- holidays/locale/en_US/LC_MESSAGES/IR.po | 4 +- holidays/locale/en_US/LC_MESSAGES/MA.po | 4 +- holidays/locale/en_US/LC_MESSAGES/SA.po | 4 +- holidays/locale/en_US/LC_MESSAGES/TL.po | 4 +- holidays/locale/en_US/LC_MESSAGES/TN.po | 4 +- holidays/locale/en_US/LC_MESSAGES/TR.po | 4 +- holidays/locale/en_US/LC_MESSAGES/TZ.po | 4 +- holidays/locale/fa/LC_MESSAGES/IR.po | 2 +- holidays/locale/fr/LC_MESSAGES/DJ.po | 2 +- holidays/locale/fr/LC_MESSAGES/DZ.po | 4 +- holidays/locale/fr/LC_MESSAGES/MA.po | 4 +- holidays/locale/id/LC_MESSAGES/ID.po | 2 +- holidays/locale/ms/LC_MESSAGES/BN.po | 2 +- holidays/locale/pt_TL/LC_MESSAGES/TL.po | 2 +- holidays/locale/sw/LC_MESSAGES/TZ.po | 2 +- holidays/locale/tet/LC_MESSAGES/TL.po | 4 +- holidays/locale/th/LC_MESSAGES/BN.po | 4 +- holidays/locale/tr/LC_MESSAGES/TR.po | 2 +- holidays/locale/uk/LC_MESSAGES/AZ.po | 4 +- holidays/locale/uk/LC_MESSAGES/ID.po | 4 +- holidays/locale/uk/LC_MESSAGES/TR.po | 4 +- tests/countries/test_albania.py | 10 +- tests/countries/test_algeria.py | 42 ++++----- tests/countries/test_bahrain.py | 40 ++++---- tests/countries/test_burundi.py | 4 +- tests/countries/test_djibouti.py | 64 ++++++------- tests/countries/test_egypt.py | 36 +++---- tests/countries/test_ethiopia.py | 30 +++--- tests/countries/test_iran.py | 104 ++++++++++----------- tests/countries/test_kyrgyzstan.py | 12 +-- tests/countries/test_maldives.py | 52 +++++------ tests/countries/test_morocco.py | 42 ++++----- tests/countries/test_nigeria.py | 10 +- tests/countries/test_north_macedonia.py | 2 +- tests/countries/test_pakistan.py | 18 ++-- tests/countries/test_philippines.py | 4 +- tests/countries/test_saudi_arabia.py | 44 ++++----- tests/countries/test_tunisia.py | 36 +++---- tests/countries/test_uzbekistan.py | 4 +- 79 files changed, 363 insertions(+), 363 deletions(-) diff --git a/holidays/countries/algeria.py b/holidays/countries/algeria.py index 3b06e9d60..e03c9067b 100644 --- a/holidays/countries/algeria.py +++ b/holidays/countries/algeria.py @@ -24,7 +24,7 @@ class Algeria(HolidayBase, InternationalHolidays, IslamicHolidays): country = "DZ" default_language = "ar" # Estimated label. - estimated_label = tr("(تقدير*) *%s") + estimated_label = tr("(تقدير) %s") supported_languages = ("ar", "en_US", "fr") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/azerbaijan.py b/holidays/countries/azerbaijan.py index ba70f2083..30b6a9219 100644 --- a/holidays/countries/azerbaijan.py +++ b/holidays/countries/azerbaijan.py @@ -31,7 +31,7 @@ class Azerbaijan(ObservedHolidayBase, InternationalHolidays, IslamicHolidays, St country = "AZ" default_language = "az" # Estimated label. - estimated_label = tr("%s* (*təxmini)") + estimated_label = tr("%s (təxmini)") # %s (Observed). observed_label = tr("%s (müşahidə olunur)") supported_categories = (PUBLIC, WORKDAY) diff --git a/holidays/countries/bahrain.py b/holidays/countries/bahrain.py index 8060aeead..4514569d3 100644 --- a/holidays/countries/bahrain.py +++ b/holidays/countries/bahrain.py @@ -29,7 +29,7 @@ class Bahrain(HolidayBase, InternationalHolidays, IslamicHolidays): country = "BH" default_language = "ar" # Estimated label. - estimated_label = tr("(تقدير*) *%s") + estimated_label = tr("(تقدير) %s") supported_languages = ("ar", "en_US") weekend = {FRI, SAT} diff --git a/holidays/countries/brunei.py b/holidays/countries/brunei.py index 912607d3c..d47a9732d 100644 --- a/holidays/countries/brunei.py +++ b/holidays/countries/brunei.py @@ -67,7 +67,7 @@ class Brunei( country = "BN" default_language = "ms" - estimated_label = tr("%s* (*anggaran)") + estimated_label = tr("%s (anggaran)") observed_label = tr("%s - Diperhatikan") supported_languages = ("en_US", "ms", "th") diff --git a/holidays/countries/djibouti.py b/holidays/countries/djibouti.py index d4031ec7f..dda9df551 100644 --- a/holidays/countries/djibouti.py +++ b/holidays/countries/djibouti.py @@ -20,7 +20,7 @@ class Djibouti(HolidayBase, ChristianHolidays, IslamicHolidays, InternationalHol country = "DJ" default_language = "fr" # Estimated label. - estimated_label = tr("%s* (*estimé)") + estimated_label = tr("%s (estimé)") supported_languages = ("ar", "en_US", "fr") weekend = {FRI, SAT} diff --git a/holidays/countries/egypt.py b/holidays/countries/egypt.py index 1c00a671f..eacf1ea10 100644 --- a/holidays/countries/egypt.py +++ b/holidays/countries/egypt.py @@ -34,7 +34,7 @@ class Egypt(HolidayBase, ChristianHolidays, IslamicHolidays, InternationalHolida country = "EG" default_language = "ar" # Estimated label. - estimated_label = tr("(تقدير*) *%s") + estimated_label = tr("(تقدير) %s") supported_languages = ("ar", "en_US") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/ethiopia.py b/holidays/countries/ethiopia.py index 935ede725..56c5e098b 100644 --- a/holidays/countries/ethiopia.py +++ b/holidays/countries/ethiopia.py @@ -21,7 +21,7 @@ class Ethiopia(HolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolidays): country = "ET" default_language = "am" - estimated_label = tr("%s* (*ግምት)") + estimated_label = tr("%s (ግምት)") supported_languages = ("am", "ar", "en_US") def _is_leap_year(self): diff --git a/holidays/countries/indonesia.py b/holidays/countries/indonesia.py index 0c85b4bee..cd9f74778 100644 --- a/holidays/countries/indonesia.py +++ b/holidays/countries/indonesia.py @@ -48,7 +48,7 @@ class Indonesia( country = "ID" default_language = "id" - estimated_label = tr("%s* (*perkiraan)") + estimated_label = tr("%s (perkiraan)") supported_languages = ("en_US", "id", "uk") supported_categories = (GOVERNMENT, PUBLIC) diff --git a/holidays/countries/iran.py b/holidays/countries/iran.py index fe8239462..96035fbc4 100644 --- a/holidays/countries/iran.py +++ b/holidays/countries/iran.py @@ -25,7 +25,7 @@ class Iran(HolidayBase, IslamicHolidays, PersianCalendarHolidays): country = "IR" default_language = "fa" # Estimated label. - estimated_label = tr("(تخمین زده*) *%s") + estimated_label = tr("(تخمین زده) %s") supported_languages = ("en_US", "fa") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/morocco.py b/holidays/countries/morocco.py index 32cd9874e..fcf8a568c 100644 --- a/holidays/countries/morocco.py +++ b/holidays/countries/morocco.py @@ -27,7 +27,7 @@ class Morocco(HolidayBase, InternationalHolidays, IslamicHolidays): country = "MA" default_language = "ar" # Estimated label. - estimated_label = tr("(تقدير*) *%s") + estimated_label = tr("(تقدير) %s") supported_languages = ("ar", "en_US", "fr") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/saudi_arabia.py b/holidays/countries/saudi_arabia.py index c2532239d..7158572b7 100644 --- a/holidays/countries/saudi_arabia.py +++ b/holidays/countries/saudi_arabia.py @@ -46,7 +46,7 @@ class SaudiArabia(ObservedHolidayBase, IslamicHolidays, StaticHolidays): country = "SA" default_language = "ar" # Estimated label. - estimated_label = tr("(تقدير*) *%s") + estimated_label = tr("(تقدير) %s") # %s (Observed). observed_label = tr("(ملاحظة) %s") supported_languages = ("ar", "en_US") diff --git a/holidays/countries/tanzania.py b/holidays/countries/tanzania.py index efa5029e1..e538de7cc 100644 --- a/holidays/countries/tanzania.py +++ b/holidays/countries/tanzania.py @@ -60,7 +60,7 @@ class Tanzania( country = "TZ" supported_categories = (BANK, PUBLIC) default_language = "sw" - estimated_label = tr("%s* (*makisio)") + estimated_label = tr("%s (makisio)") supported_languages = ("en_US", "sw") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/timor_leste.py b/holidays/countries/timor_leste.py index 1eefa2f7e..dc6d74660 100644 --- a/holidays/countries/timor_leste.py +++ b/holidays/countries/timor_leste.py @@ -43,7 +43,7 @@ class TimorLeste( country = "TL" supported_categories = (GOVERNMENT, PUBLIC, WORKDAY) default_language = "pt_TL" - estimated_label = tr("%s* (*aproximada)") + estimated_label = tr("%s (aproximada)") supported_languages = ("en_US", "pt_TL", "tet") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/tunisia.py b/holidays/countries/tunisia.py index 4ad65e3f7..9c7410776 100644 --- a/holidays/countries/tunisia.py +++ b/holidays/countries/tunisia.py @@ -22,7 +22,7 @@ class Tunisia(HolidayBase, InternationalHolidays, IslamicHolidays): country = "TN" default_language = "ar" # Estimated label. - estimated_label = tr("(تقدير*) *%s") + estimated_label = tr("(تقدير) %s") supported_languages = ("ar", "en_US") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/turkey.py b/holidays/countries/turkey.py index f07f33308..0f9028392 100644 --- a/holidays/countries/turkey.py +++ b/holidays/countries/turkey.py @@ -31,7 +31,7 @@ class Turkey(HolidayBase, InternationalHolidays, IslamicHolidays, StaticHolidays country = "TR" default_language = "tr" # Estimated label. - estimated_label = tr("%s* (*tahmini)") + estimated_label = tr("%s (tahmini)") supported_categories = (HALF_DAY, PUBLIC) supported_languages = ("en_US", "tr", "uk") diff --git a/holidays/countries/united_arab_emirates.py b/holidays/countries/united_arab_emirates.py index d86cc4584..92111c6ba 100644 --- a/holidays/countries/united_arab_emirates.py +++ b/holidays/countries/united_arab_emirates.py @@ -43,7 +43,7 @@ class UnitedArabEmirates(HolidayBase, InternationalHolidays, IslamicHolidays): country = "AE" default_language = "ar" # Estimated label. - estimated_label = tr("(تقدير*) *%s") + estimated_label = tr("(تقدير) %s") supported_languages = ("ar", "en_US") weekend = {FRI, SAT} diff --git a/holidays/groups/buddhist.py b/holidays/groups/buddhist.py index cb8ba220a..c88e5a7f6 100644 --- a/holidays/groups/buddhist.py +++ b/holidays/groups/buddhist.py @@ -33,7 +33,7 @@ def _add_buddhist_calendar_holiday( Adds customizable estimation label to holiday name if holiday date is an estimation. """ - estimated_label = getattr(self, "estimated_label", "%s* (*estimated)") + estimated_label = getattr(self, "estimated_label", "%s (estimated)") dt, is_estimated = dt_estimated return self._add_holiday( diff --git a/holidays/groups/chinese.py b/holidays/groups/chinese.py index fdfb70276..564d49edb 100644 --- a/holidays/groups/chinese.py +++ b/holidays/groups/chinese.py @@ -56,7 +56,7 @@ def _add_chinese_calendar_holiday( Adds customizable estimation label to holiday name if holiday date is an estimation. """ - estimated_label = getattr(self, "estimated_label", "%s* (*estimated)") + estimated_label = getattr(self, "estimated_label", "%s (estimated)") dt, is_estimated = dt_estimated if days_delta != 0: diff --git a/holidays/groups/hindu.py b/holidays/groups/hindu.py index a947a600f..632471132 100644 --- a/holidays/groups/hindu.py +++ b/holidays/groups/hindu.py @@ -33,7 +33,7 @@ def _add_hindu_calendar_holiday( Adds customizable estimation label to holiday name if holiday date is an estimation. """ - estimated_label = getattr(self, "estimated_label", "%s* (*estimated)") + estimated_label = getattr(self, "estimated_label", "%s (estimated)") dt, is_estimated = dt_estimated return self._add_holiday( diff --git a/holidays/groups/islamic.py b/holidays/groups/islamic.py index 2ae01ba99..faeae9cbe 100644 --- a/holidays/groups/islamic.py +++ b/holidays/groups/islamic.py @@ -260,7 +260,7 @@ def _add_islamic_calendar_holiday( holiday date is an estimation. """ added_dates = set() - estimated_label = getattr(self, "estimated_label", "%s* (*estimated)") + estimated_label = getattr(self, "estimated_label", "%s (estimated)") for dt, is_estimated in dates: if days_delta != 0: dt += td(days=days_delta) diff --git a/holidays/locale/am/LC_MESSAGES/ET.po b/holidays/locale/am/LC_MESSAGES/ET.po index fb638cbab..f4aa2cc6c 100644 --- a/holidays/locale/am/LC_MESSAGES/ET.po +++ b/holidays/locale/am/LC_MESSAGES/ET.po @@ -72,5 +72,5 @@ msgid "መውሊድ" msgstr "" #, c-format -msgid "%s* (*ግምት)" +msgid "%s (ግምት)" msgstr "" diff --git a/holidays/locale/ar/LC_MESSAGES/AE.po b/holidays/locale/ar/LC_MESSAGES/AE.po index ae77928bb..4718104c8 100644 --- a/holidays/locale/ar/LC_MESSAGES/AE.po +++ b/holidays/locale/ar/LC_MESSAGES/AE.po @@ -17,7 +17,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" +msgid "(تقدير) %s" msgstr "" #. New Year's Day. diff --git a/holidays/locale/ar/LC_MESSAGES/BH.po b/holidays/locale/ar/LC_MESSAGES/BH.po index 18b037bbe..5aa3d0c8f 100644 --- a/holidays/locale/ar/LC_MESSAGES/BH.po +++ b/holidays/locale/ar/LC_MESSAGES/BH.po @@ -17,7 +17,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" +msgid "(تقدير) %s" msgstr "" #. New Year's Day. diff --git a/holidays/locale/ar/LC_MESSAGES/DJ.po b/holidays/locale/ar/LC_MESSAGES/DJ.po index 88628ade6..9e13d1eff 100644 --- a/holidays/locale/ar/LC_MESSAGES/DJ.po +++ b/holidays/locale/ar/LC_MESSAGES/DJ.po @@ -17,8 +17,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "%s* (*estimé)" -msgstr "(تقدير*) *%s" +msgid "%s (estimé)" +msgstr "(تقدير) %s" #. New Year's Day. msgid "Nouvel an" diff --git a/holidays/locale/ar/LC_MESSAGES/DZ.po b/holidays/locale/ar/LC_MESSAGES/DZ.po index 149019c75..62eda7e87 100644 --- a/holidays/locale/ar/LC_MESSAGES/DZ.po +++ b/holidays/locale/ar/LC_MESSAGES/DZ.po @@ -17,7 +17,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" +msgid "(تقدير) %s" msgstr "" #. New Year's Day. diff --git a/holidays/locale/ar/LC_MESSAGES/EG.po b/holidays/locale/ar/LC_MESSAGES/EG.po index a930434b5..5a300ea26 100644 --- a/holidays/locale/ar/LC_MESSAGES/EG.po +++ b/holidays/locale/ar/LC_MESSAGES/EG.po @@ -17,7 +17,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" +msgid "(تقدير) %s" msgstr "" #. New Year's Day diff --git a/holidays/locale/ar/LC_MESSAGES/ET.po b/holidays/locale/ar/LC_MESSAGES/ET.po index f3aa1f672..29d7f549e 100644 --- a/holidays/locale/ar/LC_MESSAGES/ET.po +++ b/holidays/locale/ar/LC_MESSAGES/ET.po @@ -17,8 +17,8 @@ msgstr "" "X-Generator: Poedit 3.3.1\n" #, c-format -msgid "%s* (*ግምት)" -msgstr "(تقدير*) *%s" +msgid "%s (ግምት)" +msgstr "(تقدير) %s" #. Ethiopian New Year. msgid "አዲስ ዓመት እንቁጣጣሽ" diff --git a/holidays/locale/ar/LC_MESSAGES/MA.po b/holidays/locale/ar/LC_MESSAGES/MA.po index 6f767b027..ed21894f2 100644 --- a/holidays/locale/ar/LC_MESSAGES/MA.po +++ b/holidays/locale/ar/LC_MESSAGES/MA.po @@ -17,7 +17,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" +msgid "(تقدير) %s" msgstr "" #. New Year's Day. diff --git a/holidays/locale/ar/LC_MESSAGES/SA.po b/holidays/locale/ar/LC_MESSAGES/SA.po index 5dcdce931..7316b0d37 100644 --- a/holidays/locale/ar/LC_MESSAGES/SA.po +++ b/holidays/locale/ar/LC_MESSAGES/SA.po @@ -18,7 +18,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" +msgid "(تقدير) %s" msgstr "" #. %s (Observed). diff --git a/holidays/locale/ar/LC_MESSAGES/TN.po b/holidays/locale/ar/LC_MESSAGES/TN.po index 2619e6de2..9c3a8ac19 100644 --- a/holidays/locale/ar/LC_MESSAGES/TN.po +++ b/holidays/locale/ar/LC_MESSAGES/TN.po @@ -17,7 +17,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" +msgid "(تقدير) %s" msgstr "" #. New Year's Day. diff --git a/holidays/locale/az/LC_MESSAGES/AZ.po b/holidays/locale/az/LC_MESSAGES/AZ.po index 88602534f..a3038865d 100644 --- a/holidays/locale/az/LC_MESSAGES/AZ.po +++ b/holidays/locale/az/LC_MESSAGES/AZ.po @@ -18,7 +18,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "%s* (*təxmini)" +msgid "%s (təxmini)" msgstr "" #. %s (Observed). diff --git a/holidays/locale/en_US/LC_MESSAGES/AE.po b/holidays/locale/en_US/LC_MESSAGES/AE.po index 3e28ebed2..83007103e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AE.po +++ b/holidays/locale/en_US/LC_MESSAGES/AE.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" -msgstr "%s* (*estimated)" +msgid "(تقدير) %s" +msgstr "%s (estimated)" #. New Year's Day. msgid "رأس السنة الميلادية" diff --git a/holidays/locale/en_US/LC_MESSAGES/AZ.po b/holidays/locale/en_US/LC_MESSAGES/AZ.po index 8c19378b1..e195ea25c 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/AZ.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "%s* (*təxmini)" -msgstr "%s* (*estimated)" +msgid "%s (təxmini)" +msgstr "%s (estimated)" #. %s (Observed). #, c-format diff --git a/holidays/locale/en_US/LC_MESSAGES/BH.po b/holidays/locale/en_US/LC_MESSAGES/BH.po index 98dbb8deb..f16429ea0 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BH.po +++ b/holidays/locale/en_US/LC_MESSAGES/BH.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" -msgstr "%s* (*estimated)" +msgid "(تقدير) %s" +msgstr "%s (estimated)" #. New Year's Day. msgid "رأس السنة الميلادية" diff --git a/holidays/locale/en_US/LC_MESSAGES/BN.po b/holidays/locale/en_US/LC_MESSAGES/BN.po index 6608b4ee4..dcdc3868a 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BN.po +++ b/holidays/locale/en_US/LC_MESSAGES/BN.po @@ -20,8 +20,8 @@ msgid "Jubli Emas Sultan Hassanal Bolkiah" msgstr "Sultan Hassanal Bolkiah's Golden Jubilee" #, c-format -msgid "%s* (*anggaran)" -msgstr "%s* (*estimated)" +msgid "%s (anggaran)" +msgstr "%s (estimated)" #, c-format msgid "%s - Diperhatikan" diff --git a/holidays/locale/en_US/LC_MESSAGES/DJ.po b/holidays/locale/en_US/LC_MESSAGES/DJ.po index c5060d0b9..f08cc4d3f 100644 --- a/holidays/locale/en_US/LC_MESSAGES/DJ.po +++ b/holidays/locale/en_US/LC_MESSAGES/DJ.po @@ -17,8 +17,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "%s* (*estimé)" -msgstr "%s* (*estimated)" +msgid "%s (estimé)" +msgstr "%s (estimated)" #. New Year's Day. msgid "Nouvel an" diff --git a/holidays/locale/en_US/LC_MESSAGES/DZ.po b/holidays/locale/en_US/LC_MESSAGES/DZ.po index b64648f21..3101d9429 100644 --- a/holidays/locale/en_US/LC_MESSAGES/DZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/DZ.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" -msgstr "%s* (*estimated)" +msgid "(تقدير) %s" +msgstr "%s (estimated)" #. New Year's Day. msgid "رأس السنة الميلادية" diff --git a/holidays/locale/en_US/LC_MESSAGES/EG.po b/holidays/locale/en_US/LC_MESSAGES/EG.po index 5ece5ad09..5e0499dbf 100644 --- a/holidays/locale/en_US/LC_MESSAGES/EG.po +++ b/holidays/locale/en_US/LC_MESSAGES/EG.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" -msgstr "%s* (*estimated)" +msgid "(تقدير) %s" +msgstr "%s (estimated)" #. New Year's Day msgid "رأس السنة الميلادية" diff --git a/holidays/locale/en_US/LC_MESSAGES/ET.po b/holidays/locale/en_US/LC_MESSAGES/ET.po index 61f5d5d1c..fd9b70fe8 100644 --- a/holidays/locale/en_US/LC_MESSAGES/ET.po +++ b/holidays/locale/en_US/LC_MESSAGES/ET.po @@ -73,5 +73,5 @@ msgid "መውሊድ" msgstr "Prophet Muhammad's Birthday" #, c-format -msgid "%s* (*ግምት)" -msgstr "%s* (*estimated)" +msgid "%s (ግምት)" +msgstr "%s (estimated)" diff --git a/holidays/locale/en_US/LC_MESSAGES/ID.po b/holidays/locale/en_US/LC_MESSAGES/ID.po index 9ff2e00b6..75490302c 100644 --- a/holidays/locale/en_US/LC_MESSAGES/ID.po +++ b/holidays/locale/en_US/LC_MESSAGES/ID.po @@ -17,8 +17,8 @@ msgstr "" "X-Generator: Poedit 3.2.2\n" #, c-format -msgid "%s* (*perkiraan)" -msgstr "%s* (*estimated)" +msgid "%s (perkiraan)" +msgstr "%s (estimated)" #. Election Day. msgid "Hari Pemilihan" diff --git a/holidays/locale/en_US/LC_MESSAGES/IR.po b/holidays/locale/en_US/LC_MESSAGES/IR.po index c6cb542c6..ce820c257 100644 --- a/holidays/locale/en_US/LC_MESSAGES/IR.po +++ b/holidays/locale/en_US/LC_MESSAGES/IR.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تخمین زده*) *%s" -msgstr "%s* (*estimated)" +msgid "(تخمین زده) %s" +msgstr "%s (estimated)" #. Persian New Year. msgid "نوروز" diff --git a/holidays/locale/en_US/LC_MESSAGES/MA.po b/holidays/locale/en_US/LC_MESSAGES/MA.po index bedd0ac03..b8da36179 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MA.po +++ b/holidays/locale/en_US/LC_MESSAGES/MA.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" -msgstr "%s* (*estimated)" +msgid "(تقدير) %s" +msgstr "%s (estimated)" #. New Year's Day. msgid "رأس السنة الميلادية" diff --git a/holidays/locale/en_US/LC_MESSAGES/SA.po b/holidays/locale/en_US/LC_MESSAGES/SA.po index ed873012c..113b73693 100644 --- a/holidays/locale/en_US/LC_MESSAGES/SA.po +++ b/holidays/locale/en_US/LC_MESSAGES/SA.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" -msgstr "%s* (*estimated)" +msgid "(تقدير) %s" +msgstr "%s (estimated)" #. %s (Observed). #, c-format diff --git a/holidays/locale/en_US/LC_MESSAGES/TL.po b/holidays/locale/en_US/LC_MESSAGES/TL.po index bdaa47b64..ee1bc1211 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TL.po +++ b/holidays/locale/en_US/LC_MESSAGES/TL.po @@ -17,8 +17,8 @@ msgstr "" "X-Generator: Poedit 3.4\n" #, c-format -msgid "%s* (*aproximada)" -msgstr "%s* (*estimated)" +msgid "%s (aproximada)" +msgstr "%s (estimated)" #. New Year's Day. msgid "Dia de Ano Novo" diff --git a/holidays/locale/en_US/LC_MESSAGES/TN.po b/holidays/locale/en_US/LC_MESSAGES/TN.po index df784f678..c2c198621 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TN.po +++ b/holidays/locale/en_US/LC_MESSAGES/TN.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" -msgstr "%s* (*estimated)" +msgid "(تقدير) %s" +msgstr "%s (estimated)" #. New Year's Day. msgid "رأس السنة الميلادية" diff --git a/holidays/locale/en_US/LC_MESSAGES/TR.po b/holidays/locale/en_US/LC_MESSAGES/TR.po index 80d2b6297..54de0e215 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TR.po +++ b/holidays/locale/en_US/LC_MESSAGES/TR.po @@ -17,8 +17,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "%s* (*tahmini)" -msgstr "%s* (*estimated)" +msgid "%s (tahmini)" +msgstr "%s (estimated)" #. New Year's Day. msgid "Yılbaşı" diff --git a/holidays/locale/en_US/LC_MESSAGES/TZ.po b/holidays/locale/en_US/LC_MESSAGES/TZ.po index cd67771cf..b78730701 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/TZ.po @@ -17,8 +17,8 @@ msgstr "" "X-Generator: Poedit 3.4\n" #, c-format -msgid "%s* (*makisio)" -msgstr "%s* (*estimated)" +msgid "%s (makisio)" +msgstr "%s (estimated)" #. John Pombe Magufuli Inauguration Day. msgid "Sikukuu ya Kuapishwa kwa John Pombe Magufuli" diff --git a/holidays/locale/fa/LC_MESSAGES/IR.po b/holidays/locale/fa/LC_MESSAGES/IR.po index b4fb2742e..abc675769 100644 --- a/holidays/locale/fa/LC_MESSAGES/IR.po +++ b/holidays/locale/fa/LC_MESSAGES/IR.po @@ -18,7 +18,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تخمین زده*) *%s" +msgid "(تخمین زده) %s" msgstr "" #. Persian New Year. diff --git a/holidays/locale/fr/LC_MESSAGES/DJ.po b/holidays/locale/fr/LC_MESSAGES/DJ.po index 2df88f9fc..3bdbaed51 100644 --- a/holidays/locale/fr/LC_MESSAGES/DJ.po +++ b/holidays/locale/fr/LC_MESSAGES/DJ.po @@ -17,7 +17,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "%s* (*estimé)" +msgid "%s (estimé)" msgstr "" #. New Year's Day. diff --git a/holidays/locale/fr/LC_MESSAGES/DZ.po b/holidays/locale/fr/LC_MESSAGES/DZ.po index 7a9214eaf..81fb676c1 100644 --- a/holidays/locale/fr/LC_MESSAGES/DZ.po +++ b/holidays/locale/fr/LC_MESSAGES/DZ.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" -msgstr "%s* (*estimé)" +msgid "(تقدير) %s" +msgstr "%s (estimé)" #. New Year's Day. msgid "رأس السنة الميلادية" diff --git a/holidays/locale/fr/LC_MESSAGES/MA.po b/holidays/locale/fr/LC_MESSAGES/MA.po index 5228ef74a..7c519cf97 100644 --- a/holidays/locale/fr/LC_MESSAGES/MA.po +++ b/holidays/locale/fr/LC_MESSAGES/MA.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "(تقدير*) *%s" -msgstr "%s* (*estimé)" +msgid "(تقدير) %s" +msgstr "%s (estimé)" #. New Year's Day. msgid "رأس السنة الميلادية" diff --git a/holidays/locale/id/LC_MESSAGES/ID.po b/holidays/locale/id/LC_MESSAGES/ID.po index d2baf0cff..718404e71 100644 --- a/holidays/locale/id/LC_MESSAGES/ID.po +++ b/holidays/locale/id/LC_MESSAGES/ID.po @@ -17,7 +17,7 @@ msgstr "" "X-Generator: Poedit 3.2.2\n" #, c-format -msgid "%s* (*perkiraan)" +msgid "%s (perkiraan)" msgstr "" #. Election Day. diff --git a/holidays/locale/ms/LC_MESSAGES/BN.po b/holidays/locale/ms/LC_MESSAGES/BN.po index 61aafa5c8..683b8b946 100644 --- a/holidays/locale/ms/LC_MESSAGES/BN.po +++ b/holidays/locale/ms/LC_MESSAGES/BN.po @@ -20,7 +20,7 @@ msgid "Jubli Emas Sultan Hassanal Bolkiah" msgstr "" #, c-format -msgid "%s* (*anggaran)" +msgid "%s (anggaran)" msgstr "" #, c-format diff --git a/holidays/locale/pt_TL/LC_MESSAGES/TL.po b/holidays/locale/pt_TL/LC_MESSAGES/TL.po index d0039ef88..deedc0ba9 100644 --- a/holidays/locale/pt_TL/LC_MESSAGES/TL.po +++ b/holidays/locale/pt_TL/LC_MESSAGES/TL.po @@ -17,7 +17,7 @@ msgstr "" "X-Generator: Poedit 3.4\n" #, c-format -msgid "%s* (*aproximada)" +msgid "%s (aproximada)" msgstr "" #. New Year's Day. diff --git a/holidays/locale/sw/LC_MESSAGES/TZ.po b/holidays/locale/sw/LC_MESSAGES/TZ.po index ee690518b..ad8f796a0 100644 --- a/holidays/locale/sw/LC_MESSAGES/TZ.po +++ b/holidays/locale/sw/LC_MESSAGES/TZ.po @@ -17,7 +17,7 @@ msgstr "" "X-Generator: Poedit 3.4\n" #, c-format -msgid "%s* (*makisio)" +msgid "%s (makisio)" msgstr "" #. John Pombe Magufuli Inauguration Day. diff --git a/holidays/locale/tet/LC_MESSAGES/TL.po b/holidays/locale/tet/LC_MESSAGES/TL.po index 8db1a1740..4370309d8 100644 --- a/holidays/locale/tet/LC_MESSAGES/TL.po +++ b/holidays/locale/tet/LC_MESSAGES/TL.po @@ -17,8 +17,8 @@ msgstr "" "X-Generator: Poedit 3.4\n" #, c-format -msgid "%s* (*aproximada)" -msgstr "%s* (*kalkula)" +msgid "%s (aproximada)" +msgstr "%s (kalkula)" #. New Year's Day. msgid "Dia de Ano Novo" diff --git a/holidays/locale/th/LC_MESSAGES/BN.po b/holidays/locale/th/LC_MESSAGES/BN.po index 9f994b69e..7c2d7a9f8 100644 --- a/holidays/locale/th/LC_MESSAGES/BN.po +++ b/holidays/locale/th/LC_MESSAGES/BN.po @@ -20,8 +20,8 @@ msgid "Jubli Emas Sultan Hassanal Bolkiah" msgstr "พระราชพิธีกาญจนาภิเษกสมเด็จพระราชาธิบดีสุลต่านฮัสซานัล โบลเกียห์" #, c-format -msgid "%s* (*anggaran)" -msgstr "%s* (*โดยประมาณ)" +msgid "%s (anggaran)" +msgstr "%s (โดยประมาณ)" #, c-format msgid "%s - Diperhatikan" diff --git a/holidays/locale/tr/LC_MESSAGES/TR.po b/holidays/locale/tr/LC_MESSAGES/TR.po index 661bea807..3e08790de 100644 --- a/holidays/locale/tr/LC_MESSAGES/TR.po +++ b/holidays/locale/tr/LC_MESSAGES/TR.po @@ -17,7 +17,7 @@ msgstr "" #. Estimated label. #, c-format -msgid "%s* (*tahmini)" +msgid "%s (tahmini)" msgstr "" #. New Year's Day. diff --git a/holidays/locale/uk/LC_MESSAGES/AZ.po b/holidays/locale/uk/LC_MESSAGES/AZ.po index 05ead0f0e..0bf8e9209 100644 --- a/holidays/locale/uk/LC_MESSAGES/AZ.po +++ b/holidays/locale/uk/LC_MESSAGES/AZ.po @@ -18,8 +18,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "%s* (*təxmini)" -msgstr "%s* (*орієнтовно)" +msgid "%s (təxmini)" +msgstr "%s (орієнтовно)" #. %s (Observed). #, c-format diff --git a/holidays/locale/uk/LC_MESSAGES/ID.po b/holidays/locale/uk/LC_MESSAGES/ID.po index 0085f99b4..45adda366 100644 --- a/holidays/locale/uk/LC_MESSAGES/ID.po +++ b/holidays/locale/uk/LC_MESSAGES/ID.po @@ -17,8 +17,8 @@ msgstr "" "X-Generator: Poedit 3.2.2\n" #, c-format -msgid "%s* (*perkiraan)" -msgstr "%s* (*приблизно)" +msgid "%s (perkiraan)" +msgstr "%s (орієнтовно)" #. Election Day. msgid "Hari Pemilihan" diff --git a/holidays/locale/uk/LC_MESSAGES/TR.po b/holidays/locale/uk/LC_MESSAGES/TR.po index b283d24b6..ccf1fd411 100644 --- a/holidays/locale/uk/LC_MESSAGES/TR.po +++ b/holidays/locale/uk/LC_MESSAGES/TR.po @@ -17,8 +17,8 @@ msgstr "" #. Estimated label. #, c-format -msgid "%s* (*tahmini)" -msgstr "%s* (*орієнтовно)" +msgid "%s (tahmini)" +msgstr "%s (орієнтовно)" #. New Year's Day. msgid "Yılbaşı" diff --git a/tests/countries/test_albania.py b/tests/countries/test_albania.py index 8fbcc6e4a..f89edad0b 100644 --- a/tests/countries/test_albania.py +++ b/tests/countries/test_albania.py @@ -185,10 +185,10 @@ def test_2022(self): ("2022-04-24", "Orthodox Easter"), ("2022-04-25", "Orthodox Easter (Observed)"), ("2022-05-01", "May Day"), - ("2022-05-02", "Eid al-Fitr* (*estimated)"), + ("2022-05-02", "Eid al-Fitr (estimated)"), ("2022-05-03", "May Day (Observed)"), - ("2022-07-09", "Eid al-Adha* (*estimated)"), - ("2022-07-11", "Eid al-Adha* (*estimated) (Observed)"), + ("2022-07-09", "Eid al-Adha (estimated)"), + ("2022-07-11", "Eid al-Adha (estimated) (Observed)"), ("2022-09-05", "Mother Teresa Canonization Day"), ("2022-11-28", "Independence Day"), ("2022-11-29", "Liberation Day"), @@ -209,9 +209,9 @@ def test_2023(self): ("2023-04-10", "Catholic Easter (Observed)"), ("2023-04-16", "Orthodox Easter"), ("2023-04-17", "Orthodox Easter (Observed)"), - ("2023-04-21", "Eid al-Fitr* (*estimated)"), + ("2023-04-21", "Eid al-Fitr (estimated)"), ("2023-05-01", "May Day"), - ("2023-06-28", "Eid al-Adha* (*estimated)"), + ("2023-06-28", "Eid al-Adha (estimated)"), ("2023-09-05", "Mother Teresa Canonization Day"), ("2023-11-28", "Independence Day"), ("2023-11-29", "Liberation Day"), diff --git a/tests/countries/test_algeria.py b/tests/countries/test_algeria.py index 1c9479097..f113565ec 100644 --- a/tests/countries/test_algeria.py +++ b/tests/countries/test_algeria.py @@ -123,14 +123,14 @@ def test_l10_default(self): ("2022-01-01", "رأس السنة الميلادية"), ("2022-01-12", "رأس السنة الأمازيغية"), ("2022-05-01", "عيد العمال"), - ("2022-05-02", "(تقدير*) *عيد الفطر"), - ("2022-05-03", "(تقدير*) *عطلة عيد الفطر"), + ("2022-05-02", "(تقدير) عيد الفطر"), + ("2022-05-03", "(تقدير) عطلة عيد الفطر"), ("2022-07-05", "عيد الإستقلال"), - ("2022-07-09", "(تقدير*) *عيد الأضحى"), - ("2022-07-10", "(تقدير*) *عطلة عيد الأضحى"), - ("2022-07-30", "(تقدير*) *رأس السنة الهجرية"), - ("2022-08-08", "(تقدير*) *عاشورة"), - ("2022-10-08", "(تقدير*) *عيد المولد النبوي"), + ("2022-07-09", "(تقدير) عيد الأضحى"), + ("2022-07-10", "(تقدير) عطلة عيد الأضحى"), + ("2022-07-30", "(تقدير) رأس السنة الهجرية"), + ("2022-08-08", "(تقدير) عاشورة"), + ("2022-10-08", "(تقدير) عيد المولد النبوي"), ("2022-11-01", "عيد الثورة"), ) @@ -140,14 +140,14 @@ def test_l10n_en_us(self): ("2022-01-01", "New Year's Day"), ("2022-01-12", "Amazigh New Year"), ("2022-05-01", "Labor Day"), - ("2022-05-02", "Eid al-Fitr* (*estimated)"), - ("2022-05-03", "Eid al-Fitr Holiday* (*estimated)"), + ("2022-05-02", "Eid al-Fitr (estimated)"), + ("2022-05-03", "Eid al-Fitr Holiday (estimated)"), ("2022-07-05", "Independence Day"), - ("2022-07-09", "Eid al-Adha* (*estimated)"), - ("2022-07-10", "Eid al-Adha Holiday* (*estimated)"), - ("2022-07-30", "Islamic New Year* (*estimated)"), - ("2022-08-08", "Ashura* (*estimated)"), - ("2022-10-08", "Prophet's Birthday* (*estimated)"), + ("2022-07-09", "Eid al-Adha (estimated)"), + ("2022-07-10", "Eid al-Adha Holiday (estimated)"), + ("2022-07-30", "Islamic New Year (estimated)"), + ("2022-08-08", "Ashura (estimated)"), + ("2022-10-08", "Prophet's Birthday (estimated)"), ("2022-11-01", "Revolution Day"), ) @@ -157,13 +157,13 @@ def test_l10n_fr(self): ("2022-01-01", "Nouvel an"), ("2022-01-12", "Nouvel an Amazigh"), ("2022-05-01", "Fête du Travail"), - ("2022-05-02", "Fête de la rupture du jeûne* (*estimé)"), - ("2022-05-03", "Congé de fête de la rupture du jeûne* (*estimé)"), + ("2022-05-02", "Fête de la rupture du jeûne (estimé)"), + ("2022-05-03", "Congé de fête de la rupture du jeûne (estimé)"), ("2022-07-05", "Fête de l'indépendance"), - ("2022-07-09", "Fête du sacrifice* (*estimé)"), - ("2022-07-10", "Congé de fête du sacrifice* (*estimé)"), - ("2022-07-30", "Nouvel an musulman* (*estimé)"), - ("2022-08-08", "Achoura* (*estimé)"), - ("2022-10-08", "Anniversaire du prophète* (*estimé)"), + ("2022-07-09", "Fête du sacrifice (estimé)"), + ("2022-07-10", "Congé de fête du sacrifice (estimé)"), + ("2022-07-30", "Nouvel an musulman (estimé)"), + ("2022-08-08", "Achoura (estimé)"), + ("2022-10-08", "Anniversaire du prophète (estimé)"), ("2022-11-01", "Fête de la Révolution"), ) diff --git a/tests/countries/test_bahrain.py b/tests/countries/test_bahrain.py index 1f96943e9..ee31f4730 100644 --- a/tests/countries/test_bahrain.py +++ b/tests/countries/test_bahrain.py @@ -82,17 +82,17 @@ def test_hijri_based(self): def test_l10n_default(self): self.assertLocalizedHolidays( ("2023-01-01", "رأس السنة الميلادية"), - ("2023-04-21", "(تقدير*) *عيد الفطر"), - ("2023-04-22", "(تقدير*) *عطلة عيد الفطر"), - ("2023-04-23", "(تقدير*) *عطلة عيد الفطر"), + ("2023-04-21", "(تقدير) عيد الفطر"), + ("2023-04-22", "(تقدير) عطلة عيد الفطر"), + ("2023-04-23", "(تقدير) عطلة عيد الفطر"), ("2023-05-01", "عيد العمال"), - ("2023-06-28", "(تقدير*) *عيد الأضحى"), - ("2023-06-29", "(تقدير*) *عطلة عيد الأضحى"), - ("2023-06-30", "(تقدير*) *عطلة عيد الأضحى"), - ("2023-07-19", "(تقدير*) *رأس السنة الهجرية"), - ("2023-07-27", "(تقدير*) *ليلة عاشورة"), - ("2023-07-28", "(تقدير*) *عاشورة"), - ("2023-09-27", "(تقدير*) *عيد المولد النبوي"), + ("2023-06-28", "(تقدير) عيد الأضحى"), + ("2023-06-29", "(تقدير) عطلة عيد الأضحى"), + ("2023-06-30", "(تقدير) عطلة عيد الأضحى"), + ("2023-07-19", "(تقدير) رأس السنة الهجرية"), + ("2023-07-27", "(تقدير) ليلة عاشورة"), + ("2023-07-28", "(تقدير) عاشورة"), + ("2023-09-27", "(تقدير) عيد المولد النبوي"), ("2023-12-16", "اليوم الوطني"), ("2023-12-17", "اليوم الوطني"), ) @@ -101,17 +101,17 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2023-01-01", "New Year's Day"), - ("2023-04-21", "Eid al-Fitr* (*estimated)"), - ("2023-04-22", "Eid al-Fitr Holiday* (*estimated)"), - ("2023-04-23", "Eid al-Fitr Holiday* (*estimated)"), + ("2023-04-21", "Eid al-Fitr (estimated)"), + ("2023-04-22", "Eid al-Fitr Holiday (estimated)"), + ("2023-04-23", "Eid al-Fitr Holiday (estimated)"), ("2023-05-01", "Labor Day"), - ("2023-06-28", "Eid al-Adha* (*estimated)"), - ("2023-06-29", "Eid al-Adha Holiday* (*estimated)"), - ("2023-06-30", "Eid al-Adha Holiday* (*estimated)"), - ("2023-07-19", "Islamic New Year* (*estimated)"), - ("2023-07-27", "Ashura Eve* (*estimated)"), - ("2023-07-28", "Ashura* (*estimated)"), - ("2023-09-27", "Prophet's Birthday* (*estimated)"), + ("2023-06-28", "Eid al-Adha (estimated)"), + ("2023-06-29", "Eid al-Adha Holiday (estimated)"), + ("2023-06-30", "Eid al-Adha Holiday (estimated)"), + ("2023-07-19", "Islamic New Year (estimated)"), + ("2023-07-27", "Ashura Eve (estimated)"), + ("2023-07-28", "Ashura (estimated)"), + ("2023-09-27", "Prophet's Birthday (estimated)"), ("2023-12-16", "National Day"), ("2023-12-17", "National Day"), ) diff --git a/tests/countries/test_burundi.py b/tests/countries/test_burundi.py index 51bb13c29..a86922fef 100644 --- a/tests/countries/test_burundi.py +++ b/tests/countries/test_burundi.py @@ -88,7 +88,7 @@ def test_christmas_Day(self): def test_eid_ul_fitr(self): self.assertHolidayName( - "Eid ul Fitr* (*estimated)", + "Eid ul Fitr (estimated)", "2010-09-10", "2011-08-30", "2012-08-19", @@ -107,7 +107,7 @@ def test_eid_ul_fitr(self): def test_eid_al_adha(self): self.assertHolidayName( - "Eid al Adha* (*estimated)", + "Eid al Adha (estimated)", "2010-11-16", "2011-11-06", "2012-10-26", diff --git a/tests/countries/test_djibouti.py b/tests/countries/test_djibouti.py index 999885baf..c8652b3c6 100644 --- a/tests/countries/test_djibouti.py +++ b/tests/countries/test_djibouti.py @@ -27,34 +27,34 @@ def test_no_holidays(self): def test_2019(self): self.assertHolidays( ("2019-01-01", "Nouvel an"), - ("2019-04-03", "Al Isra et Al Mirague* (*estimé)"), + ("2019-04-03", "Al Isra et Al Mirague (estimé)"), ("2019-05-01", "Fête du travail"), - ("2019-06-04", "Eid al-Fitr* (*estimé)"), - ("2019-06-05", "Eid al-Fitr deuxième jour* (*estimé)"), + ("2019-06-04", "Eid al-Fitr (estimé)"), + ("2019-06-05", "Eid al-Fitr deuxième jour (estimé)"), ("2019-06-27", "Fête de l'indépendance"), ("2019-06-28", "Fête de l'indépendance deuxième jour"), - ("2019-08-10", "Arafat* (*estimé)"), - ("2019-08-11", "Eid al-Adha* (*estimé)"), - ("2019-08-12", "Eid al-Adha deuxième jour* (*estimé)"), - ("2019-08-31", "Nouvel an musulman* (*estimé)"), - ("2019-11-09", "Anniversaire du prophète Muhammad* (*estimé)"), + ("2019-08-10", "Arafat (estimé)"), + ("2019-08-11", "Eid al-Adha (estimé)"), + ("2019-08-12", "Eid al-Adha deuxième jour (estimé)"), + ("2019-08-31", "Nouvel an musulman (estimé)"), + ("2019-11-09", "Anniversaire du prophète Muhammad (estimé)"), ("2019-12-25", "Noël"), ) def test_l10n_default(self): self.assertLocalizedHolidays( ("2022-01-01", "Nouvel an"), - ("2022-02-28", "Al Isra et Al Mirague* (*estimé)"), + ("2022-02-28", "Al Isra et Al Mirague (estimé)"), ("2022-05-01", "Fête du travail"), - ("2022-05-02", "Eid al-Fitr* (*estimé)"), - ("2022-05-03", "Eid al-Fitr deuxième jour* (*estimé)"), + ("2022-05-02", "Eid al-Fitr (estimé)"), + ("2022-05-03", "Eid al-Fitr deuxième jour (estimé)"), ("2022-06-27", "Fête de l'indépendance"), ("2022-06-28", "Fête de l'indépendance deuxième jour"), - ("2022-07-08", "Arafat* (*estimé)"), - ("2022-07-09", "Eid al-Adha* (*estimé)"), - ("2022-07-10", "Eid al-Adha deuxième jour* (*estimé)"), - ("2022-07-30", "Nouvel an musulman* (*estimé)"), - ("2022-10-08", "Anniversaire du prophète Muhammad* (*estimé)"), + ("2022-07-08", "Arafat (estimé)"), + ("2022-07-09", "Eid al-Adha (estimé)"), + ("2022-07-10", "Eid al-Adha deuxième jour (estimé)"), + ("2022-07-30", "Nouvel an musulman (estimé)"), + ("2022-10-08", "Anniversaire du prophète Muhammad (estimé)"), ("2022-12-25", "Noël"), ) @@ -62,17 +62,17 @@ def test_l10n_ar(self): self.assertLocalizedHolidays( "ar", ("2022-01-01", "يوم السنة الجديدة"), - ("2022-02-28", "(تقدير*) *الإسراء والمعراج"), + ("2022-02-28", "(تقدير) الإسراء والمعراج"), ("2022-05-01", "عيد العمال"), - ("2022-05-02", "(تقدير*) *عيد الفطر"), - ("2022-05-03", "(تقدير*) *أجازة عيد الفطر"), + ("2022-05-02", "(تقدير) عيد الفطر"), + ("2022-05-03", "(تقدير) أجازة عيد الفطر"), ("2022-06-27", "عيد الإستقلال"), ("2022-06-28", "عطلة عيد الاستقلال"), - ("2022-07-08", "(تقدير*) *يوم عرفة"), - ("2022-07-09", "(تقدير*) *عيد الأضحى"), - ("2022-07-10", "(تقدير*) *أجازة عيد الأضحى"), - ("2022-07-30", "(تقدير*) *رأس السنة الهجرية"), - ("2022-10-08", "(تقدير*) *عيد المولد النبوي"), + ("2022-07-08", "(تقدير) يوم عرفة"), + ("2022-07-09", "(تقدير) عيد الأضحى"), + ("2022-07-10", "(تقدير) أجازة عيد الأضحى"), + ("2022-07-30", "(تقدير) رأس السنة الهجرية"), + ("2022-10-08", "(تقدير) عيد المولد النبوي"), ("2022-12-25", "عيد الميلاد المجيد"), ) @@ -80,16 +80,16 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2022-01-01", "New Year's Day"), - ("2022-02-28", "Isra and Miraj* (*estimated)"), + ("2022-02-28", "Isra and Miraj (estimated)"), ("2022-05-01", "Labor Day"), - ("2022-05-02", "Eid al-Fitr* (*estimated)"), - ("2022-05-03", "Eid al-Fitr Holiday* (*estimated)"), + ("2022-05-02", "Eid al-Fitr (estimated)"), + ("2022-05-03", "Eid al-Fitr Holiday (estimated)"), ("2022-06-27", "Independence Day"), ("2022-06-28", "Independence Day Holiday"), - ("2022-07-08", "Arafat* (*estimated)"), - ("2022-07-09", "Eid al-Adha* (*estimated)"), - ("2022-07-10", "Eid al-Adha Holiday* (*estimated)"), - ("2022-07-30", "Islamic New Year* (*estimated)"), - ("2022-10-08", "Prophet Muhammad's Birthday* (*estimated)"), + ("2022-07-08", "Arafat (estimated)"), + ("2022-07-09", "Eid al-Adha (estimated)"), + ("2022-07-10", "Eid al-Adha Holiday (estimated)"), + ("2022-07-30", "Islamic New Year (estimated)"), + ("2022-10-08", "Prophet Muhammad's Birthday (estimated)"), ("2022-12-25", "Christmas Day"), ) diff --git a/tests/countries/test_egypt.py b/tests/countries/test_egypt.py index 98916d9a7..ac374bfae 100644 --- a/tests/countries/test_egypt.py +++ b/tests/countries/test_egypt.py @@ -82,18 +82,18 @@ def test_l10n_default(self): ("2019-04-28", "عيد الفصح القبطي"), ("2019-04-29", "شم النسيم"), ("2019-05-01", "عيد العمال"), - ("2019-06-04", "(تقدير*) *عيد الفطر"), - ("2019-06-05", "(تقدير*) *عطلة عيد الفطر"), - ("2019-06-06", "(تقدير*) *عطلة عيد الفطر"), + ("2019-06-04", "(تقدير) عيد الفطر"), + ("2019-06-05", "(تقدير) عطلة عيد الفطر"), + ("2019-06-06", "(تقدير) عطلة عيد الفطر"), ("2019-06-30", "عيد ثورة 30 يونيو"), ("2019-07-23", "عيد ثورة 23 يوليو"), - ("2019-08-10", "(تقدير*) *يوم عرفة"), - ("2019-08-11", "(تقدير*) *عيد الأضحى"), - ("2019-08-12", "(تقدير*) *عطلة عيد الأضحى"), - ("2019-08-13", "(تقدير*) *عطلة عيد الأضحى"), - ("2019-08-31", "(تقدير*) *رأس السنة الهجرية"), + ("2019-08-10", "(تقدير) يوم عرفة"), + ("2019-08-11", "(تقدير) عيد الأضحى"), + ("2019-08-12", "(تقدير) عطلة عيد الأضحى"), + ("2019-08-13", "(تقدير) عطلة عيد الأضحى"), + ("2019-08-31", "(تقدير) رأس السنة الهجرية"), ("2019-10-06", "عيد القوات المسلحة"), - ("2019-11-09", "(تقدير*) *عيد المولد النبوي"), + ("2019-11-09", "(تقدير) عيد المولد النبوي"), ) def test_l10n_en_us(self): @@ -106,16 +106,16 @@ def test_l10n_en_us(self): ("2019-04-28", "Coptic Easter - Orthodox Easter"), ("2019-04-29", "Sham El Nessim"), ("2019-05-01", "Labor Day"), - ("2019-06-04", "Eid al-Fitr* (*estimated)"), - ("2019-06-05", "Eid al-Fitr Holiday* (*estimated)"), - ("2019-06-06", "Eid al-Fitr Holiday* (*estimated)"), + ("2019-06-04", "Eid al-Fitr (estimated)"), + ("2019-06-05", "Eid al-Fitr Holiday (estimated)"), + ("2019-06-06", "Eid al-Fitr Holiday (estimated)"), ("2019-06-30", "June 30 Revolution Day"), ("2019-07-23", "July 23 Revolution Day"), - ("2019-08-10", "Arafat Day* (*estimated)"), - ("2019-08-11", "Eid al-Adha* (*estimated)"), - ("2019-08-12", "Eid al-Adha Holiday* (*estimated)"), - ("2019-08-13", "Eid al-Adha Holiday* (*estimated)"), - ("2019-08-31", "Islamic New Year* (*estimated)"), + ("2019-08-10", "Arafat Day (estimated)"), + ("2019-08-11", "Eid al-Adha (estimated)"), + ("2019-08-12", "Eid al-Adha Holiday (estimated)"), + ("2019-08-13", "Eid al-Adha Holiday (estimated)"), + ("2019-08-31", "Islamic New Year (estimated)"), ("2019-10-06", "Armed Forces Day"), - ("2019-11-09", "Prophet's Birthday* (*estimated)"), + ("2019-11-09", "Prophet's Birthday (estimated)"), ) diff --git a/tests/countries/test_ethiopia.py b/tests/countries/test_ethiopia.py index 1537b7e80..85ae6833a 100644 --- a/tests/countries/test_ethiopia.py +++ b/tests/countries/test_ethiopia.py @@ -103,15 +103,15 @@ def test_l10n_default(self): ("2022-04-22", "ስቅለት"), ("2022-04-24", "ፋሲካ"), ("2022-05-01", "የሰራተኞች ቀን"), - ("2022-05-02", "ኢድ አልፈጥር* (*ግምት)"), + ("2022-05-02", "ኢድ አልፈጥር (ግምት)"), ("2022-05-05", "የአርበኞች ቀን"), ("2022-05-28", "ደርግ የወደቀበት ቀን"), - ("2022-07-09", "አረፋ* (*ግምት)"), - ("2022-07-10", "አረፋ* (*ግምት)"), + ("2022-07-09", "አረፋ (ግምት)"), + ("2022-07-10", "አረፋ (ግምት)"), ("2022-09-11", "አዲስ ዓመት እንቁጣጣሽ"), ("2022-09-27", "መስቀል"), - ("2022-10-08", "መውሊድ* (*ግምት)"), - ("2022-10-09", "መውሊድ* (*ግምት)"), + ("2022-10-08", "መውሊድ (ግምት)"), + ("2022-10-09", "መውሊድ (ግምት)"), ) def test_l10n_en_ar(self): @@ -123,15 +123,15 @@ def test_l10n_en_ar(self): ("2022-04-22", "جمعة جيدة"), ("2022-04-24", "عيد الفصح"), ("2022-05-01", "يوم العمال"), - ("2022-05-02", "(تقدير*) *عيد الفطر"), + ("2022-05-02", "(تقدير) عيد الفطر"), ("2022-05-05", "يوم الوطنيين"), ("2022-05-28", "يوم سقوط ديرج"), - ("2022-07-09", "(تقدير*) *عيد الأضحى"), - ("2022-07-10", "(تقدير*) *عيد الأضحى"), + ("2022-07-09", "(تقدير) عيد الأضحى"), + ("2022-07-10", "(تقدير) عيد الأضحى"), ("2022-09-11", "السنة الإثيوبية الجديدة"), ("2022-09-27", "العثور على الصليب الحقيقي"), - ("2022-10-08", "(تقدير*) *عيد المولد النبوي"), - ("2022-10-09", "(تقدير*) *عيد المولد النبوي"), + ("2022-10-08", "(تقدير) عيد المولد النبوي"), + ("2022-10-09", "(تقدير) عيد المولد النبوي"), ) def test_l10n_en_us(self): @@ -143,13 +143,13 @@ def test_l10n_en_us(self): ("2022-04-22", "Orthodox Good Friday"), ("2022-04-24", "Orthodox Easter Sunday"), ("2022-05-01", "Labor Day"), - ("2022-05-02", "Eid al-Fitr* (*estimated)"), + ("2022-05-02", "Eid al-Fitr (estimated)"), ("2022-05-05", "Patriots Day"), ("2022-05-28", "Downfall of Dergue Regime Day"), - ("2022-07-09", "Eid al-Adha* (*estimated)"), - ("2022-07-10", "Eid al-Adha* (*estimated)"), + ("2022-07-09", "Eid al-Adha (estimated)"), + ("2022-07-10", "Eid al-Adha (estimated)"), ("2022-09-11", "Ethiopian New Year's Day"), ("2022-09-27", "Finding of True Cross"), - ("2022-10-08", "Prophet Muhammad's Birthday* (*estimated)"), - ("2022-10-09", "Prophet Muhammad's Birthday* (*estimated)"), + ("2022-10-08", "Prophet Muhammad's Birthday (estimated)"), + ("2022-10-09", "Prophet Muhammad's Birthday (estimated)"), ) diff --git a/tests/countries/test_iran.py b/tests/countries/test_iran.py index d05db322a..e63af1e5e 100644 --- a/tests/countries/test_iran.py +++ b/tests/countries/test_iran.py @@ -27,11 +27,11 @@ def test_no_holidays(self): def test_2022(self): self.assertHolidays( - ("2022-01-06", "(تخمین زده*) *کشته‌شدن فاطمه زهرا"), + ("2022-01-06", "(تخمین زده) کشته‌شدن فاطمه زهرا"), ("2022-02-11", "پیروزی انقلاب ۵۷"), - ("2022-02-14", "(تخمین زده*) *زادروز علی بن ابی‌طالب"), - ("2022-02-28", "(تخمین زده*) *مبعث"), - ("2022-03-18", "(تخمین زده*) *زادروز حجت بن الحسن"), + ("2022-02-14", "(تخمین زده) زادروز علی بن ابی‌طالب"), + ("2022-02-28", "(تخمین زده) مبعث"), + ("2022-03-18", "(تخمین زده) زادروز حجت بن الحسن"), ("2022-03-20", "ملی‌شدن صنعت نفت"), ("2022-03-21", "نوروز"), ("2022-03-22", "نوروز"), @@ -39,30 +39,30 @@ def test_2022(self): ("2022-03-24", "نوروز"), ("2022-04-01", "روز جمهوری اسلامی"), ("2022-04-02", "روز طبیعت"), - ("2022-04-22", "(تخمین زده*) *کشته‌شدن علی بن ابی‌طالب"), - ("2022-05-02", "(تخمین زده*) *عید فطر"), - ("2022-05-03", "(تخمین زده*) *عید فطر"), - ("2022-05-26", "(تخمین زده*) *کشته‌شدن جعفر صادق"), + ("2022-04-22", "(تخمین زده) کشته‌شدن علی بن ابی‌طالب"), + ("2022-05-02", "(تخمین زده) عید فطر"), + ("2022-05-03", "(تخمین زده) عید فطر"), + ("2022-05-26", "(تخمین زده) کشته‌شدن جعفر صادق"), ("2022-06-04", "درگذشت سید روح‌الله خمینی"), ("2022-06-05", "تظاهرات ۱۵ خرداد"), - ("2022-07-09", "(تخمین زده*) *عید قربان"), - ("2022-07-17", "(تخمین زده*) *عید غدیر"), - ("2022-08-07", "(تخمین زده*) *تاسوعا"), - ("2022-08-08", "(تخمین زده*) *کشته‌شدن حسین بن علی، عاشورا"), - ("2022-09-16", "(تخمین زده*) *چهلم حسین بن علی اربعین"), - ("2022-09-24", "(تخمین زده*) *کشته‌شدن حسن مجتبی و درگذشت محمد"), - ("2022-09-26", "(تخمین زده*) *کشته‌شدن علی بن موسی الرضا"), - ("2022-10-04", "(تخمین زده*) *کشته‌شدن حسن عسکری"), - ("2022-10-13", "(تخمین زده*) *زادروز محمد و جعفر صادق"), - ("2022-12-27", "(تخمین زده*) *کشته‌شدن فاطمه زهرا"), + ("2022-07-09", "(تخمین زده) عید قربان"), + ("2022-07-17", "(تخمین زده) عید غدیر"), + ("2022-08-07", "(تخمین زده) تاسوعا"), + ("2022-08-08", "(تخمین زده) کشته‌شدن حسین بن علی، عاشورا"), + ("2022-09-16", "(تخمین زده) چهلم حسین بن علی اربعین"), + ("2022-09-24", "(تخمین زده) کشته‌شدن حسن مجتبی و درگذشت محمد"), + ("2022-09-26", "(تخمین زده) کشته‌شدن علی بن موسی الرضا"), + ("2022-10-04", "(تخمین زده) کشته‌شدن حسن عسکری"), + ("2022-10-13", "(تخمین زده) زادروز محمد و جعفر صادق"), + ("2022-12-27", "(تخمین زده) کشته‌شدن فاطمه زهرا"), ) def test_l10n_default(self): self.assertLocalizedHolidays( - ("2023-02-04", "(تخمین زده*) *زادروز علی بن ابی‌طالب"), + ("2023-02-04", "(تخمین زده) زادروز علی بن ابی‌طالب"), ("2023-02-11", "پیروزی انقلاب ۵۷"), - ("2023-02-18", "(تخمین زده*) *مبعث"), - ("2023-03-07", "(تخمین زده*) *زادروز حجت بن الحسن"), + ("2023-02-18", "(تخمین زده) مبعث"), + ("2023-03-07", "(تخمین زده) زادروز حجت بن الحسن"), ("2023-03-20", "ملی‌شدن صنعت نفت"), ("2023-03-21", "نوروز"), ("2023-03-22", "نوروز"), @@ -70,31 +70,31 @@ def test_l10n_default(self): ("2023-03-24", "نوروز"), ("2023-04-01", "روز جمهوری اسلامی"), ("2023-04-02", "روز طبیعت"), - ("2023-04-12", "(تخمین زده*) *کشته‌شدن علی بن ابی‌طالب"), - ("2023-04-21", "(تخمین زده*) *عید فطر"), - ("2023-04-22", "(تخمین زده*) *عید فطر"), - ("2023-05-15", "(تخمین زده*) *کشته‌شدن جعفر صادق"), + ("2023-04-12", "(تخمین زده) کشته‌شدن علی بن ابی‌طالب"), + ("2023-04-21", "(تخمین زده) عید فطر"), + ("2023-04-22", "(تخمین زده) عید فطر"), + ("2023-05-15", "(تخمین زده) کشته‌شدن جعفر صادق"), ("2023-06-04", "درگذشت سید روح‌الله خمینی"), ("2023-06-05", "تظاهرات ۱۵ خرداد"), - ("2023-06-28", "(تخمین زده*) *عید قربان"), - ("2023-07-06", "(تخمین زده*) *عید غدیر"), - ("2023-07-27", "(تخمین زده*) *تاسوعا"), - ("2023-07-28", "(تخمین زده*) *کشته‌شدن حسین بن علی، عاشورا"), - ("2023-09-05", "(تخمین زده*) *چهلم حسین بن علی اربعین"), - ("2023-09-13", "(تخمین زده*) *کشته‌شدن حسن مجتبی و درگذشت محمد"), - ("2023-09-15", "(تخمین زده*) *کشته‌شدن علی بن موسی الرضا"), - ("2023-09-23", "(تخمین زده*) *کشته‌شدن حسن عسکری"), - ("2023-10-02", "(تخمین زده*) *زادروز محمد و جعفر صادق"), - ("2023-12-16", "(تخمین زده*) *کشته‌شدن فاطمه زهرا"), + ("2023-06-28", "(تخمین زده) عید قربان"), + ("2023-07-06", "(تخمین زده) عید غدیر"), + ("2023-07-27", "(تخمین زده) تاسوعا"), + ("2023-07-28", "(تخمین زده) کشته‌شدن حسین بن علی، عاشورا"), + ("2023-09-05", "(تخمین زده) چهلم حسین بن علی اربعین"), + ("2023-09-13", "(تخمین زده) کشته‌شدن حسن مجتبی و درگذشت محمد"), + ("2023-09-15", "(تخمین زده) کشته‌شدن علی بن موسی الرضا"), + ("2023-09-23", "(تخمین زده) کشته‌شدن حسن عسکری"), + ("2023-10-02", "(تخمین زده) زادروز محمد و جعفر صادق"), + ("2023-12-16", "(تخمین زده) کشته‌شدن فاطمه زهرا"), ) def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", - ("2023-02-04", "Birthday of Ali* (*estimated)"), + ("2023-02-04", "Birthday of Ali (estimated)"), ("2023-02-11", "Islamic Revolution Day"), - ("2023-02-18", "Ascension of Muhammad* (*estimated)"), - ("2023-03-07", "Birthday of Mahdi* (*estimated)"), + ("2023-02-18", "Ascension of Muhammad (estimated)"), + ("2023-03-07", "Birthday of Mahdi (estimated)"), ("2023-03-20", "Iranian Oil Industry Nationalization Day"), ("2023-03-21", "Persian New Year"), ("2023-03-22", "Persian New Year"), @@ -102,20 +102,20 @@ def test_l10n_en_us(self): ("2023-03-24", "Persian New Year"), ("2023-04-01", "Islamic Republic Day"), ("2023-04-02", "Nature's Day"), - ("2023-04-12", "Martyrdom of Ali* (*estimated)"), - ("2023-04-21", "Eid al-Fitr* (*estimated)"), - ("2023-04-22", "Eid al-Fitr* (*estimated)"), - ("2023-05-15", "Martyrdom of Ja'far al-Sadiq* (*estimated)"), + ("2023-04-12", "Martyrdom of Ali (estimated)"), + ("2023-04-21", "Eid al-Fitr (estimated)"), + ("2023-04-22", "Eid al-Fitr (estimated)"), + ("2023-05-15", "Martyrdom of Ja'far al-Sadiq (estimated)"), ("2023-06-04", "Death of Khomeini"), ("2023-06-05", "Khordad National Uprising"), - ("2023-06-28", "Eid al-Adha* (*estimated)"), - ("2023-07-06", "Eid al-Ghadeer* (*estimated)"), - ("2023-07-27", "Tasua* (*estimated)"), - ("2023-07-28", "Ashura* (*estimated)"), - ("2023-09-05", "Arbaeen* (*estimated)"), - ("2023-09-13", "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)"), - ("2023-09-15", "Martyrdom of Ali al-Rida* (*estimated)"), - ("2023-09-23", "Martyrdom of Hasan al-Askari* (*estimated)"), - ("2023-10-02", "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)"), - ("2023-12-16", "Martyrdom of Fatima* (*estimated)"), + ("2023-06-28", "Eid al-Adha (estimated)"), + ("2023-07-06", "Eid al-Ghadeer (estimated)"), + ("2023-07-27", "Tasua (estimated)"), + ("2023-07-28", "Ashura (estimated)"), + ("2023-09-05", "Arbaeen (estimated)"), + ("2023-09-13", "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)"), + ("2023-09-15", "Martyrdom of Ali al-Rida (estimated)"), + ("2023-09-23", "Martyrdom of Hasan al-Askari (estimated)"), + ("2023-10-02", "Birthday of Muhammad and Ja'far al-Sadiq (estimated)"), + ("2023-12-16", "Martyrdom of Fatima (estimated)"), ) diff --git a/tests/countries/test_kyrgyzstan.py b/tests/countries/test_kyrgyzstan.py index 119f76da5..5238a2884 100644 --- a/tests/countries/test_kyrgyzstan.py +++ b/tests/countries/test_kyrgyzstan.py @@ -29,11 +29,11 @@ def test_2022(self): ("2022-03-21", "Nooruz Mairamy"), ("2022-04-07", "Day of the People's April Revolution"), ("2022-05-01", "International Workers' Day"), - ("2022-05-02", "Orozo Ait* (*estimated)"), - ("2022-05-03", "Orozo Ait* (*estimated)"), + ("2022-05-02", "Orozo Ait (estimated)"), + ("2022-05-03", "Orozo Ait (estimated)"), ("2022-05-05", "Constitution Day"), ("2022-05-09", "Victory Day"), - ("2022-07-09", "Kurman Ait* (*estimated)"), + ("2022-07-09", "Kurman Ait (estimated)"), ("2022-08-31", "Independence Day"), ("2022-11-07", "Days of History and Commemoration of Ancestors"), ("2022-11-08", "Days of History and Commemoration of Ancestors"), @@ -48,12 +48,12 @@ def test_2023(self): ("2023-03-08", "International Women's Day"), ("2023-03-21", "Nooruz Mairamy"), ("2023-04-07", "Day of the People's April Revolution"), - ("2023-04-21", "Orozo Ait* (*estimated)"), - ("2023-04-22", "Orozo Ait* (*estimated)"), + ("2023-04-21", "Orozo Ait (estimated)"), + ("2023-04-22", "Orozo Ait (estimated)"), ("2023-05-01", "International Workers' Day"), ("2023-05-05", "Constitution Day"), ("2023-05-09", "Victory Day"), - ("2023-06-28", "Kurman Ait* (*estimated)"), + ("2023-06-28", "Kurman Ait (estimated)"), ("2023-08-31", "Independence Day"), ("2023-11-07", "Days of History and Commemoration of Ancestors"), ("2023-11-08", "Days of History and Commemoration of Ancestors"), diff --git a/tests/countries/test_maldives.py b/tests/countries/test_maldives.py index d1edf2dca..3cb87d898 100644 --- a/tests/countries/test_maldives.py +++ b/tests/countries/test_maldives.py @@ -41,43 +41,43 @@ def test_2018(self): Maldives(years=2018), ("2018-01-01", "New Year's Day"), ("2018-05-01", "Labor Day"), - ("2018-05-16", "Beginning of Ramadan* (*estimated)"), - ("2018-06-15", "Eid al-Fitr* (*estimated)"), - ("2018-06-16", "Eid al-Fitr* (*estimated)"), - ("2018-06-17", "Eid al-Fitr* (*estimated)"), + ("2018-05-16", "Beginning of Ramadan (estimated)"), + ("2018-06-15", "Eid al-Fitr (estimated)"), + ("2018-06-16", "Eid al-Fitr (estimated)"), + ("2018-06-17", "Eid al-Fitr (estimated)"), ("2018-07-26", "Independence Day"), - ("2018-08-20", "Hajj Day* (*estimated)"), - ("2018-08-21", "Eid al-Adha* (*estimated)"), - ("2018-08-22", "Eid al-Adha* (*estimated)"), - ("2018-08-23", "Eid al-Adha* (*estimated)"), - ("2018-08-24", "Eid al-Adha* (*estimated)"), - ("2018-09-11", "Islamic New Year* (*estimated)"), + ("2018-08-20", "Hajj Day (estimated)"), + ("2018-08-21", "Eid al-Adha (estimated)"), + ("2018-08-22", "Eid al-Adha (estimated)"), + ("2018-08-23", "Eid al-Adha (estimated)"), + ("2018-08-24", "Eid al-Adha (estimated)"), + ("2018-09-11", "Islamic New Year (estimated)"), ("2018-11-03", "Victory Day"), - ("2018-11-09", "National Day* (*estimated)"), + ("2018-11-09", "National Day (estimated)"), ("2018-11-11", "Republic Day"), - ("2018-11-20", "Mawlid al-Nabi* (*estimated)"), - ("2018-12-08", "The Day Maldives Embraced Islam* (*estimated)"), + ("2018-11-20", "Mawlid al-Nabi (estimated)"), + ("2018-12-08", "The Day Maldives Embraced Islam (estimated)"), ) def test_2020(self): self.assertHolidays( Maldives(years=2020), ("2020-01-01", "New Year's Day"), - ("2020-04-24", "Beginning of Ramadan* (*estimated)"), + ("2020-04-24", "Beginning of Ramadan (estimated)"), ("2020-05-01", "Labor Day"), - ("2020-05-24", "Eid al-Fitr* (*estimated)"), - ("2020-05-25", "Eid al-Fitr* (*estimated)"), - ("2020-05-26", "Eid al-Fitr* (*estimated)"), + ("2020-05-24", "Eid al-Fitr (estimated)"), + ("2020-05-25", "Eid al-Fitr (estimated)"), + ("2020-05-26", "Eid al-Fitr (estimated)"), ("2020-07-26", "Independence Day"), - ("2020-07-30", "Hajj Day* (*estimated)"), - ("2020-07-31", "Eid al-Adha* (*estimated)"), - ("2020-08-01", "Eid al-Adha* (*estimated)"), - ("2020-08-02", "Eid al-Adha* (*estimated)"), - ("2020-08-03", "Eid al-Adha* (*estimated)"), - ("2020-08-20", "Islamic New Year* (*estimated)"), - ("2020-10-18", "National Day* (*estimated)"), - ("2020-10-29", "Mawlid al-Nabi* (*estimated)"), + ("2020-07-30", "Hajj Day (estimated)"), + ("2020-07-31", "Eid al-Adha (estimated)"), + ("2020-08-01", "Eid al-Adha (estimated)"), + ("2020-08-02", "Eid al-Adha (estimated)"), + ("2020-08-03", "Eid al-Adha (estimated)"), + ("2020-08-20", "Islamic New Year (estimated)"), + ("2020-10-18", "National Day (estimated)"), + ("2020-10-29", "Mawlid al-Nabi (estimated)"), ("2020-11-03", "Victory Day"), ("2020-11-11", "Republic Day"), - ("2020-11-16", "The Day Maldives Embraced Islam* (*estimated)"), + ("2020-11-16", "The Day Maldives Embraced Islam (estimated)"), ) diff --git a/tests/countries/test_morocco.py b/tests/countries/test_morocco.py index a570d787b..1790e8548 100644 --- a/tests/countries/test_morocco.py +++ b/tests/countries/test_morocco.py @@ -96,18 +96,18 @@ def test_l10n_default(self): self.assertLocalizedHolidays( ("2023-01-01", "رأس السنة الميلادية"), ("2023-01-11", "ذكرى تقديم وثيقة الاستقلال"), - ("2023-04-21", "(تقدير*) *عيد الفطر"), - ("2023-04-22", "(تقدير*) *عيد الفطر"), + ("2023-04-21", "(تقدير) عيد الفطر"), + ("2023-04-22", "(تقدير) عيد الفطر"), ("2023-05-01", "عيد العمال"), - ("2023-06-28", "(تقدير*) *عيد الأضحى"), - ("2023-06-29", "(تقدير*) *عيد الأضحى"), - ("2023-07-19", "(تقدير*) *رأس السنة الهجرية"), + ("2023-06-28", "(تقدير) عيد الأضحى"), + ("2023-06-29", "(تقدير) عيد الأضحى"), + ("2023-07-19", "(تقدير) رأس السنة الهجرية"), ("2023-07-30", "عيد العرش"), ("2023-08-14", "ذكرى استرجاع إقليم وادي الذهب"), ("2023-08-20", "ذكرى ثورة الملك و الشعب"), ("2023-08-21", "عيد الشباب"), - ("2023-09-27", "(تقدير*) *عيد المولد النبوي"), - ("2023-09-28", "(تقدير*) *عيد المولد النبوي"), + ("2023-09-27", "(تقدير) عيد المولد النبوي"), + ("2023-09-28", "(تقدير) عيد المولد النبوي"), ("2023-11-06", "ذكرى المسيرة الخضراء"), ("2023-11-18", "عيد الإستقلال"), ) @@ -117,18 +117,18 @@ def test_l10n_en_us(self): "en_US", ("2023-01-01", "New Year's Day"), ("2023-01-11", "Proclamation of Independence Day"), - ("2023-04-21", "Eid al-Fitr* (*estimated)"), - ("2023-04-22", "Eid al-Fitr* (*estimated)"), + ("2023-04-21", "Eid al-Fitr (estimated)"), + ("2023-04-22", "Eid al-Fitr (estimated)"), ("2023-05-01", "Labor Day"), - ("2023-06-28", "Eid al-Adha* (*estimated)"), - ("2023-06-29", "Eid al-Adha* (*estimated)"), - ("2023-07-19", "Islamic New Year* (*estimated)"), + ("2023-06-28", "Eid al-Adha (estimated)"), + ("2023-06-29", "Eid al-Adha (estimated)"), + ("2023-07-19", "Islamic New Year (estimated)"), ("2023-07-30", "Throne Day"), ("2023-08-14", "Oued Ed-Dahab Day"), ("2023-08-20", "Revolution Day"), ("2023-08-21", "Youth Day"), - ("2023-09-27", "Prophet's Birthday* (*estimated)"), - ("2023-09-28", "Prophet's Birthday* (*estimated)"), + ("2023-09-27", "Prophet's Birthday (estimated)"), + ("2023-09-28", "Prophet's Birthday (estimated)"), ("2023-11-06", "Green March"), ("2023-11-18", "Independence Day"), ) @@ -138,18 +138,18 @@ def test_l10n_fr(self): "fr", ("2023-01-01", "Nouvel an"), ("2023-01-11", "Manifeste de l'indépendance"), - ("2023-04-21", "Fête de la rupture du jeûne* (*estimé)"), - ("2023-04-22", "Fête de la rupture du jeûne* (*estimé)"), + ("2023-04-21", "Fête de la rupture du jeûne (estimé)"), + ("2023-04-22", "Fête de la rupture du jeûne (estimé)"), ("2023-05-01", "Fête du Travail"), - ("2023-06-28", "Fête du sacrifice* (*estimé)"), - ("2023-06-29", "Fête du sacrifice* (*estimé)"), - ("2023-07-19", "Nouvel an musulman* (*estimé)"), + ("2023-06-28", "Fête du sacrifice (estimé)"), + ("2023-06-29", "Fête du sacrifice (estimé)"), + ("2023-07-19", "Nouvel an musulman (estimé)"), ("2023-07-30", "Fête du Trône"), ("2023-08-14", "Allégeance Oued Eddahab"), ("2023-08-20", "La révolution du roi et du peuple"), ("2023-08-21", "Fête de la Jeunesse"), - ("2023-09-27", "Anniversaire du prophète* (*estimé)"), - ("2023-09-28", "Anniversaire du prophète* (*estimé)"), + ("2023-09-27", "Anniversaire du prophète (estimé)"), + ("2023-09-28", "Anniversaire du prophète (estimé)"), ("2023-11-06", "La marche verte"), ("2023-11-18", "Fête de l'indépendance"), ) diff --git a/tests/countries/test_nigeria.py b/tests/countries/test_nigeria.py index bd28111bd..573ddac18 100644 --- a/tests/countries/test_nigeria.py +++ b/tests/countries/test_nigeria.py @@ -75,7 +75,7 @@ def test_easter_based(self): def test_hijri_based(self): self.assertHolidayName( - "Eid-el-Fitr* (*estimated)", + "Eid-el-Fitr (estimated)", "2018-06-15", "2019-06-04", "2020-05-24", @@ -84,7 +84,7 @@ def test_hijri_based(self): "2023-04-21", ) self.assertHolidayName( - "Eid-el-Fitr Holiday* (*estimated)", + "Eid-el-Fitr Holiday (estimated)", "2018-06-16", "2019-06-05", "2020-05-25", @@ -93,7 +93,7 @@ def test_hijri_based(self): "2023-04-22", ) self.assertHolidayName( - "Eid-el-Kabir* (*estimated)", + "Eid-el-Kabir (estimated)", "2006-01-10", "2006-12-31", "2018-08-21", @@ -104,7 +104,7 @@ def test_hijri_based(self): "2023-06-28", ) self.assertHolidayName( - "Eid-el-Kabir Holiday* (*estimated)", + "Eid-el-Kabir Holiday (estimated)", "2006-01-11", "2007-01-01", "2018-08-22", @@ -115,7 +115,7 @@ def test_hijri_based(self): "2023-06-29", ) self.assertHolidayName( - "Eid-el-Mawlid* (*estimated)", + "Eid-el-Mawlid (estimated)", "2018-11-20", "2019-11-09", "2020-10-29", diff --git a/tests/countries/test_north_macedonia.py b/tests/countries/test_north_macedonia.py index 3d41b5971..d96c2b94e 100644 --- a/tests/countries/test_north_macedonia.py +++ b/tests/countries/test_north_macedonia.py @@ -29,7 +29,7 @@ def test_2019(self): ("2019-04-29", "Easter Monday (Orthodox)"), ("2019-05-01", "Labour Day"), ("2019-05-24", "Saints Cyril and Methodius Day"), - ("2019-06-04", "Eid al-Fitr* (*estimated)"), + ("2019-06-04", "Eid al-Fitr (estimated)"), ("2019-08-02", "Republic Day"), ("2019-09-08", "Independence Day"), ("2019-10-11", "Day of Macedonian Uprising in 1941"), diff --git a/tests/countries/test_pakistan.py b/tests/countries/test_pakistan.py index c3173d209..153262bb7 100644 --- a/tests/countries/test_pakistan.py +++ b/tests/countries/test_pakistan.py @@ -147,18 +147,18 @@ def test_2002(self): self.assertHolidays( Pakistan(years=2002), ("2002-02-05", "Kashmir Solidarity Day"), - ("2002-02-22", "Eid-ul-Adha* (*estimated)"), - ("2002-02-23", "Eid-ul-Adha* (*estimated)"), - ("2002-02-24", "Eid-ul-Adha* (*estimated)"), - ("2002-03-23", "Ashura* (*estimated); Pakistan Day"), - ("2002-03-24", "Ashura* (*estimated)"), + ("2002-02-22", "Eid-ul-Adha (estimated)"), + ("2002-02-23", "Eid-ul-Adha (estimated)"), + ("2002-02-24", "Eid-ul-Adha (estimated)"), + ("2002-03-23", "Ashura (estimated); Pakistan Day"), + ("2002-03-24", "Ashura (estimated)"), ("2002-05-01", "Labour Day"), - ("2002-05-24", "Eid Milad-un-Nabi* (*estimated)"), + ("2002-05-24", "Eid Milad-un-Nabi (estimated)"), ("2002-08-14", "Independence Day"), ("2002-11-09", "Iqbal Day"), - ("2002-12-05", "Eid-ul-Fitr* (*estimated)"), - ("2002-12-06", "Eid-ul-Fitr* (*estimated)"), - ("2002-12-07", "Eid-ul-Fitr* (*estimated)"), + ("2002-12-05", "Eid-ul-Fitr (estimated)"), + ("2002-12-06", "Eid-ul-Fitr (estimated)"), + ("2002-12-07", "Eid-ul-Fitr (estimated)"), ("2002-12-25", "Quaid-e-Azam Day"), ) diff --git a/tests/countries/test_philippines.py b/tests/countries/test_philippines.py index e91374777..344fcd472 100644 --- a/tests/countries/test_philippines.py +++ b/tests/countries/test_philippines.py @@ -31,9 +31,9 @@ def test_2022(self): ("2022-04-15", "Good Friday"), ("2022-04-16", "Black Saturday"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Eid'l Fitr* (*estimated)"), + ("2022-05-02", "Eid'l Fitr (estimated)"), ("2022-06-12", "Independence Day"), - ("2022-07-09", "Eid'l Adha* (*estimated)"), + ("2022-07-09", "Eid'l Adha (estimated)"), ("2022-08-21", "Ninoy Aquino Day"), ("2022-08-29", "National Heroes Day"), ("2022-11-01", "All Saints' Day"), diff --git a/tests/countries/test_saudi_arabia.py b/tests/countries/test_saudi_arabia.py index 6d98f965d..abd2bf6e4 100644 --- a/tests/countries/test_saudi_arabia.py +++ b/tests/countries/test_saudi_arabia.py @@ -170,17 +170,17 @@ def test_hijri_based_with_two_holidays_in_one_year(self): def test_l10n_default(self): self.assertLocalizedHolidays( ("2023-02-22", "يوم التأسيسي"), - ("2023-04-21", "(تقدير*) *عطلة عيد الفطر"), - ("2023-04-22", "(تقدير*) *عطلة عيد الفطر"), - ("2023-04-23", "(تقدير*) *عطلة عيد الفطر"), - ("2023-04-24", "(تقدير*) *عطلة عيد الفطر"), - ("2023-04-25", "(ملاحظة) (تقدير*) *عطلة عيد الفطر"), - ("2023-04-26", "(ملاحظة) (تقدير*) *عطلة عيد الفطر"), - ("2023-06-27", "(تقدير*) *يوم عرفة"), - ("2023-06-28", "(تقدير*) *عطلة عيد الأضحى"), - ("2023-06-29", "(تقدير*) *عطلة عيد الأضحى"), - ("2023-06-30", "(تقدير*) *عطلة عيد الأضحى"), - ("2023-07-02", "(ملاحظة) (تقدير*) *عطلة عيد الأضحى"), + ("2023-04-21", "(تقدير) عطلة عيد الفطر"), + ("2023-04-22", "(تقدير) عطلة عيد الفطر"), + ("2023-04-23", "(تقدير) عطلة عيد الفطر"), + ("2023-04-24", "(تقدير) عطلة عيد الفطر"), + ("2023-04-25", "(ملاحظة) (تقدير) عطلة عيد الفطر"), + ("2023-04-26", "(ملاحظة) (تقدير) عطلة عيد الفطر"), + ("2023-06-27", "(تقدير) يوم عرفة"), + ("2023-06-28", "(تقدير) عطلة عيد الأضحى"), + ("2023-06-29", "(تقدير) عطلة عيد الأضحى"), + ("2023-06-30", "(تقدير) عطلة عيد الأضحى"), + ("2023-07-02", "(ملاحظة) (تقدير) عطلة عيد الأضحى"), ("2023-09-23", "اليوم الوطني"), ("2023-09-24", "(ملاحظة) اليوم الوطني"), ) @@ -189,17 +189,17 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2023-02-22", "Founding Day Holiday"), - ("2023-04-21", "Eid al-Fitr Holiday* (*estimated)"), - ("2023-04-22", "Eid al-Fitr Holiday* (*estimated)"), - ("2023-04-23", "Eid al-Fitr Holiday* (*estimated)"), - ("2023-04-24", "Eid al-Fitr Holiday* (*estimated)"), - ("2023-04-25", "Eid al-Fitr Holiday* (*estimated) (observed)"), - ("2023-04-26", "Eid al-Fitr Holiday* (*estimated) (observed)"), - ("2023-06-27", "Arafat Day* (*estimated)"), - ("2023-06-28", "Eid al-Adha Holiday* (*estimated)"), - ("2023-06-29", "Eid al-Adha Holiday* (*estimated)"), - ("2023-06-30", "Eid al-Adha Holiday* (*estimated)"), - ("2023-07-02", "Eid al-Adha Holiday* (*estimated) (observed)"), + ("2023-04-21", "Eid al-Fitr Holiday (estimated)"), + ("2023-04-22", "Eid al-Fitr Holiday (estimated)"), + ("2023-04-23", "Eid al-Fitr Holiday (estimated)"), + ("2023-04-24", "Eid al-Fitr Holiday (estimated)"), + ("2023-04-25", "Eid al-Fitr Holiday (estimated) (observed)"), + ("2023-04-26", "Eid al-Fitr Holiday (estimated) (observed)"), + ("2023-06-27", "Arafat Day (estimated)"), + ("2023-06-28", "Eid al-Adha Holiday (estimated)"), + ("2023-06-29", "Eid al-Adha Holiday (estimated)"), + ("2023-06-30", "Eid al-Adha Holiday (estimated)"), + ("2023-07-02", "Eid al-Adha Holiday (estimated) (observed)"), ("2023-09-23", "National Day Holiday"), ("2023-09-24", "National Day Holiday (observed)"), ) diff --git a/tests/countries/test_tunisia.py b/tests/countries/test_tunisia.py index 43ff488ae..208742151 100644 --- a/tests/countries/test_tunisia.py +++ b/tests/countries/test_tunisia.py @@ -69,18 +69,18 @@ def test_l10n_default(self): ("2023-01-14", "عيد الثورة والشباب"), ("2023-03-20", "عيد الإستقلال"), ("2023-04-09", "عيد الشهداء"), - ("2023-04-21", "(تقدير*) *عيد الفطر"), - ("2023-04-22", "(تقدير*) *عطلة عيد الفطر"), - ("2023-04-23", "(تقدير*) *عطلة عيد الفطر"), + ("2023-04-21", "(تقدير) عيد الفطر"), + ("2023-04-22", "(تقدير) عطلة عيد الفطر"), + ("2023-04-23", "(تقدير) عطلة عيد الفطر"), ("2023-05-01", "عيد العمال"), - ("2023-06-27", "(تقدير*) *يوم عرفة"), - ("2023-06-28", "(تقدير*) *عيد الأضحى"), - ("2023-06-29", "(تقدير*) *عطلة عيد الأضحى"), - ("2023-06-30", "(تقدير*) *عطلة عيد الأضحى"), - ("2023-07-19", "(تقدير*) *رأس السنة الهجرية"), + ("2023-06-27", "(تقدير) يوم عرفة"), + ("2023-06-28", "(تقدير) عيد الأضحى"), + ("2023-06-29", "(تقدير) عطلة عيد الأضحى"), + ("2023-06-30", "(تقدير) عطلة عيد الأضحى"), + ("2023-07-19", "(تقدير) رأس السنة الهجرية"), ("2023-07-25", "عيد الجمهورية"), ("2023-08-13", "عيد المرأة"), - ("2023-09-27", "(تقدير*) *عيد المولد النبوي"), + ("2023-09-27", "(تقدير) عيد المولد النبوي"), ("2023-10-15", "عيد الجلاء"), ) @@ -91,17 +91,17 @@ def test_l10n_en_us(self): ("2023-01-14", "Revolution and Youth Day"), ("2023-03-20", "Independence Day"), ("2023-04-09", "Martyrs' Day"), - ("2023-04-21", "Eid al-Fitr* (*estimated)"), - ("2023-04-22", "Eid al-Fitr Holiday* (*estimated)"), - ("2023-04-23", "Eid al-Fitr Holiday* (*estimated)"), + ("2023-04-21", "Eid al-Fitr (estimated)"), + ("2023-04-22", "Eid al-Fitr Holiday (estimated)"), + ("2023-04-23", "Eid al-Fitr Holiday (estimated)"), ("2023-05-01", "Labor Day"), - ("2023-06-27", "Arafat Day* (*estimated)"), - ("2023-06-28", "Eid al-Adha* (*estimated)"), - ("2023-06-29", "Eid al-Adha Holiday* (*estimated)"), - ("2023-06-30", "Eid al-Adha Holiday* (*estimated)"), - ("2023-07-19", "Islamic New Year* (*estimated)"), + ("2023-06-27", "Arafat Day (estimated)"), + ("2023-06-28", "Eid al-Adha (estimated)"), + ("2023-06-29", "Eid al-Adha Holiday (estimated)"), + ("2023-06-30", "Eid al-Adha Holiday (estimated)"), + ("2023-07-19", "Islamic New Year (estimated)"), ("2023-07-25", "Republic Day"), ("2023-08-13", "Women's Day"), - ("2023-09-27", "Prophet's Birthday* (*estimated)"), + ("2023-09-27", "Prophet's Birthday (estimated)"), ("2023-10-15", "Evacuation Day"), ) diff --git a/tests/countries/test_uzbekistan.py b/tests/countries/test_uzbekistan.py index 41cda4ce4..5996f034c 100644 --- a/tests/countries/test_uzbekistan.py +++ b/tests/countries/test_uzbekistan.py @@ -27,9 +27,9 @@ def test2020(self): ("2022-01-01", "New Year"), ("2022-03-08", "Women's Day"), ("2022-03-21", "Nauryz"), - ("2022-05-02", "Ramadan Khait* (*estimated)"), + ("2022-05-02", "Ramadan Khait (estimated)"), ("2022-05-09", "Memorial Day"), - ("2022-07-09", "Kurban Khait* (*estimated)"), + ("2022-07-09", "Kurban Khait (estimated)"), ("2022-09-01", "Independence Day"), ("2022-10-01", "Teacher's Day"), ("2022-12-08", "Constitution Day"), From 9127685bc4bcb8dd9935de6e13ca3e17c7b42dd5 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Fri, 5 Jan 2024 00:51:37 +0200 Subject: [PATCH 07/23] Update Portugal holidays: add uk localization (#1616) --- README.rst | 2 +- holidays/countries/portugal.py | 54 +- holidays/locale/en_US/LC_MESSAGES/PT.po | 59 +- holidays/locale/pt_PT/LC_MESSAGES/PT.po | 39 +- holidays/locale/uk/LC_MESSAGES/PT.po | 173 ++++++ snapshots/countries/PT_01.json | 552 ++++++++--------- snapshots/countries/PT_02.json | 752 +++++++++++------------ snapshots/countries/PT_03.json | 552 ++++++++--------- snapshots/countries/PT_04.json | 552 ++++++++--------- snapshots/countries/PT_05.json | 552 ++++++++--------- snapshots/countries/PT_06.json | 552 ++++++++--------- snapshots/countries/PT_07.json | 552 ++++++++--------- snapshots/countries/PT_08.json | 754 ++++++++++++------------ snapshots/countries/PT_09.json | 754 ++++++++++++------------ snapshots/countries/PT_10.json | 754 ++++++++++++------------ snapshots/countries/PT_11.json | 552 ++++++++--------- snapshots/countries/PT_12.json | 754 ++++++++++++------------ snapshots/countries/PT_13.json | 552 ++++++++--------- snapshots/countries/PT_14.json | 552 ++++++++--------- snapshots/countries/PT_15.json | 552 ++++++++--------- snapshots/countries/PT_16.json | 552 ++++++++--------- snapshots/countries/PT_17.json | 552 ++++++++--------- snapshots/countries/PT_18.json | 552 ++++++++--------- snapshots/countries/PT_20.json | 552 ++++++++--------- snapshots/countries/PT_30.json | 552 ++++++++--------- snapshots/countries/PT_COMMON.json | 552 ++++++++--------- tests/countries/test_portugal.py | 29 +- 27 files changed, 6637 insertions(+), 6319 deletions(-) create mode 100644 holidays/locale/uk/LC_MESSAGES/PT.po diff --git a/README.rst b/README.rst index 52c7e29bf..113ff3f2d 100644 --- a/README.rst +++ b/README.rst @@ -701,7 +701,7 @@ All other default values are highlighted with bold: * - Portugal - PT - Districts: 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 30 - - en_US, **pt_PT** + - en_US, **pt_PT**, uk - OPTIONAL * - Puerto Rico - PR diff --git a/holidays/countries/portugal.py b/holidays/countries/portugal.py index 379b9689f..dc856c728 100644 --- a/holidays/countries/portugal.py +++ b/holidays/countries/portugal.py @@ -64,7 +64,7 @@ class Portugal(HolidayBase, ChristianHolidays, InternationalHolidays): "30", ) _deprecated_subdivisions = ("Ext",) - supported_languages = ("en_US", "pt_PT") + supported_languages = ("en_US", "pt_PT", "uk") def __init__(self, *args, **kwargs) -> None: ChristianHolidays.__init__(self) @@ -72,6 +72,7 @@ def __init__(self, *args, **kwargs) -> None: super().__init__(*args, **kwargs) def _populate_public_holidays(self): + # New Year's Day. self._add_new_years_day(tr("Ano Novo")) # Carnival is no longer a holiday, but some companies let workers off. @@ -85,29 +86,47 @@ def _populate_public_holidays(self): # Revoked holidays in 2013–2015. if self._year <= 2012 or self._year >= 2016: + # Corpus Christi. self._add_corpus_christi_day(tr("Corpo de Deus")) + if self._year >= 1910: + # Republic Day. self._add_holiday_oct_5(tr("Implantação da República")) + + # All Saints' Day. self._add_all_saints_day(tr("Dia de Todos os Santos")) + if self._year >= 1823: + # Restoration of Independence Day. self._add_holiday_dec_1(tr("Restauração da Independência")) if self._year >= 1974: + # Freedom Day. self._add_holiday_apr_25(tr("Dia da Liberdade")) + + # Labor Day. self._add_labor_day(tr("Dia do Trabalhador")) if self._year >= 1911: if 1933 <= self._year <= 1973: + # Day of Camões, Portugal, and the Portuguese Race. self._add_holiday_jun_10(tr("Dia de Camões, de Portugal e da Raça")) elif self._year >= 1978: self._add_holiday_jun_10( + # Day of Portugal, Camões, and the Portuguese Communities. tr("Dia de Portugal, de Camões e das Comunidades Portuguesas") ) else: + # Portugal Day. self._add_holiday_jun_10(tr("Dia de Portugal")) + # Assumption Day. self._add_assumption_of_mary_day(tr("Assunção de Nossa Senhora")) + + # Immaculate Conception. self._add_immaculate_conception_day(tr("Imaculada Conceição")) + + # Christmas Day. self._add_christmas_day(tr("Dia de Natal")) def _populate_optional_holidays(self): @@ -125,10 +144,19 @@ def _populate_optional_holidays(self): # - get Holidays that occur on Tuesday and add Monday (-1 day) # - get Holidays that occur on Thursday and add Friday (+1 day) + # Carnival. self._add_carnival_monday(tr("Carnaval")) + + # St. Anthony's Day. self._add_holiday_jun_13(tr("Dia de Santo António")) + + # Christmas Eve. self._add_christmas_eve(tr("Véspera de Natal")) + + # Boxing Day. self._add_christmas_day_two(tr("26 de Dezembro")) + + # New Year's Eve. self._add_new_years_eve(tr("Véspera de Ano Novo")) def _populate_subdiv_holidays(self): @@ -139,74 +167,94 @@ def _populate_subdiv_holidays(self): self._populate_optional_holidays() def _populate_subdiv_01_public_holidays(self): + # St. Joanna's Day. self._add_holiday_may_12(tr("Dia de Santa Joana")) def _populate_subdiv_02_public_holidays(self): + # Ascension Day. self._add_ascension_thursday(tr("Quinta-feira da Ascensão")) def _populate_subdiv_03_public_holidays(self): + # St. John's Day. self._add_saint_johns_day(tr("Dia de São João")) def _populate_subdiv_04_public_holidays(self): + # Feast of Our Lady of Graces. self._add_holiday_aug_22(tr("Dia de Nossa Senhora das Graças")) def _populate_subdiv_05_public_holidays(self): self._add_holiday( - tr("Dia de Nossa Senhora de Mércoles"), self._easter_sunday + td(days=+16) + # Feast of Our Lady of Mércoles. + tr("Dia de Nossa Senhora de Mércoles"), + self._easter_sunday + td(days=+16), ) def _populate_subdiv_06_public_holidays(self): + # St. Elizabeth's Day. self._add_holiday_jul_4(tr("Dia de Santa Isabel")) def _populate_subdiv_07_public_holidays(self): - self._add_holiday_jun_29(tr("Dia de São Pedro")) + # St. Peter's Day. + self._add_saints_peter_and_paul_day(tr("Dia de São Pedro")) def _populate_subdiv_08_public_holidays(self): + # Municipal Holiday of Faro. self._add_holiday_sep_7(tr("Dia do Município de Faro")) def _populate_subdiv_09_public_holidays(self): + # Municipal Holiday of Guarda. self._add_holiday_nov_27(tr("Dia do Município da Guarda")) def _populate_subdiv_10_public_holidays(self): + # Municipal Holiday of Leiria. self._add_holiday_may_22(tr("Dia do Município de Leiria")) def _populate_subdiv_11_public_holidays(self): self._add_holiday_jun_13(tr("Dia de Santo António")) def _populate_subdiv_12_public_holidays(self): + # Municipal Holiday of Portalegre. self._add_holiday_may_23(tr("Dia do Município de Portalegre")) def _populate_subdiv_13_public_holidays(self): self._add_saint_johns_day(tr("Dia de São João")) def _populate_subdiv_14_public_holidays(self): + # St. Joseph's Day. self._add_saint_josephs_day(tr("Dia de São José")) def _populate_subdiv_15_public_holidays(self): + # Bocage Day. self._add_holiday_sep_15(tr("Dia de Bocage")) def _populate_subdiv_16_public_holidays(self): + # Feast of Our Lady of Sorrows. self._add_holiday_aug_20(tr("Dia de Nossa Senhora da Agonia")) def _populate_subdiv_17_public_holidays(self): self._add_holiday_jun_13(tr("Dia de Santo António")) def _populate_subdiv_18_public_holidays(self): + # St. Matthew's Day. self._add_holiday_sep_21(tr("Dia de São Mateus")) def _populate_subdiv_20_public_holidays(self): if self._year >= 1981: + # Day of the Autonomous Region of the Azores. self._add_whit_monday(tr("Dia da Região Autónoma dos Açores")) def _populate_subdiv_30_public_holidays(self): if self._year >= 1979: self._add_holiday_jul_1( + # Day of the Autonomous Region of Madeira and the Madeiran Communities. tr("Dia da Região Autónoma da Madeira e das Comunidades Madeirenses") if self._year >= 1989 + # Day of the Autonomous Region of Madeira. else tr("Dia da Região Autónoma da Madeira") ) if self._year >= 2002: + # 1st Octave. self._add_christmas_day_two(tr("Primeira Oitava")) diff --git a/holidays/locale/en_US/LC_MESSAGES/PT.po b/holidays/locale/en_US/LC_MESSAGES/PT.po index aabf36915..ed1dca152 100644 --- a/holidays/locale/en_US/LC_MESSAGES/PT.po +++ b/holidays/locale/en_US/LC_MESSAGES/PT.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: Python Holidays 0.20\n" "POT-Creation-Date: 2023-03-07 19:38+0700\n" -"PO-Revision-Date: 2023-02-20 19:10+0200\n" -"Last-Translator: PPsyrius \n" +"PO-Revision-Date: 2023-12-30 19:28+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" @@ -14,8 +14,9 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: pygettext.py 1.5\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.4\n" +#. New Year's Day. msgid "Ano Novo" msgstr "New Year's Day" @@ -27,110 +28,146 @@ msgstr "Good Friday" msgid "Páscoa" msgstr "Easter Sunday" +#. Corpus Christi. msgid "Corpo de Deus" msgstr "Corpus Christi" +#. Republic Day. msgid "Implantação da República" msgstr "Republic Day" +#. All Saints' Day. msgid "Dia de Todos os Santos" -msgstr "All Saints Day" +msgstr "All Saints' Day" +#. Restoration of Independence Day. msgid "Restauração da Independência" msgstr "Restoration of Independence Day" +#. Freedom Day. msgid "Dia da Liberdade" msgstr "Freedom Day" +#. Labor Day. msgid "Dia do Trabalhador" -msgstr "Labour Day" +msgstr "Labor Day" +#. Day of Camões, Portugal, and the Portuguese Race. msgid "Dia de Camões, de Portugal e da Raça" msgstr "Day of Camões, Portugal, and the Portuguese Race" +#. Day of Portugal, Camões, and the Portuguese Communities. msgid "Dia de Portugal, de Camões e das Comunidades Portuguesas" msgstr "Day of Portugal, Camões, and the Portuguese Communities" +#. Portugal Day. msgid "Dia de Portugal" msgstr "Portugal Day" +#. Assumption Day. msgid "Assunção de Nossa Senhora" msgstr "Assumption Day" +#. Immaculate Conception. msgid "Imaculada Conceição" msgstr "Immaculate Conception" +#. Christmas Day. msgid "Dia de Natal" -msgstr "Christmas" +msgstr "Christmas Day" +#. Carnival. msgid "Carnaval" msgstr "Carnival" +#. Christmas Eve. msgid "Véspera de Natal" msgstr "Christmas Eve" +#. Boxing Day. msgid "26 de Dezembro" msgstr "Boxing Day" +#. New Year's Eve. msgid "Véspera de Ano Novo" msgstr "New Year's Eve" +#. St. Anthony's Day. msgid "Dia de Santo António" msgstr "St. Anthony's Day" +#. St. Joanna's Day. msgid "Dia de Santa Joana" msgstr "St. Joanna's Day" +#. Ascension Day. msgid "Quinta-feira da Ascensão" -msgstr "Ascension of Jesus" +msgstr "Ascension Day" +#. St. John's Day. msgid "Dia de São João" msgstr "St. John's Day" +#. Feast of Our Lady of Graces. msgid "Dia de Nossa Senhora das Graças" msgstr "Feast of Our Lady of Graces" +#. Feast of Our Lady of Mércoles. msgid "Dia de Nossa Senhora de Mércoles" msgstr "Feast of Our Lady of Mércoles" +#. St. Elizabeth's Day. msgid "Dia de Santa Isabel" msgstr "St. Elizabeth's Day" +#. St. Peter's Day. msgid "Dia de São Pedro" msgstr "St. Peter's Day" +#. Municipal Holiday of Faro. msgid "Dia do Município de Faro" -msgstr "Municipal Holiday (Faro)" +msgstr "Municipal Holiday of Faro" +#. Municipal Holiday of Guarda. msgid "Dia do Município da Guarda" -msgstr "Municipal Holiday (Guarda)" +msgstr "Municipal Holiday of Guarda" +#. Municipal Holiday of Leiria. msgid "Dia do Município de Leiria" -msgstr "Municipal Holiday (Leiria)" +msgstr "Municipal Holiday of Leiria" +#. Municipal Holiday of Portalegre. msgid "Dia do Município de Portalegre" -msgstr "Municipal Holiday (Portalegre)" +msgstr "Municipal Holiday of Portalegre" +#. St. Joseph's Day. msgid "Dia de São José" msgstr "St. Joseph's Day" +#. Bocage Day. msgid "Dia de Bocage" msgstr "Bocage Day" +#. Feast of Our Lady of Sorrows. msgid "Dia de Nossa Senhora da Agonia" msgstr "Feast of Our Lady of Sorrows" +#. St. Matthew's Day. msgid "Dia de São Mateus" msgstr "St. Matthew's Day" +#. Day of the Autonomous Region of the Azores. msgid "Dia da Região Autónoma dos Açores" msgstr "Day of the Autonomous Region of the Azores" +#. Day of the Autonomous Region of Madeira. msgid "Dia da Região Autónoma da Madeira" msgstr "Day of the Autonomous Region of Madeira" +#. Day of the Autonomous Region of Madeira and the Madeiran Communities. msgid "Dia da Região Autónoma da Madeira e das Comunidades Madeirenses" msgstr "Day of the Autonomous Region of Madeira and the Madeiran Communities" +#. 1st Octave. msgid "Primeira Oitava" msgstr "1st Octave" diff --git a/holidays/locale/pt_PT/LC_MESSAGES/PT.po b/holidays/locale/pt_PT/LC_MESSAGES/PT.po index d6520e799..a8be97b76 100644 --- a/holidays/locale/pt_PT/LC_MESSAGES/PT.po +++ b/holidays/locale/pt_PT/LC_MESSAGES/PT.po @@ -1,4 +1,4 @@ -# Portugal holidays pt_PT localization. +# Portugal holidays. # Authors: PPsyrius , (c) 2023. # msgid "" @@ -16,6 +16,7 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.2.2\n" +#. New Year's Day. msgid "Ano Novo" msgstr "" @@ -27,110 +28,146 @@ msgstr "" msgid "Páscoa" msgstr "" +#. Corpus Christi. msgid "Corpo de Deus" msgstr "" +#. Republic Day. msgid "Implantação da República" msgstr "" +#. All Saints' Day. msgid "Dia de Todos os Santos" msgstr "" +#. Restoration of Independence Day. msgid "Restauração da Independência" msgstr "" +#. Freedom Day. msgid "Dia da Liberdade" msgstr "" +#. Labor Day. msgid "Dia do Trabalhador" msgstr "" +#. Day of Camões, Portugal, and the Portuguese Race. msgid "Dia de Camões, de Portugal e da Raça" msgstr "" +#. Day of Portugal, Camões, and the Portuguese Communities. msgid "Dia de Portugal, de Camões e das Comunidades Portuguesas" msgstr "" +#. Portugal Day. msgid "Dia de Portugal" msgstr "" +#. Assumption Day. msgid "Assunção de Nossa Senhora" msgstr "" +#. Immaculate Conception. msgid "Imaculada Conceição" msgstr "" +#. Christmas Day. msgid "Dia de Natal" msgstr "" +#. Carnival. msgid "Carnaval" msgstr "" +#. Christmas Eve. msgid "Véspera de Natal" msgstr "" +#. Boxing Day. msgid "26 de Dezembro" msgstr "" +#. New Year's Eve. msgid "Véspera de Ano Novo" msgstr "" +#. St. Anthony's Day. msgid "Dia de Santo António" msgstr "" +#. St. Joanna's Day. msgid "Dia de Santa Joana" msgstr "" +#. Ascension Day. msgid "Quinta-feira da Ascensão" msgstr "" +#. St. John's Day. msgid "Dia de São João" msgstr "" +#. Feast of Our Lady of Graces. msgid "Dia de Nossa Senhora das Graças" msgstr "" +#. Feast of Our Lady of Mércoles. msgid "Dia de Nossa Senhora de Mércoles" msgstr "" +#. St. Elizabeth's Day. msgid "Dia de Santa Isabel" msgstr "" +#. St. Peter's Day. msgid "Dia de São Pedro" msgstr "" +#. Municipal Holiday of Faro. msgid "Dia do Município de Faro" msgstr "" +#. Municipal Holiday of Guarda. msgid "Dia do Município da Guarda" msgstr "" +#. Municipal Holiday of Leiria. msgid "Dia do Município de Leiria" msgstr "" +#. Municipal Holiday of Portalegre. msgid "Dia do Município de Portalegre" msgstr "" +#. St. Joseph's Day. msgid "Dia de São José" msgstr "" +#. Bocage Day. msgid "Dia de Bocage" msgstr "" +#. Feast of Our Lady of Sorrows. msgid "Dia de Nossa Senhora da Agonia" msgstr "" +#. St. Matthew's Day. msgid "Dia de São Mateus" msgstr "" +#. Day of the Autonomous Region of the Azores. msgid "Dia da Região Autónoma dos Açores" msgstr "" +#. Day of the Autonomous Region of Madeira. msgid "Dia da Região Autónoma da Madeira" msgstr "" +#. Day of the Autonomous Region of Madeira and the Madeiran Communities. msgid "Dia da Região Autónoma da Madeira e das Comunidades Madeirenses" msgstr "" +#. 1st Octave. msgid "Primeira Oitava" msgstr "" diff --git a/holidays/locale/uk/LC_MESSAGES/PT.po b/holidays/locale/uk/LC_MESSAGES/PT.po new file mode 100644 index 000000000..c6d4ee795 --- /dev/null +++ b/holidays/locale/uk/LC_MESSAGES/PT.po @@ -0,0 +1,173 @@ +# Portugal holidays uk localization. +# Authors: ~Jhellico , (c) 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.41\n" +"POT-Creation-Date: 2023-03-07 19:38+0700\n" +"PO-Revision-Date: 2023-12-30 19:46+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Python Holidays localization team\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 3.4\n" + +#. New Year's Day. +msgid "Ano Novo" +msgstr "Новий рік" + +#. Good Friday. +msgid "Sexta-feira Santa" +msgstr "Страсна пʼятниця" + +#. Easter Sunday. +msgid "Páscoa" +msgstr "Великдень" + +#. Corpus Christi. +msgid "Corpo de Deus" +msgstr "Свято Тіла і Крові Христових" + +#. Republic Day. +msgid "Implantação da República" +msgstr "День Республіки" + +#. All Saints' Day. +msgid "Dia de Todos os Santos" +msgstr "День усіх святих" + +#. Restoration of Independence Day. +msgid "Restauração da Independência" +msgstr "День відновлення незалежності" + +#. Freedom Day. +msgid "Dia da Liberdade" +msgstr "День Свободи" + +#. Labor Day. +msgid "Dia do Trabalhador" +msgstr "День праці" + +#. Day of Camões, Portugal, and the Portuguese Race. +msgid "Dia de Camões, de Portugal e da Raça" +msgstr "День Камоенса, Португалії і Раси" + +#. Day of Portugal, Camões, and the Portuguese Communities. +msgid "Dia de Portugal, de Camões e das Comunidades Portuguesas" +msgstr "День Португалії, Камоенса і португальських громад" + +#. Portugal Day. +msgid "Dia de Portugal" +msgstr "День Португалії" + +#. Assumption Day. +msgid "Assunção de Nossa Senhora" +msgstr "Внебовзяття Пресвятої Діви Марії" + +#. Immaculate Conception. +msgid "Imaculada Conceição" +msgstr "Непорочне зачаття Діви Марії" + +#. Christmas Day. +msgid "Dia de Natal" +msgstr "Різдво Христове" + +#. Carnival. +msgid "Carnaval" +msgstr "Карнавал" + +#. Christmas Eve. +msgid "Véspera de Natal" +msgstr "Святий вечір" + +#. Boxing Day. +msgid "26 de Dezembro" +msgstr "Другий день Різдва" + +#. New Year's Eve. +msgid "Véspera de Ano Novo" +msgstr "Переддень Нового року" + +#. St. Anthony's Day. +msgid "Dia de Santo António" +msgstr "День Святого Антонія" + +#. St. Joanna's Day. +msgid "Dia de Santa Joana" +msgstr "День Святої Йоанни" + +#. Ascension Day. +msgid "Quinta-feira da Ascensão" +msgstr "Вознесіння Господнє" + +#. St. John's Day. +msgid "Dia de São João" +msgstr "День Святого Івана" + +#. Feast of Our Lady of Graces. +msgid "Dia de Nossa Senhora das Graças" +msgstr "День Богоматері Милосердя" + +#. Feast of Our Lady of Mércoles. +msgid "Dia de Nossa Senhora de Mércoles" +msgstr "День Богоматері Меркольської" + +#. St. Elizabeth's Day. +msgid "Dia de Santa Isabel" +msgstr "День Святої Єлизавети" + +#. St. Peter's Day. +msgid "Dia de São Pedro" +msgstr "День Святого Петра" + +#. Municipal Holiday of Faro. +msgid "Dia do Município de Faro" +msgstr "День муніципалітету Фару" + +#. Municipal Holiday of Guarda. +msgid "Dia do Município da Guarda" +msgstr "День муніципалітету Гуарда" + +#. Municipal Holiday of Leiria. +msgid "Dia do Município de Leiria" +msgstr "День муніципалітету Лейрія" + +#. Municipal Holiday of Portalegre. +msgid "Dia do Município de Portalegre" +msgstr "День муніципалітету Порталегре" + +#. St. Joseph's Day. +msgid "Dia de São José" +msgstr "День Святого Йосипа" + +#. Bocage Day. +msgid "Dia de Bocage" +msgstr "День Бокажі" + +#. Feast of Our Lady of Sorrows. +msgid "Dia de Nossa Senhora da Agonia" +msgstr "День Богоматері Страждання" + +#. St. Matthew's Day. +msgid "Dia de São Mateus" +msgstr "День Святого Матвія" + +#. Day of the Autonomous Region of the Azores. +msgid "Dia da Região Autónoma dos Açores" +msgstr "День автономного регіону Азорських островів" + +#. Day of the Autonomous Region of Madeira. +msgid "Dia da Região Autónoma da Madeira" +msgstr "День автономного регіону Мадейра" + +#. Day of the Autonomous Region of Madeira and the Madeiran Communities. +msgid "Dia da Região Autónoma da Madeira e das Comunidades Madeirenses" +msgstr "День автономного регіону Мадейра та мадейрських громад" + +#. 1st Octave. +msgid "Primeira Oitava" +msgstr "Перша октава" diff --git a/snapshots/countries/PT_01.json b/snapshots/countries/PT_01.json index d8e3261ac..4d6b59b45 100644 --- a/snapshots/countries/PT_01.json +++ b/snapshots/countries/PT_01.json @@ -9,11 +9,11 @@ "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-05-12": "St. Joanna's Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-12": "St. Joanna's Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-05-12": "St. Joanna's Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-05-12": "St. Joanna's Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-12": "St. Joanna's Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-05-12": "St. Joanna's Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-05-12": "St. Joanna's Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-05-12": "St. Joanna's Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-05-12": "St. Joanna's Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-05-12": "St. Joanna's Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-05-12": "St. Joanna's Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-05-12": "St. Joanna's Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-12": "St. Joanna's Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-05-12": "St. Joanna's Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-05-12": "St. Joanna's Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-12": "St. Joanna's Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-05-12": "St. Joanna's Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-12": "St. Joanna's Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-05-12": "St. Joanna's Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-05-12": "St. Joanna's Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-05-12": "St. Joanna's Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-05-12": "St. Joanna's Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-05-12": "St. Joanna's Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-12": "St. Joanna's Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-05-12": "St. Joanna's Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-05-12": "St. Joanna's Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-05-12": "St. Joanna's Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-05-12": "St. Joanna's Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-12": "St. Joanna's Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-05-12": "St. Joanna's Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-05-12": "St. Joanna's Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-12": "St. Joanna's Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-05-12": "St. Joanna's Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-05-12": "St. Joanna's Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-12": "St. Joanna's Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-05-12": "St. Joanna's Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-05-12": "St. Joanna's Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-05-12": "St. Joanna's Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-05-12": "St. Joanna's Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-05-12": "St. Joanna's Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-05-12": "St. Joanna's Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-05-12": "St. Joanna's Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-12": "St. Joanna's Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-05-12": "St. Joanna's Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-12": "St. Joanna's Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-05-12": "St. Joanna's Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-05-12": "St. Joanna's Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-05-12": "St. Joanna's Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-05-12": "St. Joanna's Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-05-12": "St. Joanna's Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-12": "St. Joanna's Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-05-12": "St. Joanna's Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-05-12": "St. Joanna's Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-12": "St. Joanna's Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-05-12": "St. Joanna's Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-12": "St. Joanna's Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-05-12": "St. Joanna's Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-05-12": "St. Joanna's Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-12": "St. Joanna's Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-05-12": "St. Joanna's Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-05-12": "St. Joanna's Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-12": "St. Joanna's Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-05-12": "St. Joanna's Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-05-12": "St. Joanna's Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-05-12": "St. Joanna's Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-05-12": "St. Joanna's Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-12": "St. Joanna's Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-05-12": "St. Joanna's Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-05-12": "St. Joanna's Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-12": "St. Joanna's Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-05-12": "St. Joanna's Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-05-12": "St. Joanna's Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-12": "St. Joanna's Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-05-12": "St. Joanna's Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-05-12": "St. Joanna's Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-05-12": "St. Joanna's Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-05-12": "St. Joanna's Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_02.json b/snapshots/countries/PT_02.json index 3f003b691..d9b635982 100644 --- a/snapshots/countries/PT_02.json +++ b/snapshots/countries/PT_02.json @@ -3,405 +3,405 @@ "1950-02-20": "Carnival", "1950-04-07": "Good Friday", "1950-04-09": "Easter Sunday", - "1950-05-18": "Ascension of Jesus", + "1950-05-18": "Ascension Day", "1950-06-08": "Corpus Christi", "1950-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", "1951-02-05": "Carnival", "1951-03-23": "Good Friday", "1951-03-25": "Easter Sunday", - "1951-05-03": "Ascension of Jesus", + "1951-05-03": "Ascension Day", "1951-05-24": "Corpus Christi", "1951-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", "1952-02-25": "Carnival", "1952-04-11": "Good Friday", "1952-04-13": "Easter Sunday", - "1952-05-22": "Ascension of Jesus", + "1952-05-22": "Ascension Day", "1952-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1952-06-12": "Corpus Christi", "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", "1953-02-16": "Carnival", "1953-04-03": "Good Friday", "1953-04-05": "Easter Sunday", - "1953-05-14": "Ascension of Jesus", + "1953-05-14": "Ascension Day", "1953-06-04": "Corpus Christi", "1953-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", "1954-03-01": "Carnival", "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", - "1954-05-27": "Ascension of Jesus", + "1954-05-27": "Ascension Day", "1954-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1954-06-13": "St. Anthony's Day", "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", "1955-02-21": "Carnival", "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", - "1955-05-19": "Ascension of Jesus", + "1955-05-19": "Ascension Day", "1955-06-09": "Corpus Christi", "1955-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", "1956-02-13": "Carnival", "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", - "1956-05-10": "Ascension of Jesus", + "1956-05-10": "Ascension Day", "1956-05-31": "Corpus Christi", "1956-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", "1957-03-04": "Carnival", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-30": "Ascension of Jesus", + "1957-05-30": "Ascension Day", "1957-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1957-06-13": "St. Anthony's Day", "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", "1958-02-17": "Carnival", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-05-15": "Ascension of Jesus", + "1958-05-15": "Ascension Day", "1958-06-05": "Corpus Christi", "1958-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", "1959-02-09": "Carnival", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-05-07": "Ascension of Jesus", + "1959-05-07": "Ascension Day", "1959-05-28": "Corpus Christi", "1959-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", "1960-02-29": "Carnival", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", - "1960-05-26": "Ascension of Jesus", + "1960-05-26": "Ascension Day", "1960-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1960-06-13": "St. Anthony's Day", "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", "1961-02-13": "Carnival", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", - "1961-05-11": "Ascension of Jesus", + "1961-05-11": "Ascension Day", "1961-06-01": "Corpus Christi", "1961-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", "1962-03-05": "Carnival", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", - "1962-05-31": "Ascension of Jesus", + "1962-05-31": "Ascension Day", "1962-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1962-06-13": "St. Anthony's Day", "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", "1963-02-25": "Carnival", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", - "1963-05-23": "Ascension of Jesus", + "1963-05-23": "Ascension Day", "1963-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", "1964-02-10": "Carnival", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-05-07": "Ascension of Jesus", + "1964-05-07": "Ascension Day", "1964-05-28": "Corpus Christi", "1964-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", "1965-03-01": "Carnival", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", - "1965-05-27": "Ascension of Jesus", + "1965-05-27": "Ascension Day", "1965-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1965-06-13": "St. Anthony's Day", "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", "1966-02-21": "Carnival", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-05-19": "Ascension of Jesus", + "1966-05-19": "Ascension Day", "1966-06-09": "Corpus Christi", "1966-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", "1967-02-06": "Carnival", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-05-04": "Ascension of Jesus", + "1967-05-04": "Ascension Day", "1967-05-25": "Corpus Christi", "1967-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", "1968-02-26": "Carnival", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", - "1968-05-23": "Ascension of Jesus", + "1968-05-23": "Ascension Day", "1968-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", "1969-02-17": "Carnival", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", - "1969-05-15": "Ascension of Jesus", + "1969-05-15": "Ascension Day", "1969-06-05": "Corpus Christi", "1969-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", "1970-02-09": "Carnival", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", - "1970-05-07": "Ascension of Jesus", + "1970-05-07": "Ascension Day", "1970-05-28": "Corpus Christi", "1970-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", "1971-02-22": "Carnival", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", - "1971-05-20": "Ascension of Jesus", + "1971-05-20": "Ascension Day", "1971-06-10": "Corpus Christi; Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", "1972-02-14": "Carnival", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-05-11": "Ascension of Jesus", + "1972-05-11": "Ascension Day", "1972-06-01": "Corpus Christi", "1972-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", "1973-03-05": "Carnival", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", - "1973-05-31": "Ascension of Jesus", + "1973-05-31": "Ascension Day", "1973-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1973-06-13": "St. Anthony's Day", "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", - "1974-05-23": "Ascension of Jesus", + "1974-05-01": "Labor Day", + "1974-05-23": "Ascension Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", - "1975-05-08": "Ascension of Jesus", + "1975-05-01": "Labor Day", + "1975-05-08": "Ascension Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", - "1976-05-27": "Ascension of Jesus", + "1976-05-01": "Labor Day", + "1976-05-27": "Ascension Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", - "1977-05-19": "Ascension of Jesus", + "1977-05-01": "Labor Day", + "1977-05-19": "Ascension Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", - "1978-05-04": "Ascension of Jesus", + "1978-05-01": "Labor Day", + "1978-05-04": "Ascension Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", - "1979-05-24": "Ascension of Jesus", + "1979-05-01": "Labor Day", + "1979-05-24": "Ascension Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", - "1980-05-15": "Ascension of Jesus", + "1980-05-01": "Labor Day", + "1980-05-15": "Ascension Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", - "1981-05-28": "Ascension of Jesus", + "1981-05-01": "Labor Day", + "1981-05-28": "Ascension Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", - "1982-05-20": "Ascension of Jesus", + "1982-05-01": "Labor Day", + "1982-05-20": "Ascension Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", - "1983-05-12": "Ascension of Jesus", + "1983-05-01": "Labor Day", + "1983-05-12": "Ascension Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", - "1984-05-31": "Ascension of Jesus", + "1984-05-01": "Labor Day", + "1984-05-31": "Ascension Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", - "1985-05-16": "Ascension of Jesus", + "1985-05-01": "Labor Day", + "1985-05-16": "Ascension Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", - "1986-05-08": "Ascension of Jesus", + "1986-05-01": "Labor Day", + "1986-05-08": "Ascension Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", - "1987-05-28": "Ascension of Jesus", + "1987-05-01": "Labor Day", + "1987-05-28": "Ascension Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", - "1988-05-12": "Ascension of Jesus", + "1988-05-01": "Labor Day", + "1988-05-12": "Ascension Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", - "1989-05-04": "Ascension of Jesus", + "1989-05-01": "Labor Day", + "1989-05-04": "Ascension Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", - "1990-05-24": "Ascension of Jesus", + "1990-05-01": "Labor Day", + "1990-05-24": "Ascension Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", - "1991-05-09": "Ascension of Jesus", + "1991-05-01": "Labor Day", + "1991-05-09": "Ascension Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", - "1992-05-28": "Ascension of Jesus", + "1992-05-01": "Labor Day", + "1992-05-28": "Ascension Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", - "1993-05-20": "Ascension of Jesus", + "1993-05-01": "Labor Day", + "1993-05-20": "Ascension Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", - "1994-05-12": "Ascension of Jesus", + "1994-05-01": "Labor Day", + "1994-05-12": "Ascension Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", - "1995-05-25": "Ascension of Jesus", + "1995-05-01": "Labor Day", + "1995-05-25": "Ascension Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", - "1996-05-16": "Ascension of Jesus", + "1996-05-01": "Labor Day", + "1996-05-16": "Ascension Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", - "1997-05-08": "Ascension of Jesus", + "1997-05-01": "Labor Day", + "1997-05-08": "Ascension Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", - "1998-05-21": "Ascension of Jesus", + "1998-05-01": "Labor Day", + "1998-05-21": "Ascension Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", - "1999-05-13": "Ascension of Jesus", + "1999-05-01": "Labor Day", + "1999-05-13": "Ascension Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", - "2000-06-01": "Ascension of Jesus", + "2000-05-01": "Labor Day", + "2000-06-01": "Ascension Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", - "2001-05-24": "Ascension of Jesus", + "2001-05-01": "Labor Day", + "2001-05-24": "Ascension Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", - "2002-05-09": "Ascension of Jesus", + "2002-05-01": "Labor Day", + "2002-05-09": "Ascension Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", - "2003-05-29": "Ascension of Jesus", + "2003-05-01": "Labor Day", + "2003-05-29": "Ascension Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", - "2004-05-20": "Ascension of Jesus", + "2004-05-01": "Labor Day", + "2004-05-20": "Ascension Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", - "2005-05-05": "Ascension of Jesus", + "2005-05-01": "Labor Day", + "2005-05-05": "Ascension Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", - "2006-05-25": "Ascension of Jesus", + "2006-05-01": "Labor Day", + "2006-05-25": "Ascension Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", - "2007-05-17": "Ascension of Jesus", + "2007-05-01": "Labor Day", + "2007-05-17": "Ascension Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,17 +1051,17 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Ascension of Jesus; Labour Day", + "2008-05-01": "Ascension Day; Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1069,18 +1069,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", - "2009-05-21": "Ascension of Jesus", + "2009-05-01": "Labor Day", + "2009-05-21": "Ascension Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1088,18 +1088,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", - "2010-05-13": "Ascension of Jesus", + "2010-05-01": "Labor Day", + "2010-05-13": "Ascension Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1107,18 +1107,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", - "2011-06-02": "Ascension of Jesus", + "2011-05-01": "Labor Day", + "2011-06-02": "Ascension Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1126,18 +1126,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", - "2012-05-17": "Ascension of Jesus", + "2012-05-01": "Labor Day", + "2012-05-17": "Ascension Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1145,14 +1145,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", - "2013-05-09": "Ascension of Jesus", + "2013-05-01": "Labor Day", + "2013-05-09": "Ascension Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1160,14 +1160,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", - "2014-05-29": "Ascension of Jesus", + "2014-05-01": "Labor Day", + "2014-05-29": "Ascension Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1175,14 +1175,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", - "2015-05-14": "Ascension of Jesus", + "2015-05-01": "Labor Day", + "2015-05-14": "Ascension Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1190,18 +1190,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", - "2016-05-05": "Ascension of Jesus", + "2016-05-01": "Labor Day", + "2016-05-05": "Ascension Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1209,18 +1209,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", - "2017-05-25": "Ascension of Jesus", + "2017-05-01": "Labor Day", + "2017-05-25": "Ascension Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1228,18 +1228,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", - "2018-05-10": "Ascension of Jesus", + "2018-05-01": "Labor Day", + "2018-05-10": "Ascension Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1247,18 +1247,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", - "2019-05-30": "Ascension of Jesus", + "2019-05-01": "Labor Day", + "2019-05-30": "Ascension Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1266,18 +1266,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", - "2020-05-21": "Ascension of Jesus", + "2020-05-01": "Labor Day", + "2020-05-21": "Ascension Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1285,18 +1285,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", - "2021-05-13": "Ascension of Jesus", + "2021-05-01": "Labor Day", + "2021-05-13": "Ascension Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1304,18 +1304,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", - "2022-05-26": "Ascension of Jesus", + "2022-05-01": "Labor Day", + "2022-05-26": "Ascension Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1323,18 +1323,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", - "2023-05-18": "Ascension of Jesus", + "2023-05-01": "Labor Day", + "2023-05-18": "Ascension Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1342,18 +1342,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", - "2024-05-09": "Ascension of Jesus", + "2024-05-01": "Labor Day", + "2024-05-09": "Ascension Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1361,18 +1361,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", - "2025-05-29": "Ascension of Jesus", + "2025-05-01": "Labor Day", + "2025-05-29": "Ascension Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1380,18 +1380,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", - "2026-05-14": "Ascension of Jesus", + "2026-05-01": "Labor Day", + "2026-05-14": "Ascension Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1399,18 +1399,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", - "2027-05-06": "Ascension of Jesus", + "2027-05-01": "Labor Day", + "2027-05-06": "Ascension Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1418,18 +1418,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", - "2028-05-25": "Ascension of Jesus", + "2028-05-01": "Labor Day", + "2028-05-25": "Ascension Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1437,18 +1437,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", - "2029-05-10": "Ascension of Jesus", + "2029-05-01": "Labor Day", + "2029-05-10": "Ascension Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1456,18 +1456,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", - "2030-05-30": "Ascension of Jesus", + "2030-05-01": "Labor Day", + "2030-05-30": "Ascension Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1475,18 +1475,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", - "2031-05-22": "Ascension of Jesus", + "2031-05-01": "Labor Day", + "2031-05-22": "Ascension Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1494,18 +1494,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", - "2032-05-06": "Ascension of Jesus", + "2032-05-01": "Labor Day", + "2032-05-06": "Ascension Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1513,18 +1513,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", - "2033-05-26": "Ascension of Jesus", + "2033-05-01": "Labor Day", + "2033-05-26": "Ascension Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1532,18 +1532,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", - "2034-05-18": "Ascension of Jesus", + "2034-05-01": "Labor Day", + "2034-05-18": "Ascension Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1551,18 +1551,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", - "2035-05-03": "Ascension of Jesus", + "2035-05-01": "Labor Day", + "2035-05-03": "Ascension Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1570,18 +1570,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", - "2036-05-22": "Ascension of Jesus", + "2036-05-01": "Labor Day", + "2036-05-22": "Ascension Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1589,36 +1589,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", - "2037-05-14": "Ascension of Jesus", + "2037-05-01": "Labor Day", + "2037-05-14": "Ascension Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", - "2038-06-03": "Ascension of Jesus", + "2038-05-01": "Labor Day", + "2038-06-03": "Ascension Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1626,18 +1626,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", - "2039-05-19": "Ascension of Jesus", + "2039-05-01": "Labor Day", + "2039-05-19": "Ascension Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1645,18 +1645,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", - "2040-05-10": "Ascension of Jesus", + "2040-05-01": "Labor Day", + "2040-05-10": "Ascension Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1664,18 +1664,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", - "2041-05-30": "Ascension of Jesus", + "2041-05-01": "Labor Day", + "2041-05-30": "Ascension Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1683,18 +1683,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", - "2042-05-15": "Ascension of Jesus", + "2042-05-01": "Labor Day", + "2042-05-15": "Ascension Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1702,18 +1702,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", - "2043-05-07": "Ascension of Jesus", + "2043-05-01": "Labor Day", + "2043-05-07": "Ascension Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1721,18 +1721,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", - "2044-05-26": "Ascension of Jesus", + "2044-05-01": "Labor Day", + "2044-05-26": "Ascension Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1740,18 +1740,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", - "2045-05-18": "Ascension of Jesus", + "2045-05-01": "Labor Day", + "2045-05-18": "Ascension Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1759,18 +1759,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", - "2046-05-03": "Ascension of Jesus", + "2046-05-01": "Labor Day", + "2046-05-03": "Ascension Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1778,17 +1778,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", - "2047-05-23": "Ascension of Jesus", + "2047-05-01": "Labor Day", + "2047-05-23": "Ascension Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1796,18 +1796,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", - "2048-05-14": "Ascension of Jesus", + "2048-05-01": "Labor Day", + "2048-05-14": "Ascension Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1815,18 +1815,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", - "2049-05-27": "Ascension of Jesus", + "2049-05-01": "Labor Day", + "2049-05-27": "Ascension Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1834,18 +1834,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", - "2050-05-19": "Ascension of Jesus", + "2050-05-01": "Labor Day", + "2050-05-19": "Ascension Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_03.json b/snapshots/countries/PT_03.json index da11c4291..e4f9ce7ae 100644 --- a/snapshots/countries/PT_03.json +++ b/snapshots/countries/PT_03.json @@ -9,11 +9,11 @@ "1950-06-24": "St. John's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-06-24": "St. John's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-06-24": "St. John's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-06-24": "St. John's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-06-24": "St. John's Day", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-06-24": "St. John's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-06-24": "St. John's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-06-24": "St. John's Day", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-06-24": "St. John's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-06-24": "St. John's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-06-24": "St. John's Day", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-06-24": "St. John's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-06-24": "St. John's Day", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-06-24": "St. John's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-06-24": "St. John's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-06-24": "St. John's Day", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-06-24": "St. John's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-06-24": "St. John's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-06-24": "St. John's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-06-24": "St. John's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-06-24": "St. John's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-06-24": "St. John's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-06-24": "St. John's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-06-24": "St. John's Day", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-06-24": "St. John's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-06-24": "St. John's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-06-24": "St. John's Day", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-06-24": "St. John's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-06-24": "St. John's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-06-24": "St. John's Day", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-06-24": "St. John's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-06-24": "St. John's Day", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-06-24": "St. John's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-06-24": "St. John's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-06-24": "St. John's Day", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-06-24": "St. John's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-06-24": "St. John's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-06-24": "St. John's Day", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-06-24": "St. John's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-06-24": "St. John's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-06-24": "St. John's Day", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-06-24": "St. John's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-06-24": "St. John's Day", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-06-24": "St. John's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-06-24": "St. John's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-06-24": "St. John's Day", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-06-24": "St. John's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-06-24": "St. John's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-06-24": "St. John's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-06-24": "St. John's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-06-24": "St. John's Day", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-06-24": "St. John's Day", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-06-24": "St. John's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-06-24": "St. John's Day", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-06-24": "St. John's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-06-24": "St. John's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-06-24": "St. John's Day", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-06-24": "St. John's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-06-24": "St. John's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-06-24": "St. John's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-06-24": "St. John's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-06-24": "St. John's Day", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-06-24": "St. John's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-06-24": "St. John's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-06-24": "St. John's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-06-24": "St. John's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-06-24": "St. John's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-06-24": "St. John's Day", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-06-24": "St. John's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-06-24": "St. John's Day", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-06-24": "St. John's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-06-24": "St. John's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-06-24": "St. John's Day", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-06-24": "St. John's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-06-24": "St. John's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-06-24": "St. John's Day", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-06-24": "St. John's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-06-24": "St. John's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-06-24": "St. John's Day", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-06-24": "St. John's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-06-24": "St. John's Day", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-06-24": "St. John's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-06-24": "St. John's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-06-24": "St. John's Day", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-06-24": "St. John's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-06-24": "St. John's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-06-24": "St. John's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,35 +1590,35 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-06-24": "St. John's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi; St. John's Day", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1626,18 +1626,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-06-24": "St. John's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1645,18 +1645,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-06-24": "St. John's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1664,18 +1664,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-06-24": "St. John's Day", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1683,18 +1683,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-06-24": "St. John's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1702,18 +1702,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-06-24": "St. John's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1721,18 +1721,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-06-24": "St. John's Day", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1740,18 +1740,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-06-24": "St. John's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1759,18 +1759,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-06-24": "St. John's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1778,17 +1778,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-06-24": "St. John's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1796,18 +1796,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-06-24": "St. John's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1815,18 +1815,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-06-24": "St. John's Day", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1834,18 +1834,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-06-24": "St. John's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_04.json b/snapshots/countries/PT_04.json index 570f69a3d..fc02988e4 100644 --- a/snapshots/countries/PT_04.json +++ b/snapshots/countries/PT_04.json @@ -9,11 +9,11 @@ "1950-08-15": "Assumption Day", "1950-08-22": "Feast of Our Lady of Graces", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-08-15": "Assumption Day", "1951-08-22": "Feast of Our Lady of Graces", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-08-15": "Assumption Day", "1952-08-22": "Feast of Our Lady of Graces", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-08-15": "Assumption Day", "1953-08-22": "Feast of Our Lady of Graces", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-08-15": "Assumption Day", "1954-08-22": "Feast of Our Lady of Graces", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-08-15": "Assumption Day", "1955-08-22": "Feast of Our Lady of Graces", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-08-15": "Assumption Day", "1956-08-22": "Feast of Our Lady of Graces", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-08-15": "Assumption Day", "1957-08-22": "Feast of Our Lady of Graces", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-08-15": "Assumption Day", "1958-08-22": "Feast of Our Lady of Graces", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-08-15": "Assumption Day", "1959-08-22": "Feast of Our Lady of Graces", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-08-15": "Assumption Day", "1960-08-22": "Feast of Our Lady of Graces", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-08-15": "Assumption Day", "1961-08-22": "Feast of Our Lady of Graces", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-08-15": "Assumption Day", "1962-08-22": "Feast of Our Lady of Graces", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-08-15": "Assumption Day", "1963-08-22": "Feast of Our Lady of Graces", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-08-15": "Assumption Day", "1964-08-22": "Feast of Our Lady of Graces", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-08-15": "Assumption Day", "1965-08-22": "Feast of Our Lady of Graces", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-08-15": "Assumption Day", "1966-08-22": "Feast of Our Lady of Graces", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-08-15": "Assumption Day", "1967-08-22": "Feast of Our Lady of Graces", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-08-15": "Assumption Day", "1968-08-22": "Feast of Our Lady of Graces", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-08-15": "Assumption Day", "1969-08-22": "Feast of Our Lady of Graces", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-08-15": "Assumption Day", "1970-08-22": "Feast of Our Lady of Graces", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-08-15": "Assumption Day", "1971-08-22": "Feast of Our Lady of Graces", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-08-15": "Assumption Day", "1972-08-22": "Feast of Our Lady of Graces", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-08-15": "Assumption Day", "1973-08-22": "Feast of Our Lady of Graces", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-08-22": "Feast of Our Lady of Graces", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-08-22": "Feast of Our Lady of Graces", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-08-22": "Feast of Our Lady of Graces", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-08-22": "Feast of Our Lady of Graces", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-08-22": "Feast of Our Lady of Graces", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-08-22": "Feast of Our Lady of Graces", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-08-22": "Feast of Our Lady of Graces", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-08-22": "Feast of Our Lady of Graces", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-08-22": "Feast of Our Lady of Graces", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-08-22": "Feast of Our Lady of Graces", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-08-22": "Feast of Our Lady of Graces", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-08-22": "Feast of Our Lady of Graces", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-08-22": "Feast of Our Lady of Graces", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-08-22": "Feast of Our Lady of Graces", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-08-22": "Feast of Our Lady of Graces", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-08-22": "Feast of Our Lady of Graces", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-08-22": "Feast of Our Lady of Graces", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-08-22": "Feast of Our Lady of Graces", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-08-22": "Feast of Our Lady of Graces", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-08-22": "Feast of Our Lady of Graces", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-08-22": "Feast of Our Lady of Graces", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-08-22": "Feast of Our Lady of Graces", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-08-22": "Feast of Our Lady of Graces", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-08-22": "Feast of Our Lady of Graces", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-08-22": "Feast of Our Lady of Graces", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-08-22": "Feast of Our Lady of Graces", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-08-22": "Feast of Our Lady of Graces", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-08-22": "Feast of Our Lady of Graces", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-08-22": "Feast of Our Lady of Graces", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-08-22": "Feast of Our Lady of Graces", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-08-22": "Feast of Our Lady of Graces", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-08-22": "Feast of Our Lady of Graces", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-08-22": "Feast of Our Lady of Graces", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-08-22": "Feast of Our Lady of Graces", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-08-22": "Feast of Our Lady of Graces", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-08-22": "Feast of Our Lady of Graces", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-08-22": "Feast of Our Lady of Graces", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-08-22": "Feast of Our Lady of Graces", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-08-22": "Feast of Our Lady of Graces", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-08-22": "Feast of Our Lady of Graces", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-08-22": "Feast of Our Lady of Graces", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-08-22": "Feast of Our Lady of Graces", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-08-22": "Feast of Our Lady of Graces", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-08-22": "Feast of Our Lady of Graces", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-08-22": "Feast of Our Lady of Graces", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-08-22": "Feast of Our Lady of Graces", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-08-22": "Feast of Our Lady of Graces", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-08-22": "Feast of Our Lady of Graces", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-08-22": "Feast of Our Lady of Graces", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-08-22": "Feast of Our Lady of Graces", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-08-22": "Feast of Our Lady of Graces", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-08-22": "Feast of Our Lady of Graces", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-08-22": "Feast of Our Lady of Graces", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-08-22": "Feast of Our Lady of Graces", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-08-22": "Feast of Our Lady of Graces", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-08-22": "Feast of Our Lady of Graces", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-08-22": "Feast of Our Lady of Graces", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-08-22": "Feast of Our Lady of Graces", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-08-22": "Feast of Our Lady of Graces", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-08-22": "Feast of Our Lady of Graces", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-08-22": "Feast of Our Lady of Graces", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-08-22": "Feast of Our Lady of Graces", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-08-22": "Feast of Our Lady of Graces", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-08-22": "Feast of Our Lady of Graces", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-08-22": "Feast of Our Lady of Graces", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-08-22": "Feast of Our Lady of Graces", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-08-22": "Feast of Our Lady of Graces", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-08-22": "Feast of Our Lady of Graces", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-08-22": "Feast of Our Lady of Graces", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-08-22": "Feast of Our Lady of Graces", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-08-22": "Feast of Our Lady of Graces", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-08-22": "Feast of Our Lady of Graces", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-08-22": "Feast of Our Lady of Graces", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-08-22": "Feast of Our Lady of Graces", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-08-22": "Feast of Our Lady of Graces", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-08-22": "Feast of Our Lady of Graces", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-08-22": "Feast of Our Lady of Graces", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_05.json b/snapshots/countries/PT_05.json index e0194c75e..66469b899 100644 --- a/snapshots/countries/PT_05.json +++ b/snapshots/countries/PT_05.json @@ -9,11 +9,11 @@ "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -410,16 +410,16 @@ "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", "1974-04-30": "Feast of Our Lady of M\u00e9rcoles", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -428,17 +428,17 @@ "1975-03-30": "Easter Sunday", "1975-04-15": "Feast of Our Lady of M\u00e9rcoles", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-05-04": "Feast of Our Lady of M\u00e9rcoles", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -466,17 +466,17 @@ "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", "1977-04-26": "Feast of Our Lady of M\u00e9rcoles", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -485,17 +485,17 @@ "1978-03-26": "Easter Sunday", "1978-04-11": "Feast of Our Lady of M\u00e9rcoles", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,17 +503,17 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Feast of Our Lady of M\u00e9rcoles; Labour Day", + "1979-05-01": "Feast of Our Lady of M\u00e9rcoles; Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,17 +522,17 @@ "1980-04-06": "Easter Sunday", "1980-04-22": "Feast of Our Lady of M\u00e9rcoles", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -540,18 +540,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-05-05": "Feast of Our Lady of M\u00e9rcoles", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,16 +560,16 @@ "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", "1982-04-27": "Feast of Our Lady of M\u00e9rcoles", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,17 +578,17 @@ "1983-04-03": "Easter Sunday", "1983-04-19": "Feast of Our Lady of M\u00e9rcoles", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -596,18 +596,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-05-08": "Feast of Our Lady of M\u00e9rcoles", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,17 +616,17 @@ "1985-04-07": "Easter Sunday", "1985-04-23": "Feast of Our Lady of M\u00e9rcoles", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,17 +635,17 @@ "1986-03-30": "Easter Sunday", "1986-04-15": "Feast of Our Lady of M\u00e9rcoles", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -653,18 +653,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-05-05": "Feast of Our Lady of M\u00e9rcoles", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,17 +673,17 @@ "1988-04-03": "Easter Sunday", "1988-04-19": "Feast of Our Lady of M\u00e9rcoles", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,17 +692,17 @@ "1989-03-26": "Easter Sunday", "1989-04-11": "Feast of Our Lady of M\u00e9rcoles", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -710,17 +710,17 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Feast of Our Lady of M\u00e9rcoles; Labour Day", + "1990-05-01": "Feast of Our Lady of M\u00e9rcoles; Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -729,17 +729,17 @@ "1991-03-31": "Easter Sunday", "1991-04-16": "Feast of Our Lady of M\u00e9rcoles", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -747,18 +747,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-05-05": "Feast of Our Lady of M\u00e9rcoles", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -767,16 +767,16 @@ "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", "1993-04-27": "Feast of Our Lady of M\u00e9rcoles", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -785,17 +785,17 @@ "1994-04-03": "Easter Sunday", "1994-04-19": "Feast of Our Lady of M\u00e9rcoles", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -803,18 +803,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-05-02": "Feast of Our Lady of M\u00e9rcoles", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -823,17 +823,17 @@ "1996-04-07": "Easter Sunday", "1996-04-23": "Feast of Our Lady of M\u00e9rcoles", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -842,17 +842,17 @@ "1997-03-30": "Easter Sunday", "1997-04-15": "Feast of Our Lady of M\u00e9rcoles", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -861,17 +861,17 @@ "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", "1998-04-28": "Feast of Our Lady of M\u00e9rcoles", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -880,17 +880,17 @@ "1999-04-04": "Easter Sunday", "1999-04-20": "Feast of Our Lady of M\u00e9rcoles", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -898,18 +898,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-05-09": "Feast of Our Lady of M\u00e9rcoles", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -917,17 +917,17 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Feast of Our Lady of M\u00e9rcoles; Labour Day", + "2001-05-01": "Feast of Our Lady of M\u00e9rcoles; Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -936,17 +936,17 @@ "2002-03-31": "Easter Sunday", "2002-04-16": "Feast of Our Lady of M\u00e9rcoles", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -954,18 +954,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-05-06": "Feast of Our Lady of M\u00e9rcoles", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -974,16 +974,16 @@ "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", "2004-04-27": "Feast of Our Lady of M\u00e9rcoles", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -992,17 +992,17 @@ "2005-03-27": "Easter Sunday", "2005-04-12": "Feast of Our Lady of M\u00e9rcoles", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1010,18 +1010,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-05-02": "Feast of Our Lady of M\u00e9rcoles", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1030,17 +1030,17 @@ "2007-04-08": "Easter Sunday", "2007-04-24": "Feast of Our Lady of M\u00e9rcoles", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1049,17 +1049,17 @@ "2008-03-23": "Easter Sunday", "2008-04-08": "Feast of Our Lady of M\u00e9rcoles", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1068,17 +1068,17 @@ "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", "2009-04-28": "Feast of Our Lady of M\u00e9rcoles", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1087,17 +1087,17 @@ "2010-04-04": "Easter Sunday", "2010-04-20": "Feast of Our Lady of M\u00e9rcoles", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1105,18 +1105,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-05-10": "Feast of Our Lady of M\u00e9rcoles", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1125,17 +1125,17 @@ "2012-04-08": "Easter Sunday", "2012-04-24": "Feast of Our Lady of M\u00e9rcoles", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1144,13 +1144,13 @@ "2013-03-31": "Easter Sunday", "2013-04-16": "Feast of Our Lady of M\u00e9rcoles", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1158,14 +1158,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-05-06": "Feast of Our Lady of M\u00e9rcoles", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1174,13 +1174,13 @@ "2015-04-05": "Easter Sunday", "2015-04-21": "Feast of Our Lady of M\u00e9rcoles", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1189,17 +1189,17 @@ "2016-03-27": "Easter Sunday", "2016-04-12": "Feast of Our Lady of M\u00e9rcoles", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1207,18 +1207,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-05-02": "Feast of Our Lady of M\u00e9rcoles", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1227,17 +1227,17 @@ "2018-04-01": "Easter Sunday", "2018-04-17": "Feast of Our Lady of M\u00e9rcoles", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1245,18 +1245,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-05-07": "Feast of Our Lady of M\u00e9rcoles", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1265,17 +1265,17 @@ "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", "2020-04-28": "Feast of Our Lady of M\u00e9rcoles", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1284,17 +1284,17 @@ "2021-04-04": "Easter Sunday", "2021-04-20": "Feast of Our Lady of M\u00e9rcoles", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1302,18 +1302,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-05-03": "Feast of Our Lady of M\u00e9rcoles", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1321,17 +1321,17 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Feast of Our Lady of M\u00e9rcoles; Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1340,17 +1340,17 @@ "2024-03-31": "Easter Sunday", "2024-04-16": "Feast of Our Lady of M\u00e9rcoles", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1358,18 +1358,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-05-06": "Feast of Our Lady of M\u00e9rcoles", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1378,17 +1378,17 @@ "2026-04-05": "Easter Sunday", "2026-04-21": "Feast of Our Lady of M\u00e9rcoles", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1397,17 +1397,17 @@ "2027-03-28": "Easter Sunday", "2027-04-13": "Feast of Our Lady of M\u00e9rcoles", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1415,18 +1415,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-05-02": "Feast of Our Lady of M\u00e9rcoles", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1435,17 +1435,17 @@ "2029-04-01": "Easter Sunday", "2029-04-17": "Feast of Our Lady of M\u00e9rcoles", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1453,18 +1453,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-05-07": "Feast of Our Lady of M\u00e9rcoles", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1473,17 +1473,17 @@ "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", "2031-04-29": "Feast of Our Lady of M\u00e9rcoles", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1492,17 +1492,17 @@ "2032-03-28": "Easter Sunday", "2032-04-13": "Feast of Our Lady of M\u00e9rcoles", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1510,18 +1510,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-05-03": "Feast of Our Lady of M\u00e9rcoles", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1529,17 +1529,17 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Feast of Our Lady of M\u00e9rcoles; Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1548,17 +1548,17 @@ "2035-03-25": "Easter Sunday", "2035-04-10": "Feast of Our Lady of M\u00e9rcoles", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1567,17 +1567,17 @@ "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", "2036-04-29": "Feast of Our Lady of M\u00e9rcoles", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1586,35 +1586,35 @@ "2037-04-05": "Easter Sunday", "2037-04-21": "Feast of Our Lady of M\u00e9rcoles", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-05-11": "Feast of Our Lady of M\u00e9rcoles", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1623,17 +1623,17 @@ "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", "2039-04-26": "Feast of Our Lady of M\u00e9rcoles", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1642,17 +1642,17 @@ "2040-04-01": "Easter Sunday", "2040-04-17": "Feast of Our Lady of M\u00e9rcoles", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1660,18 +1660,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-05-07": "Feast of Our Lady of M\u00e9rcoles", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1680,17 +1680,17 @@ "2042-04-06": "Easter Sunday", "2042-04-22": "Feast of Our Lady of M\u00e9rcoles", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1699,17 +1699,17 @@ "2043-03-29": "Easter Sunday", "2043-04-14": "Feast of Our Lady of M\u00e9rcoles", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1717,18 +1717,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-05-03": "Feast of Our Lady of M\u00e9rcoles", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1736,17 +1736,17 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Feast of Our Lady of M\u00e9rcoles; Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1755,17 +1755,17 @@ "2046-03-25": "Easter Sunday", "2046-04-10": "Feast of Our Lady of M\u00e9rcoles", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1774,16 +1774,16 @@ "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", "2047-04-30": "Feast of Our Lady of M\u00e9rcoles", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1792,17 +1792,17 @@ "2048-04-05": "Easter Sunday", "2048-04-21": "Feast of Our Lady of M\u00e9rcoles", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1810,18 +1810,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-05-04": "Feast of Our Lady of M\u00e9rcoles", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1830,17 +1830,17 @@ "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", "2050-04-26": "Feast of Our Lady of M\u00e9rcoles", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_06.json b/snapshots/countries/PT_06.json index 7e5dd999e..0442dbb6a 100644 --- a/snapshots/countries/PT_06.json +++ b/snapshots/countries/PT_06.json @@ -9,11 +9,11 @@ "1950-07-04": "St. Elizabeth's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-07-04": "St. Elizabeth's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-07-04": "St. Elizabeth's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-07-04": "St. Elizabeth's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-07-04": "St. Elizabeth's Day", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-07-04": "St. Elizabeth's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-07-04": "St. Elizabeth's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-07-04": "St. Elizabeth's Day", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-07-04": "St. Elizabeth's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-07-04": "St. Elizabeth's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-07-04": "St. Elizabeth's Day", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-07-04": "St. Elizabeth's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-07-04": "St. Elizabeth's Day", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-07-04": "St. Elizabeth's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-07-04": "St. Elizabeth's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-07-04": "St. Elizabeth's Day", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-07-04": "St. Elizabeth's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-07-04": "St. Elizabeth's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-07-04": "St. Elizabeth's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-07-04": "St. Elizabeth's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-07-04": "St. Elizabeth's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-07-04": "St. Elizabeth's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-07-04": "St. Elizabeth's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-07-04": "St. Elizabeth's Day", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-07-04": "St. Elizabeth's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-07-04": "St. Elizabeth's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-07-04": "St. Elizabeth's Day", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-07-04": "St. Elizabeth's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-07-04": "St. Elizabeth's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-07-04": "St. Elizabeth's Day", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-07-04": "St. Elizabeth's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-07-04": "St. Elizabeth's Day", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-07-04": "St. Elizabeth's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-07-04": "St. Elizabeth's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-07-04": "St. Elizabeth's Day", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-07-04": "St. Elizabeth's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-07-04": "St. Elizabeth's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-07-04": "St. Elizabeth's Day", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-07-04": "St. Elizabeth's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-07-04": "St. Elizabeth's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-07-04": "St. Elizabeth's Day", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-07-04": "St. Elizabeth's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-07-04": "St. Elizabeth's Day", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-07-04": "St. Elizabeth's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-07-04": "St. Elizabeth's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-07-04": "St. Elizabeth's Day", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-07-04": "St. Elizabeth's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-07-04": "St. Elizabeth's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-07-04": "St. Elizabeth's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-07-04": "St. Elizabeth's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-07-04": "St. Elizabeth's Day", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-07-04": "St. Elizabeth's Day", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-07-04": "St. Elizabeth's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-07-04": "St. Elizabeth's Day", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-07-04": "St. Elizabeth's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-07-04": "St. Elizabeth's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-07-04": "St. Elizabeth's Day", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-07-04": "St. Elizabeth's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-07-04": "St. Elizabeth's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-07-04": "St. Elizabeth's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-07-04": "St. Elizabeth's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-07-04": "St. Elizabeth's Day", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-07-04": "St. Elizabeth's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-07-04": "St. Elizabeth's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-07-04": "St. Elizabeth's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-07-04": "St. Elizabeth's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-07-04": "St. Elizabeth's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-07-04": "St. Elizabeth's Day", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-07-04": "St. Elizabeth's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-07-04": "St. Elizabeth's Day", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-07-04": "St. Elizabeth's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-07-04": "St. Elizabeth's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-07-04": "St. Elizabeth's Day", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-07-04": "St. Elizabeth's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-07-04": "St. Elizabeth's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-07-04": "St. Elizabeth's Day", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-07-04": "St. Elizabeth's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-07-04": "St. Elizabeth's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-07-04": "St. Elizabeth's Day", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-07-04": "St. Elizabeth's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-07-04": "St. Elizabeth's Day", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-07-04": "St. Elizabeth's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-07-04": "St. Elizabeth's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-07-04": "St. Elizabeth's Day", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-07-04": "St. Elizabeth's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-07-04": "St. Elizabeth's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-07-04": "St. Elizabeth's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-07-04": "St. Elizabeth's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-07-04": "St. Elizabeth's Day", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-07-04": "St. Elizabeth's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-07-04": "St. Elizabeth's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-07-04": "St. Elizabeth's Day", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-07-04": "St. Elizabeth's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-07-04": "St. Elizabeth's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-07-04": "St. Elizabeth's Day", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-07-04": "St. Elizabeth's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-07-04": "St. Elizabeth's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-07-04": "St. Elizabeth's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-07-04": "St. Elizabeth's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-07-04": "St. Elizabeth's Day", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-07-04": "St. Elizabeth's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_07.json b/snapshots/countries/PT_07.json index 995fe8899..7548aa5af 100644 --- a/snapshots/countries/PT_07.json +++ b/snapshots/countries/PT_07.json @@ -9,11 +9,11 @@ "1950-06-29": "St. Peter's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-06-29": "St. Peter's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-06-29": "St. Peter's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-06-29": "St. Peter's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-06-29": "St. Peter's Day", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-06-29": "St. Peter's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-06-29": "St. Peter's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-06-29": "St. Peter's Day", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-06-29": "St. Peter's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-06-29": "St. Peter's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-06-29": "St. Peter's Day", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-06-29": "St. Peter's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-06-29": "St. Peter's Day", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-06-29": "St. Peter's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-06-29": "St. Peter's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-06-29": "St. Peter's Day", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-06-29": "St. Peter's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-06-29": "St. Peter's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-06-29": "St. Peter's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-06-29": "St. Peter's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-06-29": "St. Peter's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-06-29": "St. Peter's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-06-29": "St. Peter's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-06-29": "St. Peter's Day", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-06-29": "St. Peter's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-06-29": "St. Peter's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-06-29": "St. Peter's Day", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-06-29": "St. Peter's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-06-29": "St. Peter's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-06-29": "St. Peter's Day", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-06-29": "St. Peter's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-06-29": "St. Peter's Day", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-06-29": "St. Peter's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-06-29": "St. Peter's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-06-29": "St. Peter's Day", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-06-29": "St. Peter's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-06-29": "St. Peter's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-06-29": "St. Peter's Day", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-06-29": "St. Peter's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-06-29": "St. Peter's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-06-29": "St. Peter's Day", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-06-29": "St. Peter's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-06-29": "St. Peter's Day", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-06-29": "St. Peter's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-06-29": "St. Peter's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-06-29": "St. Peter's Day", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-06-29": "St. Peter's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-06-29": "St. Peter's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-06-29": "St. Peter's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-06-29": "St. Peter's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-06-29": "St. Peter's Day", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-06-29": "St. Peter's Day", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-06-29": "St. Peter's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-06-29": "St. Peter's Day", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-06-29": "St. Peter's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-06-29": "St. Peter's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-06-29": "St. Peter's Day", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-06-29": "St. Peter's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-06-29": "St. Peter's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-06-29": "St. Peter's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-06-29": "St. Peter's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-06-29": "St. Peter's Day", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-06-29": "St. Peter's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-06-29": "St. Peter's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-06-29": "St. Peter's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-06-29": "St. Peter's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-06-29": "St. Peter's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-06-29": "St. Peter's Day", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-06-29": "St. Peter's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-06-29": "St. Peter's Day", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-06-29": "St. Peter's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-06-29": "St. Peter's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-06-29": "St. Peter's Day", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-06-29": "St. Peter's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-06-29": "St. Peter's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-06-29": "St. Peter's Day", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-06-29": "St. Peter's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-06-29": "St. Peter's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-06-29": "St. Peter's Day", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-06-29": "St. Peter's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-06-29": "St. Peter's Day", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-06-29": "St. Peter's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-06-29": "St. Peter's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-06-29": "St. Peter's Day", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-06-29": "St. Peter's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-06-29": "St. Peter's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-06-29": "St. Peter's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-06-29": "St. Peter's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-06-29": "St. Peter's Day", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-06-29": "St. Peter's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-06-29": "St. Peter's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-06-29": "St. Peter's Day", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-06-29": "St. Peter's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-06-29": "St. Peter's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-06-29": "St. Peter's Day", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-06-29": "St. Peter's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-06-29": "St. Peter's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-06-29": "St. Peter's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-06-29": "St. Peter's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-06-29": "St. Peter's Day", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-06-29": "St. Peter's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_08.json b/snapshots/countries/PT_08.json index deae889a6..8ee69e34b 100644 --- a/snapshots/countries/PT_08.json +++ b/snapshots/countries/PT_08.json @@ -7,13 +7,13 @@ "1950-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", - "1950-09-07": "Municipal Holiday (Faro)", + "1950-09-07": "Municipal Holiday of Faro", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -24,13 +24,13 @@ "1951-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", - "1951-09-07": "Municipal Holiday (Faro)", + "1951-09-07": "Municipal Holiday of Faro", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -41,13 +41,13 @@ "1952-06-12": "Corpus Christi", "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", - "1952-09-07": "Municipal Holiday (Faro)", + "1952-09-07": "Municipal Holiday of Faro", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -58,13 +58,13 @@ "1953-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", - "1953-09-07": "Municipal Holiday (Faro)", + "1953-09-07": "Municipal Holiday of Faro", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -75,13 +75,13 @@ "1954-06-13": "St. Anthony's Day", "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", - "1954-09-07": "Municipal Holiday (Faro)", + "1954-09-07": "Municipal Holiday of Faro", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -92,13 +92,13 @@ "1955-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", - "1955-09-07": "Municipal Holiday (Faro)", + "1955-09-07": "Municipal Holiday of Faro", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -109,13 +109,13 @@ "1956-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", - "1956-09-07": "Municipal Holiday (Faro)", + "1956-09-07": "Municipal Holiday of Faro", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -126,13 +126,13 @@ "1957-06-13": "St. Anthony's Day", "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", - "1957-09-07": "Municipal Holiday (Faro)", + "1957-09-07": "Municipal Holiday of Faro", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -143,13 +143,13 @@ "1958-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", - "1958-09-07": "Municipal Holiday (Faro)", + "1958-09-07": "Municipal Holiday of Faro", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -160,13 +160,13 @@ "1959-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", - "1959-09-07": "Municipal Holiday (Faro)", + "1959-09-07": "Municipal Holiday of Faro", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -177,13 +177,13 @@ "1960-06-13": "St. Anthony's Day", "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", - "1960-09-07": "Municipal Holiday (Faro)", + "1960-09-07": "Municipal Holiday of Faro", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -194,13 +194,13 @@ "1961-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", - "1961-09-07": "Municipal Holiday (Faro)", + "1961-09-07": "Municipal Holiday of Faro", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -211,13 +211,13 @@ "1962-06-13": "St. Anthony's Day", "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", - "1962-09-07": "Municipal Holiday (Faro)", + "1962-09-07": "Municipal Holiday of Faro", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -227,13 +227,13 @@ "1963-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", - "1963-09-07": "Municipal Holiday (Faro)", + "1963-09-07": "Municipal Holiday of Faro", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -244,13 +244,13 @@ "1964-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", - "1964-09-07": "Municipal Holiday (Faro)", + "1964-09-07": "Municipal Holiday of Faro", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -261,13 +261,13 @@ "1965-06-13": "St. Anthony's Day", "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", - "1965-09-07": "Municipal Holiday (Faro)", + "1965-09-07": "Municipal Holiday of Faro", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -278,13 +278,13 @@ "1966-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", - "1966-09-07": "Municipal Holiday (Faro)", + "1966-09-07": "Municipal Holiday of Faro", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -295,13 +295,13 @@ "1967-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", - "1967-09-07": "Municipal Holiday (Faro)", + "1967-09-07": "Municipal Holiday of Faro", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -311,13 +311,13 @@ "1968-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", - "1968-09-07": "Municipal Holiday (Faro)", + "1968-09-07": "Municipal Holiday of Faro", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -328,13 +328,13 @@ "1969-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", - "1969-09-07": "Municipal Holiday (Faro)", + "1969-09-07": "Municipal Holiday of Faro", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -345,13 +345,13 @@ "1970-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", - "1970-09-07": "Municipal Holiday (Faro)", + "1970-09-07": "Municipal Holiday of Faro", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -361,13 +361,13 @@ "1971-06-10": "Corpus Christi; Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", - "1971-09-07": "Municipal Holiday (Faro)", + "1971-09-07": "Municipal Holiday of Faro", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -378,13 +378,13 @@ "1972-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", - "1972-09-07": "Municipal Holiday (Faro)", + "1972-09-07": "Municipal Holiday of Faro", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -395,13 +395,13 @@ "1973-06-13": "St. Anthony's Day", "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", - "1973-09-07": "Municipal Holiday (Faro)", + "1973-09-07": "Municipal Holiday of Faro", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", - "1974-09-07": "Municipal Holiday (Faro)", + "1974-09-07": "Municipal Holiday of Faro", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", - "1975-09-07": "Municipal Holiday (Faro)", + "1975-09-07": "Municipal Holiday of Faro", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", - "1976-09-07": "Municipal Holiday (Faro)", + "1976-09-07": "Municipal Holiday of Faro", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", - "1977-09-07": "Municipal Holiday (Faro)", + "1977-09-07": "Municipal Holiday of Faro", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", - "1978-09-07": "Municipal Holiday (Faro)", + "1978-09-07": "Municipal Holiday of Faro", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", - "1979-09-07": "Municipal Holiday (Faro)", + "1979-09-07": "Municipal Holiday of Faro", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", - "1980-09-07": "Municipal Holiday (Faro)", + "1980-09-07": "Municipal Holiday of Faro", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", - "1981-09-07": "Municipal Holiday (Faro)", + "1981-09-07": "Municipal Holiday of Faro", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", - "1982-09-07": "Municipal Holiday (Faro)", + "1982-09-07": "Municipal Holiday of Faro", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", - "1983-09-07": "Municipal Holiday (Faro)", + "1983-09-07": "Municipal Holiday of Faro", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", - "1984-09-07": "Municipal Holiday (Faro)", + "1984-09-07": "Municipal Holiday of Faro", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", - "1985-09-07": "Municipal Holiday (Faro)", + "1985-09-07": "Municipal Holiday of Faro", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", - "1986-09-07": "Municipal Holiday (Faro)", + "1986-09-07": "Municipal Holiday of Faro", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", - "1987-09-07": "Municipal Holiday (Faro)", + "1987-09-07": "Municipal Holiday of Faro", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", - "1988-09-07": "Municipal Holiday (Faro)", + "1988-09-07": "Municipal Holiday of Faro", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", - "1989-09-07": "Municipal Holiday (Faro)", + "1989-09-07": "Municipal Holiday of Faro", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", - "1990-09-07": "Municipal Holiday (Faro)", + "1990-09-07": "Municipal Holiday of Faro", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", - "1991-09-07": "Municipal Holiday (Faro)", + "1991-09-07": "Municipal Holiday of Faro", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", - "1992-09-07": "Municipal Holiday (Faro)", + "1992-09-07": "Municipal Holiday of Faro", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", - "1993-09-07": "Municipal Holiday (Faro)", + "1993-09-07": "Municipal Holiday of Faro", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", - "1994-09-07": "Municipal Holiday (Faro)", + "1994-09-07": "Municipal Holiday of Faro", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", - "1995-09-07": "Municipal Holiday (Faro)", + "1995-09-07": "Municipal Holiday of Faro", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", - "1996-09-07": "Municipal Holiday (Faro)", + "1996-09-07": "Municipal Holiday of Faro", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", - "1997-09-07": "Municipal Holiday (Faro)", + "1997-09-07": "Municipal Holiday of Faro", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", - "1998-09-07": "Municipal Holiday (Faro)", + "1998-09-07": "Municipal Holiday of Faro", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", - "1999-09-07": "Municipal Holiday (Faro)", + "1999-09-07": "Municipal Holiday of Faro", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", - "2000-09-07": "Municipal Holiday (Faro)", + "2000-09-07": "Municipal Holiday of Faro", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", - "2001-09-07": "Municipal Holiday (Faro)", + "2001-09-07": "Municipal Holiday of Faro", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", - "2002-09-07": "Municipal Holiday (Faro)", + "2002-09-07": "Municipal Holiday of Faro", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", - "2003-09-07": "Municipal Holiday (Faro)", + "2003-09-07": "Municipal Holiday of Faro", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", - "2004-09-07": "Municipal Holiday (Faro)", + "2004-09-07": "Municipal Holiday of Faro", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", - "2005-09-07": "Municipal Holiday (Faro)", + "2005-09-07": "Municipal Holiday of Faro", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", - "2006-09-07": "Municipal Holiday (Faro)", + "2006-09-07": "Municipal Holiday of Faro", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", - "2007-09-07": "Municipal Holiday (Faro)", + "2007-09-07": "Municipal Holiday of Faro", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", - "2008-09-07": "Municipal Holiday (Faro)", + "2008-09-07": "Municipal Holiday of Faro", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", - "2009-09-07": "Municipal Holiday (Faro)", + "2009-09-07": "Municipal Holiday of Faro", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", - "2010-09-07": "Municipal Holiday (Faro)", + "2010-09-07": "Municipal Holiday of Faro", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", - "2011-09-07": "Municipal Holiday (Faro)", + "2011-09-07": "Municipal Holiday of Faro", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", - "2012-09-07": "Municipal Holiday (Faro)", + "2012-09-07": "Municipal Holiday of Faro", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", - "2013-09-07": "Municipal Holiday (Faro)", + "2013-09-07": "Municipal Holiday of Faro", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", - "2014-09-07": "Municipal Holiday (Faro)", + "2014-09-07": "Municipal Holiday of Faro", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", - "2015-09-07": "Municipal Holiday (Faro)", + "2015-09-07": "Municipal Holiday of Faro", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", - "2016-09-07": "Municipal Holiday (Faro)", + "2016-09-07": "Municipal Holiday of Faro", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", - "2017-09-07": "Municipal Holiday (Faro)", + "2017-09-07": "Municipal Holiday of Faro", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", - "2018-09-07": "Municipal Holiday (Faro)", + "2018-09-07": "Municipal Holiday of Faro", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", - "2019-09-07": "Municipal Holiday (Faro)", + "2019-09-07": "Municipal Holiday of Faro", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", - "2020-09-07": "Municipal Holiday (Faro)", + "2020-09-07": "Municipal Holiday of Faro", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", - "2021-09-07": "Municipal Holiday (Faro)", + "2021-09-07": "Municipal Holiday of Faro", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", - "2022-09-07": "Municipal Holiday (Faro)", + "2022-09-07": "Municipal Holiday of Faro", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", - "2023-09-07": "Municipal Holiday (Faro)", + "2023-09-07": "Municipal Holiday of Faro", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", - "2024-09-07": "Municipal Holiday (Faro)", + "2024-09-07": "Municipal Holiday of Faro", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", - "2025-09-07": "Municipal Holiday (Faro)", + "2025-09-07": "Municipal Holiday of Faro", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", - "2026-09-07": "Municipal Holiday (Faro)", + "2026-09-07": "Municipal Holiday of Faro", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", - "2027-09-07": "Municipal Holiday (Faro)", + "2027-09-07": "Municipal Holiday of Faro", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", - "2028-09-07": "Municipal Holiday (Faro)", + "2028-09-07": "Municipal Holiday of Faro", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", - "2029-09-07": "Municipal Holiday (Faro)", + "2029-09-07": "Municipal Holiday of Faro", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", - "2030-09-07": "Municipal Holiday (Faro)", + "2030-09-07": "Municipal Holiday of Faro", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", - "2031-09-07": "Municipal Holiday (Faro)", + "2031-09-07": "Municipal Holiday of Faro", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", - "2032-09-07": "Municipal Holiday (Faro)", + "2032-09-07": "Municipal Holiday of Faro", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", - "2033-09-07": "Municipal Holiday (Faro)", + "2033-09-07": "Municipal Holiday of Faro", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", - "2034-09-07": "Municipal Holiday (Faro)", + "2034-09-07": "Municipal Holiday of Faro", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", - "2035-09-07": "Municipal Holiday (Faro)", + "2035-09-07": "Municipal Holiday of Faro", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", - "2036-09-07": "Municipal Holiday (Faro)", + "2036-09-07": "Municipal Holiday of Faro", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", - "2037-09-07": "Municipal Holiday (Faro)", + "2037-09-07": "Municipal Holiday of Faro", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", - "2038-09-07": "Municipal Holiday (Faro)", + "2038-09-07": "Municipal Holiday of Faro", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", - "2039-09-07": "Municipal Holiday (Faro)", + "2039-09-07": "Municipal Holiday of Faro", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", - "2040-09-07": "Municipal Holiday (Faro)", + "2040-09-07": "Municipal Holiday of Faro", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", - "2041-09-07": "Municipal Holiday (Faro)", + "2041-09-07": "Municipal Holiday of Faro", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", - "2042-09-07": "Municipal Holiday (Faro)", + "2042-09-07": "Municipal Holiday of Faro", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", - "2043-09-07": "Municipal Holiday (Faro)", + "2043-09-07": "Municipal Holiday of Faro", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", - "2044-09-07": "Municipal Holiday (Faro)", + "2044-09-07": "Municipal Holiday of Faro", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", - "2045-09-07": "Municipal Holiday (Faro)", + "2045-09-07": "Municipal Holiday of Faro", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", - "2046-09-07": "Municipal Holiday (Faro)", + "2046-09-07": "Municipal Holiday of Faro", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", - "2047-09-07": "Municipal Holiday (Faro)", + "2047-09-07": "Municipal Holiday of Faro", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", - "2048-09-07": "Municipal Holiday (Faro)", + "2048-09-07": "Municipal Holiday of Faro", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", - "2049-09-07": "Municipal Holiday (Faro)", + "2049-09-07": "Municipal Holiday of Faro", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", - "2050-09-07": "Municipal Holiday (Faro)", + "2050-09-07": "Municipal Holiday of Faro", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_09.json b/snapshots/countries/PT_09.json index 5c0ec518d..e32c2cf8a 100644 --- a/snapshots/countries/PT_09.json +++ b/snapshots/countries/PT_09.json @@ -8,12 +8,12 @@ "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", - "1950-11-27": "Municipal Holiday (Guarda)", + "1950-11-01": "All Saints' Day", + "1950-11-27": "Municipal Holiday of Guarda", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -25,12 +25,12 @@ "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", - "1951-11-27": "Municipal Holiday (Guarda)", + "1951-11-01": "All Saints' Day", + "1951-11-27": "Municipal Holiday of Guarda", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -42,12 +42,12 @@ "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", - "1952-11-27": "Municipal Holiday (Guarda)", + "1952-11-01": "All Saints' Day", + "1952-11-27": "Municipal Holiday of Guarda", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -59,12 +59,12 @@ "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", - "1953-11-27": "Municipal Holiday (Guarda)", + "1953-11-01": "All Saints' Day", + "1953-11-27": "Municipal Holiday of Guarda", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -76,12 +76,12 @@ "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", - "1954-11-27": "Municipal Holiday (Guarda)", + "1954-11-01": "All Saints' Day", + "1954-11-27": "Municipal Holiday of Guarda", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -93,12 +93,12 @@ "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", - "1955-11-27": "Municipal Holiday (Guarda)", + "1955-11-01": "All Saints' Day", + "1955-11-27": "Municipal Holiday of Guarda", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -110,12 +110,12 @@ "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", - "1956-11-27": "Municipal Holiday (Guarda)", + "1956-11-01": "All Saints' Day", + "1956-11-27": "Municipal Holiday of Guarda", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -127,12 +127,12 @@ "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", - "1957-11-27": "Municipal Holiday (Guarda)", + "1957-11-01": "All Saints' Day", + "1957-11-27": "Municipal Holiday of Guarda", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -144,12 +144,12 @@ "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", - "1958-11-27": "Municipal Holiday (Guarda)", + "1958-11-01": "All Saints' Day", + "1958-11-27": "Municipal Holiday of Guarda", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -161,12 +161,12 @@ "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", - "1959-11-27": "Municipal Holiday (Guarda)", + "1959-11-01": "All Saints' Day", + "1959-11-27": "Municipal Holiday of Guarda", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -178,12 +178,12 @@ "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", - "1960-11-27": "Municipal Holiday (Guarda)", + "1960-11-01": "All Saints' Day", + "1960-11-27": "Municipal Holiday of Guarda", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -195,12 +195,12 @@ "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", - "1961-11-27": "Municipal Holiday (Guarda)", + "1961-11-01": "All Saints' Day", + "1961-11-27": "Municipal Holiday of Guarda", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -212,12 +212,12 @@ "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", - "1962-11-27": "Municipal Holiday (Guarda)", + "1962-11-01": "All Saints' Day", + "1962-11-27": "Municipal Holiday of Guarda", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -228,12 +228,12 @@ "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", - "1963-11-27": "Municipal Holiday (Guarda)", + "1963-11-01": "All Saints' Day", + "1963-11-27": "Municipal Holiday of Guarda", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -245,12 +245,12 @@ "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", - "1964-11-27": "Municipal Holiday (Guarda)", + "1964-11-01": "All Saints' Day", + "1964-11-27": "Municipal Holiday of Guarda", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -262,12 +262,12 @@ "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", - "1965-11-27": "Municipal Holiday (Guarda)", + "1965-11-01": "All Saints' Day", + "1965-11-27": "Municipal Holiday of Guarda", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -279,12 +279,12 @@ "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", - "1966-11-27": "Municipal Holiday (Guarda)", + "1966-11-01": "All Saints' Day", + "1966-11-27": "Municipal Holiday of Guarda", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -296,12 +296,12 @@ "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", - "1967-11-27": "Municipal Holiday (Guarda)", + "1967-11-01": "All Saints' Day", + "1967-11-27": "Municipal Holiday of Guarda", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -312,12 +312,12 @@ "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", - "1968-11-27": "Municipal Holiday (Guarda)", + "1968-11-01": "All Saints' Day", + "1968-11-27": "Municipal Holiday of Guarda", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -329,12 +329,12 @@ "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", - "1969-11-27": "Municipal Holiday (Guarda)", + "1969-11-01": "All Saints' Day", + "1969-11-27": "Municipal Holiday of Guarda", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -346,12 +346,12 @@ "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", - "1970-11-27": "Municipal Holiday (Guarda)", + "1970-11-01": "All Saints' Day", + "1970-11-27": "Municipal Holiday of Guarda", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -362,12 +362,12 @@ "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", - "1971-11-27": "Municipal Holiday (Guarda)", + "1971-11-01": "All Saints' Day", + "1971-11-27": "Municipal Holiday of Guarda", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -379,12 +379,12 @@ "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", - "1972-11-27": "Municipal Holiday (Guarda)", + "1972-11-01": "All Saints' Day", + "1972-11-27": "Municipal Holiday of Guarda", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -396,12 +396,12 @@ "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", - "1973-11-27": "Municipal Holiday (Guarda)", + "1973-11-01": "All Saints' Day", + "1973-11-27": "Municipal Holiday of Guarda", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", - "1974-11-27": "Municipal Holiday (Guarda)", + "1974-11-01": "All Saints' Day", + "1974-11-27": "Municipal Holiday of Guarda", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", - "1975-11-27": "Municipal Holiday (Guarda)", + "1975-11-01": "All Saints' Day", + "1975-11-27": "Municipal Holiday of Guarda", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", - "1976-11-27": "Municipal Holiday (Guarda)", + "1976-11-01": "All Saints' Day", + "1976-11-27": "Municipal Holiday of Guarda", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", - "1977-11-27": "Municipal Holiday (Guarda)", + "1977-11-01": "All Saints' Day", + "1977-11-27": "Municipal Holiday of Guarda", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", - "1978-11-27": "Municipal Holiday (Guarda)", + "1978-11-01": "All Saints' Day", + "1978-11-27": "Municipal Holiday of Guarda", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", - "1979-11-27": "Municipal Holiday (Guarda)", + "1979-11-01": "All Saints' Day", + "1979-11-27": "Municipal Holiday of Guarda", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", - "1980-11-27": "Municipal Holiday (Guarda)", + "1980-11-01": "All Saints' Day", + "1980-11-27": "Municipal Holiday of Guarda", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", - "1981-11-27": "Municipal Holiday (Guarda)", + "1981-11-01": "All Saints' Day", + "1981-11-27": "Municipal Holiday of Guarda", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", - "1982-11-27": "Municipal Holiday (Guarda)", + "1982-11-01": "All Saints' Day", + "1982-11-27": "Municipal Holiday of Guarda", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", - "1983-11-27": "Municipal Holiday (Guarda)", + "1983-11-01": "All Saints' Day", + "1983-11-27": "Municipal Holiday of Guarda", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", - "1984-11-27": "Municipal Holiday (Guarda)", + "1984-11-01": "All Saints' Day", + "1984-11-27": "Municipal Holiday of Guarda", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", - "1985-11-27": "Municipal Holiday (Guarda)", + "1985-11-01": "All Saints' Day", + "1985-11-27": "Municipal Holiday of Guarda", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", - "1986-11-27": "Municipal Holiday (Guarda)", + "1986-11-01": "All Saints' Day", + "1986-11-27": "Municipal Holiday of Guarda", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", - "1987-11-27": "Municipal Holiday (Guarda)", + "1987-11-01": "All Saints' Day", + "1987-11-27": "Municipal Holiday of Guarda", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", - "1988-11-27": "Municipal Holiday (Guarda)", + "1988-11-01": "All Saints' Day", + "1988-11-27": "Municipal Holiday of Guarda", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", - "1989-11-27": "Municipal Holiday (Guarda)", + "1989-11-01": "All Saints' Day", + "1989-11-27": "Municipal Holiday of Guarda", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", - "1990-11-27": "Municipal Holiday (Guarda)", + "1990-11-01": "All Saints' Day", + "1990-11-27": "Municipal Holiday of Guarda", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", - "1991-11-27": "Municipal Holiday (Guarda)", + "1991-11-01": "All Saints' Day", + "1991-11-27": "Municipal Holiday of Guarda", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", - "1992-11-27": "Municipal Holiday (Guarda)", + "1992-11-01": "All Saints' Day", + "1992-11-27": "Municipal Holiday of Guarda", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", - "1993-11-27": "Municipal Holiday (Guarda)", + "1993-11-01": "All Saints' Day", + "1993-11-27": "Municipal Holiday of Guarda", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", - "1994-11-27": "Municipal Holiday (Guarda)", + "1994-11-01": "All Saints' Day", + "1994-11-27": "Municipal Holiday of Guarda", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", - "1995-11-27": "Municipal Holiday (Guarda)", + "1995-11-01": "All Saints' Day", + "1995-11-27": "Municipal Holiday of Guarda", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", - "1996-11-27": "Municipal Holiday (Guarda)", + "1996-11-01": "All Saints' Day", + "1996-11-27": "Municipal Holiday of Guarda", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", - "1997-11-27": "Municipal Holiday (Guarda)", + "1997-11-01": "All Saints' Day", + "1997-11-27": "Municipal Holiday of Guarda", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", - "1998-11-27": "Municipal Holiday (Guarda)", + "1998-11-01": "All Saints' Day", + "1998-11-27": "Municipal Holiday of Guarda", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", - "1999-11-27": "Municipal Holiday (Guarda)", + "1999-11-01": "All Saints' Day", + "1999-11-27": "Municipal Holiday of Guarda", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", - "2000-11-27": "Municipal Holiday (Guarda)", + "2000-11-01": "All Saints' Day", + "2000-11-27": "Municipal Holiday of Guarda", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", - "2001-11-27": "Municipal Holiday (Guarda)", + "2001-11-01": "All Saints' Day", + "2001-11-27": "Municipal Holiday of Guarda", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", - "2002-11-27": "Municipal Holiday (Guarda)", + "2002-11-01": "All Saints' Day", + "2002-11-27": "Municipal Holiday of Guarda", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", - "2003-11-27": "Municipal Holiday (Guarda)", + "2003-11-01": "All Saints' Day", + "2003-11-27": "Municipal Holiday of Guarda", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", - "2004-11-27": "Municipal Holiday (Guarda)", + "2004-11-01": "All Saints' Day", + "2004-11-27": "Municipal Holiday of Guarda", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", - "2005-11-27": "Municipal Holiday (Guarda)", + "2005-11-01": "All Saints' Day", + "2005-11-27": "Municipal Holiday of Guarda", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", - "2006-11-27": "Municipal Holiday (Guarda)", + "2006-11-01": "All Saints' Day", + "2006-11-27": "Municipal Holiday of Guarda", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", - "2007-11-27": "Municipal Holiday (Guarda)", + "2007-11-01": "All Saints' Day", + "2007-11-27": "Municipal Holiday of Guarda", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", - "2008-11-27": "Municipal Holiday (Guarda)", + "2008-11-01": "All Saints' Day", + "2008-11-27": "Municipal Holiday of Guarda", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", - "2009-11-27": "Municipal Holiday (Guarda)", + "2009-11-01": "All Saints' Day", + "2009-11-27": "Municipal Holiday of Guarda", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", - "2010-11-27": "Municipal Holiday (Guarda)", + "2010-11-01": "All Saints' Day", + "2010-11-27": "Municipal Holiday of Guarda", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", - "2011-11-27": "Municipal Holiday (Guarda)", + "2011-11-01": "All Saints' Day", + "2011-11-27": "Municipal Holiday of Guarda", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", - "2012-11-27": "Municipal Holiday (Guarda)", + "2012-11-01": "All Saints' Day", + "2012-11-27": "Municipal Holiday of Guarda", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", - "2013-11-27": "Municipal Holiday (Guarda)", + "2013-11-27": "Municipal Holiday of Guarda", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", - "2014-11-27": "Municipal Holiday (Guarda)", + "2014-11-27": "Municipal Holiday of Guarda", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", - "2015-11-27": "Municipal Holiday (Guarda)", + "2015-11-27": "Municipal Holiday of Guarda", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", - "2016-11-27": "Municipal Holiday (Guarda)", + "2016-11-01": "All Saints' Day", + "2016-11-27": "Municipal Holiday of Guarda", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", - "2017-11-27": "Municipal Holiday (Guarda)", + "2017-11-01": "All Saints' Day", + "2017-11-27": "Municipal Holiday of Guarda", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", - "2018-11-27": "Municipal Holiday (Guarda)", + "2018-11-01": "All Saints' Day", + "2018-11-27": "Municipal Holiday of Guarda", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", - "2019-11-27": "Municipal Holiday (Guarda)", + "2019-11-01": "All Saints' Day", + "2019-11-27": "Municipal Holiday of Guarda", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", - "2020-11-27": "Municipal Holiday (Guarda)", + "2020-11-01": "All Saints' Day", + "2020-11-27": "Municipal Holiday of Guarda", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", - "2021-11-27": "Municipal Holiday (Guarda)", + "2021-11-01": "All Saints' Day", + "2021-11-27": "Municipal Holiday of Guarda", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", - "2022-11-27": "Municipal Holiday (Guarda)", + "2022-11-01": "All Saints' Day", + "2022-11-27": "Municipal Holiday of Guarda", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", - "2023-11-27": "Municipal Holiday (Guarda)", + "2023-11-01": "All Saints' Day", + "2023-11-27": "Municipal Holiday of Guarda", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", - "2024-11-27": "Municipal Holiday (Guarda)", + "2024-11-01": "All Saints' Day", + "2024-11-27": "Municipal Holiday of Guarda", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", - "2025-11-27": "Municipal Holiday (Guarda)", + "2025-11-01": "All Saints' Day", + "2025-11-27": "Municipal Holiday of Guarda", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", - "2026-11-27": "Municipal Holiday (Guarda)", + "2026-11-01": "All Saints' Day", + "2026-11-27": "Municipal Holiday of Guarda", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", - "2027-11-27": "Municipal Holiday (Guarda)", + "2027-11-01": "All Saints' Day", + "2027-11-27": "Municipal Holiday of Guarda", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", - "2028-11-27": "Municipal Holiday (Guarda)", + "2028-11-01": "All Saints' Day", + "2028-11-27": "Municipal Holiday of Guarda", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", - "2029-11-27": "Municipal Holiday (Guarda)", + "2029-11-01": "All Saints' Day", + "2029-11-27": "Municipal Holiday of Guarda", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", - "2030-11-27": "Municipal Holiday (Guarda)", + "2030-11-01": "All Saints' Day", + "2030-11-27": "Municipal Holiday of Guarda", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", - "2031-11-27": "Municipal Holiday (Guarda)", + "2031-11-01": "All Saints' Day", + "2031-11-27": "Municipal Holiday of Guarda", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", - "2032-11-27": "Municipal Holiday (Guarda)", + "2032-11-01": "All Saints' Day", + "2032-11-27": "Municipal Holiday of Guarda", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", - "2033-11-27": "Municipal Holiday (Guarda)", + "2033-11-01": "All Saints' Day", + "2033-11-27": "Municipal Holiday of Guarda", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", - "2034-11-27": "Municipal Holiday (Guarda)", + "2034-11-01": "All Saints' Day", + "2034-11-27": "Municipal Holiday of Guarda", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", - "2035-11-27": "Municipal Holiday (Guarda)", + "2035-11-01": "All Saints' Day", + "2035-11-27": "Municipal Holiday of Guarda", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", - "2036-11-27": "Municipal Holiday (Guarda)", + "2036-11-01": "All Saints' Day", + "2036-11-27": "Municipal Holiday of Guarda", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", - "2037-11-27": "Municipal Holiday (Guarda)", + "2037-11-01": "All Saints' Day", + "2037-11-27": "Municipal Holiday of Guarda", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", - "2038-11-27": "Municipal Holiday (Guarda)", + "2038-11-01": "All Saints' Day", + "2038-11-27": "Municipal Holiday of Guarda", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", - "2039-11-27": "Municipal Holiday (Guarda)", + "2039-11-01": "All Saints' Day", + "2039-11-27": "Municipal Holiday of Guarda", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", - "2040-11-27": "Municipal Holiday (Guarda)", + "2040-11-01": "All Saints' Day", + "2040-11-27": "Municipal Holiday of Guarda", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", - "2041-11-27": "Municipal Holiday (Guarda)", + "2041-11-01": "All Saints' Day", + "2041-11-27": "Municipal Holiday of Guarda", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", - "2042-11-27": "Municipal Holiday (Guarda)", + "2042-11-01": "All Saints' Day", + "2042-11-27": "Municipal Holiday of Guarda", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", - "2043-11-27": "Municipal Holiday (Guarda)", + "2043-11-01": "All Saints' Day", + "2043-11-27": "Municipal Holiday of Guarda", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", - "2044-11-27": "Municipal Holiday (Guarda)", + "2044-11-01": "All Saints' Day", + "2044-11-27": "Municipal Holiday of Guarda", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", - "2045-11-27": "Municipal Holiday (Guarda)", + "2045-11-01": "All Saints' Day", + "2045-11-27": "Municipal Holiday of Guarda", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", - "2046-11-27": "Municipal Holiday (Guarda)", + "2046-11-01": "All Saints' Day", + "2046-11-27": "Municipal Holiday of Guarda", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", - "2047-11-27": "Municipal Holiday (Guarda)", + "2047-11-01": "All Saints' Day", + "2047-11-27": "Municipal Holiday of Guarda", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", - "2048-11-27": "Municipal Holiday (Guarda)", + "2048-11-01": "All Saints' Day", + "2048-11-27": "Municipal Holiday of Guarda", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", - "2049-11-27": "Municipal Holiday (Guarda)", + "2049-11-01": "All Saints' Day", + "2049-11-27": "Municipal Holiday of Guarda", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", - "2050-11-27": "Municipal Holiday (Guarda)", + "2050-11-01": "All Saints' Day", + "2050-11-27": "Municipal Holiday of Guarda", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_10.json b/snapshots/countries/PT_10.json index 3467115c1..480fab8af 100644 --- a/snapshots/countries/PT_10.json +++ b/snapshots/countries/PT_10.json @@ -3,405 +3,405 @@ "1950-02-20": "Carnival", "1950-04-07": "Good Friday", "1950-04-09": "Easter Sunday", - "1950-05-22": "Municipal Holiday (Leiria)", + "1950-05-22": "Municipal Holiday of Leiria", "1950-06-08": "Corpus Christi", "1950-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", "1951-02-05": "Carnival", "1951-03-23": "Good Friday", "1951-03-25": "Easter Sunday", - "1951-05-22": "Municipal Holiday (Leiria)", + "1951-05-22": "Municipal Holiday of Leiria", "1951-05-24": "Corpus Christi", "1951-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", "1952-02-25": "Carnival", "1952-04-11": "Good Friday", "1952-04-13": "Easter Sunday", - "1952-05-22": "Municipal Holiday (Leiria)", + "1952-05-22": "Municipal Holiday of Leiria", "1952-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1952-06-12": "Corpus Christi", "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", "1953-02-16": "Carnival", "1953-04-03": "Good Friday", "1953-04-05": "Easter Sunday", - "1953-05-22": "Municipal Holiday (Leiria)", + "1953-05-22": "Municipal Holiday of Leiria", "1953-06-04": "Corpus Christi", "1953-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", "1954-03-01": "Carnival", "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", - "1954-05-22": "Municipal Holiday (Leiria)", + "1954-05-22": "Municipal Holiday of Leiria", "1954-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1954-06-13": "St. Anthony's Day", "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", "1955-02-21": "Carnival", "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", - "1955-05-22": "Municipal Holiday (Leiria)", + "1955-05-22": "Municipal Holiday of Leiria", "1955-06-09": "Corpus Christi", "1955-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", "1956-02-13": "Carnival", "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", - "1956-05-22": "Municipal Holiday (Leiria)", + "1956-05-22": "Municipal Holiday of Leiria", "1956-05-31": "Corpus Christi", "1956-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", "1957-03-04": "Carnival", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-22": "Municipal Holiday (Leiria)", + "1957-05-22": "Municipal Holiday of Leiria", "1957-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1957-06-13": "St. Anthony's Day", "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", "1958-02-17": "Carnival", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-05-22": "Municipal Holiday (Leiria)", + "1958-05-22": "Municipal Holiday of Leiria", "1958-06-05": "Corpus Christi", "1958-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", "1959-02-09": "Carnival", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-05-22": "Municipal Holiday (Leiria)", + "1959-05-22": "Municipal Holiday of Leiria", "1959-05-28": "Corpus Christi", "1959-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", "1960-02-29": "Carnival", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", - "1960-05-22": "Municipal Holiday (Leiria)", + "1960-05-22": "Municipal Holiday of Leiria", "1960-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1960-06-13": "St. Anthony's Day", "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", "1961-02-13": "Carnival", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", - "1961-05-22": "Municipal Holiday (Leiria)", + "1961-05-22": "Municipal Holiday of Leiria", "1961-06-01": "Corpus Christi", "1961-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", "1962-03-05": "Carnival", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", - "1962-05-22": "Municipal Holiday (Leiria)", + "1962-05-22": "Municipal Holiday of Leiria", "1962-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1962-06-13": "St. Anthony's Day", "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", "1963-02-25": "Carnival", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", - "1963-05-22": "Municipal Holiday (Leiria)", + "1963-05-22": "Municipal Holiday of Leiria", "1963-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", "1964-02-10": "Carnival", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-05-22": "Municipal Holiday (Leiria)", + "1964-05-22": "Municipal Holiday of Leiria", "1964-05-28": "Corpus Christi", "1964-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", "1965-03-01": "Carnival", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", - "1965-05-22": "Municipal Holiday (Leiria)", + "1965-05-22": "Municipal Holiday of Leiria", "1965-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1965-06-13": "St. Anthony's Day", "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", "1966-02-21": "Carnival", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-05-22": "Municipal Holiday (Leiria)", + "1966-05-22": "Municipal Holiday of Leiria", "1966-06-09": "Corpus Christi", "1966-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", "1967-02-06": "Carnival", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-05-22": "Municipal Holiday (Leiria)", + "1967-05-22": "Municipal Holiday of Leiria", "1967-05-25": "Corpus Christi", "1967-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", "1968-02-26": "Carnival", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", - "1968-05-22": "Municipal Holiday (Leiria)", + "1968-05-22": "Municipal Holiday of Leiria", "1968-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", "1969-02-17": "Carnival", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", - "1969-05-22": "Municipal Holiday (Leiria)", + "1969-05-22": "Municipal Holiday of Leiria", "1969-06-05": "Corpus Christi", "1969-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", "1970-02-09": "Carnival", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", - "1970-05-22": "Municipal Holiday (Leiria)", + "1970-05-22": "Municipal Holiday of Leiria", "1970-05-28": "Corpus Christi", "1970-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", "1971-02-22": "Carnival", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", - "1971-05-22": "Municipal Holiday (Leiria)", + "1971-05-22": "Municipal Holiday of Leiria", "1971-06-10": "Corpus Christi; Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", "1972-02-14": "Carnival", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-05-22": "Municipal Holiday (Leiria)", + "1972-05-22": "Municipal Holiday of Leiria", "1972-06-01": "Corpus Christi", "1972-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", "1973-03-05": "Carnival", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", - "1973-05-22": "Municipal Holiday (Leiria)", + "1973-05-22": "Municipal Holiday of Leiria", "1973-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1973-06-13": "St. Anthony's Day", "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", - "1974-05-22": "Municipal Holiday (Leiria)", + "1974-05-01": "Labor Day", + "1974-05-22": "Municipal Holiday of Leiria", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", - "1975-05-22": "Municipal Holiday (Leiria)", + "1975-05-01": "Labor Day", + "1975-05-22": "Municipal Holiday of Leiria", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", - "1976-05-22": "Municipal Holiday (Leiria)", + "1976-05-01": "Labor Day", + "1976-05-22": "Municipal Holiday of Leiria", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", - "1977-05-22": "Municipal Holiday (Leiria)", + "1977-05-01": "Labor Day", + "1977-05-22": "Municipal Holiday of Leiria", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", - "1978-05-22": "Municipal Holiday (Leiria)", + "1978-05-01": "Labor Day", + "1978-05-22": "Municipal Holiday of Leiria", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", - "1979-05-22": "Municipal Holiday (Leiria)", + "1979-05-01": "Labor Day", + "1979-05-22": "Municipal Holiday of Leiria", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", - "1980-05-22": "Municipal Holiday (Leiria)", + "1980-05-01": "Labor Day", + "1980-05-22": "Municipal Holiday of Leiria", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", - "1981-05-22": "Municipal Holiday (Leiria)", + "1981-05-01": "Labor Day", + "1981-05-22": "Municipal Holiday of Leiria", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", - "1982-05-22": "Municipal Holiday (Leiria)", + "1982-05-01": "Labor Day", + "1982-05-22": "Municipal Holiday of Leiria", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", - "1983-05-22": "Municipal Holiday (Leiria)", + "1983-05-01": "Labor Day", + "1983-05-22": "Municipal Holiday of Leiria", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", - "1984-05-22": "Municipal Holiday (Leiria)", + "1984-05-01": "Labor Day", + "1984-05-22": "Municipal Holiday of Leiria", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", - "1985-05-22": "Municipal Holiday (Leiria)", + "1985-05-01": "Labor Day", + "1985-05-22": "Municipal Holiday of Leiria", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", - "1986-05-22": "Municipal Holiday (Leiria)", + "1986-05-01": "Labor Day", + "1986-05-22": "Municipal Holiday of Leiria", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", - "1987-05-22": "Municipal Holiday (Leiria)", + "1987-05-01": "Labor Day", + "1987-05-22": "Municipal Holiday of Leiria", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", - "1988-05-22": "Municipal Holiday (Leiria)", + "1988-05-01": "Labor Day", + "1988-05-22": "Municipal Holiday of Leiria", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", - "1989-05-22": "Municipal Holiday (Leiria)", + "1989-05-01": "Labor Day", + "1989-05-22": "Municipal Holiday of Leiria", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", - "1990-05-22": "Municipal Holiday (Leiria)", + "1990-05-01": "Labor Day", + "1990-05-22": "Municipal Holiday of Leiria", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", - "1991-05-22": "Municipal Holiday (Leiria)", + "1991-05-01": "Labor Day", + "1991-05-22": "Municipal Holiday of Leiria", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", - "1992-05-22": "Municipal Holiday (Leiria)", + "1992-05-01": "Labor Day", + "1992-05-22": "Municipal Holiday of Leiria", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", - "1993-05-22": "Municipal Holiday (Leiria)", + "1993-05-01": "Labor Day", + "1993-05-22": "Municipal Holiday of Leiria", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", - "1994-05-22": "Municipal Holiday (Leiria)", + "1994-05-01": "Labor Day", + "1994-05-22": "Municipal Holiday of Leiria", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", - "1995-05-22": "Municipal Holiday (Leiria)", + "1995-05-01": "Labor Day", + "1995-05-22": "Municipal Holiday of Leiria", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", - "1996-05-22": "Municipal Holiday (Leiria)", + "1996-05-01": "Labor Day", + "1996-05-22": "Municipal Holiday of Leiria", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", - "1997-05-22": "Municipal Holiday (Leiria)", + "1997-05-01": "Labor Day", + "1997-05-22": "Municipal Holiday of Leiria", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", - "1998-05-22": "Municipal Holiday (Leiria)", + "1998-05-01": "Labor Day", + "1998-05-22": "Municipal Holiday of Leiria", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", - "1999-05-22": "Municipal Holiday (Leiria)", + "1999-05-01": "Labor Day", + "1999-05-22": "Municipal Holiday of Leiria", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", - "2000-05-22": "Municipal Holiday (Leiria)", + "2000-05-01": "Labor Day", + "2000-05-22": "Municipal Holiday of Leiria", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", - "2001-05-22": "Municipal Holiday (Leiria)", + "2001-05-01": "Labor Day", + "2001-05-22": "Municipal Holiday of Leiria", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", - "2002-05-22": "Municipal Holiday (Leiria)", + "2002-05-01": "Labor Day", + "2002-05-22": "Municipal Holiday of Leiria", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", - "2003-05-22": "Municipal Holiday (Leiria)", + "2003-05-01": "Labor Day", + "2003-05-22": "Municipal Holiday of Leiria", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", - "2004-05-22": "Municipal Holiday (Leiria)", + "2004-05-01": "Labor Day", + "2004-05-22": "Municipal Holiday of Leiria", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", - "2005-05-22": "Municipal Holiday (Leiria)", + "2005-05-01": "Labor Day", + "2005-05-22": "Municipal Holiday of Leiria", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", - "2006-05-22": "Municipal Holiday (Leiria)", + "2006-05-01": "Labor Day", + "2006-05-22": "Municipal Holiday of Leiria", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", - "2007-05-22": "Municipal Holiday (Leiria)", + "2007-05-01": "Labor Day", + "2007-05-22": "Municipal Holiday of Leiria", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,17 +1051,17 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", - "2008-05-22": "Corpus Christi; Municipal Holiday (Leiria)", + "2008-05-01": "Labor Day", + "2008-05-22": "Corpus Christi; Municipal Holiday of Leiria", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1069,18 +1069,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", - "2009-05-22": "Municipal Holiday (Leiria)", + "2009-05-01": "Labor Day", + "2009-05-22": "Municipal Holiday of Leiria", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1088,18 +1088,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", - "2010-05-22": "Municipal Holiday (Leiria)", + "2010-05-01": "Labor Day", + "2010-05-22": "Municipal Holiday of Leiria", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1107,18 +1107,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", - "2011-05-22": "Municipal Holiday (Leiria)", + "2011-05-01": "Labor Day", + "2011-05-22": "Municipal Holiday of Leiria", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1126,18 +1126,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", - "2012-05-22": "Municipal Holiday (Leiria)", + "2012-05-01": "Labor Day", + "2012-05-22": "Municipal Holiday of Leiria", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1145,14 +1145,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", - "2013-05-22": "Municipal Holiday (Leiria)", + "2013-05-01": "Labor Day", + "2013-05-22": "Municipal Holiday of Leiria", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1160,14 +1160,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", - "2014-05-22": "Municipal Holiday (Leiria)", + "2014-05-01": "Labor Day", + "2014-05-22": "Municipal Holiday of Leiria", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1175,14 +1175,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", - "2015-05-22": "Municipal Holiday (Leiria)", + "2015-05-01": "Labor Day", + "2015-05-22": "Municipal Holiday of Leiria", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1190,18 +1190,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", - "2016-05-22": "Municipal Holiday (Leiria)", + "2016-05-01": "Labor Day", + "2016-05-22": "Municipal Holiday of Leiria", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1209,18 +1209,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", - "2017-05-22": "Municipal Holiday (Leiria)", + "2017-05-01": "Labor Day", + "2017-05-22": "Municipal Holiday of Leiria", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1228,18 +1228,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", - "2018-05-22": "Municipal Holiday (Leiria)", + "2018-05-01": "Labor Day", + "2018-05-22": "Municipal Holiday of Leiria", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1247,18 +1247,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", - "2019-05-22": "Municipal Holiday (Leiria)", + "2019-05-01": "Labor Day", + "2019-05-22": "Municipal Holiday of Leiria", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1266,18 +1266,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", - "2020-05-22": "Municipal Holiday (Leiria)", + "2020-05-01": "Labor Day", + "2020-05-22": "Municipal Holiday of Leiria", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1285,18 +1285,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", - "2021-05-22": "Municipal Holiday (Leiria)", + "2021-05-01": "Labor Day", + "2021-05-22": "Municipal Holiday of Leiria", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1304,18 +1304,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", - "2022-05-22": "Municipal Holiday (Leiria)", + "2022-05-01": "Labor Day", + "2022-05-22": "Municipal Holiday of Leiria", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1323,18 +1323,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", - "2023-05-22": "Municipal Holiday (Leiria)", + "2023-05-01": "Labor Day", + "2023-05-22": "Municipal Holiday of Leiria", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1342,18 +1342,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", - "2024-05-22": "Municipal Holiday (Leiria)", + "2024-05-01": "Labor Day", + "2024-05-22": "Municipal Holiday of Leiria", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1361,18 +1361,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", - "2025-05-22": "Municipal Holiday (Leiria)", + "2025-05-01": "Labor Day", + "2025-05-22": "Municipal Holiday of Leiria", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1380,18 +1380,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", - "2026-05-22": "Municipal Holiday (Leiria)", + "2026-05-01": "Labor Day", + "2026-05-22": "Municipal Holiday of Leiria", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1399,18 +1399,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", - "2027-05-22": "Municipal Holiday (Leiria)", + "2027-05-01": "Labor Day", + "2027-05-22": "Municipal Holiday of Leiria", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1418,18 +1418,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", - "2028-05-22": "Municipal Holiday (Leiria)", + "2028-05-01": "Labor Day", + "2028-05-22": "Municipal Holiday of Leiria", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1437,18 +1437,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", - "2029-05-22": "Municipal Holiday (Leiria)", + "2029-05-01": "Labor Day", + "2029-05-22": "Municipal Holiday of Leiria", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1456,18 +1456,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", - "2030-05-22": "Municipal Holiday (Leiria)", + "2030-05-01": "Labor Day", + "2030-05-22": "Municipal Holiday of Leiria", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1475,18 +1475,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", - "2031-05-22": "Municipal Holiday (Leiria)", + "2031-05-01": "Labor Day", + "2031-05-22": "Municipal Holiday of Leiria", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1494,18 +1494,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", - "2032-05-22": "Municipal Holiday (Leiria)", + "2032-05-01": "Labor Day", + "2032-05-22": "Municipal Holiday of Leiria", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1513,18 +1513,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", - "2033-05-22": "Municipal Holiday (Leiria)", + "2033-05-01": "Labor Day", + "2033-05-22": "Municipal Holiday of Leiria", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1532,18 +1532,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", - "2034-05-22": "Municipal Holiday (Leiria)", + "2034-05-01": "Labor Day", + "2034-05-22": "Municipal Holiday of Leiria", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1551,18 +1551,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", - "2035-05-22": "Municipal Holiday (Leiria)", + "2035-05-01": "Labor Day", + "2035-05-22": "Municipal Holiday of Leiria", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1570,18 +1570,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", - "2036-05-22": "Municipal Holiday (Leiria)", + "2036-05-01": "Labor Day", + "2036-05-22": "Municipal Holiday of Leiria", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1589,36 +1589,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", - "2037-05-22": "Municipal Holiday (Leiria)", + "2037-05-01": "Labor Day", + "2037-05-22": "Municipal Holiday of Leiria", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", - "2038-05-22": "Municipal Holiday (Leiria)", + "2038-05-01": "Labor Day", + "2038-05-22": "Municipal Holiday of Leiria", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1626,18 +1626,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", - "2039-05-22": "Municipal Holiday (Leiria)", + "2039-05-01": "Labor Day", + "2039-05-22": "Municipal Holiday of Leiria", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1645,18 +1645,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", - "2040-05-22": "Municipal Holiday (Leiria)", + "2040-05-01": "Labor Day", + "2040-05-22": "Municipal Holiday of Leiria", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1664,18 +1664,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", - "2041-05-22": "Municipal Holiday (Leiria)", + "2041-05-01": "Labor Day", + "2041-05-22": "Municipal Holiday of Leiria", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1683,18 +1683,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", - "2042-05-22": "Municipal Holiday (Leiria)", + "2042-05-01": "Labor Day", + "2042-05-22": "Municipal Holiday of Leiria", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1702,18 +1702,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", - "2043-05-22": "Municipal Holiday (Leiria)", + "2043-05-01": "Labor Day", + "2043-05-22": "Municipal Holiday of Leiria", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1721,18 +1721,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", - "2044-05-22": "Municipal Holiday (Leiria)", + "2044-05-01": "Labor Day", + "2044-05-22": "Municipal Holiday of Leiria", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1740,18 +1740,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", - "2045-05-22": "Municipal Holiday (Leiria)", + "2045-05-01": "Labor Day", + "2045-05-22": "Municipal Holiday of Leiria", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1759,18 +1759,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", - "2046-05-22": "Municipal Holiday (Leiria)", + "2046-05-01": "Labor Day", + "2046-05-22": "Municipal Holiday of Leiria", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1778,17 +1778,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", - "2047-05-22": "Municipal Holiday (Leiria)", + "2047-05-01": "Labor Day", + "2047-05-22": "Municipal Holiday of Leiria", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1796,18 +1796,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", - "2048-05-22": "Municipal Holiday (Leiria)", + "2048-05-01": "Labor Day", + "2048-05-22": "Municipal Holiday of Leiria", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1815,18 +1815,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", - "2049-05-22": "Municipal Holiday (Leiria)", + "2049-05-01": "Labor Day", + "2049-05-22": "Municipal Holiday of Leiria", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1834,18 +1834,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", - "2050-05-22": "Municipal Holiday (Leiria)", + "2050-05-01": "Labor Day", + "2050-05-22": "Municipal Holiday of Leiria", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_11.json b/snapshots/countries/PT_11.json index 246b236ef..a8ad2a9e1 100644 --- a/snapshots/countries/PT_11.json +++ b/snapshots/countries/PT_11.json @@ -8,11 +8,11 @@ "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -24,11 +24,11 @@ "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -40,11 +40,11 @@ "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -56,11 +56,11 @@ "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -72,11 +72,11 @@ "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -88,11 +88,11 @@ "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -104,11 +104,11 @@ "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -120,11 +120,11 @@ "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -136,11 +136,11 @@ "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -152,11 +152,11 @@ "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -168,11 +168,11 @@ "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -184,11 +184,11 @@ "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -200,11 +200,11 @@ "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -215,11 +215,11 @@ "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -231,11 +231,11 @@ "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -247,11 +247,11 @@ "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -279,11 +279,11 @@ "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -294,11 +294,11 @@ "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -310,11 +310,11 @@ "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -326,11 +326,11 @@ "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -341,11 +341,11 @@ "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -357,11 +357,11 @@ "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -373,11 +373,11 @@ "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -385,16 +385,16 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -402,17 +402,17 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -420,17 +420,17 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -438,17 +438,17 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -456,17 +456,17 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -474,17 +474,17 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -492,17 +492,17 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -510,17 +510,17 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -528,16 +528,16 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -545,17 +545,17 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -563,17 +563,17 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -581,17 +581,17 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -599,17 +599,17 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -617,17 +617,17 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -635,17 +635,17 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -653,17 +653,17 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -671,17 +671,17 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -689,17 +689,17 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -707,17 +707,17 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -725,16 +725,16 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -742,17 +742,17 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -760,17 +760,17 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -778,17 +778,17 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -796,17 +796,17 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -814,17 +814,17 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -832,17 +832,17 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -850,17 +850,17 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -868,17 +868,17 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -886,17 +886,17 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -904,17 +904,17 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -922,16 +922,16 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -939,17 +939,17 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -957,17 +957,17 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -975,17 +975,17 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -993,17 +993,17 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1011,17 +1011,17 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1029,17 +1029,17 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1047,17 +1047,17 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1065,17 +1065,17 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1083,13 +1083,13 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1097,13 +1097,13 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1111,13 +1111,13 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1125,17 +1125,17 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1143,17 +1143,17 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1161,17 +1161,17 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1179,17 +1179,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1197,17 +1197,17 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1215,17 +1215,17 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1233,17 +1233,17 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1251,17 +1251,17 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1269,17 +1269,17 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1287,17 +1287,17 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1305,17 +1305,17 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1323,17 +1323,17 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1341,17 +1341,17 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1359,17 +1359,17 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1377,17 +1377,17 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1395,17 +1395,17 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1413,17 +1413,17 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1431,17 +1431,17 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1449,17 +1449,17 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1467,17 +1467,17 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1485,17 +1485,17 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1503,34 +1503,34 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1538,17 +1538,17 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1556,17 +1556,17 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1574,17 +1574,17 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1592,17 +1592,17 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1610,17 +1610,17 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1628,17 +1628,17 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1646,17 +1646,17 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1664,17 +1664,17 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1682,16 +1682,16 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1699,17 +1699,17 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1717,17 +1717,17 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1735,17 +1735,17 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_12.json b/snapshots/countries/PT_12.json index 4226a1440..0bd6c4eb5 100644 --- a/snapshots/countries/PT_12.json +++ b/snapshots/countries/PT_12.json @@ -3,405 +3,405 @@ "1950-02-20": "Carnival", "1950-04-07": "Good Friday", "1950-04-09": "Easter Sunday", - "1950-05-23": "Municipal Holiday (Portalegre)", + "1950-05-23": "Municipal Holiday of Portalegre", "1950-06-08": "Corpus Christi", "1950-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", "1951-02-05": "Carnival", "1951-03-23": "Good Friday", "1951-03-25": "Easter Sunday", - "1951-05-23": "Municipal Holiday (Portalegre)", + "1951-05-23": "Municipal Holiday of Portalegre", "1951-05-24": "Corpus Christi", "1951-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", "1952-02-25": "Carnival", "1952-04-11": "Good Friday", "1952-04-13": "Easter Sunday", - "1952-05-23": "Municipal Holiday (Portalegre)", + "1952-05-23": "Municipal Holiday of Portalegre", "1952-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1952-06-12": "Corpus Christi", "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", "1953-02-16": "Carnival", "1953-04-03": "Good Friday", "1953-04-05": "Easter Sunday", - "1953-05-23": "Municipal Holiday (Portalegre)", + "1953-05-23": "Municipal Holiday of Portalegre", "1953-06-04": "Corpus Christi", "1953-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", "1954-03-01": "Carnival", "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", - "1954-05-23": "Municipal Holiday (Portalegre)", + "1954-05-23": "Municipal Holiday of Portalegre", "1954-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1954-06-13": "St. Anthony's Day", "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", "1955-02-21": "Carnival", "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", - "1955-05-23": "Municipal Holiday (Portalegre)", + "1955-05-23": "Municipal Holiday of Portalegre", "1955-06-09": "Corpus Christi", "1955-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", "1956-02-13": "Carnival", "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", - "1956-05-23": "Municipal Holiday (Portalegre)", + "1956-05-23": "Municipal Holiday of Portalegre", "1956-05-31": "Corpus Christi", "1956-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", "1957-03-04": "Carnival", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-23": "Municipal Holiday (Portalegre)", + "1957-05-23": "Municipal Holiday of Portalegre", "1957-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1957-06-13": "St. Anthony's Day", "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", "1958-02-17": "Carnival", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-05-23": "Municipal Holiday (Portalegre)", + "1958-05-23": "Municipal Holiday of Portalegre", "1958-06-05": "Corpus Christi", "1958-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", "1959-02-09": "Carnival", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-05-23": "Municipal Holiday (Portalegre)", + "1959-05-23": "Municipal Holiday of Portalegre", "1959-05-28": "Corpus Christi", "1959-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", "1960-02-29": "Carnival", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", - "1960-05-23": "Municipal Holiday (Portalegre)", + "1960-05-23": "Municipal Holiday of Portalegre", "1960-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1960-06-13": "St. Anthony's Day", "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", "1961-02-13": "Carnival", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", - "1961-05-23": "Municipal Holiday (Portalegre)", + "1961-05-23": "Municipal Holiday of Portalegre", "1961-06-01": "Corpus Christi", "1961-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", "1962-03-05": "Carnival", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", - "1962-05-23": "Municipal Holiday (Portalegre)", + "1962-05-23": "Municipal Holiday of Portalegre", "1962-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1962-06-13": "St. Anthony's Day", "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", "1963-02-25": "Carnival", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", - "1963-05-23": "Municipal Holiday (Portalegre)", + "1963-05-23": "Municipal Holiday of Portalegre", "1963-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", "1964-02-10": "Carnival", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-05-23": "Municipal Holiday (Portalegre)", + "1964-05-23": "Municipal Holiday of Portalegre", "1964-05-28": "Corpus Christi", "1964-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", "1965-03-01": "Carnival", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", - "1965-05-23": "Municipal Holiday (Portalegre)", + "1965-05-23": "Municipal Holiday of Portalegre", "1965-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1965-06-13": "St. Anthony's Day", "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", "1966-02-21": "Carnival", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-05-23": "Municipal Holiday (Portalegre)", + "1966-05-23": "Municipal Holiday of Portalegre", "1966-06-09": "Corpus Christi", "1966-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", "1967-02-06": "Carnival", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-05-23": "Municipal Holiday (Portalegre)", + "1967-05-23": "Municipal Holiday of Portalegre", "1967-05-25": "Corpus Christi", "1967-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", "1968-02-26": "Carnival", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", - "1968-05-23": "Municipal Holiday (Portalegre)", + "1968-05-23": "Municipal Holiday of Portalegre", "1968-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", "1969-02-17": "Carnival", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", - "1969-05-23": "Municipal Holiday (Portalegre)", + "1969-05-23": "Municipal Holiday of Portalegre", "1969-06-05": "Corpus Christi", "1969-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", "1970-02-09": "Carnival", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", - "1970-05-23": "Municipal Holiday (Portalegre)", + "1970-05-23": "Municipal Holiday of Portalegre", "1970-05-28": "Corpus Christi", "1970-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", "1971-02-22": "Carnival", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", - "1971-05-23": "Municipal Holiday (Portalegre)", + "1971-05-23": "Municipal Holiday of Portalegre", "1971-06-10": "Corpus Christi; Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", "1972-02-14": "Carnival", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-05-23": "Municipal Holiday (Portalegre)", + "1972-05-23": "Municipal Holiday of Portalegre", "1972-06-01": "Corpus Christi", "1972-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", "1973-03-05": "Carnival", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", - "1973-05-23": "Municipal Holiday (Portalegre)", + "1973-05-23": "Municipal Holiday of Portalegre", "1973-06-10": "Day of Cam\u00f5es, Portugal, and the Portuguese Race", "1973-06-13": "St. Anthony's Day", "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", - "1974-05-23": "Municipal Holiday (Portalegre)", + "1974-05-01": "Labor Day", + "1974-05-23": "Municipal Holiday of Portalegre", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", - "1975-05-23": "Municipal Holiday (Portalegre)", + "1975-05-01": "Labor Day", + "1975-05-23": "Municipal Holiday of Portalegre", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", - "1976-05-23": "Municipal Holiday (Portalegre)", + "1976-05-01": "Labor Day", + "1976-05-23": "Municipal Holiday of Portalegre", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", - "1977-05-23": "Municipal Holiday (Portalegre)", + "1977-05-01": "Labor Day", + "1977-05-23": "Municipal Holiday of Portalegre", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", - "1978-05-23": "Municipal Holiday (Portalegre)", + "1978-05-01": "Labor Day", + "1978-05-23": "Municipal Holiday of Portalegre", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", - "1979-05-23": "Municipal Holiday (Portalegre)", + "1979-05-01": "Labor Day", + "1979-05-23": "Municipal Holiday of Portalegre", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", - "1980-05-23": "Municipal Holiday (Portalegre)", + "1980-05-01": "Labor Day", + "1980-05-23": "Municipal Holiday of Portalegre", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", - "1981-05-23": "Municipal Holiday (Portalegre)", + "1981-05-01": "Labor Day", + "1981-05-23": "Municipal Holiday of Portalegre", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", - "1982-05-23": "Municipal Holiday (Portalegre)", + "1982-05-01": "Labor Day", + "1982-05-23": "Municipal Holiday of Portalegre", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", - "1983-05-23": "Municipal Holiday (Portalegre)", + "1983-05-01": "Labor Day", + "1983-05-23": "Municipal Holiday of Portalegre", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", - "1984-05-23": "Municipal Holiday (Portalegre)", + "1984-05-01": "Labor Day", + "1984-05-23": "Municipal Holiday of Portalegre", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", - "1985-05-23": "Municipal Holiday (Portalegre)", + "1985-05-01": "Labor Day", + "1985-05-23": "Municipal Holiday of Portalegre", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", - "1986-05-23": "Municipal Holiday (Portalegre)", + "1986-05-01": "Labor Day", + "1986-05-23": "Municipal Holiday of Portalegre", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", - "1987-05-23": "Municipal Holiday (Portalegre)", + "1987-05-01": "Labor Day", + "1987-05-23": "Municipal Holiday of Portalegre", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", - "1988-05-23": "Municipal Holiday (Portalegre)", + "1988-05-01": "Labor Day", + "1988-05-23": "Municipal Holiday of Portalegre", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", - "1989-05-23": "Municipal Holiday (Portalegre)", + "1989-05-01": "Labor Day", + "1989-05-23": "Municipal Holiday of Portalegre", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", - "1990-05-23": "Municipal Holiday (Portalegre)", + "1990-05-01": "Labor Day", + "1990-05-23": "Municipal Holiday of Portalegre", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", - "1991-05-23": "Municipal Holiday (Portalegre)", + "1991-05-01": "Labor Day", + "1991-05-23": "Municipal Holiday of Portalegre", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", - "1992-05-23": "Municipal Holiday (Portalegre)", + "1992-05-01": "Labor Day", + "1992-05-23": "Municipal Holiday of Portalegre", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", - "1993-05-23": "Municipal Holiday (Portalegre)", + "1993-05-01": "Labor Day", + "1993-05-23": "Municipal Holiday of Portalegre", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", - "1994-05-23": "Municipal Holiday (Portalegre)", + "1994-05-01": "Labor Day", + "1994-05-23": "Municipal Holiday of Portalegre", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", - "1995-05-23": "Municipal Holiday (Portalegre)", + "1995-05-01": "Labor Day", + "1995-05-23": "Municipal Holiday of Portalegre", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", - "1996-05-23": "Municipal Holiday (Portalegre)", + "1996-05-01": "Labor Day", + "1996-05-23": "Municipal Holiday of Portalegre", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", - "1997-05-23": "Municipal Holiday (Portalegre)", + "1997-05-01": "Labor Day", + "1997-05-23": "Municipal Holiday of Portalegre", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", - "1998-05-23": "Municipal Holiday (Portalegre)", + "1998-05-01": "Labor Day", + "1998-05-23": "Municipal Holiday of Portalegre", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", - "1999-05-23": "Municipal Holiday (Portalegre)", + "1999-05-01": "Labor Day", + "1999-05-23": "Municipal Holiday of Portalegre", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", - "2000-05-23": "Municipal Holiday (Portalegre)", + "2000-05-01": "Labor Day", + "2000-05-23": "Municipal Holiday of Portalegre", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", - "2001-05-23": "Municipal Holiday (Portalegre)", + "2001-05-01": "Labor Day", + "2001-05-23": "Municipal Holiday of Portalegre", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", - "2002-05-23": "Municipal Holiday (Portalegre)", + "2002-05-01": "Labor Day", + "2002-05-23": "Municipal Holiday of Portalegre", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", - "2003-05-23": "Municipal Holiday (Portalegre)", + "2003-05-01": "Labor Day", + "2003-05-23": "Municipal Holiday of Portalegre", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", - "2004-05-23": "Municipal Holiday (Portalegre)", + "2004-05-01": "Labor Day", + "2004-05-23": "Municipal Holiday of Portalegre", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", - "2005-05-23": "Municipal Holiday (Portalegre)", + "2005-05-01": "Labor Day", + "2005-05-23": "Municipal Holiday of Portalegre", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", - "2006-05-23": "Municipal Holiday (Portalegre)", + "2006-05-01": "Labor Day", + "2006-05-23": "Municipal Holiday of Portalegre", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", - "2007-05-23": "Municipal Holiday (Portalegre)", + "2007-05-01": "Labor Day", + "2007-05-23": "Municipal Holiday of Portalegre", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", - "2008-05-23": "Municipal Holiday (Portalegre)", + "2008-05-23": "Municipal Holiday of Portalegre", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", - "2009-05-23": "Municipal Holiday (Portalegre)", + "2009-05-01": "Labor Day", + "2009-05-23": "Municipal Holiday of Portalegre", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", - "2010-05-23": "Municipal Holiday (Portalegre)", + "2010-05-01": "Labor Day", + "2010-05-23": "Municipal Holiday of Portalegre", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", - "2011-05-23": "Municipal Holiday (Portalegre)", + "2011-05-01": "Labor Day", + "2011-05-23": "Municipal Holiday of Portalegre", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", - "2012-05-23": "Municipal Holiday (Portalegre)", + "2012-05-01": "Labor Day", + "2012-05-23": "Municipal Holiday of Portalegre", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", - "2013-05-23": "Municipal Holiday (Portalegre)", + "2013-05-01": "Labor Day", + "2013-05-23": "Municipal Holiday of Portalegre", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", - "2014-05-23": "Municipal Holiday (Portalegre)", + "2014-05-01": "Labor Day", + "2014-05-23": "Municipal Holiday of Portalegre", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", - "2015-05-23": "Municipal Holiday (Portalegre)", + "2015-05-01": "Labor Day", + "2015-05-23": "Municipal Holiday of Portalegre", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", - "2016-05-23": "Municipal Holiday (Portalegre)", + "2016-05-01": "Labor Day", + "2016-05-23": "Municipal Holiday of Portalegre", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", - "2017-05-23": "Municipal Holiday (Portalegre)", + "2017-05-01": "Labor Day", + "2017-05-23": "Municipal Holiday of Portalegre", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", - "2018-05-23": "Municipal Holiday (Portalegre)", + "2018-05-01": "Labor Day", + "2018-05-23": "Municipal Holiday of Portalegre", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", - "2019-05-23": "Municipal Holiday (Portalegre)", + "2019-05-01": "Labor Day", + "2019-05-23": "Municipal Holiday of Portalegre", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", - "2020-05-23": "Municipal Holiday (Portalegre)", + "2020-05-01": "Labor Day", + "2020-05-23": "Municipal Holiday of Portalegre", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", - "2021-05-23": "Municipal Holiday (Portalegre)", + "2021-05-01": "Labor Day", + "2021-05-23": "Municipal Holiday of Portalegre", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", - "2022-05-23": "Municipal Holiday (Portalegre)", + "2022-05-01": "Labor Day", + "2022-05-23": "Municipal Holiday of Portalegre", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", - "2023-05-23": "Municipal Holiday (Portalegre)", + "2023-05-01": "Labor Day", + "2023-05-23": "Municipal Holiday of Portalegre", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", - "2024-05-23": "Municipal Holiday (Portalegre)", + "2024-05-01": "Labor Day", + "2024-05-23": "Municipal Holiday of Portalegre", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", - "2025-05-23": "Municipal Holiday (Portalegre)", + "2025-05-01": "Labor Day", + "2025-05-23": "Municipal Holiday of Portalegre", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", - "2026-05-23": "Municipal Holiday (Portalegre)", + "2026-05-01": "Labor Day", + "2026-05-23": "Municipal Holiday of Portalegre", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", - "2027-05-23": "Municipal Holiday (Portalegre)", + "2027-05-01": "Labor Day", + "2027-05-23": "Municipal Holiday of Portalegre", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", - "2028-05-23": "Municipal Holiday (Portalegre)", + "2028-05-01": "Labor Day", + "2028-05-23": "Municipal Holiday of Portalegre", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", - "2029-05-23": "Municipal Holiday (Portalegre)", + "2029-05-01": "Labor Day", + "2029-05-23": "Municipal Holiday of Portalegre", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", - "2030-05-23": "Municipal Holiday (Portalegre)", + "2030-05-01": "Labor Day", + "2030-05-23": "Municipal Holiday of Portalegre", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", - "2031-05-23": "Municipal Holiday (Portalegre)", + "2031-05-01": "Labor Day", + "2031-05-23": "Municipal Holiday of Portalegre", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", - "2032-05-23": "Municipal Holiday (Portalegre)", + "2032-05-01": "Labor Day", + "2032-05-23": "Municipal Holiday of Portalegre", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", - "2033-05-23": "Municipal Holiday (Portalegre)", + "2033-05-01": "Labor Day", + "2033-05-23": "Municipal Holiday of Portalegre", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", - "2034-05-23": "Municipal Holiday (Portalegre)", + "2034-05-01": "Labor Day", + "2034-05-23": "Municipal Holiday of Portalegre", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", - "2035-05-23": "Municipal Holiday (Portalegre)", + "2035-05-01": "Labor Day", + "2035-05-23": "Municipal Holiday of Portalegre", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", - "2036-05-23": "Municipal Holiday (Portalegre)", + "2036-05-01": "Labor Day", + "2036-05-23": "Municipal Holiday of Portalegre", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", - "2037-05-23": "Municipal Holiday (Portalegre)", + "2037-05-01": "Labor Day", + "2037-05-23": "Municipal Holiday of Portalegre", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", - "2038-05-23": "Municipal Holiday (Portalegre)", + "2038-05-01": "Labor Day", + "2038-05-23": "Municipal Holiday of Portalegre", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", - "2039-05-23": "Municipal Holiday (Portalegre)", + "2039-05-01": "Labor Day", + "2039-05-23": "Municipal Holiday of Portalegre", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", - "2040-05-23": "Municipal Holiday (Portalegre)", + "2040-05-01": "Labor Day", + "2040-05-23": "Municipal Holiday of Portalegre", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", - "2041-05-23": "Municipal Holiday (Portalegre)", + "2041-05-01": "Labor Day", + "2041-05-23": "Municipal Holiday of Portalegre", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", - "2042-05-23": "Municipal Holiday (Portalegre)", + "2042-05-01": "Labor Day", + "2042-05-23": "Municipal Holiday of Portalegre", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", - "2043-05-23": "Municipal Holiday (Portalegre)", + "2043-05-01": "Labor Day", + "2043-05-23": "Municipal Holiday of Portalegre", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", - "2044-05-23": "Municipal Holiday (Portalegre)", + "2044-05-01": "Labor Day", + "2044-05-23": "Municipal Holiday of Portalegre", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", - "2045-05-23": "Municipal Holiday (Portalegre)", + "2045-05-01": "Labor Day", + "2045-05-23": "Municipal Holiday of Portalegre", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", - "2046-05-23": "Municipal Holiday (Portalegre)", + "2046-05-01": "Labor Day", + "2046-05-23": "Municipal Holiday of Portalegre", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", - "2047-05-23": "Municipal Holiday (Portalegre)", + "2047-05-01": "Labor Day", + "2047-05-23": "Municipal Holiday of Portalegre", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", - "2048-05-23": "Municipal Holiday (Portalegre)", + "2048-05-01": "Labor Day", + "2048-05-23": "Municipal Holiday of Portalegre", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", - "2049-05-23": "Municipal Holiday (Portalegre)", + "2049-05-01": "Labor Day", + "2049-05-23": "Municipal Holiday of Portalegre", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", - "2050-05-23": "Municipal Holiday (Portalegre)", + "2050-05-01": "Labor Day", + "2050-05-23": "Municipal Holiday of Portalegre", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_13.json b/snapshots/countries/PT_13.json index da11c4291..e4f9ce7ae 100644 --- a/snapshots/countries/PT_13.json +++ b/snapshots/countries/PT_13.json @@ -9,11 +9,11 @@ "1950-06-24": "St. John's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-06-24": "St. John's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-06-24": "St. John's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-06-24": "St. John's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-06-24": "St. John's Day", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-06-24": "St. John's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-06-24": "St. John's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-06-24": "St. John's Day", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-06-24": "St. John's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-06-24": "St. John's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-06-24": "St. John's Day", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-06-24": "St. John's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-06-24": "St. John's Day", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-06-24": "St. John's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-06-24": "St. John's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-06-24": "St. John's Day", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-06-24": "St. John's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-06-24": "St. John's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-06-24": "St. John's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-06-24": "St. John's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-06-24": "St. John's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-06-24": "St. John's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-06-24": "St. John's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-06-24": "St. John's Day", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-06-24": "St. John's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-06-24": "St. John's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-06-24": "St. John's Day", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-06-24": "St. John's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-06-24": "St. John's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-06-24": "St. John's Day", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-06-24": "St. John's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-06-24": "St. John's Day", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-06-24": "St. John's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-06-24": "St. John's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-06-24": "St. John's Day", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-06-24": "St. John's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-06-24": "St. John's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-06-24": "St. John's Day", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-06-24": "St. John's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-06-24": "St. John's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-06-24": "St. John's Day", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-06-24": "St. John's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-06-24": "St. John's Day", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-06-24": "St. John's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-06-24": "St. John's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-06-24": "St. John's Day", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-06-24": "St. John's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-06-24": "St. John's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-06-24": "St. John's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-06-24": "St. John's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-06-24": "St. John's Day", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-06-24": "St. John's Day", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-06-24": "St. John's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-06-24": "St. John's Day", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-06-24": "St. John's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-06-24": "St. John's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-06-24": "St. John's Day", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-06-24": "St. John's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-06-24": "St. John's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-06-24": "St. John's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-06-24": "St. John's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-06-24": "St. John's Day", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-06-24": "St. John's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-06-24": "St. John's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-06-24": "St. John's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-06-24": "St. John's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-06-24": "St. John's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-06-24": "St. John's Day", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-06-24": "St. John's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-06-24": "St. John's Day", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-06-24": "St. John's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-06-24": "St. John's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-06-24": "St. John's Day", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-06-24": "St. John's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-06-24": "St. John's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-06-24": "St. John's Day", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-06-24": "St. John's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-06-24": "St. John's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-06-24": "St. John's Day", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-06-24": "St. John's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-06-24": "St. John's Day", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-06-24": "St. John's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-06-24": "St. John's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-06-24": "St. John's Day", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-06-24": "St. John's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-06-24": "St. John's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-06-24": "St. John's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,35 +1590,35 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-06-24": "St. John's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi; St. John's Day", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1626,18 +1626,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-06-24": "St. John's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1645,18 +1645,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-06-24": "St. John's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1664,18 +1664,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-06-24": "St. John's Day", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1683,18 +1683,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-06-24": "St. John's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1702,18 +1702,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-06-24": "St. John's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1721,18 +1721,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-06-24": "St. John's Day", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1740,18 +1740,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-06-24": "St. John's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1759,18 +1759,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-06-24": "St. John's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1778,17 +1778,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-06-24": "St. John's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1796,18 +1796,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-06-24": "St. John's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1815,18 +1815,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-06-24": "St. John's Day", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1834,18 +1834,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-06-24": "St. John's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_14.json b/snapshots/countries/PT_14.json index aefa5067c..074a41d22 100644 --- a/snapshots/countries/PT_14.json +++ b/snapshots/countries/PT_14.json @@ -9,11 +9,11 @@ "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -410,16 +410,16 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -428,17 +428,17 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -447,17 +447,17 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -466,17 +466,17 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -485,17 +485,17 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -504,17 +504,17 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -523,17 +523,17 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -542,17 +542,17 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -561,16 +561,16 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -579,17 +579,17 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -598,17 +598,17 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -617,17 +617,17 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -636,17 +636,17 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -655,17 +655,17 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -674,17 +674,17 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -693,17 +693,17 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -712,17 +712,17 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -731,17 +731,17 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -750,17 +750,17 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -769,16 +769,16 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -787,17 +787,17 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -806,17 +806,17 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -825,17 +825,17 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -844,17 +844,17 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -863,17 +863,17 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -882,17 +882,17 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -901,17 +901,17 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -920,17 +920,17 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -939,17 +939,17 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -958,17 +958,17 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -977,16 +977,16 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -995,17 +995,17 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1014,17 +1014,17 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1033,17 +1033,17 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1052,17 +1052,17 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1071,17 +1071,17 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1090,17 +1090,17 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1109,17 +1109,17 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1128,17 +1128,17 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1147,13 +1147,13 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1162,13 +1162,13 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1177,13 +1177,13 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1192,17 +1192,17 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1211,17 +1211,17 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1230,17 +1230,17 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1249,17 +1249,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1268,17 +1268,17 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1287,17 +1287,17 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1306,17 +1306,17 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1325,17 +1325,17 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1344,17 +1344,17 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1363,17 +1363,17 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1382,17 +1382,17 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1401,17 +1401,17 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1420,17 +1420,17 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1439,17 +1439,17 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1458,17 +1458,17 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1477,17 +1477,17 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1496,17 +1496,17 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1515,17 +1515,17 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1534,17 +1534,17 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1553,17 +1553,17 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1572,17 +1572,17 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1591,17 +1591,17 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", @@ -1609,17 +1609,17 @@ "2038-03-19": "St. Joseph's Day", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1628,17 +1628,17 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1647,17 +1647,17 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1666,17 +1666,17 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1685,17 +1685,17 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1704,17 +1704,17 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1723,17 +1723,17 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1742,17 +1742,17 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1761,17 +1761,17 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1780,16 +1780,16 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1798,17 +1798,17 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1817,17 +1817,17 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1836,17 +1836,17 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_15.json b/snapshots/countries/PT_15.json index 9ffe46054..beedd2489 100644 --- a/snapshots/countries/PT_15.json +++ b/snapshots/countries/PT_15.json @@ -9,11 +9,11 @@ "1950-08-15": "Assumption Day", "1950-09-15": "Bocage Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-08-15": "Assumption Day", "1951-09-15": "Bocage Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-08-15": "Assumption Day", "1952-09-15": "Bocage Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-08-15": "Assumption Day", "1953-09-15": "Bocage Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-08-15": "Assumption Day", "1954-09-15": "Bocage Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-08-15": "Assumption Day", "1955-09-15": "Bocage Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-08-15": "Assumption Day", "1956-09-15": "Bocage Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-08-15": "Assumption Day", "1957-09-15": "Bocage Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-08-15": "Assumption Day", "1958-09-15": "Bocage Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-08-15": "Assumption Day", "1959-09-15": "Bocage Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-08-15": "Assumption Day", "1960-09-15": "Bocage Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-08-15": "Assumption Day", "1961-09-15": "Bocage Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-08-15": "Assumption Day", "1962-09-15": "Bocage Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-08-15": "Assumption Day", "1963-09-15": "Bocage Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-08-15": "Assumption Day", "1964-09-15": "Bocage Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-08-15": "Assumption Day", "1965-09-15": "Bocage Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-08-15": "Assumption Day", "1966-09-15": "Bocage Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-08-15": "Assumption Day", "1967-09-15": "Bocage Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-08-15": "Assumption Day", "1968-09-15": "Bocage Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-08-15": "Assumption Day", "1969-09-15": "Bocage Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-08-15": "Assumption Day", "1970-09-15": "Bocage Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-08-15": "Assumption Day", "1971-09-15": "Bocage Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-08-15": "Assumption Day", "1972-09-15": "Bocage Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-08-15": "Assumption Day", "1973-09-15": "Bocage Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-09-15": "Bocage Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-09-15": "Bocage Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-09-15": "Bocage Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-09-15": "Bocage Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-09-15": "Bocage Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-09-15": "Bocage Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-09-15": "Bocage Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-09-15": "Bocage Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-09-15": "Bocage Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-09-15": "Bocage Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-09-15": "Bocage Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-09-15": "Bocage Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-09-15": "Bocage Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-09-15": "Bocage Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-09-15": "Bocage Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-09-15": "Bocage Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-09-15": "Bocage Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-09-15": "Bocage Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-09-15": "Bocage Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-09-15": "Bocage Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-09-15": "Bocage Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-09-15": "Bocage Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-09-15": "Bocage Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-09-15": "Bocage Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-09-15": "Bocage Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-09-15": "Bocage Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-09-15": "Bocage Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-09-15": "Bocage Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-09-15": "Bocage Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-09-15": "Bocage Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-09-15": "Bocage Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-09-15": "Bocage Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-09-15": "Bocage Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-09-15": "Bocage Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-09-15": "Bocage Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-09-15": "Bocage Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-09-15": "Bocage Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-09-15": "Bocage Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-09-15": "Bocage Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-09-15": "Bocage Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-09-15": "Bocage Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-09-15": "Bocage Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-09-15": "Bocage Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-09-15": "Bocage Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-09-15": "Bocage Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-09-15": "Bocage Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-09-15": "Bocage Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-09-15": "Bocage Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-09-15": "Bocage Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-09-15": "Bocage Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-09-15": "Bocage Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-09-15": "Bocage Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-09-15": "Bocage Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-09-15": "Bocage Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-09-15": "Bocage Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-09-15": "Bocage Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-09-15": "Bocage Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-09-15": "Bocage Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-09-15": "Bocage Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-09-15": "Bocage Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-09-15": "Bocage Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-09-15": "Bocage Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-09-15": "Bocage Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-09-15": "Bocage Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-09-15": "Bocage Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-09-15": "Bocage Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-09-15": "Bocage Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-09-15": "Bocage Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-09-15": "Bocage Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-09-15": "Bocage Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-09-15": "Bocage Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-09-15": "Bocage Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-09-15": "Bocage Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-09-15": "Bocage Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-09-15": "Bocage Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-09-15": "Bocage Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-09-15": "Bocage Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_16.json b/snapshots/countries/PT_16.json index 0d8ff8bfa..4149b2c01 100644 --- a/snapshots/countries/PT_16.json +++ b/snapshots/countries/PT_16.json @@ -9,11 +9,11 @@ "1950-08-15": "Assumption Day", "1950-08-20": "Feast of Our Lady of Sorrows", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-08-15": "Assumption Day", "1951-08-20": "Feast of Our Lady of Sorrows", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-08-15": "Assumption Day", "1952-08-20": "Feast of Our Lady of Sorrows", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-08-15": "Assumption Day", "1953-08-20": "Feast of Our Lady of Sorrows", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-08-15": "Assumption Day", "1954-08-20": "Feast of Our Lady of Sorrows", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-08-15": "Assumption Day", "1955-08-20": "Feast of Our Lady of Sorrows", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-08-15": "Assumption Day", "1956-08-20": "Feast of Our Lady of Sorrows", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-08-15": "Assumption Day", "1957-08-20": "Feast of Our Lady of Sorrows", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-08-15": "Assumption Day", "1958-08-20": "Feast of Our Lady of Sorrows", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-08-15": "Assumption Day", "1959-08-20": "Feast of Our Lady of Sorrows", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-08-15": "Assumption Day", "1960-08-20": "Feast of Our Lady of Sorrows", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-08-15": "Assumption Day", "1961-08-20": "Feast of Our Lady of Sorrows", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-08-15": "Assumption Day", "1962-08-20": "Feast of Our Lady of Sorrows", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-08-15": "Assumption Day", "1963-08-20": "Feast of Our Lady of Sorrows", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-08-15": "Assumption Day", "1964-08-20": "Feast of Our Lady of Sorrows", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-08-15": "Assumption Day", "1965-08-20": "Feast of Our Lady of Sorrows", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-08-15": "Assumption Day", "1966-08-20": "Feast of Our Lady of Sorrows", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-08-15": "Assumption Day", "1967-08-20": "Feast of Our Lady of Sorrows", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-08-15": "Assumption Day", "1968-08-20": "Feast of Our Lady of Sorrows", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-08-15": "Assumption Day", "1969-08-20": "Feast of Our Lady of Sorrows", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-08-15": "Assumption Day", "1970-08-20": "Feast of Our Lady of Sorrows", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-08-15": "Assumption Day", "1971-08-20": "Feast of Our Lady of Sorrows", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-08-15": "Assumption Day", "1972-08-20": "Feast of Our Lady of Sorrows", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-08-15": "Assumption Day", "1973-08-20": "Feast of Our Lady of Sorrows", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-08-20": "Feast of Our Lady of Sorrows", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-08-20": "Feast of Our Lady of Sorrows", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-08-20": "Feast of Our Lady of Sorrows", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-08-20": "Feast of Our Lady of Sorrows", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-08-20": "Feast of Our Lady of Sorrows", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-08-20": "Feast of Our Lady of Sorrows", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-08-20": "Feast of Our Lady of Sorrows", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-08-20": "Feast of Our Lady of Sorrows", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-08-20": "Feast of Our Lady of Sorrows", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-08-20": "Feast of Our Lady of Sorrows", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-08-20": "Feast of Our Lady of Sorrows", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-08-20": "Feast of Our Lady of Sorrows", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-08-20": "Feast of Our Lady of Sorrows", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-08-20": "Feast of Our Lady of Sorrows", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-08-20": "Feast of Our Lady of Sorrows", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-08-20": "Feast of Our Lady of Sorrows", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-08-20": "Feast of Our Lady of Sorrows", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-08-20": "Feast of Our Lady of Sorrows", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-08-20": "Feast of Our Lady of Sorrows", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-08-20": "Feast of Our Lady of Sorrows", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-08-20": "Feast of Our Lady of Sorrows", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-08-20": "Feast of Our Lady of Sorrows", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-08-20": "Feast of Our Lady of Sorrows", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-08-20": "Feast of Our Lady of Sorrows", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-08-20": "Feast of Our Lady of Sorrows", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-08-20": "Feast of Our Lady of Sorrows", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-08-20": "Feast of Our Lady of Sorrows", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-08-20": "Feast of Our Lady of Sorrows", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-08-20": "Feast of Our Lady of Sorrows", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-08-20": "Feast of Our Lady of Sorrows", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-08-20": "Feast of Our Lady of Sorrows", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-08-20": "Feast of Our Lady of Sorrows", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-08-20": "Feast of Our Lady of Sorrows", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-08-20": "Feast of Our Lady of Sorrows", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-08-20": "Feast of Our Lady of Sorrows", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-08-20": "Feast of Our Lady of Sorrows", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-08-20": "Feast of Our Lady of Sorrows", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-08-20": "Feast of Our Lady of Sorrows", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-08-20": "Feast of Our Lady of Sorrows", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-08-20": "Feast of Our Lady of Sorrows", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-08-20": "Feast of Our Lady of Sorrows", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-08-20": "Feast of Our Lady of Sorrows", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-08-20": "Feast of Our Lady of Sorrows", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-08-20": "Feast of Our Lady of Sorrows", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-08-20": "Feast of Our Lady of Sorrows", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-08-20": "Feast of Our Lady of Sorrows", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-08-20": "Feast of Our Lady of Sorrows", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-08-20": "Feast of Our Lady of Sorrows", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-08-20": "Feast of Our Lady of Sorrows", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-08-20": "Feast of Our Lady of Sorrows", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-08-20": "Feast of Our Lady of Sorrows", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-08-20": "Feast of Our Lady of Sorrows", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-08-20": "Feast of Our Lady of Sorrows", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-08-20": "Feast of Our Lady of Sorrows", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-08-20": "Feast of Our Lady of Sorrows", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-08-20": "Feast of Our Lady of Sorrows", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-08-20": "Feast of Our Lady of Sorrows", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-08-20": "Feast of Our Lady of Sorrows", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-08-20": "Feast of Our Lady of Sorrows", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-08-20": "Feast of Our Lady of Sorrows", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-08-20": "Feast of Our Lady of Sorrows", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-08-20": "Feast of Our Lady of Sorrows", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-08-20": "Feast of Our Lady of Sorrows", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-08-20": "Feast of Our Lady of Sorrows", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-08-20": "Feast of Our Lady of Sorrows", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-08-20": "Feast of Our Lady of Sorrows", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-08-20": "Feast of Our Lady of Sorrows", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-08-20": "Feast of Our Lady of Sorrows", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-08-20": "Feast of Our Lady of Sorrows", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-08-20": "Feast of Our Lady of Sorrows", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-08-20": "Feast of Our Lady of Sorrows", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-08-20": "Feast of Our Lady of Sorrows", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-08-20": "Feast of Our Lady of Sorrows", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-08-20": "Feast of Our Lady of Sorrows", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-08-20": "Feast of Our Lady of Sorrows", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-08-20": "Feast of Our Lady of Sorrows", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-08-20": "Feast of Our Lady of Sorrows", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_17.json b/snapshots/countries/PT_17.json index 246b236ef..a8ad2a9e1 100644 --- a/snapshots/countries/PT_17.json +++ b/snapshots/countries/PT_17.json @@ -8,11 +8,11 @@ "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -24,11 +24,11 @@ "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -40,11 +40,11 @@ "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -56,11 +56,11 @@ "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -72,11 +72,11 @@ "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -88,11 +88,11 @@ "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -104,11 +104,11 @@ "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -120,11 +120,11 @@ "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -136,11 +136,11 @@ "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -152,11 +152,11 @@ "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -168,11 +168,11 @@ "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -184,11 +184,11 @@ "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -200,11 +200,11 @@ "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -215,11 +215,11 @@ "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -231,11 +231,11 @@ "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -247,11 +247,11 @@ "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -279,11 +279,11 @@ "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -294,11 +294,11 @@ "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -310,11 +310,11 @@ "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -326,11 +326,11 @@ "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -341,11 +341,11 @@ "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -357,11 +357,11 @@ "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -373,11 +373,11 @@ "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -385,16 +385,16 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -402,17 +402,17 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -420,17 +420,17 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -438,17 +438,17 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -456,17 +456,17 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -474,17 +474,17 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -492,17 +492,17 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -510,17 +510,17 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -528,16 +528,16 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -545,17 +545,17 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -563,17 +563,17 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -581,17 +581,17 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -599,17 +599,17 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -617,17 +617,17 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -635,17 +635,17 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -653,17 +653,17 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -671,17 +671,17 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -689,17 +689,17 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -707,17 +707,17 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -725,16 +725,16 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -742,17 +742,17 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -760,17 +760,17 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -778,17 +778,17 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -796,17 +796,17 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -814,17 +814,17 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -832,17 +832,17 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -850,17 +850,17 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -868,17 +868,17 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -886,17 +886,17 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -904,17 +904,17 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -922,16 +922,16 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -939,17 +939,17 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -957,17 +957,17 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -975,17 +975,17 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -993,17 +993,17 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1011,17 +1011,17 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1029,17 +1029,17 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1047,17 +1047,17 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1065,17 +1065,17 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1083,13 +1083,13 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1097,13 +1097,13 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1111,13 +1111,13 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1125,17 +1125,17 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1143,17 +1143,17 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1161,17 +1161,17 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1179,17 +1179,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1197,17 +1197,17 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1215,17 +1215,17 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1233,17 +1233,17 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1251,17 +1251,17 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1269,17 +1269,17 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1287,17 +1287,17 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1305,17 +1305,17 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1323,17 +1323,17 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1341,17 +1341,17 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1359,17 +1359,17 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1377,17 +1377,17 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1395,17 +1395,17 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1413,17 +1413,17 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1431,17 +1431,17 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1449,17 +1449,17 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1467,17 +1467,17 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1485,17 +1485,17 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1503,34 +1503,34 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1538,17 +1538,17 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1556,17 +1556,17 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1574,17 +1574,17 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1592,17 +1592,17 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1610,17 +1610,17 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1628,17 +1628,17 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1646,17 +1646,17 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1664,17 +1664,17 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1682,16 +1682,16 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1699,17 +1699,17 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1717,17 +1717,17 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1735,17 +1735,17 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_18.json b/snapshots/countries/PT_18.json index 6aad9b97b..daf782ba9 100644 --- a/snapshots/countries/PT_18.json +++ b/snapshots/countries/PT_18.json @@ -9,11 +9,11 @@ "1950-08-15": "Assumption Day", "1950-09-21": "St. Matthew's Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -26,11 +26,11 @@ "1951-08-15": "Assumption Day", "1951-09-21": "St. Matthew's Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -43,11 +43,11 @@ "1952-08-15": "Assumption Day", "1952-09-21": "St. Matthew's Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -60,11 +60,11 @@ "1953-08-15": "Assumption Day", "1953-09-21": "St. Matthew's Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -77,11 +77,11 @@ "1954-08-15": "Assumption Day", "1954-09-21": "St. Matthew's Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -94,11 +94,11 @@ "1955-08-15": "Assumption Day", "1955-09-21": "St. Matthew's Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -111,11 +111,11 @@ "1956-08-15": "Assumption Day", "1956-09-21": "St. Matthew's Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -128,11 +128,11 @@ "1957-08-15": "Assumption Day", "1957-09-21": "St. Matthew's Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -145,11 +145,11 @@ "1958-08-15": "Assumption Day", "1958-09-21": "St. Matthew's Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1959-08-15": "Assumption Day", "1959-09-21": "St. Matthew's Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -179,11 +179,11 @@ "1960-08-15": "Assumption Day", "1960-09-21": "St. Matthew's Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -196,11 +196,11 @@ "1961-08-15": "Assumption Day", "1961-09-21": "St. Matthew's Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -213,11 +213,11 @@ "1962-08-15": "Assumption Day", "1962-09-21": "St. Matthew's Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -229,11 +229,11 @@ "1963-08-15": "Assumption Day", "1963-09-21": "St. Matthew's Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -246,11 +246,11 @@ "1964-08-15": "Assumption Day", "1964-09-21": "St. Matthew's Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1965-08-15": "Assumption Day", "1965-09-21": "St. Matthew's Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -280,11 +280,11 @@ "1966-08-15": "Assumption Day", "1966-09-21": "St. Matthew's Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -297,11 +297,11 @@ "1967-08-15": "Assumption Day", "1967-09-21": "St. Matthew's Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -313,11 +313,11 @@ "1968-08-15": "Assumption Day", "1968-09-21": "St. Matthew's Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -330,11 +330,11 @@ "1969-08-15": "Assumption Day", "1969-09-21": "St. Matthew's Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -347,11 +347,11 @@ "1970-08-15": "Assumption Day", "1970-09-21": "St. Matthew's Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -363,11 +363,11 @@ "1971-08-15": "Assumption Day", "1971-09-21": "St. Matthew's Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -380,11 +380,11 @@ "1972-08-15": "Assumption Day", "1972-09-21": "St. Matthew's Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -397,11 +397,11 @@ "1973-08-15": "Assumption Day", "1973-09-21": "St. Matthew's Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -409,17 +409,17 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-09-21": "St. Matthew's Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -427,18 +427,18 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-09-21": "St. Matthew's Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -446,18 +446,18 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-09-21": "St. Matthew's Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -465,18 +465,18 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-09-21": "St. Matthew's Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -484,18 +484,18 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-09-21": "St. Matthew's Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -503,18 +503,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-09-21": "St. Matthew's Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -522,18 +522,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-09-21": "St. Matthew's Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -541,18 +541,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-09-21": "St. Matthew's Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -560,17 +560,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-09-21": "St. Matthew's Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -578,18 +578,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-09-21": "St. Matthew's Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -597,18 +597,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-09-21": "St. Matthew's Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -616,18 +616,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-09-21": "St. Matthew's Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -635,18 +635,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-09-21": "St. Matthew's Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -654,18 +654,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-09-21": "St. Matthew's Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -673,18 +673,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-09-21": "St. Matthew's Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -692,18 +692,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-09-21": "St. Matthew's Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -711,18 +711,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-09-21": "St. Matthew's Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -730,18 +730,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-09-21": "St. Matthew's Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -749,18 +749,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-09-21": "St. Matthew's Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -768,17 +768,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-09-21": "St. Matthew's Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -786,18 +786,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-09-21": "St. Matthew's Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -805,18 +805,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-09-21": "St. Matthew's Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -824,18 +824,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-09-21": "St. Matthew's Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -843,18 +843,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-09-21": "St. Matthew's Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -862,18 +862,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-09-21": "St. Matthew's Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -881,18 +881,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-09-21": "St. Matthew's Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -900,18 +900,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-09-21": "St. Matthew's Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -919,18 +919,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-09-21": "St. Matthew's Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -938,18 +938,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-09-21": "St. Matthew's Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -957,18 +957,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-09-21": "St. Matthew's Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -976,17 +976,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-09-21": "St. Matthew's Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -994,18 +994,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-09-21": "St. Matthew's Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -1013,18 +1013,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-09-21": "St. Matthew's Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1032,18 +1032,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-09-21": "St. Matthew's Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1051,18 +1051,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-09-21": "St. Matthew's Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1070,18 +1070,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-09-21": "St. Matthew's Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1089,18 +1089,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-09-21": "St. Matthew's Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1108,18 +1108,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-09-21": "St. Matthew's Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1127,18 +1127,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-09-21": "St. Matthew's Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1146,14 +1146,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-09-21": "St. Matthew's Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1161,14 +1161,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-09-21": "St. Matthew's Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1176,14 +1176,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-09-21": "St. Matthew's Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1191,18 +1191,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-09-21": "St. Matthew's Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1210,18 +1210,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-09-21": "St. Matthew's Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1229,18 +1229,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-09-21": "St. Matthew's Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1248,18 +1248,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-09-21": "St. Matthew's Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1267,18 +1267,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-09-21": "St. Matthew's Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1286,18 +1286,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-09-21": "St. Matthew's Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1305,18 +1305,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-09-21": "St. Matthew's Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1324,18 +1324,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-09-21": "St. Matthew's Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1343,18 +1343,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-09-21": "St. Matthew's Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1362,18 +1362,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-09-21": "St. Matthew's Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1381,18 +1381,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-09-21": "St. Matthew's Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1400,18 +1400,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-09-21": "St. Matthew's Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1419,18 +1419,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-09-21": "St. Matthew's Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1438,18 +1438,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-09-21": "St. Matthew's Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1457,18 +1457,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-09-21": "St. Matthew's Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1476,18 +1476,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-09-21": "St. Matthew's Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1495,18 +1495,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-09-21": "St. Matthew's Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1514,18 +1514,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-09-21": "St. Matthew's Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1533,18 +1533,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-09-21": "St. Matthew's Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1552,18 +1552,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-09-21": "St. Matthew's Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1571,18 +1571,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-09-21": "St. Matthew's Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1590,36 +1590,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-09-21": "St. Matthew's Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-09-21": "St. Matthew's Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1627,18 +1627,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-09-21": "St. Matthew's Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1646,18 +1646,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-09-21": "St. Matthew's Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1665,18 +1665,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-09-21": "St. Matthew's Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1684,18 +1684,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-09-21": "St. Matthew's Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1703,18 +1703,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-09-21": "St. Matthew's Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1722,18 +1722,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-09-21": "St. Matthew's Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1741,18 +1741,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-09-21": "St. Matthew's Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1760,18 +1760,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-09-21": "St. Matthew's Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1779,17 +1779,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-09-21": "St. Matthew's Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1797,18 +1797,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-09-21": "St. Matthew's Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1816,18 +1816,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-09-21": "St. Matthew's Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1835,18 +1835,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-09-21": "St. Matthew's Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_20.json b/snapshots/countries/PT_20.json index 5313bfc17..530586e1e 100644 --- a/snapshots/countries/PT_20.json +++ b/snapshots/countries/PT_20.json @@ -8,11 +8,11 @@ "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -24,11 +24,11 @@ "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -40,11 +40,11 @@ "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -56,11 +56,11 @@ "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -72,11 +72,11 @@ "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -88,11 +88,11 @@ "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -104,11 +104,11 @@ "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -120,11 +120,11 @@ "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -136,11 +136,11 @@ "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -152,11 +152,11 @@ "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -168,11 +168,11 @@ "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -184,11 +184,11 @@ "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -200,11 +200,11 @@ "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -215,11 +215,11 @@ "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -231,11 +231,11 @@ "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -247,11 +247,11 @@ "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -279,11 +279,11 @@ "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -294,11 +294,11 @@ "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -310,11 +310,11 @@ "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -326,11 +326,11 @@ "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -341,11 +341,11 @@ "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -357,11 +357,11 @@ "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -373,11 +373,11 @@ "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -385,16 +385,16 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -402,17 +402,17 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -420,17 +420,17 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -438,17 +438,17 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -456,17 +456,17 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -474,17 +474,17 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -492,17 +492,17 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -510,18 +510,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-08": "Day of the Autonomous Region of the Azores", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -529,17 +529,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-05-31": "Day of the Autonomous Region of the Azores", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -547,18 +547,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-05-23": "Day of the Autonomous Region of the Azores", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -566,18 +566,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-11": "Day of the Autonomous Region of the Azores", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -585,18 +585,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-05-27": "Day of the Autonomous Region of the Azores", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -604,18 +604,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-19": "Day of the Autonomous Region of the Azores", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -623,18 +623,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-08": "Day of the Autonomous Region of the Azores", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -642,18 +642,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-05-23": "Day of the Autonomous Region of the Azores", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -661,18 +661,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-15": "Day of the Autonomous Region of the Azores", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -680,18 +680,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-04": "Day of the Autonomous Region of the Azores", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -699,18 +699,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-20": "Day of the Autonomous Region of the Azores", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -718,18 +718,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-08": "Day of the Autonomous Region of the Azores", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -737,17 +737,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-05-31": "Day of the Autonomous Region of the Azores", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -755,18 +755,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-05-23": "Day of the Autonomous Region of the Azores", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -774,18 +774,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-05": "Day of the Autonomous Region of the Azores", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -793,18 +793,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-05-27": "Day of the Autonomous Region of the Azores", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -812,18 +812,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-19": "Day of the Autonomous Region of the Azores", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -831,18 +831,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-01": "Day of the Autonomous Region of the Azores", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -850,18 +850,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-05-24": "Day of the Autonomous Region of the Azores", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -869,18 +869,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-12": "Day of the Autonomous Region of the Azores", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -888,18 +888,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-04": "Day of the Autonomous Region of the Azores", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -907,18 +907,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-20": "Day of the Autonomous Region of the Azores", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -926,18 +926,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-09": "Day of the Autonomous Region of the Azores", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -945,17 +945,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-05-31": "Day of the Autonomous Region of the Azores", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -963,18 +963,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-16": "Day of the Autonomous Region of the Azores", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -982,18 +982,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-05": "Day of the Autonomous Region of the Azores", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1001,18 +1001,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-05-28": "Day of the Autonomous Region of the Azores", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1020,18 +1020,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-12": "Day of the Autonomous Region of the Azores", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1039,18 +1039,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-01": "Day of the Autonomous Region of the Azores", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1058,18 +1058,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-05-24": "Day of the Autonomous Region of the Azores", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1077,17 +1077,17 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "Day of the Autonomous Region of the Azores; St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1095,18 +1095,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-05-28": "Day of the Autonomous Region of the Azores", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1114,14 +1114,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-05-20": "Day of the Autonomous Region of the Azores", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1129,14 +1129,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-09": "Day of the Autonomous Region of the Azores", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1144,14 +1144,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-05-25": "Day of the Autonomous Region of the Azores", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1159,18 +1159,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-16": "Day of the Autonomous Region of the Azores", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1178,18 +1178,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-05": "Day of the Autonomous Region of the Azores", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1197,18 +1197,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-21": "Day of the Autonomous Region of the Azores", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1216,17 +1216,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities; Day of the Autonomous Region of the Azores", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1234,18 +1234,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-01": "Day of the Autonomous Region of the Azores", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1253,18 +1253,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-05-24": "Day of the Autonomous Region of the Azores", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1272,18 +1272,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-06": "Day of the Autonomous Region of the Azores", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1291,18 +1291,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-05-29": "Day of the Autonomous Region of the Azores", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1310,18 +1310,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-20": "Day of the Autonomous Region of the Azores", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1329,18 +1329,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-09": "Day of the Autonomous Region of the Azores", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1348,18 +1348,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-05-25": "Day of the Autonomous Region of the Azores", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1367,18 +1367,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-17": "Day of the Autonomous Region of the Azores", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1386,18 +1386,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-05": "Day of the Autonomous Region of the Azores", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1405,18 +1405,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-21": "Day of the Autonomous Region of the Azores", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1424,17 +1424,17 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities; Day of the Autonomous Region of the Azores", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1442,18 +1442,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-02": "Day of the Autonomous Region of the Azores", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1461,18 +1461,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-17": "Day of the Autonomous Region of the Azores", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1480,18 +1480,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-06": "Day of the Autonomous Region of the Azores", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1499,18 +1499,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-05-29": "Day of the Autonomous Region of the Azores", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1518,18 +1518,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-14": "Day of the Autonomous Region of the Azores", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1537,18 +1537,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-02": "Day of the Autonomous Region of the Azores", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1556,36 +1556,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-05-25": "Day of the Autonomous Region of the Azores", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-14": "Day of the Autonomous Region of the Azores", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1593,18 +1593,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-05-30": "Day of the Autonomous Region of the Azores", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1612,18 +1612,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-21": "Day of the Autonomous Region of the Azores", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1631,17 +1631,17 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities; Day of the Autonomous Region of the Azores", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1649,18 +1649,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-05-26": "Day of the Autonomous Region of the Azores", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1668,18 +1668,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-18": "Day of the Autonomous Region of the Azores", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1687,18 +1687,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-06": "Day of the Autonomous Region of the Azores", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1706,18 +1706,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-05-29": "Day of the Autonomous Region of the Azores", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1725,18 +1725,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-14": "Day of the Autonomous Region of the Azores", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1744,17 +1744,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-03": "Day of the Autonomous Region of the Azores", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1762,18 +1762,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-05-25": "Day of the Autonomous Region of the Azores", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1781,18 +1781,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-07": "Day of the Autonomous Region of the Azores", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1800,18 +1800,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-05-30": "Day of the Autonomous Region of the Azores", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_30.json b/snapshots/countries/PT_30.json index 3872de73e..c4cc414a1 100644 --- a/snapshots/countries/PT_30.json +++ b/snapshots/countries/PT_30.json @@ -8,11 +8,11 @@ "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -24,11 +24,11 @@ "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -40,11 +40,11 @@ "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -56,11 +56,11 @@ "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -72,11 +72,11 @@ "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -88,11 +88,11 @@ "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -104,11 +104,11 @@ "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -120,11 +120,11 @@ "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -136,11 +136,11 @@ "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -152,11 +152,11 @@ "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -168,11 +168,11 @@ "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -184,11 +184,11 @@ "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -200,11 +200,11 @@ "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -215,11 +215,11 @@ "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -231,11 +231,11 @@ "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -247,11 +247,11 @@ "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -279,11 +279,11 @@ "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -294,11 +294,11 @@ "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -310,11 +310,11 @@ "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -326,11 +326,11 @@ "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -341,11 +341,11 @@ "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -357,11 +357,11 @@ "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -373,11 +373,11 @@ "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -385,16 +385,16 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -402,17 +402,17 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -420,17 +420,17 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -438,17 +438,17 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -456,17 +456,17 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -474,18 +474,18 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-07-01": "Day of the Autonomous Region of Madeira", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -493,18 +493,18 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-07-01": "Day of the Autonomous Region of Madeira", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -512,18 +512,18 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-07-01": "Day of the Autonomous Region of Madeira", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -531,17 +531,17 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-07-01": "Day of the Autonomous Region of Madeira", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -549,18 +549,18 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-07-01": "Day of the Autonomous Region of Madeira", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -568,18 +568,18 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-07-01": "Day of the Autonomous Region of Madeira", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -587,18 +587,18 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-07-01": "Day of the Autonomous Region of Madeira", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -606,18 +606,18 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-07-01": "Day of the Autonomous Region of Madeira", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -625,18 +625,18 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-07-01": "Day of the Autonomous Region of Madeira", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -644,18 +644,18 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-07-01": "Day of the Autonomous Region of Madeira", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -663,18 +663,18 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -682,18 +682,18 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -701,18 +701,18 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -720,18 +720,18 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -739,17 +739,17 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -757,18 +757,18 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -776,18 +776,18 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -795,18 +795,18 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -814,18 +814,18 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -833,18 +833,18 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -852,18 +852,18 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -871,18 +871,18 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -890,18 +890,18 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -909,18 +909,18 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "1st Octave; Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -928,18 +928,18 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "1st Octave; Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -947,17 +947,17 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "1st Octave; Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -965,18 +965,18 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "1st Octave; Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -984,18 +984,18 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "1st Octave; Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -1003,18 +1003,18 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "1st Octave; Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -1022,18 +1022,18 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "1st Octave; Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1041,18 +1041,18 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "1st Octave; Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1060,18 +1060,18 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "1st Octave; Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1079,18 +1079,18 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "1st Octave; Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1098,18 +1098,18 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "1st Octave; Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1117,14 +1117,14 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "1st Octave; Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1132,14 +1132,14 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "1st Octave; Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1147,14 +1147,14 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "1st Octave; Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1162,18 +1162,18 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "1st Octave; Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1181,18 +1181,18 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "1st Octave; Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1200,18 +1200,18 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "1st Octave; Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1219,18 +1219,18 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "1st Octave; Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1238,18 +1238,18 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "1st Octave; Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1257,18 +1257,18 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "1st Octave; Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1276,18 +1276,18 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "1st Octave; Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1295,18 +1295,18 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "1st Octave; Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1314,18 +1314,18 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "1st Octave; Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1333,18 +1333,18 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "1st Octave; Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1352,18 +1352,18 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "1st Octave; Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1371,18 +1371,18 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "1st Octave; Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1390,18 +1390,18 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "1st Octave; Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1409,18 +1409,18 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "1st Octave; Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1428,18 +1428,18 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "1st Octave; Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1447,18 +1447,18 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "1st Octave; Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1466,18 +1466,18 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "1st Octave; Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1485,18 +1485,18 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "1st Octave; Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1504,18 +1504,18 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "1st Octave; Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1523,18 +1523,18 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "1st Octave; Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1542,18 +1542,18 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "1st Octave; Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1561,36 +1561,36 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "1st Octave; Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "1st Octave; Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1598,18 +1598,18 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "1st Octave; Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1617,18 +1617,18 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "1st Octave; Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1636,18 +1636,18 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "1st Octave; Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1655,18 +1655,18 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "1st Octave; Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1674,18 +1674,18 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "1st Octave; Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1693,18 +1693,18 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "1st Octave; Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1712,18 +1712,18 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "1st Octave; Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1731,18 +1731,18 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "1st Octave; Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1750,17 +1750,17 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "1st Octave; Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1768,18 +1768,18 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "1st Octave; Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1787,18 +1787,18 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "1st Octave; Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1806,18 +1806,18 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-07-01": "Day of the Autonomous Region of Madeira and the Madeiran Communities", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "1st Octave; Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/PT_COMMON.json b/snapshots/countries/PT_COMMON.json index 246b236ef..a8ad2a9e1 100644 --- a/snapshots/countries/PT_COMMON.json +++ b/snapshots/countries/PT_COMMON.json @@ -8,11 +8,11 @@ "1950-06-13": "St. Anthony's Day", "1950-08-15": "Assumption Day", "1950-10-05": "Republic Day", - "1950-11-01": "All Saints Day", + "1950-11-01": "All Saints' Day", "1950-12-01": "Restoration of Independence Day", "1950-12-08": "Immaculate Conception", "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1950-12-31": "New Year's Eve", "1951-01-01": "New Year's Day", @@ -24,11 +24,11 @@ "1951-06-13": "St. Anthony's Day", "1951-08-15": "Assumption Day", "1951-10-05": "Republic Day", - "1951-11-01": "All Saints Day", + "1951-11-01": "All Saints' Day", "1951-12-01": "Restoration of Independence Day", "1951-12-08": "Immaculate Conception", "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1951-12-31": "New Year's Eve", "1952-01-01": "New Year's Day", @@ -40,11 +40,11 @@ "1952-06-13": "St. Anthony's Day", "1952-08-15": "Assumption Day", "1952-10-05": "Republic Day", - "1952-11-01": "All Saints Day", + "1952-11-01": "All Saints' Day", "1952-12-01": "Restoration of Independence Day", "1952-12-08": "Immaculate Conception", "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1952-12-31": "New Year's Eve", "1953-01-01": "New Year's Day", @@ -56,11 +56,11 @@ "1953-06-13": "St. Anthony's Day", "1953-08-15": "Assumption Day", "1953-10-05": "Republic Day", - "1953-11-01": "All Saints Day", + "1953-11-01": "All Saints' Day", "1953-12-01": "Restoration of Independence Day", "1953-12-08": "Immaculate Conception", "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1953-12-31": "New Year's Eve", "1954-01-01": "New Year's Day", @@ -72,11 +72,11 @@ "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption Day", "1954-10-05": "Republic Day", - "1954-11-01": "All Saints Day", + "1954-11-01": "All Saints' Day", "1954-12-01": "Restoration of Independence Day", "1954-12-08": "Immaculate Conception", "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1954-12-31": "New Year's Eve", "1955-01-01": "New Year's Day", @@ -88,11 +88,11 @@ "1955-06-13": "St. Anthony's Day", "1955-08-15": "Assumption Day", "1955-10-05": "Republic Day", - "1955-11-01": "All Saints Day", + "1955-11-01": "All Saints' Day", "1955-12-01": "Restoration of Independence Day", "1955-12-08": "Immaculate Conception", "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1955-12-31": "New Year's Eve", "1956-01-01": "New Year's Day", @@ -104,11 +104,11 @@ "1956-06-13": "St. Anthony's Day", "1956-08-15": "Assumption Day", "1956-10-05": "Republic Day", - "1956-11-01": "All Saints Day", + "1956-11-01": "All Saints' Day", "1956-12-01": "Restoration of Independence Day", "1956-12-08": "Immaculate Conception", "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1956-12-31": "New Year's Eve", "1957-01-01": "New Year's Day", @@ -120,11 +120,11 @@ "1957-06-20": "Corpus Christi", "1957-08-15": "Assumption Day", "1957-10-05": "Republic Day", - "1957-11-01": "All Saints Day", + "1957-11-01": "All Saints' Day", "1957-12-01": "Restoration of Independence Day", "1957-12-08": "Immaculate Conception", "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1957-12-31": "New Year's Eve", "1958-01-01": "New Year's Day", @@ -136,11 +136,11 @@ "1958-06-13": "St. Anthony's Day", "1958-08-15": "Assumption Day", "1958-10-05": "Republic Day", - "1958-11-01": "All Saints Day", + "1958-11-01": "All Saints' Day", "1958-12-01": "Restoration of Independence Day", "1958-12-08": "Immaculate Conception", "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1958-12-31": "New Year's Eve", "1959-01-01": "New Year's Day", @@ -152,11 +152,11 @@ "1959-06-13": "St. Anthony's Day", "1959-08-15": "Assumption Day", "1959-10-05": "Republic Day", - "1959-11-01": "All Saints Day", + "1959-11-01": "All Saints' Day", "1959-12-01": "Restoration of Independence Day", "1959-12-08": "Immaculate Conception", "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1959-12-31": "New Year's Eve", "1960-01-01": "New Year's Day", @@ -168,11 +168,11 @@ "1960-06-16": "Corpus Christi", "1960-08-15": "Assumption Day", "1960-10-05": "Republic Day", - "1960-11-01": "All Saints Day", + "1960-11-01": "All Saints' Day", "1960-12-01": "Restoration of Independence Day", "1960-12-08": "Immaculate Conception", "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1960-12-31": "New Year's Eve", "1961-01-01": "New Year's Day", @@ -184,11 +184,11 @@ "1961-06-13": "St. Anthony's Day", "1961-08-15": "Assumption Day", "1961-10-05": "Republic Day", - "1961-11-01": "All Saints Day", + "1961-11-01": "All Saints' Day", "1961-12-01": "Restoration of Independence Day", "1961-12-08": "Immaculate Conception", "1961-12-24": "Christmas Eve", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1961-12-31": "New Year's Eve", "1962-01-01": "New Year's Day", @@ -200,11 +200,11 @@ "1962-06-21": "Corpus Christi", "1962-08-15": "Assumption Day", "1962-10-05": "Republic Day", - "1962-11-01": "All Saints Day", + "1962-11-01": "All Saints' Day", "1962-12-01": "Restoration of Independence Day", "1962-12-08": "Immaculate Conception", "1962-12-24": "Christmas Eve", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", @@ -215,11 +215,11 @@ "1963-06-13": "Corpus Christi; St. Anthony's Day", "1963-08-15": "Assumption Day", "1963-10-05": "Republic Day", - "1963-11-01": "All Saints Day", + "1963-11-01": "All Saints' Day", "1963-12-01": "Restoration of Independence Day", "1963-12-08": "Immaculate Conception", "1963-12-24": "Christmas Eve", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", @@ -231,11 +231,11 @@ "1964-06-13": "St. Anthony's Day", "1964-08-15": "Assumption Day", "1964-10-05": "Republic Day", - "1964-11-01": "All Saints Day", + "1964-11-01": "All Saints' Day", "1964-12-01": "Restoration of Independence Day", "1964-12-08": "Immaculate Conception", "1964-12-24": "Christmas Eve", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", @@ -247,11 +247,11 @@ "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption Day", "1965-10-05": "Republic Day", - "1965-11-01": "All Saints Day", + "1965-11-01": "All Saints' Day", "1965-12-01": "Restoration of Independence Day", "1965-12-08": "Immaculate Conception", "1965-12-24": "Christmas Eve", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", @@ -263,11 +263,11 @@ "1966-06-13": "St. Anthony's Day", "1966-08-15": "Assumption Day", "1966-10-05": "Republic Day", - "1966-11-01": "All Saints Day", + "1966-11-01": "All Saints' Day", "1966-12-01": "Restoration of Independence Day", "1966-12-08": "Immaculate Conception", "1966-12-24": "Christmas Eve", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", @@ -279,11 +279,11 @@ "1967-06-13": "St. Anthony's Day", "1967-08-15": "Assumption Day", "1967-10-05": "Republic Day", - "1967-11-01": "All Saints Day", + "1967-11-01": "All Saints' Day", "1967-12-01": "Restoration of Independence Day", "1967-12-08": "Immaculate Conception", "1967-12-24": "Christmas Eve", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1967-12-31": "New Year's Eve", "1968-01-01": "New Year's Day", @@ -294,11 +294,11 @@ "1968-06-13": "Corpus Christi; St. Anthony's Day", "1968-08-15": "Assumption Day", "1968-10-05": "Republic Day", - "1968-11-01": "All Saints Day", + "1968-11-01": "All Saints' Day", "1968-12-01": "Restoration of Independence Day", "1968-12-08": "Immaculate Conception", "1968-12-24": "Christmas Eve", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", @@ -310,11 +310,11 @@ "1969-06-13": "St. Anthony's Day", "1969-08-15": "Assumption Day", "1969-10-05": "Republic Day", - "1969-11-01": "All Saints Day", + "1969-11-01": "All Saints' Day", "1969-12-01": "Restoration of Independence Day", "1969-12-08": "Immaculate Conception", "1969-12-24": "Christmas Eve", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", @@ -326,11 +326,11 @@ "1970-06-13": "St. Anthony's Day", "1970-08-15": "Assumption Day", "1970-10-05": "Republic Day", - "1970-11-01": "All Saints Day", + "1970-11-01": "All Saints' Day", "1970-12-01": "Restoration of Independence Day", "1970-12-08": "Immaculate Conception", "1970-12-24": "Christmas Eve", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", @@ -341,11 +341,11 @@ "1971-06-13": "St. Anthony's Day", "1971-08-15": "Assumption Day", "1971-10-05": "Republic Day", - "1971-11-01": "All Saints Day", + "1971-11-01": "All Saints' Day", "1971-12-01": "Restoration of Independence Day", "1971-12-08": "Immaculate Conception", "1971-12-24": "Christmas Eve", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", @@ -357,11 +357,11 @@ "1972-06-13": "St. Anthony's Day", "1972-08-15": "Assumption Day", "1972-10-05": "Republic Day", - "1972-11-01": "All Saints Day", + "1972-11-01": "All Saints' Day", "1972-12-01": "Restoration of Independence Day", "1972-12-08": "Immaculate Conception", "1972-12-24": "Christmas Eve", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", @@ -373,11 +373,11 @@ "1973-06-21": "Corpus Christi", "1973-08-15": "Assumption Day", "1973-10-05": "Republic Day", - "1973-11-01": "All Saints Day", + "1973-11-01": "All Saints' Day", "1973-12-01": "Restoration of Independence Day", "1973-12-08": "Immaculate Conception", "1973-12-24": "Christmas Eve", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", @@ -385,16 +385,16 @@ "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", "1974-04-25": "Freedom Day", - "1974-05-01": "Labour Day", + "1974-05-01": "Labor Day", "1974-06-10": "Portugal Day", "1974-06-13": "Corpus Christi; St. Anthony's Day", "1974-08-15": "Assumption Day", "1974-10-05": "Republic Day", - "1974-11-01": "All Saints Day", + "1974-11-01": "All Saints' Day", "1974-12-01": "Restoration of Independence Day", "1974-12-08": "Immaculate Conception", "1974-12-24": "Christmas Eve", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", @@ -402,17 +402,17 @@ "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-25": "Freedom Day", - "1975-05-01": "Labour Day", + "1975-05-01": "Labor Day", "1975-05-29": "Corpus Christi", "1975-06-10": "Portugal Day", "1975-06-13": "St. Anthony's Day", "1975-08-15": "Assumption Day", "1975-10-05": "Republic Day", - "1975-11-01": "All Saints Day", + "1975-11-01": "All Saints' Day", "1975-12-01": "Restoration of Independence Day", "1975-12-08": "Immaculate Conception", "1975-12-24": "Christmas Eve", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", @@ -420,17 +420,17 @@ "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-04-25": "Freedom Day", - "1976-05-01": "Labour Day", + "1976-05-01": "Labor Day", "1976-06-10": "Portugal Day", "1976-06-13": "St. Anthony's Day", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption Day", "1976-10-05": "Republic Day", - "1976-11-01": "All Saints Day", + "1976-11-01": "All Saints' Day", "1976-12-01": "Restoration of Independence Day", "1976-12-08": "Immaculate Conception", "1976-12-24": "Christmas Eve", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", @@ -438,17 +438,17 @@ "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-04-25": "Freedom Day", - "1977-05-01": "Labour Day", + "1977-05-01": "Labor Day", "1977-06-09": "Corpus Christi", "1977-06-10": "Portugal Day", "1977-06-13": "St. Anthony's Day", "1977-08-15": "Assumption Day", "1977-10-05": "Republic Day", - "1977-11-01": "All Saints Day", + "1977-11-01": "All Saints' Day", "1977-12-01": "Restoration of Independence Day", "1977-12-08": "Immaculate Conception", "1977-12-24": "Christmas Eve", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", @@ -456,17 +456,17 @@ "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-04-25": "Freedom Day", - "1978-05-01": "Labour Day", + "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1978-06-13": "St. Anthony's Day", "1978-08-15": "Assumption Day", "1978-10-05": "Republic Day", - "1978-11-01": "All Saints Day", + "1978-11-01": "All Saints' Day", "1978-12-01": "Restoration of Independence Day", "1978-12-08": "Immaculate Conception", "1978-12-24": "Christmas Eve", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", @@ -474,17 +474,17 @@ "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-04-25": "Freedom Day", - "1979-05-01": "Labour Day", + "1979-05-01": "Labor Day", "1979-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1979-06-13": "St. Anthony's Day", "1979-06-14": "Corpus Christi", "1979-08-15": "Assumption Day", "1979-10-05": "Republic Day", - "1979-11-01": "All Saints Day", + "1979-11-01": "All Saints' Day", "1979-12-01": "Restoration of Independence Day", "1979-12-08": "Immaculate Conception", "1979-12-24": "Christmas Eve", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1979-12-31": "New Year's Eve", "1980-01-01": "New Year's Day", @@ -492,17 +492,17 @@ "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-25": "Freedom Day", - "1980-05-01": "Labour Day", + "1980-05-01": "Labor Day", "1980-06-05": "Corpus Christi", "1980-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1980-06-13": "St. Anthony's Day", "1980-08-15": "Assumption Day", "1980-10-05": "Republic Day", - "1980-11-01": "All Saints Day", + "1980-11-01": "All Saints' Day", "1980-12-01": "Restoration of Independence Day", "1980-12-08": "Immaculate Conception", "1980-12-24": "Christmas Eve", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1980-12-31": "New Year's Eve", "1981-01-01": "New Year's Day", @@ -510,17 +510,17 @@ "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-04-25": "Freedom Day", - "1981-05-01": "Labour Day", + "1981-05-01": "Labor Day", "1981-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1981-06-13": "St. Anthony's Day", "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption Day", "1981-10-05": "Republic Day", - "1981-11-01": "All Saints Day", + "1981-11-01": "All Saints' Day", "1981-12-01": "Restoration of Independence Day", "1981-12-08": "Immaculate Conception", "1981-12-24": "Christmas Eve", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1981-12-31": "New Year's Eve", "1982-01-01": "New Year's Day", @@ -528,16 +528,16 @@ "1982-04-09": "Good Friday", "1982-04-11": "Easter Sunday", "1982-04-25": "Freedom Day", - "1982-05-01": "Labour Day", + "1982-05-01": "Labor Day", "1982-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1982-06-13": "St. Anthony's Day", "1982-08-15": "Assumption Day", "1982-10-05": "Republic Day", - "1982-11-01": "All Saints Day", + "1982-11-01": "All Saints' Day", "1982-12-01": "Restoration of Independence Day", "1982-12-08": "Immaculate Conception", "1982-12-24": "Christmas Eve", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", "1982-12-31": "New Year's Eve", "1983-01-01": "New Year's Day", @@ -545,17 +545,17 @@ "1983-04-01": "Good Friday", "1983-04-03": "Easter Sunday", "1983-04-25": "Freedom Day", - "1983-05-01": "Labour Day", + "1983-05-01": "Labor Day", "1983-06-02": "Corpus Christi", "1983-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1983-06-13": "St. Anthony's Day", "1983-08-15": "Assumption Day", "1983-10-05": "Republic Day", - "1983-11-01": "All Saints Day", + "1983-11-01": "All Saints' Day", "1983-12-01": "Restoration of Independence Day", "1983-12-08": "Immaculate Conception", "1983-12-24": "Christmas Eve", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1983-12-31": "New Year's Eve", "1984-01-01": "New Year's Day", @@ -563,17 +563,17 @@ "1984-04-20": "Good Friday", "1984-04-22": "Easter Sunday", "1984-04-25": "Freedom Day", - "1984-05-01": "Labour Day", + "1984-05-01": "Labor Day", "1984-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1984-06-13": "St. Anthony's Day", "1984-06-21": "Corpus Christi", "1984-08-15": "Assumption Day", "1984-10-05": "Republic Day", - "1984-11-01": "All Saints Day", + "1984-11-01": "All Saints' Day", "1984-12-01": "Restoration of Independence Day", "1984-12-08": "Immaculate Conception", "1984-12-24": "Christmas Eve", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1984-12-31": "New Year's Eve", "1985-01-01": "New Year's Day", @@ -581,17 +581,17 @@ "1985-04-05": "Good Friday", "1985-04-07": "Easter Sunday", "1985-04-25": "Freedom Day", - "1985-05-01": "Labour Day", + "1985-05-01": "Labor Day", "1985-06-06": "Corpus Christi", "1985-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1985-06-13": "St. Anthony's Day", "1985-08-15": "Assumption Day", "1985-10-05": "Republic Day", - "1985-11-01": "All Saints Day", + "1985-11-01": "All Saints' Day", "1985-12-01": "Restoration of Independence Day", "1985-12-08": "Immaculate Conception", "1985-12-24": "Christmas Eve", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1985-12-31": "New Year's Eve", "1986-01-01": "New Year's Day", @@ -599,17 +599,17 @@ "1986-03-28": "Good Friday", "1986-03-30": "Easter Sunday", "1986-04-25": "Freedom Day", - "1986-05-01": "Labour Day", + "1986-05-01": "Labor Day", "1986-05-29": "Corpus Christi", "1986-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1986-06-13": "St. Anthony's Day", "1986-08-15": "Assumption Day", "1986-10-05": "Republic Day", - "1986-11-01": "All Saints Day", + "1986-11-01": "All Saints' Day", "1986-12-01": "Restoration of Independence Day", "1986-12-08": "Immaculate Conception", "1986-12-24": "Christmas Eve", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1986-12-31": "New Year's Eve", "1987-01-01": "New Year's Day", @@ -617,17 +617,17 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-04-25": "Freedom Day", - "1987-05-01": "Labour Day", + "1987-05-01": "Labor Day", "1987-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1987-06-13": "St. Anthony's Day", "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption Day", "1987-10-05": "Republic Day", - "1987-11-01": "All Saints Day", + "1987-11-01": "All Saints' Day", "1987-12-01": "Restoration of Independence Day", "1987-12-08": "Immaculate Conception", "1987-12-24": "Christmas Eve", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1987-12-31": "New Year's Eve", "1988-01-01": "New Year's Day", @@ -635,17 +635,17 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-04-25": "Freedom Day", - "1988-05-01": "Labour Day", + "1988-05-01": "Labor Day", "1988-06-02": "Corpus Christi", "1988-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1988-06-13": "St. Anthony's Day", "1988-08-15": "Assumption Day", "1988-10-05": "Republic Day", - "1988-11-01": "All Saints Day", + "1988-11-01": "All Saints' Day", "1988-12-01": "Restoration of Independence Day", "1988-12-08": "Immaculate Conception", "1988-12-24": "Christmas Eve", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1988-12-31": "New Year's Eve", "1989-01-01": "New Year's Day", @@ -653,17 +653,17 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-04-25": "Freedom Day", - "1989-05-01": "Labour Day", + "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1989-06-13": "St. Anthony's Day", "1989-08-15": "Assumption Day", "1989-10-05": "Republic Day", - "1989-11-01": "All Saints Day", + "1989-11-01": "All Saints' Day", "1989-12-01": "Restoration of Independence Day", "1989-12-08": "Immaculate Conception", "1989-12-24": "Christmas Eve", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1989-12-31": "New Year's Eve", "1990-01-01": "New Year's Day", @@ -671,17 +671,17 @@ "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", "1990-04-25": "Freedom Day", - "1990-05-01": "Labour Day", + "1990-05-01": "Labor Day", "1990-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1990-06-13": "St. Anthony's Day", "1990-06-14": "Corpus Christi", "1990-08-15": "Assumption Day", "1990-10-05": "Republic Day", - "1990-11-01": "All Saints Day", + "1990-11-01": "All Saints' Day", "1990-12-01": "Restoration of Independence Day", "1990-12-08": "Immaculate Conception", "1990-12-24": "Christmas Eve", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1990-12-31": "New Year's Eve", "1991-01-01": "New Year's Day", @@ -689,17 +689,17 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-25": "Freedom Day", - "1991-05-01": "Labour Day", + "1991-05-01": "Labor Day", "1991-05-30": "Corpus Christi", "1991-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1991-06-13": "St. Anthony's Day", "1991-08-15": "Assumption Day", "1991-10-05": "Republic Day", - "1991-11-01": "All Saints Day", + "1991-11-01": "All Saints' Day", "1991-12-01": "Restoration of Independence Day", "1991-12-08": "Immaculate Conception", "1991-12-24": "Christmas Eve", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1991-12-31": "New Year's Eve", "1992-01-01": "New Year's Day", @@ -707,17 +707,17 @@ "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-04-25": "Freedom Day", - "1992-05-01": "Labour Day", + "1992-05-01": "Labor Day", "1992-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1992-06-13": "St. Anthony's Day", "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption Day", "1992-10-05": "Republic Day", - "1992-11-01": "All Saints Day", + "1992-11-01": "All Saints' Day", "1992-12-01": "Restoration of Independence Day", "1992-12-08": "Immaculate Conception", "1992-12-24": "Christmas Eve", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1992-12-31": "New Year's Eve", "1993-01-01": "New Year's Day", @@ -725,16 +725,16 @@ "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-25": "Freedom Day", - "1993-05-01": "Labour Day", + "1993-05-01": "Labor Day", "1993-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1993-06-13": "St. Anthony's Day", "1993-08-15": "Assumption Day", "1993-10-05": "Republic Day", - "1993-11-01": "All Saints Day", + "1993-11-01": "All Saints' Day", "1993-12-01": "Restoration of Independence Day", "1993-12-08": "Immaculate Conception", "1993-12-24": "Christmas Eve", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1993-12-31": "New Year's Eve", "1994-01-01": "New Year's Day", @@ -742,17 +742,17 @@ "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-25": "Freedom Day", - "1994-05-01": "Labour Day", + "1994-05-01": "Labor Day", "1994-06-02": "Corpus Christi", "1994-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1994-06-13": "St. Anthony's Day", "1994-08-15": "Assumption Day", "1994-10-05": "Republic Day", - "1994-11-01": "All Saints Day", + "1994-11-01": "All Saints' Day", "1994-12-01": "Restoration of Independence Day", "1994-12-08": "Immaculate Conception", "1994-12-24": "Christmas Eve", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1994-12-31": "New Year's Eve", "1995-01-01": "New Year's Day", @@ -760,17 +760,17 @@ "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-25": "Freedom Day", - "1995-05-01": "Labour Day", + "1995-05-01": "Labor Day", "1995-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1995-06-13": "St. Anthony's Day", "1995-06-15": "Corpus Christi", "1995-08-15": "Assumption Day", "1995-10-05": "Republic Day", - "1995-11-01": "All Saints Day", + "1995-11-01": "All Saints' Day", "1995-12-01": "Restoration of Independence Day", "1995-12-08": "Immaculate Conception", "1995-12-24": "Christmas Eve", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", @@ -778,17 +778,17 @@ "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-25": "Freedom Day", - "1996-05-01": "Labour Day", + "1996-05-01": "Labor Day", "1996-06-06": "Corpus Christi", "1996-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1996-06-13": "St. Anthony's Day", "1996-08-15": "Assumption Day", "1996-10-05": "Republic Day", - "1996-11-01": "All Saints Day", + "1996-11-01": "All Saints' Day", "1996-12-01": "Restoration of Independence Day", "1996-12-08": "Immaculate Conception", "1996-12-24": "Christmas Eve", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", @@ -796,17 +796,17 @@ "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-25": "Freedom Day", - "1997-05-01": "Labour Day", + "1997-05-01": "Labor Day", "1997-05-29": "Corpus Christi", "1997-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1997-06-13": "St. Anthony's Day", "1997-08-15": "Assumption Day", "1997-10-05": "Republic Day", - "1997-11-01": "All Saints Day", + "1997-11-01": "All Saints' Day", "1997-12-01": "Restoration of Independence Day", "1997-12-08": "Immaculate Conception", "1997-12-24": "Christmas Eve", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", @@ -814,17 +814,17 @@ "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-25": "Freedom Day", - "1998-05-01": "Labour Day", + "1998-05-01": "Labor Day", "1998-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1998-06-11": "Corpus Christi", "1998-06-13": "St. Anthony's Day", "1998-08-15": "Assumption Day", "1998-10-05": "Republic Day", - "1998-11-01": "All Saints Day", + "1998-11-01": "All Saints' Day", "1998-12-01": "Restoration of Independence Day", "1998-12-08": "Immaculate Conception", "1998-12-24": "Christmas Eve", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", @@ -832,17 +832,17 @@ "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-25": "Freedom Day", - "1999-05-01": "Labour Day", + "1999-05-01": "Labor Day", "1999-06-03": "Corpus Christi", "1999-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "1999-06-13": "St. Anthony's Day", "1999-08-15": "Assumption Day", "1999-10-05": "Republic Day", - "1999-11-01": "All Saints Day", + "1999-11-01": "All Saints' Day", "1999-12-01": "Restoration of Independence Day", "1999-12-08": "Immaculate Conception", "1999-12-24": "Christmas Eve", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", @@ -850,17 +850,17 @@ "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-25": "Freedom Day", - "2000-05-01": "Labour Day", + "2000-05-01": "Labor Day", "2000-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2000-06-13": "St. Anthony's Day", "2000-06-22": "Corpus Christi", "2000-08-15": "Assumption Day", "2000-10-05": "Republic Day", - "2000-11-01": "All Saints Day", + "2000-11-01": "All Saints' Day", "2000-12-01": "Restoration of Independence Day", "2000-12-08": "Immaculate Conception", "2000-12-24": "Christmas Eve", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", @@ -868,17 +868,17 @@ "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-25": "Freedom Day", - "2001-05-01": "Labour Day", + "2001-05-01": "Labor Day", "2001-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2001-06-13": "St. Anthony's Day", "2001-06-14": "Corpus Christi", "2001-08-15": "Assumption Day", "2001-10-05": "Republic Day", - "2001-11-01": "All Saints Day", + "2001-11-01": "All Saints' Day", "2001-12-01": "Restoration of Independence Day", "2001-12-08": "Immaculate Conception", "2001-12-24": "Christmas Eve", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", @@ -886,17 +886,17 @@ "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-25": "Freedom Day", - "2002-05-01": "Labour Day", + "2002-05-01": "Labor Day", "2002-05-30": "Corpus Christi", "2002-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2002-06-13": "St. Anthony's Day", "2002-08-15": "Assumption Day", "2002-10-05": "Republic Day", - "2002-11-01": "All Saints Day", + "2002-11-01": "All Saints' Day", "2002-12-01": "Restoration of Independence Day", "2002-12-08": "Immaculate Conception", "2002-12-24": "Christmas Eve", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", @@ -904,17 +904,17 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-25": "Freedom Day", - "2003-05-01": "Labour Day", + "2003-05-01": "Labor Day", "2003-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2003-06-13": "St. Anthony's Day", "2003-06-19": "Corpus Christi", "2003-08-15": "Assumption Day", "2003-10-05": "Republic Day", - "2003-11-01": "All Saints Day", + "2003-11-01": "All Saints' Day", "2003-12-01": "Restoration of Independence Day", "2003-12-08": "Immaculate Conception", "2003-12-24": "Christmas Eve", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", @@ -922,16 +922,16 @@ "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-25": "Freedom Day", - "2004-05-01": "Labour Day", + "2004-05-01": "Labor Day", "2004-06-10": "Corpus Christi; Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2004-06-13": "St. Anthony's Day", "2004-08-15": "Assumption Day", "2004-10-05": "Republic Day", - "2004-11-01": "All Saints Day", + "2004-11-01": "All Saints' Day", "2004-12-01": "Restoration of Independence Day", "2004-12-08": "Immaculate Conception", "2004-12-24": "Christmas Eve", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", @@ -939,17 +939,17 @@ "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-04-25": "Freedom Day", - "2005-05-01": "Labour Day", + "2005-05-01": "Labor Day", "2005-05-26": "Corpus Christi", "2005-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2005-06-13": "St. Anthony's Day", "2005-08-15": "Assumption Day", "2005-10-05": "Republic Day", - "2005-11-01": "All Saints Day", + "2005-11-01": "All Saints' Day", "2005-12-01": "Restoration of Independence Day", "2005-12-08": "Immaculate Conception", "2005-12-24": "Christmas Eve", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", @@ -957,17 +957,17 @@ "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-25": "Freedom Day", - "2006-05-01": "Labour Day", + "2006-05-01": "Labor Day", "2006-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2006-06-13": "St. Anthony's Day", "2006-06-15": "Corpus Christi", "2006-08-15": "Assumption Day", "2006-10-05": "Republic Day", - "2006-11-01": "All Saints Day", + "2006-11-01": "All Saints' Day", "2006-12-01": "Restoration of Independence Day", "2006-12-08": "Immaculate Conception", "2006-12-24": "Christmas Eve", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2006-12-31": "New Year's Eve", "2007-01-01": "New Year's Day", @@ -975,17 +975,17 @@ "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", "2007-04-25": "Freedom Day", - "2007-05-01": "Labour Day", + "2007-05-01": "Labor Day", "2007-06-07": "Corpus Christi", "2007-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2007-06-13": "St. Anthony's Day", "2007-08-15": "Assumption Day", "2007-10-05": "Republic Day", - "2007-11-01": "All Saints Day", + "2007-11-01": "All Saints' Day", "2007-12-01": "Restoration of Independence Day", "2007-12-08": "Immaculate Conception", "2007-12-24": "Christmas Eve", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", @@ -993,17 +993,17 @@ "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-04-25": "Freedom Day", - "2008-05-01": "Labour Day", + "2008-05-01": "Labor Day", "2008-05-22": "Corpus Christi", "2008-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2008-06-13": "St. Anthony's Day", "2008-08-15": "Assumption Day", "2008-10-05": "Republic Day", - "2008-11-01": "All Saints Day", + "2008-11-01": "All Saints' Day", "2008-12-01": "Restoration of Independence Day", "2008-12-08": "Immaculate Conception", "2008-12-24": "Christmas Eve", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", @@ -1011,17 +1011,17 @@ "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", "2009-04-25": "Freedom Day", - "2009-05-01": "Labour Day", + "2009-05-01": "Labor Day", "2009-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2009-06-11": "Corpus Christi", "2009-06-13": "St. Anthony's Day", "2009-08-15": "Assumption Day", "2009-10-05": "Republic Day", - "2009-11-01": "All Saints Day", + "2009-11-01": "All Saints' Day", "2009-12-01": "Restoration of Independence Day", "2009-12-08": "Immaculate Conception", "2009-12-24": "Christmas Eve", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", @@ -1029,17 +1029,17 @@ "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-25": "Freedom Day", - "2010-05-01": "Labour Day", + "2010-05-01": "Labor Day", "2010-06-03": "Corpus Christi", "2010-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2010-06-13": "St. Anthony's Day", "2010-08-15": "Assumption Day", "2010-10-05": "Republic Day", - "2010-11-01": "All Saints Day", + "2010-11-01": "All Saints' Day", "2010-12-01": "Restoration of Independence Day", "2010-12-08": "Immaculate Conception", "2010-12-24": "Christmas Eve", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", @@ -1047,17 +1047,17 @@ "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", "2011-04-25": "Freedom Day", - "2011-05-01": "Labour Day", + "2011-05-01": "Labor Day", "2011-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2011-06-13": "St. Anthony's Day", "2011-06-23": "Corpus Christi", "2011-08-15": "Assumption Day", "2011-10-05": "Republic Day", - "2011-11-01": "All Saints Day", + "2011-11-01": "All Saints' Day", "2011-12-01": "Restoration of Independence Day", "2011-12-08": "Immaculate Conception", "2011-12-24": "Christmas Eve", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2011-12-31": "New Year's Eve", "2012-01-01": "New Year's Day", @@ -1065,17 +1065,17 @@ "2012-04-06": "Good Friday", "2012-04-08": "Easter Sunday", "2012-04-25": "Freedom Day", - "2012-05-01": "Labour Day", + "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2012-06-13": "St. Anthony's Day", "2012-08-15": "Assumption Day", "2012-10-05": "Republic Day", - "2012-11-01": "All Saints Day", + "2012-11-01": "All Saints' Day", "2012-12-01": "Restoration of Independence Day", "2012-12-08": "Immaculate Conception", "2012-12-24": "Christmas Eve", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2012-12-31": "New Year's Eve", "2013-01-01": "New Year's Day", @@ -1083,13 +1083,13 @@ "2013-03-29": "Good Friday", "2013-03-31": "Easter Sunday", "2013-04-25": "Freedom Day", - "2013-05-01": "Labour Day", + "2013-05-01": "Labor Day", "2013-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2013-06-13": "St. Anthony's Day", "2013-08-15": "Assumption Day", "2013-12-08": "Immaculate Conception", "2013-12-24": "Christmas Eve", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2013-12-31": "New Year's Eve", "2014-01-01": "New Year's Day", @@ -1097,13 +1097,13 @@ "2014-04-18": "Good Friday", "2014-04-20": "Easter Sunday", "2014-04-25": "Freedom Day", - "2014-05-01": "Labour Day", + "2014-05-01": "Labor Day", "2014-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2014-06-13": "St. Anthony's Day", "2014-08-15": "Assumption Day", "2014-12-08": "Immaculate Conception", "2014-12-24": "Christmas Eve", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2014-12-31": "New Year's Eve", "2015-01-01": "New Year's Day", @@ -1111,13 +1111,13 @@ "2015-04-03": "Good Friday", "2015-04-05": "Easter Sunday", "2015-04-25": "Freedom Day", - "2015-05-01": "Labour Day", + "2015-05-01": "Labor Day", "2015-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2015-06-13": "St. Anthony's Day", "2015-08-15": "Assumption Day", "2015-12-08": "Immaculate Conception", "2015-12-24": "Christmas Eve", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2015-12-31": "New Year's Eve", "2016-01-01": "New Year's Day", @@ -1125,17 +1125,17 @@ "2016-03-25": "Good Friday", "2016-03-27": "Easter Sunday", "2016-04-25": "Freedom Day", - "2016-05-01": "Labour Day", + "2016-05-01": "Labor Day", "2016-05-26": "Corpus Christi", "2016-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2016-06-13": "St. Anthony's Day", "2016-08-15": "Assumption Day", "2016-10-05": "Republic Day", - "2016-11-01": "All Saints Day", + "2016-11-01": "All Saints' Day", "2016-12-01": "Restoration of Independence Day", "2016-12-08": "Immaculate Conception", "2016-12-24": "Christmas Eve", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", @@ -1143,17 +1143,17 @@ "2017-04-14": "Good Friday", "2017-04-16": "Easter Sunday", "2017-04-25": "Freedom Day", - "2017-05-01": "Labour Day", + "2017-05-01": "Labor Day", "2017-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2017-06-13": "St. Anthony's Day", "2017-06-15": "Corpus Christi", "2017-08-15": "Assumption Day", "2017-10-05": "Republic Day", - "2017-11-01": "All Saints Day", + "2017-11-01": "All Saints' Day", "2017-12-01": "Restoration of Independence Day", "2017-12-08": "Immaculate Conception", "2017-12-24": "Christmas Eve", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2017-12-31": "New Year's Eve", "2018-01-01": "New Year's Day", @@ -1161,17 +1161,17 @@ "2018-03-30": "Good Friday", "2018-04-01": "Easter Sunday", "2018-04-25": "Freedom Day", - "2018-05-01": "Labour Day", + "2018-05-01": "Labor Day", "2018-05-31": "Corpus Christi", "2018-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2018-06-13": "St. Anthony's Day", "2018-08-15": "Assumption Day", "2018-10-05": "Republic Day", - "2018-11-01": "All Saints Day", + "2018-11-01": "All Saints' Day", "2018-12-01": "Restoration of Independence Day", "2018-12-08": "Immaculate Conception", "2018-12-24": "Christmas Eve", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2018-12-31": "New Year's Eve", "2019-01-01": "New Year's Day", @@ -1179,17 +1179,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-04-25": "Freedom Day", - "2019-05-01": "Labour Day", + "2019-05-01": "Labor Day", "2019-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2019-06-13": "St. Anthony's Day", "2019-06-20": "Corpus Christi", "2019-08-15": "Assumption Day", "2019-10-05": "Republic Day", - "2019-11-01": "All Saints Day", + "2019-11-01": "All Saints' Day", "2019-12-01": "Restoration of Independence Day", "2019-12-08": "Immaculate Conception", "2019-12-24": "Christmas Eve", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2019-12-31": "New Year's Eve", "2020-01-01": "New Year's Day", @@ -1197,17 +1197,17 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-04-25": "Freedom Day", - "2020-05-01": "Labour Day", + "2020-05-01": "Labor Day", "2020-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2020-06-11": "Corpus Christi", "2020-06-13": "St. Anthony's Day", "2020-08-15": "Assumption Day", "2020-10-05": "Republic Day", - "2020-11-01": "All Saints Day", + "2020-11-01": "All Saints' Day", "2020-12-01": "Restoration of Independence Day", "2020-12-08": "Immaculate Conception", "2020-12-24": "Christmas Eve", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-31": "New Year's Eve", "2021-01-01": "New Year's Day", @@ -1215,17 +1215,17 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-04-25": "Freedom Day", - "2021-05-01": "Labour Day", + "2021-05-01": "Labor Day", "2021-06-03": "Corpus Christi", "2021-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2021-06-13": "St. Anthony's Day", "2021-08-15": "Assumption Day", "2021-10-05": "Republic Day", - "2021-11-01": "All Saints Day", + "2021-11-01": "All Saints' Day", "2021-12-01": "Restoration of Independence Day", "2021-12-08": "Immaculate Conception", "2021-12-24": "Christmas Eve", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-31": "New Year's Eve", "2022-01-01": "New Year's Day", @@ -1233,17 +1233,17 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-04-25": "Freedom Day", - "2022-05-01": "Labour Day", + "2022-05-01": "Labor Day", "2022-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2022-06-13": "St. Anthony's Day", "2022-06-16": "Corpus Christi", "2022-08-15": "Assumption Day", "2022-10-05": "Republic Day", - "2022-11-01": "All Saints Day", + "2022-11-01": "All Saints' Day", "2022-12-01": "Restoration of Independence Day", "2022-12-08": "Immaculate Conception", "2022-12-24": "Christmas Eve", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", @@ -1251,17 +1251,17 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-25": "Freedom Day", - "2023-05-01": "Labour Day", + "2023-05-01": "Labor Day", "2023-06-08": "Corpus Christi", "2023-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2023-06-13": "St. Anthony's Day", "2023-08-15": "Assumption Day", "2023-10-05": "Republic Day", - "2023-11-01": "All Saints Day", + "2023-11-01": "All Saints' Day", "2023-12-01": "Restoration of Independence Day", "2023-12-08": "Immaculate Conception", "2023-12-24": "Christmas Eve", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2023-12-31": "New Year's Eve", "2024-01-01": "New Year's Day", @@ -1269,17 +1269,17 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-25": "Freedom Day", - "2024-05-01": "Labour Day", + "2024-05-01": "Labor Day", "2024-05-30": "Corpus Christi", "2024-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2024-06-13": "St. Anthony's Day", "2024-08-15": "Assumption Day", "2024-10-05": "Republic Day", - "2024-11-01": "All Saints Day", + "2024-11-01": "All Saints' Day", "2024-12-01": "Restoration of Independence Day", "2024-12-08": "Immaculate Conception", "2024-12-24": "Christmas Eve", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", @@ -1287,17 +1287,17 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-25": "Freedom Day", - "2025-05-01": "Labour Day", + "2025-05-01": "Labor Day", "2025-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2025-06-13": "St. Anthony's Day", "2025-06-19": "Corpus Christi", "2025-08-15": "Assumption Day", "2025-10-05": "Republic Day", - "2025-11-01": "All Saints Day", + "2025-11-01": "All Saints' Day", "2025-12-01": "Restoration of Independence Day", "2025-12-08": "Immaculate Conception", "2025-12-24": "Christmas Eve", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2025-12-31": "New Year's Eve", "2026-01-01": "New Year's Day", @@ -1305,17 +1305,17 @@ "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-25": "Freedom Day", - "2026-05-01": "Labour Day", + "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2026-06-13": "St. Anthony's Day", "2026-08-15": "Assumption Day", "2026-10-05": "Republic Day", - "2026-11-01": "All Saints Day", + "2026-11-01": "All Saints' Day", "2026-12-01": "Restoration of Independence Day", "2026-12-08": "Immaculate Conception", "2026-12-24": "Christmas Eve", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-31": "New Year's Eve", "2027-01-01": "New Year's Day", @@ -1323,17 +1323,17 @@ "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-25": "Freedom Day", - "2027-05-01": "Labour Day", + "2027-05-01": "Labor Day", "2027-05-27": "Corpus Christi", "2027-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2027-06-13": "St. Anthony's Day", "2027-08-15": "Assumption Day", "2027-10-05": "Republic Day", - "2027-11-01": "All Saints Day", + "2027-11-01": "All Saints' Day", "2027-12-01": "Restoration of Independence Day", "2027-12-08": "Immaculate Conception", "2027-12-24": "Christmas Eve", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2027-12-31": "New Year's Eve", "2028-01-01": "New Year's Day", @@ -1341,17 +1341,17 @@ "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-25": "Freedom Day", - "2028-05-01": "Labour Day", + "2028-05-01": "Labor Day", "2028-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2028-06-13": "St. Anthony's Day", "2028-06-15": "Corpus Christi", "2028-08-15": "Assumption Day", "2028-10-05": "Republic Day", - "2028-11-01": "All Saints Day", + "2028-11-01": "All Saints' Day", "2028-12-01": "Restoration of Independence Day", "2028-12-08": "Immaculate Conception", "2028-12-24": "Christmas Eve", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", @@ -1359,17 +1359,17 @@ "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-25": "Freedom Day", - "2029-05-01": "Labour Day", + "2029-05-01": "Labor Day", "2029-05-31": "Corpus Christi", "2029-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2029-06-13": "St. Anthony's Day", "2029-08-15": "Assumption Day", "2029-10-05": "Republic Day", - "2029-11-01": "All Saints Day", + "2029-11-01": "All Saints' Day", "2029-12-01": "Restoration of Independence Day", "2029-12-08": "Immaculate Conception", "2029-12-24": "Christmas Eve", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", @@ -1377,17 +1377,17 @@ "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-25": "Freedom Day", - "2030-05-01": "Labour Day", + "2030-05-01": "Labor Day", "2030-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2030-06-13": "St. Anthony's Day", "2030-06-20": "Corpus Christi", "2030-08-15": "Assumption Day", "2030-10-05": "Republic Day", - "2030-11-01": "All Saints Day", + "2030-11-01": "All Saints' Day", "2030-12-01": "Restoration of Independence Day", "2030-12-08": "Immaculate Conception", "2030-12-24": "Christmas Eve", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", @@ -1395,17 +1395,17 @@ "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-25": "Freedom Day", - "2031-05-01": "Labour Day", + "2031-05-01": "Labor Day", "2031-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2031-06-12": "Corpus Christi", "2031-06-13": "St. Anthony's Day", "2031-08-15": "Assumption Day", "2031-10-05": "Republic Day", - "2031-11-01": "All Saints Day", + "2031-11-01": "All Saints' Day", "2031-12-01": "Restoration of Independence Day", "2031-12-08": "Immaculate Conception", "2031-12-24": "Christmas Eve", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", @@ -1413,17 +1413,17 @@ "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-25": "Freedom Day", - "2032-05-01": "Labour Day", + "2032-05-01": "Labor Day", "2032-05-27": "Corpus Christi", "2032-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2032-06-13": "St. Anthony's Day", "2032-08-15": "Assumption Day", "2032-10-05": "Republic Day", - "2032-11-01": "All Saints Day", + "2032-11-01": "All Saints' Day", "2032-12-01": "Restoration of Independence Day", "2032-12-08": "Immaculate Conception", "2032-12-24": "Christmas Eve", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", @@ -1431,17 +1431,17 @@ "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-25": "Freedom Day", - "2033-05-01": "Labour Day", + "2033-05-01": "Labor Day", "2033-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2033-06-13": "St. Anthony's Day", "2033-06-16": "Corpus Christi", "2033-08-15": "Assumption Day", "2033-10-05": "Republic Day", - "2033-11-01": "All Saints Day", + "2033-11-01": "All Saints' Day", "2033-12-01": "Restoration of Independence Day", "2033-12-08": "Immaculate Conception", "2033-12-24": "Christmas Eve", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", @@ -1449,17 +1449,17 @@ "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-25": "Freedom Day", - "2034-05-01": "Labour Day", + "2034-05-01": "Labor Day", "2034-06-08": "Corpus Christi", "2034-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2034-06-13": "St. Anthony's Day", "2034-08-15": "Assumption Day", "2034-10-05": "Republic Day", - "2034-11-01": "All Saints Day", + "2034-11-01": "All Saints' Day", "2034-12-01": "Restoration of Independence Day", "2034-12-08": "Immaculate Conception", "2034-12-24": "Christmas Eve", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", @@ -1467,17 +1467,17 @@ "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-25": "Freedom Day", - "2035-05-01": "Labour Day", + "2035-05-01": "Labor Day", "2035-05-24": "Corpus Christi", "2035-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2035-06-13": "St. Anthony's Day", "2035-08-15": "Assumption Day", "2035-10-05": "Republic Day", - "2035-11-01": "All Saints Day", + "2035-11-01": "All Saints' Day", "2035-12-01": "Restoration of Independence Day", "2035-12-08": "Immaculate Conception", "2035-12-24": "Christmas Eve", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", @@ -1485,17 +1485,17 @@ "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-25": "Freedom Day", - "2036-05-01": "Labour Day", + "2036-05-01": "Labor Day", "2036-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2036-06-12": "Corpus Christi", "2036-06-13": "St. Anthony's Day", "2036-08-15": "Assumption Day", "2036-10-05": "Republic Day", - "2036-11-01": "All Saints Day", + "2036-11-01": "All Saints' Day", "2036-12-01": "Restoration of Independence Day", "2036-12-08": "Immaculate Conception", "2036-12-24": "Christmas Eve", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", @@ -1503,34 +1503,34 @@ "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-25": "Freedom Day", - "2037-05-01": "Labour Day", + "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2037-06-13": "St. Anthony's Day", "2037-08-15": "Assumption Day", "2037-10-05": "Republic Day", - "2037-11-01": "All Saints Day", + "2037-11-01": "All Saints' Day", "2037-12-01": "Restoration of Independence Day", "2037-12-08": "Immaculate Conception", "2037-12-24": "Christmas Eve", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-03-08": "Carnival", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday; Freedom Day", - "2038-05-01": "Labour Day", + "2038-05-01": "Labor Day", "2038-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2038-06-13": "St. Anthony's Day", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption Day", "2038-10-05": "Republic Day", - "2038-11-01": "All Saints Day", + "2038-11-01": "All Saints' Day", "2038-12-01": "Restoration of Independence Day", "2038-12-08": "Immaculate Conception", "2038-12-24": "Christmas Eve", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", @@ -1538,17 +1538,17 @@ "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-25": "Freedom Day", - "2039-05-01": "Labour Day", + "2039-05-01": "Labor Day", "2039-06-09": "Corpus Christi", "2039-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2039-06-13": "St. Anthony's Day", "2039-08-15": "Assumption Day", "2039-10-05": "Republic Day", - "2039-11-01": "All Saints Day", + "2039-11-01": "All Saints' Day", "2039-12-01": "Restoration of Independence Day", "2039-12-08": "Immaculate Conception", "2039-12-24": "Christmas Eve", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1556,17 +1556,17 @@ "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-25": "Freedom Day", - "2040-05-01": "Labour Day", + "2040-05-01": "Labor Day", "2040-05-31": "Corpus Christi", "2040-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2040-06-13": "St. Anthony's Day", "2040-08-15": "Assumption Day", "2040-10-05": "Republic Day", - "2040-11-01": "All Saints Day", + "2040-11-01": "All Saints' Day", "2040-12-01": "Restoration of Independence Day", "2040-12-08": "Immaculate Conception", "2040-12-24": "Christmas Eve", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", @@ -1574,17 +1574,17 @@ "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-04-25": "Freedom Day", - "2041-05-01": "Labour Day", + "2041-05-01": "Labor Day", "2041-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2041-06-13": "St. Anthony's Day", "2041-06-20": "Corpus Christi", "2041-08-15": "Assumption Day", "2041-10-05": "Republic Day", - "2041-11-01": "All Saints Day", + "2041-11-01": "All Saints' Day", "2041-12-01": "Restoration of Independence Day", "2041-12-08": "Immaculate Conception", "2041-12-24": "Christmas Eve", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", @@ -1592,17 +1592,17 @@ "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-25": "Freedom Day", - "2042-05-01": "Labour Day", + "2042-05-01": "Labor Day", "2042-06-05": "Corpus Christi", "2042-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2042-06-13": "St. Anthony's Day", "2042-08-15": "Assumption Day", "2042-10-05": "Republic Day", - "2042-11-01": "All Saints Day", + "2042-11-01": "All Saints' Day", "2042-12-01": "Restoration of Independence Day", "2042-12-08": "Immaculate Conception", "2042-12-24": "Christmas Eve", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", @@ -1610,17 +1610,17 @@ "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-04-25": "Freedom Day", - "2043-05-01": "Labour Day", + "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2043-06-13": "St. Anthony's Day", "2043-08-15": "Assumption Day", "2043-10-05": "Republic Day", - "2043-11-01": "All Saints Day", + "2043-11-01": "All Saints' Day", "2043-12-01": "Restoration of Independence Day", "2043-12-08": "Immaculate Conception", "2043-12-24": "Christmas Eve", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", @@ -1628,17 +1628,17 @@ "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-04-25": "Freedom Day", - "2044-05-01": "Labour Day", + "2044-05-01": "Labor Day", "2044-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2044-06-13": "St. Anthony's Day", "2044-06-16": "Corpus Christi", "2044-08-15": "Assumption Day", "2044-10-05": "Republic Day", - "2044-11-01": "All Saints Day", + "2044-11-01": "All Saints' Day", "2044-12-01": "Restoration of Independence Day", "2044-12-08": "Immaculate Conception", "2044-12-24": "Christmas Eve", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", @@ -1646,17 +1646,17 @@ "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-25": "Freedom Day", - "2045-05-01": "Labour Day", + "2045-05-01": "Labor Day", "2045-06-08": "Corpus Christi", "2045-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2045-06-13": "St. Anthony's Day", "2045-08-15": "Assumption Day", "2045-10-05": "Republic Day", - "2045-11-01": "All Saints Day", + "2045-11-01": "All Saints' Day", "2045-12-01": "Restoration of Independence Day", "2045-12-08": "Immaculate Conception", "2045-12-24": "Christmas Eve", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2045-12-31": "New Year's Eve", "2046-01-01": "New Year's Day", @@ -1664,17 +1664,17 @@ "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-04-25": "Freedom Day", - "2046-05-01": "Labour Day", + "2046-05-01": "Labor Day", "2046-05-24": "Corpus Christi", "2046-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2046-06-13": "St. Anthony's Day", "2046-08-15": "Assumption Day", "2046-10-05": "Republic Day", - "2046-11-01": "All Saints Day", + "2046-11-01": "All Saints' Day", "2046-12-01": "Restoration of Independence Day", "2046-12-08": "Immaculate Conception", "2046-12-24": "Christmas Eve", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2046-12-31": "New Year's Eve", "2047-01-01": "New Year's Day", @@ -1682,16 +1682,16 @@ "2047-04-12": "Good Friday", "2047-04-14": "Easter Sunday", "2047-04-25": "Freedom Day", - "2047-05-01": "Labour Day", + "2047-05-01": "Labor Day", "2047-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2047-06-13": "Corpus Christi; St. Anthony's Day", "2047-08-15": "Assumption Day", "2047-10-05": "Republic Day", - "2047-11-01": "All Saints Day", + "2047-11-01": "All Saints' Day", "2047-12-01": "Restoration of Independence Day", "2047-12-08": "Immaculate Conception", "2047-12-24": "Christmas Eve", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-31": "New Year's Eve", "2048-01-01": "New Year's Day", @@ -1699,17 +1699,17 @@ "2048-04-03": "Good Friday", "2048-04-05": "Easter Sunday", "2048-04-25": "Freedom Day", - "2048-05-01": "Labour Day", + "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2048-06-13": "St. Anthony's Day", "2048-08-15": "Assumption Day", "2048-10-05": "Republic Day", - "2048-11-01": "All Saints Day", + "2048-11-01": "All Saints' Day", "2048-12-01": "Restoration of Independence Day", "2048-12-08": "Immaculate Conception", "2048-12-24": "Christmas Eve", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-31": "New Year's Eve", "2049-01-01": "New Year's Day", @@ -1717,17 +1717,17 @@ "2049-04-16": "Good Friday", "2049-04-18": "Easter Sunday", "2049-04-25": "Freedom Day", - "2049-05-01": "Labour Day", + "2049-05-01": "Labor Day", "2049-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2049-06-13": "St. Anthony's Day", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption Day", "2049-10-05": "Republic Day", - "2049-11-01": "All Saints Day", + "2049-11-01": "All Saints' Day", "2049-12-01": "Restoration of Independence Day", "2049-12-08": "Immaculate Conception", "2049-12-24": "Christmas Eve", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-31": "New Year's Eve", "2050-01-01": "New Year's Day", @@ -1735,17 +1735,17 @@ "2050-04-08": "Good Friday", "2050-04-10": "Easter Sunday", "2050-04-25": "Freedom Day", - "2050-05-01": "Labour Day", + "2050-05-01": "Labor Day", "2050-06-09": "Corpus Christi", "2050-06-10": "Day of Portugal, Cam\u00f5es, and the Portuguese Communities", "2050-06-13": "St. Anthony's Day", "2050-08-15": "Assumption Day", "2050-10-05": "Republic Day", - "2050-11-01": "All Saints Day", + "2050-11-01": "All Saints' Day", "2050-12-01": "Restoration of Independence Day", "2050-12-08": "Immaculate Conception", "2050-12-24": "Christmas Eve", - "2050-12-25": "Christmas", + "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-31": "New Year's Eve" } diff --git a/tests/countries/test_portugal.py b/tests/countries/test_portugal.py index ad83639f0..da5130652 100644 --- a/tests/countries/test_portugal.py +++ b/tests/countries/test_portugal.py @@ -269,17 +269,40 @@ def test_l10n_en_us(self): ("2018-03-30", "Good Friday"), ("2018-04-01", "Easter Sunday"), ("2018-04-25", "Freedom Day"), - ("2018-05-01", "Labour Day"), + ("2018-05-01", "Labor Day"), ("2018-05-31", "Corpus Christi"), ("2018-06-10", "Day of Portugal, Camões, and the Portuguese Communities"), ("2018-06-13", "St. Anthony's Day"), ("2018-08-15", "Assumption Day"), ("2018-10-05", "Republic Day"), - ("2018-11-01", "All Saints Day"), + ("2018-11-01", "All Saints' Day"), ("2018-12-01", "Restoration of Independence Day"), ("2018-12-08", "Immaculate Conception"), ("2018-12-24", "Christmas Eve"), - ("2018-12-25", "Christmas"), + ("2018-12-25", "Christmas Day"), ("2018-12-26", "Boxing Day"), ("2018-12-31", "New Year's Eve"), ) + + def test_l10n_uk(self): + self.assertLocalizedHolidays( + "uk", + ("2022-01-01", "Новий рік"), + ("2022-02-28", "Карнавал"), + ("2022-04-15", "Страсна пʼятниця"), + ("2022-04-17", "Великдень"), + ("2022-04-25", "День Свободи"), + ("2022-05-01", "День праці"), + ("2022-06-10", "День Португалії, Камоенса і португальських громад"), + ("2022-06-13", "День Святого Антонія"), + ("2022-06-16", "Свято Тіла і Крові Христових"), + ("2022-08-15", "Внебовзяття Пресвятої Діви Марії"), + ("2022-10-05", "День Республіки"), + ("2022-11-01", "День усіх святих"), + ("2022-12-01", "День відновлення незалежності"), + ("2022-12-08", "Непорочне зачаття Діви Марії"), + ("2022-12-24", "Святий вечір"), + ("2022-12-25", "Різдво Христове"), + ("2022-12-26", "Другий день Різдва"), + ("2022-12-31", "Переддень Нового року"), + ) From 787e7c083dd5c5c747f71bf282edad6a10a1dd35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 17:41:53 -0800 Subject: [PATCH 08/23] Update pre-commit hooks (#1630) Co-authored-by: arkid15r --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9eeeb12bf..cba06a00e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -26,7 +26,7 @@ repos: language_version: python3 - repo: https://github.com/pycqa/flake8 - rev: 6.1.0 + rev: 7.0.0 hooks: - id: flake8 additional_dependencies: From 6ce8d948e8997086857c28506beabead55c4ef3e Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Fri, 5 Jan 2024 02:22:07 -0800 Subject: [PATCH 09/23] Refresh snapshots, reformat th/cn.po (#1631) --- holidays/locale/th/LC_MESSAGES/CN.po | 3 +- snapshots/countries/AE_COMMON.json | 1878 +++++++++--------- snapshots/countries/AL_COMMON.json | 538 ++--- snapshots/countries/AZ_COMMON.json | 326 ++-- snapshots/countries/BA_BIH.json | 644 +++--- snapshots/countries/BA_BRC.json | 322 +-- snapshots/countries/BA_COMMON.json | 322 +-- snapshots/countries/BA_SRP.json | 644 +++--- snapshots/countries/BF_COMMON.json | 498 ++--- snapshots/countries/BH_COMMON.json | 2068 ++++++++++---------- snapshots/countries/BI_COMMON.json | 422 ++-- snapshots/countries/BN_COMMON.json | 1022 +++++----- snapshots/countries/CA_AB.json | 202 +- snapshots/countries/CA_BC.json | 202 +- snapshots/countries/CA_COMMON.json | 202 +- snapshots/countries/CA_MB.json | 202 +- snapshots/countries/CA_NB.json | 202 +- snapshots/countries/CA_NL.json | 202 +- snapshots/countries/CA_NS.json | 202 +- snapshots/countries/CA_NT.json | 202 +- snapshots/countries/CA_NU.json | 202 +- snapshots/countries/CA_ON.json | 202 +- snapshots/countries/CA_PE.json | 202 +- snapshots/countries/CA_QC.json | 434 ++--- snapshots/countries/CA_SK.json | 202 +- snapshots/countries/CA_YT.json | 202 +- snapshots/countries/CM_COMMON.json | 482 ++--- snapshots/countries/DJ_COMMON.json | 1202 ++++++------ snapshots/countries/DZ_COMMON.json | 1572 +++++++-------- snapshots/countries/EG_COMMON.json | 1874 +++++++++--------- snapshots/countries/ES_CE.json | 54 +- snapshots/countries/ES_ML.json | 54 +- snapshots/countries/ET_COMMON.json | 1044 +++++----- snapshots/countries/GA_COMMON.json | 278 +-- snapshots/countries/ID_COMMON.json | 1122 +++++------ snapshots/countries/IN_AN.json | 1250 ++++++------ snapshots/countries/IN_AP.json | 1250 ++++++------ snapshots/countries/IN_AR.json | 1250 ++++++------ snapshots/countries/IN_AS.json | 1250 ++++++------ snapshots/countries/IN_BR.json | 1250 ++++++------ snapshots/countries/IN_CG.json | 1250 ++++++------ snapshots/countries/IN_CH.json | 1250 ++++++------ snapshots/countries/IN_COMMON.json | 1250 ++++++------ snapshots/countries/IN_DD.json | 1250 ++++++------ snapshots/countries/IN_DH.json | 1250 ++++++------ snapshots/countries/IN_DL.json | 1250 ++++++------ snapshots/countries/IN_GA.json | 1250 ++++++------ snapshots/countries/IN_GJ.json | 1250 ++++++------ snapshots/countries/IN_HP.json | 1250 ++++++------ snapshots/countries/IN_HR.json | 1250 ++++++------ snapshots/countries/IN_JH.json | 1250 ++++++------ snapshots/countries/IN_JK.json | 1250 ++++++------ snapshots/countries/IN_KA.json | 1250 ++++++------ snapshots/countries/IN_KL.json | 1250 ++++++------ snapshots/countries/IN_LA.json | 1250 ++++++------ snapshots/countries/IN_LD.json | 1250 ++++++------ snapshots/countries/IN_MH.json | 1250 ++++++------ snapshots/countries/IN_ML.json | 1250 ++++++------ snapshots/countries/IN_MN.json | 1250 ++++++------ snapshots/countries/IN_MP.json | 1250 ++++++------ snapshots/countries/IN_MZ.json | 1250 ++++++------ snapshots/countries/IN_NL.json | 1250 ++++++------ snapshots/countries/IN_OR.json | 1250 ++++++------ snapshots/countries/IN_PB.json | 1250 ++++++------ snapshots/countries/IN_PY.json | 1250 ++++++------ snapshots/countries/IN_RJ.json | 1250 ++++++------ snapshots/countries/IN_SK.json | 1250 ++++++------ snapshots/countries/IN_TN.json | 1250 ++++++------ snapshots/countries/IN_TR.json | 1250 ++++++------ snapshots/countries/IN_TS.json | 1250 ++++++------ snapshots/countries/IN_UK.json | 1250 ++++++------ snapshots/countries/IN_UP.json | 1250 ++++++------ snapshots/countries/IN_WB.json | 1250 ++++++------ snapshots/countries/IR_COMMON.json | 2492 ++++++++++++------------ snapshots/countries/KG_COMMON.json | 624 +++--- snapshots/countries/KZ_COMMON.json | 94 +- snapshots/countries/MA_COMMON.json | 1460 +++++++------- snapshots/countries/MK_COMMON.json | 208 +- snapshots/countries/MV_COMMON.json | 2708 +++++++++++++------------- snapshots/countries/MY_COMMON.json | 1412 +++++++------- snapshots/countries/MY_JHR.json | 1614 +++++++-------- snapshots/countries/MY_KDH.json | 1922 +++++++++--------- snapshots/countries/MY_KTN.json | 1780 ++++++++--------- snapshots/countries/MY_KUL.json | 1590 +++++++-------- snapshots/countries/MY_LBN.json | 1590 +++++++-------- snapshots/countries/MY_MLK.json | 1590 +++++++-------- snapshots/countries/MY_NSN.json | 1596 +++++++-------- snapshots/countries/MY_PHG.json | 1590 +++++++-------- snapshots/countries/MY_PJY.json | 1590 +++++++-------- snapshots/countries/MY_PLS.json | 1964 +++++++++---------- snapshots/countries/MY_PNG.json | 1590 +++++++-------- snapshots/countries/MY_PRK.json | 1590 +++++++-------- snapshots/countries/MY_SBH.json | 1412 +++++++------- snapshots/countries/MY_SGR.json | 1590 +++++++-------- snapshots/countries/MY_SWK.json | 1412 +++++++------- snapshots/countries/MY_TRG.json | 2026 +++++++++---------- snapshots/countries/NG_COMMON.json | 852 ++++---- snapshots/countries/PH_COMMON.json | 416 ++-- snapshots/countries/PK_COMMON.json | 1526 +++++++-------- snapshots/countries/SA_COMMON.json | 2128 ++++++++++---------- snapshots/countries/SG_COMMON.json | 850 ++++---- snapshots/countries/TD_COMMON.json | 504 ++--- snapshots/countries/TL_COMMON.json | 134 +- snapshots/countries/TN_COMMON.json | 1874 +++++++++--------- snapshots/countries/TR_COMMON.json | 342 ++-- snapshots/countries/TZ_COMMON.json | 286 +-- snapshots/countries/UZ_COMMON.json | 416 ++-- 107 files changed, 55851 insertions(+), 55850 deletions(-) diff --git a/holidays/locale/th/LC_MESSAGES/CN.po b/holidays/locale/th/LC_MESSAGES/CN.po index 8f8e30312..a39cef18f 100644 --- a/holidays/locale/th/LC_MESSAGES/CN.po +++ b/holidays/locale/th/LC_MESSAGES/CN.po @@ -82,4 +82,5 @@ msgstr "วันหยุด (แทน %s)" #. against Japanese #. Aggression and the World Anti-Fascist War. msgid "中国人民抗日战争暨世界反法西斯战争胜利70周年纪念日" -msgstr "ครบรอบ 70 ปีแห่งการได้รับชัยชนะจากสงครามต่อต้านญี่ปุ่นและลัทธิฟาสซิสต์โลก" +msgstr "" +"ครบรอบ 70 ปีแห่งการได้รับชัยชนะจากสงครามต่อต้านญี่ปุ่นและลัทธิฟาสซิสต์โลก" diff --git a/snapshots/countries/AE_COMMON.json b/snapshots/countries/AE_COMMON.json index 83cfab68f..2f5438d5a 100644 --- a/snapshots/countries/AE_COMMON.json +++ b/snapshots/countries/AE_COMMON.json @@ -1,892 +1,892 @@ { - "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", - "1950-05-14": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", - "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", - "1950-09-22": "Arafat Day* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha Holiday* (*estimated)", - "1950-09-25": "Eid al-Adha Holiday* (*estimated)", - "1950-10-13": "Islamic New Year* (*estimated)", + "1950-01-01": "New Year's Day; Prophet's Birthday (estimated)", + "1950-05-14": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr Holiday (estimated)", + "1950-07-18": "Eid al-Fitr Holiday (estimated)", + "1950-09-22": "Arafat Day (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha Holiday (estimated)", + "1950-09-25": "Eid al-Adha Holiday (estimated)", + "1950-10-13": "Islamic New Year (estimated)", "1950-12-02": "National Day", "1950-12-03": "National Day", - "1950-12-22": "Prophet's Birthday* (*estimated)", + "1950-12-22": "Prophet's Birthday (estimated)", "1951-01-01": "New Year's Day", - "1951-05-04": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", - "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", - "1951-09-11": "Arafat Day* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha Holiday* (*estimated)", - "1951-09-14": "Eid al-Adha Holiday* (*estimated)", - "1951-10-02": "Islamic New Year* (*estimated)", + "1951-05-04": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Eid al-Fitr Holiday (estimated)", + "1951-07-08": "Eid al-Fitr Holiday (estimated)", + "1951-09-11": "Arafat Day (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha Holiday (estimated)", + "1951-09-14": "Eid al-Adha Holiday (estimated)", + "1951-10-02": "Islamic New Year (estimated)", "1951-12-02": "National Day", "1951-12-03": "National Day", - "1951-12-11": "Prophet's Birthday* (*estimated)", + "1951-12-11": "Prophet's Birthday (estimated)", "1952-01-01": "New Year's Day", - "1952-04-22": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", - "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", - "1952-08-30": "Arafat Day* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha Holiday* (*estimated)", - "1952-09-02": "Eid al-Adha Holiday* (*estimated)", - "1952-09-21": "Islamic New Year* (*estimated)", - "1952-11-30": "Prophet's Birthday* (*estimated)", + "1952-04-22": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr Holiday (estimated)", + "1952-06-25": "Eid al-Fitr Holiday (estimated)", + "1952-08-30": "Arafat Day (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha Holiday (estimated)", + "1952-09-02": "Eid al-Adha Holiday (estimated)", + "1952-09-21": "Islamic New Year (estimated)", + "1952-11-30": "Prophet's Birthday (estimated)", "1952-12-02": "National Day", "1952-12-03": "National Day", "1953-01-01": "New Year's Day", - "1953-04-12": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", - "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", - "1953-08-19": "Arafat Day* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha Holiday* (*estimated)", - "1953-08-22": "Eid al-Adha Holiday* (*estimated)", - "1953-09-10": "Islamic New Year* (*estimated)", - "1953-11-19": "Prophet's Birthday* (*estimated)", + "1953-04-12": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr Holiday (estimated)", + "1953-06-15": "Eid al-Fitr Holiday (estimated)", + "1953-08-19": "Arafat Day (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha Holiday (estimated)", + "1953-08-22": "Eid al-Adha Holiday (estimated)", + "1953-09-10": "Islamic New Year (estimated)", + "1953-11-19": "Prophet's Birthday (estimated)", "1953-12-02": "National Day", "1953-12-03": "National Day", "1954-01-01": "New Year's Day", - "1954-04-01": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", - "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", - "1954-08-08": "Arafat Day* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha Holiday* (*estimated)", - "1954-08-11": "Eid al-Adha Holiday* (*estimated)", - "1954-08-30": "Islamic New Year* (*estimated)", - "1954-11-08": "Prophet's Birthday* (*estimated)", + "1954-04-01": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr Holiday (estimated)", + "1954-06-04": "Eid al-Fitr Holiday (estimated)", + "1954-08-08": "Arafat Day (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha Holiday (estimated)", + "1954-08-11": "Eid al-Adha Holiday (estimated)", + "1954-08-30": "Islamic New Year (estimated)", + "1954-11-08": "Prophet's Birthday (estimated)", "1954-12-02": "National Day", "1954-12-03": "National Day", "1955-01-01": "New Year's Day", - "1955-03-21": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", - "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", - "1955-07-29": "Arafat Day* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha Holiday* (*estimated)", - "1955-08-01": "Eid al-Adha Holiday* (*estimated)", - "1955-08-20": "Islamic New Year* (*estimated)", - "1955-10-29": "Prophet's Birthday* (*estimated)", + "1955-03-21": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr Holiday (estimated)", + "1955-05-25": "Eid al-Fitr Holiday (estimated)", + "1955-07-29": "Arafat Day (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha Holiday (estimated)", + "1955-08-01": "Eid al-Adha Holiday (estimated)", + "1955-08-20": "Islamic New Year (estimated)", + "1955-10-29": "Prophet's Birthday (estimated)", "1955-12-02": "National Day", "1955-12-03": "National Day", "1956-01-01": "New Year's Day", - "1956-03-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", - "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", - "1956-07-18": "Arafat Day* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha Holiday* (*estimated)", - "1956-07-21": "Eid al-Adha Holiday* (*estimated)", - "1956-08-08": "Islamic New Year* (*estimated)", - "1956-10-17": "Prophet's Birthday* (*estimated)", + "1956-03-10": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr Holiday (estimated)", + "1956-05-13": "Eid al-Fitr Holiday (estimated)", + "1956-07-18": "Arafat Day (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha Holiday (estimated)", + "1956-07-21": "Eid al-Adha Holiday (estimated)", + "1956-08-08": "Islamic New Year (estimated)", + "1956-10-17": "Prophet's Birthday (estimated)", "1956-12-02": "National Day", "1956-12-03": "National Day", "1957-01-01": "New Year's Day", - "1957-02-27": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1957-05-01": "Eid al-Fitr* (*estimated)", - "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", - "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", - "1957-07-07": "Arafat Day* (*estimated)", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha Holiday* (*estimated)", - "1957-07-10": "Eid al-Adha Holiday* (*estimated)", - "1957-07-28": "Islamic New Year* (*estimated)", - "1957-10-06": "Prophet's Birthday* (*estimated)", + "1957-02-27": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1957-05-01": "Eid al-Fitr (estimated)", + "1957-05-02": "Eid al-Fitr Holiday (estimated)", + "1957-05-03": "Eid al-Fitr Holiday (estimated)", + "1957-07-07": "Arafat Day (estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha Holiday (estimated)", + "1957-07-10": "Eid al-Adha Holiday (estimated)", + "1957-07-28": "Islamic New Year (estimated)", + "1957-10-06": "Prophet's Birthday (estimated)", "1957-12-02": "National Day", "1957-12-03": "National Day", "1958-01-01": "New Year's Day", - "1958-02-16": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", - "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", - "1958-06-26": "Arafat Day* (*estimated)", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha Holiday* (*estimated)", - "1958-06-29": "Eid al-Adha Holiday* (*estimated)", - "1958-07-18": "Islamic New Year* (*estimated)", - "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-02-16": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr Holiday (estimated)", + "1958-04-22": "Eid al-Fitr Holiday (estimated)", + "1958-06-26": "Arafat Day (estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha Holiday (estimated)", + "1958-06-29": "Eid al-Adha Holiday (estimated)", + "1958-07-18": "Islamic New Year (estimated)", + "1958-09-26": "Prophet's Birthday (estimated)", "1958-12-02": "National Day", "1958-12-03": "National Day", "1959-01-01": "New Year's Day", - "1959-02-06": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", - "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", - "1959-06-16": "Arafat Day* (*estimated)", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha Holiday* (*estimated)", - "1959-06-19": "Eid al-Adha Holiday* (*estimated)", - "1959-07-07": "Islamic New Year* (*estimated)", - "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-02-06": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr Holiday (estimated)", + "1959-04-12": "Eid al-Fitr Holiday (estimated)", + "1959-06-16": "Arafat Day (estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha Holiday (estimated)", + "1959-06-19": "Eid al-Adha Holiday (estimated)", + "1959-07-07": "Islamic New Year (estimated)", + "1959-09-15": "Prophet's Birthday (estimated)", "1959-12-02": "National Day", "1959-12-03": "National Day", "1960-01-01": "New Year's Day", - "1960-01-26": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", - "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", - "1960-06-03": "Arafat Day* (*estimated)", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha Holiday* (*estimated)", - "1960-06-06": "Eid al-Adha Holiday* (*estimated)", - "1960-06-25": "Islamic New Year* (*estimated)", - "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-01-26": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr Holiday (estimated)", + "1960-03-30": "Eid al-Fitr Holiday (estimated)", + "1960-06-03": "Arafat Day (estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha Holiday (estimated)", + "1960-06-06": "Eid al-Adha Holiday (estimated)", + "1960-06-25": "Islamic New Year (estimated)", + "1960-09-03": "Prophet's Birthday (estimated)", "1960-12-02": "National Day", "1960-12-03": "National Day", "1961-01-01": "New Year's Day", - "1961-01-14": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", - "1961-03-20": "Eid al-Fitr Holiday* (*estimated)", - "1961-05-24": "Arafat Day* (*estimated)", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha Holiday* (*estimated)", - "1961-05-27": "Eid al-Adha Holiday* (*estimated)", - "1961-06-14": "Islamic New Year* (*estimated)", - "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-01-14": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr Holiday (estimated)", + "1961-03-20": "Eid al-Fitr Holiday (estimated)", + "1961-05-24": "Arafat Day (estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha Holiday (estimated)", + "1961-05-27": "Eid al-Adha Holiday (estimated)", + "1961-06-14": "Islamic New Year (estimated)", + "1961-08-23": "Prophet's Birthday (estimated)", "1961-12-02": "National Day", "1961-12-03": "National Day", "1962-01-01": "New Year's Day", - "1962-01-04": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", - "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", - "1962-05-13": "Arafat Day* (*estimated)", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha Holiday* (*estimated)", - "1962-05-16": "Eid al-Adha Holiday* (*estimated)", - "1962-06-03": "Islamic New Year* (*estimated)", - "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-01-04": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr Holiday (estimated)", + "1962-03-09": "Eid al-Fitr Holiday (estimated)", + "1962-05-13": "Arafat Day (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha Holiday (estimated)", + "1962-05-16": "Eid al-Adha Holiday (estimated)", + "1962-06-03": "Islamic New Year (estimated)", + "1962-08-12": "Prophet's Birthday (estimated)", "1962-12-02": "National Day", "1962-12-03": "National Day", - "1962-12-24": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1962-12-24": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1963-01-01": "New Year's Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", - "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", - "1963-05-02": "Arafat Day* (*estimated)", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha Holiday* (*estimated)", - "1963-05-05": "Eid al-Adha Holiday* (*estimated)", - "1963-05-24": "Islamic New Year* (*estimated)", - "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr Holiday (estimated)", + "1963-02-26": "Eid al-Fitr Holiday (estimated)", + "1963-05-02": "Arafat Day (estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha Holiday (estimated)", + "1963-05-05": "Eid al-Adha Holiday (estimated)", + "1963-05-24": "Islamic New Year (estimated)", + "1963-08-02": "Prophet's Birthday (estimated)", "1963-12-02": "National Day", "1963-12-03": "National Day", - "1963-12-13": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1963-12-13": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1964-01-01": "New Year's Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", - "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", - "1964-04-21": "Arafat Day* (*estimated)", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha Holiday* (*estimated)", - "1964-04-24": "Eid al-Adha Holiday* (*estimated)", - "1964-05-12": "Islamic New Year* (*estimated)", - "1964-07-21": "Prophet's Birthday* (*estimated)", - "1964-12-01": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr Holiday (estimated)", + "1964-02-16": "Eid al-Fitr Holiday (estimated)", + "1964-04-21": "Arafat Day (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha Holiday (estimated)", + "1964-04-24": "Eid al-Adha Holiday (estimated)", + "1964-05-12": "Islamic New Year (estimated)", + "1964-07-21": "Prophet's Birthday (estimated)", + "1964-12-01": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1964-12-02": "National Day", "1964-12-03": "National Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", - "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", - "1965-04-10": "Arafat Day* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha Holiday* (*estimated)", - "1965-04-13": "Eid al-Adha Holiday* (*estimated)", - "1965-05-01": "Islamic New Year* (*estimated)", - "1965-07-10": "Prophet's Birthday* (*estimated)", - "1965-11-20": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-02-03": "Eid al-Fitr Holiday (estimated)", + "1965-02-04": "Eid al-Fitr Holiday (estimated)", + "1965-04-10": "Arafat Day (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha Holiday (estimated)", + "1965-04-13": "Eid al-Adha Holiday (estimated)", + "1965-05-01": "Islamic New Year (estimated)", + "1965-07-10": "Prophet's Birthday (estimated)", + "1965-11-20": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1965-12-02": "National Day", "1965-12-03": "National Day", "1966-01-01": "New Year's Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", - "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", - "1966-03-31": "Arafat Day* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha Holiday* (*estimated)", - "1966-04-03": "Eid al-Adha Holiday* (*estimated)", - "1966-04-21": "Islamic New Year* (*estimated)", - "1966-07-01": "Prophet's Birthday* (*estimated)", - "1966-11-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr Holiday (estimated)", + "1966-01-24": "Eid al-Fitr Holiday (estimated)", + "1966-03-31": "Arafat Day (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha Holiday (estimated)", + "1966-04-03": "Eid al-Adha Holiday (estimated)", + "1966-04-21": "Islamic New Year (estimated)", + "1966-07-01": "Prophet's Birthday (estimated)", + "1966-11-10": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1966-12-02": "National Day", "1966-12-03": "National Day", "1967-01-01": "New Year's Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", - "1967-01-14": "Eid al-Fitr Holiday* (*estimated)", - "1967-03-20": "Arafat Day* (*estimated)", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha Holiday* (*estimated)", - "1967-03-23": "Eid al-Adha Holiday* (*estimated)", - "1967-04-11": "Islamic New Year* (*estimated)", - "1967-06-19": "Prophet's Birthday* (*estimated)", - "1967-10-30": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr Holiday (estimated)", + "1967-01-14": "Eid al-Fitr Holiday (estimated)", + "1967-03-20": "Arafat Day (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha Holiday (estimated)", + "1967-03-23": "Eid al-Adha Holiday (estimated)", + "1967-04-11": "Islamic New Year (estimated)", + "1967-06-19": "Prophet's Birthday (estimated)", + "1967-10-30": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1967-12-02": "National Day", "1967-12-03": "National Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", - "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", - "1968-03-08": "Arafat Day* (*estimated)", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha Holiday* (*estimated)", - "1968-03-11": "Eid al-Adha Holiday* (*estimated)", - "1968-03-30": "Islamic New Year* (*estimated)", - "1968-06-08": "Prophet's Birthday* (*estimated)", - "1968-10-19": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday (estimated)", + "1968-01-03": "Eid al-Fitr Holiday (estimated)", + "1968-03-08": "Arafat Day (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha Holiday (estimated)", + "1968-03-11": "Eid al-Adha Holiday (estimated)", + "1968-03-30": "Islamic New Year (estimated)", + "1968-06-08": "Prophet's Birthday (estimated)", + "1968-10-19": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1968-12-02": "National Day", "1968-12-03": "National Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", - "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr Holiday (estimated)", + "1968-12-23": "Eid al-Fitr Holiday (estimated)", "1969-01-01": "New Year's Day", - "1969-02-26": "Arafat Day* (*estimated)", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha Holiday* (*estimated)", - "1969-03-01": "Eid al-Adha Holiday* (*estimated)", - "1969-03-19": "Islamic New Year* (*estimated)", - "1969-05-28": "Prophet's Birthday* (*estimated)", - "1969-10-08": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1969-02-26": "Arafat Day (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha Holiday (estimated)", + "1969-03-01": "Eid al-Adha Holiday (estimated)", + "1969-03-19": "Islamic New Year (estimated)", + "1969-05-28": "Prophet's Birthday (estimated)", + "1969-10-08": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1969-12-02": "National Day", "1969-12-03": "National Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", - "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr Holiday (estimated)", + "1969-12-12": "Eid al-Fitr Holiday (estimated)", "1970-01-01": "New Year's Day", - "1970-02-15": "Arafat Day* (*estimated)", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha Holiday* (*estimated)", - "1970-02-18": "Eid al-Adha Holiday* (*estimated)", - "1970-03-09": "Islamic New Year* (*estimated)", - "1970-05-18": "Prophet's Birthday* (*estimated)", - "1970-09-28": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", - "1970-12-02": "Eid al-Fitr Holiday* (*estimated); National Day", + "1970-02-15": "Arafat Day (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha Holiday (estimated)", + "1970-02-18": "Eid al-Adha Holiday (estimated)", + "1970-03-09": "Islamic New Year (estimated)", + "1970-05-18": "Prophet's Birthday (estimated)", + "1970-09-28": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr Holiday (estimated)", + "1970-12-02": "Eid al-Fitr Holiday (estimated); National Day", "1970-12-03": "National Day", "1971-01-01": "New Year's Day", - "1971-02-05": "Arafat Day* (*estimated)", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha Holiday* (*estimated)", - "1971-02-08": "Eid al-Adha Holiday* (*estimated)", - "1971-02-26": "Islamic New Year* (*estimated)", - "1971-05-07": "Prophet's Birthday* (*estimated)", - "1971-09-17": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", - "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", + "1971-02-05": "Arafat Day (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha Holiday (estimated)", + "1971-02-08": "Eid al-Adha Holiday (estimated)", + "1971-02-26": "Islamic New Year (estimated)", + "1971-05-07": "Prophet's Birthday (estimated)", + "1971-09-17": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr Holiday (estimated)", + "1971-11-21": "Eid al-Fitr Holiday (estimated)", "1971-12-02": "National Day", "1971-12-03": "National Day", "1972-01-01": "New Year's Day", - "1972-01-25": "Arafat Day* (*estimated)", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha Holiday* (*estimated)", - "1972-01-28": "Eid al-Adha Holiday* (*estimated)", - "1972-02-16": "Islamic New Year* (*estimated)", - "1972-04-25": "Prophet's Birthday* (*estimated)", - "1972-09-05": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", - "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", + "1972-01-25": "Arafat Day (estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha Holiday (estimated)", + "1972-01-28": "Eid al-Adha Holiday (estimated)", + "1972-02-16": "Islamic New Year (estimated)", + "1972-04-25": "Prophet's Birthday (estimated)", + "1972-09-05": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr Holiday (estimated)", + "1972-11-09": "Eid al-Fitr Holiday (estimated)", "1972-12-02": "National Day", "1972-12-03": "National Day", "1973-01-01": "New Year's Day", - "1973-01-13": "Arafat Day* (*estimated)", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha Holiday* (*estimated)", - "1973-01-16": "Eid al-Adha Holiday* (*estimated)", - "1973-02-04": "Islamic New Year* (*estimated)", - "1973-04-15": "Prophet's Birthday* (*estimated)", - "1973-08-25": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", - "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", + "1973-01-13": "Arafat Day (estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha Holiday (estimated)", + "1973-01-16": "Eid al-Adha Holiday (estimated)", + "1973-02-04": "Islamic New Year (estimated)", + "1973-04-15": "Prophet's Birthday (estimated)", + "1973-08-25": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr Holiday (estimated)", + "1973-10-29": "Eid al-Fitr Holiday (estimated)", "1973-12-02": "National Day", "1973-12-03": "National Day", "1974-01-01": "New Year's Day", - "1974-01-02": "Arafat Day* (*estimated)", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha Holiday* (*estimated)", - "1974-01-05": "Eid al-Adha Holiday* (*estimated)", - "1974-01-24": "Islamic New Year* (*estimated)", - "1974-04-04": "Prophet's Birthday* (*estimated)", - "1974-08-15": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", - "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", + "1974-01-02": "Arafat Day (estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha Holiday (estimated)", + "1974-01-05": "Eid al-Adha Holiday (estimated)", + "1974-01-24": "Islamic New Year (estimated)", + "1974-04-04": "Prophet's Birthday (estimated)", + "1974-08-15": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr Holiday (estimated)", + "1974-10-18": "Eid al-Fitr Holiday (estimated)", "1974-12-02": "National Day", "1974-12-03": "National Day", - "1974-12-23": "Arafat Day* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Eid al-Adha Holiday* (*estimated)", - "1974-12-26": "Eid al-Adha Holiday* (*estimated)", + "1974-12-23": "Arafat Day (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Eid al-Adha Holiday (estimated)", + "1974-12-26": "Eid al-Adha Holiday (estimated)", "1975-01-01": "New Year's Day", - "1975-01-13": "Islamic New Year* (*estimated)", - "1975-03-24": "Prophet's Birthday* (*estimated)", - "1975-08-05": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", - "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", + "1975-01-13": "Islamic New Year (estimated)", + "1975-03-24": "Prophet's Birthday (estimated)", + "1975-08-05": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr Holiday (estimated)", + "1975-10-08": "Eid al-Fitr Holiday (estimated)", "1975-12-02": "National Day", "1975-12-03": "National Day", - "1975-12-12": "Arafat Day* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha Holiday* (*estimated)", - "1975-12-15": "Eid al-Adha Holiday* (*estimated)", + "1975-12-12": "Arafat Day (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha Holiday (estimated)", + "1975-12-15": "Eid al-Adha Holiday (estimated)", "1976-01-01": "New Year's Day", - "1976-01-02": "Islamic New Year* (*estimated)", - "1976-03-12": "Prophet's Birthday* (*estimated)", - "1976-07-24": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", - "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", - "1976-11-30": "Arafat Day* (*estimated)", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha Holiday* (*estimated); National Day", - "1976-12-03": "Eid al-Adha Holiday* (*estimated); National Day", - "1976-12-22": "Islamic New Year* (*estimated)", + "1976-01-02": "Islamic New Year (estimated)", + "1976-03-12": "Prophet's Birthday (estimated)", + "1976-07-24": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr Holiday (estimated)", + "1976-09-26": "Eid al-Fitr Holiday (estimated)", + "1976-11-30": "Arafat Day (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha Holiday (estimated); National Day", + "1976-12-03": "Eid al-Adha Holiday (estimated); National Day", + "1976-12-22": "Islamic New Year (estimated)", "1977-01-01": "New Year's Day", - "1977-03-02": "Prophet's Birthday* (*estimated)", - "1977-07-13": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", - "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", - "1977-11-20": "Arafat Day* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha Holiday* (*estimated)", - "1977-11-23": "Eid al-Adha Holiday* (*estimated)", + "1977-03-02": "Prophet's Birthday (estimated)", + "1977-07-13": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr Holiday (estimated)", + "1977-09-16": "Eid al-Fitr Holiday (estimated)", + "1977-11-20": "Arafat Day (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha Holiday (estimated)", + "1977-11-23": "Eid al-Adha Holiday (estimated)", "1977-12-02": "National Day", "1977-12-03": "National Day", - "1977-12-11": "Islamic New Year* (*estimated)", + "1977-12-11": "Islamic New Year (estimated)", "1978-01-01": "New Year's Day", - "1978-02-19": "Prophet's Birthday* (*estimated)", - "1978-07-02": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", - "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", - "1978-11-09": "Arafat Day* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha Holiday* (*estimated)", - "1978-11-12": "Eid al-Adha Holiday* (*estimated)", - "1978-12-01": "Islamic New Year* (*estimated)", + "1978-02-19": "Prophet's Birthday (estimated)", + "1978-07-02": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr Holiday (estimated)", + "1978-09-05": "Eid al-Fitr Holiday (estimated)", + "1978-11-09": "Arafat Day (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha Holiday (estimated)", + "1978-11-12": "Eid al-Adha Holiday (estimated)", + "1978-12-01": "Islamic New Year (estimated)", "1978-12-02": "National Day", "1978-12-03": "National Day", "1979-01-01": "New Year's Day", - "1979-02-09": "Prophet's Birthday* (*estimated)", - "1979-06-22": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", - "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", - "1979-10-30": "Arafat Day* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha Holiday* (*estimated)", - "1979-11-02": "Eid al-Adha Holiday* (*estimated)", - "1979-11-20": "Islamic New Year* (*estimated)", + "1979-02-09": "Prophet's Birthday (estimated)", + "1979-06-22": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr Holiday (estimated)", + "1979-08-25": "Eid al-Fitr Holiday (estimated)", + "1979-10-30": "Arafat Day (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha Holiday (estimated)", + "1979-11-02": "Eid al-Adha Holiday (estimated)", + "1979-11-20": "Islamic New Year (estimated)", "1979-12-02": "National Day", "1979-12-03": "National Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Prophet's Birthday* (*estimated)", - "1980-06-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", - "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", - "1980-10-18": "Arafat Day* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha Holiday* (*estimated)", - "1980-10-21": "Eid al-Adha Holiday* (*estimated)", - "1980-11-09": "Islamic New Year* (*estimated)", + "1980-01-30": "Prophet's Birthday (estimated)", + "1980-06-10": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr Holiday (estimated)", + "1980-08-14": "Eid al-Fitr Holiday (estimated)", + "1980-10-18": "Arafat Day (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha Holiday (estimated)", + "1980-10-21": "Eid al-Adha Holiday (estimated)", + "1980-11-09": "Islamic New Year (estimated)", "1980-12-02": "National Day", "1980-12-03": "National Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Prophet's Birthday* (*estimated)", - "1981-05-31": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", - "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", - "1981-10-07": "Arafat Day* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha Holiday* (*estimated)", - "1981-10-10": "Eid al-Adha Holiday* (*estimated)", - "1981-10-28": "Islamic New Year* (*estimated)", + "1981-01-18": "Prophet's Birthday (estimated)", + "1981-05-31": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr Holiday (estimated)", + "1981-08-03": "Eid al-Fitr Holiday (estimated)", + "1981-10-07": "Arafat Day (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha Holiday (estimated)", + "1981-10-10": "Eid al-Adha Holiday (estimated)", + "1981-10-28": "Islamic New Year (estimated)", "1981-12-02": "National Day", "1981-12-03": "National Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Prophet's Birthday* (*estimated)", - "1982-05-20": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", - "1982-07-23": "Eid al-Fitr Holiday* (*estimated)", - "1982-09-26": "Arafat Day* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha Holiday* (*estimated)", - "1982-09-29": "Eid al-Adha Holiday* (*estimated)", - "1982-10-18": "Islamic New Year* (*estimated)", + "1982-01-07": "Prophet's Birthday (estimated)", + "1982-05-20": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr Holiday (estimated)", + "1982-07-23": "Eid al-Fitr Holiday (estimated)", + "1982-09-26": "Arafat Day (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha Holiday (estimated)", + "1982-09-29": "Eid al-Adha Holiday (estimated)", + "1982-10-18": "Islamic New Year (estimated)", "1982-12-02": "National Day", "1982-12-03": "National Day", - "1982-12-27": "Prophet's Birthday* (*estimated)", + "1982-12-27": "Prophet's Birthday (estimated)", "1983-01-01": "New Year's Day", - "1983-05-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", - "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", - "1983-09-16": "Arafat Day* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha Holiday* (*estimated)", - "1983-09-19": "Eid al-Adha Holiday* (*estimated)", - "1983-10-07": "Islamic New Year* (*estimated)", + "1983-05-10": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr Holiday (estimated)", + "1983-07-13": "Eid al-Fitr Holiday (estimated)", + "1983-09-16": "Arafat Day (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha Holiday (estimated)", + "1983-09-19": "Eid al-Adha Holiday (estimated)", + "1983-10-07": "Islamic New Year (estimated)", "1983-12-02": "National Day", "1983-12-03": "National Day", - "1983-12-16": "Prophet's Birthday* (*estimated)", + "1983-12-16": "Prophet's Birthday (estimated)", "1984-01-01": "New Year's Day", - "1984-04-28": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", - "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", - "1984-09-04": "Arafat Day* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha Holiday* (*estimated)", - "1984-09-07": "Eid al-Adha Holiday* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", + "1984-04-28": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr Holiday (estimated)", + "1984-07-02": "Eid al-Fitr Holiday (estimated)", + "1984-09-04": "Arafat Day (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha Holiday (estimated)", + "1984-09-07": "Eid al-Adha Holiday (estimated)", + "1984-09-26": "Islamic New Year (estimated)", "1984-12-02": "National Day", "1984-12-03": "National Day", - "1984-12-04": "Prophet's Birthday* (*estimated)", + "1984-12-04": "Prophet's Birthday (estimated)", "1985-01-01": "New Year's Day", - "1985-04-17": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", - "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", - "1985-08-25": "Arafat Day* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha Holiday* (*estimated)", - "1985-08-28": "Eid al-Adha Holiday* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", - "1985-11-24": "Prophet's Birthday* (*estimated)", + "1985-04-17": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr Holiday (estimated)", + "1985-06-21": "Eid al-Fitr Holiday (estimated)", + "1985-08-25": "Arafat Day (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha Holiday (estimated)", + "1985-08-28": "Eid al-Adha Holiday (estimated)", + "1985-09-15": "Islamic New Year (estimated)", + "1985-11-24": "Prophet's Birthday (estimated)", "1985-12-02": "National Day", "1985-12-03": "National Day", "1986-01-01": "New Year's Day", - "1986-04-06": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", - "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", - "1986-08-14": "Arafat Day* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha Holiday* (*estimated)", - "1986-08-17": "Eid al-Adha Holiday* (*estimated)", - "1986-09-05": "Islamic New Year* (*estimated)", - "1986-11-14": "Prophet's Birthday* (*estimated)", + "1986-04-06": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr Holiday (estimated)", + "1986-06-10": "Eid al-Fitr Holiday (estimated)", + "1986-08-14": "Arafat Day (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha Holiday (estimated)", + "1986-08-17": "Eid al-Adha Holiday (estimated)", + "1986-09-05": "Islamic New Year (estimated)", + "1986-11-14": "Prophet's Birthday (estimated)", "1986-12-02": "National Day", "1986-12-03": "National Day", "1987-01-01": "New Year's Day", - "1987-03-27": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", - "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", - "1987-08-03": "Arafat Day* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha Holiday* (*estimated)", - "1987-08-06": "Eid al-Adha Holiday* (*estimated)", - "1987-08-25": "Islamic New Year* (*estimated)", - "1987-11-03": "Prophet's Birthday* (*estimated)", + "1987-03-27": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr Holiday (estimated)", + "1987-05-30": "Eid al-Fitr Holiday (estimated)", + "1987-08-03": "Arafat Day (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha Holiday (estimated)", + "1987-08-06": "Eid al-Adha Holiday (estimated)", + "1987-08-25": "Islamic New Year (estimated)", + "1987-11-03": "Prophet's Birthday (estimated)", "1987-12-02": "National Day", "1987-12-03": "National Day", "1988-01-01": "New Year's Day", - "1988-03-15": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", - "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", - "1988-07-22": "Arafat Day* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha Holiday* (*estimated)", - "1988-07-25": "Eid al-Adha Holiday* (*estimated)", - "1988-08-13": "Islamic New Year* (*estimated)", - "1988-10-22": "Prophet's Birthday* (*estimated)", + "1988-03-15": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr Holiday (estimated)", + "1988-05-18": "Eid al-Fitr Holiday (estimated)", + "1988-07-22": "Arafat Day (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha Holiday (estimated)", + "1988-07-25": "Eid al-Adha Holiday (estimated)", + "1988-08-13": "Islamic New Year (estimated)", + "1988-10-22": "Prophet's Birthday (estimated)", "1988-12-02": "National Day", "1988-12-03": "National Day", "1989-01-01": "New Year's Day", - "1989-03-05": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", - "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", - "1989-07-12": "Arafat Day* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha Holiday* (*estimated)", - "1989-07-15": "Eid al-Adha Holiday* (*estimated)", - "1989-08-02": "Islamic New Year* (*estimated)", - "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-03-05": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr Holiday (estimated)", + "1989-05-08": "Eid al-Fitr Holiday (estimated)", + "1989-07-12": "Arafat Day (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha Holiday (estimated)", + "1989-07-15": "Eid al-Adha Holiday (estimated)", + "1989-08-02": "Islamic New Year (estimated)", + "1989-10-11": "Prophet's Birthday (estimated)", "1989-12-02": "National Day", "1989-12-03": "National Day", "1990-01-01": "New Year's Day", - "1990-02-22": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", - "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", - "1990-07-01": "Arafat Day* (*estimated)", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha Holiday* (*estimated)", - "1990-07-04": "Eid al-Adha Holiday* (*estimated)", - "1990-07-23": "Islamic New Year* (*estimated)", - "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-02-22": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr Holiday (estimated)", + "1990-04-28": "Eid al-Fitr Holiday (estimated)", + "1990-07-01": "Arafat Day (estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha Holiday (estimated)", + "1990-07-04": "Eid al-Adha Holiday (estimated)", + "1990-07-23": "Islamic New Year (estimated)", + "1990-10-01": "Prophet's Birthday (estimated)", "1990-12-02": "National Day", "1990-12-03": "National Day", "1991-01-01": "New Year's Day", - "1991-02-11": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", - "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", - "1991-06-21": "Arafat Day* (*estimated)", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha Holiday* (*estimated)", - "1991-06-24": "Eid al-Adha Holiday* (*estimated)", - "1991-07-12": "Islamic New Year* (*estimated)", - "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-02-11": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr Holiday (estimated)", + "1991-04-17": "Eid al-Fitr Holiday (estimated)", + "1991-06-21": "Arafat Day (estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha Holiday (estimated)", + "1991-06-24": "Eid al-Adha Holiday (estimated)", + "1991-07-12": "Islamic New Year (estimated)", + "1991-09-20": "Prophet's Birthday (estimated)", "1991-12-02": "National Day", "1991-12-03": "National Day", "1992-01-01": "New Year's Day", - "1992-01-31": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", - "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", - "1992-06-10": "Arafat Day* (*estimated)", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha Holiday* (*estimated)", - "1992-06-13": "Eid al-Adha Holiday* (*estimated)", - "1992-07-01": "Islamic New Year* (*estimated)", - "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-01-31": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr Holiday (estimated)", + "1992-04-06": "Eid al-Fitr Holiday (estimated)", + "1992-06-10": "Arafat Day (estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha Holiday (estimated)", + "1992-06-13": "Eid al-Adha Holiday (estimated)", + "1992-07-01": "Islamic New Year (estimated)", + "1992-09-09": "Prophet's Birthday (estimated)", "1992-12-02": "National Day", "1992-12-03": "National Day", "1993-01-01": "New Year's Day", - "1993-01-20": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", - "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", - "1993-05-30": "Arafat Day* (*estimated)", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha Holiday* (*estimated)", - "1993-06-02": "Eid al-Adha Holiday* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", - "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-01-20": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr Holiday (estimated)", + "1993-03-26": "Eid al-Fitr Holiday (estimated)", + "1993-05-30": "Arafat Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha Holiday (estimated)", + "1993-06-02": "Eid al-Adha Holiday (estimated)", + "1993-06-21": "Islamic New Year (estimated)", + "1993-08-29": "Prophet's Birthday (estimated)", "1993-12-02": "National Day", "1993-12-03": "National Day", "1994-01-01": "New Year's Day", - "1994-01-09": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", - "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", - "1994-05-19": "Arafat Day* (*estimated)", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha Holiday* (*estimated)", - "1994-05-22": "Eid al-Adha Holiday* (*estimated)", - "1994-06-10": "Islamic New Year* (*estimated)", - "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-01-09": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr Holiday (estimated)", + "1994-03-15": "Eid al-Fitr Holiday (estimated)", + "1994-05-19": "Arafat Day (estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha Holiday (estimated)", + "1994-05-22": "Eid al-Adha Holiday (estimated)", + "1994-06-10": "Islamic New Year (estimated)", + "1994-08-19": "Prophet's Birthday (estimated)", "1994-12-02": "National Day", "1994-12-03": "National Day", - "1994-12-29": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1994-12-29": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1995-01-01": "New Year's Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", - "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", - "1995-05-08": "Arafat Day* (*estimated)", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha Holiday* (*estimated)", - "1995-05-11": "Eid al-Adha Holiday* (*estimated)", - "1995-05-30": "Islamic New Year* (*estimated)", - "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr Holiday (estimated)", + "1995-03-04": "Eid al-Fitr Holiday (estimated)", + "1995-05-08": "Arafat Day (estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha Holiday (estimated)", + "1995-05-11": "Eid al-Adha Holiday (estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-08-08": "Prophet's Birthday (estimated)", "1995-12-02": "National Day", "1995-12-03": "National Day", - "1995-12-19": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1995-12-19": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1996-01-01": "New Year's Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", - "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", - "1996-04-26": "Arafat Day* (*estimated)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha Holiday* (*estimated)", - "1996-04-29": "Eid al-Adha Holiday* (*estimated)", - "1996-05-18": "Islamic New Year* (*estimated)", - "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr Holiday (estimated)", + "1996-02-21": "Eid al-Fitr Holiday (estimated)", + "1996-04-26": "Arafat Day (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha Holiday (estimated)", + "1996-04-29": "Eid al-Adha Holiday (estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-07-27": "Prophet's Birthday (estimated)", "1996-12-02": "National Day", "1996-12-03": "National Day", - "1996-12-08": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1996-12-08": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", - "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", - "1997-04-16": "Arafat Day* (*estimated)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha Holiday* (*estimated)", - "1997-04-19": "Eid al-Adha Holiday* (*estimated)", - "1997-05-07": "Islamic New Year* (*estimated)", - "1997-07-16": "Prophet's Birthday* (*estimated)", - "1997-11-27": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr Holiday (estimated)", + "1997-02-10": "Eid al-Fitr Holiday (estimated)", + "1997-04-16": "Arafat Day (estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha Holiday (estimated)", + "1997-04-19": "Eid al-Adha Holiday (estimated)", + "1997-05-07": "Islamic New Year (estimated)", + "1997-07-16": "Prophet's Birthday (estimated)", + "1997-11-27": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1997-12-02": "National Day", "1997-12-03": "National Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", - "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", - "1998-04-06": "Arafat Day* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha Holiday* (*estimated)", - "1998-04-09": "Eid al-Adha Holiday* (*estimated)", - "1998-04-27": "Islamic New Year* (*estimated)", - "1998-07-06": "Prophet's Birthday* (*estimated)", - "1998-11-16": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr Holiday (estimated)", + "1998-01-31": "Eid al-Fitr Holiday (estimated)", + "1998-04-06": "Arafat Day (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha Holiday (estimated)", + "1998-04-09": "Eid al-Adha Holiday (estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-07-06": "Prophet's Birthday (estimated)", + "1998-11-16": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1998-12-02": "National Day", "1998-12-03": "National Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", - "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", - "1999-03-26": "Arafat Day* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha Holiday* (*estimated)", - "1999-03-29": "Eid al-Adha Holiday* (*estimated)", - "1999-04-17": "Islamic New Year* (*estimated)", - "1999-06-26": "Prophet's Birthday* (*estimated)", - "1999-11-05": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr Holiday (estimated)", + "1999-01-20": "Eid al-Fitr Holiday (estimated)", + "1999-03-26": "Arafat Day (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha Holiday (estimated)", + "1999-03-29": "Eid al-Adha Holiday (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-06-26": "Prophet's Birthday (estimated)", + "1999-11-05": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "1999-12-02": "National Day", "1999-12-03": "National Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", - "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", - "2000-03-15": "Arafat Day* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha Holiday* (*estimated)", - "2000-03-18": "Eid al-Adha Holiday* (*estimated)", - "2000-04-06": "Islamic New Year* (*estimated)", - "2000-06-14": "Prophet's Birthday* (*estimated)", - "2000-10-24": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr Holiday (estimated)", + "2000-01-10": "Eid al-Fitr Holiday (estimated)", + "2000-03-15": "Arafat Day (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha Holiday (estimated)", + "2000-03-18": "Eid al-Adha Holiday (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-06-14": "Prophet's Birthday (estimated)", + "2000-10-24": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "2000-12-02": "National Day", "2000-12-03": "National Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", - "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr Holiday (estimated)", + "2000-12-29": "Eid al-Fitr Holiday (estimated)", "2001-01-01": "New Year's Day", - "2001-03-04": "Arafat Day* (*estimated)", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha Holiday* (*estimated)", - "2001-03-07": "Eid al-Adha Holiday* (*estimated)", - "2001-03-26": "Islamic New Year* (*estimated)", - "2001-06-04": "Prophet's Birthday* (*estimated)", - "2001-10-14": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2001-03-04": "Arafat Day (estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha Holiday (estimated)", + "2001-03-07": "Eid al-Adha Holiday (estimated)", + "2001-03-26": "Islamic New Year (estimated)", + "2001-06-04": "Prophet's Birthday (estimated)", + "2001-10-14": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "2001-12-02": "National Day", "2001-12-03": "National Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", - "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", - "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2001-12-17": "Eid al-Fitr Holiday (estimated)", + "2001-12-18": "Eid al-Fitr Holiday (estimated)", "2002-01-01": "New Year's Day", - "2002-02-21": "Arafat Day* (*estimated)", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha Holiday* (*estimated)", - "2002-02-24": "Eid al-Adha Holiday* (*estimated)", - "2002-03-15": "Islamic New Year* (*estimated)", - "2002-05-24": "Prophet's Birthday* (*estimated)", - "2002-10-04": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", + "2002-02-21": "Arafat Day (estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha Holiday (estimated)", + "2002-02-24": "Eid al-Adha Holiday (estimated)", + "2002-03-15": "Islamic New Year (estimated)", + "2002-05-24": "Prophet's Birthday (estimated)", + "2002-10-04": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", "2002-12-02": "National Day", "2002-12-03": "National Day", - "2002-12-05": "Eid al-Fitr* (*estimated)", - "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", - "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", + "2002-12-06": "Eid al-Fitr Holiday (estimated)", + "2002-12-07": "Eid al-Fitr Holiday (estimated)", "2003-01-01": "New Year's Day", - "2003-02-10": "Arafat Day* (*estimated)", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha Holiday* (*estimated)", - "2003-02-13": "Eid al-Adha Holiday* (*estimated)", - "2003-03-04": "Islamic New Year* (*estimated)", - "2003-05-13": "Prophet's Birthday* (*estimated)", - "2003-09-24": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2003-11-25": "Eid al-Fitr* (*estimated)", - "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", - "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", + "2003-02-10": "Arafat Day (estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha Holiday (estimated)", + "2003-02-13": "Eid al-Adha Holiday (estimated)", + "2003-03-04": "Islamic New Year (estimated)", + "2003-05-13": "Prophet's Birthday (estimated)", + "2003-09-24": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", + "2003-11-26": "Eid al-Fitr Holiday (estimated)", + "2003-11-27": "Eid al-Fitr Holiday (estimated)", "2003-12-02": "National Day", "2003-12-03": "National Day", "2004-01-01": "New Year's Day", - "2004-01-31": "Arafat Day* (*estimated)", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha Holiday* (*estimated)", - "2004-02-03": "Eid al-Adha Holiday* (*estimated)", - "2004-02-21": "Islamic New Year* (*estimated)", - "2004-05-01": "Prophet's Birthday* (*estimated)", - "2004-09-12": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", - "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", + "2004-01-31": "Arafat Day (estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha Holiday (estimated)", + "2004-02-03": "Eid al-Adha Holiday (estimated)", + "2004-02-21": "Islamic New Year (estimated)", + "2004-05-01": "Prophet's Birthday (estimated)", + "2004-09-12": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr Holiday (estimated)", + "2004-11-16": "Eid al-Fitr Holiday (estimated)", "2004-12-02": "National Day", "2004-12-03": "National Day", "2005-01-01": "New Year's Day", - "2005-01-20": "Arafat Day* (*estimated)", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha Holiday* (*estimated)", - "2005-01-23": "Eid al-Adha Holiday* (*estimated)", - "2005-02-10": "Islamic New Year* (*estimated)", - "2005-04-21": "Prophet's Birthday* (*estimated)", - "2005-09-01": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2005-11-03": "Eid al-Fitr* (*estimated)", - "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", - "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", + "2005-01-20": "Arafat Day (estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha Holiday (estimated)", + "2005-01-23": "Eid al-Adha Holiday (estimated)", + "2005-02-10": "Islamic New Year (estimated)", + "2005-04-21": "Prophet's Birthday (estimated)", + "2005-09-01": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", + "2005-11-04": "Eid al-Fitr Holiday (estimated)", + "2005-11-05": "Eid al-Fitr Holiday (estimated)", "2005-12-02": "National Day", "2005-12-03": "National Day", "2006-01-01": "New Year's Day", - "2006-01-09": "Arafat Day* (*estimated)", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha Holiday* (*estimated)", - "2006-01-12": "Eid al-Adha Holiday* (*estimated)", - "2006-01-31": "Islamic New Year* (*estimated)", - "2006-04-10": "Prophet's Birthday* (*estimated)", - "2006-08-21": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", - "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", + "2006-01-09": "Arafat Day (estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha Holiday (estimated)", + "2006-01-12": "Eid al-Adha Holiday (estimated)", + "2006-01-31": "Islamic New Year (estimated)", + "2006-04-10": "Prophet's Birthday (estimated)", + "2006-08-21": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-10-24": "Eid al-Fitr Holiday (estimated)", + "2006-10-25": "Eid al-Fitr Holiday (estimated)", "2006-12-02": "National Day", "2006-12-03": "National Day", - "2006-12-30": "Arafat Day* (*estimated)", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", - "2007-01-02": "Eid al-Adha Holiday* (*estimated)", - "2007-01-20": "Islamic New Year* (*estimated)", - "2007-03-31": "Prophet's Birthday* (*estimated)", - "2007-08-10": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", - "2007-10-15": "Eid al-Fitr Holiday* (*estimated)", + "2006-12-30": "Arafat Day (estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha Holiday (estimated); New Year's Day", + "2007-01-02": "Eid al-Adha Holiday (estimated)", + "2007-01-20": "Islamic New Year (estimated)", + "2007-03-31": "Prophet's Birthday (estimated)", + "2007-08-10": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-14": "Eid al-Fitr Holiday (estimated)", + "2007-10-15": "Eid al-Fitr Holiday (estimated)", "2007-12-02": "National Day", "2007-12-03": "National Day", - "2007-12-19": "Arafat Day* (*estimated)", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha Holiday* (*estimated)", - "2007-12-22": "Eid al-Adha Holiday* (*estimated)", + "2007-12-19": "Arafat Day (estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha Holiday (estimated)", + "2007-12-22": "Eid al-Adha Holiday (estimated)", "2008-01-01": "New Year's Day", - "2008-01-10": "Islamic New Year* (*estimated)", - "2008-03-20": "Prophet's Birthday* (*estimated)", - "2008-07-30": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", - "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", + "2008-01-10": "Islamic New Year (estimated)", + "2008-03-20": "Prophet's Birthday (estimated)", + "2008-07-30": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-10-02": "Eid al-Fitr Holiday (estimated)", + "2008-10-03": "Eid al-Fitr Holiday (estimated)", "2008-12-02": "National Day", "2008-12-03": "National Day", - "2008-12-07": "Arafat Day* (*estimated)", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha Holiday* (*estimated)", - "2008-12-10": "Eid al-Adha Holiday* (*estimated)", - "2008-12-29": "Islamic New Year* (*estimated)", + "2008-12-07": "Arafat Day (estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha Holiday (estimated)", + "2008-12-10": "Eid al-Adha Holiday (estimated)", + "2008-12-29": "Islamic New Year (estimated)", "2009-01-01": "New Year's Day", - "2009-03-09": "Prophet's Birthday* (*estimated)", - "2009-07-20": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", - "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", - "2009-11-26": "Arafat Day* (*estimated)", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha Holiday* (*estimated)", - "2009-11-29": "Eid al-Adha Holiday* (*estimated)", + "2009-03-09": "Prophet's Birthday (estimated)", + "2009-07-20": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr Holiday (estimated)", + "2009-09-22": "Eid al-Fitr Holiday (estimated)", + "2009-11-26": "Arafat Day (estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha Holiday (estimated)", + "2009-11-29": "Eid al-Adha Holiday (estimated)", "2009-12-02": "National Day", "2009-12-03": "National Day", - "2009-12-18": "Islamic New Year* (*estimated)", + "2009-12-18": "Islamic New Year (estimated)", "2010-01-01": "New Year's Day", - "2010-02-26": "Prophet's Birthday* (*estimated)", - "2010-07-09": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2010-09-10": "Eid al-Fitr* (*estimated)", - "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", - "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", - "2010-11-15": "Arafat Day* (*estimated)", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha Holiday* (*estimated)", - "2010-11-18": "Eid al-Adha Holiday* (*estimated)", + "2010-02-26": "Prophet's Birthday (estimated)", + "2010-07-09": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", + "2010-09-11": "Eid al-Fitr Holiday (estimated)", + "2010-09-12": "Eid al-Fitr Holiday (estimated)", + "2010-11-15": "Arafat Day (estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha Holiday (estimated)", + "2010-11-18": "Eid al-Adha Holiday (estimated)", "2010-12-02": "National Day", "2010-12-03": "National Day", - "2010-12-07": "Islamic New Year* (*estimated)", + "2010-12-07": "Islamic New Year (estimated)", "2011-01-01": "New Year's Day", - "2011-02-15": "Prophet's Birthday* (*estimated)", - "2011-06-29": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2011-08-30": "Eid al-Fitr* (*estimated)", - "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", - "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", - "2011-11-05": "Arafat Day* (*estimated)", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha Holiday* (*estimated)", - "2011-11-08": "Eid al-Adha Holiday* (*estimated)", - "2011-11-26": "Islamic New Year* (*estimated)", + "2011-02-15": "Prophet's Birthday (estimated)", + "2011-06-29": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", + "2011-08-31": "Eid al-Fitr Holiday (estimated)", + "2011-09-01": "Eid al-Fitr Holiday (estimated)", + "2011-11-05": "Arafat Day (estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha Holiday (estimated)", + "2011-11-08": "Eid al-Adha Holiday (estimated)", + "2011-11-26": "Islamic New Year (estimated)", "2011-12-02": "National Day", "2011-12-03": "National Day", "2012-01-01": "New Year's Day", - "2012-02-04": "Prophet's Birthday* (*estimated)", - "2012-06-17": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", - "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", - "2012-10-25": "Arafat Day* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha Holiday* (*estimated)", - "2012-10-28": "Eid al-Adha Holiday* (*estimated)", - "2012-11-15": "Islamic New Year* (*estimated)", + "2012-02-04": "Prophet's Birthday (estimated)", + "2012-06-17": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr Holiday (estimated)", + "2012-08-21": "Eid al-Fitr Holiday (estimated)", + "2012-10-25": "Arafat Day (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha Holiday (estimated)", + "2012-10-28": "Eid al-Adha Holiday (estimated)", + "2012-11-15": "Islamic New Year (estimated)", "2012-12-02": "National Day", "2012-12-03": "National Day", "2013-01-01": "New Year's Day", - "2013-01-24": "Prophet's Birthday* (*estimated)", - "2013-06-06": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", - "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", - "2013-10-14": "Arafat Day* (*estimated)", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha Holiday* (*estimated)", - "2013-10-17": "Eid al-Adha Holiday* (*estimated)", - "2013-11-04": "Islamic New Year* (*estimated)", + "2013-01-24": "Prophet's Birthday (estimated)", + "2013-06-06": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-08-09": "Eid al-Fitr Holiday (estimated)", + "2013-08-10": "Eid al-Fitr Holiday (estimated)", + "2013-10-14": "Arafat Day (estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha Holiday (estimated)", + "2013-10-17": "Eid al-Adha Holiday (estimated)", + "2013-11-04": "Islamic New Year (estimated)", "2013-12-02": "National Day", "2013-12-03": "National Day", "2014-01-01": "New Year's Day", - "2014-01-13": "Prophet's Birthday* (*estimated)", - "2014-05-26": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", - "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", - "2014-10-03": "Arafat Day* (*estimated)", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha Holiday* (*estimated)", - "2014-10-06": "Eid al-Adha Holiday* (*estimated)", - "2014-10-25": "Islamic New Year* (*estimated)", + "2014-01-13": "Prophet's Birthday (estimated)", + "2014-05-26": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-07-29": "Eid al-Fitr Holiday (estimated)", + "2014-07-30": "Eid al-Fitr Holiday (estimated)", + "2014-10-03": "Arafat Day (estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha Holiday (estimated)", + "2014-10-06": "Eid al-Adha Holiday (estimated)", + "2014-10-25": "Islamic New Year (estimated)", "2014-12-02": "National Day", "2014-12-03": "National Day", "2015-01-01": "New Year's Day", - "2015-01-03": "Prophet's Birthday* (*estimated)", - "2015-05-16": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", - "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", - "2015-09-22": "Arafat Day* (*estimated)", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha Holiday* (*estimated)", - "2015-09-25": "Eid al-Adha Holiday* (*estimated)", - "2015-10-14": "Islamic New Year* (*estimated)", + "2015-01-03": "Prophet's Birthday (estimated)", + "2015-05-16": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-07-18": "Eid al-Fitr Holiday (estimated)", + "2015-07-19": "Eid al-Fitr Holiday (estimated)", + "2015-09-22": "Arafat Day (estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha Holiday (estimated)", + "2015-09-25": "Eid al-Adha Holiday (estimated)", + "2015-10-14": "Islamic New Year (estimated)", "2015-11-30": "Commemoration Day", "2015-12-02": "National Day", "2015-12-03": "National Day", - "2015-12-23": "Prophet's Birthday* (*estimated)", + "2015-12-23": "Prophet's Birthday (estimated)", "2016-01-01": "New Year's Day", - "2016-05-04": "Leilat al-Miraj (Ascension of the Prophet)* (*estimated)", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", - "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", - "2016-09-10": "Arafat Day* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha Holiday* (*estimated)", - "2016-09-13": "Eid al-Adha Holiday* (*estimated)", - "2016-10-02": "Islamic New Year* (*estimated)", + "2016-05-04": "Leilat al-Miraj (Ascension of the Prophet) (estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-07-07": "Eid al-Fitr Holiday (estimated)", + "2016-07-08": "Eid al-Fitr Holiday (estimated)", + "2016-09-10": "Arafat Day (estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha Holiday (estimated)", + "2016-09-13": "Eid al-Adha Holiday (estimated)", + "2016-10-02": "Islamic New Year (estimated)", "2016-11-30": "Commemoration Day", "2016-12-02": "National Day", "2016-12-03": "National Day", - "2016-12-11": "Prophet's Birthday* (*estimated)", + "2016-12-11": "Prophet's Birthday (estimated)", "2017-01-01": "New Year's Day", "2017-04-23": "Leilat al-Miraj (Ascension of the Prophet)", "2017-06-25": "Eid al-Fitr", @@ -940,365 +940,365 @@ "2020-12-02": "National Day", "2020-12-03": "National Day", "2021-01-01": "New Year's Day", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", - "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", - "2021-07-19": "Arafat Day* (*estimated)", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha Holiday* (*estimated)", - "2021-07-22": "Eid al-Adha Holiday* (*estimated)", - "2021-08-09": "Islamic New Year* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-05-14": "Eid al-Fitr Holiday (estimated)", + "2021-05-15": "Eid al-Fitr Holiday (estimated)", + "2021-07-19": "Arafat Day (estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha Holiday (estimated)", + "2021-07-22": "Eid al-Adha Holiday (estimated)", + "2021-08-09": "Islamic New Year (estimated)", "2021-12-01": "Commemoration Day", "2021-12-02": "National Day", "2021-12-03": "National Day", "2022-01-01": "New Year's Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", - "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", - "2022-05-04": "Eid al-Fitr Holiday* (*estimated)", - "2022-07-08": "Arafat Day* (*estimated)", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha Holiday* (*estimated)", - "2022-07-11": "Eid al-Adha Holiday* (*estimated)", - "2022-07-30": "Islamic New Year* (*estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", + "2022-05-03": "Eid al-Fitr Holiday (estimated)", + "2022-05-04": "Eid al-Fitr Holiday (estimated)", + "2022-07-08": "Arafat Day (estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha Holiday (estimated)", + "2022-07-11": "Eid al-Adha Holiday (estimated)", + "2022-07-30": "Islamic New Year (estimated)", "2022-12-01": "Commemoration Day", "2022-12-02": "National Day", "2022-12-03": "National Day", "2023-01-01": "New Year's Day", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", - "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", - "2023-06-27": "Arafat Day* (*estimated)", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha Holiday* (*estimated)", - "2023-06-30": "Eid al-Adha Holiday* (*estimated)", - "2023-07-19": "Islamic New Year* (*estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", + "2023-04-22": "Eid al-Fitr Holiday (estimated)", + "2023-04-23": "Eid al-Fitr Holiday (estimated)", + "2023-06-27": "Arafat Day (estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha Holiday (estimated)", + "2023-06-30": "Eid al-Adha Holiday (estimated)", + "2023-07-19": "Islamic New Year (estimated)", "2023-12-01": "Commemoration Day", "2023-12-02": "National Day", "2023-12-03": "National Day", "2024-01-01": "New Year's Day", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", - "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", - "2024-06-15": "Arafat Day* (*estimated)", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha Holiday* (*estimated)", - "2024-06-18": "Eid al-Adha Holiday* (*estimated)", - "2024-07-07": "Islamic New Year* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr Holiday (estimated)", + "2024-04-12": "Eid al-Fitr Holiday (estimated)", + "2024-06-15": "Arafat Day (estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha Holiday (estimated)", + "2024-06-18": "Eid al-Adha Holiday (estimated)", + "2024-07-07": "Islamic New Year (estimated)", "2024-12-01": "Commemoration Day", "2024-12-02": "National Day", "2024-12-03": "National Day", "2025-01-01": "New Year's Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", - "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", - "2025-06-05": "Arafat Day* (*estimated)", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha Holiday* (*estimated)", - "2025-06-08": "Eid al-Adha Holiday* (*estimated)", - "2025-06-26": "Islamic New Year* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr Holiday (estimated)", + "2025-04-01": "Eid al-Fitr Holiday (estimated)", + "2025-06-05": "Arafat Day (estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha Holiday (estimated)", + "2025-06-08": "Eid al-Adha Holiday (estimated)", + "2025-06-26": "Islamic New Year (estimated)", "2025-12-01": "Commemoration Day", "2025-12-02": "National Day", "2025-12-03": "National Day", "2026-01-01": "New Year's Day", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", - "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", - "2026-05-26": "Arafat Day* (*estimated)", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha Holiday* (*estimated)", - "2026-05-29": "Eid al-Adha Holiday* (*estimated)", - "2026-06-16": "Islamic New Year* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr Holiday (estimated)", + "2026-03-22": "Eid al-Fitr Holiday (estimated)", + "2026-05-26": "Arafat Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha Holiday (estimated)", + "2026-05-29": "Eid al-Adha Holiday (estimated)", + "2026-06-16": "Islamic New Year (estimated)", "2026-12-01": "Commemoration Day", "2026-12-02": "National Day", "2026-12-03": "National Day", "2027-01-01": "New Year's Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", - "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", - "2027-05-15": "Arafat Day* (*estimated)", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha Holiday* (*estimated)", - "2027-05-18": "Eid al-Adha Holiday* (*estimated)", - "2027-06-06": "Islamic New Year* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr Holiday (estimated)", + "2027-03-11": "Eid al-Fitr Holiday (estimated)", + "2027-05-15": "Arafat Day (estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha Holiday (estimated)", + "2027-05-18": "Eid al-Adha Holiday (estimated)", + "2027-06-06": "Islamic New Year (estimated)", "2027-12-01": "Commemoration Day", "2027-12-02": "National Day", "2027-12-03": "National Day", "2028-01-01": "New Year's Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", - "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", - "2028-05-04": "Arafat Day* (*estimated)", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha Holiday* (*estimated)", - "2028-05-07": "Eid al-Adha Holiday* (*estimated)", - "2028-05-25": "Islamic New Year* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr Holiday (estimated)", + "2028-02-28": "Eid al-Fitr Holiday (estimated)", + "2028-05-04": "Arafat Day (estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha Holiday (estimated)", + "2028-05-07": "Eid al-Adha Holiday (estimated)", + "2028-05-25": "Islamic New Year (estimated)", "2028-12-01": "Commemoration Day", "2028-12-02": "National Day", "2028-12-03": "National Day", "2029-01-01": "New Year's Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", - "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", - "2029-04-23": "Arafat Day* (*estimated)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha Holiday* (*estimated)", - "2029-04-26": "Eid al-Adha Holiday* (*estimated)", - "2029-05-14": "Islamic New Year* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr Holiday (estimated)", + "2029-02-16": "Eid al-Fitr Holiday (estimated)", + "2029-04-23": "Arafat Day (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha Holiday (estimated)", + "2029-04-26": "Eid al-Adha Holiday (estimated)", + "2029-05-14": "Islamic New Year (estimated)", "2029-12-01": "Commemoration Day", "2029-12-02": "National Day", "2029-12-03": "National Day", "2030-01-01": "New Year's Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", - "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", - "2030-04-12": "Arafat Day* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha Holiday* (*estimated)", - "2030-04-15": "Eid al-Adha Holiday* (*estimated)", - "2030-05-03": "Islamic New Year* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr Holiday (estimated)", + "2030-02-06": "Eid al-Fitr Holiday (estimated)", + "2030-04-12": "Arafat Day (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha Holiday (estimated)", + "2030-04-15": "Eid al-Adha Holiday (estimated)", + "2030-05-03": "Islamic New Year (estimated)", "2030-12-01": "Commemoration Day", "2030-12-02": "National Day", "2030-12-03": "National Day", "2031-01-01": "New Year's Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", - "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", - "2031-04-01": "Arafat Day* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha Holiday* (*estimated)", - "2031-04-04": "Eid al-Adha Holiday* (*estimated)", - "2031-04-23": "Islamic New Year* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr Holiday (estimated)", + "2031-01-26": "Eid al-Fitr Holiday (estimated)", + "2031-04-01": "Arafat Day (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha Holiday (estimated)", + "2031-04-04": "Eid al-Adha Holiday (estimated)", + "2031-04-23": "Islamic New Year (estimated)", "2031-12-01": "Commemoration Day", "2031-12-02": "National Day", "2031-12-03": "National Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", - "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", - "2032-03-21": "Arafat Day* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha Holiday* (*estimated)", - "2032-03-24": "Eid al-Adha Holiday* (*estimated)", - "2032-04-11": "Islamic New Year* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr Holiday (estimated)", + "2032-01-16": "Eid al-Fitr Holiday (estimated)", + "2032-03-21": "Arafat Day (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha Holiday (estimated)", + "2032-03-24": "Eid al-Adha Holiday (estimated)", + "2032-04-11": "Islamic New Year (estimated)", "2032-12-01": "Commemoration Day", "2032-12-02": "National Day", "2032-12-03": "National Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", - "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", - "2033-03-10": "Arafat Day* (*estimated)", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha Holiday* (*estimated)", - "2033-03-13": "Eid al-Adha Holiday* (*estimated)", - "2033-04-01": "Islamic New Year* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr Holiday (estimated)", + "2033-01-04": "Eid al-Fitr Holiday (estimated)", + "2033-03-10": "Arafat Day (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha Holiday (estimated)", + "2033-03-13": "Eid al-Adha Holiday (estimated)", + "2033-04-01": "Islamic New Year (estimated)", "2033-12-01": "Commemoration Day", "2033-12-02": "National Day", "2033-12-03": "National Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", - "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr Holiday (estimated)", + "2033-12-25": "Eid al-Fitr Holiday (estimated)", "2034-01-01": "New Year's Day", - "2034-02-28": "Arafat Day* (*estimated)", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha Holiday* (*estimated)", - "2034-03-03": "Eid al-Adha Holiday* (*estimated)", - "2034-03-21": "Islamic New Year* (*estimated)", + "2034-02-28": "Arafat Day (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha Holiday (estimated)", + "2034-03-03": "Eid al-Adha Holiday (estimated)", + "2034-03-21": "Islamic New Year (estimated)", "2034-12-01": "Commemoration Day", "2034-12-02": "National Day", "2034-12-03": "National Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", - "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr Holiday (estimated)", + "2034-12-14": "Eid al-Fitr Holiday (estimated)", "2035-01-01": "New Year's Day", - "2035-02-17": "Arafat Day* (*estimated)", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha Holiday* (*estimated)", - "2035-02-20": "Eid al-Adha Holiday* (*estimated)", - "2035-03-11": "Islamic New Year* (*estimated)", - "2035-12-01": "Commemoration Day; Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr Holiday* (*estimated); National Day", - "2035-12-03": "Eid al-Fitr Holiday* (*estimated); National Day", + "2035-02-17": "Arafat Day (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha Holiday (estimated)", + "2035-02-20": "Eid al-Adha Holiday (estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-12-01": "Commemoration Day; Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr Holiday (estimated); National Day", + "2035-12-03": "Eid al-Fitr Holiday (estimated); National Day", "2036-01-01": "New Year's Day", - "2036-02-06": "Arafat Day* (*estimated)", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha Holiday* (*estimated)", - "2036-02-09": "Eid al-Adha Holiday* (*estimated)", - "2036-02-28": "Islamic New Year* (*estimated)", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", - "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2036-02-06": "Arafat Day (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha Holiday (estimated)", + "2036-02-09": "Eid al-Adha Holiday (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr Holiday (estimated)", + "2036-11-21": "Eid al-Fitr Holiday (estimated)", "2036-12-01": "Commemoration Day", "2036-12-02": "National Day", "2036-12-03": "National Day", "2037-01-01": "New Year's Day", - "2037-01-25": "Arafat Day* (*estimated)", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha Holiday* (*estimated)", - "2037-01-28": "Eid al-Adha Holiday* (*estimated)", - "2037-02-16": "Islamic New Year* (*estimated)", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", - "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2037-01-25": "Arafat Day (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha Holiday (estimated)", + "2037-01-28": "Eid al-Adha Holiday (estimated)", + "2037-02-16": "Islamic New Year (estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr Holiday (estimated)", + "2037-11-10": "Eid al-Fitr Holiday (estimated)", "2037-12-01": "Commemoration Day", "2037-12-02": "National Day", "2037-12-03": "National Day", "2038-01-01": "New Year's Day", - "2038-01-15": "Arafat Day* (*estimated)", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha Holiday* (*estimated)", - "2038-01-18": "Eid al-Adha Holiday* (*estimated)", - "2038-02-05": "Islamic New Year* (*estimated)", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", - "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2038-01-15": "Arafat Day (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha Holiday (estimated)", + "2038-01-18": "Eid al-Adha Holiday (estimated)", + "2038-02-05": "Islamic New Year (estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr Holiday (estimated)", + "2038-10-31": "Eid al-Fitr Holiday (estimated)", "2038-12-01": "Commemoration Day", "2038-12-02": "National Day", "2038-12-03": "National Day", "2039-01-01": "New Year's Day", - "2039-01-04": "Arafat Day* (*estimated)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha Holiday* (*estimated)", - "2039-01-07": "Eid al-Adha Holiday* (*estimated)", - "2039-01-26": "Islamic New Year* (*estimated)", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", - "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", + "2039-01-04": "Arafat Day (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha Holiday (estimated)", + "2039-01-07": "Eid al-Adha Holiday (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr Holiday (estimated)", + "2039-10-21": "Eid al-Fitr Holiday (estimated)", "2039-12-01": "Commemoration Day", "2039-12-02": "National Day", "2039-12-03": "National Day", - "2039-12-25": "Arafat Day* (*estimated)", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha Holiday* (*estimated)", - "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2039-12-25": "Arafat Day (estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha Holiday (estimated)", + "2039-12-28": "Eid al-Adha Holiday (estimated)", "2040-01-01": "New Year's Day", - "2040-01-15": "Islamic New Year* (*estimated)", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", - "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr Holiday (estimated)", + "2040-10-09": "Eid al-Fitr Holiday (estimated)", "2040-12-01": "Commemoration Day", "2040-12-02": "National Day", "2040-12-03": "National Day", - "2040-12-13": "Arafat Day* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha Holiday* (*estimated)", - "2040-12-16": "Eid al-Adha Holiday* (*estimated)", + "2040-12-13": "Arafat Day (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha Holiday (estimated)", + "2040-12-16": "Eid al-Adha Holiday (estimated)", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", - "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-01-04": "Islamic New Year (estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr Holiday (estimated)", + "2041-09-28": "Eid al-Fitr Holiday (estimated)", "2041-12-01": "Commemoration Day", "2041-12-02": "National Day", - "2041-12-03": "Arafat Day* (*estimated); National Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha Holiday* (*estimated)", - "2041-12-06": "Eid al-Adha Holiday* (*estimated)", - "2041-12-24": "Islamic New Year* (*estimated)", + "2041-12-03": "Arafat Day (estimated); National Day", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha Holiday (estimated)", + "2041-12-06": "Eid al-Adha Holiday (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2042-01-01": "New Year's Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", - "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", - "2042-11-22": "Arafat Day* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha Holiday* (*estimated)", - "2042-11-25": "Eid al-Adha Holiday* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr Holiday (estimated)", + "2042-09-17": "Eid al-Fitr Holiday (estimated)", + "2042-11-22": "Arafat Day (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha Holiday (estimated)", + "2042-11-25": "Eid al-Adha Holiday (estimated)", "2042-12-01": "Commemoration Day", "2042-12-02": "National Day", "2042-12-03": "National Day", - "2042-12-14": "Islamic New Year* (*estimated)", + "2042-12-14": "Islamic New Year (estimated)", "2043-01-01": "New Year's Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", - "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", - "2043-11-11": "Arafat Day* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha Holiday* (*estimated)", - "2043-11-14": "Eid al-Adha Holiday* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr Holiday (estimated)", + "2043-09-06": "Eid al-Fitr Holiday (estimated)", + "2043-11-11": "Arafat Day (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha Holiday (estimated)", + "2043-11-14": "Eid al-Adha Holiday (estimated)", "2043-12-01": "Commemoration Day", "2043-12-02": "National Day", - "2043-12-03": "Islamic New Year* (*estimated); National Day", + "2043-12-03": "Islamic New Year (estimated); National Day", "2044-01-01": "New Year's Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", - "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", - "2044-10-30": "Arafat Day* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha Holiday* (*estimated)", - "2044-11-02": "Eid al-Adha Holiday* (*estimated)", - "2044-11-21": "Islamic New Year* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr Holiday (estimated)", + "2044-08-26": "Eid al-Fitr Holiday (estimated)", + "2044-10-30": "Arafat Day (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha Holiday (estimated)", + "2044-11-02": "Eid al-Adha Holiday (estimated)", + "2044-11-21": "Islamic New Year (estimated)", "2044-12-01": "Commemoration Day", "2044-12-02": "National Day", "2044-12-03": "National Day", "2045-01-01": "New Year's Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", - "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", - "2045-10-20": "Arafat Day* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha Holiday* (*estimated)", - "2045-10-23": "Eid al-Adha Holiday* (*estimated)", - "2045-11-10": "Islamic New Year* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr Holiday (estimated)", + "2045-08-16": "Eid al-Fitr Holiday (estimated)", + "2045-10-20": "Arafat Day (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha Holiday (estimated)", + "2045-10-23": "Eid al-Adha Holiday (estimated)", + "2045-11-10": "Islamic New Year (estimated)", "2045-12-01": "Commemoration Day", "2045-12-02": "National Day", "2045-12-03": "National Day", "2046-01-01": "New Year's Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", - "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", - "2046-10-09": "Arafat Day* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha Holiday* (*estimated)", - "2046-10-12": "Eid al-Adha Holiday* (*estimated)", - "2046-10-31": "Islamic New Year* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr Holiday (estimated)", + "2046-08-05": "Eid al-Fitr Holiday (estimated)", + "2046-10-09": "Arafat Day (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha Holiday (estimated)", + "2046-10-12": "Eid al-Adha Holiday (estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2046-12-01": "Commemoration Day", "2046-12-02": "National Day", "2046-12-03": "National Day", "2047-01-01": "New Year's Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", - "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", - "2047-09-29": "Arafat Day* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha Holiday* (*estimated)", - "2047-10-02": "Eid al-Adha Holiday* (*estimated)", - "2047-10-20": "Islamic New Year* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr Holiday (estimated)", + "2047-07-26": "Eid al-Fitr Holiday (estimated)", + "2047-09-29": "Arafat Day (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha Holiday (estimated)", + "2047-10-02": "Eid al-Adha Holiday (estimated)", + "2047-10-20": "Islamic New Year (estimated)", "2047-12-01": "Commemoration Day", "2047-12-02": "National Day", "2047-12-03": "National Day", "2048-01-01": "New Year's Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", - "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", - "2048-09-18": "Arafat Day* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha Holiday* (*estimated)", - "2048-09-21": "Eid al-Adha Holiday* (*estimated)", - "2048-10-09": "Islamic New Year* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr Holiday (estimated)", + "2048-07-14": "Eid al-Fitr Holiday (estimated)", + "2048-09-18": "Arafat Day (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha Holiday (estimated)", + "2048-09-21": "Eid al-Adha Holiday (estimated)", + "2048-10-09": "Islamic New Year (estimated)", "2048-12-01": "Commemoration Day", "2048-12-02": "National Day", "2048-12-03": "National Day", "2049-01-01": "New Year's Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", - "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", - "2049-09-07": "Arafat Day* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha Holiday* (*estimated)", - "2049-09-10": "Eid al-Adha Holiday* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr Holiday (estimated)", + "2049-07-03": "Eid al-Fitr Holiday (estimated)", + "2049-09-07": "Arafat Day (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha Holiday (estimated)", + "2049-09-10": "Eid al-Adha Holiday (estimated)", + "2049-09-28": "Islamic New Year (estimated)", "2049-12-01": "Commemoration Day", "2049-12-02": "National Day", "2049-12-03": "National Day", "2050-01-01": "New Year's Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", - "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", - "2050-08-27": "Arafat Day* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha Holiday* (*estimated)", - "2050-08-30": "Eid al-Adha Holiday* (*estimated)", - "2050-09-17": "Islamic New Year* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr Holiday (estimated)", + "2050-06-22": "Eid al-Fitr Holiday (estimated)", + "2050-08-27": "Arafat Day (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha Holiday (estimated)", + "2050-08-30": "Eid al-Adha Holiday (estimated)", + "2050-09-17": "Islamic New Year (estimated)", "2050-12-01": "Commemoration Day", "2050-12-02": "National Day", "2050-12-03": "National Day" diff --git a/snapshots/countries/AL_COMMON.json b/snapshots/countries/AL_COMMON.json index 044575200..d4a014750 100644 --- a/snapshots/countries/AL_COMMON.json +++ b/snapshots/countries/AL_COMMON.json @@ -5,10 +5,10 @@ "1950-04-09": "Catholic Easter; Orthodox Easter", "1950-04-10": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1950-05-01": "May Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr* (*estimated) (Observed)", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-25": "Eid al-Adha* (*estimated) (Observed)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr (estimated) (Observed)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-25": "Eid al-Adha (estimated) (Observed)", "1950-11-28": "Independence Day", "1950-11-29": "Liberation Day", "1950-12-25": "Christmas Day", @@ -19,8 +19,8 @@ "1951-04-29": "Orthodox Easter", "1951-04-30": "Orthodox Easter (Observed)", "1951-05-01": "May Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", "1951-11-28": "Independence Day", "1951-11-29": "Liberation Day", "1951-12-25": "Christmas Day", @@ -31,9 +31,9 @@ "1952-04-20": "Orthodox Easter", "1952-04-21": "Orthodox Easter (Observed)", "1952-05-01": "May Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated) (Observed)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated) (Observed)", "1952-11-28": "Independence Day", "1952-11-29": "Liberation Day", "1952-12-01": "Liberation Day (Observed)", @@ -43,9 +43,9 @@ "1953-04-05": "Catholic Easter; Orthodox Easter", "1953-04-06": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1953-05-01": "May Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-15": "Eid al-Fitr* (*estimated) (Observed)", - "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-15": "Eid al-Fitr (estimated) (Observed)", + "1953-08-20": "Eid al-Adha (estimated)", "1953-11-28": "Independence Day", "1953-11-29": "Liberation Day", "1953-11-30": "Independence Day (Observed)", @@ -60,8 +60,8 @@ "1954-04-26": "Orthodox Easter (Observed)", "1954-05-01": "May Day", "1954-05-03": "May Day (Observed)", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", "1954-11-28": "Independence Day", "1954-11-29": "Liberation Day", "1954-11-30": "Independence Day (Observed)", @@ -77,9 +77,9 @@ "1955-04-18": "Orthodox Easter (Observed)", "1955-05-01": "May Day", "1955-05-02": "May Day (Observed)", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-08-01": "Eid al-Adha* (*estimated) (Observed)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-08-01": "Eid al-Adha (estimated) (Observed)", "1955-11-28": "Independence Day", "1955-11-29": "Liberation Day", "1955-12-25": "Christmas Day", @@ -92,8 +92,8 @@ "1956-05-01": "May Day", "1956-05-06": "Orthodox Easter", "1956-05-07": "Orthodox Easter (Observed)", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", "1956-11-28": "Independence Day", "1956-11-29": "Liberation Day", "1956-12-25": "Christmas Day", @@ -101,8 +101,8 @@ "1957-01-02": "New Year's Day", "1957-04-21": "Catholic Easter; Orthodox Easter", "1957-04-22": "Catholic Easter (Observed); Orthodox Easter (Observed)", - "1957-05-01": "Eid al-Fitr* (*estimated); May Day", - "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-05-01": "Eid al-Fitr (estimated); May Day", + "1957-07-08": "Eid al-Adha (estimated)", "1957-11-28": "Independence Day", "1957-11-29": "Liberation Day", "1957-12-25": "Christmas Day", @@ -112,10 +112,10 @@ "1958-04-07": "Catholic Easter (Observed)", "1958-04-13": "Orthodox Easter", "1958-04-14": "Orthodox Easter (Observed)", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr* (*estimated) (Observed)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (estimated) (Observed)", "1958-05-01": "May Day", - "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", "1958-11-28": "Independence Day", "1958-11-29": "Liberation Day", "1958-12-01": "Liberation Day (Observed)", @@ -124,11 +124,11 @@ "1959-01-02": "New Year's Day", "1959-03-29": "Catholic Easter", "1959-03-30": "Catholic Easter (Observed)", - "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", "1959-05-01": "May Day", "1959-05-03": "Orthodox Easter", "1959-05-04": "Orthodox Easter (Observed)", - "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", "1959-11-28": "Independence Day", "1959-11-29": "Liberation Day", "1959-11-30": "Independence Day (Observed)", @@ -137,13 +137,13 @@ "1960-01-01": "New Year's Day", "1960-01-02": "New Year's Day", "1960-01-04": "New Year's Day (Observed)", - "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", "1960-04-17": "Catholic Easter; Orthodox Easter", "1960-04-18": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1960-05-01": "May Day", "1960-05-02": "May Day (Observed)", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-06": "Eid al-Adha* (*estimated) (Observed)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-06": "Eid al-Adha (estimated) (Observed)", "1960-11-28": "Independence Day", "1960-11-29": "Liberation Day", "1960-12-25": "Christmas Day", @@ -151,46 +151,46 @@ "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day", "1961-01-03": "New Year's Day (Observed)", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-20": "Eid al-Fitr* (*estimated) (Observed)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-20": "Eid al-Fitr (estimated) (Observed)", "1961-04-02": "Catholic Easter", "1961-04-03": "Catholic Easter (Observed)", "1961-04-09": "Orthodox Easter", "1961-04-10": "Orthodox Easter (Observed)", "1961-05-01": "May Day", - "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", "1961-11-28": "Independence Day", "1961-11-29": "Liberation Day", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", "1962-01-02": "New Year's Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", "1962-04-22": "Catholic Easter", "1962-04-23": "Catholic Easter (Observed)", "1962-04-29": "Orthodox Easter", "1962-04-30": "Orthodox Easter (Observed)", "1962-05-01": "May Day", - "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", "1962-11-28": "Independence Day", "1962-11-29": "Liberation Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-01-02": "New Year's Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr* (*estimated) (Observed)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (estimated) (Observed)", "1963-04-14": "Catholic Easter; Orthodox Easter", "1963-04-15": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1963-05-01": "May Day", - "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", "1963-11-28": "Independence Day", "1963-11-29": "Liberation Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-01-02": "New Year's Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-29": "Catholic Easter", "1964-03-30": "Catholic Easter (Observed)", - "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "May Day", "1964-05-03": "Orthodox Easter", "1964-05-04": "Orthodox Easter (Observed)", @@ -202,9 +202,9 @@ "1965-01-01": "New Year's Day", "1965-01-02": "New Year's Day", "1965-01-04": "New Year's Day (Observed)", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha* (*estimated) (Observed)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (estimated) (Observed)", "1965-04-18": "Catholic Easter", "1965-04-19": "Catholic Easter (Observed)", "1965-04-25": "Orthodox Easter", @@ -220,9 +220,9 @@ "1966-01-02": "New Year's Day", "1966-01-03": "New Year's Day (Observed)", "1966-01-04": "New Year's Day (Observed)", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-24": "Eid al-Fitr* (*estimated) (Observed)", - "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-24": "Eid al-Fitr (estimated) (Observed)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-04-10": "Catholic Easter; Orthodox Easter", "1966-04-11": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1966-05-01": "May Day", @@ -234,8 +234,8 @@ "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day", "1967-01-03": "New Year's Day (Observed)", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-03-26": "Catholic Easter", "1967-03-27": "Catholic Easter (Observed)", "1967-04-30": "Orthodox Easter", @@ -244,10 +244,10 @@ "1967-11-28": "Independence Day", "1967-11-29": "Liberation Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-01-02": "New Year's Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-11": "Eid al-Adha* (*estimated) (Observed)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-11": "Eid al-Adha (estimated) (Observed)", "1968-04-14": "Catholic Easter", "1968-04-15": "Catholic Easter (Observed)", "1968-04-21": "Orthodox Easter", @@ -255,12 +255,12 @@ "1968-05-01": "May Day", "1968-11-28": "Independence Day", "1968-11-29": "Liberation Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-23": "Eid al-Fitr* (*estimated) (Observed)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-23": "Eid al-Fitr (estimated) (Observed)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-01-02": "New Year's Day", - "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", "1969-04-06": "Catholic Easter", "1969-04-07": "Catholic Easter (Observed)", "1969-04-13": "Orthodox Easter", @@ -269,11 +269,11 @@ "1969-11-28": "Independence Day", "1969-11-29": "Liberation Day", "1969-12-01": "Liberation Day (Observed)", - "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-01-02": "New Year's Day", - "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", "1970-03-29": "Catholic Easter", "1970-03-30": "Catholic Easter (Observed)", "1970-04-26": "Orthodox Easter", @@ -281,22 +281,22 @@ "1970-05-01": "May Day", "1970-11-28": "Independence Day", "1970-11-29": "Liberation Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-01": "Independence Day (Observed)", "1970-12-02": "Liberation Day (Observed)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-02": "New Year's Day", "1971-01-04": "New Year's Day (Observed)", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-08": "Eid al-Adha* (*estimated) (Observed)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-08": "Eid al-Adha (estimated) (Observed)", "1971-04-11": "Catholic Easter", "1971-04-12": "Catholic Easter (Observed)", "1971-04-18": "Orthodox Easter", "1971-04-19": "Orthodox Easter (Observed)", "1971-05-01": "May Day", "1971-05-03": "May Day (Observed)", - "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1971-11-28": "Independence Day", "1971-11-29": "Liberation Day", "1971-11-30": "Independence Day (Observed)", @@ -306,40 +306,40 @@ "1972-01-02": "New Year's Day", "1972-01-03": "New Year's Day (Observed)", "1972-01-04": "New Year's Day (Observed)", - "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", "1972-04-02": "Catholic Easter", "1972-04-03": "Catholic Easter (Observed)", "1972-04-09": "Orthodox Easter", "1972-04-10": "Orthodox Easter (Observed)", "1972-05-01": "May Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1972-11-28": "Independence Day", "1972-11-29": "Liberation Day", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-02": "New Year's Day", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha* (*estimated) (Observed)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (estimated) (Observed)", "1973-04-22": "Catholic Easter", "1973-04-23": "Catholic Easter (Observed)", "1973-04-29": "Orthodox Easter", "1973-04-30": "Orthodox Easter (Observed)", "1973-05-01": "May Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-29": "Eid al-Fitr* (*estimated) (Observed)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-29": "Eid al-Fitr (estimated) (Observed)", "1973-11-28": "Independence Day", "1973-11-29": "Liberation Day", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-02": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", "1974-04-14": "Catholic Easter; Orthodox Easter", "1974-04-15": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1974-05-01": "May Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", "1974-11-28": "Independence Day", "1974-11-29": "Liberation Day", - "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-01-02": "New Year's Day", @@ -348,12 +348,12 @@ "1975-05-01": "May Day", "1975-05-04": "Orthodox Easter", "1975-05-05": "Orthodox Easter (Observed)", - "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", "1975-11-28": "Independence Day", "1975-11-29": "Liberation Day", "1975-12-01": "Liberation Day (Observed)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-15": "Eid al-Adha* (*estimated) (Observed)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-15": "Eid al-Adha (estimated) (Observed)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-01-02": "New Year's Day", @@ -363,11 +363,11 @@ "1976-04-26": "Orthodox Easter (Observed)", "1976-05-01": "May Day", "1976-05-03": "May Day (Observed)", - "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", "1976-11-28": "Independence Day", "1976-11-29": "Liberation Day", "1976-11-30": "Independence Day (Observed)", - "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", "1976-12-27": "Christmas Day (Observed)", "1977-01-01": "New Year's Day", @@ -378,8 +378,8 @@ "1977-04-11": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1977-05-01": "May Day", "1977-05-02": "May Day (Observed)", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", "1977-11-28": "Independence Day", "1977-11-29": "Liberation Day", "1977-12-25": "Christmas Day", @@ -392,9 +392,9 @@ "1978-04-30": "Orthodox Easter", "1978-05-01": "May Day", "1978-05-02": "Orthodox Easter (Observed)", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr* (*estimated) (Observed)", - "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (estimated) (Observed)", + "1978-11-10": "Eid al-Adha (estimated)", "1978-11-28": "Independence Day", "1978-11-29": "Liberation Day", "1978-12-25": "Christmas Day", @@ -405,8 +405,8 @@ "1979-04-22": "Orthodox Easter", "1979-04-23": "Orthodox Easter (Observed)", "1979-05-01": "May Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", "1979-11-28": "Independence Day", "1979-11-29": "Liberation Day", "1979-12-25": "Christmas Day", @@ -415,9 +415,9 @@ "1980-04-06": "Catholic Easter; Orthodox Easter", "1980-04-07": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1980-05-01": "May Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated) (Observed)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated) (Observed)", "1980-11-28": "Independence Day", "1980-11-29": "Liberation Day", "1980-12-01": "Liberation Day (Observed)", @@ -429,9 +429,9 @@ "1981-04-26": "Orthodox Easter", "1981-04-27": "Orthodox Easter (Observed)", "1981-05-01": "May Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-03": "Eid al-Fitr* (*estimated) (Observed)", - "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-03": "Eid al-Fitr (estimated) (Observed)", + "1981-10-08": "Eid al-Adha (estimated)", "1981-11-28": "Independence Day", "1981-11-29": "Liberation Day", "1981-11-30": "Independence Day (Observed)", @@ -446,8 +446,8 @@ "1982-04-19": "Orthodox Easter (Observed)", "1982-05-01": "May Day", "1982-05-03": "May Day (Observed)", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", "1982-11-28": "Independence Day", "1982-11-29": "Liberation Day", "1982-11-30": "Independence Day (Observed)", @@ -463,9 +463,9 @@ "1983-05-02": "May Day (Observed)", "1983-05-08": "Orthodox Easter", "1983-05-09": "Orthodox Easter (Observed)", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-19": "Eid al-Adha* (*estimated) (Observed)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-19": "Eid al-Adha (estimated) (Observed)", "1983-11-28": "Independence Day", "1983-11-29": "Liberation Day", "1983-12-25": "Christmas Day", @@ -476,9 +476,9 @@ "1984-04-22": "Catholic Easter; Orthodox Easter", "1984-04-23": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1984-05-01": "May Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-02": "Eid al-Fitr* (*estimated) (Observed)", - "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-02": "Eid al-Fitr (estimated) (Observed)", + "1984-09-05": "Eid al-Adha (estimated)", "1984-11-28": "Independence Day", "1984-11-29": "Liberation Day", "1984-12-25": "Christmas Day", @@ -489,8 +489,8 @@ "1985-04-14": "Orthodox Easter", "1985-04-15": "Orthodox Easter (Observed)", "1985-05-01": "May Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", "1985-11-28": "Independence Day", "1985-11-29": "Liberation Day", "1985-12-25": "Christmas Day", @@ -501,9 +501,9 @@ "1986-05-01": "May Day", "1986-05-04": "Orthodox Easter", "1986-05-05": "Orthodox Easter (Observed)", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr* (*estimated) (Observed)", - "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (estimated) (Observed)", + "1986-08-15": "Eid al-Adha (estimated)", "1986-11-28": "Independence Day", "1986-11-29": "Liberation Day", "1986-12-01": "Liberation Day (Observed)", @@ -513,8 +513,8 @@ "1987-04-19": "Catholic Easter; Orthodox Easter", "1987-04-20": "Catholic Easter (Observed); Orthodox Easter (Observed)", "1987-05-01": "May Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", "1987-11-28": "Independence Day", "1987-11-29": "Liberation Day", "1987-11-30": "Independence Day (Observed)", @@ -529,9 +529,9 @@ "1988-04-11": "Orthodox Easter (Observed)", "1988-05-01": "May Day", "1988-05-02": "May Day (Observed)", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-25": "Eid al-Adha* (*estimated) (Observed)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-25": "Eid al-Adha (estimated) (Observed)", "1988-11-28": "Independence Day", "1988-11-29": "Liberation Day", "1988-12-25": "Christmas Day", @@ -544,9 +544,9 @@ "1989-04-30": "Orthodox Easter", "1989-05-01": "May Day", "1989-05-02": "Orthodox Easter (Observed)", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-08": "Eid al-Fitr* (*estimated) (Observed)", - "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-08": "Eid al-Fitr (estimated) (Observed)", + "1989-07-13": "Eid al-Adha (estimated)", "1989-11-28": "Independence Day", "1989-11-29": "Liberation Day", "1989-12-25": "Christmas Day", @@ -554,9 +554,9 @@ "1990-01-02": "New Year's Day", "1990-04-15": "Catholic Easter; Orthodox Easter", "1990-04-16": "Catholic Easter (Observed); Orthodox Easter (Observed)", - "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "May Day", - "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", "1990-11-28": "Independence Day", "1990-11-29": "Liberation Day", "1990-12-25": "Christmas Day", @@ -566,23 +566,23 @@ "1991-04-01": "Catholic Easter (Observed)", "1991-04-07": "Orthodox Easter", "1991-04-08": "Orthodox Easter (Observed)", - "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "May Day", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-24": "Eid al-Adha* (*estimated) (Observed)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-24": "Eid al-Adha (estimated) (Observed)", "1991-11-28": "Independence Day", "1991-11-29": "Liberation Day", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-02": "New Year's Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-06": "Eid al-Fitr* (*estimated) (Observed)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-06": "Eid al-Fitr (estimated) (Observed)", "1992-04-19": "Catholic Easter", "1992-04-20": "Catholic Easter (Observed)", "1992-04-26": "Orthodox Easter", "1992-04-27": "Orthodox Easter (Observed)", "1992-05-01": "May Day", - "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", "1992-11-28": "Independence Day", "1992-11-29": "Liberation Day", "1992-11-30": "Independence Day (Observed)", @@ -591,14 +591,14 @@ "1993-01-01": "New Year's Day", "1993-01-02": "New Year's Day", "1993-01-04": "New Year's Day (Observed)", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-11": "Catholic Easter", "1993-04-12": "Catholic Easter (Observed)", "1993-04-18": "Orthodox Easter", "1993-04-19": "Orthodox Easter (Observed)", "1993-05-01": "May Day", "1993-05-03": "May Day (Observed)", - "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", "1993-11-28": "Independence Day", "1993-11-29": "Liberation Day", "1993-11-30": "Independence Day (Observed)", @@ -608,13 +608,13 @@ "1994-01-02": "New Year's Day", "1994-01-03": "New Year's Day (Observed)", "1994-01-04": "New Year's Day (Observed)", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr* (*estimated) (Observed)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (estimated) (Observed)", "1994-04-03": "Catholic Easter", "1994-04-04": "Catholic Easter (Observed)", "1994-05-01": "May Day; Orthodox Easter", "1994-05-02": "May Day (Observed); Orthodox Easter (Observed)", - "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", "1994-11-28": "Independence Day", "1994-11-29": "Liberation Day", "1994-12-25": "Christmas Day", @@ -622,39 +622,39 @@ "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day", "1995-01-03": "New Year's Day (Observed)", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-04-16": "Catholic Easter", "1995-04-17": "Catholic Easter (Observed)", "1995-04-23": "Orthodox Easter", "1995-04-24": "Orthodox Easter (Observed)", "1995-05-01": "May Day", - "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", "1995-11-28": "Independence Day", "1995-11-29": "Liberation Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-01-02": "New Year's Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-22": "Nevruz", "1996-04-07": "Catholic Easter", "1996-04-08": "Catholic Easter (Observed)", "1996-04-14": "Orthodox Easter", "1996-04-15": "Orthodox Easter (Observed)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-29": "Eid al-Adha* (*estimated) (Observed)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-29": "Eid al-Adha (estimated) (Observed)", "1996-05-01": "May Day", "1996-11-28": "Independence Day", "1996-11-29": "Liberation Day", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-02": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-10": "Eid al-Fitr* (*estimated) (Observed)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-10": "Eid al-Fitr (estimated) (Observed)", "1997-03-22": "Nevruz", "1997-03-24": "Nevruz (Observed)", "1997-03-30": "Catholic Easter", "1997-03-31": "Catholic Easter (Observed)", - "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", "1997-04-27": "Orthodox Easter", "1997-04-28": "Orthodox Easter (Observed)", "1997-05-01": "May Day", @@ -664,10 +664,10 @@ "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-02": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-22": "Nevruz", "1998-03-23": "Nevruz (Observed)", - "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-04-12": "Catholic Easter", "1998-04-13": "Catholic Easter (Observed)", "1998-04-19": "Orthodox Easter", @@ -681,10 +681,10 @@ "1999-01-01": "New Year's Day", "1999-01-02": "New Year's Day", "1999-01-04": "New Year's Day (Observed)", - "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-03-22": "Nevruz", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-29": "Eid al-Adha* (*estimated) (Observed)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-29": "Eid al-Adha (estimated) (Observed)", "1999-04-04": "Catholic Easter", "1999-04-05": "Catholic Easter (Observed)", "1999-04-11": "Orthodox Easter", @@ -700,9 +700,9 @@ "2000-01-02": "New Year's Day", "2000-01-03": "New Year's Day (Observed)", "2000-01-04": "New Year's Day (Observed)", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-10": "Eid al-Fitr* (*estimated) (Observed)", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-10": "Eid al-Fitr (estimated) (Observed)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-03-22": "Nevruz", "2000-04-23": "Catholic Easter", "2000-04-24": "Catholic Easter (Observed)", @@ -712,22 +712,22 @@ "2000-11-28": "Independence Day", "2000-11-29": "Liberation Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-02": "New Year's Day", - "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", "2001-03-22": "Nevruz", "2001-04-15": "Catholic Easter; Orthodox Easter", "2001-04-16": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2001-05-01": "May Day", "2001-11-28": "Independence Day", "2001-11-29": "Liberation Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", - "2001-12-17": "Eid al-Fitr* (*estimated) (Observed)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2001-12-17": "Eid al-Fitr (estimated) (Observed)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-02": "New Year's Day", - "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", "2002-03-22": "Nevruz", "2002-03-31": "Catholic Easter", "2002-04-01": "Catholic Easter (Observed)", @@ -736,11 +736,11 @@ "2002-05-06": "Orthodox Easter (Observed)", "2002-11-28": "Independence Day", "2002-11-29": "Liberation Day", - "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-01-02": "New Year's Day", - "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", "2003-03-22": "Nevruz", "2003-03-24": "Nevruz (Observed)", "2003-04-20": "Catholic Easter", @@ -748,15 +748,15 @@ "2003-04-27": "Orthodox Easter", "2003-04-28": "Orthodox Easter (Observed)", "2003-05-01": "May Day", - "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", "2003-11-28": "Independence Day", "2003-11-29": "Liberation Day", "2003-12-01": "Liberation Day (Observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-01-02": "New Year's Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated) (Observed)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated) (Observed)", "2004-03-14": "Summer Day", "2004-03-15": "Summer Day (Observed)", "2004-03-22": "Nevruz", @@ -765,8 +765,8 @@ "2004-05-01": "May Day", "2004-05-03": "May Day (Observed)", "2004-10-19": "Mother Teresa Beatification Day", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr* (*estimated) (Observed)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr (estimated) (Observed)", "2004-11-28": "Independence Day", "2004-11-29": "Liberation Day", "2004-11-30": "Independence Day (Observed)", @@ -776,7 +776,7 @@ "2005-01-02": "New Year's Day", "2005-01-03": "New Year's Day (Observed)", "2005-01-04": "New Year's Day (Observed)", - "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", "2005-03-14": "Summer Day", "2005-03-22": "Nevruz", "2005-03-27": "Catholic Easter", @@ -784,7 +784,7 @@ "2005-05-01": "May Day; Orthodox Easter", "2005-05-02": "May Day (Observed); Orthodox Easter (Observed)", "2005-10-19": "Mother Teresa Beatification Day", - "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", "2005-11-28": "Independence Day", "2005-11-29": "Liberation Day", "2005-12-25": "Christmas Day", @@ -792,7 +792,7 @@ "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day", "2006-01-03": "New Year's Day (Observed)", - "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", "2006-03-14": "Summer Day", "2006-03-22": "Nevruz", "2006-04-16": "Catholic Easter", @@ -801,11 +801,11 @@ "2006-04-24": "Orthodox Easter (Observed)", "2006-05-01": "May Day", "2006-10-19": "Mother Teresa Beatification Day", - "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", "2006-11-28": "Independence Day", "2006-11-29": "Liberation Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", "2007-01-01": "New Year's Day", "2007-01-02": "New Year's Day", "2007-01-03": "Eid al-Adha (Observed)", @@ -814,12 +814,12 @@ "2007-04-08": "Catholic Easter; Orthodox Easter", "2007-04-09": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2007-05-01": "May Day", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-15": "Eid al-Fitr* (*estimated) (Observed)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-15": "Eid al-Fitr (estimated) (Observed)", "2007-10-19": "Mother Teresa Beatification Day", "2007-11-28": "Independence Day", "2007-11-29": "Liberation Day", - "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-01-02": "New Year's Day", @@ -831,13 +831,13 @@ "2008-04-27": "Orthodox Easter", "2008-04-28": "Orthodox Easter (Observed)", "2008-05-01": "May Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", "2008-10-19": "Mother Teresa Beatification Day", "2008-10-20": "Mother Teresa Beatification Day (Observed)", "2008-11-28": "Independence Day", "2008-11-29": "Liberation Day", "2008-12-01": "Liberation Day (Observed)", - "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-01-02": "New Year's Day", @@ -850,10 +850,10 @@ "2009-04-19": "Orthodox Easter", "2009-04-20": "Orthodox Easter (Observed)", "2009-05-01": "May Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr* (*estimated) (Observed)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr (estimated) (Observed)", "2009-10-19": "Mother Teresa Beatification Day", - "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", "2009-11-28": "Independence Day", "2009-11-29": "Liberation Day", "2009-11-30": "Independence Day (Observed)", @@ -870,9 +870,9 @@ "2010-04-05": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2010-05-01": "May Day", "2010-05-03": "May Day (Observed)", - "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", "2010-10-19": "Mother Teresa Beatification Day", - "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", "2010-11-28": "Independence Day", "2010-11-29": "Liberation Day", "2010-11-30": "Independence Day (Observed)", @@ -889,10 +889,10 @@ "2011-04-25": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2011-05-01": "May Day", "2011-05-02": "May Day (Observed)", - "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", "2011-10-19": "Mother Teresa Beatification Day", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated) (Observed)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated) (Observed)", "2011-11-28": "Independence Day", "2011-11-29": "Liberation Day", "2011-12-08": "National Youth Day", @@ -908,10 +908,10 @@ "2012-04-15": "Orthodox Easter", "2012-04-16": "Orthodox Easter (Observed)", "2012-05-01": "May Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr* (*estimated) (Observed)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr (estimated) (Observed)", "2012-10-19": "Mother Teresa Beatification Day", - "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", "2012-11-28": "Independence Day", "2012-11-29": "Liberation Day", "2012-12-08": "National Youth Day", @@ -926,8 +926,8 @@ "2013-05-01": "May Day", "2013-05-05": "Orthodox Easter", "2013-05-06": "Orthodox Easter (Observed)", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-10-15": "Eid al-Adha (estimated)", "2013-10-19": "Mother Teresa Beatification Day", "2013-10-21": "Mother Teresa Beatification Day (Observed)", "2013-11-28": "Independence Day", @@ -943,9 +943,9 @@ "2014-04-20": "Catholic Easter; Orthodox Easter", "2014-04-21": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2014-05-01": "May Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-06": "Eid al-Adha* (*estimated) (Observed)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-06": "Eid al-Adha (estimated) (Observed)", "2014-10-19": "Mother Teresa Beatification Day", "2014-10-20": "Mother Teresa Beatification Day (Observed)", "2014-11-28": "Independence Day", @@ -964,8 +964,8 @@ "2015-04-12": "Orthodox Easter", "2015-04-13": "Orthodox Easter (Observed)", "2015-05-01": "May Day", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-09-23": "Eid al-Adha* (*estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-09-23": "Eid al-Adha (estimated)", "2015-10-19": "Mother Teresa Beatification Day", "2015-11-28": "Independence Day", "2015-11-29": "Liberation Day", @@ -982,9 +982,9 @@ "2016-03-28": "Catholic Easter (Observed)", "2016-05-01": "May Day; Orthodox Easter", "2016-05-02": "May Day (Observed); Orthodox Easter (Observed)", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated) (Observed)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated) (Observed)", "2016-10-19": "Mother Teresa Beatification Day", "2016-11-28": "Independence Day", "2016-11-29": "Liberation Day", @@ -999,9 +999,9 @@ "2017-04-16": "Catholic Easter; Orthodox Easter", "2017-04-17": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2017-05-01": "May Day", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-06-26": "Eid al-Fitr* (*estimated) (Observed)", - "2017-09-01": "Eid al-Adha* (*estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-06-26": "Eid al-Fitr (estimated) (Observed)", + "2017-09-01": "Eid al-Adha (estimated)", "2017-10-19": "Mother Teresa Beatification Day", "2017-11-28": "Independence Day", "2017-11-29": "Liberation Day", @@ -1016,8 +1016,8 @@ "2018-04-08": "Orthodox Easter", "2018-04-09": "Orthodox Easter (Observed)", "2018-05-01": "May Day", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-08-21": "Eid al-Adha* (*estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-08-21": "Eid al-Adha (estimated)", "2018-09-05": "Mother Teresa Canonization Day", "2018-11-28": "Independence Day", "2018-11-29": "Liberation Day", @@ -1033,9 +1033,9 @@ "2019-04-28": "Orthodox Easter", "2019-04-29": "Orthodox Easter (Observed)", "2019-05-01": "May Day", - "2019-06-04": "Eid al-Fitr* (*estimated)", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated) (Observed)", + "2019-06-04": "Eid al-Fitr (estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated) (Observed)", "2019-09-05": "Mother Teresa Canonization Day", "2019-11-28": "Independence Day", "2019-11-29": "Liberation Day", @@ -1053,9 +1053,9 @@ "2020-04-19": "Orthodox Easter", "2020-04-20": "Orthodox Easter (Observed)", "2020-05-01": "May Day", - "2020-05-24": "Eid al-Fitr* (*estimated)", - "2020-05-25": "Eid al-Fitr* (*estimated) (Observed)", - "2020-07-31": "Eid al-Adha* (*estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", + "2020-05-25": "Eid al-Fitr (estimated) (Observed)", + "2020-07-31": "Eid al-Adha (estimated)", "2020-09-05": "Mother Teresa Canonization Day", "2020-09-07": "Mother Teresa Canonization Day (Observed)", "2020-11-28": "Independence Day", @@ -1076,8 +1076,8 @@ "2021-05-02": "Orthodox Easter", "2021-05-03": "May Day (Observed)", "2021-05-04": "Orthodox Easter (Observed)", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-07-20": "Eid al-Adha* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-07-20": "Eid al-Adha (estimated)", "2021-09-05": "Mother Teresa Canonization Day", "2021-09-06": "Mother Teresa Canonization Day (Observed)", "2021-11-28": "Independence Day", @@ -1098,10 +1098,10 @@ "2022-04-24": "Orthodox Easter", "2022-04-25": "Orthodox Easter (Observed)", "2022-05-01": "May Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", "2022-05-03": "May Day (Observed)", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-11": "Eid al-Adha* (*estimated) (Observed)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-11": "Eid al-Adha (estimated) (Observed)", "2022-09-05": "Mother Teresa Canonization Day", "2022-11-28": "Independence Day", "2022-11-29": "Liberation Day", @@ -1117,9 +1117,9 @@ "2023-04-10": "Catholic Easter (Observed)", "2023-04-16": "Orthodox Easter", "2023-04-17": "Orthodox Easter (Observed)", - "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", "2023-05-01": "May Day", - "2023-06-28": "Eid al-Adha* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", "2023-09-05": "Mother Teresa Canonization Day", "2023-11-28": "Independence Day", "2023-11-29": "Liberation Day", @@ -1131,12 +1131,12 @@ "2024-03-22": "Nevruz", "2024-03-31": "Catholic Easter", "2024-04-01": "Catholic Easter (Observed)", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "May Day", "2024-05-05": "Orthodox Easter", "2024-05-06": "Orthodox Easter (Observed)", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated) (Observed)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated) (Observed)", "2024-09-05": "Mother Teresa Canonization Day", "2024-11-28": "Independence Day", "2024-11-29": "Liberation Day", @@ -1148,12 +1148,12 @@ "2025-03-14": "Summer Day", "2025-03-22": "Nevruz", "2025-03-24": "Nevruz (Observed)", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr* (*estimated) (Observed)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated) (Observed)", "2025-04-20": "Catholic Easter; Orthodox Easter", "2025-04-21": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2025-05-01": "May Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-09-05": "Mother Teresa Canonization Day", "2025-11-28": "Independence Day", "2025-11-29": "Liberation Day", @@ -1164,7 +1164,7 @@ "2026-01-02": "New Year's Day", "2026-03-14": "Summer Day", "2026-03-16": "Summer Day (Observed)", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-03-22": "Nevruz", "2026-03-23": "Nevruz (Observed)", "2026-04-05": "Catholic Easter", @@ -1172,7 +1172,7 @@ "2026-04-12": "Orthodox Easter", "2026-04-13": "Orthodox Easter (Observed)", "2026-05-01": "May Day", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-09-05": "Mother Teresa Canonization Day", "2026-09-07": "Mother Teresa Canonization Day (Observed)", "2026-11-28": "Independence Day", @@ -1184,7 +1184,7 @@ "2027-01-01": "New Year's Day", "2027-01-02": "New Year's Day", "2027-01-04": "New Year's Day (Observed)", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-14": "Summer Day", "2027-03-15": "Summer Day (Observed)", "2027-03-22": "Nevruz", @@ -1194,8 +1194,8 @@ "2027-05-02": "Orthodox Easter", "2027-05-03": "May Day (Observed)", "2027-05-04": "Orthodox Easter (Observed)", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha* (*estimated) (Observed)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated) (Observed)", "2027-09-05": "Mother Teresa Canonization Day", "2027-09-06": "Mother Teresa Canonization Day (Observed)", "2027-11-28": "Independence Day", @@ -1208,14 +1208,14 @@ "2028-01-02": "New Year's Day", "2028-01-03": "New Year's Day (Observed)", "2028-01-04": "New Year's Day (Observed)", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-28": "Eid al-Fitr* (*estimated) (Observed)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-28": "Eid al-Fitr (estimated) (Observed)", "2028-03-14": "Summer Day", "2028-03-22": "Nevruz", "2028-04-16": "Catholic Easter; Orthodox Easter", "2028-04-17": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2028-05-01": "May Day", - "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", "2028-09-05": "Mother Teresa Canonization Day", "2028-11-28": "Independence Day", "2028-11-29": "Liberation Day", @@ -1223,14 +1223,14 @@ "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-01-02": "New Year's Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-14": "Summer Day", "2029-03-22": "Nevruz", "2029-04-01": "Catholic Easter", "2029-04-02": "Catholic Easter (Observed)", "2029-04-08": "Orthodox Easter", "2029-04-09": "Orthodox Easter (Observed)", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "May Day", "2029-09-05": "Mother Teresa Canonization Day", "2029-11-28": "Independence Day", @@ -1240,11 +1240,11 @@ "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-02": "New Year's Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", "2030-03-14": "Summer Day", "2030-03-22": "Nevruz", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-15": "Eid al-Adha* (*estimated) (Observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-15": "Eid al-Adha (estimated) (Observed)", "2030-04-21": "Catholic Easter", "2030-04-22": "Catholic Easter (Observed)", "2030-04-28": "Orthodox Easter", @@ -1258,11 +1258,11 @@ "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-02": "New Year's Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", "2031-03-14": "Summer Day", "2031-03-22": "Nevruz", "2031-03-24": "Nevruz (Observed)", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-13": "Catholic Easter; Orthodox Easter", "2031-04-14": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2031-05-01": "May Day", @@ -1274,10 +1274,10 @@ "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", "2032-01-02": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", "2032-03-14": "Summer Day", "2032-03-15": "Summer Day (Observed)", - "2032-03-22": "Eid al-Adha* (*estimated); Nevruz", + "2032-03-22": "Eid al-Adha (estimated); Nevruz", "2032-03-28": "Catholic Easter", "2032-03-29": "Catholic Easter (Observed)", "2032-05-01": "May Day", @@ -1293,10 +1293,10 @@ "2032-12-25": "Christmas Day", "2032-12-27": "Christmas Day (Observed)", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated); New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Eid al-Fitr* (*estimated) (Observed); New Year's Day (Observed)", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-01-04": "Eid al-Fitr (estimated) (Observed); New Year's Day (Observed)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-03-14": "Summer Day", "2033-03-22": "Nevruz", "2033-04-17": "Catholic Easter", @@ -1309,13 +1309,13 @@ "2033-11-28": "Independence Day", "2033-11-29": "Liberation Day", "2033-12-08": "National Youth Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (Observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", "2034-01-03": "New Year's Day (Observed)", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-03-14": "Summer Day", "2034-03-22": "Nevruz", "2034-04-09": "Catholic Easter; Orthodox Easter", @@ -1325,12 +1325,12 @@ "2034-11-28": "Independence Day", "2034-11-29": "Liberation Day", "2034-12-08": "National Youth Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-01-02": "New Year's Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated) (Observed)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated) (Observed)", "2035-03-14": "Summer Day", "2035-03-22": "Nevruz", "2035-03-25": "Catholic Easter", @@ -1341,14 +1341,14 @@ "2035-09-05": "Mother Teresa Canonization Day", "2035-11-28": "Independence Day", "2035-11-29": "Liberation Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-03": "Eid al-Fitr* (*estimated) (Observed)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-03": "Eid al-Fitr (estimated) (Observed)", "2035-12-08": "National Youth Day", "2035-12-10": "National Youth Day (Observed)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-02": "New Year's Day", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-03-14": "Summer Day", "2036-03-22": "Nevruz", "2036-03-24": "Nevruz (Observed)", @@ -1358,7 +1358,7 @@ "2036-04-21": "Orthodox Easter (Observed)", "2036-05-01": "May Day", "2036-09-05": "Mother Teresa Canonization Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-11-28": "Independence Day", "2036-11-29": "Liberation Day", "2036-12-01": "Liberation Day (Observed)", @@ -1366,7 +1366,7 @@ "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-02": "New Year's Day", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-03-14": "Summer Day", "2037-03-16": "Summer Day (Observed)", "2037-03-22": "Nevruz", @@ -1376,8 +1376,8 @@ "2037-05-01": "May Day", "2037-09-05": "Mother Teresa Canonization Day", "2037-09-07": "Mother Teresa Canonization Day (Observed)", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr* (*estimated) (Observed)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated) (Observed)", "2037-11-28": "Independence Day", "2037-11-29": "Liberation Day", "2037-11-30": "Independence Day (Observed)", @@ -1387,8 +1387,8 @@ "2038-01-01": "New Year's Day", "2038-01-02": "New Year's Day", "2038-01-04": "New Year's Day (Observed)", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-18": "Eid al-Adha* (*estimated) (Observed)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-18": "Eid al-Adha (estimated) (Observed)", "2038-03-14": "Summer Day", "2038-03-15": "Summer Day (Observed)", "2038-03-22": "Nevruz", @@ -1398,7 +1398,7 @@ "2038-05-03": "May Day (Observed)", "2038-09-05": "Mother Teresa Canonization Day", "2038-09-06": "Mother Teresa Canonization Day (Observed)", - "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-11-28": "Independence Day", "2038-11-29": "Liberation Day", "2038-11-30": "Independence Day (Observed)", @@ -1409,7 +1409,7 @@ "2039-01-02": "New Year's Day", "2039-01-03": "New Year's Day (Observed)", "2039-01-04": "New Year's Day (Observed)", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-03-14": "Summer Day", "2039-03-22": "Nevruz", "2039-04-10": "Catholic Easter", @@ -1419,12 +1419,12 @@ "2039-05-01": "May Day", "2039-05-02": "May Day (Observed)", "2039-09-05": "Mother Teresa Canonization Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-11-28": "Independence Day", "2039-11-29": "Liberation Day", "2039-12-08": "National Youth Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", "2039-12-27": "Christmas Day (Observed)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", @@ -1437,13 +1437,13 @@ "2040-05-06": "Orthodox Easter", "2040-05-07": "Orthodox Easter (Observed)", "2040-09-05": "Mother Teresa Canonization Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated) (Observed)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated) (Observed)", "2040-11-28": "Independence Day", "2040-11-29": "Liberation Day", "2040-12-08": "National Youth Day", "2040-12-10": "National Youth Day (Observed)", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-02": "New Year's Day", @@ -1453,10 +1453,10 @@ "2041-04-22": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2041-05-01": "May Day", "2041-09-05": "Mother Teresa Canonization Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", "2041-11-28": "Independence Day", "2041-11-29": "Liberation Day", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-08": "National Youth Day", "2041-12-09": "National Youth Day (Observed)", "2041-12-25": "Christmas Day", @@ -1471,9 +1471,9 @@ "2042-04-14": "Orthodox Easter (Observed)", "2042-05-01": "May Day", "2042-09-05": "Mother Teresa Canonization Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated) (Observed)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated) (Observed)", "2042-11-28": "Independence Day", "2042-11-29": "Liberation Day", "2042-12-01": "Liberation Day (Observed)", @@ -1490,10 +1490,10 @@ "2043-05-01": "May Day", "2043-05-03": "Orthodox Easter", "2043-05-04": "Orthodox Easter (Observed)", - "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", "2043-09-05": "Mother Teresa Canonization Day", "2043-09-07": "Mother Teresa Canonization Day (Observed)", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-11-28": "Independence Day", "2043-11-29": "Liberation Day", "2043-11-30": "Independence Day (Observed)", @@ -1511,9 +1511,9 @@ "2044-04-25": "Orthodox Easter (Observed)", "2044-05-01": "May Day", "2044-05-02": "May Day (Observed)", - "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", "2044-09-05": "Mother Teresa Canonization Day", - "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-11-28": "Independence Day", "2044-11-29": "Liberation Day", "2044-12-08": "National Youth Day", @@ -1527,10 +1527,10 @@ "2045-04-09": "Catholic Easter; Orthodox Easter", "2045-04-10": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2045-05-01": "May Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", "2045-09-05": "Mother Teresa Canonization Day", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-23": "Eid al-Adha* (*estimated) (Observed)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-23": "Eid al-Adha (estimated) (Observed)", "2045-11-28": "Independence Day", "2045-11-29": "Liberation Day", "2045-12-08": "National Youth Day", @@ -1544,9 +1544,9 @@ "2046-04-29": "Orthodox Easter", "2046-04-30": "Orthodox Easter (Observed)", "2046-05-01": "May Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-09-05": "Mother Teresa Canonization Day", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-11-28": "Independence Day", "2046-11-29": "Liberation Day", "2046-12-08": "National Youth Day", @@ -1561,9 +1561,9 @@ "2047-04-21": "Orthodox Easter", "2047-04-22": "Orthodox Easter (Observed)", "2047-05-01": "May Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-09-05": "Mother Teresa Canonization Day", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-11-28": "Independence Day", "2047-11-29": "Liberation Day", "2047-12-08": "National Youth Day", @@ -1578,12 +1578,12 @@ "2048-04-05": "Catholic Easter; Orthodox Easter", "2048-04-06": "Catholic Easter (Observed); Orthodox Easter (Observed)", "2048-05-01": "May Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated) (Observed)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated) (Observed)", "2048-09-05": "Mother Teresa Canonization Day", "2048-09-07": "Mother Teresa Canonization Day (Observed)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-21": "Eid al-Adha* (*estimated) (Observed)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-21": "Eid al-Adha (estimated) (Observed)", "2048-11-28": "Independence Day", "2048-11-29": "Liberation Day", "2048-11-30": "Independence Day (Observed)", @@ -1602,10 +1602,10 @@ "2049-04-26": "Orthodox Easter (Observed)", "2049-05-01": "May Day", "2049-05-03": "May Day (Observed)", - "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", "2049-09-05": "Mother Teresa Canonization Day", "2049-09-06": "Mother Teresa Canonization Day (Observed)", - "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-11-28": "Independence Day", "2049-11-29": "Liberation Day", "2049-11-30": "Independence Day (Observed)", @@ -1624,9 +1624,9 @@ "2050-04-18": "Orthodox Easter (Observed)", "2050-05-01": "May Day", "2050-05-02": "May Day (Observed)", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated) (Observed)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated) (Observed)", "2050-09-05": "Mother Teresa Canonization Day", "2050-11-28": "Independence Day", "2050-11-29": "Liberation Day", diff --git a/snapshots/countries/AZ_COMMON.json b/snapshots/countries/AZ_COMMON.json index 086c15944..0643e9eea 100644 --- a/snapshots/countries/AZ_COMMON.json +++ b/snapshots/countries/AZ_COMMON.json @@ -24,43 +24,43 @@ "1993-03-08": "Women's Day", "1993-03-20": "Spring Festival", "1993-03-21": "Spring Festival", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-05-09": "Victory over Fascism Day", "1993-05-28": "Republic Day", - "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", "1993-10-09": "Armed Forces Day", "1993-10-18": "Independence Day", "1993-11-17": "National Revival Day", "1993-12-31": "International Azerbaijanis Solidarity Day", "1994-01-01": "New Year's Day", "1994-03-08": "Women's Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-03-20": "Spring Festival", "1994-03-21": "Spring Festival", "1994-05-09": "Victory over Fascism Day", - "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", "1994-05-28": "Republic Day", "1994-10-09": "Armed Forces Day", "1994-10-18": "Independence Day", "1994-11-17": "National Revival Day", "1994-12-31": "International Azerbaijanis Solidarity Day", "1995-01-01": "New Year's Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-08": "Women's Day", "1995-03-20": "Spring Festival", "1995-03-21": "Spring Festival", - "1995-05-09": "Eid al-Adha* (*estimated); Victory over Fascism Day", + "1995-05-09": "Eid al-Adha (estimated); Victory over Fascism Day", "1995-05-28": "Republic Day", "1995-10-09": "Armed Forces Day", "1995-10-18": "Independence Day", "1995-11-17": "National Revival Day", "1995-12-31": "International Azerbaijanis Solidarity Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-08": "Women's Day", "1996-03-20": "Spring Festival", "1996-03-21": "Spring Festival", - "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", "1996-05-09": "Victory over Fascism Day", "1996-05-28": "Republic Day", "1996-10-09": "Armed Forces Day", @@ -69,11 +69,11 @@ "1996-11-17": "National Revival Day", "1996-12-31": "International Azerbaijanis Solidarity Day", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-08": "Women's Day", "1997-03-20": "Spring Festival", "1997-03-21": "Spring Festival", - "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", "1997-05-09": "Victory over Fascism Day", "1997-05-28": "Republic Day", "1997-06-15": "National Liberation Day", @@ -83,11 +83,11 @@ "1997-11-17": "National Revival Day", "1997-12-31": "International Azerbaijanis Solidarity Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-08": "Women's Day", "1998-03-20": "Spring Festival", "1998-03-21": "Spring Festival", - "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-05-09": "Victory over Fascism Day", "1998-05-28": "Republic Day", "1998-06-15": "National Liberation Day", @@ -97,11 +97,11 @@ "1998-11-17": "National Revival Day", "1998-12-31": "International Azerbaijanis Solidarity Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-03-08": "Women's Day", "1999-03-20": "Spring Festival", "1999-03-21": "Spring Festival", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-05-09": "Victory over Fascism Day", "1999-05-28": "Republic Day", "1999-06-15": "National Liberation Day", @@ -111,10 +111,10 @@ "1999-11-17": "National Revival Day", "1999-12-31": "International Azerbaijanis Solidarity Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-01-20": "Martyrs' Day", "2000-03-08": "Women's Day", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-03-20": "Spring Festival", "2000-03-21": "Spring Festival", "2000-05-09": "Victory over Fascism Day", @@ -124,11 +124,11 @@ "2000-10-18": "Independence Day", "2000-11-12": "Constitution Day", "2000-11-17": "National Revival Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2000-12-31": "International Azerbaijanis Solidarity Day", "2001-01-01": "New Year's Day", "2001-01-20": "Martyrs' Day", - "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", "2001-03-08": "Women's Day", "2001-03-20": "Spring Festival", "2001-03-21": "Spring Festival", @@ -139,7 +139,7 @@ "2001-10-18": "Independence Day", "2001-11-12": "Constitution Day", "2001-11-17": "National Revival Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", "2001-12-31": "International Azerbaijanis Solidarity Day", "2002-01-01": "New Year's Day", "2002-01-20": "Martyrs' Day", @@ -710,15 +710,15 @@ "2024-03-24": "Spring Festival", "2024-03-25": "Spring Festival (Observed)", "2024-03-26": "Spring Festival (Observed)", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr (estimated)", "2024-05-09": "Victory over Fascism Day", "2024-05-28": "Independence Day", "2024-06-15": "National Liberation Day", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", "2024-06-18": "National Liberation Day (Observed)", - "2024-06-19": "Eid al-Adha* (*estimated) (Observed)", + "2024-06-19": "Eid al-Adha (estimated) (Observed)", "2024-06-26": "Armed Forces Day", "2024-09-27": "Memorial Day", "2024-10-18": "Independence Restoration Day", @@ -740,14 +740,14 @@ "2025-03-24": "Spring Festival", "2025-03-25": "Spring Festival (Observed)", "2025-03-26": "Spring Festival (Observed)", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr* (*estimated)", - "2025-04-01": "Eid al-Fitr* (*estimated) (Observed)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated)", + "2025-04-01": "Eid al-Fitr (estimated) (Observed)", "2025-05-09": "Victory over Fascism Day", "2025-05-28": "Independence Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", - "2025-06-09": "Eid al-Adha* (*estimated) (Observed)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", + "2025-06-09": "Eid al-Adha (estimated) (Observed)", "2025-06-15": "National Liberation Day", "2025-06-16": "National Liberation Day (Observed)", "2025-06-26": "Armed Forces Day", @@ -765,17 +765,17 @@ "2026-01-20": "Martyrs' Day", "2026-03-08": "Women's Day", "2026-03-09": "Women's Day (Observed)", - "2026-03-20": "Eid al-Fitr* (*estimated); Spring Festival", - "2026-03-21": "Eid al-Fitr* (*estimated); Spring Festival", + "2026-03-20": "Eid al-Fitr (estimated); Spring Festival", + "2026-03-21": "Eid al-Fitr (estimated); Spring Festival", "2026-03-22": "Spring Festival", "2026-03-23": "Spring Festival", "2026-03-24": "Spring Festival", - "2026-03-25": "Eid al-Fitr* (*estimated) (Observed); Spring Festival (Observed)", + "2026-03-25": "Eid al-Fitr (estimated) (Observed); Spring Festival (Observed)", "2026-03-26": "Spring Festival (Observed)", "2026-05-09": "Victory over Fascism Day", "2026-05-11": "Victory over Fascism Day (Observed)", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated); Independence Day", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated); Independence Day", "2026-06-15": "National Liberation Day", "2026-06-26": "Armed Forces Day", "2026-09-27": "Memorial Day", @@ -791,8 +791,8 @@ "2027-01-04": "New Year's Day (Observed)", "2027-01-20": "Martyrs' Day", "2027-03-08": "Women's Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (estimated)", "2027-03-20": "Spring Festival", "2027-03-21": "Spring Festival", "2027-03-22": "Spring Festival", @@ -802,9 +802,9 @@ "2027-03-26": "Spring Festival (Observed)", "2027-05-09": "Victory over Fascism Day", "2027-05-10": "Victory over Fascism Day (Observed)", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-05-18": "Eid al-Adha* (*estimated) (Observed)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-05-18": "Eid al-Adha (estimated) (Observed)", "2027-05-28": "Independence Day", "2027-06-15": "National Liberation Day", "2027-06-26": "Armed Forces Day", @@ -821,19 +821,19 @@ "2028-01-03": "New Year's Day (Observed)", "2028-01-04": "New Year's Day (Observed)", "2028-01-20": "Martyrs' Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr* (*estimated)", - "2028-02-28": "Eid al-Fitr* (*estimated) (Observed)", - "2028-02-29": "Eid al-Fitr* (*estimated) (Observed)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (estimated)", + "2028-02-28": "Eid al-Fitr (estimated) (Observed)", + "2028-02-29": "Eid al-Fitr (estimated) (Observed)", "2028-03-08": "Women's Day", "2028-03-20": "Spring Festival", "2028-03-21": "Spring Festival", "2028-03-22": "Spring Festival", "2028-03-23": "Spring Festival", "2028-03-24": "Spring Festival", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-05-08": "Eid al-Adha* (*estimated) (Observed)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-05-08": "Eid al-Adha (estimated) (Observed)", "2028-05-09": "Victory over Fascism Day", "2028-05-28": "Independence Day", "2028-05-29": "Independence Day (Observed)", @@ -850,8 +850,8 @@ "2029-01-02": "New Year's Day", "2029-01-03": "International Azerbaijanis Solidarity Day (Observed)", "2029-01-20": "Martyrs' Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (estimated)", "2029-03-08": "Women's Day", "2029-03-20": "Spring Festival", "2029-03-21": "Spring Festival", @@ -859,8 +859,8 @@ "2029-03-23": "Spring Festival", "2029-03-24": "Spring Festival", "2029-03-26": "Spring Festival (Observed)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-09": "Victory over Fascism Day", "2029-05-28": "Independence Day", "2029-06-15": "National Liberation Day", @@ -875,8 +875,8 @@ "2030-01-01": "New Year's Day", "2030-01-02": "New Year's Day", "2030-01-20": "Martyrs' Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (estimated)", "2030-03-08": "Women's Day", "2030-03-20": "Spring Festival", "2030-03-21": "Spring Festival", @@ -885,10 +885,10 @@ "2030-03-24": "Spring Festival", "2030-03-25": "Spring Festival (Observed)", "2030-03-26": "Spring Festival (Observed)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated)", - "2030-04-15": "Eid al-Adha* (*estimated) (Observed)", - "2030-04-16": "Eid al-Adha* (*estimated) (Observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated)", + "2030-04-15": "Eid al-Adha (estimated) (Observed)", + "2030-04-16": "Eid al-Adha (estimated) (Observed)", "2030-05-09": "Victory over Fascism Day", "2030-05-28": "Independence Day", "2030-06-15": "National Liberation Day", @@ -905,9 +905,9 @@ "2031-01-01": "New Year's Day", "2031-01-02": "New Year's Day", "2031-01-20": "Martyrs' Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr* (*estimated)", - "2031-01-27": "Eid al-Fitr* (*estimated) (Observed)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (estimated)", + "2031-01-27": "Eid al-Fitr (estimated) (Observed)", "2031-03-08": "Women's Day", "2031-03-10": "Women's Day (Observed)", "2031-03-20": "Spring Festival", @@ -917,8 +917,8 @@ "2031-03-24": "Spring Festival", "2031-03-25": "Spring Festival (Observed)", "2031-03-26": "Spring Festival (Observed)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-05-09": "Victory over Fascism Day", "2031-05-28": "Independence Day", "2031-06-15": "National Liberation Day", @@ -935,14 +935,14 @@ "2031-12-31": "International Azerbaijanis Solidarity Day", "2032-01-01": "New Year's Day", "2032-01-02": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (estimated)", "2032-01-20": "Martyrs' Day", "2032-03-08": "Women's Day", "2032-03-20": "Spring Festival", "2032-03-21": "Spring Festival", - "2032-03-22": "Eid al-Adha* (*estimated); Spring Festival", - "2032-03-23": "Eid al-Adha* (*estimated); Spring Festival", + "2032-03-22": "Eid al-Adha (estimated); Spring Festival", + "2032-03-23": "Eid al-Adha (estimated); Spring Festival", "2032-03-24": "Spring Festival", "2032-03-25": "Spring Festival (Observed)", "2032-03-26": "Spring Festival (Observed)", @@ -960,15 +960,15 @@ "2032-11-17": "National Revival Day", "2032-12-31": "International Azerbaijanis Solidarity Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated); New Year's Day", - "2033-01-03": "Eid al-Fitr* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", + "2033-01-03": "Eid al-Fitr (estimated)", "2033-01-04": "New Year's Day (Observed)", - "2033-01-05": "Eid al-Fitr* (*estimated) (Observed); New Year's Day (Observed)", + "2033-01-05": "Eid al-Fitr (estimated) (Observed); New Year's Day (Observed)", "2033-01-20": "Martyrs' Day", "2033-03-08": "Women's Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-03-14": "Eid al-Adha* (*estimated) (Observed)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-03-14": "Eid al-Adha (estimated) (Observed)", "2033-03-20": "Spring Festival", "2033-03-21": "Spring Festival", "2033-03-22": "Spring Festival", @@ -987,17 +987,17 @@ "2033-11-09": "National Flag Day", "2033-11-12": "Constitution Day", "2033-11-17": "National Revival Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr* (*estimated)", - "2033-12-26": "Eid al-Fitr* (*estimated) (Observed)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (estimated)", + "2033-12-26": "Eid al-Fitr (estimated) (Observed)", "2033-12-31": "International Azerbaijanis Solidarity Day", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", "2034-01-03": "International Azerbaijanis Solidarity Day (Observed)", "2034-01-04": "New Year's Day (Observed)", "2034-01-20": "Martyrs' Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", "2034-03-08": "Women's Day", "2034-03-20": "Spring Festival", "2034-03-21": "Spring Festival", @@ -1015,16 +1015,16 @@ "2034-11-09": "National Flag Day", "2034-11-12": "Constitution Day", "2034-11-17": "National Revival Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (estimated)", "2034-12-31": "International Azerbaijanis Solidarity Day", "2035-01-01": "New Year's Day", "2035-01-02": "New Year's Day", "2035-01-03": "International Azerbaijanis Solidarity Day (Observed)", "2035-01-20": "Martyrs' Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", - "2035-02-20": "Eid al-Adha* (*estimated) (Observed)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", + "2035-02-20": "Eid al-Adha (estimated) (Observed)", "2035-03-08": "Women's Day", "2035-03-20": "Spring Festival", "2035-03-21": "Spring Festival", @@ -1042,16 +1042,16 @@ "2035-11-09": "National Flag Day", "2035-11-12": "Constitution Day", "2035-11-17": "National Revival Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr* (*estimated)", - "2035-12-03": "Eid al-Fitr* (*estimated) (Observed)", - "2035-12-04": "Eid al-Fitr* (*estimated) (Observed)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (estimated)", + "2035-12-03": "Eid al-Fitr (estimated) (Observed)", + "2035-12-04": "Eid al-Fitr (estimated) (Observed)", "2035-12-31": "International Azerbaijanis Solidarity Day", "2036-01-01": "New Year's Day", "2036-01-02": "New Year's Day", "2036-01-20": "Martyrs' Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", "2036-03-08": "Women's Day", "2036-03-10": "Women's Day (Observed)", "2036-03-20": "Spring Festival", @@ -1074,14 +1074,14 @@ "2036-11-11": "National Flag Day (Observed)", "2036-11-12": "Constitution Day", "2036-11-17": "National Revival Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (estimated)", "2036-12-31": "International Azerbaijanis Solidarity Day", "2037-01-01": "New Year's Day", "2037-01-02": "New Year's Day", "2037-01-20": "Martyrs' Day", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (estimated)", "2037-03-08": "Women's Day", "2037-03-09": "Women's Day (Observed)", "2037-03-20": "Spring Festival", @@ -1098,19 +1098,19 @@ "2037-06-26": "Armed Forces Day", "2037-09-27": "Memorial Day", "2037-10-18": "Independence Restoration Day", - "2037-11-08": "Eid al-Fitr* (*estimated); Victory Day", - "2037-11-09": "Eid al-Fitr* (*estimated); National Flag Day", - "2037-11-10": "Eid al-Fitr* (*estimated) (Observed); Victory Day (Observed)", + "2037-11-08": "Eid al-Fitr (estimated); Victory Day", + "2037-11-09": "Eid al-Fitr (estimated); National Flag Day", + "2037-11-10": "Eid al-Fitr (estimated) (Observed); Victory Day (Observed)", "2037-11-12": "Constitution Day", "2037-11-17": "National Revival Day", "2037-12-31": "International Azerbaijanis Solidarity Day", "2038-01-01": "New Year's Day", "2038-01-02": "New Year's Day", "2038-01-04": "New Year's Day (Observed)", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", - "2038-01-18": "Eid al-Adha* (*estimated) (Observed)", - "2038-01-19": "Eid al-Adha* (*estimated) (Observed)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", + "2038-01-18": "Eid al-Adha (estimated) (Observed)", + "2038-01-19": "Eid al-Adha (estimated) (Observed)", "2038-01-20": "Martyrs' Day", "2038-03-08": "Women's Day", "2038-03-20": "Spring Festival", @@ -1128,9 +1128,9 @@ "2038-06-28": "Armed Forces Day (Observed)", "2038-09-27": "Memorial Day", "2038-10-18": "Independence Restoration Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr* (*estimated)", - "2038-11-01": "Eid al-Fitr* (*estimated) (Observed)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (estimated)", + "2038-11-01": "Eid al-Fitr (estimated) (Observed)", "2038-11-08": "Victory Day", "2038-11-09": "National Flag Day", "2038-11-12": "Constitution Day", @@ -1140,8 +1140,8 @@ "2039-01-02": "New Year's Day", "2039-01-03": "New Year's Day (Observed)", "2039-01-04": "New Year's Day (Observed)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-20": "Martyrs' Day", "2039-03-08": "Women's Day", "2039-03-20": "Spring Festival", @@ -1158,14 +1158,14 @@ "2039-06-27": "Armed Forces Day (Observed)", "2039-09-27": "Memorial Day", "2039-10-18": "Independence Restoration Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (estimated)", "2039-11-08": "Victory Day", "2039-11-09": "National Flag Day", "2039-11-12": "Constitution Day", "2039-11-17": "National Revival Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2039-12-31": "International Azerbaijanis Solidarity Day", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", @@ -1184,17 +1184,17 @@ "2040-06-15": "National Liberation Day", "2040-06-26": "Armed Forces Day", "2040-09-27": "Memorial Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated)", - "2040-10-09": "Eid al-Fitr* (*estimated) (Observed)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated)", + "2040-10-09": "Eid al-Fitr (estimated) (Observed)", "2040-10-18": "Independence Restoration Day", "2040-11-08": "Victory Day", "2040-11-09": "National Flag Day", "2040-11-12": "Constitution Day", "2040-11-17": "National Revival Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", - "2040-12-17": "Eid al-Adha* (*estimated) (Observed)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", + "2040-12-17": "Eid al-Adha (estimated) (Observed)", "2040-12-31": "International Azerbaijanis Solidarity Day", "2041-01-01": "New Year's Day", "2041-01-02": "New Year's Day", @@ -1212,16 +1212,16 @@ "2041-06-15": "National Liberation Day", "2041-06-17": "National Liberation Day (Observed)", "2041-06-26": "Armed Forces Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr* (*estimated); Memorial Day", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (estimated); Memorial Day", "2041-10-18": "Independence Restoration Day", "2041-11-08": "Victory Day", "2041-11-09": "National Flag Day", "2041-11-11": "National Flag Day (Observed)", "2041-11-12": "Constitution Day", "2041-11-17": "National Revival Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-31": "International Azerbaijanis Solidarity Day", "2042-01-01": "New Year's Day", "2042-01-02": "New Year's Day", @@ -1240,8 +1240,8 @@ "2042-06-15": "National Liberation Day", "2042-06-16": "National Liberation Day (Observed)", "2042-06-26": "Armed Forces Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (estimated)", "2042-09-27": "Memorial Day", "2042-10-18": "Independence Restoration Day", "2042-11-08": "Victory Day", @@ -1250,9 +1250,9 @@ "2042-11-11": "National Flag Day (Observed)", "2042-11-12": "Constitution Day", "2042-11-17": "National Revival Day", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-11-25": "Eid al-Adha* (*estimated) (Observed)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-11-25": "Eid al-Adha (estimated) (Observed)", "2042-12-31": "International Azerbaijanis Solidarity Day", "2043-01-01": "New Year's Day", "2043-01-02": "New Year's Day", @@ -1271,16 +1271,16 @@ "2043-05-28": "Independence Day", "2043-06-15": "National Liberation Day", "2043-06-26": "Armed Forces Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr* (*estimated)", - "2043-09-07": "Eid al-Fitr* (*estimated) (Observed)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (estimated)", + "2043-09-07": "Eid al-Fitr (estimated) (Observed)", "2043-09-27": "Memorial Day", "2043-10-18": "Independence Restoration Day", "2043-11-08": "Victory Day", "2043-11-09": "National Flag Day", "2043-11-10": "Victory Day (Observed)", - "2043-11-12": "Constitution Day; Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", + "2043-11-12": "Constitution Day; Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", "2043-11-17": "National Revival Day", "2043-12-31": "International Azerbaijanis Solidarity Day", "2044-01-01": "New Year's Day", @@ -1300,12 +1300,12 @@ "2044-06-15": "National Liberation Day", "2044-06-26": "Armed Forces Day", "2044-06-27": "Armed Forces Day (Observed)", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (estimated)", "2044-09-27": "Memorial Day", "2044-10-18": "Independence Restoration Day", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", "2044-11-08": "Victory Day", "2044-11-09": "National Flag Day", "2044-11-12": "Constitution Day", @@ -1327,14 +1327,14 @@ "2045-05-29": "Independence Day (Observed)", "2045-06-15": "National Liberation Day", "2045-06-26": "Armed Forces Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (estimated)", "2045-09-27": "Memorial Day", "2045-10-18": "Independence Restoration Day", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-10-23": "Eid al-Adha* (*estimated) (Observed)", - "2045-10-24": "Eid al-Adha* (*estimated) (Observed)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-10-23": "Eid al-Adha (estimated) (Observed)", + "2045-10-24": "Eid al-Adha (estimated) (Observed)", "2045-11-08": "Victory Day", "2045-11-09": "National Flag Day", "2045-11-12": "Constitution Day", @@ -1355,12 +1355,12 @@ "2046-05-28": "Independence Day", "2046-06-15": "National Liberation Day", "2046-06-26": "Armed Forces Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr* (*estimated)", - "2046-08-06": "Eid al-Fitr* (*estimated) (Observed)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (estimated)", + "2046-08-06": "Eid al-Fitr (estimated) (Observed)", "2046-09-27": "Memorial Day", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-10-18": "Independence Restoration Day", "2046-11-08": "Victory Day", "2046-11-09": "National Flag Day", @@ -1383,11 +1383,11 @@ "2047-06-15": "National Liberation Day", "2047-06-17": "National Liberation Day (Observed)", "2047-06-26": "Armed Forces Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (estimated)", "2047-09-27": "Memorial Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-18": "Independence Restoration Day", "2047-11-08": "Victory Day", "2047-11-09": "National Flag Day", @@ -1412,13 +1412,13 @@ "2048-05-28": "Independence Day", "2048-06-15": "National Liberation Day", "2048-06-26": "Armed Forces Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated)", - "2048-07-14": "Eid al-Fitr* (*estimated) (Observed)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", - "2048-09-21": "Eid al-Adha* (*estimated) (Observed)", - "2048-09-22": "Eid al-Adha* (*estimated) (Observed)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated)", + "2048-07-14": "Eid al-Fitr (estimated) (Observed)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", + "2048-09-21": "Eid al-Adha (estimated) (Observed)", + "2048-09-22": "Eid al-Adha (estimated) (Observed)", "2048-09-27": "Memorial Day", "2048-10-18": "Independence Restoration Day", "2048-11-08": "Victory Day", @@ -1445,10 +1445,10 @@ "2049-06-15": "National Liberation Day", "2049-06-26": "Armed Forces Day", "2049-06-28": "Armed Forces Day (Observed)", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-09-27": "Memorial Day", "2049-10-18": "Independence Restoration Day", "2049-11-08": "Victory Day", @@ -1472,13 +1472,13 @@ "2050-05-28": "Independence Day", "2050-05-30": "Independence Day (Observed)", "2050-06-15": "National Liberation Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (estimated)", "2050-06-26": "Armed Forces Day", "2050-06-27": "Armed Forces Day (Observed)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-08-30": "Eid al-Adha* (*estimated) (Observed)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-08-30": "Eid al-Adha (estimated) (Observed)", "2050-09-27": "Memorial Day", "2050-10-18": "Independence Restoration Day", "2050-11-08": "Victory Day", diff --git a/snapshots/countries/BA_BIH.json b/snapshots/countries/BA_BIH.json index 0e37cbed4..2d99ef6b3 100644 --- a/snapshots/countries/BA_BIH.json +++ b/snapshots/countries/BA_BIH.json @@ -11,10 +11,10 @@ "1950-05-01": "Labor Day", "1950-05-02": "Labor Day", "1950-05-09": "Victory Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-11-25": "Statehood Day", "1950-12-24": "Catholic Christmas Eve", "1950-12-25": "Catholic Christmas", @@ -32,10 +32,10 @@ "1951-05-01": "Labor Day", "1951-05-02": "Labor Day", "1951-05-09": "Victory Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-07-07": "Eid al-Fitr* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Eid al-Fitr (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-11-25": "Statehood Day", "1951-12-24": "Catholic Christmas Eve", "1951-12-25": "Catholic Christmas", @@ -53,10 +53,10 @@ "1952-05-01": "Labor Day", "1952-05-02": "Labor Day", "1952-05-09": "Victory Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-06-24": "Eid al-Fitr* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", "1952-11-25": "Statehood Day", "1952-12-24": "Catholic Christmas Eve", "1952-12-25": "Catholic Christmas", @@ -71,10 +71,10 @@ "1953-05-01": "Labor Day", "1953-05-02": "Labor Day", "1953-05-09": "Victory Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", "1953-11-25": "Statehood Day", "1953-12-24": "Catholic Christmas Eve", "1953-12-25": "Catholic Christmas", @@ -92,10 +92,10 @@ "1954-05-01": "Labor Day", "1954-05-02": "Labor Day", "1954-05-09": "Victory Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-11-25": "Statehood Day", "1954-12-24": "Catholic Christmas Eve", "1954-12-25": "Catholic Christmas", @@ -114,10 +114,10 @@ "1955-05-02": "Labor Day", "1955-05-03": "Labor Day (Observed)", "1955-05-09": "Victory Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-11-25": "Statehood Day", "1955-12-24": "Catholic Christmas Eve", "1955-12-25": "Catholic Christmas", @@ -136,10 +136,10 @@ "1956-05-06": "Orthodox Easter", "1956-05-07": "Orthodox Easter Monday", "1956-05-09": "Victory Day", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-11-25": "Statehood Day", "1956-12-24": "Catholic Christmas Eve", "1956-12-25": "Catholic Christmas", @@ -151,11 +151,11 @@ "1957-04-19": "Catholic Good Friday; Orthodox Good Friday", "1957-04-21": "Catholic Easter; Orthodox Easter", "1957-04-22": "Catholic Easter Monday; Orthodox Easter Monday", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", - "1957-05-02": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", + "1957-05-02": "Eid al-Fitr (estimated); Labor Day", "1957-05-09": "Victory Day", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", "1957-11-25": "Statehood Day", "1957-12-24": "Catholic Christmas Eve", "1957-12-25": "Catholic Christmas", @@ -170,13 +170,13 @@ "1958-04-11": "Orthodox Good Friday", "1958-04-13": "Orthodox Easter", "1958-04-14": "Orthodox Easter Monday", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (estimated)", "1958-05-01": "Labor Day", "1958-05-02": "Labor Day", "1958-05-09": "Victory Day", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", "1958-11-25": "Statehood Day", "1958-12-24": "Catholic Christmas Eve", "1958-12-25": "Catholic Christmas", @@ -188,15 +188,15 @@ "1959-03-27": "Catholic Good Friday", "1959-03-29": "Catholic Easter", "1959-03-30": "Catholic Easter Monday", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (estimated)", "1959-05-01": "Labor Day; Orthodox Good Friday", "1959-05-02": "Labor Day", "1959-05-03": "Orthodox Easter", "1959-05-04": "Orthodox Easter Monday", "1959-05-09": "Victory Day", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", "1959-11-25": "Statehood Day", "1959-12-24": "Catholic Christmas Eve", "1959-12-25": "Catholic Christmas", @@ -205,8 +205,8 @@ "1960-01-06": "Orthodox Christmas Eve", "1960-01-07": "Orthodox Christmas", "1960-03-01": "Independence Day", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (estimated)", "1960-04-15": "Catholic Good Friday; Orthodox Good Friday", "1960-04-17": "Catholic Easter; Orthodox Easter", "1960-04-18": "Catholic Easter Monday; Orthodox Easter Monday", @@ -214,8 +214,8 @@ "1960-05-02": "Labor Day", "1960-05-03": "Labor Day (Observed)", "1960-05-09": "Victory Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated)", "1960-11-25": "Statehood Day", "1960-12-24": "Catholic Christmas Eve", "1960-12-25": "Catholic Christmas", @@ -225,8 +225,8 @@ "1961-01-06": "Orthodox Christmas Eve", "1961-01-07": "Orthodox Christmas", "1961-03-01": "Independence Day", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (estimated)", "1961-03-31": "Catholic Good Friday", "1961-04-02": "Catholic Easter", "1961-04-03": "Catholic Easter Monday", @@ -236,8 +236,8 @@ "1961-05-01": "Labor Day", "1961-05-02": "Labor Day", "1961-05-09": "Victory Day", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", "1961-11-25": "Statehood Day", "1961-12-24": "Catholic Christmas Eve", "1961-12-25": "Catholic Christmas", @@ -246,8 +246,8 @@ "1962-01-06": "Orthodox Christmas Eve", "1962-01-07": "Orthodox Christmas", "1962-03-01": "Independence Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (estimated)", "1962-04-20": "Catholic Good Friday", "1962-04-22": "Catholic Easter", "1962-04-23": "Catholic Easter Monday", @@ -257,8 +257,8 @@ "1962-05-01": "Labor Day", "1962-05-02": "Labor Day", "1962-05-09": "Victory Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-11-25": "Statehood Day", "1962-12-24": "Catholic Christmas Eve", "1962-12-25": "Catholic Christmas", @@ -266,16 +266,16 @@ "1963-01-02": "New Year's Day", "1963-01-06": "Orthodox Christmas Eve", "1963-01-07": "Orthodox Christmas", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (estimated)", "1963-03-01": "Independence Day", "1963-04-12": "Catholic Good Friday; Orthodox Good Friday", "1963-04-14": "Catholic Easter; Orthodox Easter", "1963-04-15": "Catholic Easter Monday; Orthodox Easter Monday", "1963-05-01": "Labor Day", "1963-05-02": "Labor Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", "1963-05-09": "Victory Day", "1963-11-25": "Statehood Day", "1963-12-24": "Catholic Christmas Eve", @@ -284,14 +284,14 @@ "1964-01-02": "New Year's Day", "1964-01-06": "Orthodox Christmas Eve", "1964-01-07": "Orthodox Christmas", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (estimated)", "1964-03-01": "Independence Day", "1964-03-27": "Catholic Good Friday", "1964-03-29": "Catholic Easter", "1964-03-30": "Catholic Easter Monday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labor Day; Orthodox Good Friday", "1964-05-02": "Labor Day", "1964-05-03": "Orthodox Easter", @@ -304,11 +304,11 @@ "1965-01-02": "New Year's Day", "1965-01-06": "Orthodox Christmas Eve", "1965-01-07": "Orthodox Christmas", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-02-03": "Eid al-Fitr* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-02-03": "Eid al-Fitr (estimated)", "1965-03-01": "Independence Day", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Catholic Good Friday", "1965-04-18": "Catholic Easter", "1965-04-19": "Catholic Easter Monday", @@ -325,11 +325,11 @@ "1966-01-02": "New Year's Day", "1966-01-06": "Orthodox Christmas Eve", "1966-01-07": "Orthodox Christmas", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (estimated)", "1966-03-01": "Independence Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-08": "Catholic Good Friday; Orthodox Good Friday", "1966-04-10": "Catholic Easter; Orthodox Easter", "1966-04-11": "Catholic Easter Monday; Orthodox Easter Monday", @@ -345,11 +345,11 @@ "1967-01-03": "New Year's Day (Observed)", "1967-01-06": "Orthodox Christmas Eve", "1967-01-07": "Orthodox Christmas", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (estimated)", "1967-03-01": "Independence Day", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Catholic Good Friday", "1967-03-26": "Catholic Easter", "1967-03-27": "Catholic Easter Monday", @@ -361,13 +361,13 @@ "1967-11-25": "Statehood Day", "1967-12-24": "Catholic Christmas Eve", "1967-12-25": "Catholic Christmas", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (estimated); New Year's Day", "1968-01-06": "Orthodox Christmas Eve", "1968-01-07": "Orthodox Christmas", "1968-03-01": "Independence Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-12": "Catholic Good Friday", "1968-04-14": "Catholic Easter", "1968-04-15": "Catholic Easter Monday", @@ -378,16 +378,16 @@ "1968-05-02": "Labor Day", "1968-05-09": "Victory Day", "1968-11-25": "Statehood Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (estimated)", "1968-12-24": "Catholic Christmas Eve", "1968-12-25": "Catholic Christmas", "1969-01-01": "New Year's Day", "1969-01-02": "New Year's Day", "1969-01-06": "Orthodox Christmas Eve", "1969-01-07": "Orthodox Christmas", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", "1969-03-01": "Independence Day", "1969-04-04": "Catholic Good Friday", "1969-04-06": "Catholic Easter", @@ -399,16 +399,16 @@ "1969-05-02": "Labor Day", "1969-05-09": "Victory Day", "1969-11-25": "Statehood Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (estimated)", "1969-12-24": "Catholic Christmas Eve", "1969-12-25": "Catholic Christmas", "1970-01-01": "New Year's Day", "1970-01-02": "New Year's Day", "1970-01-06": "Orthodox Christmas Eve", "1970-01-07": "Orthodox Christmas", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", "1970-03-01": "Independence Day", "1970-03-27": "Catholic Good Friday", "1970-03-29": "Catholic Easter", @@ -420,16 +420,16 @@ "1970-05-02": "Labor Day", "1970-05-09": "Victory Day", "1970-11-25": "Statehood Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (estimated)", "1970-12-24": "Catholic Christmas Eve", "1970-12-25": "Catholic Christmas", "1971-01-01": "New Year's Day", "1971-01-02": "New Year's Day", "1971-01-06": "Orthodox Christmas Eve", "1971-01-07": "Orthodox Christmas", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", "1971-03-01": "Independence Day", "1971-04-09": "Catholic Good Friday", "1971-04-11": "Catholic Easter", @@ -440,8 +440,8 @@ "1971-05-01": "Labor Day", "1971-05-02": "Labor Day", "1971-05-09": "Victory Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (estimated)", "1971-11-25": "Statehood Day", "1971-12-24": "Catholic Christmas Eve", "1971-12-25": "Catholic Christmas", @@ -449,8 +449,8 @@ "1972-01-02": "New Year's Day", "1972-01-06": "Orthodox Christmas Eve", "1972-01-07": "Orthodox Christmas", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha (estimated)", "1972-03-01": "Independence Day", "1972-03-31": "Catholic Good Friday", "1972-04-02": "Catholic Easter", @@ -461,8 +461,8 @@ "1972-05-01": "Labor Day", "1972-05-02": "Labor Day", "1972-05-09": "Victory Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (estimated)", "1972-11-25": "Statehood Day", "1972-12-24": "Catholic Christmas Eve", "1972-12-25": "Catholic Christmas", @@ -470,8 +470,8 @@ "1973-01-02": "New Year's Day", "1973-01-06": "Orthodox Christmas Eve", "1973-01-07": "Orthodox Christmas", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (estimated)", "1973-03-01": "Independence Day", "1973-04-20": "Catholic Good Friday", "1973-04-22": "Catholic Easter", @@ -482,15 +482,15 @@ "1973-05-01": "Labor Day", "1973-05-02": "Labor Day", "1973-05-09": "Victory Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (estimated)", "1973-11-25": "Statehood Day", "1973-12-24": "Catholic Christmas Eve", "1973-12-25": "Catholic Christmas", "1974-01-01": "New Year's Day", "1974-01-02": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-06": "Orthodox Christmas Eve", "1974-01-07": "Orthodox Christmas", "1974-03-01": "Independence Day", @@ -500,11 +500,11 @@ "1974-05-01": "Labor Day", "1974-05-02": "Labor Day", "1974-05-09": "Victory Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (estimated)", "1974-11-25": "Statehood Day", - "1974-12-24": "Catholic Christmas Eve; Eid al-Adha* (*estimated)", - "1974-12-25": "Catholic Christmas; Eid al-Adha* (*estimated)", + "1974-12-24": "Catholic Christmas Eve; Eid al-Adha (estimated)", + "1974-12-25": "Catholic Christmas; Eid al-Adha (estimated)", "1975-01-01": "New Year's Day", "1975-01-02": "New Year's Day", "1975-01-06": "Orthodox Christmas Eve", @@ -518,11 +518,11 @@ "1975-05-04": "Orthodox Easter", "1975-05-05": "Orthodox Easter Monday", "1975-05-09": "Victory Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (estimated)", "1975-11-25": "Statehood Day", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-24": "Catholic Christmas Eve", "1975-12-25": "Catholic Christmas", "1976-01-01": "New Year's Day", @@ -539,11 +539,11 @@ "1976-05-01": "Labor Day", "1976-05-02": "Labor Day", "1976-05-09": "Victory Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (estimated)", "1976-11-25": "Statehood Day", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-24": "Catholic Christmas Eve", "1976-12-25": "Catholic Christmas", "1977-01-01": "New Year's Day", @@ -558,10 +558,10 @@ "1977-05-02": "Labor Day", "1977-05-03": "Labor Day (Observed)", "1977-05-09": "Victory Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", "1977-11-25": "Statehood Day", "1977-12-24": "Catholic Christmas Eve", "1977-12-25": "Catholic Christmas", @@ -579,10 +579,10 @@ "1978-05-01": "Labor Day; Orthodox Easter Monday", "1978-05-02": "Labor Day", "1978-05-09": "Victory Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", "1978-11-25": "Statehood Day", "1978-12-24": "Catholic Christmas Eve", "1978-12-25": "Catholic Christmas", @@ -600,10 +600,10 @@ "1979-05-01": "Labor Day", "1979-05-02": "Labor Day", "1979-05-09": "Victory Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", "1979-11-25": "Statehood Day", "1979-12-24": "Catholic Christmas Eve", "1979-12-25": "Catholic Christmas", @@ -618,10 +618,10 @@ "1980-05-01": "Labor Day", "1980-05-02": "Labor Day", "1980-05-09": "Victory Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-11-25": "Statehood Day", "1980-12-24": "Catholic Christmas Eve", "1980-12-25": "Catholic Christmas", @@ -639,10 +639,10 @@ "1981-05-01": "Labor Day", "1981-05-02": "Labor Day", "1981-05-09": "Victory Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-11-25": "Statehood Day", "1981-12-24": "Catholic Christmas Eve", "1981-12-25": "Catholic Christmas", @@ -660,10 +660,10 @@ "1982-05-01": "Labor Day", "1982-05-02": "Labor Day", "1982-05-09": "Victory Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-11-25": "Statehood Day", "1982-12-24": "Catholic Christmas Eve", "1982-12-25": "Catholic Christmas", @@ -681,10 +681,10 @@ "1983-05-06": "Orthodox Good Friday", "1983-05-08": "Orthodox Easter", "1983-05-09": "Orthodox Easter Monday; Victory Day", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-11-25": "Statehood Day", "1983-12-24": "Catholic Christmas Eve", "1983-12-25": "Catholic Christmas", @@ -700,10 +700,10 @@ "1984-05-01": "Labor Day", "1984-05-02": "Labor Day", "1984-05-09": "Victory Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-11-25": "Statehood Day", "1984-12-24": "Catholic Christmas Eve", "1984-12-25": "Catholic Christmas", @@ -721,10 +721,10 @@ "1985-05-01": "Labor Day", "1985-05-02": "Labor Day", "1985-05-09": "Victory Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", "1985-11-25": "Statehood Day", "1985-12-24": "Catholic Christmas Eve", "1985-12-25": "Catholic Christmas", @@ -741,10 +741,10 @@ "1986-05-04": "Orthodox Easter", "1986-05-05": "Orthodox Easter Monday", "1986-05-09": "Victory Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (estimated)", "1986-11-25": "Statehood Day", "1986-12-24": "Catholic Christmas Eve", "1986-12-25": "Catholic Christmas", @@ -759,10 +759,10 @@ "1987-05-01": "Labor Day", "1987-05-02": "Labor Day", "1987-05-09": "Victory Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-11-25": "Statehood Day", "1987-12-24": "Catholic Christmas Eve", "1987-12-25": "Catholic Christmas", @@ -781,10 +781,10 @@ "1988-05-02": "Labor Day", "1988-05-03": "Labor Day (Observed)", "1988-05-09": "Victory Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-11-25": "Statehood Day", "1988-12-24": "Catholic Christmas Eve", "1988-12-25": "Catholic Christmas", @@ -801,11 +801,11 @@ "1989-04-30": "Orthodox Easter", "1989-05-01": "Labor Day; Orthodox Easter Monday", "1989-05-02": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (estimated)", "1989-05-09": "Victory Day", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", "1989-11-25": "Statehood Day", "1989-12-24": "Catholic Christmas Eve", "1989-12-25": "Catholic Christmas", @@ -817,13 +817,13 @@ "1990-04-13": "Catholic Good Friday; Orthodox Good Friday", "1990-04-15": "Catholic Easter; Orthodox Easter", "1990-04-16": "Catholic Easter Monday; Orthodox Easter Monday", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (estimated)", "1990-05-01": "Labor Day", "1990-05-02": "Labor Day", "1990-05-09": "Victory Day", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", "1990-11-25": "Statehood Day", "1990-12-24": "Catholic Christmas Eve", "1990-12-25": "Catholic Christmas", @@ -838,13 +838,13 @@ "1991-04-05": "Orthodox Good Friday", "1991-04-07": "Orthodox Easter", "1991-04-08": "Orthodox Easter Monday", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (estimated)", "1991-05-01": "Labor Day", "1991-05-02": "Labor Day", "1991-05-09": "Victory Day", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", "1991-11-25": "Statehood Day", "1991-12-24": "Catholic Christmas Eve", "1991-12-25": "Catholic Christmas", @@ -853,8 +853,8 @@ "1992-01-06": "Orthodox Christmas Eve", "1992-01-07": "Orthodox Christmas", "1992-03-01": "Independence Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (estimated)", "1992-04-17": "Catholic Good Friday", "1992-04-19": "Catholic Easter", "1992-04-20": "Catholic Easter Monday", @@ -864,8 +864,8 @@ "1992-05-01": "Labor Day", "1992-05-02": "Labor Day", "1992-05-09": "Victory Day", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", "1992-11-25": "Statehood Day", "1992-12-24": "Catholic Christmas Eve", "1992-12-25": "Catholic Christmas", @@ -874,8 +874,8 @@ "1993-01-06": "Orthodox Christmas Eve", "1993-01-07": "Orthodox Christmas", "1993-03-01": "Independence Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (estimated)", "1993-04-09": "Catholic Good Friday", "1993-04-11": "Catholic Easter", "1993-04-12": "Catholic Easter Monday", @@ -885,8 +885,8 @@ "1993-05-01": "Labor Day", "1993-05-02": "Labor Day", "1993-05-09": "Victory Day", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", "1993-11-25": "Statehood Day", "1993-12-24": "Catholic Christmas Eve", "1993-12-25": "Catholic Christmas", @@ -895,8 +895,8 @@ "1994-01-06": "Orthodox Christmas Eve", "1994-01-07": "Orthodox Christmas", "1994-03-01": "Independence Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (estimated)", "1994-04-01": "Catholic Good Friday", "1994-04-03": "Catholic Easter", "1994-04-04": "Catholic Easter Monday", @@ -905,8 +905,8 @@ "1994-05-02": "Labor Day; Orthodox Easter Monday", "1994-05-03": "Labor Day (Observed); Orthodox Easter (Observed)", "1994-05-09": "Victory Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-11-25": "Statehood Day", "1994-12-24": "Catholic Christmas Eve", "1994-12-25": "Catholic Christmas", @@ -916,8 +916,8 @@ "1995-01-06": "Orthodox Christmas Eve", "1995-01-07": "Orthodox Christmas", "1995-03-01": "Independence Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (estimated)", "1995-04-14": "Catholic Good Friday", "1995-04-16": "Catholic Easter", "1995-04-17": "Catholic Easter Monday", @@ -926,8 +926,8 @@ "1995-04-24": "Orthodox Easter Monday", "1995-05-01": "Labor Day", "1995-05-02": "Labor Day", - "1995-05-09": "Eid al-Adha* (*estimated); Victory Day", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated); Victory Day", + "1995-05-10": "Eid al-Adha (estimated)", "1995-11-25": "Statehood Day", "1995-12-24": "Catholic Christmas Eve", "1995-12-25": "Catholic Christmas", @@ -935,8 +935,8 @@ "1996-01-02": "New Year's Day", "1996-01-06": "Orthodox Christmas Eve", "1996-01-07": "Orthodox Christmas", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr (estimated)", "1996-03-01": "Independence Day", "1996-04-05": "Catholic Good Friday", "1996-04-07": "Catholic Easter", @@ -944,8 +944,8 @@ "1996-04-12": "Orthodox Good Friday", "1996-04-14": "Orthodox Easter", "1996-04-15": "Orthodox Easter Monday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labor Day", "1996-05-02": "Labor Day", "1996-05-09": "Victory Day", @@ -956,14 +956,14 @@ "1997-01-02": "New Year's Day", "1997-01-06": "Orthodox Christmas Eve", "1997-01-07": "Orthodox Christmas", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (estimated)", "1997-03-01": "Independence Day", "1997-03-28": "Catholic Good Friday", "1997-03-30": "Catholic Easter", "1997-03-31": "Catholic Easter Monday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-04-25": "Orthodox Good Friday", "1997-04-27": "Orthodox Easter", "1997-04-28": "Orthodox Easter Monday", @@ -977,11 +977,11 @@ "1998-01-02": "New Year's Day", "1998-01-06": "Orthodox Christmas Eve", "1998-01-07": "Orthodox Christmas", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (estimated)", "1998-03-01": "Independence Day", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Catholic Good Friday", "1998-04-12": "Catholic Easter", "1998-04-13": "Catholic Easter Monday", @@ -998,11 +998,11 @@ "1999-01-02": "New Year's Day", "1999-01-06": "Orthodox Christmas Eve", "1999-01-07": "Orthodox Christmas", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (estimated)", "1999-03-01": "Independence Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated)", "1999-04-02": "Catholic Good Friday", "1999-04-04": "Catholic Easter", "1999-04-05": "Catholic Easter Monday", @@ -1019,11 +1019,11 @@ "2000-01-02": "New Year's Day", "2000-01-06": "Orthodox Christmas Eve", "2000-01-07": "Orthodox Christmas", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (estimated)", "2000-03-01": "Independence Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-21": "Catholic Good Friday", "2000-04-23": "Catholic Easter", "2000-04-24": "Catholic Easter Monday", @@ -1035,8 +1035,8 @@ "2000-11-25": "Statehood Day", "2000-12-24": "Catholic Christmas Eve", "2000-12-25": "Catholic Christmas", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-02": "New Year's Day", "2001-01-06": "Orthodox Christmas Eve", @@ -1509,16 +1509,16 @@ "2024-03-29": "Catholic Good Friday", "2024-03-31": "Catholic Easter", "2024-04-01": "Catholic Easter Monday", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr (estimated)", "2024-05-01": "Labor Day", "2024-05-02": "Labor Day", "2024-05-03": "Orthodox Good Friday", "2024-05-05": "Orthodox Easter", "2024-05-06": "Orthodox Easter Monday", "2024-05-09": "Victory Day", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", "2024-11-25": "Statehood Day", "2024-12-24": "Catholic Christmas Eve", "2024-12-25": "Catholic Christmas", @@ -1527,16 +1527,16 @@ "2025-01-06": "Orthodox Christmas Eve", "2025-01-07": "Orthodox Christmas", "2025-03-01": "Independence Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated)", "2025-04-18": "Catholic Good Friday; Orthodox Good Friday", "2025-04-20": "Catholic Easter; Orthodox Easter", "2025-04-21": "Catholic Easter Monday; Orthodox Easter Monday", "2025-05-01": "Labor Day", "2025-05-02": "Labor Day", "2025-05-09": "Victory Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-11-25": "Statehood Day", "2025-12-24": "Catholic Christmas Eve", "2025-12-25": "Catholic Christmas", @@ -1545,8 +1545,8 @@ "2026-01-06": "Orthodox Christmas Eve", "2026-01-07": "Orthodox Christmas", "2026-03-01": "Independence Day", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (estimated)", "2026-04-03": "Catholic Good Friday", "2026-04-05": "Catholic Easter", "2026-04-06": "Catholic Easter Monday", @@ -1556,8 +1556,8 @@ "2026-05-01": "Labor Day", "2026-05-02": "Labor Day", "2026-05-09": "Victory Day", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", "2026-11-25": "Statehood Day", "2026-12-24": "Catholic Christmas Eve", "2026-12-25": "Catholic Christmas", @@ -1566,8 +1566,8 @@ "2027-01-06": "Orthodox Christmas Eve", "2027-01-07": "Orthodox Christmas", "2027-03-01": "Independence Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (estimated)", "2027-03-26": "Catholic Good Friday", "2027-03-28": "Catholic Easter", "2027-03-29": "Catholic Easter Monday", @@ -1576,8 +1576,8 @@ "2027-05-02": "Labor Day; Orthodox Easter", "2027-05-03": "Orthodox Easter Monday", "2027-05-09": "Victory Day", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated)", "2027-11-25": "Statehood Day", "2027-12-24": "Catholic Christmas Eve", "2027-12-25": "Catholic Christmas", @@ -1585,16 +1585,16 @@ "2028-01-02": "New Year's Day", "2028-01-06": "Orthodox Christmas Eve", "2028-01-07": "Orthodox Christmas", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (estimated)", "2028-03-01": "Independence Day", "2028-04-14": "Catholic Good Friday; Orthodox Good Friday", "2028-04-16": "Catholic Easter; Orthodox Easter", "2028-04-17": "Catholic Easter Monday; Orthodox Easter Monday", "2028-05-01": "Labor Day", "2028-05-02": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", "2028-05-09": "Victory Day", "2028-11-25": "Statehood Day", "2028-12-24": "Catholic Christmas Eve", @@ -1603,8 +1603,8 @@ "2029-01-02": "New Year's Day", "2029-01-06": "Orthodox Christmas Eve", "2029-01-07": "Orthodox Christmas", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (estimated)", "2029-03-01": "Independence Day", "2029-03-30": "Catholic Good Friday", "2029-04-01": "Catholic Easter", @@ -1612,8 +1612,8 @@ "2029-04-06": "Orthodox Good Friday", "2029-04-08": "Orthodox Easter", "2029-04-09": "Orthodox Easter Monday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", "2029-05-02": "Labor Day", "2029-05-09": "Victory Day", @@ -1624,11 +1624,11 @@ "2030-01-02": "New Year's Day", "2030-01-06": "Orthodox Christmas Eve", "2030-01-07": "Orthodox Christmas", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (estimated)", "2030-03-01": "Independence Day", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated)", "2030-04-19": "Catholic Good Friday", "2030-04-21": "Catholic Easter", "2030-04-22": "Catholic Easter Monday", @@ -1645,11 +1645,11 @@ "2031-01-02": "New Year's Day", "2031-01-06": "Orthodox Christmas Eve", "2031-01-07": "Orthodox Christmas", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (estimated)", "2031-03-01": "Independence Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-11": "Catholic Good Friday; Orthodox Good Friday", "2031-04-13": "Catholic Easter; Orthodox Easter", "2031-04-14": "Catholic Easter Monday; Orthodox Easter Monday", @@ -1663,11 +1663,11 @@ "2032-01-02": "New Year's Day", "2032-01-06": "Orthodox Christmas Eve", "2032-01-07": "Orthodox Christmas", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (estimated)", "2032-03-01": "Independence Day", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Catholic Good Friday", "2032-03-28": "Catholic Easter", "2032-03-29": "Catholic Easter Monday", @@ -1680,13 +1680,13 @@ "2032-12-24": "Catholic Christmas Eve", "2032-12-25": "Catholic Christmas", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated); New Year's Day", - "2033-01-03": "Eid al-Fitr* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", + "2033-01-03": "Eid al-Fitr (estimated)", "2033-01-06": "Orthodox Christmas Eve", "2033-01-07": "Orthodox Christmas", "2033-03-01": "Independence Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", "2033-04-15": "Catholic Good Friday", "2033-04-17": "Catholic Easter", "2033-04-18": "Catholic Easter Monday", @@ -1698,16 +1698,16 @@ "2033-05-03": "Labor Day (Observed)", "2033-05-09": "Victory Day", "2033-11-25": "Statehood Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Catholic Christmas Eve; Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Catholic Christmas Eve; Eid al-Fitr (estimated)", "2033-12-25": "Catholic Christmas", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", "2034-01-03": "New Year's Day (Observed)", "2034-01-06": "Orthodox Christmas Eve", "2034-01-07": "Orthodox Christmas", - "2034-03-01": "Eid al-Adha* (*estimated); Independence Day", - "2034-03-02": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated); Independence Day", + "2034-03-02": "Eid al-Adha (estimated)", "2034-04-07": "Catholic Good Friday; Orthodox Good Friday", "2034-04-09": "Catholic Easter; Orthodox Easter", "2034-04-10": "Catholic Easter Monday; Orthodox Easter Monday", @@ -1715,16 +1715,16 @@ "2034-05-02": "Labor Day", "2034-05-09": "Victory Day", "2034-11-25": "Statehood Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (estimated)", "2034-12-24": "Catholic Christmas Eve", "2034-12-25": "Catholic Christmas", "2035-01-01": "New Year's Day", "2035-01-02": "New Year's Day", "2035-01-06": "Orthodox Christmas Eve", "2035-01-07": "Orthodox Christmas", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-01": "Independence Day", "2035-03-23": "Catholic Good Friday", "2035-03-25": "Catholic Easter", @@ -1736,16 +1736,16 @@ "2035-05-02": "Labor Day", "2035-05-09": "Victory Day", "2035-11-25": "Statehood Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (estimated)", "2035-12-24": "Catholic Christmas Eve", "2035-12-25": "Catholic Christmas", "2036-01-01": "New Year's Day", "2036-01-02": "New Year's Day", "2036-01-06": "Orthodox Christmas Eve", "2036-01-07": "Orthodox Christmas", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", "2036-03-01": "Independence Day", "2036-04-11": "Catholic Good Friday", "2036-04-13": "Catholic Easter", @@ -1756,8 +1756,8 @@ "2036-05-01": "Labor Day", "2036-05-02": "Labor Day", "2036-05-09": "Victory Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (estimated)", "2036-11-25": "Statehood Day", "2036-12-24": "Catholic Christmas Eve", "2036-12-25": "Catholic Christmas", @@ -1765,8 +1765,8 @@ "2037-01-02": "New Year's Day", "2037-01-06": "Orthodox Christmas Eve", "2037-01-07": "Orthodox Christmas", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (estimated)", "2037-03-01": "Independence Day", "2037-04-03": "Catholic Good Friday; Orthodox Good Friday", "2037-04-05": "Catholic Easter; Orthodox Easter", @@ -1774,8 +1774,8 @@ "2037-05-01": "Labor Day", "2037-05-02": "Labor Day", "2037-05-09": "Victory Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated)", "2037-11-25": "Statehood Day", "2037-12-24": "Catholic Christmas Eve", "2037-12-25": "Catholic Christmas", @@ -1783,8 +1783,8 @@ "2038-01-02": "New Year's Day", "2038-01-06": "Orthodox Christmas Eve", "2038-01-07": "Orthodox Christmas", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-03-01": "Independence Day", "2038-04-23": "Catholic Good Friday; Orthodox Good Friday", "2038-04-25": "Catholic Easter; Orthodox Easter", @@ -1792,15 +1792,15 @@ "2038-05-01": "Labor Day", "2038-05-02": "Labor Day", "2038-05-09": "Victory Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (estimated)", "2038-11-25": "Statehood Day", "2038-12-24": "Catholic Christmas Eve", "2038-12-25": "Catholic Christmas", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated); Orthodox Christmas Eve", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated); Orthodox Christmas Eve", "2039-01-07": "Orthodox Christmas", "2039-03-01": "Independence Day", "2039-04-08": "Catholic Good Friday", @@ -1813,13 +1813,13 @@ "2039-05-02": "Labor Day", "2039-05-03": "Labor Day (Observed)", "2039-05-09": "Victory Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (estimated)", "2039-11-25": "Statehood Day", "2039-12-24": "Catholic Christmas Eve", "2039-12-25": "Catholic Christmas", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", "2040-01-03": "New Year's Day (Observed)", @@ -1835,11 +1835,11 @@ "2040-05-06": "Orthodox Easter", "2040-05-07": "Orthodox Easter Monday", "2040-05-09": "Victory Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated)", "2040-11-25": "Statehood Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-24": "Catholic Christmas Eve", "2040-12-25": "Catholic Christmas", "2041-01-01": "New Year's Day", @@ -1853,11 +1853,11 @@ "2041-05-01": "Labor Day", "2041-05-02": "Labor Day", "2041-05-09": "Victory Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (estimated)", "2041-11-25": "Statehood Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-24": "Catholic Christmas Eve", "2041-12-25": "Catholic Christmas", "2042-01-01": "New Year's Day", @@ -1874,10 +1874,10 @@ "2042-05-01": "Labor Day", "2042-05-02": "Labor Day", "2042-05-09": "Victory Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", "2042-11-25": "Statehood Day", "2042-12-24": "Catholic Christmas Eve", "2042-12-25": "Catholic Christmas", @@ -1894,10 +1894,10 @@ "2043-05-03": "Orthodox Easter", "2043-05-04": "Orthodox Easter Monday", "2043-05-09": "Victory Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", "2043-11-25": "Statehood Day", "2043-12-24": "Catholic Christmas Eve", "2043-12-25": "Catholic Christmas", @@ -1916,10 +1916,10 @@ "2044-05-02": "Labor Day", "2044-05-03": "Labor Day (Observed)", "2044-05-09": "Victory Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", "2044-11-25": "Statehood Day", "2044-12-24": "Catholic Christmas Eve", "2044-12-25": "Catholic Christmas", @@ -1935,10 +1935,10 @@ "2045-05-01": "Labor Day", "2045-05-02": "Labor Day", "2045-05-09": "Victory Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-11-25": "Statehood Day", "2045-12-24": "Catholic Christmas Eve", "2045-12-25": "Catholic Christmas", @@ -1956,10 +1956,10 @@ "2046-05-01": "Labor Day", "2046-05-02": "Labor Day", "2046-05-09": "Victory Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-11-25": "Statehood Day", "2046-12-24": "Catholic Christmas Eve", "2046-12-25": "Catholic Christmas", @@ -1977,10 +1977,10 @@ "2047-05-01": "Labor Day", "2047-05-02": "Labor Day", "2047-05-09": "Victory Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-11-25": "Statehood Day", "2047-12-24": "Catholic Christmas Eve", "2047-12-25": "Catholic Christmas", @@ -1995,10 +1995,10 @@ "2048-05-01": "Labor Day", "2048-05-02": "Labor Day", "2048-05-09": "Victory Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-11-25": "Statehood Day", "2048-12-24": "Catholic Christmas Eve", "2048-12-25": "Catholic Christmas", @@ -2016,10 +2016,10 @@ "2049-05-01": "Labor Day", "2049-05-02": "Labor Day", "2049-05-09": "Victory Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-11-25": "Statehood Day", "2049-12-24": "Catholic Christmas Eve", "2049-12-25": "Catholic Christmas", @@ -2038,10 +2038,10 @@ "2050-05-02": "Labor Day", "2050-05-03": "Labor Day (Observed)", "2050-05-09": "Victory Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", "2050-11-25": "Statehood Day", "2050-12-24": "Catholic Christmas Eve", "2050-12-25": "Catholic Christmas" diff --git a/snapshots/countries/BA_BRC.json b/snapshots/countries/BA_BRC.json index 548861d11..3dc5e3d26 100644 --- a/snapshots/countries/BA_BRC.json +++ b/snapshots/countries/BA_BRC.json @@ -8,8 +8,8 @@ "1950-04-10": "Catholic Easter Monday", "1950-05-01": "Labor Day", "1950-05-02": "Labor Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", "1950-12-25": "Catholic Christmas", "1951-01-01": "New Year's Day", "1951-01-02": "New Year's Day", @@ -20,8 +20,8 @@ "1951-04-27": "Orthodox Good Friday", "1951-05-01": "Labor Day", "1951-05-02": "Labor Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", "1951-12-25": "Catholic Christmas", "1952-01-01": "New Year's Day", "1952-01-02": "New Year's Day", @@ -31,8 +31,8 @@ "1952-04-18": "Orthodox Good Friday", "1952-05-01": "Labor Day", "1952-05-02": "Labor Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", "1952-12-25": "Catholic Christmas", "1953-01-01": "New Year's Day", "1953-01-02": "New Year's Day", @@ -43,8 +43,8 @@ "1953-04-06": "Catholic Easter Monday", "1953-05-01": "Labor Day", "1953-05-02": "Labor Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", "1953-12-25": "Catholic Christmas", "1954-01-01": "New Year's Day", "1954-01-02": "New Year's Day", @@ -55,8 +55,8 @@ "1954-05-01": "Labor Day", "1954-05-02": "Labor Day", "1954-05-03": "Labor Day (Observed)", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", "1954-12-25": "Catholic Christmas", "1955-01-01": "New Year's Day", "1955-01-02": "New Year's Day", @@ -68,8 +68,8 @@ "1955-05-01": "Labor Day", "1955-05-02": "Labor Day", "1955-05-03": "Labor Day (Observed)", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", "1955-12-25": "Catholic Christmas", "1955-12-26": "Catholic Christmas (Observed)", "1956-01-01": "New Year's Day", @@ -81,8 +81,8 @@ "1956-05-01": "Labor Day", "1956-05-02": "Labor Day", "1956-05-04": "Orthodox Good Friday", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", "1956-12-25": "Catholic Christmas", "1957-01-01": "New Year's Day", "1957-01-02": "New Year's Day", @@ -90,9 +90,9 @@ "1957-03-08": "Day of establishment of Br\u010dko District", "1957-04-19": "Orthodox Good Friday", "1957-04-22": "Catholic Easter Monday", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", "1957-05-02": "Labor Day", - "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", "1957-12-25": "Catholic Christmas", "1958-01-01": "New Year's Day", "1958-01-02": "New Year's Day", @@ -100,10 +100,10 @@ "1958-03-08": "Day of establishment of Br\u010dko District", "1958-04-07": "Catholic Easter Monday", "1958-04-11": "Orthodox Good Friday", - "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", "1958-05-01": "Labor Day", "1958-05-02": "Labor Day", - "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", "1958-12-25": "Catholic Christmas", "1959-01-01": "New Year's Day", "1959-01-02": "New Year's Day", @@ -111,22 +111,22 @@ "1959-03-08": "Day of establishment of Br\u010dko District", "1959-03-09": "Day of establishment of Br\u010dko District (Observed)", "1959-03-30": "Catholic Easter Monday", - "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", "1959-05-01": "Labor Day; Orthodox Good Friday", "1959-05-02": "Labor Day", - "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", "1959-12-25": "Catholic Christmas", "1960-01-01": "New Year's Day", "1960-01-02": "New Year's Day", "1960-01-07": "Orthodox Christmas", "1960-03-08": "Day of establishment of Br\u010dko District", - "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", "1960-04-15": "Orthodox Good Friday", "1960-04-18": "Catholic Easter Monday", "1960-05-01": "Labor Day", "1960-05-02": "Labor Day", "1960-05-03": "Labor Day (Observed)", - "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", "1960-12-25": "Catholic Christmas", "1960-12-26": "Catholic Christmas (Observed)", "1961-01-01": "New Year's Day", @@ -134,53 +134,53 @@ "1961-01-03": "New Year's Day (Observed)", "1961-01-07": "Orthodox Christmas", "1961-03-08": "Day of establishment of Br\u010dko District", - "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", "1961-04-03": "Catholic Easter Monday", "1961-04-07": "Orthodox Good Friday", "1961-05-01": "Labor Day", "1961-05-02": "Labor Day", - "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", "1961-12-25": "Catholic Christmas", "1962-01-01": "New Year's Day", "1962-01-02": "New Year's Day", "1962-01-07": "Orthodox Christmas", "1962-01-08": "Orthodox Christmas (Observed)", - "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", "1962-03-08": "Day of establishment of Br\u010dko District", "1962-04-23": "Catholic Easter Monday", "1962-04-27": "Orthodox Good Friday", "1962-05-01": "Labor Day", "1962-05-02": "Labor Day", - "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", "1962-12-25": "Catholic Christmas", "1963-01-01": "New Year's Day", "1963-01-02": "New Year's Day", "1963-01-07": "Orthodox Christmas", - "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", "1963-03-08": "Day of establishment of Br\u010dko District", "1963-04-12": "Orthodox Good Friday", "1963-04-15": "Catholic Easter Monday", "1963-05-01": "Labor Day", "1963-05-02": "Labor Day", - "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", "1963-12-25": "Catholic Christmas", "1964-01-01": "New Year's Day", "1964-01-02": "New Year's Day", "1964-01-07": "Orthodox Christmas", - "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-08": "Day of establishment of Br\u010dko District", "1964-03-09": "Day of establishment of Br\u010dko District (Observed)", "1964-03-30": "Catholic Easter Monday", - "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "Labor Day; Orthodox Good Friday", "1964-05-02": "Labor Day", "1964-12-25": "Catholic Christmas", "1965-01-01": "New Year's Day", "1965-01-02": "New Year's Day", "1965-01-07": "Orthodox Christmas", - "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", "1965-03-08": "Day of establishment of Br\u010dko District", - "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-11": "Eid al-Adha (estimated)", "1965-04-19": "Catholic Easter Monday", "1965-04-23": "Orthodox Good Friday", "1965-05-01": "Labor Day", @@ -191,9 +191,9 @@ "1966-01-02": "New Year's Day", "1966-01-03": "New Year's Day (Observed)", "1966-01-07": "Orthodox Christmas", - "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", "1966-03-08": "Day of establishment of Br\u010dko District", - "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-04-08": "Orthodox Good Friday", "1966-04-11": "Catholic Easter Monday", "1966-05-01": "Labor Day", @@ -205,96 +205,96 @@ "1967-01-02": "New Year's Day", "1967-01-03": "New Year's Day (Observed)", "1967-01-07": "Orthodox Christmas", - "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", "1967-03-08": "Day of establishment of Br\u010dko District", - "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-03-27": "Catholic Easter Monday", "1967-04-28": "Orthodox Good Friday", "1967-05-01": "Labor Day", "1967-05-02": "Labor Day", "1967-12-25": "Catholic Christmas", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-01-02": "New Year's Day", "1968-01-07": "Orthodox Christmas", "1968-01-08": "Orthodox Christmas (Observed)", "1968-03-08": "Day of establishment of Br\u010dko District", - "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", "1968-04-15": "Catholic Easter Monday", "1968-04-19": "Orthodox Good Friday", "1968-05-01": "Labor Day", "1968-05-02": "Labor Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", "1968-12-25": "Catholic Christmas", "1969-01-01": "New Year's Day", "1969-01-02": "New Year's Day", "1969-01-07": "Orthodox Christmas", - "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", "1969-03-08": "Day of establishment of Br\u010dko District", "1969-04-07": "Catholic Easter Monday", "1969-04-11": "Orthodox Good Friday", "1969-05-01": "Labor Day", "1969-05-02": "Labor Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1969-12-25": "Catholic Christmas", "1970-01-01": "New Year's Day", "1970-01-02": "New Year's Day", "1970-01-07": "Orthodox Christmas", - "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", "1970-03-08": "Day of establishment of Br\u010dko District", "1970-03-09": "Day of establishment of Br\u010dko District (Observed)", "1970-03-30": "Catholic Easter Monday", "1970-04-24": "Orthodox Good Friday", "1970-05-01": "Labor Day", "1970-05-02": "Labor Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-25": "Catholic Christmas", "1971-01-01": "New Year's Day", "1971-01-02": "New Year's Day", "1971-01-07": "Orthodox Christmas", - "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", "1971-03-08": "Day of establishment of Br\u010dko District", "1971-04-12": "Catholic Easter Monday", "1971-04-16": "Orthodox Good Friday", "1971-05-01": "Labor Day", "1971-05-02": "Labor Day", "1971-05-03": "Labor Day (Observed)", - "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-25": "Catholic Christmas", "1972-01-01": "New Year's Day", "1972-01-02": "New Year's Day", "1972-01-03": "New Year's Day (Observed)", "1972-01-07": "Orthodox Christmas", - "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", "1972-03-08": "Day of establishment of Br\u010dko District", "1972-04-03": "Catholic Easter Monday", "1972-04-07": "Orthodox Good Friday", "1972-05-01": "Labor Day", "1972-05-02": "Labor Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1972-12-25": "Catholic Christmas", "1973-01-01": "New Year's Day", "1973-01-02": "New Year's Day", "1973-01-07": "Orthodox Christmas", "1973-01-08": "Orthodox Christmas (Observed)", - "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", "1973-03-08": "Day of establishment of Br\u010dko District", "1973-04-23": "Catholic Easter Monday", "1973-04-27": "Orthodox Good Friday", "1973-05-01": "Labor Day", "1973-05-02": "Labor Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", "1973-12-25": "Catholic Christmas", "1974-01-01": "New Year's Day", "1974-01-02": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", "1974-01-07": "Orthodox Christmas", "1974-03-08": "Day of establishment of Br\u010dko District", "1974-04-12": "Orthodox Good Friday", "1974-04-15": "Catholic Easter Monday", "1974-05-01": "Labor Day", "1974-05-02": "Labor Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Catholic Christmas", "1975-01-01": "New Year's Day", "1975-01-02": "New Year's Day", @@ -303,8 +303,8 @@ "1975-03-31": "Catholic Easter Monday", "1975-05-01": "Labor Day", "1975-05-02": "Labor Day; Orthodox Good Friday", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", "1975-12-25": "Catholic Christmas", "1976-01-01": "New Year's Day", "1976-01-02": "New Year's Day", @@ -315,8 +315,8 @@ "1976-05-01": "Labor Day", "1976-05-02": "Labor Day", "1976-05-03": "Labor Day (Observed)", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Catholic Christmas", "1977-01-01": "New Year's Day", "1977-01-02": "New Year's Day", @@ -328,8 +328,8 @@ "1977-05-01": "Labor Day", "1977-05-02": "Labor Day", "1977-05-03": "Labor Day (Observed)", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", "1977-12-25": "Catholic Christmas", "1977-12-26": "Catholic Christmas (Observed)", "1978-01-01": "New Year's Day", @@ -341,8 +341,8 @@ "1978-04-28": "Orthodox Good Friday", "1978-05-01": "Labor Day", "1978-05-02": "Labor Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", "1978-12-25": "Catholic Christmas", "1979-01-01": "New Year's Day", "1979-01-02": "New Year's Day", @@ -353,8 +353,8 @@ "1979-04-20": "Orthodox Good Friday", "1979-05-01": "Labor Day", "1979-05-02": "Labor Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", "1979-12-25": "Catholic Christmas", "1980-01-01": "New Year's Day", "1980-01-02": "New Year's Day", @@ -364,8 +364,8 @@ "1980-04-07": "Catholic Easter Monday", "1980-05-01": "Labor Day", "1980-05-02": "Labor Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", "1980-12-25": "Catholic Christmas", "1981-01-01": "New Year's Day", "1981-01-02": "New Year's Day", @@ -376,8 +376,8 @@ "1981-04-24": "Orthodox Good Friday", "1981-05-01": "Labor Day", "1981-05-02": "Labor Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", "1981-12-25": "Catholic Christmas", "1982-01-01": "New Year's Day", "1982-01-02": "New Year's Day", @@ -388,8 +388,8 @@ "1982-05-01": "Labor Day", "1982-05-02": "Labor Day", "1982-05-03": "Labor Day (Observed)", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", "1982-12-25": "Catholic Christmas", "1983-01-01": "New Year's Day", "1983-01-02": "New Year's Day", @@ -401,8 +401,8 @@ "1983-05-02": "Labor Day", "1983-05-03": "Labor Day (Observed)", "1983-05-06": "Orthodox Good Friday", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", "1983-12-25": "Catholic Christmas", "1983-12-26": "Catholic Christmas (Observed)", "1984-01-01": "New Year's Day", @@ -414,8 +414,8 @@ "1984-04-23": "Catholic Easter Monday", "1984-05-01": "Labor Day", "1984-05-02": "Labor Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", "1984-12-25": "Catholic Christmas", "1985-01-01": "New Year's Day", "1985-01-02": "New Year's Day", @@ -425,8 +425,8 @@ "1985-04-12": "Orthodox Good Friday", "1985-05-01": "Labor Day", "1985-05-02": "Labor Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", "1985-12-25": "Catholic Christmas", "1986-01-01": "New Year's Day", "1986-01-02": "New Year's Day", @@ -435,8 +435,8 @@ "1986-03-31": "Catholic Easter Monday", "1986-05-01": "Labor Day", "1986-05-02": "Labor Day; Orthodox Good Friday", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", "1986-12-25": "Catholic Christmas", "1987-01-01": "New Year's Day", "1987-01-02": "New Year's Day", @@ -447,8 +447,8 @@ "1987-04-20": "Catholic Easter Monday", "1987-05-01": "Labor Day", "1987-05-02": "Labor Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", "1987-12-25": "Catholic Christmas", "1988-01-01": "New Year's Day", "1988-01-02": "New Year's Day", @@ -459,8 +459,8 @@ "1988-05-01": "Labor Day", "1988-05-02": "Labor Day", "1988-05-03": "Labor Day (Observed)", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", "1988-12-25": "Catholic Christmas", "1988-12-26": "Catholic Christmas (Observed)", "1989-01-01": "New Year's Day", @@ -472,8 +472,8 @@ "1989-04-28": "Orthodox Good Friday", "1989-05-01": "Labor Day", "1989-05-02": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", "1989-12-25": "Catholic Christmas", "1990-01-01": "New Year's Day", "1990-01-02": "New Year's Day", @@ -482,10 +482,10 @@ "1990-03-08": "Day of establishment of Br\u010dko District", "1990-04-13": "Orthodox Good Friday", "1990-04-16": "Catholic Easter Monday", - "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "Labor Day", "1990-05-02": "Labor Day", - "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", "1990-12-25": "Catholic Christmas", "1991-01-01": "New Year's Day", "1991-01-02": "New Year's Day", @@ -493,80 +493,80 @@ "1991-03-08": "Day of establishment of Br\u010dko District", "1991-04-01": "Catholic Easter Monday", "1991-04-05": "Orthodox Good Friday", - "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "Labor Day", "1991-05-02": "Labor Day", - "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", "1991-12-25": "Catholic Christmas", "1992-01-01": "New Year's Day", "1992-01-02": "New Year's Day", "1992-01-07": "Orthodox Christmas", "1992-03-08": "Day of establishment of Br\u010dko District", "1992-03-09": "Day of establishment of Br\u010dko District (Observed)", - "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-20": "Catholic Easter Monday", "1992-04-24": "Orthodox Good Friday", "1992-05-01": "Labor Day", "1992-05-02": "Labor Day", - "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", "1992-12-25": "Catholic Christmas", "1993-01-01": "New Year's Day", "1993-01-02": "New Year's Day", "1993-01-07": "Orthodox Christmas", "1993-03-08": "Day of establishment of Br\u010dko District", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-12": "Catholic Easter Monday", "1993-04-16": "Orthodox Good Friday", "1993-05-01": "Labor Day", "1993-05-02": "Labor Day", "1993-05-03": "Labor Day (Observed)", - "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", "1993-12-25": "Catholic Christmas", "1994-01-01": "New Year's Day", "1994-01-02": "New Year's Day", "1994-01-03": "New Year's Day (Observed)", "1994-01-07": "Orthodox Christmas", "1994-03-08": "Day of establishment of Br\u010dko District", - "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-04": "Catholic Easter Monday", "1994-04-29": "Orthodox Good Friday", "1994-05-01": "Labor Day", "1994-05-02": "Labor Day", "1994-05-03": "Labor Day (Observed)", - "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", "1994-12-25": "Catholic Christmas", "1994-12-26": "Catholic Christmas (Observed)", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day", "1995-01-03": "New Year's Day (Observed)", "1995-01-07": "Orthodox Christmas", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-08": "Day of establishment of Br\u010dko District", "1995-04-17": "Catholic Easter Monday", "1995-04-21": "Orthodox Good Friday", "1995-05-01": "Labor Day", "1995-05-02": "Labor Day", - "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", "1995-12-25": "Catholic Christmas", "1996-01-01": "New Year's Day", "1996-01-02": "New Year's Day", "1996-01-07": "Orthodox Christmas", "1996-01-08": "Orthodox Christmas (Observed)", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-08": "Day of establishment of Br\u010dko District", "1996-04-08": "Catholic Easter Monday", "1996-04-12": "Orthodox Good Friday", - "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", "1996-05-01": "Labor Day", "1996-05-02": "Labor Day", "1996-12-25": "Catholic Christmas", "1997-01-01": "New Year's Day", "1997-01-02": "New Year's Day", "1997-01-07": "Orthodox Christmas", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-08": "Day of establishment of Br\u010dko District", "1997-03-31": "Catholic Easter Monday", - "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", "1997-04-25": "Orthodox Good Friday", "1997-05-01": "Labor Day", "1997-05-02": "Labor Day", @@ -574,10 +574,10 @@ "1998-01-01": "New Year's Day", "1998-01-02": "New Year's Day", "1998-01-07": "Orthodox Christmas", - "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-08": "Day of establishment of Br\u010dko District", "1998-03-09": "Day of establishment of Br\u010dko District (Observed)", - "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-04-13": "Catholic Easter Monday", "1998-04-17": "Orthodox Good Friday", "1998-05-01": "Labor Day", @@ -586,9 +586,9 @@ "1999-01-01": "New Year's Day", "1999-01-02": "New Year's Day", "1999-01-07": "Orthodox Christmas", - "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-03-08": "Day of establishment of Br\u010dko District", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-05": "Catholic Easter Monday", "1999-04-09": "Orthodox Good Friday", "1999-05-01": "Labor Day", @@ -599,15 +599,15 @@ "2000-01-02": "New Year's Day", "2000-01-03": "New Year's Day (Observed)", "2000-01-07": "Orthodox Christmas", - "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-03-08": "Day of establishment of Br\u010dko District", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-04-24": "Catholic Easter Monday", "2000-04-28": "Orthodox Good Friday", "2000-05-01": "Labor Day", "2000-05-02": "Labor Day", "2000-12-25": "Catholic Christmas", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-02": "New Year's Day", "2001-01-07": "Orthodox Christmas", @@ -891,77 +891,77 @@ "2024-01-08": "Orthodox Christmas (Observed)", "2024-03-08": "Day of establishment of Br\u010dko District", "2024-04-01": "Catholic Easter Monday", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "Labor Day", "2024-05-02": "Labor Day", "2024-05-03": "Orthodox Good Friday", - "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", "2024-12-25": "Catholic Christmas", "2025-01-01": "New Year's Day", "2025-01-02": "New Year's Day", "2025-01-07": "Orthodox Christmas", "2025-03-08": "Day of establishment of Br\u010dko District", - "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", "2025-04-18": "Orthodox Good Friday", "2025-04-21": "Catholic Easter Monday", "2025-05-01": "Labor Day", "2025-05-02": "Labor Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-12-25": "Catholic Christmas", "2026-01-01": "New Year's Day", "2026-01-02": "New Year's Day", "2026-01-07": "Orthodox Christmas", "2026-03-08": "Day of establishment of Br\u010dko District", "2026-03-09": "Day of establishment of Br\u010dko District (Observed)", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-06": "Catholic Easter Monday", "2026-04-10": "Orthodox Good Friday", "2026-05-01": "Labor Day", "2026-05-02": "Labor Day", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-12-25": "Catholic Christmas", "2027-01-01": "New Year's Day", "2027-01-02": "New Year's Day", "2027-01-07": "Orthodox Christmas", "2027-03-08": "Day of establishment of Br\u010dko District", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-29": "Catholic Easter Monday", "2027-04-30": "Orthodox Good Friday", "2027-05-01": "Labor Day", "2027-05-02": "Labor Day", "2027-05-03": "Labor Day (Observed)", - "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", "2027-12-25": "Catholic Christmas", "2028-01-01": "New Year's Day", "2028-01-02": "New Year's Day", "2028-01-03": "New Year's Day (Observed)", "2028-01-07": "Orthodox Christmas", - "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-03-08": "Day of establishment of Br\u010dko District", "2028-04-14": "Orthodox Good Friday", "2028-04-17": "Catholic Easter Monday", "2028-05-01": "Labor Day", "2028-05-02": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", "2028-12-25": "Catholic Christmas", "2029-01-01": "New Year's Day", "2029-01-02": "New Year's Day", "2029-01-07": "Orthodox Christmas", "2029-01-08": "Orthodox Christmas (Observed)", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-08": "Day of establishment of Br\u010dko District", "2029-04-02": "Catholic Easter Monday", "2029-04-06": "Orthodox Good Friday", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", "2029-05-02": "Labor Day", "2029-12-25": "Catholic Christmas", "2030-01-01": "New Year's Day", "2030-01-02": "New Year's Day", "2030-01-07": "Orthodox Christmas", - "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", "2030-03-08": "Day of establishment of Br\u010dko District", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-22": "Catholic Easter Monday", "2030-04-26": "Orthodox Good Friday", "2030-05-01": "Labor Day", @@ -970,9 +970,9 @@ "2031-01-01": "New Year's Day", "2031-01-02": "New Year's Day", "2031-01-07": "Orthodox Christmas", - "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", "2031-03-08": "Day of establishment of Br\u010dko District", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-11": "Orthodox Good Friday", "2031-04-14": "Catholic Easter Monday", "2031-05-01": "Labor Day", @@ -981,9 +981,9 @@ "2032-01-01": "New Year's Day", "2032-01-02": "New Year's Day", "2032-01-07": "Orthodox Christmas", - "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", "2032-03-08": "Day of establishment of Br\u010dko District", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-29": "Catholic Easter Monday", "2032-04-30": "Orthodox Good Friday", "2032-05-01": "Labor Day", @@ -991,82 +991,82 @@ "2032-05-03": "Labor Day (Observed)", "2032-12-25": "Catholic Christmas", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated); New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", "2033-01-03": "New Year's Day (Observed)", "2033-01-07": "Orthodox Christmas", "2033-03-08": "Day of establishment of Br\u010dko District", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-18": "Catholic Easter Monday", "2033-04-22": "Orthodox Good Friday", "2033-05-01": "Labor Day", "2033-05-02": "Labor Day", "2033-05-03": "Labor Day (Observed)", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Catholic Christmas", "2033-12-26": "Catholic Christmas (Observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", "2034-01-03": "New Year's Day (Observed)", "2034-01-07": "Orthodox Christmas", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-03-08": "Day of establishment of Br\u010dko District", "2034-04-07": "Orthodox Good Friday", "2034-04-10": "Catholic Easter Monday", "2034-05-01": "Labor Day", "2034-05-02": "Labor Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-25": "Catholic Christmas", "2035-01-01": "New Year's Day", "2035-01-02": "New Year's Day", "2035-01-07": "Orthodox Christmas", "2035-01-08": "Orthodox Christmas (Observed)", - "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", "2035-03-08": "Day of establishment of Br\u010dko District", "2035-03-26": "Catholic Easter Monday", "2035-04-27": "Orthodox Good Friday", "2035-05-01": "Labor Day", "2035-05-02": "Labor Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-25": "Catholic Christmas", "2036-01-01": "New Year's Day", "2036-01-02": "New Year's Day", "2036-01-07": "Orthodox Christmas", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-03-08": "Day of establishment of Br\u010dko District", "2036-04-14": "Catholic Easter Monday", "2036-04-18": "Orthodox Good Friday", "2036-05-01": "Labor Day", "2036-05-02": "Labor Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-12-25": "Catholic Christmas", "2037-01-01": "New Year's Day", "2037-01-02": "New Year's Day", "2037-01-07": "Orthodox Christmas", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-03-08": "Day of establishment of Br\u010dko District", "2037-03-09": "Day of establishment of Br\u010dko District (Observed)", "2037-04-03": "Orthodox Good Friday", "2037-04-06": "Catholic Easter Monday", "2037-05-01": "Labor Day", "2037-05-02": "Labor Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", "2037-12-25": "Catholic Christmas", "2038-01-01": "New Year's Day", "2038-01-02": "New Year's Day", "2038-01-07": "Orthodox Christmas", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-03-08": "Day of establishment of Br\u010dko District", "2038-04-23": "Orthodox Good Friday", "2038-04-26": "Catholic Easter Monday", "2038-05-01": "Labor Day", "2038-05-02": "Labor Day", "2038-05-03": "Labor Day (Observed)", - "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-25": "Catholic Christmas", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", "2039-01-03": "New Year's Day (Observed)", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-01-07": "Orthodox Christmas", "2039-03-08": "Day of establishment of Br\u010dko District", "2039-04-11": "Catholic Easter Monday", @@ -1074,9 +1074,9 @@ "2039-05-01": "Labor Day", "2039-05-02": "Labor Day", "2039-05-03": "Labor Day (Observed)", - "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-12-25": "Catholic Christmas", - "2039-12-26": "Catholic Christmas (Observed); Eid al-Adha* (*estimated)", + "2039-12-26": "Catholic Christmas (Observed); Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", "2040-01-03": "New Year's Day (Observed)", @@ -1086,8 +1086,8 @@ "2040-05-01": "Labor Day", "2040-05-02": "Labor Day", "2040-05-04": "Orthodox Good Friday", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Catholic Christmas", "2041-01-01": "New Year's Day", "2041-01-02": "New Year's Day", @@ -1097,8 +1097,8 @@ "2041-04-22": "Catholic Easter Monday", "2041-05-01": "Labor Day", "2041-05-02": "Labor Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-25": "Catholic Christmas", "2042-01-01": "New Year's Day", "2042-01-02": "New Year's Day", @@ -1108,8 +1108,8 @@ "2042-04-11": "Orthodox Good Friday", "2042-05-01": "Labor Day", "2042-05-02": "Labor Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", "2042-12-25": "Catholic Christmas", "2043-01-01": "New Year's Day", "2043-01-02": "New Year's Day", @@ -1119,8 +1119,8 @@ "2043-03-30": "Catholic Easter Monday", "2043-05-01": "Labor Day; Orthodox Good Friday", "2043-05-02": "Labor Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-25": "Catholic Christmas", "2044-01-01": "New Year's Day", "2044-01-02": "New Year's Day", @@ -1131,8 +1131,8 @@ "2044-05-01": "Labor Day", "2044-05-02": "Labor Day", "2044-05-03": "Labor Day (Observed)", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-12-25": "Catholic Christmas", "2044-12-26": "Catholic Christmas (Observed)", "2045-01-01": "New Year's Day", @@ -1144,8 +1144,8 @@ "2045-04-10": "Catholic Easter Monday", "2045-05-01": "Labor Day", "2045-05-02": "Labor Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-12-25": "Catholic Christmas", "2046-01-01": "New Year's Day", "2046-01-02": "New Year's Day", @@ -1156,8 +1156,8 @@ "2046-04-27": "Orthodox Good Friday", "2046-05-01": "Labor Day", "2046-05-02": "Labor Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-12-25": "Catholic Christmas", "2047-01-01": "New Year's Day", "2047-01-02": "New Year's Day", @@ -1167,8 +1167,8 @@ "2047-04-19": "Orthodox Good Friday", "2047-05-01": "Labor Day", "2047-05-02": "Labor Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-12-25": "Catholic Christmas", "2048-01-01": "New Year's Day", "2048-01-02": "New Year's Day", @@ -1179,8 +1179,8 @@ "2048-04-06": "Catholic Easter Monday", "2048-05-01": "Labor Day", "2048-05-02": "Labor Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-12-25": "Catholic Christmas", "2049-01-01": "New Year's Day", "2049-01-02": "New Year's Day", @@ -1191,8 +1191,8 @@ "2049-05-01": "Labor Day", "2049-05-02": "Labor Day", "2049-05-03": "Labor Day (Observed)", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-12-25": "Catholic Christmas", "2050-01-01": "New Year's Day", "2050-01-02": "New Year's Day", @@ -1204,8 +1204,8 @@ "2050-05-01": "Labor Day", "2050-05-02": "Labor Day", "2050-05-03": "Labor Day (Observed)", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", "2050-12-25": "Catholic Christmas", "2050-12-26": "Catholic Christmas (Observed)" } diff --git a/snapshots/countries/BA_COMMON.json b/snapshots/countries/BA_COMMON.json index a0678c03d..79c069073 100644 --- a/snapshots/countries/BA_COMMON.json +++ b/snapshots/countries/BA_COMMON.json @@ -6,8 +6,8 @@ "1950-04-10": "Catholic Easter Monday", "1950-05-01": "Labor Day", "1950-05-02": "Labor Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", "1950-12-25": "Catholic Christmas", "1951-01-01": "New Year's Day", "1951-01-02": "New Year's Day", @@ -16,8 +16,8 @@ "1951-04-27": "Orthodox Good Friday", "1951-05-01": "Labor Day", "1951-05-02": "Labor Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", "1951-12-25": "Catholic Christmas", "1952-01-01": "New Year's Day", "1952-01-02": "New Year's Day", @@ -26,8 +26,8 @@ "1952-04-18": "Orthodox Good Friday", "1952-05-01": "Labor Day", "1952-05-02": "Labor Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", "1952-12-25": "Catholic Christmas", "1953-01-01": "New Year's Day", "1953-01-02": "New Year's Day", @@ -36,8 +36,8 @@ "1953-04-06": "Catholic Easter Monday", "1953-05-01": "Labor Day", "1953-05-02": "Labor Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", "1953-12-25": "Catholic Christmas", "1954-01-01": "New Year's Day", "1954-01-02": "New Year's Day", @@ -46,8 +46,8 @@ "1954-04-23": "Orthodox Good Friday", "1954-05-01": "Labor Day", "1954-05-02": "Labor Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", "1954-12-25": "Catholic Christmas", "1955-01-01": "New Year's Day", "1955-01-02": "New Year's Day", @@ -56,8 +56,8 @@ "1955-04-15": "Orthodox Good Friday", "1955-05-01": "Labor Day", "1955-05-02": "Labor Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", "1955-12-25": "Catholic Christmas", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day", @@ -66,91 +66,91 @@ "1956-05-01": "Labor Day", "1956-05-02": "Labor Day", "1956-05-04": "Orthodox Good Friday", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", "1956-12-25": "Catholic Christmas", "1957-01-01": "New Year's Day", "1957-01-02": "New Year's Day", "1957-01-07": "Orthodox Christmas", "1957-04-19": "Orthodox Good Friday", "1957-04-22": "Catholic Easter Monday", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", "1957-05-02": "Labor Day", - "1957-07-08": "Eid al-Adha* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", "1957-12-25": "Catholic Christmas", "1958-01-01": "New Year's Day", "1958-01-02": "New Year's Day", "1958-01-07": "Orthodox Christmas", "1958-04-07": "Catholic Easter Monday", "1958-04-11": "Orthodox Good Friday", - "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", "1958-05-01": "Labor Day", "1958-05-02": "Labor Day", - "1958-06-27": "Eid al-Adha* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", "1958-12-25": "Catholic Christmas", "1959-01-01": "New Year's Day", "1959-01-02": "New Year's Day", "1959-01-07": "Orthodox Christmas", "1959-03-30": "Catholic Easter Monday", - "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", "1959-05-01": "Labor Day; Orthodox Good Friday", "1959-05-02": "Labor Day", - "1959-06-17": "Eid al-Adha* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", "1959-12-25": "Catholic Christmas", "1960-01-01": "New Year's Day", "1960-01-02": "New Year's Day", "1960-01-07": "Orthodox Christmas", - "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", "1960-04-15": "Orthodox Good Friday", "1960-04-18": "Catholic Easter Monday", "1960-05-01": "Labor Day", "1960-05-02": "Labor Day", - "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", "1960-12-25": "Catholic Christmas", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day", "1961-01-07": "Orthodox Christmas", - "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", "1961-04-03": "Catholic Easter Monday", "1961-04-07": "Orthodox Good Friday", "1961-05-01": "Labor Day", "1961-05-02": "Labor Day", - "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", "1961-12-25": "Catholic Christmas", "1962-01-01": "New Year's Day", "1962-01-02": "New Year's Day", "1962-01-07": "Orthodox Christmas", - "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", "1962-04-23": "Catholic Easter Monday", "1962-04-27": "Orthodox Good Friday", "1962-05-01": "Labor Day", "1962-05-02": "Labor Day", - "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", "1962-12-25": "Catholic Christmas", "1963-01-01": "New Year's Day", "1963-01-02": "New Year's Day", "1963-01-07": "Orthodox Christmas", - "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", "1963-04-12": "Orthodox Good Friday", "1963-04-15": "Catholic Easter Monday", "1963-05-01": "Labor Day", "1963-05-02": "Labor Day", - "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", "1963-12-25": "Catholic Christmas", "1964-01-01": "New Year's Day", "1964-01-02": "New Year's Day", "1964-01-07": "Orthodox Christmas", - "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-30": "Catholic Easter Monday", - "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "Labor Day; Orthodox Good Friday", "1964-05-02": "Labor Day", "1964-12-25": "Catholic Christmas", "1965-01-01": "New Year's Day", "1965-01-02": "New Year's Day", "1965-01-07": "Orthodox Christmas", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", "1965-04-19": "Catholic Easter Monday", "1965-04-23": "Orthodox Good Friday", "1965-05-01": "Labor Day", @@ -159,8 +159,8 @@ "1966-01-01": "New Year's Day", "1966-01-02": "New Year's Day", "1966-01-07": "Orthodox Christmas", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-04-08": "Orthodox Good Friday", "1966-04-11": "Catholic Easter Monday", "1966-05-01": "Labor Day", @@ -169,83 +169,83 @@ "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day", "1967-01-07": "Orthodox Christmas", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-03-27": "Catholic Easter Monday", "1967-04-28": "Orthodox Good Friday", "1967-05-01": "Labor Day", "1967-05-02": "Labor Day", "1967-12-25": "Catholic Christmas", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-01-02": "New Year's Day", "1968-01-07": "Orthodox Christmas", - "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", "1968-04-15": "Catholic Easter Monday", "1968-04-19": "Orthodox Good Friday", "1968-05-01": "Labor Day", "1968-05-02": "Labor Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", "1968-12-25": "Catholic Christmas", "1969-01-01": "New Year's Day", "1969-01-02": "New Year's Day", "1969-01-07": "Orthodox Christmas", - "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", "1969-04-07": "Catholic Easter Monday", "1969-04-11": "Orthodox Good Friday", "1969-05-01": "Labor Day", "1969-05-02": "Labor Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1969-12-25": "Catholic Christmas", "1970-01-01": "New Year's Day", "1970-01-02": "New Year's Day", "1970-01-07": "Orthodox Christmas", - "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", "1970-03-30": "Catholic Easter Monday", "1970-04-24": "Orthodox Good Friday", "1970-05-01": "Labor Day", "1970-05-02": "Labor Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-25": "Catholic Christmas", "1971-01-01": "New Year's Day", "1971-01-02": "New Year's Day", "1971-01-07": "Orthodox Christmas", - "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", "1971-04-12": "Catholic Easter Monday", "1971-04-16": "Orthodox Good Friday", "1971-05-01": "Labor Day", "1971-05-02": "Labor Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-25": "Catholic Christmas", "1972-01-01": "New Year's Day", "1972-01-02": "New Year's Day", "1972-01-07": "Orthodox Christmas", - "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", "1972-04-03": "Catholic Easter Monday", "1972-04-07": "Orthodox Good Friday", "1972-05-01": "Labor Day", "1972-05-02": "Labor Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1972-12-25": "Catholic Christmas", "1973-01-01": "New Year's Day", "1973-01-02": "New Year's Day", "1973-01-07": "Orthodox Christmas", - "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", "1973-04-23": "Catholic Easter Monday", "1973-04-27": "Orthodox Good Friday", "1973-05-01": "Labor Day", "1973-05-02": "Labor Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", "1973-12-25": "Catholic Christmas", "1974-01-01": "New Year's Day", "1974-01-02": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", "1974-01-07": "Orthodox Christmas", "1974-04-12": "Orthodox Good Friday", "1974-04-15": "Catholic Easter Monday", "1974-05-01": "Labor Day", "1974-05-02": "Labor Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Catholic Christmas", "1975-01-01": "New Year's Day", "1975-01-02": "New Year's Day", @@ -253,8 +253,8 @@ "1975-03-31": "Catholic Easter Monday", "1975-05-01": "Labor Day", "1975-05-02": "Labor Day; Orthodox Good Friday", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", "1975-12-25": "Catholic Christmas", "1976-01-01": "New Year's Day", "1976-01-02": "New Year's Day", @@ -263,8 +263,8 @@ "1976-04-23": "Orthodox Good Friday", "1976-05-01": "Labor Day", "1976-05-02": "Labor Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Catholic Christmas", "1977-01-01": "New Year's Day", "1977-01-02": "New Year's Day", @@ -273,8 +273,8 @@ "1977-04-11": "Catholic Easter Monday", "1977-05-01": "Labor Day", "1977-05-02": "Labor Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", "1977-12-25": "Catholic Christmas", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day", @@ -283,8 +283,8 @@ "1978-04-28": "Orthodox Good Friday", "1978-05-01": "Labor Day", "1978-05-02": "Labor Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", "1978-12-25": "Catholic Christmas", "1979-01-01": "New Year's Day", "1979-01-02": "New Year's Day", @@ -293,8 +293,8 @@ "1979-04-20": "Orthodox Good Friday", "1979-05-01": "Labor Day", "1979-05-02": "Labor Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", "1979-12-25": "Catholic Christmas", "1980-01-01": "New Year's Day", "1980-01-02": "New Year's Day", @@ -303,8 +303,8 @@ "1980-04-07": "Catholic Easter Monday", "1980-05-01": "Labor Day", "1980-05-02": "Labor Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", "1980-12-25": "Catholic Christmas", "1981-01-01": "New Year's Day", "1981-01-02": "New Year's Day", @@ -313,8 +313,8 @@ "1981-04-24": "Orthodox Good Friday", "1981-05-01": "Labor Day", "1981-05-02": "Labor Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", "1981-12-25": "Catholic Christmas", "1982-01-01": "New Year's Day", "1982-01-02": "New Year's Day", @@ -323,8 +323,8 @@ "1982-04-16": "Orthodox Good Friday", "1982-05-01": "Labor Day", "1982-05-02": "Labor Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", "1982-12-25": "Catholic Christmas", "1983-01-01": "New Year's Day", "1983-01-02": "New Year's Day", @@ -333,8 +333,8 @@ "1983-05-01": "Labor Day", "1983-05-02": "Labor Day", "1983-05-06": "Orthodox Good Friday", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", "1983-12-25": "Catholic Christmas", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day", @@ -343,8 +343,8 @@ "1984-04-23": "Catholic Easter Monday", "1984-05-01": "Labor Day", "1984-05-02": "Labor Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", "1984-12-25": "Catholic Christmas", "1985-01-01": "New Year's Day", "1985-01-02": "New Year's Day", @@ -353,8 +353,8 @@ "1985-04-12": "Orthodox Good Friday", "1985-05-01": "Labor Day", "1985-05-02": "Labor Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", "1985-12-25": "Catholic Christmas", "1986-01-01": "New Year's Day", "1986-01-02": "New Year's Day", @@ -362,8 +362,8 @@ "1986-03-31": "Catholic Easter Monday", "1986-05-01": "Labor Day", "1986-05-02": "Labor Day; Orthodox Good Friday", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", "1986-12-25": "Catholic Christmas", "1987-01-01": "New Year's Day", "1987-01-02": "New Year's Day", @@ -372,8 +372,8 @@ "1987-04-20": "Catholic Easter Monday", "1987-05-01": "Labor Day", "1987-05-02": "Labor Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", "1987-12-25": "Catholic Christmas", "1988-01-01": "New Year's Day", "1988-01-02": "New Year's Day", @@ -382,8 +382,8 @@ "1988-04-08": "Orthodox Good Friday", "1988-05-01": "Labor Day", "1988-05-02": "Labor Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", "1988-12-25": "Catholic Christmas", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day", @@ -392,85 +392,85 @@ "1989-04-28": "Orthodox Good Friday", "1989-05-01": "Labor Day", "1989-05-02": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", "1989-12-25": "Catholic Christmas", "1990-01-01": "New Year's Day", "1990-01-02": "New Year's Day", "1990-01-07": "Orthodox Christmas", "1990-04-13": "Orthodox Good Friday", "1990-04-16": "Catholic Easter Monday", - "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "Labor Day", "1990-05-02": "Labor Day", - "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", "1990-12-25": "Catholic Christmas", "1991-01-01": "New Year's Day", "1991-01-02": "New Year's Day", "1991-01-07": "Orthodox Christmas", "1991-04-01": "Catholic Easter Monday", "1991-04-05": "Orthodox Good Friday", - "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "Labor Day", "1991-05-02": "Labor Day", - "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", "1991-12-25": "Catholic Christmas", "1992-01-01": "New Year's Day", "1992-01-02": "New Year's Day", "1992-01-07": "Orthodox Christmas", - "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-20": "Catholic Easter Monday", "1992-04-24": "Orthodox Good Friday", "1992-05-01": "Labor Day", "1992-05-02": "Labor Day", - "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", "1992-12-25": "Catholic Christmas", "1993-01-01": "New Year's Day", "1993-01-02": "New Year's Day", "1993-01-07": "Orthodox Christmas", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-12": "Catholic Easter Monday", "1993-04-16": "Orthodox Good Friday", "1993-05-01": "Labor Day", "1993-05-02": "Labor Day", - "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", "1993-12-25": "Catholic Christmas", "1994-01-01": "New Year's Day", "1994-01-02": "New Year's Day", "1994-01-07": "Orthodox Christmas", - "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-04": "Catholic Easter Monday", "1994-04-29": "Orthodox Good Friday", "1994-05-01": "Labor Day", "1994-05-02": "Labor Day", - "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", "1994-12-25": "Catholic Christmas", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day", "1995-01-07": "Orthodox Christmas", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-04-17": "Catholic Easter Monday", "1995-04-21": "Orthodox Good Friday", "1995-05-01": "Labor Day", "1995-05-02": "Labor Day", - "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", "1995-12-25": "Catholic Christmas", "1996-01-01": "New Year's Day", "1996-01-02": "New Year's Day", "1996-01-07": "Orthodox Christmas", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-04-08": "Catholic Easter Monday", "1996-04-12": "Orthodox Good Friday", - "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", "1996-05-01": "Labor Day", "1996-05-02": "Labor Day", "1996-12-25": "Catholic Christmas", "1997-01-01": "New Year's Day", "1997-01-02": "New Year's Day", "1997-01-07": "Orthodox Christmas", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-31": "Catholic Easter Monday", - "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", "1997-04-25": "Orthodox Good Friday", "1997-05-01": "Labor Day", "1997-05-02": "Labor Day", @@ -478,8 +478,8 @@ "1998-01-01": "New Year's Day", "1998-01-02": "New Year's Day", "1998-01-07": "Orthodox Christmas", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-04-13": "Catholic Easter Monday", "1998-04-17": "Orthodox Good Friday", "1998-05-01": "Labor Day", @@ -488,8 +488,8 @@ "1999-01-01": "New Year's Day", "1999-01-02": "New Year's Day", "1999-01-07": "Orthodox Christmas", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-05": "Catholic Easter Monday", "1999-04-09": "Orthodox Good Friday", "1999-05-01": "Labor Day", @@ -498,14 +498,14 @@ "2000-01-01": "New Year's Day", "2000-01-02": "New Year's Day", "2000-01-07": "Orthodox Christmas", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-04-24": "Catholic Easter Monday", "2000-04-28": "Orthodox Good Friday", "2000-05-01": "Labor Day", "2000-05-02": "Labor Day", "2000-12-25": "Catholic Christmas", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-02": "New Year's Day", "2001-01-07": "Orthodox Christmas", @@ -740,67 +740,67 @@ "2024-01-02": "New Year's Day", "2024-01-07": "Orthodox Christmas", "2024-04-01": "Catholic Easter Monday", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "Labor Day", "2024-05-02": "Labor Day", "2024-05-03": "Orthodox Good Friday", - "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", "2024-12-25": "Catholic Christmas", "2025-01-01": "New Year's Day", "2025-01-02": "New Year's Day", "2025-01-07": "Orthodox Christmas", - "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", "2025-04-18": "Orthodox Good Friday", "2025-04-21": "Catholic Easter Monday", "2025-05-01": "Labor Day", "2025-05-02": "Labor Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-12-25": "Catholic Christmas", "2026-01-01": "New Year's Day", "2026-01-02": "New Year's Day", "2026-01-07": "Orthodox Christmas", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-06": "Catholic Easter Monday", "2026-04-10": "Orthodox Good Friday", "2026-05-01": "Labor Day", "2026-05-02": "Labor Day", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-12-25": "Catholic Christmas", "2027-01-01": "New Year's Day", "2027-01-02": "New Year's Day", "2027-01-07": "Orthodox Christmas", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-29": "Catholic Easter Monday", "2027-04-30": "Orthodox Good Friday", "2027-05-01": "Labor Day", "2027-05-02": "Labor Day", - "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", "2027-12-25": "Catholic Christmas", "2028-01-01": "New Year's Day", "2028-01-02": "New Year's Day", "2028-01-07": "Orthodox Christmas", - "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-04-14": "Orthodox Good Friday", "2028-04-17": "Catholic Easter Monday", "2028-05-01": "Labor Day", "2028-05-02": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", "2028-12-25": "Catholic Christmas", "2029-01-01": "New Year's Day", "2029-01-02": "New Year's Day", "2029-01-07": "Orthodox Christmas", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-04-02": "Catholic Easter Monday", "2029-04-06": "Orthodox Good Friday", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", "2029-05-02": "Labor Day", "2029-12-25": "Catholic Christmas", "2030-01-01": "New Year's Day", "2030-01-02": "New Year's Day", "2030-01-07": "Orthodox Christmas", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-22": "Catholic Easter Monday", "2030-04-26": "Orthodox Good Friday", "2030-05-01": "Labor Day", @@ -809,8 +809,8 @@ "2031-01-01": "New Year's Day", "2031-01-02": "New Year's Day", "2031-01-07": "Orthodox Christmas", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-11": "Orthodox Good Friday", "2031-04-14": "Catholic Easter Monday", "2031-05-01": "Labor Day", @@ -819,84 +819,84 @@ "2032-01-01": "New Year's Day", "2032-01-02": "New Year's Day", "2032-01-07": "Orthodox Christmas", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-29": "Catholic Easter Monday", "2032-04-30": "Orthodox Good Friday", "2032-05-01": "Labor Day", "2032-05-02": "Labor Day", "2032-12-25": "Catholic Christmas", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated); New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", "2033-01-07": "Orthodox Christmas", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-18": "Catholic Easter Monday", "2033-04-22": "Orthodox Good Friday", "2033-05-01": "Labor Day", "2033-05-02": "Labor Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Catholic Christmas", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", "2034-01-07": "Orthodox Christmas", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-04-07": "Orthodox Good Friday", "2034-04-10": "Catholic Easter Monday", "2034-05-01": "Labor Day", "2034-05-02": "Labor Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-25": "Catholic Christmas", "2035-01-01": "New Year's Day", "2035-01-02": "New Year's Day", "2035-01-07": "Orthodox Christmas", - "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", "2035-03-26": "Catholic Easter Monday", "2035-04-27": "Orthodox Good Friday", "2035-05-01": "Labor Day", "2035-05-02": "Labor Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-25": "Catholic Christmas", "2036-01-01": "New Year's Day", "2036-01-02": "New Year's Day", "2036-01-07": "Orthodox Christmas", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-04-14": "Catholic Easter Monday", "2036-04-18": "Orthodox Good Friday", "2036-05-01": "Labor Day", "2036-05-02": "Labor Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-12-25": "Catholic Christmas", "2037-01-01": "New Year's Day", "2037-01-02": "New Year's Day", "2037-01-07": "Orthodox Christmas", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-04-03": "Orthodox Good Friday", "2037-04-06": "Catholic Easter Monday", "2037-05-01": "Labor Day", "2037-05-02": "Labor Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", "2037-12-25": "Catholic Christmas", "2038-01-01": "New Year's Day", "2038-01-02": "New Year's Day", "2038-01-07": "Orthodox Christmas", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-04-23": "Orthodox Good Friday", "2038-04-26": "Catholic Easter Monday", "2038-05-01": "Labor Day", "2038-05-02": "Labor Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-25": "Catholic Christmas", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-01-07": "Orthodox Christmas", "2039-04-11": "Catholic Easter Monday", "2039-04-15": "Orthodox Good Friday", "2039-05-01": "Labor Day", "2039-05-02": "Labor Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-12-25": "Catholic Christmas", - "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", "2040-01-07": "Orthodox Christmas", @@ -904,8 +904,8 @@ "2040-05-01": "Labor Day", "2040-05-02": "Labor Day", "2040-05-04": "Orthodox Good Friday", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Catholic Christmas", "2041-01-01": "New Year's Day", "2041-01-02": "New Year's Day", @@ -914,8 +914,8 @@ "2041-04-22": "Catholic Easter Monday", "2041-05-01": "Labor Day", "2041-05-02": "Labor Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-25": "Catholic Christmas", "2042-01-01": "New Year's Day", "2042-01-02": "New Year's Day", @@ -924,8 +924,8 @@ "2042-04-11": "Orthodox Good Friday", "2042-05-01": "Labor Day", "2042-05-02": "Labor Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", "2042-12-25": "Catholic Christmas", "2043-01-01": "New Year's Day", "2043-01-02": "New Year's Day", @@ -933,8 +933,8 @@ "2043-03-30": "Catholic Easter Monday", "2043-05-01": "Labor Day; Orthodox Good Friday", "2043-05-02": "Labor Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-25": "Catholic Christmas", "2044-01-01": "New Year's Day", "2044-01-02": "New Year's Day", @@ -943,8 +943,8 @@ "2044-04-22": "Orthodox Good Friday", "2044-05-01": "Labor Day", "2044-05-02": "Labor Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-12-25": "Catholic Christmas", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day", @@ -953,8 +953,8 @@ "2045-04-10": "Catholic Easter Monday", "2045-05-01": "Labor Day", "2045-05-02": "Labor Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-12-25": "Catholic Christmas", "2046-01-01": "New Year's Day", "2046-01-02": "New Year's Day", @@ -963,8 +963,8 @@ "2046-04-27": "Orthodox Good Friday", "2046-05-01": "Labor Day", "2046-05-02": "Labor Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-12-25": "Catholic Christmas", "2047-01-01": "New Year's Day", "2047-01-02": "New Year's Day", @@ -973,8 +973,8 @@ "2047-04-19": "Orthodox Good Friday", "2047-05-01": "Labor Day", "2047-05-02": "Labor Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-12-25": "Catholic Christmas", "2048-01-01": "New Year's Day", "2048-01-02": "New Year's Day", @@ -983,8 +983,8 @@ "2048-04-06": "Catholic Easter Monday", "2048-05-01": "Labor Day", "2048-05-02": "Labor Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-12-25": "Catholic Christmas", "2049-01-01": "New Year's Day", "2049-01-02": "New Year's Day", @@ -993,8 +993,8 @@ "2049-04-23": "Orthodox Good Friday", "2049-05-01": "Labor Day", "2049-05-02": "Labor Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-12-25": "Catholic Christmas", "2050-01-01": "New Year's Day", "2050-01-02": "New Year's Day", @@ -1003,7 +1003,7 @@ "2050-04-15": "Orthodox Good Friday", "2050-05-01": "Labor Day", "2050-05-02": "Labor Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", "2050-12-25": "Catholic Christmas" } diff --git a/snapshots/countries/BA_SRP.json b/snapshots/countries/BA_SRP.json index c6dcefc08..6d931880f 100644 --- a/snapshots/countries/BA_SRP.json +++ b/snapshots/countries/BA_SRP.json @@ -10,10 +10,10 @@ "1950-05-01": "Labor Day", "1950-05-02": "Labor Day", "1950-05-09": "Victory Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-11-21": "Dayton Agreement Day", "1950-12-24": "Catholic Christmas Eve", "1950-12-25": "Catholic Christmas", @@ -31,10 +31,10 @@ "1951-05-01": "Labor Day", "1951-05-02": "Labor Day", "1951-05-09": "Victory Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-07-07": "Eid al-Fitr* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Eid al-Fitr (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-11-21": "Dayton Agreement Day", "1951-12-24": "Catholic Christmas Eve", "1951-12-25": "Catholic Christmas", @@ -52,10 +52,10 @@ "1952-05-01": "Labor Day", "1952-05-02": "Labor Day", "1952-05-09": "Victory Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-06-24": "Eid al-Fitr* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", "1952-11-21": "Dayton Agreement Day", "1952-12-24": "Catholic Christmas Eve", "1952-12-25": "Catholic Christmas", @@ -70,10 +70,10 @@ "1953-05-01": "Labor Day", "1953-05-02": "Labor Day", "1953-05-09": "Victory Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", "1953-11-21": "Dayton Agreement Day", "1953-12-24": "Catholic Christmas Eve", "1953-12-25": "Catholic Christmas", @@ -92,10 +92,10 @@ "1954-05-02": "Labor Day", "1954-05-03": "Labor Day (Observed)", "1954-05-09": "Victory Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-11-21": "Dayton Agreement Day", "1954-12-24": "Catholic Christmas Eve", "1954-12-25": "Catholic Christmas", @@ -114,10 +114,10 @@ "1955-05-01": "Labor Day", "1955-05-02": "Labor Day", "1955-05-09": "Victory Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-11-21": "Dayton Agreement Day", "1955-12-24": "Catholic Christmas Eve", "1955-12-25": "Catholic Christmas", @@ -135,10 +135,10 @@ "1956-05-06": "Orthodox Easter", "1956-05-07": "Orthodox Easter Monday", "1956-05-09": "Victory Day", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-11-21": "Dayton Agreement Day", "1956-12-24": "Catholic Christmas Eve", "1956-12-25": "Catholic Christmas", @@ -150,11 +150,11 @@ "1957-04-19": "Catholic Good Friday; Orthodox Good Friday", "1957-04-21": "Catholic Easter; Orthodox Easter", "1957-04-22": "Catholic Easter Monday; Orthodox Easter Monday", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", - "1957-05-02": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", + "1957-05-02": "Eid al-Fitr (estimated); Labor Day", "1957-05-09": "Victory Day", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", "1957-11-21": "Dayton Agreement Day", "1957-12-24": "Catholic Christmas Eve", "1957-12-25": "Catholic Christmas", @@ -169,13 +169,13 @@ "1958-04-11": "Orthodox Good Friday", "1958-04-13": "Orthodox Easter", "1958-04-14": "Orthodox Easter Monday", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (estimated)", "1958-05-01": "Labor Day", "1958-05-02": "Labor Day", "1958-05-09": "Victory Day", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", "1958-11-21": "Dayton Agreement Day", "1958-12-24": "Catholic Christmas Eve", "1958-12-25": "Catholic Christmas", @@ -187,15 +187,15 @@ "1959-03-27": "Catholic Good Friday", "1959-03-29": "Catholic Easter", "1959-03-30": "Catholic Easter Monday", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (estimated)", "1959-05-01": "Labor Day; Orthodox Good Friday", "1959-05-02": "Labor Day", "1959-05-03": "Orthodox Easter", "1959-05-04": "Orthodox Easter Monday", "1959-05-09": "Victory Day", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", "1959-11-21": "Dayton Agreement Day", "1959-12-24": "Catholic Christmas Eve", "1959-12-25": "Catholic Christmas", @@ -204,16 +204,16 @@ "1960-01-06": "Orthodox Christmas Eve", "1960-01-07": "Orthodox Christmas", "1960-01-14": "Orthodox New Year", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (estimated)", "1960-04-15": "Catholic Good Friday; Orthodox Good Friday", "1960-04-17": "Catholic Easter; Orthodox Easter", "1960-04-18": "Catholic Easter Monday; Orthodox Easter Monday", "1960-05-01": "Labor Day", "1960-05-02": "Labor Day", "1960-05-09": "Victory Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated)", "1960-11-21": "Dayton Agreement Day", "1960-12-24": "Catholic Christmas Eve", "1960-12-25": "Catholic Christmas", @@ -222,8 +222,8 @@ "1961-01-06": "Orthodox Christmas Eve", "1961-01-07": "Orthodox Christmas", "1961-01-14": "Orthodox New Year", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (estimated)", "1961-03-31": "Catholic Good Friday", "1961-04-02": "Catholic Easter", "1961-04-03": "Catholic Easter Monday", @@ -233,8 +233,8 @@ "1961-05-01": "Labor Day", "1961-05-02": "Labor Day", "1961-05-09": "Victory Day", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", "1961-11-21": "Dayton Agreement Day", "1961-12-24": "Catholic Christmas Eve", "1961-12-25": "Catholic Christmas", @@ -243,8 +243,8 @@ "1962-01-06": "Orthodox Christmas Eve", "1962-01-07": "Orthodox Christmas", "1962-01-14": "Orthodox New Year", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (estimated)", "1962-04-20": "Catholic Good Friday", "1962-04-22": "Catholic Easter", "1962-04-23": "Catholic Easter Monday", @@ -254,8 +254,8 @@ "1962-05-01": "Labor Day", "1962-05-02": "Labor Day", "1962-05-09": "Victory Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-11-21": "Dayton Agreement Day", "1962-12-24": "Catholic Christmas Eve", "1962-12-25": "Catholic Christmas", @@ -264,15 +264,15 @@ "1963-01-06": "Orthodox Christmas Eve", "1963-01-07": "Orthodox Christmas", "1963-01-14": "Orthodox New Year", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (estimated)", "1963-04-12": "Catholic Good Friday; Orthodox Good Friday", "1963-04-14": "Catholic Easter; Orthodox Easter", "1963-04-15": "Catholic Easter Monday; Orthodox Easter Monday", "1963-05-01": "Labor Day", "1963-05-02": "Labor Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", "1963-05-09": "Victory Day", "1963-11-21": "Dayton Agreement Day", "1963-12-24": "Catholic Christmas Eve", @@ -282,13 +282,13 @@ "1964-01-06": "Orthodox Christmas Eve", "1964-01-07": "Orthodox Christmas", "1964-01-14": "Orthodox New Year", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (estimated)", "1964-03-27": "Catholic Good Friday", "1964-03-29": "Catholic Easter", "1964-03-30": "Catholic Easter Monday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labor Day; Orthodox Good Friday", "1964-05-02": "Labor Day", "1964-05-03": "Orthodox Easter", @@ -302,10 +302,10 @@ "1965-01-06": "Orthodox Christmas Eve", "1965-01-07": "Orthodox Christmas", "1965-01-14": "Orthodox New Year", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-02-03": "Eid al-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-02-03": "Eid al-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Catholic Good Friday", "1965-04-18": "Catholic Easter", "1965-04-19": "Catholic Easter Monday", @@ -325,10 +325,10 @@ "1966-01-06": "Orthodox Christmas Eve", "1966-01-07": "Orthodox Christmas", "1966-01-14": "Orthodox New Year", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-08": "Catholic Good Friday; Orthodox Good Friday", "1966-04-10": "Catholic Easter; Orthodox Easter", "1966-04-11": "Catholic Easter Monday; Orthodox Easter Monday", @@ -342,11 +342,11 @@ "1967-01-02": "New Year's Day", "1967-01-06": "Orthodox Christmas Eve", "1967-01-07": "Orthodox Christmas", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (estimated)", "1967-01-14": "Orthodox New Year", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Catholic Good Friday", "1967-03-26": "Catholic Easter", "1967-03-27": "Catholic Easter Monday", @@ -358,13 +358,13 @@ "1967-11-21": "Dayton Agreement Day", "1967-12-24": "Catholic Christmas Eve", "1967-12-25": "Catholic Christmas", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (estimated); New Year's Day", "1968-01-06": "Orthodox Christmas Eve", "1968-01-07": "Orthodox Christmas", "1968-01-14": "Orthodox New Year", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-12": "Catholic Good Friday", "1968-04-14": "Catholic Easter", "1968-04-15": "Catholic Easter Monday", @@ -375,8 +375,8 @@ "1968-05-02": "Labor Day", "1968-05-09": "Victory Day", "1968-11-21": "Dayton Agreement Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (estimated)", "1968-12-24": "Catholic Christmas Eve", "1968-12-25": "Catholic Christmas", "1969-01-01": "New Year's Day", @@ -384,8 +384,8 @@ "1969-01-06": "Orthodox Christmas Eve", "1969-01-07": "Orthodox Christmas", "1969-01-14": "Orthodox New Year", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", "1969-04-04": "Catholic Good Friday", "1969-04-06": "Catholic Easter", "1969-04-07": "Catholic Easter Monday", @@ -396,8 +396,8 @@ "1969-05-02": "Labor Day", "1969-05-09": "Victory Day", "1969-11-21": "Dayton Agreement Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (estimated)", "1969-12-24": "Catholic Christmas Eve", "1969-12-25": "Catholic Christmas", "1970-01-01": "New Year's Day", @@ -405,8 +405,8 @@ "1970-01-06": "Orthodox Christmas Eve", "1970-01-07": "Orthodox Christmas", "1970-01-14": "Orthodox New Year", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", "1970-03-27": "Catholic Good Friday", "1970-03-29": "Catholic Easter", "1970-03-30": "Catholic Easter Monday", @@ -417,8 +417,8 @@ "1970-05-02": "Labor Day", "1970-05-09": "Victory Day", "1970-11-21": "Dayton Agreement Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (estimated)", "1970-12-24": "Catholic Christmas Eve", "1970-12-25": "Catholic Christmas", "1971-01-01": "New Year's Day", @@ -426,8 +426,8 @@ "1971-01-06": "Orthodox Christmas Eve", "1971-01-07": "Orthodox Christmas", "1971-01-14": "Orthodox New Year", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", "1971-04-09": "Catholic Good Friday", "1971-04-11": "Catholic Easter", "1971-04-12": "Catholic Easter Monday", @@ -438,8 +438,8 @@ "1971-05-02": "Labor Day", "1971-05-03": "Labor Day (Observed)", "1971-05-09": "Victory Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (estimated)", "1971-11-21": "Dayton Agreement Day", "1971-12-24": "Catholic Christmas Eve", "1971-12-25": "Catholic Christmas", @@ -449,8 +449,8 @@ "1972-01-06": "Orthodox Christmas Eve", "1972-01-07": "Orthodox Christmas", "1972-01-14": "Orthodox New Year", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha (estimated)", "1972-03-31": "Catholic Good Friday", "1972-04-02": "Catholic Easter", "1972-04-03": "Catholic Easter Monday", @@ -460,8 +460,8 @@ "1972-05-01": "Labor Day", "1972-05-02": "Labor Day", "1972-05-09": "Victory Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (estimated)", "1972-11-21": "Dayton Agreement Day", "1972-12-24": "Catholic Christmas Eve", "1972-12-25": "Catholic Christmas", @@ -469,8 +469,8 @@ "1973-01-02": "New Year's Day", "1973-01-06": "Orthodox Christmas Eve", "1973-01-07": "Orthodox Christmas", - "1973-01-14": "Eid al-Adha* (*estimated); Orthodox New Year", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Orthodox New Year", + "1973-01-15": "Eid al-Adha (estimated)", "1973-04-20": "Catholic Good Friday", "1973-04-22": "Catholic Easter", "1973-04-23": "Catholic Easter Monday", @@ -480,15 +480,15 @@ "1973-05-01": "Labor Day", "1973-05-02": "Labor Day", "1973-05-09": "Victory Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (estimated)", "1973-11-21": "Dayton Agreement Day", "1973-12-24": "Catholic Christmas Eve", "1973-12-25": "Catholic Christmas", "1974-01-01": "New Year's Day", "1974-01-02": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-06": "Orthodox Christmas Eve", "1974-01-07": "Orthodox Christmas", "1974-01-14": "Orthodox New Year", @@ -498,11 +498,11 @@ "1974-05-01": "Labor Day", "1974-05-02": "Labor Day", "1974-05-09": "Victory Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (estimated)", "1974-11-21": "Dayton Agreement Day", - "1974-12-24": "Catholic Christmas Eve; Eid al-Adha* (*estimated)", - "1974-12-25": "Catholic Christmas; Eid al-Adha* (*estimated)", + "1974-12-24": "Catholic Christmas Eve; Eid al-Adha (estimated)", + "1974-12-25": "Catholic Christmas; Eid al-Adha (estimated)", "1975-01-01": "New Year's Day", "1975-01-02": "New Year's Day", "1975-01-06": "Orthodox Christmas Eve", @@ -516,11 +516,11 @@ "1975-05-04": "Orthodox Easter", "1975-05-05": "Orthodox Easter Monday", "1975-05-09": "Victory Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (estimated)", "1975-11-21": "Dayton Agreement Day", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-24": "Catholic Christmas Eve", "1975-12-25": "Catholic Christmas", "1976-01-01": "New Year's Day", @@ -538,11 +538,11 @@ "1976-05-02": "Labor Day", "1976-05-03": "Labor Day (Observed)", "1976-05-09": "Victory Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (estimated)", "1976-11-21": "Dayton Agreement Day", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-24": "Catholic Christmas Eve", "1976-12-25": "Catholic Christmas", "1977-01-01": "New Year's Day", @@ -557,10 +557,10 @@ "1977-05-01": "Labor Day", "1977-05-02": "Labor Day", "1977-05-09": "Victory Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr* (*estimated)", - "1977-11-21": "Dayton Agreement Day; Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (estimated)", + "1977-11-21": "Dayton Agreement Day; Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", "1977-12-24": "Catholic Christmas Eve", "1977-12-25": "Catholic Christmas", "1978-01-01": "New Year's Day", @@ -576,10 +576,10 @@ "1978-05-01": "Labor Day; Orthodox Easter Monday", "1978-05-02": "Labor Day", "1978-05-09": "Victory Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", "1978-11-21": "Dayton Agreement Day", "1978-12-24": "Catholic Christmas Eve", "1978-12-25": "Catholic Christmas", @@ -597,10 +597,10 @@ "1979-05-01": "Labor Day", "1979-05-02": "Labor Day", "1979-05-09": "Victory Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", "1979-11-21": "Dayton Agreement Day", "1979-12-24": "Catholic Christmas Eve", "1979-12-25": "Catholic Christmas", @@ -615,10 +615,10 @@ "1980-05-01": "Labor Day", "1980-05-02": "Labor Day", "1980-05-09": "Victory Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-11-21": "Dayton Agreement Day", "1980-12-24": "Catholic Christmas Eve", "1980-12-25": "Catholic Christmas", @@ -636,10 +636,10 @@ "1981-05-01": "Labor Day", "1981-05-02": "Labor Day", "1981-05-09": "Victory Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-11-21": "Dayton Agreement Day", "1981-12-24": "Catholic Christmas Eve", "1981-12-25": "Catholic Christmas", @@ -658,10 +658,10 @@ "1982-05-02": "Labor Day", "1982-05-03": "Labor Day (Observed)", "1982-05-09": "Victory Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-11-21": "Dayton Agreement Day", "1982-12-24": "Catholic Christmas Eve", "1982-12-25": "Catholic Christmas", @@ -679,10 +679,10 @@ "1983-05-06": "Orthodox Good Friday", "1983-05-08": "Orthodox Easter", "1983-05-09": "Orthodox Easter Monday; Victory Day", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-11-21": "Dayton Agreement Day", "1983-12-24": "Catholic Christmas Eve", "1983-12-25": "Catholic Christmas", @@ -697,10 +697,10 @@ "1984-05-01": "Labor Day", "1984-05-02": "Labor Day", "1984-05-09": "Victory Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-11-21": "Dayton Agreement Day", "1984-12-24": "Catholic Christmas Eve", "1984-12-25": "Catholic Christmas", @@ -718,10 +718,10 @@ "1985-05-01": "Labor Day", "1985-05-02": "Labor Day", "1985-05-09": "Victory Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", "1985-11-21": "Dayton Agreement Day", "1985-12-24": "Catholic Christmas Eve", "1985-12-25": "Catholic Christmas", @@ -738,10 +738,10 @@ "1986-05-04": "Orthodox Easter", "1986-05-05": "Orthodox Easter Monday", "1986-05-09": "Victory Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (estimated)", "1986-11-21": "Dayton Agreement Day", "1986-12-24": "Catholic Christmas Eve", "1986-12-25": "Catholic Christmas", @@ -756,10 +756,10 @@ "1987-05-01": "Labor Day", "1987-05-02": "Labor Day", "1987-05-09": "Victory Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-11-21": "Dayton Agreement Day", "1987-12-24": "Catholic Christmas Eve", "1987-12-25": "Catholic Christmas", @@ -777,10 +777,10 @@ "1988-05-01": "Labor Day", "1988-05-02": "Labor Day", "1988-05-09": "Victory Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-11-21": "Dayton Agreement Day", "1988-12-24": "Catholic Christmas Eve", "1988-12-25": "Catholic Christmas", @@ -796,11 +796,11 @@ "1989-04-30": "Orthodox Easter", "1989-05-01": "Labor Day; Orthodox Easter Monday", "1989-05-02": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (estimated)", "1989-05-09": "Victory Day", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", "1989-11-21": "Dayton Agreement Day", "1989-12-24": "Catholic Christmas Eve", "1989-12-25": "Catholic Christmas", @@ -812,13 +812,13 @@ "1990-04-13": "Catholic Good Friday; Orthodox Good Friday", "1990-04-15": "Catholic Easter; Orthodox Easter", "1990-04-16": "Catholic Easter Monday; Orthodox Easter Monday", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (estimated)", "1990-05-01": "Labor Day", "1990-05-02": "Labor Day", "1990-05-09": "Victory Day", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", "1990-11-21": "Dayton Agreement Day", "1990-12-24": "Catholic Christmas Eve", "1990-12-25": "Catholic Christmas", @@ -833,13 +833,13 @@ "1991-04-05": "Orthodox Good Friday", "1991-04-07": "Orthodox Easter", "1991-04-08": "Orthodox Easter Monday", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (estimated)", "1991-05-01": "Labor Day", "1991-05-02": "Labor Day", "1991-05-09": "Victory Day", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", "1991-11-21": "Dayton Agreement Day", "1991-12-24": "Catholic Christmas Eve", "1991-12-25": "Catholic Christmas", @@ -848,8 +848,8 @@ "1992-01-06": "Orthodox Christmas Eve", "1992-01-07": "Orthodox Christmas", "1992-01-14": "Orthodox New Year", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (estimated)", "1992-04-17": "Catholic Good Friday", "1992-04-19": "Catholic Easter", "1992-04-20": "Catholic Easter Monday", @@ -859,8 +859,8 @@ "1992-05-01": "Labor Day", "1992-05-02": "Labor Day", "1992-05-09": "Victory Day", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", "1992-11-21": "Dayton Agreement Day", "1992-12-24": "Catholic Christmas Eve", "1992-12-25": "Catholic Christmas", @@ -869,8 +869,8 @@ "1993-01-06": "Orthodox Christmas Eve", "1993-01-07": "Orthodox Christmas", "1993-01-14": "Orthodox New Year", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (estimated)", "1993-04-09": "Catholic Good Friday", "1993-04-11": "Catholic Easter", "1993-04-12": "Catholic Easter Monday", @@ -881,8 +881,8 @@ "1993-05-02": "Labor Day", "1993-05-03": "Labor Day (Observed)", "1993-05-09": "Victory Day", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", "1993-11-21": "Dayton Agreement Day", "1993-12-24": "Catholic Christmas Eve", "1993-12-25": "Catholic Christmas", @@ -892,8 +892,8 @@ "1994-01-06": "Orthodox Christmas Eve", "1994-01-07": "Orthodox Christmas", "1994-01-14": "Orthodox New Year", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (estimated)", "1994-04-01": "Catholic Good Friday", "1994-04-03": "Catholic Easter", "1994-04-04": "Catholic Easter Monday", @@ -901,8 +901,8 @@ "1994-05-01": "Labor Day; Orthodox Easter", "1994-05-02": "Labor Day; Orthodox Easter Monday", "1994-05-09": "Victory Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-11-21": "Dayton Agreement Day", "1994-12-24": "Catholic Christmas Eve", "1994-12-25": "Catholic Christmas", @@ -911,8 +911,8 @@ "1995-01-06": "Orthodox Christmas Eve", "1995-01-07": "Orthodox Christmas", "1995-01-14": "Orthodox New Year", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (estimated)", "1995-04-14": "Catholic Good Friday", "1995-04-16": "Catholic Easter", "1995-04-17": "Catholic Easter Monday", @@ -921,8 +921,8 @@ "1995-04-24": "Orthodox Easter Monday", "1995-05-01": "Labor Day", "1995-05-02": "Labor Day", - "1995-05-09": "Eid al-Adha* (*estimated); Victory Day", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated); Victory Day", + "1995-05-10": "Eid al-Adha (estimated)", "1995-11-21": "Dayton Agreement Day", "1995-12-24": "Catholic Christmas Eve", "1995-12-25": "Catholic Christmas", @@ -931,16 +931,16 @@ "1996-01-06": "Orthodox Christmas Eve", "1996-01-07": "Orthodox Christmas", "1996-01-14": "Orthodox New Year", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr (estimated)", "1996-04-05": "Catholic Good Friday", "1996-04-07": "Catholic Easter", "1996-04-08": "Catholic Easter Monday", "1996-04-12": "Orthodox Good Friday", "1996-04-14": "Orthodox Easter", "1996-04-15": "Orthodox Easter Monday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labor Day", "1996-05-02": "Labor Day", "1996-05-09": "Victory Day", @@ -952,13 +952,13 @@ "1997-01-06": "Orthodox Christmas Eve", "1997-01-07": "Orthodox Christmas", "1997-01-14": "Orthodox New Year", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (estimated)", "1997-03-28": "Catholic Good Friday", "1997-03-30": "Catholic Easter", "1997-03-31": "Catholic Easter Monday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-04-25": "Orthodox Good Friday", "1997-04-27": "Orthodox Easter", "1997-04-28": "Orthodox Easter Monday", @@ -973,10 +973,10 @@ "1998-01-06": "Orthodox Christmas Eve", "1998-01-07": "Orthodox Christmas", "1998-01-14": "Orthodox New Year", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Catholic Good Friday", "1998-04-12": "Catholic Easter", "1998-04-13": "Catholic Easter Monday", @@ -994,10 +994,10 @@ "1999-01-06": "Orthodox Christmas Eve", "1999-01-07": "Orthodox Christmas", "1999-01-14": "Orthodox New Year", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated)", "1999-04-02": "Catholic Good Friday", "1999-04-04": "Catholic Easter", "1999-04-05": "Catholic Easter Monday", @@ -1016,11 +1016,11 @@ "2000-01-03": "New Year's Day (Observed)", "2000-01-06": "Orthodox Christmas Eve", "2000-01-07": "Orthodox Christmas", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (estimated)", "2000-01-14": "Orthodox New Year", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-21": "Catholic Good Friday", "2000-04-23": "Catholic Easter", "2000-04-24": "Catholic Easter Monday", @@ -1032,8 +1032,8 @@ "2000-11-21": "Dayton Agreement Day", "2000-12-24": "Catholic Christmas Eve", "2000-12-25": "Catholic Christmas", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-02": "New Year's Day", "2001-01-06": "Orthodox Christmas Eve", @@ -1504,16 +1504,16 @@ "2024-03-29": "Catholic Good Friday", "2024-03-31": "Catholic Easter", "2024-04-01": "Catholic Easter Monday", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr (estimated)", "2024-05-01": "Labor Day", "2024-05-02": "Labor Day", "2024-05-03": "Orthodox Good Friday", "2024-05-05": "Orthodox Easter", "2024-05-06": "Orthodox Easter Monday", "2024-05-09": "Victory Day", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", "2024-11-21": "Dayton Agreement Day", "2024-12-24": "Catholic Christmas Eve", "2024-12-25": "Catholic Christmas", @@ -1522,16 +1522,16 @@ "2025-01-06": "Orthodox Christmas Eve", "2025-01-07": "Orthodox Christmas", "2025-01-14": "Orthodox New Year", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated)", "2025-04-18": "Catholic Good Friday; Orthodox Good Friday", "2025-04-20": "Catholic Easter; Orthodox Easter", "2025-04-21": "Catholic Easter Monday; Orthodox Easter Monday", "2025-05-01": "Labor Day", "2025-05-02": "Labor Day", "2025-05-09": "Victory Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-11-21": "Dayton Agreement Day", "2025-12-24": "Catholic Christmas Eve", "2025-12-25": "Catholic Christmas", @@ -1540,8 +1540,8 @@ "2026-01-06": "Orthodox Christmas Eve", "2026-01-07": "Orthodox Christmas", "2026-01-14": "Orthodox New Year", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (estimated)", "2026-04-03": "Catholic Good Friday", "2026-04-05": "Catholic Easter", "2026-04-06": "Catholic Easter Monday", @@ -1551,8 +1551,8 @@ "2026-05-01": "Labor Day", "2026-05-02": "Labor Day", "2026-05-09": "Victory Day", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", "2026-11-21": "Dayton Agreement Day", "2026-12-24": "Catholic Christmas Eve", "2026-12-25": "Catholic Christmas", @@ -1561,8 +1561,8 @@ "2027-01-06": "Orthodox Christmas Eve", "2027-01-07": "Orthodox Christmas", "2027-01-14": "Orthodox New Year", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (estimated)", "2027-03-26": "Catholic Good Friday", "2027-03-28": "Catholic Easter", "2027-03-29": "Catholic Easter Monday", @@ -1571,8 +1571,8 @@ "2027-05-02": "Labor Day; Orthodox Easter", "2027-05-03": "Labor Day (Observed); Orthodox Easter Monday", "2027-05-09": "Victory Day", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated)", "2027-11-21": "Dayton Agreement Day", "2027-12-24": "Catholic Christmas Eve", "2027-12-25": "Catholic Christmas", @@ -1582,15 +1582,15 @@ "2028-01-06": "Orthodox Christmas Eve", "2028-01-07": "Orthodox Christmas", "2028-01-14": "Orthodox New Year", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (estimated)", "2028-04-14": "Catholic Good Friday; Orthodox Good Friday", "2028-04-16": "Catholic Easter; Orthodox Easter", "2028-04-17": "Catholic Easter Monday; Orthodox Easter Monday", "2028-05-01": "Labor Day", "2028-05-02": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", "2028-05-09": "Victory Day", "2028-11-21": "Dayton Agreement Day", "2028-12-24": "Catholic Christmas Eve", @@ -1600,16 +1600,16 @@ "2029-01-06": "Orthodox Christmas Eve", "2029-01-07": "Orthodox Christmas", "2029-01-14": "Orthodox New Year", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (estimated)", "2029-03-30": "Catholic Good Friday", "2029-04-01": "Catholic Easter", "2029-04-02": "Catholic Easter Monday", "2029-04-06": "Orthodox Good Friday", "2029-04-08": "Orthodox Easter", "2029-04-09": "Orthodox Easter Monday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", "2029-05-02": "Labor Day", "2029-05-09": "Victory Day", @@ -1621,10 +1621,10 @@ "2030-01-06": "Orthodox Christmas Eve", "2030-01-07": "Orthodox Christmas", "2030-01-14": "Orthodox New Year", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated)", "2030-04-19": "Catholic Good Friday", "2030-04-21": "Catholic Easter", "2030-04-22": "Catholic Easter Monday", @@ -1642,10 +1642,10 @@ "2031-01-06": "Orthodox Christmas Eve", "2031-01-07": "Orthodox Christmas", "2031-01-14": "Orthodox New Year", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-11": "Catholic Good Friday; Orthodox Good Friday", "2031-04-13": "Catholic Easter; Orthodox Easter", "2031-04-14": "Catholic Easter Monday; Orthodox Easter Monday", @@ -1659,10 +1659,10 @@ "2032-01-02": "New Year's Day", "2032-01-06": "Orthodox Christmas Eve", "2032-01-07": "Orthodox Christmas", - "2032-01-14": "Eid al-Fitr* (*estimated); Orthodox New Year", - "2032-01-15": "Eid al-Fitr* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated); Orthodox New Year", + "2032-01-15": "Eid al-Fitr (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Catholic Good Friday", "2032-03-28": "Catholic Easter", "2032-03-29": "Catholic Easter Monday", @@ -1675,13 +1675,13 @@ "2032-12-24": "Catholic Christmas Eve", "2032-12-25": "Catholic Christmas", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated); New Year's Day", - "2033-01-03": "Eid al-Fitr* (*estimated); New Year's Day (Observed)", + "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", + "2033-01-03": "Eid al-Fitr (estimated); New Year's Day (Observed)", "2033-01-06": "Orthodox Christmas Eve", "2033-01-07": "Orthodox Christmas", "2033-01-14": "Orthodox New Year", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", "2033-04-15": "Catholic Good Friday", "2033-04-17": "Catholic Easter", "2033-04-18": "Catholic Easter Monday", @@ -1692,16 +1692,16 @@ "2033-05-02": "Labor Day", "2033-05-09": "Victory Day", "2033-11-21": "Dayton Agreement Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Catholic Christmas Eve; Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Catholic Christmas Eve; Eid al-Fitr (estimated)", "2033-12-25": "Catholic Christmas", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", "2034-01-06": "Orthodox Christmas Eve", "2034-01-07": "Orthodox Christmas", "2034-01-14": "Orthodox New Year", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", "2034-04-07": "Catholic Good Friday; Orthodox Good Friday", "2034-04-09": "Catholic Easter; Orthodox Easter", "2034-04-10": "Catholic Easter Monday; Orthodox Easter Monday", @@ -1709,8 +1709,8 @@ "2034-05-02": "Labor Day", "2034-05-09": "Victory Day", "2034-11-21": "Dayton Agreement Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (estimated)", "2034-12-24": "Catholic Christmas Eve", "2034-12-25": "Catholic Christmas", "2035-01-01": "New Year's Day", @@ -1718,8 +1718,8 @@ "2035-01-06": "Orthodox Christmas Eve", "2035-01-07": "Orthodox Christmas", "2035-01-14": "Orthodox New Year", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-23": "Catholic Good Friday", "2035-03-25": "Catholic Easter", "2035-03-26": "Catholic Easter Monday", @@ -1730,8 +1730,8 @@ "2035-05-02": "Labor Day", "2035-05-09": "Victory Day", "2035-11-21": "Dayton Agreement Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (estimated)", "2035-12-24": "Catholic Christmas Eve", "2035-12-25": "Catholic Christmas", "2036-01-01": "New Year's Day", @@ -1739,8 +1739,8 @@ "2036-01-06": "Orthodox Christmas Eve", "2036-01-07": "Orthodox Christmas", "2036-01-14": "Orthodox New Year", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", "2036-04-11": "Catholic Good Friday", "2036-04-13": "Catholic Easter", "2036-04-14": "Catholic Easter Monday", @@ -1750,8 +1750,8 @@ "2036-05-01": "Labor Day", "2036-05-02": "Labor Day", "2036-05-09": "Victory Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (estimated)", "2036-11-21": "Dayton Agreement Day", "2036-12-24": "Catholic Christmas Eve", "2036-12-25": "Catholic Christmas", @@ -1760,16 +1760,16 @@ "2037-01-06": "Orthodox Christmas Eve", "2037-01-07": "Orthodox Christmas", "2037-01-14": "Orthodox New Year", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (estimated)", "2037-04-03": "Catholic Good Friday; Orthodox Good Friday", "2037-04-05": "Catholic Easter; Orthodox Easter", "2037-04-06": "Catholic Easter Monday; Orthodox Easter Monday", "2037-05-01": "Labor Day", "2037-05-02": "Labor Day", "2037-05-09": "Victory Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated)", "2037-11-21": "Dayton Agreement Day", "2037-12-24": "Catholic Christmas Eve", "2037-12-25": "Catholic Christmas", @@ -1778,8 +1778,8 @@ "2038-01-06": "Orthodox Christmas Eve", "2038-01-07": "Orthodox Christmas", "2038-01-14": "Orthodox New Year", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-04-23": "Catholic Good Friday; Orthodox Good Friday", "2038-04-25": "Catholic Easter; Orthodox Easter", "2038-04-26": "Catholic Easter Monday; Orthodox Easter Monday", @@ -1787,16 +1787,16 @@ "2038-05-02": "Labor Day", "2038-05-03": "Labor Day (Observed)", "2038-05-09": "Victory Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (estimated)", "2038-11-21": "Dayton Agreement Day", "2038-12-24": "Catholic Christmas Eve", "2038-12-25": "Catholic Christmas", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", "2039-01-03": "New Year's Day (Observed)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated); Orthodox Christmas Eve", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated); Orthodox Christmas Eve", "2039-01-07": "Orthodox Christmas", "2039-01-14": "Orthodox New Year", "2039-04-08": "Catholic Good Friday", @@ -1808,13 +1808,13 @@ "2039-05-01": "Labor Day", "2039-05-02": "Labor Day", "2039-05-09": "Victory Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (estimated)", "2039-11-21": "Dayton Agreement Day", "2039-12-24": "Catholic Christmas Eve", "2039-12-25": "Catholic Christmas", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", "2040-01-06": "Orthodox Christmas Eve", @@ -1829,11 +1829,11 @@ "2040-05-06": "Orthodox Easter", "2040-05-07": "Orthodox Easter Monday", "2040-05-09": "Victory Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated)", "2040-11-21": "Dayton Agreement Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-24": "Catholic Christmas Eve", "2040-12-25": "Catholic Christmas", "2041-01-01": "New Year's Day", @@ -1847,11 +1847,11 @@ "2041-05-01": "Labor Day", "2041-05-02": "Labor Day", "2041-05-09": "Victory Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (estimated)", "2041-11-21": "Dayton Agreement Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-24": "Catholic Christmas Eve", "2041-12-25": "Catholic Christmas", "2042-01-01": "New Year's Day", @@ -1868,11 +1868,11 @@ "2042-05-01": "Labor Day", "2042-05-02": "Labor Day", "2042-05-09": "Victory Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (estimated)", "2042-11-21": "Dayton Agreement Day", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", "2042-12-24": "Catholic Christmas Eve", "2042-12-25": "Catholic Christmas", "2043-01-01": "New Year's Day", @@ -1888,10 +1888,10 @@ "2043-05-03": "Orthodox Easter", "2043-05-04": "Orthodox Easter Monday", "2043-05-09": "Victory Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", "2043-11-21": "Dayton Agreement Day", "2043-12-24": "Catholic Christmas Eve", "2043-12-25": "Catholic Christmas", @@ -1909,10 +1909,10 @@ "2044-05-01": "Labor Day", "2044-05-02": "Labor Day", "2044-05-09": "Victory Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", "2044-11-21": "Dayton Agreement Day", "2044-12-24": "Catholic Christmas Eve", "2044-12-25": "Catholic Christmas", @@ -1927,10 +1927,10 @@ "2045-05-01": "Labor Day", "2045-05-02": "Labor Day", "2045-05-09": "Victory Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-11-21": "Dayton Agreement Day", "2045-12-24": "Catholic Christmas Eve", "2045-12-25": "Catholic Christmas", @@ -1948,10 +1948,10 @@ "2046-05-01": "Labor Day", "2046-05-02": "Labor Day", "2046-05-09": "Victory Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-11-21": "Dayton Agreement Day", "2046-12-24": "Catholic Christmas Eve", "2046-12-25": "Catholic Christmas", @@ -1969,10 +1969,10 @@ "2047-05-01": "Labor Day", "2047-05-02": "Labor Day", "2047-05-09": "Victory Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-11-21": "Dayton Agreement Day", "2047-12-24": "Catholic Christmas Eve", "2047-12-25": "Catholic Christmas", @@ -1987,10 +1987,10 @@ "2048-05-01": "Labor Day", "2048-05-02": "Labor Day", "2048-05-09": "Victory Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-11-21": "Dayton Agreement Day", "2048-12-24": "Catholic Christmas Eve", "2048-12-25": "Catholic Christmas", @@ -2009,10 +2009,10 @@ "2049-05-02": "Labor Day", "2049-05-03": "Labor Day (Observed)", "2049-05-09": "Victory Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-11-21": "Dayton Agreement Day", "2049-12-24": "Catholic Christmas Eve", "2049-12-25": "Catholic Christmas", @@ -2031,10 +2031,10 @@ "2050-05-01": "Labor Day", "2050-05-02": "Labor Day", "2050-05-09": "Victory Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", "2050-11-21": "Dayton Agreement Day", "2050-12-24": "Catholic Christmas Eve", "2050-12-25": "Catholic Christmas" diff --git a/snapshots/countries/BF_COMMON.json b/snapshots/countries/BF_COMMON.json index 187fd39c2..a20726bc6 100644 --- a/snapshots/countries/BF_COMMON.json +++ b/snapshots/countries/BF_COMMON.json @@ -2,53 +2,53 @@ "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day (Observed)", "1961-03-08": "International Women's Day", - "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", "1961-04-03": "Easter Monday", "1961-05-01": "Labour Day", "1961-05-11": "Ascension Day", - "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", "1961-08-05": "Independence Day", "1961-08-15": "Assumption Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-11-01": "All Saints' Day", "1961-12-11": "Proclamation of Independence Day", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", "1962-03-08": "International Women's Day", "1962-04-23": "Easter Monday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", "1962-05-31": "Ascension Day", "1962-08-05": "Independence Day", "1962-08-06": "Independence Day (Observed)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Assumption Day", "1962-11-01": "All Saints' Day", "1962-12-11": "Proclamation of Independence Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", "1963-03-08": "International Women's Day", "1963-04-15": "Easter Monday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", "1963-05-23": "Ascension Day", - "1963-08-02": "Mawlid* (*estimated)", + "1963-08-02": "Mawlid (estimated)", "1963-08-05": "Independence Day", "1963-08-15": "Assumption Day", "1963-11-01": "All Saints' Day", "1963-12-11": "Proclamation of Independence Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-08": "International Women's Day", "1964-03-09": "International Women's Day (Observed)", "1964-03-30": "Easter Monday", - "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-07": "Ascension Day", - "1964-07-21": "Mawlid* (*estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-05": "Independence Day", "1964-08-15": "Assumption Day", "1964-11-01": "All Saints' Day", @@ -56,13 +56,13 @@ "1964-12-11": "Proclamation of Independence Day", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", "1965-03-08": "International Women's Day", - "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-11": "Eid al-Adha (estimated)", "1965-04-19": "Easter Monday", "1965-05-01": "Labour Day", "1965-05-27": "Ascension Day", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-05": "Independence Day", "1965-08-15": "Assumption Day", "1965-08-16": "Assumption Day (Observed)", @@ -70,14 +70,14 @@ "1965-12-11": "Proclamation of Independence Day", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", "1966-03-08": "International Women's Day", - "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-04-11": "Easter Monday", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day (Observed)", "1966-05-19": "Ascension Day", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-05": "Independence Day", "1966-08-15": "Assumption Day", "1966-11-01": "All Saints' Day", @@ -88,153 +88,153 @@ "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day (Observed)", "1967-01-03": "Revolution Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", "1967-03-08": "International Women's Day", - "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-03-27": "Easter Monday", "1967-05-01": "Labour Day", "1967-05-04": "Ascension Day", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-05": "Independence Day", "1967-08-15": "Assumption Day", "1967-11-01": "All Saints' Day", "1967-12-11": "Proclamation of Independence Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-01-03": "Revolution Day", "1968-03-08": "International Women's Day", - "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", "1968-04-15": "Easter Monday", "1968-05-01": "Labour Day", "1968-05-23": "Ascension Day", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-05": "Independence Day", "1968-08-15": "Assumption Day", "1968-11-01": "All Saints' Day", "1968-12-11": "Proclamation of Independence Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-01-03": "Revolution Day", - "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", "1969-03-08": "International Women's Day", "1969-04-07": "Easter Monday", "1969-05-01": "Labour Day", "1969-05-15": "Ascension Day", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-05": "Independence Day", "1969-08-15": "Assumption Day", "1969-11-01": "All Saints' Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1969-12-11": "Proclamation of Independence Day", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-01-03": "Revolution Day", - "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", "1970-03-08": "International Women's Day", "1970-03-09": "International Women's Day (Observed)", "1970-03-30": "Easter Monday", "1970-05-01": "Labour Day", "1970-05-07": "Ascension Day", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-05": "Independence Day", "1970-08-15": "Assumption Day", "1970-11-01": "All Saints' Day", "1970-11-02": "All Saints' Day (Observed)", - "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-11": "Proclamation of Independence Day", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-03": "Revolution Day", "1971-01-04": "Revolution Day (Observed)", - "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", "1971-03-08": "International Women's Day", "1971-04-12": "Easter Monday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-20": "Ascension Day", "1971-08-05": "Independence Day", "1971-08-15": "Assumption Day", "1971-08-16": "Assumption Day (Observed)", "1971-11-01": "All Saints' Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-11": "Proclamation of Independence Day", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", "1972-01-03": "Revolution Day", - "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", "1972-03-08": "International Women's Day", "1972-04-03": "Easter Monday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-11": "Ascension Day", "1972-08-05": "Independence Day", "1972-08-15": "Assumption Day", "1972-11-01": "All Saints' Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1972-12-11": "Proclamation of Independence Day", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-03": "Revolution Day", - "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", "1973-03-08": "International Women's Day", - "1973-04-15": "Mawlid* (*estimated)", + "1973-04-15": "Mawlid (estimated)", "1973-04-23": "Easter Monday", "1973-05-01": "Labour Day", "1973-05-31": "Ascension Day", "1973-08-05": "Independence Day", "1973-08-06": "Independence Day (Observed)", "1973-08-15": "Assumption Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", "1973-11-01": "All Saints' Day", "1973-12-11": "Proclamation of Independence Day", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated); Revolution Day", + "1974-01-03": "Eid al-Adha (estimated); Revolution Day", "1974-03-08": "International Women's Day", - "1974-04-04": "Mawlid* (*estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-15": "Easter Monday", "1974-05-01": "Labour Day", "1974-05-23": "Ascension Day", "1974-08-05": "Independence Day", "1974-08-15": "Assumption Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", "1974-11-01": "All Saints' Day", "1974-12-11": "Proclamation of Independence Day", - "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-01-03": "Revolution Day", "1975-03-08": "International Women's Day", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-31": "Easter Monday", "1975-05-01": "Labour Day", "1975-05-08": "Ascension Day", "1975-08-05": "Independence Day", "1975-08-15": "Assumption Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", "1975-11-01": "All Saints' Day", "1975-12-11": "Proclamation of Independence Day", - "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-01-03": "Revolution Day", "1976-03-08": "International Women's Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-19": "Easter Monday", "1976-05-01": "Labour Day", "1976-05-27": "Ascension Day", "1976-08-05": "Independence Day", "1976-08-15": "Assumption Day", "1976-08-16": "Assumption Day (Observed)", - "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", "1976-11-01": "All Saints' Day", - "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", "1976-12-11": "Proclamation of Independence Day", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-01-03": "Revolution Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-03-08": "International Women's Day", "1977-04-11": "Easter Monday", "1977-05-01": "Labour Day", @@ -242,9 +242,9 @@ "1977-05-19": "Ascension Day", "1977-08-05": "Independence Day", "1977-08-15": "Assumption Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", "1977-11-01": "All Saints' Day", - "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", "1977-12-11": "Proclamation of Independence Day", "1977-12-12": "Proclamation of Independence Day (Observed)", "1977-12-25": "Christmas Day", @@ -252,21 +252,21 @@ "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day (Observed)", "1978-01-03": "Revolution Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-08": "International Women's Day", "1978-03-27": "Easter Monday", "1978-05-01": "Labour Day", "1978-05-04": "Ascension Day", "1978-08-05": "Independence Day", "1978-08-15": "Assumption Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", "1978-11-01": "All Saints' Day", - "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", "1978-12-11": "Proclamation of Independence Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-01-03": "Revolution Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-03-08": "International Women's Day", "1979-04-16": "Easter Monday", "1979-05-01": "Labour Day", @@ -274,37 +274,37 @@ "1979-08-05": "Independence Day", "1979-08-06": "Independence Day (Observed)", "1979-08-15": "Assumption Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", "1979-11-01": "All Saints' Day", "1979-12-11": "Proclamation of Independence Day", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-01-03": "Revolution Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-08": "International Women's Day", "1980-04-07": "Easter Monday", "1980-05-01": "Labour Day", "1980-05-15": "Ascension Day", "1980-08-05": "Independence Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", "1980-08-15": "Assumption Day", - "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", "1980-11-01": "All Saints' Day", "1980-12-11": "Proclamation of Independence Day", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-03": "Revolution Day", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-03-08": "International Women's Day", "1981-03-09": "International Women's Day (Observed)", "1981-04-20": "Easter Monday", "1981-05-01": "Labour Day", "1981-05-28": "Ascension Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", "1981-08-05": "Independence Day", "1981-08-15": "Assumption Day", - "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", "1981-11-01": "All Saints' Day", "1981-11-02": "All Saints' Day (Observed)", "1981-12-11": "Proclamation of Independence Day", @@ -312,20 +312,20 @@ "1982-01-01": "New Year's Day", "1982-01-03": "Revolution Day", "1982-01-04": "Revolution Day (Observed)", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-03-08": "International Women's Day", "1982-04-12": "Easter Monday", "1982-05-01": "Labour Day", "1982-05-20": "Ascension Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", "1982-08-05": "Independence Day", "1982-08-15": "Assumption Day", "1982-08-16": "Assumption Day (Observed)", - "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", "1982-11-01": "All Saints' Day", "1982-12-11": "Proclamation of Independence Day", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-01": "New Year's Day", "1983-01-03": "Revolution Day", "1983-03-08": "International Women's Day", @@ -333,14 +333,14 @@ "1983-05-01": "Labour Day", "1983-05-02": "Labour Day (Observed)", "1983-05-12": "Ascension Day", - "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", "1983-08-05": "Independence Day", "1983-08-15": "Assumption Day", - "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", "1983-11-01": "All Saints' Day", "1983-12-11": "Proclamation of Independence Day", "1983-12-12": "Proclamation of Independence Day (Observed)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day (Observed)", "1984-01-01": "New Year's Day", @@ -350,13 +350,13 @@ "1984-04-23": "Easter Monday", "1984-05-01": "Labour Day", "1984-05-31": "Ascension Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", "1984-08-05": "Independence Day", "1984-08-06": "Independence Day (Observed)", "1984-08-15": "Assumption Day", - "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", "1984-11-01": "All Saints' Day", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-11": "Proclamation of Independence Day", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -365,12 +365,12 @@ "1985-04-08": "Easter Monday", "1985-05-01": "Labour Day", "1985-05-16": "Ascension Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", "1985-08-05": "Independence Day", "1985-08-15": "Assumption Day", - "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", "1985-11-01": "All Saints' Day", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-11": "Proclamation of Independence Day", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", @@ -379,11 +379,11 @@ "1986-03-31": "Easter Monday", "1986-05-01": "Labour Day", "1986-05-08": "Ascension Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", "1986-08-05": "Independence Day", - "1986-08-15": "Assumption Day; Eid al-Adha* (*estimated)", + "1986-08-15": "Assumption Day; Eid al-Adha (estimated)", "1986-11-01": "All Saints' Day", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-11": "Proclamation of Independence Day", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", @@ -392,13 +392,13 @@ "1987-03-09": "International Women's Day (Observed)", "1987-04-20": "Easter Monday", "1987-05-01": "Labour Day", - "1987-05-28": "Ascension Day; Eid al-Fitr* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-05-28": "Ascension Day; Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", "1987-08-05": "Independence Day", "1987-08-15": "Assumption Day", "1987-11-01": "All Saints' Day", "1987-11-02": "All Saints' Day (Observed)", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-11": "Proclamation of Independence Day", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", @@ -409,11 +409,11 @@ "1988-05-01": "Labour Day", "1988-05-02": "Labour Day (Observed)", "1988-05-12": "Ascension Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", "1988-08-05": "Independence Day", "1988-08-15": "Assumption Day", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-11-01": "All Saints' Day", "1988-12-11": "Proclamation of Independence Day", "1988-12-12": "Proclamation of Independence Day (Observed)", @@ -426,11 +426,11 @@ "1989-03-27": "Easter Monday", "1989-05-01": "Labour Day", "1989-05-04": "Ascension Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", "1989-08-05": "Independence Day", "1989-08-15": "Assumption Day", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-11-01": "All Saints' Day", "1989-12-11": "Proclamation of Independence Day", "1989-12-25": "Christmas Day", @@ -438,14 +438,14 @@ "1990-01-03": "Revolution Day", "1990-03-08": "International Women's Day", "1990-04-16": "Easter Monday", - "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-05-24": "Ascension Day", - "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", "1990-08-05": "Independence Day", "1990-08-06": "Independence Day (Observed)", "1990-08-15": "Assumption Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-11-01": "All Saints' Day", "1990-12-11": "Proclamation of Independence Day", "1990-12-25": "Christmas Day", @@ -453,13 +453,13 @@ "1991-01-03": "Revolution Day", "1991-03-08": "International Women's Day", "1991-04-01": "Easter Monday", - "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-09": "Ascension Day", - "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", "1991-08-05": "Independence Day", "1991-08-15": "Assumption Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-11-01": "All Saints' Day", "1991-12-11": "Proclamation of Independence Day", "1991-12-25": "Christmas Day", @@ -467,14 +467,14 @@ "1992-01-03": "Revolution Day", "1992-03-08": "International Women's Day", "1992-03-09": "International Women's Day (Observed)", - "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-20": "Easter Monday", "1992-05-01": "Labour Day", "1992-05-28": "Ascension Day", - "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", "1992-08-05": "Independence Day", "1992-08-15": "Assumption Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-11-01": "All Saints' Day", "1992-11-02": "All Saints' Day (Observed)", "1992-12-11": "Proclamation of Independence Day", @@ -483,30 +483,30 @@ "1993-01-03": "Revolution Day", "1993-01-04": "Revolution Day (Observed)", "1993-03-08": "International Women's Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-12": "Easter Monday", "1993-05-01": "Labour Day", "1993-05-20": "Ascension Day", - "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", "1993-08-05": "Independence Day", "1993-08-15": "Assumption Day", "1993-08-16": "Assumption Day (Observed)", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-11-01": "All Saints' Day", "1993-12-11": "Proclamation of Independence Day", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-01-03": "Revolution Day", "1994-03-08": "International Women's Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-04": "Easter Monday", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day (Observed)", "1994-05-12": "Ascension Day", - "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", "1994-08-05": "Independence Day", "1994-08-15": "Assumption Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-11-01": "All Saints' Day", "1994-12-11": "Proclamation of Independence Day", "1994-12-12": "Proclamation of Independence Day (Observed)", @@ -515,27 +515,27 @@ "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day (Observed)", "1995-01-03": "Revolution Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-08": "International Women's Day", "1995-04-17": "Easter Monday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", "1995-05-25": "Ascension Day", "1995-08-05": "Independence Day", - "1995-08-08": "Mawlid* (*estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Assumption Day", "1995-11-01": "All Saints' Day", "1995-12-11": "Proclamation of Independence Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-01-03": "Revolution Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-08": "International Women's Day", "1996-04-08": "Easter Monday", - "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-16": "Ascension Day", - "1996-07-27": "Mawlid* (*estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-05": "Independence Day", "1996-08-15": "Assumption Day", "1996-11-01": "All Saints' Day", @@ -543,13 +543,13 @@ "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-03": "Revolution Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-08": "International Women's Day", "1997-03-31": "Easter Monday", - "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", "1997-05-08": "Ascension Day", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-05": "Independence Day", "1997-08-15": "Assumption Day", "1997-11-01": "All Saints' Day", @@ -557,14 +557,14 @@ "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-03": "Revolution Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-08": "International Women's Day", "1998-03-09": "International Women's Day (Observed)", - "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-04-13": "Easter Monday", "1998-05-01": "Labour Day", "1998-05-21": "Ascension Day", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-05": "Independence Day", "1998-08-15": "Assumption Day", "1998-11-01": "All Saints' Day", @@ -574,13 +574,13 @@ "1999-01-01": "New Year's Day", "1999-01-03": "Revolution Day", "1999-01-04": "Revolution Day (Observed)", - "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-03-08": "International Women's Day", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-05": "Easter Monday", "1999-05-01": "Labour Day", "1999-05-13": "Ascension Day", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-05": "Independence Day", "1999-08-15": "Assumption Day", "1999-08-16": "Assumption Day (Observed)", @@ -589,89 +589,89 @@ "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", "2000-01-03": "Revolution Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-03-08": "International Women's Day", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-04-24": "Easter Monday", "2000-05-01": "Labour Day", "2000-06-01": "Ascension Day", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-05": "Independence Day", "2000-08-15": "Assumption Day", "2000-11-01": "All Saints' Day", "2000-12-11": "Proclamation of Independence Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-03": "Revolution Day", - "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", "2001-03-08": "International Women's Day", "2001-04-16": "Easter Monday", "2001-05-01": "Labour Day", "2001-05-24": "Ascension Day", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-05": "Independence Day", "2001-08-06": "Independence Day (Observed)", "2001-08-15": "Assumption Day", "2001-11-01": "All Saints' Day", "2001-12-11": "Proclamation of Independence Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-03": "Revolution Day", - "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", "2002-03-08": "International Women's Day", "2002-04-01": "Easter Monday", "2002-05-01": "Labour Day", "2002-05-09": "Ascension Day", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-05": "Independence Day", "2002-08-15": "Assumption Day", "2002-11-01": "All Saints' Day", - "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", "2002-12-11": "Proclamation of Independence Day", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-01-03": "Revolution Day", - "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", "2003-03-08": "International Women's Day", "2003-04-21": "Easter Monday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-05-29": "Ascension Day", "2003-08-05": "Independence Day", "2003-08-15": "Assumption Day", "2003-11-01": "All Saints' Day", - "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", "2003-12-11": "Proclamation of Independence Day", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-01-03": "Revolution Day", - "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", "2004-03-08": "International Women's Day", "2004-04-12": "Easter Monday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-20": "Ascension Day", "2004-08-05": "Independence Day", "2004-08-15": "Assumption Day", "2004-08-16": "Assumption Day (Observed)", "2004-11-01": "All Saints' Day", - "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", "2004-12-11": "Proclamation of Independence Day", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-03": "Revolution Day", - "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", "2005-03-08": "International Women's Day", "2005-03-28": "Easter Monday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-02": "Labour Day (Observed)", "2005-05-05": "Ascension Day", "2005-08-05": "Independence Day", "2005-08-15": "Assumption Day", "2005-11-01": "All Saints' Day", - "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", "2005-12-11": "Proclamation of Independence Day", "2005-12-12": "Proclamation of Independence Day (Observed)", "2005-12-25": "Christmas Day", @@ -679,66 +679,66 @@ "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day (Observed)", "2006-01-03": "Revolution Day", - "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", "2006-03-08": "International Women's Day", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-17": "Easter Monday", "2006-05-01": "Labour Day", "2006-05-25": "Ascension Day", "2006-08-05": "Independence Day", "2006-08-15": "Assumption Day", - "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", "2006-11-01": "All Saints' Day", "2006-12-11": "Proclamation of Independence Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", "2007-01-01": "New Year's Day", "2007-01-03": "Revolution Day", "2007-03-08": "International Women's Day", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-09": "Easter Monday", "2007-05-01": "Labour Day", "2007-05-17": "Ascension Day", "2007-08-05": "Independence Day", "2007-08-06": "Independence Day (Observed)", "2007-08-15": "Assumption Day", - "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", "2007-11-01": "All Saints' Day", "2007-12-11": "Proclamation of Independence Day", - "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-01-03": "Revolution Day", "2008-03-08": "International Women's Day", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-24": "Easter Monday", "2008-05-01": "Ascension Day; Labour Day", "2008-08-05": "Independence Day", "2008-08-15": "Assumption Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", "2008-11-01": "All Saints' Day", - "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", "2008-12-11": "Proclamation of Independence Day", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-01-03": "Revolution Day", "2009-03-08": "International Women's Day", - "2009-03-09": "International Women's Day (Observed); Mawlid* (*estimated)", + "2009-03-09": "International Women's Day (Observed); Mawlid (estimated)", "2009-04-13": "Easter Monday", "2009-05-01": "Labour Day", "2009-05-21": "Ascension Day", "2009-08-05": "Independence Day", "2009-08-15": "Assumption Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", "2009-11-01": "All Saints' Day", "2009-11-02": "All Saints' Day (Observed)", - "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", "2009-12-11": "Proclamation of Independence Day", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-01-03": "Revolution Day", "2010-01-04": "Revolution Day (Observed)", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-08": "International Women's Day", "2010-04-05": "Easter Monday", "2010-05-01": "Labour Day", @@ -746,14 +746,14 @@ "2010-08-05": "Independence Day", "2010-08-15": "Assumption Day", "2010-08-16": "Assumption Day (Observed)", - "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", "2010-11-01": "All Saints' Day", - "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", "2010-12-11": "Proclamation of Independence Day", "2010-12-25": "Christmas Day", "2011-01-01": "New Year's Day", "2011-01-03": "Revolution Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-08": "International Women's Day", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", @@ -761,9 +761,9 @@ "2011-06-02": "Ascension Day", "2011-08-05": "Independence Day", "2011-08-15": "Assumption Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", "2011-11-01": "All Saints' Day", - "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", "2011-12-11": "Proclamation of Independence Day", "2011-12-12": "Proclamation of Independence Day (Observed)", "2011-12-25": "Christmas Day", @@ -771,7 +771,7 @@ "2012-01-01": "New Year's Day", "2012-01-02": "New Year's Day (Observed)", "2012-01-03": "Revolution Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "International Women's Day", "2012-04-09": "Easter Monday", "2012-05-01": "Labour Day", @@ -779,22 +779,22 @@ "2012-08-05": "Independence Day", "2012-08-06": "Independence Day (Observed)", "2012-08-15": "Assumption Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", "2012-11-01": "All Saints' Day", "2012-12-11": "Proclamation of Independence Day", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-03": "Revolution Day", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-03-08": "International Women's Day", "2013-04-01": "Easter Monday", "2013-05-01": "Labour Day", "2013-05-09": "Ascension Day", "2013-08-05": "Independence Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", "2013-08-15": "Assumption Day", - "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", "2013-11-01": "All Saints' Day", "2013-12-11": "Proclamation of Independence Day", "2013-12-25": "Christmas Day", @@ -954,7 +954,7 @@ "2023-06-28": "Eid al-Adha", "2023-08-05": "Independence Day", "2023-08-15": "Assumption Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-31": "Martyrs' Day", "2023-11-01": "All Saints' Day", "2023-12-11": "Proclamation of Independence Day", @@ -963,13 +963,13 @@ "2024-01-03": "Revolution Day", "2024-03-08": "International Women's Day", "2024-04-01": "Easter Monday", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-09": "Ascension Day", - "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", "2024-08-05": "Independence Day", "2024-08-15": "Assumption Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-31": "Martyrs' Day", "2024-11-01": "All Saints' Day", "2024-12-11": "Proclamation of Independence Day", @@ -977,14 +977,14 @@ "2025-01-01": "New Year's Day", "2025-01-03": "Revolution Day", "2025-03-08": "International Women's Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", "2025-04-21": "Easter Monday", "2025-05-01": "Labour Day", "2025-05-29": "Ascension Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-08-05": "Independence Day", "2025-08-15": "Assumption Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-31": "Martyrs' Day", "2025-11-01": "All Saints' Day", "2025-12-11": "Proclamation of Independence Day", @@ -993,14 +993,14 @@ "2026-01-03": "Revolution Day", "2026-03-08": "International Women's Day", "2026-03-09": "International Women's Day (Observed)", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-06": "Easter Monday", "2026-05-01": "Labour Day", "2026-05-14": "Ascension Day", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-08-05": "Independence Day", "2026-08-15": "Assumption Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-31": "Martyrs' Day", "2026-11-01": "All Saints' Day", "2026-11-02": "All Saints' Day (Observed)", @@ -1010,13 +1010,13 @@ "2027-01-03": "Revolution Day", "2027-01-04": "Revolution Day (Observed)", "2027-03-08": "International Women's Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-29": "Easter Monday", "2027-05-01": "Labour Day", "2027-05-06": "Ascension Day", - "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", "2027-08-05": "Independence Day", - "2027-08-14": "Mawlid* (*estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Assumption Day", "2027-08-16": "Assumption Day (Observed)", "2027-10-31": "Martyrs' Day", @@ -1025,13 +1025,13 @@ "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-01-03": "Revolution Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-03-08": "International Women's Day", "2028-04-17": "Easter Monday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", "2028-05-25": "Ascension Day", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-05": "Independence Day", "2028-08-15": "Assumption Day", "2028-10-31": "Martyrs' Day", @@ -1040,13 +1040,13 @@ "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-01-03": "Revolution Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-08": "International Women's Day", "2029-04-02": "Easter Monday", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-10": "Ascension Day", - "2029-07-24": "Mawlid* (*estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-05": "Independence Day", "2029-08-06": "Independence Day (Observed)", "2029-08-15": "Assumption Day", @@ -1056,13 +1056,13 @@ "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-03": "Revolution Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", "2030-03-08": "International Women's Day", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-22": "Easter Monday", "2030-05-01": "Labour Day", "2030-05-30": "Ascension Day", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-05": "Independence Day", "2030-08-15": "Assumption Day", "2030-10-31": "Martyrs' Day", @@ -1071,13 +1071,13 @@ "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-03": "Revolution Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", "2031-03-08": "International Women's Day", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-14": "Easter Monday", "2031-05-01": "Labour Day", "2031-05-22": "Ascension Day", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-05": "Independence Day", "2031-08-15": "Assumption Day", "2031-10-31": "Martyrs' Day", @@ -1086,13 +1086,13 @@ "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", "2032-01-03": "Revolution Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", "2032-03-08": "International Women's Day", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-29": "Easter Monday", "2032-05-01": "Labour Day", "2032-05-06": "Ascension Day", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-05": "Independence Day", "2032-08-15": "Assumption Day", "2032-08-16": "Assumption Day (Observed)", @@ -1101,78 +1101,78 @@ "2032-12-11": "Proclamation of Independence Day", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", "2033-01-03": "Revolution Day", "2033-03-08": "International Women's Day", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day (Observed)", "2033-05-26": "Ascension Day", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-05": "Independence Day", "2033-08-15": "Assumption Day", "2033-10-31": "Martyrs' Day", "2033-11-01": "All Saints' Day", "2033-12-11": "Proclamation of Independence Day", "2033-12-12": "Proclamation of Independence Day (Observed)", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (Observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day (Observed)", "2034-01-03": "Revolution Day", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-03-08": "International Women's Day", "2034-04-10": "Easter Monday", "2034-05-01": "Labour Day", "2034-05-18": "Ascension Day", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-05": "Independence Day", "2034-08-15": "Assumption Day", "2034-10-31": "Martyrs' Day", "2034-11-01": "All Saints' Day", "2034-12-11": "Proclamation of Independence Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-01-03": "Revolution Day", - "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", "2035-03-08": "International Women's Day", "2035-03-26": "Easter Monday", "2035-05-01": "Labour Day", "2035-05-03": "Ascension Day", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-05": "Independence Day", "2035-08-06": "Independence Day (Observed)", "2035-08-15": "Assumption Day", "2035-10-31": "Martyrs' Day", "2035-11-01": "All Saints' Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-11": "Proclamation of Independence Day", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-03": "Revolution Day", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-03-08": "International Women's Day", "2036-04-14": "Easter Monday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-05-22": "Ascension Day", "2036-08-05": "Independence Day", "2036-08-15": "Assumption Day", "2036-10-31": "Martyrs' Day", "2036-11-01": "All Saints' Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-12-11": "Proclamation of Independence Day", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-03": "Revolution Day", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-03-08": "International Women's Day", "2037-03-09": "International Women's Day (Observed)", "2037-04-06": "Easter Monday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-14": "Ascension Day", "2037-08-05": "Independence Day", @@ -1180,94 +1180,94 @@ "2037-10-31": "Martyrs' Day", "2037-11-01": "All Saints' Day", "2037-11-02": "All Saints' Day (Observed)", - "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", "2037-12-11": "Proclamation of Independence Day", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-03": "Revolution Day", "2038-01-04": "Revolution Day (Observed)", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-03-08": "International Women's Day", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-26": "Easter Monday", "2038-05-01": "Labour Day", "2038-06-03": "Ascension Day", "2038-08-05": "Independence Day", "2038-08-15": "Assumption Day", "2038-08-16": "Assumption Day (Observed)", - "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-10-31": "Martyrs' Day", "2038-11-01": "All Saints' Day; Martyrs' Day (Observed)", "2038-12-11": "Proclamation of Independence Day", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", "2039-01-03": "Revolution Day", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-03-08": "International Women's Day", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-11": "Easter Monday", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day (Observed)", "2039-05-19": "Ascension Day", "2039-08-05": "Independence Day", "2039-08-15": "Assumption Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-10-31": "Martyrs' Day", "2039-11-01": "All Saints' Day", "2039-12-11": "Proclamation of Independence Day", "2039-12-12": "Proclamation of Independence Day (Observed)", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Eid al-Adha* (*estimated)", + "2039-12-26": "Christmas Day (Observed); Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day (Observed)", "2040-01-03": "Revolution Day", "2040-03-08": "International Women's Day", - "2040-03-25": "Mawlid* (*estimated)", + "2040-03-25": "Mawlid (estimated)", "2040-04-02": "Easter Monday", "2040-05-01": "Labour Day", "2040-05-10": "Ascension Day", "2040-08-05": "Independence Day", "2040-08-06": "Independence Day (Observed)", "2040-08-15": "Assumption Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", "2040-10-31": "Martyrs' Day", "2040-11-01": "All Saints' Day", "2040-12-11": "Proclamation of Independence Day", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-03": "Revolution Day", "2041-03-08": "International Women's Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-22": "Easter Monday", "2041-05-01": "Labour Day", "2041-05-30": "Ascension Day", "2041-08-05": "Independence Day", "2041-08-15": "Assumption Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", "2041-10-31": "Martyrs' Day", "2041-11-01": "All Saints' Day", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-11": "Proclamation of Independence Day", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-03": "Revolution Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-08": "International Women's Day", "2042-04-07": "Easter Monday", "2042-05-01": "Labour Day", "2042-05-15": "Ascension Day", "2042-08-05": "Independence Day", "2042-08-15": "Assumption Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", "2042-10-31": "Martyrs' Day", "2042-11-01": "All Saints' Day", - "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", "2042-12-11": "Proclamation of Independence Day", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-01-03": "Revolution Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-08": "International Women's Day", "2043-03-09": "International Women's Day (Observed)", "2043-03-30": "Easter Monday", @@ -1275,17 +1275,17 @@ "2043-05-07": "Ascension Day", "2043-08-05": "Independence Day", "2043-08-15": "Assumption Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", "2043-10-31": "Martyrs' Day", "2043-11-01": "All Saints' Day", "2043-11-02": "All Saints' Day (Observed)", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-11": "Proclamation of Independence Day", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-01-03": "Revolution Day", "2044-01-04": "Revolution Day (Observed)", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-03-08": "International Women's Day", "2044-04-18": "Easter Monday", "2044-05-01": "Labour Day", @@ -1293,8 +1293,8 @@ "2044-05-26": "Ascension Day", "2044-08-05": "Independence Day", "2044-08-15": "Assumption Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated); Martyrs' Day", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated); Martyrs' Day", "2044-11-01": "All Saints' Day", "2044-12-11": "Proclamation of Independence Day", "2044-12-12": "Proclamation of Independence Day (Observed)", @@ -1303,51 +1303,51 @@ "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day (Observed)", "2045-01-03": "Revolution Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-03-08": "International Women's Day", "2045-04-10": "Easter Monday", "2045-05-01": "Labour Day", "2045-05-18": "Ascension Day", "2045-08-05": "Independence Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", "2045-08-15": "Assumption Day", - "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-10-31": "Martyrs' Day", "2045-11-01": "All Saints' Day", "2045-12-11": "Proclamation of Independence Day", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-01-03": "Revolution Day", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-03-08": "International Women's Day", "2046-03-26": "Easter Monday", "2046-05-01": "Labour Day", "2046-05-03": "Ascension Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-05": "Independence Day", "2046-08-06": "Independence Day (Observed)", "2046-08-15": "Assumption Day", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-10-31": "Martyrs' Day", "2046-11-01": "All Saints' Day", "2046-12-11": "Proclamation of Independence Day", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-01-03": "Revolution Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-03-08": "International Women's Day", "2047-04-15": "Easter Monday", "2047-05-01": "Labour Day", "2047-05-23": "Ascension Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-08-05": "Independence Day", "2047-08-15": "Assumption Day", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-10-31": "Martyrs' Day", "2047-11-01": "All Saints' Day", "2047-12-11": "Proclamation of Independence Day", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-01": "New Year's Day", "2048-01-03": "Revolution Day", "2048-03-08": "International Women's Day", @@ -1355,15 +1355,15 @@ "2048-04-06": "Easter Monday", "2048-05-01": "Labour Day", "2048-05-14": "Ascension Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", "2048-08-05": "Independence Day", "2048-08-15": "Assumption Day", - "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-10-31": "Martyrs' Day", "2048-11-01": "All Saints' Day", "2048-11-02": "All Saints' Day (Observed)", "2048-12-11": "Proclamation of Independence Day", - "2048-12-18": "Mawlid* (*estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-01-03": "Revolution Day", @@ -1372,14 +1372,14 @@ "2049-04-19": "Easter Monday", "2049-05-01": "Labour Day", "2049-05-27": "Ascension Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", "2049-08-05": "Independence Day", "2049-08-15": "Assumption Day", "2049-08-16": "Assumption Day (Observed)", - "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-10-31": "Martyrs' Day", "2049-11-01": "All Saints' Day; Martyrs' Day (Observed)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-11": "Proclamation of Independence Day", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", @@ -1389,13 +1389,13 @@ "2050-05-01": "Labour Day", "2050-05-02": "Labour Day (Observed)", "2050-05-19": "Ascension Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-05": "Independence Day", "2050-08-15": "Assumption Day", - "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", "2050-10-31": "Martyrs' Day", "2050-11-01": "All Saints' Day", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-11": "Proclamation of Independence Day", "2050-12-12": "Proclamation of Independence Day (Observed)", "2050-12-25": "Christmas Day", diff --git a/snapshots/countries/BH_COMMON.json b/snapshots/countries/BH_COMMON.json index 07a5ebb25..ab9523a83 100644 --- a/snapshots/countries/BH_COMMON.json +++ b/snapshots/countries/BH_COMMON.json @@ -1,1021 +1,1021 @@ { - "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-01-01": "New Year's Day; Prophet's Birthday (estimated)", "1950-05-01": "Labor Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", - "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha Holiday* (*estimated)", - "1950-09-25": "Eid al-Adha Holiday* (*estimated)", - "1950-10-13": "Islamic New Year* (*estimated)", - "1950-10-21": "Ashura Eve* (*estimated)", - "1950-10-22": "Ashura* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr Holiday (estimated)", + "1950-07-18": "Eid al-Fitr Holiday (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha Holiday (estimated)", + "1950-09-25": "Eid al-Adha Holiday (estimated)", + "1950-10-13": "Islamic New Year (estimated)", + "1950-10-21": "Ashura Eve (estimated)", + "1950-10-22": "Ashura (estimated)", "1950-12-16": "National Day", "1950-12-17": "National Day", - "1950-12-22": "Prophet's Birthday* (*estimated)", + "1950-12-22": "Prophet's Birthday (estimated)", "1951-01-01": "New Year's Day", "1951-05-01": "Labor Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", - "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha Holiday* (*estimated)", - "1951-09-14": "Eid al-Adha Holiday* (*estimated)", - "1951-10-02": "Islamic New Year* (*estimated)", - "1951-10-10": "Ashura Eve* (*estimated)", - "1951-10-11": "Ashura* (*estimated)", - "1951-12-11": "Prophet's Birthday* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Eid al-Fitr Holiday (estimated)", + "1951-07-08": "Eid al-Fitr Holiday (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha Holiday (estimated)", + "1951-09-14": "Eid al-Adha Holiday (estimated)", + "1951-10-02": "Islamic New Year (estimated)", + "1951-10-10": "Ashura Eve (estimated)", + "1951-10-11": "Ashura (estimated)", + "1951-12-11": "Prophet's Birthday (estimated)", "1951-12-16": "National Day", "1951-12-17": "National Day", "1952-01-01": "New Year's Day", "1952-05-01": "Labor Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", - "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha Holiday* (*estimated)", - "1952-09-02": "Eid al-Adha Holiday* (*estimated)", - "1952-09-21": "Islamic New Year* (*estimated)", - "1952-09-29": "Ashura Eve* (*estimated)", - "1952-09-30": "Ashura* (*estimated)", - "1952-11-30": "Prophet's Birthday* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr Holiday (estimated)", + "1952-06-25": "Eid al-Fitr Holiday (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha Holiday (estimated)", + "1952-09-02": "Eid al-Adha Holiday (estimated)", + "1952-09-21": "Islamic New Year (estimated)", + "1952-09-29": "Ashura Eve (estimated)", + "1952-09-30": "Ashura (estimated)", + "1952-11-30": "Prophet's Birthday (estimated)", "1952-12-16": "National Day", "1952-12-17": "National Day", "1953-01-01": "New Year's Day", "1953-05-01": "Labor Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", - "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha Holiday* (*estimated)", - "1953-08-22": "Eid al-Adha Holiday* (*estimated)", - "1953-09-10": "Islamic New Year* (*estimated)", - "1953-09-18": "Ashura Eve* (*estimated)", - "1953-09-19": "Ashura* (*estimated)", - "1953-11-19": "Prophet's Birthday* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr Holiday (estimated)", + "1953-06-15": "Eid al-Fitr Holiday (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha Holiday (estimated)", + "1953-08-22": "Eid al-Adha Holiday (estimated)", + "1953-09-10": "Islamic New Year (estimated)", + "1953-09-18": "Ashura Eve (estimated)", + "1953-09-19": "Ashura (estimated)", + "1953-11-19": "Prophet's Birthday (estimated)", "1953-12-16": "National Day", "1953-12-17": "National Day", "1954-01-01": "New Year's Day", "1954-05-01": "Labor Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", - "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha Holiday* (*estimated)", - "1954-08-11": "Eid al-Adha Holiday* (*estimated)", - "1954-08-30": "Islamic New Year* (*estimated)", - "1954-09-07": "Ashura Eve* (*estimated)", - "1954-09-08": "Ashura* (*estimated)", - "1954-11-08": "Prophet's Birthday* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr Holiday (estimated)", + "1954-06-04": "Eid al-Fitr Holiday (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha Holiday (estimated)", + "1954-08-11": "Eid al-Adha Holiday (estimated)", + "1954-08-30": "Islamic New Year (estimated)", + "1954-09-07": "Ashura Eve (estimated)", + "1954-09-08": "Ashura (estimated)", + "1954-11-08": "Prophet's Birthday (estimated)", "1954-12-16": "National Day", "1954-12-17": "National Day", "1955-01-01": "New Year's Day", "1955-05-01": "Labor Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", - "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha Holiday* (*estimated)", - "1955-08-01": "Eid al-Adha Holiday* (*estimated)", - "1955-08-20": "Islamic New Year* (*estimated)", - "1955-08-28": "Ashura Eve* (*estimated)", - "1955-08-29": "Ashura* (*estimated)", - "1955-10-29": "Prophet's Birthday* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr Holiday (estimated)", + "1955-05-25": "Eid al-Fitr Holiday (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha Holiday (estimated)", + "1955-08-01": "Eid al-Adha Holiday (estimated)", + "1955-08-20": "Islamic New Year (estimated)", + "1955-08-28": "Ashura Eve (estimated)", + "1955-08-29": "Ashura (estimated)", + "1955-10-29": "Prophet's Birthday (estimated)", "1955-12-16": "National Day", "1955-12-17": "National Day", "1956-01-01": "New Year's Day", "1956-05-01": "Labor Day", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", - "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha Holiday* (*estimated)", - "1956-07-21": "Eid al-Adha Holiday* (*estimated)", - "1956-08-08": "Islamic New Year* (*estimated)", - "1956-08-16": "Ashura Eve* (*estimated)", - "1956-08-17": "Ashura* (*estimated)", - "1956-10-17": "Prophet's Birthday* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr Holiday (estimated)", + "1956-05-13": "Eid al-Fitr Holiday (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha Holiday (estimated)", + "1956-07-21": "Eid al-Adha Holiday (estimated)", + "1956-08-08": "Islamic New Year (estimated)", + "1956-08-16": "Ashura Eve (estimated)", + "1956-08-17": "Ashura (estimated)", + "1956-10-17": "Prophet's Birthday (estimated)", "1956-12-16": "National Day", "1956-12-17": "National Day", "1957-01-01": "New Year's Day", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", - "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", - "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha Holiday* (*estimated)", - "1957-07-10": "Eid al-Adha Holiday* (*estimated)", - "1957-07-28": "Islamic New Year* (*estimated)", - "1957-08-05": "Ashura Eve* (*estimated)", - "1957-08-06": "Ashura* (*estimated)", - "1957-10-06": "Prophet's Birthday* (*estimated)", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", + "1957-05-02": "Eid al-Fitr Holiday (estimated)", + "1957-05-03": "Eid al-Fitr Holiday (estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha Holiday (estimated)", + "1957-07-10": "Eid al-Adha Holiday (estimated)", + "1957-07-28": "Islamic New Year (estimated)", + "1957-08-05": "Ashura Eve (estimated)", + "1957-08-06": "Ashura (estimated)", + "1957-10-06": "Prophet's Birthday (estimated)", "1957-12-16": "National Day", "1957-12-17": "National Day", "1958-01-01": "New Year's Day", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", - "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr Holiday (estimated)", + "1958-04-22": "Eid al-Fitr Holiday (estimated)", "1958-05-01": "Labor Day", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha Holiday* (*estimated)", - "1958-06-29": "Eid al-Adha Holiday* (*estimated)", - "1958-07-18": "Islamic New Year* (*estimated)", - "1958-07-26": "Ashura Eve* (*estimated)", - "1958-07-27": "Ashura* (*estimated)", - "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha Holiday (estimated)", + "1958-06-29": "Eid al-Adha Holiday (estimated)", + "1958-07-18": "Islamic New Year (estimated)", + "1958-07-26": "Ashura Eve (estimated)", + "1958-07-27": "Ashura (estimated)", + "1958-09-26": "Prophet's Birthday (estimated)", "1958-12-16": "National Day", "1958-12-17": "National Day", "1959-01-01": "New Year's Day", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", - "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr Holiday (estimated)", + "1959-04-12": "Eid al-Fitr Holiday (estimated)", "1959-05-01": "Labor Day", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha Holiday* (*estimated)", - "1959-06-19": "Eid al-Adha Holiday* (*estimated)", - "1959-07-07": "Islamic New Year* (*estimated)", - "1959-07-15": "Ashura Eve* (*estimated)", - "1959-07-16": "Ashura* (*estimated)", - "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha Holiday (estimated)", + "1959-06-19": "Eid al-Adha Holiday (estimated)", + "1959-07-07": "Islamic New Year (estimated)", + "1959-07-15": "Ashura Eve (estimated)", + "1959-07-16": "Ashura (estimated)", + "1959-09-15": "Prophet's Birthday (estimated)", "1959-12-16": "National Day", "1959-12-17": "National Day", "1960-01-01": "New Year's Day", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", - "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr Holiday (estimated)", + "1960-03-30": "Eid al-Fitr Holiday (estimated)", "1960-05-01": "Labor Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha Holiday* (*estimated)", - "1960-06-06": "Eid al-Adha Holiday* (*estimated)", - "1960-06-25": "Islamic New Year* (*estimated)", - "1960-07-03": "Ashura Eve* (*estimated)", - "1960-07-04": "Ashura* (*estimated)", - "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha Holiday (estimated)", + "1960-06-06": "Eid al-Adha Holiday (estimated)", + "1960-06-25": "Islamic New Year (estimated)", + "1960-07-03": "Ashura Eve (estimated)", + "1960-07-04": "Ashura (estimated)", + "1960-09-03": "Prophet's Birthday (estimated)", "1960-12-16": "National Day", "1960-12-17": "National Day", "1961-01-01": "New Year's Day", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", - "1961-03-20": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr Holiday (estimated)", + "1961-03-20": "Eid al-Fitr Holiday (estimated)", "1961-05-01": "Labor Day", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha Holiday* (*estimated)", - "1961-05-27": "Eid al-Adha Holiday* (*estimated)", - "1961-06-14": "Islamic New Year* (*estimated)", - "1961-06-22": "Ashura Eve* (*estimated)", - "1961-06-23": "Ashura* (*estimated)", - "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha Holiday (estimated)", + "1961-05-27": "Eid al-Adha Holiday (estimated)", + "1961-06-14": "Islamic New Year (estimated)", + "1961-06-22": "Ashura Eve (estimated)", + "1961-06-23": "Ashura (estimated)", + "1961-08-23": "Prophet's Birthday (estimated)", "1961-12-16": "National Day", "1961-12-17": "National Day", "1962-01-01": "New Year's Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", - "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr Holiday (estimated)", + "1962-03-09": "Eid al-Fitr Holiday (estimated)", "1962-05-01": "Labor Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha Holiday* (*estimated)", - "1962-05-16": "Eid al-Adha Holiday* (*estimated)", - "1962-06-03": "Islamic New Year* (*estimated)", - "1962-06-11": "Ashura Eve* (*estimated)", - "1962-06-12": "Ashura* (*estimated)", - "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha Holiday (estimated)", + "1962-05-16": "Eid al-Adha Holiday (estimated)", + "1962-06-03": "Islamic New Year (estimated)", + "1962-06-11": "Ashura Eve (estimated)", + "1962-06-12": "Ashura (estimated)", + "1962-08-12": "Prophet's Birthday (estimated)", "1962-12-16": "National Day", "1962-12-17": "National Day", "1963-01-01": "New Year's Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", - "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr Holiday (estimated)", + "1963-02-26": "Eid al-Fitr Holiday (estimated)", "1963-05-01": "Labor Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha Holiday* (*estimated)", - "1963-05-05": "Eid al-Adha Holiday* (*estimated)", - "1963-05-24": "Islamic New Year* (*estimated)", - "1963-06-01": "Ashura Eve* (*estimated)", - "1963-06-02": "Ashura* (*estimated)", - "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha Holiday (estimated)", + "1963-05-05": "Eid al-Adha Holiday (estimated)", + "1963-05-24": "Islamic New Year (estimated)", + "1963-06-01": "Ashura Eve (estimated)", + "1963-06-02": "Ashura (estimated)", + "1963-08-02": "Prophet's Birthday (estimated)", "1963-12-16": "National Day", "1963-12-17": "National Day", "1964-01-01": "New Year's Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", - "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha Holiday* (*estimated)", - "1964-04-24": "Eid al-Adha Holiday* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr Holiday (estimated)", + "1964-02-16": "Eid al-Fitr Holiday (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha Holiday (estimated)", + "1964-04-24": "Eid al-Adha Holiday (estimated)", "1964-05-01": "Labor Day", - "1964-05-12": "Islamic New Year* (*estimated)", - "1964-05-20": "Ashura Eve* (*estimated)", - "1964-05-21": "Ashura* (*estimated)", - "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-05-12": "Islamic New Year (estimated)", + "1964-05-20": "Ashura Eve (estimated)", + "1964-05-21": "Ashura (estimated)", + "1964-07-21": "Prophet's Birthday (estimated)", "1964-12-16": "National Day", "1964-12-17": "National Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", - "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha Holiday* (*estimated)", - "1965-04-13": "Eid al-Adha Holiday* (*estimated)", - "1965-05-01": "Islamic New Year* (*estimated); Labor Day", - "1965-05-09": "Ashura Eve* (*estimated)", - "1965-05-10": "Ashura* (*estimated)", - "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-02-03": "Eid al-Fitr Holiday (estimated)", + "1965-02-04": "Eid al-Fitr Holiday (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha Holiday (estimated)", + "1965-04-13": "Eid al-Adha Holiday (estimated)", + "1965-05-01": "Islamic New Year (estimated); Labor Day", + "1965-05-09": "Ashura Eve (estimated)", + "1965-05-10": "Ashura (estimated)", + "1965-07-10": "Prophet's Birthday (estimated)", "1965-12-16": "National Day", "1965-12-17": "National Day", "1966-01-01": "New Year's Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", - "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha Holiday* (*estimated)", - "1966-04-03": "Eid al-Adha Holiday* (*estimated)", - "1966-04-21": "Islamic New Year* (*estimated)", - "1966-04-29": "Ashura Eve* (*estimated)", - "1966-04-30": "Ashura* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr Holiday (estimated)", + "1966-01-24": "Eid al-Fitr Holiday (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha Holiday (estimated)", + "1966-04-03": "Eid al-Adha Holiday (estimated)", + "1966-04-21": "Islamic New Year (estimated)", + "1966-04-29": "Ashura Eve (estimated)", + "1966-04-30": "Ashura (estimated)", "1966-05-01": "Labor Day", - "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-07-01": "Prophet's Birthday (estimated)", "1966-12-16": "National Day", "1966-12-17": "National Day", "1967-01-01": "New Year's Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", - "1967-01-14": "Eid al-Fitr Holiday* (*estimated)", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha Holiday* (*estimated)", - "1967-03-23": "Eid al-Adha Holiday* (*estimated)", - "1967-04-11": "Islamic New Year* (*estimated)", - "1967-04-19": "Ashura Eve* (*estimated)", - "1967-04-20": "Ashura* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr Holiday (estimated)", + "1967-01-14": "Eid al-Fitr Holiday (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha Holiday (estimated)", + "1967-03-23": "Eid al-Adha Holiday (estimated)", + "1967-04-11": "Islamic New Year (estimated)", + "1967-04-19": "Ashura Eve (estimated)", + "1967-04-20": "Ashura (estimated)", "1967-05-01": "Labor Day", - "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-06-19": "Prophet's Birthday (estimated)", "1967-12-16": "National Day", "1967-12-17": "National Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", - "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha Holiday* (*estimated)", - "1968-03-11": "Eid al-Adha Holiday* (*estimated)", - "1968-03-30": "Islamic New Year* (*estimated)", - "1968-04-07": "Ashura Eve* (*estimated)", - "1968-04-08": "Ashura* (*estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday (estimated)", + "1968-01-03": "Eid al-Fitr Holiday (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha Holiday (estimated)", + "1968-03-11": "Eid al-Adha Holiday (estimated)", + "1968-03-30": "Islamic New Year (estimated)", + "1968-04-07": "Ashura Eve (estimated)", + "1968-04-08": "Ashura (estimated)", "1968-05-01": "Labor Day", - "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-06-08": "Prophet's Birthday (estimated)", "1968-12-16": "National Day", "1968-12-17": "National Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", - "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr Holiday (estimated)", + "1968-12-23": "Eid al-Fitr Holiday (estimated)", "1969-01-01": "New Year's Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha Holiday* (*estimated)", - "1969-03-01": "Eid al-Adha Holiday* (*estimated)", - "1969-03-19": "Islamic New Year* (*estimated)", - "1969-03-27": "Ashura Eve* (*estimated)", - "1969-03-28": "Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha Holiday (estimated)", + "1969-03-01": "Eid al-Adha Holiday (estimated)", + "1969-03-19": "Islamic New Year (estimated)", + "1969-03-27": "Ashura Eve (estimated)", + "1969-03-28": "Ashura (estimated)", "1969-05-01": "Labor Day", - "1969-05-28": "Prophet's Birthday* (*estimated)", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", - "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", + "1969-05-28": "Prophet's Birthday (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr Holiday (estimated)", + "1969-12-12": "Eid al-Fitr Holiday (estimated)", "1969-12-16": "National Day", "1969-12-17": "National Day", "1970-01-01": "New Year's Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha Holiday* (*estimated)", - "1970-02-18": "Eid al-Adha Holiday* (*estimated)", - "1970-03-09": "Islamic New Year* (*estimated)", - "1970-03-17": "Ashura Eve* (*estimated)", - "1970-03-18": "Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha Holiday (estimated)", + "1970-02-18": "Eid al-Adha Holiday (estimated)", + "1970-03-09": "Islamic New Year (estimated)", + "1970-03-17": "Ashura Eve (estimated)", + "1970-03-18": "Ashura (estimated)", "1970-05-01": "Labor Day", - "1970-05-18": "Prophet's Birthday* (*estimated)", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", - "1970-12-02": "Eid al-Fitr Holiday* (*estimated)", + "1970-05-18": "Prophet's Birthday (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr Holiday (estimated)", + "1970-12-02": "Eid al-Fitr Holiday (estimated)", "1970-12-16": "National Day", "1970-12-17": "National Day", "1971-01-01": "New Year's Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha Holiday* (*estimated)", - "1971-02-08": "Eid al-Adha Holiday* (*estimated)", - "1971-02-26": "Islamic New Year* (*estimated)", - "1971-03-06": "Ashura Eve* (*estimated)", - "1971-03-07": "Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha Holiday (estimated)", + "1971-02-08": "Eid al-Adha Holiday (estimated)", + "1971-02-26": "Islamic New Year (estimated)", + "1971-03-06": "Ashura Eve (estimated)", + "1971-03-07": "Ashura (estimated)", "1971-05-01": "Labor Day", - "1971-05-07": "Prophet's Birthday* (*estimated)", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", - "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", + "1971-05-07": "Prophet's Birthday (estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr Holiday (estimated)", + "1971-11-21": "Eid al-Fitr Holiday (estimated)", "1971-12-16": "National Day", "1971-12-17": "National Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha Holiday* (*estimated)", - "1972-01-28": "Eid al-Adha Holiday* (*estimated)", - "1972-02-16": "Islamic New Year* (*estimated)", - "1972-02-24": "Ashura Eve* (*estimated)", - "1972-02-25": "Ashura* (*estimated)", - "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha Holiday (estimated)", + "1972-01-28": "Eid al-Adha Holiday (estimated)", + "1972-02-16": "Islamic New Year (estimated)", + "1972-02-24": "Ashura Eve (estimated)", + "1972-02-25": "Ashura (estimated)", + "1972-04-25": "Prophet's Birthday (estimated)", "1972-05-01": "Labor Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", - "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr Holiday (estimated)", + "1972-11-09": "Eid al-Fitr Holiday (estimated)", "1972-12-16": "National Day", "1972-12-17": "National Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha Holiday* (*estimated)", - "1973-01-16": "Eid al-Adha Holiday* (*estimated)", - "1973-02-04": "Islamic New Year* (*estimated)", - "1973-02-12": "Ashura Eve* (*estimated)", - "1973-02-13": "Ashura* (*estimated)", - "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha Holiday (estimated)", + "1973-01-16": "Eid al-Adha Holiday (estimated)", + "1973-02-04": "Islamic New Year (estimated)", + "1973-02-12": "Ashura Eve (estimated)", + "1973-02-13": "Ashura (estimated)", + "1973-04-15": "Prophet's Birthday (estimated)", "1973-05-01": "Labor Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", - "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr Holiday (estimated)", + "1973-10-29": "Eid al-Fitr Holiday (estimated)", "1973-12-16": "National Day", "1973-12-17": "National Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha Holiday* (*estimated)", - "1974-01-05": "Eid al-Adha Holiday* (*estimated)", - "1974-01-24": "Islamic New Year* (*estimated)", - "1974-02-01": "Ashura Eve* (*estimated)", - "1974-02-02": "Ashura* (*estimated)", - "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha Holiday (estimated)", + "1974-01-05": "Eid al-Adha Holiday (estimated)", + "1974-01-24": "Islamic New Year (estimated)", + "1974-02-01": "Ashura Eve (estimated)", + "1974-02-02": "Ashura (estimated)", + "1974-04-04": "Prophet's Birthday (estimated)", "1974-05-01": "Labor Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", - "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr Holiday (estimated)", + "1974-10-18": "Eid al-Fitr Holiday (estimated)", "1974-12-16": "National Day", "1974-12-17": "National Day", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Eid al-Adha Holiday* (*estimated)", - "1974-12-26": "Eid al-Adha Holiday* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Eid al-Adha Holiday (estimated)", + "1974-12-26": "Eid al-Adha Holiday (estimated)", "1975-01-01": "New Year's Day", - "1975-01-13": "Islamic New Year* (*estimated)", - "1975-01-21": "Ashura Eve* (*estimated)", - "1975-01-22": "Ashura* (*estimated)", - "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-01-13": "Islamic New Year (estimated)", + "1975-01-21": "Ashura Eve (estimated)", + "1975-01-22": "Ashura (estimated)", + "1975-03-24": "Prophet's Birthday (estimated)", "1975-05-01": "Labor Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", - "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha Holiday* (*estimated)", - "1975-12-15": "Eid al-Adha Holiday* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr Holiday (estimated)", + "1975-10-08": "Eid al-Fitr Holiday (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha Holiday (estimated)", + "1975-12-15": "Eid al-Adha Holiday (estimated)", "1975-12-16": "National Day", "1975-12-17": "National Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Islamic New Year* (*estimated)", - "1976-01-10": "Ashura Eve* (*estimated)", - "1976-01-11": "Ashura* (*estimated)", - "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-01-02": "Islamic New Year (estimated)", + "1976-01-10": "Ashura Eve (estimated)", + "1976-01-11": "Ashura (estimated)", + "1976-03-12": "Prophet's Birthday (estimated)", "1976-05-01": "Labor Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", - "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha Holiday* (*estimated)", - "1976-12-03": "Eid al-Adha Holiday* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr Holiday (estimated)", + "1976-09-26": "Eid al-Fitr Holiday (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha Holiday (estimated)", + "1976-12-03": "Eid al-Adha Holiday (estimated)", "1976-12-16": "National Day", "1976-12-17": "National Day", - "1976-12-22": "Islamic New Year* (*estimated)", - "1976-12-30": "Ashura Eve* (*estimated)", - "1976-12-31": "Ashura* (*estimated)", + "1976-12-22": "Islamic New Year (estimated)", + "1976-12-30": "Ashura Eve (estimated)", + "1976-12-31": "Ashura (estimated)", "1977-01-01": "New Year's Day", - "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-03-02": "Prophet's Birthday (estimated)", "1977-05-01": "Labor Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", - "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha Holiday* (*estimated)", - "1977-11-23": "Eid al-Adha Holiday* (*estimated)", - "1977-12-11": "Islamic New Year* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr Holiday (estimated)", + "1977-09-16": "Eid al-Fitr Holiday (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha Holiday (estimated)", + "1977-11-23": "Eid al-Adha Holiday (estimated)", + "1977-12-11": "Islamic New Year (estimated)", "1977-12-16": "National Day", "1977-12-17": "National Day", - "1977-12-19": "Ashura Eve* (*estimated)", - "1977-12-20": "Ashura* (*estimated)", + "1977-12-19": "Ashura Eve (estimated)", + "1977-12-20": "Ashura (estimated)", "1978-01-01": "New Year's Day", - "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-02-19": "Prophet's Birthday (estimated)", "1978-05-01": "Labor Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", - "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha Holiday* (*estimated)", - "1978-11-12": "Eid al-Adha Holiday* (*estimated)", - "1978-12-01": "Islamic New Year* (*estimated)", - "1978-12-09": "Ashura Eve* (*estimated)", - "1978-12-10": "Ashura* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr Holiday (estimated)", + "1978-09-05": "Eid al-Fitr Holiday (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha Holiday (estimated)", + "1978-11-12": "Eid al-Adha Holiday (estimated)", + "1978-12-01": "Islamic New Year (estimated)", + "1978-12-09": "Ashura Eve (estimated)", + "1978-12-10": "Ashura (estimated)", "1978-12-16": "National Day", "1978-12-17": "National Day", "1979-01-01": "New Year's Day", - "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-02-09": "Prophet's Birthday (estimated)", "1979-05-01": "Labor Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", - "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha Holiday* (*estimated)", - "1979-11-02": "Eid al-Adha Holiday* (*estimated)", - "1979-11-20": "Islamic New Year* (*estimated)", - "1979-11-28": "Ashura Eve* (*estimated)", - "1979-11-29": "Ashura* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr Holiday (estimated)", + "1979-08-25": "Eid al-Fitr Holiday (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha Holiday (estimated)", + "1979-11-02": "Eid al-Adha Holiday (estimated)", + "1979-11-20": "Islamic New Year (estimated)", + "1979-11-28": "Ashura Eve (estimated)", + "1979-11-29": "Ashura (estimated)", "1979-12-16": "National Day", "1979-12-17": "National Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-01-30": "Prophet's Birthday (estimated)", "1980-05-01": "Labor Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", - "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha Holiday* (*estimated)", - "1980-10-21": "Eid al-Adha Holiday* (*estimated)", - "1980-11-09": "Islamic New Year* (*estimated)", - "1980-11-17": "Ashura Eve* (*estimated)", - "1980-11-18": "Ashura* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr Holiday (estimated)", + "1980-08-14": "Eid al-Fitr Holiday (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha Holiday (estimated)", + "1980-10-21": "Eid al-Adha Holiday (estimated)", + "1980-11-09": "Islamic New Year (estimated)", + "1980-11-17": "Ashura Eve (estimated)", + "1980-11-18": "Ashura (estimated)", "1980-12-16": "National Day", "1980-12-17": "National Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-01-18": "Prophet's Birthday (estimated)", "1981-05-01": "Labor Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", - "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha Holiday* (*estimated)", - "1981-10-10": "Eid al-Adha Holiday* (*estimated)", - "1981-10-28": "Islamic New Year* (*estimated)", - "1981-11-05": "Ashura Eve* (*estimated)", - "1981-11-06": "Ashura* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr Holiday (estimated)", + "1981-08-03": "Eid al-Fitr Holiday (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha Holiday (estimated)", + "1981-10-10": "Eid al-Adha Holiday (estimated)", + "1981-10-28": "Islamic New Year (estimated)", + "1981-11-05": "Ashura Eve (estimated)", + "1981-11-06": "Ashura (estimated)", "1981-12-16": "National Day", "1981-12-17": "National Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Prophet's Birthday* (*estimated)", + "1982-01-07": "Prophet's Birthday (estimated)", "1982-05-01": "Labor Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", - "1982-07-23": "Eid al-Fitr Holiday* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha Holiday* (*estimated)", - "1982-09-29": "Eid al-Adha Holiday* (*estimated)", - "1982-10-18": "Islamic New Year* (*estimated)", - "1982-10-26": "Ashura Eve* (*estimated)", - "1982-10-27": "Ashura* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr Holiday (estimated)", + "1982-07-23": "Eid al-Fitr Holiday (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha Holiday (estimated)", + "1982-09-29": "Eid al-Adha Holiday (estimated)", + "1982-10-18": "Islamic New Year (estimated)", + "1982-10-26": "Ashura Eve (estimated)", + "1982-10-27": "Ashura (estimated)", "1982-12-16": "National Day", "1982-12-17": "National Day", - "1982-12-27": "Prophet's Birthday* (*estimated)", + "1982-12-27": "Prophet's Birthday (estimated)", "1983-01-01": "New Year's Day", "1983-05-01": "Labor Day", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", - "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha Holiday* (*estimated)", - "1983-09-19": "Eid al-Adha Holiday* (*estimated)", - "1983-10-07": "Islamic New Year* (*estimated)", - "1983-10-15": "Ashura Eve* (*estimated)", - "1983-10-16": "Ashura* (*estimated)", - "1983-12-16": "National Day; Prophet's Birthday* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr Holiday (estimated)", + "1983-07-13": "Eid al-Fitr Holiday (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha Holiday (estimated)", + "1983-09-19": "Eid al-Adha Holiday (estimated)", + "1983-10-07": "Islamic New Year (estimated)", + "1983-10-15": "Ashura Eve (estimated)", + "1983-10-16": "Ashura (estimated)", + "1983-12-16": "National Day; Prophet's Birthday (estimated)", "1983-12-17": "National Day", "1984-01-01": "New Year's Day", "1984-05-01": "Labor Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", - "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha Holiday* (*estimated)", - "1984-09-07": "Eid al-Adha Holiday* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", - "1984-10-04": "Ashura Eve* (*estimated)", - "1984-10-05": "Ashura* (*estimated)", - "1984-12-04": "Prophet's Birthday* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr Holiday (estimated)", + "1984-07-02": "Eid al-Fitr Holiday (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha Holiday (estimated)", + "1984-09-07": "Eid al-Adha Holiday (estimated)", + "1984-09-26": "Islamic New Year (estimated)", + "1984-10-04": "Ashura Eve (estimated)", + "1984-10-05": "Ashura (estimated)", + "1984-12-04": "Prophet's Birthday (estimated)", "1984-12-16": "National Day", "1984-12-17": "National Day", "1985-01-01": "New Year's Day", "1985-05-01": "Labor Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", - "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha Holiday* (*estimated)", - "1985-08-28": "Eid al-Adha Holiday* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", - "1985-09-23": "Ashura Eve* (*estimated)", - "1985-09-24": "Ashura* (*estimated)", - "1985-11-24": "Prophet's Birthday* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr Holiday (estimated)", + "1985-06-21": "Eid al-Fitr Holiday (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha Holiday (estimated)", + "1985-08-28": "Eid al-Adha Holiday (estimated)", + "1985-09-15": "Islamic New Year (estimated)", + "1985-09-23": "Ashura Eve (estimated)", + "1985-09-24": "Ashura (estimated)", + "1985-11-24": "Prophet's Birthday (estimated)", "1985-12-16": "National Day", "1985-12-17": "National Day", "1986-01-01": "New Year's Day", "1986-05-01": "Labor Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", - "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha Holiday* (*estimated)", - "1986-08-17": "Eid al-Adha Holiday* (*estimated)", - "1986-09-05": "Islamic New Year* (*estimated)", - "1986-09-13": "Ashura Eve* (*estimated)", - "1986-09-14": "Ashura* (*estimated)", - "1986-11-14": "Prophet's Birthday* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr Holiday (estimated)", + "1986-06-10": "Eid al-Fitr Holiday (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha Holiday (estimated)", + "1986-08-17": "Eid al-Adha Holiday (estimated)", + "1986-09-05": "Islamic New Year (estimated)", + "1986-09-13": "Ashura Eve (estimated)", + "1986-09-14": "Ashura (estimated)", + "1986-11-14": "Prophet's Birthday (estimated)", "1986-12-16": "National Day", "1986-12-17": "National Day", "1987-01-01": "New Year's Day", "1987-05-01": "Labor Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", - "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha Holiday* (*estimated)", - "1987-08-06": "Eid al-Adha Holiday* (*estimated)", - "1987-08-25": "Islamic New Year* (*estimated)", - "1987-09-02": "Ashura Eve* (*estimated)", - "1987-09-03": "Ashura* (*estimated)", - "1987-11-03": "Prophet's Birthday* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr Holiday (estimated)", + "1987-05-30": "Eid al-Fitr Holiday (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha Holiday (estimated)", + "1987-08-06": "Eid al-Adha Holiday (estimated)", + "1987-08-25": "Islamic New Year (estimated)", + "1987-09-02": "Ashura Eve (estimated)", + "1987-09-03": "Ashura (estimated)", + "1987-11-03": "Prophet's Birthday (estimated)", "1987-12-16": "National Day", "1987-12-17": "National Day", "1988-01-01": "New Year's Day", "1988-05-01": "Labor Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", - "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha Holiday* (*estimated)", - "1988-07-25": "Eid al-Adha Holiday* (*estimated)", - "1988-08-13": "Islamic New Year* (*estimated)", - "1988-08-21": "Ashura Eve* (*estimated)", - "1988-08-22": "Ashura* (*estimated)", - "1988-10-22": "Prophet's Birthday* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr Holiday (estimated)", + "1988-05-18": "Eid al-Fitr Holiday (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha Holiday (estimated)", + "1988-07-25": "Eid al-Adha Holiday (estimated)", + "1988-08-13": "Islamic New Year (estimated)", + "1988-08-21": "Ashura Eve (estimated)", + "1988-08-22": "Ashura (estimated)", + "1988-10-22": "Prophet's Birthday (estimated)", "1988-12-16": "National Day", "1988-12-17": "National Day", "1989-01-01": "New Year's Day", "1989-05-01": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", - "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha Holiday* (*estimated)", - "1989-07-15": "Eid al-Adha Holiday* (*estimated)", - "1989-08-02": "Islamic New Year* (*estimated)", - "1989-08-10": "Ashura Eve* (*estimated)", - "1989-08-11": "Ashura* (*estimated)", - "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr Holiday (estimated)", + "1989-05-08": "Eid al-Fitr Holiday (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha Holiday (estimated)", + "1989-07-15": "Eid al-Adha Holiday (estimated)", + "1989-08-02": "Islamic New Year (estimated)", + "1989-08-10": "Ashura Eve (estimated)", + "1989-08-11": "Ashura (estimated)", + "1989-10-11": "Prophet's Birthday (estimated)", "1989-12-16": "National Day", "1989-12-17": "National Day", "1990-01-01": "New Year's Day", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", - "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr Holiday (estimated)", + "1990-04-28": "Eid al-Fitr Holiday (estimated)", "1990-05-01": "Labor Day", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha Holiday* (*estimated)", - "1990-07-04": "Eid al-Adha Holiday* (*estimated)", - "1990-07-23": "Islamic New Year* (*estimated)", - "1990-07-31": "Ashura Eve* (*estimated)", - "1990-08-01": "Ashura* (*estimated)", - "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha Holiday (estimated)", + "1990-07-04": "Eid al-Adha Holiday (estimated)", + "1990-07-23": "Islamic New Year (estimated)", + "1990-07-31": "Ashura Eve (estimated)", + "1990-08-01": "Ashura (estimated)", + "1990-10-01": "Prophet's Birthday (estimated)", "1990-12-16": "National Day", "1990-12-17": "National Day", "1991-01-01": "New Year's Day", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", - "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr Holiday (estimated)", + "1991-04-17": "Eid al-Fitr Holiday (estimated)", "1991-05-01": "Labor Day", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha Holiday* (*estimated)", - "1991-06-24": "Eid al-Adha Holiday* (*estimated)", - "1991-07-12": "Islamic New Year* (*estimated)", - "1991-07-20": "Ashura Eve* (*estimated)", - "1991-07-21": "Ashura* (*estimated)", - "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha Holiday (estimated)", + "1991-06-24": "Eid al-Adha Holiday (estimated)", + "1991-07-12": "Islamic New Year (estimated)", + "1991-07-20": "Ashura Eve (estimated)", + "1991-07-21": "Ashura (estimated)", + "1991-09-20": "Prophet's Birthday (estimated)", "1991-12-16": "National Day", "1991-12-17": "National Day", "1992-01-01": "New Year's Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", - "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr Holiday (estimated)", + "1992-04-06": "Eid al-Fitr Holiday (estimated)", "1992-05-01": "Labor Day", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha Holiday* (*estimated)", - "1992-06-13": "Eid al-Adha Holiday* (*estimated)", - "1992-07-01": "Islamic New Year* (*estimated)", - "1992-07-09": "Ashura Eve* (*estimated)", - "1992-07-10": "Ashura* (*estimated)", - "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha Holiday (estimated)", + "1992-06-13": "Eid al-Adha Holiday (estimated)", + "1992-07-01": "Islamic New Year (estimated)", + "1992-07-09": "Ashura Eve (estimated)", + "1992-07-10": "Ashura (estimated)", + "1992-09-09": "Prophet's Birthday (estimated)", "1992-12-16": "National Day", "1992-12-17": "National Day", "1993-01-01": "New Year's Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", - "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr Holiday (estimated)", + "1993-03-26": "Eid al-Fitr Holiday (estimated)", "1993-05-01": "Labor Day", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha Holiday* (*estimated)", - "1993-06-02": "Eid al-Adha Holiday* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", - "1993-06-29": "Ashura Eve* (*estimated)", - "1993-06-30": "Ashura* (*estimated)", - "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha Holiday (estimated)", + "1993-06-02": "Eid al-Adha Holiday (estimated)", + "1993-06-21": "Islamic New Year (estimated)", + "1993-06-29": "Ashura Eve (estimated)", + "1993-06-30": "Ashura (estimated)", + "1993-08-29": "Prophet's Birthday (estimated)", "1993-12-16": "National Day", "1993-12-17": "National Day", "1994-01-01": "New Year's Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", - "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr Holiday (estimated)", + "1994-03-15": "Eid al-Fitr Holiday (estimated)", "1994-05-01": "Labor Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha Holiday* (*estimated)", - "1994-05-22": "Eid al-Adha Holiday* (*estimated)", - "1994-06-10": "Islamic New Year* (*estimated)", - "1994-06-18": "Ashura Eve* (*estimated)", - "1994-06-19": "Ashura* (*estimated)", - "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha Holiday (estimated)", + "1994-05-22": "Eid al-Adha Holiday (estimated)", + "1994-06-10": "Islamic New Year (estimated)", + "1994-06-18": "Ashura Eve (estimated)", + "1994-06-19": "Ashura (estimated)", + "1994-08-19": "Prophet's Birthday (estimated)", "1994-12-16": "National Day", "1994-12-17": "National Day", "1995-01-01": "New Year's Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", - "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr Holiday (estimated)", + "1995-03-04": "Eid al-Fitr Holiday (estimated)", "1995-05-01": "Labor Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha Holiday* (*estimated)", - "1995-05-11": "Eid al-Adha Holiday* (*estimated)", - "1995-05-30": "Islamic New Year* (*estimated)", - "1995-06-07": "Ashura Eve* (*estimated)", - "1995-06-08": "Ashura* (*estimated)", - "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha Holiday (estimated)", + "1995-05-11": "Eid al-Adha Holiday (estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-07": "Ashura Eve (estimated)", + "1995-06-08": "Ashura (estimated)", + "1995-08-08": "Prophet's Birthday (estimated)", "1995-12-16": "National Day", "1995-12-17": "National Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", - "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha Holiday* (*estimated)", - "1996-04-29": "Eid al-Adha Holiday* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr Holiday (estimated)", + "1996-02-21": "Eid al-Fitr Holiday (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha Holiday (estimated)", + "1996-04-29": "Eid al-Adha Holiday (estimated)", "1996-05-01": "Labor Day", - "1996-05-18": "Islamic New Year* (*estimated)", - "1996-05-26": "Ashura Eve* (*estimated)", - "1996-05-27": "Ashura* (*estimated)", - "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-05-26": "Ashura Eve (estimated)", + "1996-05-27": "Ashura (estimated)", + "1996-07-27": "Prophet's Birthday (estimated)", "1996-12-16": "National Day", "1996-12-17": "National Day", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", - "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha Holiday* (*estimated)", - "1997-04-19": "Eid al-Adha Holiday* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr Holiday (estimated)", + "1997-02-10": "Eid al-Fitr Holiday (estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha Holiday (estimated)", + "1997-04-19": "Eid al-Adha Holiday (estimated)", "1997-05-01": "Labor Day", - "1997-05-07": "Islamic New Year* (*estimated)", - "1997-05-15": "Ashura Eve* (*estimated)", - "1997-05-16": "Ashura* (*estimated)", - "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-15": "Ashura Eve (estimated)", + "1997-05-16": "Ashura (estimated)", + "1997-07-16": "Prophet's Birthday (estimated)", "1997-12-16": "National Day", "1997-12-17": "National Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", - "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha Holiday* (*estimated)", - "1998-04-09": "Eid al-Adha Holiday* (*estimated)", - "1998-04-27": "Islamic New Year* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr Holiday (estimated)", + "1998-01-31": "Eid al-Fitr Holiday (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha Holiday (estimated)", + "1998-04-09": "Eid al-Adha Holiday (estimated)", + "1998-04-27": "Islamic New Year (estimated)", "1998-05-01": "Labor Day", - "1998-05-05": "Ashura Eve* (*estimated)", - "1998-05-06": "Ashura* (*estimated)", - "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-05-05": "Ashura Eve (estimated)", + "1998-05-06": "Ashura (estimated)", + "1998-07-06": "Prophet's Birthday (estimated)", "1998-12-16": "National Day", "1998-12-17": "National Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", - "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha Holiday* (*estimated)", - "1999-03-29": "Eid al-Adha Holiday* (*estimated)", - "1999-04-17": "Islamic New Year* (*estimated)", - "1999-04-25": "Ashura Eve* (*estimated)", - "1999-04-26": "Ashura* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr Holiday (estimated)", + "1999-01-20": "Eid al-Fitr Holiday (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha Holiday (estimated)", + "1999-03-29": "Eid al-Adha Holiday (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-04-25": "Ashura Eve (estimated)", + "1999-04-26": "Ashura (estimated)", "1999-05-01": "Labor Day", - "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-06-26": "Prophet's Birthday (estimated)", "1999-12-16": "National Day", "1999-12-17": "National Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", - "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha Holiday* (*estimated)", - "2000-03-18": "Eid al-Adha Holiday* (*estimated)", - "2000-04-06": "Islamic New Year* (*estimated)", - "2000-04-14": "Ashura Eve* (*estimated)", - "2000-04-15": "Ashura* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr Holiday (estimated)", + "2000-01-10": "Eid al-Fitr Holiday (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha Holiday (estimated)", + "2000-03-18": "Eid al-Adha Holiday (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-04-14": "Ashura Eve (estimated)", + "2000-04-15": "Ashura (estimated)", "2000-05-01": "Labor Day", - "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-06-14": "Prophet's Birthday (estimated)", "2000-12-16": "National Day", "2000-12-17": "National Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", - "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr Holiday (estimated)", + "2000-12-29": "Eid al-Fitr Holiday (estimated)", "2001-01-01": "New Year's Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha Holiday* (*estimated)", - "2001-03-07": "Eid al-Adha Holiday* (*estimated)", - "2001-03-26": "Islamic New Year* (*estimated)", - "2001-04-03": "Ashura Eve* (*estimated)", - "2001-04-04": "Ashura* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha Holiday (estimated)", + "2001-03-07": "Eid al-Adha Holiday (estimated)", + "2001-03-26": "Islamic New Year (estimated)", + "2001-04-03": "Ashura Eve (estimated)", + "2001-04-04": "Ashura (estimated)", "2001-05-01": "Labor Day", - "2001-06-04": "Prophet's Birthday* (*estimated)", - "2001-12-16": "Eid al-Fitr* (*estimated); National Day", - "2001-12-17": "Eid al-Fitr Holiday* (*estimated); National Day", - "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", + "2001-06-04": "Prophet's Birthday (estimated)", + "2001-12-16": "Eid al-Fitr (estimated); National Day", + "2001-12-17": "Eid al-Fitr Holiday (estimated); National Day", + "2001-12-18": "Eid al-Fitr Holiday (estimated)", "2002-01-01": "New Year's Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha Holiday* (*estimated)", - "2002-02-24": "Eid al-Adha Holiday* (*estimated)", - "2002-03-15": "Islamic New Year* (*estimated)", - "2002-03-23": "Ashura Eve* (*estimated)", - "2002-03-24": "Ashura* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha Holiday (estimated)", + "2002-02-24": "Eid al-Adha Holiday (estimated)", + "2002-03-15": "Islamic New Year (estimated)", + "2002-03-23": "Ashura Eve (estimated)", + "2002-03-24": "Ashura (estimated)", "2002-05-01": "Labor Day", - "2002-05-24": "Prophet's Birthday* (*estimated)", - "2002-12-05": "Eid al-Fitr* (*estimated)", - "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", - "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", + "2002-05-24": "Prophet's Birthday (estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", + "2002-12-06": "Eid al-Fitr Holiday (estimated)", + "2002-12-07": "Eid al-Fitr Holiday (estimated)", "2002-12-16": "National Day", "2002-12-17": "National Day", "2003-01-01": "New Year's Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha Holiday* (*estimated)", - "2003-02-13": "Eid al-Adha Holiday* (*estimated)", - "2003-03-04": "Islamic New Year* (*estimated)", - "2003-03-12": "Ashura Eve* (*estimated)", - "2003-03-13": "Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha Holiday (estimated)", + "2003-02-13": "Eid al-Adha Holiday (estimated)", + "2003-03-04": "Islamic New Year (estimated)", + "2003-03-12": "Ashura Eve (estimated)", + "2003-03-13": "Ashura (estimated)", "2003-05-01": "Labor Day", - "2003-05-13": "Prophet's Birthday* (*estimated)", - "2003-11-25": "Eid al-Fitr* (*estimated)", - "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", - "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", + "2003-05-13": "Prophet's Birthday (estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", + "2003-11-26": "Eid al-Fitr Holiday (estimated)", + "2003-11-27": "Eid al-Fitr Holiday (estimated)", "2003-12-16": "National Day", "2003-12-17": "National Day", "2004-01-01": "New Year's Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha Holiday* (*estimated)", - "2004-02-03": "Eid al-Adha Holiday* (*estimated)", - "2004-02-21": "Islamic New Year* (*estimated)", - "2004-02-29": "Ashura Eve* (*estimated)", - "2004-03-01": "Ashura* (*estimated)", - "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", - "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha Holiday (estimated)", + "2004-02-03": "Eid al-Adha Holiday (estimated)", + "2004-02-21": "Islamic New Year (estimated)", + "2004-02-29": "Ashura Eve (estimated)", + "2004-03-01": "Ashura (estimated)", + "2004-05-01": "Labor Day; Prophet's Birthday (estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr Holiday (estimated)", + "2004-11-16": "Eid al-Fitr Holiday (estimated)", "2004-12-16": "National Day", "2004-12-17": "National Day", "2005-01-01": "New Year's Day", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha Holiday* (*estimated)", - "2005-01-23": "Eid al-Adha Holiday* (*estimated)", - "2005-02-10": "Islamic New Year* (*estimated)", - "2005-02-18": "Ashura Eve* (*estimated)", - "2005-02-19": "Ashura* (*estimated)", - "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha Holiday (estimated)", + "2005-01-23": "Eid al-Adha Holiday (estimated)", + "2005-02-10": "Islamic New Year (estimated)", + "2005-02-18": "Ashura Eve (estimated)", + "2005-02-19": "Ashura (estimated)", + "2005-04-21": "Prophet's Birthday (estimated)", "2005-05-01": "Labor Day", - "2005-11-03": "Eid al-Fitr* (*estimated)", - "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", - "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", + "2005-11-04": "Eid al-Fitr Holiday (estimated)", + "2005-11-05": "Eid al-Fitr Holiday (estimated)", "2005-12-16": "National Day", "2005-12-17": "National Day", "2006-01-01": "New Year's Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha Holiday* (*estimated)", - "2006-01-12": "Eid al-Adha Holiday* (*estimated)", - "2006-01-31": "Islamic New Year* (*estimated)", - "2006-02-08": "Ashura Eve* (*estimated)", - "2006-02-09": "Ashura* (*estimated)", - "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha Holiday (estimated)", + "2006-01-12": "Eid al-Adha Holiday (estimated)", + "2006-01-31": "Islamic New Year (estimated)", + "2006-02-08": "Ashura Eve (estimated)", + "2006-02-09": "Ashura (estimated)", + "2006-04-10": "Prophet's Birthday (estimated)", "2006-05-01": "Labor Day", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", - "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-10-24": "Eid al-Fitr Holiday (estimated)", + "2006-10-25": "Eid al-Fitr Holiday (estimated)", "2006-12-16": "National Day", "2006-12-17": "National Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", - "2007-01-02": "Eid al-Adha Holiday* (*estimated)", - "2007-01-20": "Islamic New Year* (*estimated)", - "2007-01-28": "Ashura Eve* (*estimated)", - "2007-01-29": "Ashura* (*estimated)", - "2007-03-31": "Prophet's Birthday* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha Holiday (estimated); New Year's Day", + "2007-01-02": "Eid al-Adha Holiday (estimated)", + "2007-01-20": "Islamic New Year (estimated)", + "2007-01-28": "Ashura Eve (estimated)", + "2007-01-29": "Ashura (estimated)", + "2007-03-31": "Prophet's Birthday (estimated)", "2007-05-01": "Labor Day", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", - "2007-10-15": "Eid al-Fitr Holiday* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-14": "Eid al-Fitr Holiday (estimated)", + "2007-10-15": "Eid al-Fitr Holiday (estimated)", "2007-12-16": "National Day", "2007-12-17": "National Day", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha Holiday* (*estimated)", - "2007-12-22": "Eid al-Adha Holiday* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha Holiday (estimated)", + "2007-12-22": "Eid al-Adha Holiday (estimated)", "2008-01-01": "New Year's Day", - "2008-01-10": "Islamic New Year* (*estimated)", - "2008-01-18": "Ashura Eve* (*estimated)", - "2008-01-19": "Ashura* (*estimated)", - "2008-03-20": "Prophet's Birthday* (*estimated)", + "2008-01-10": "Islamic New Year (estimated)", + "2008-01-18": "Ashura Eve (estimated)", + "2008-01-19": "Ashura (estimated)", + "2008-03-20": "Prophet's Birthday (estimated)", "2008-05-01": "Labor Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", - "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha Holiday* (*estimated)", - "2008-12-10": "Eid al-Adha Holiday* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-10-02": "Eid al-Fitr Holiday (estimated)", + "2008-10-03": "Eid al-Fitr Holiday (estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha Holiday (estimated)", + "2008-12-10": "Eid al-Adha Holiday (estimated)", "2008-12-16": "National Day", "2008-12-17": "National Day", - "2008-12-29": "Islamic New Year* (*estimated)", + "2008-12-29": "Islamic New Year (estimated)", "2009-01-01": "New Year's Day", - "2009-01-06": "Ashura Eve* (*estimated)", - "2009-01-07": "Ashura* (*estimated)", - "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-01-06": "Ashura Eve (estimated)", + "2009-01-07": "Ashura (estimated)", + "2009-03-09": "Prophet's Birthday (estimated)", "2009-05-01": "Labor Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", - "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha Holiday* (*estimated)", - "2009-11-29": "Eid al-Adha Holiday* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr Holiday (estimated)", + "2009-09-22": "Eid al-Fitr Holiday (estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha Holiday (estimated)", + "2009-11-29": "Eid al-Adha Holiday (estimated)", "2009-12-16": "National Day", "2009-12-17": "National Day", - "2009-12-18": "Islamic New Year* (*estimated)", - "2009-12-26": "Ashura Eve* (*estimated)", - "2009-12-27": "Ashura* (*estimated)", + "2009-12-18": "Islamic New Year (estimated)", + "2009-12-26": "Ashura Eve (estimated)", + "2009-12-27": "Ashura (estimated)", "2010-01-01": "New Year's Day", - "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-02-26": "Prophet's Birthday (estimated)", "2010-05-01": "Labor Day", - "2010-09-10": "Eid al-Fitr* (*estimated)", - "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", - "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha Holiday* (*estimated)", - "2010-11-18": "Eid al-Adha Holiday* (*estimated)", - "2010-12-07": "Islamic New Year* (*estimated)", - "2010-12-15": "Ashura Eve* (*estimated)", - "2010-12-16": "Ashura* (*estimated); National Day", + "2010-09-10": "Eid al-Fitr (estimated)", + "2010-09-11": "Eid al-Fitr Holiday (estimated)", + "2010-09-12": "Eid al-Fitr Holiday (estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha Holiday (estimated)", + "2010-11-18": "Eid al-Adha Holiday (estimated)", + "2010-12-07": "Islamic New Year (estimated)", + "2010-12-15": "Ashura Eve (estimated)", + "2010-12-16": "Ashura (estimated); National Day", "2010-12-17": "National Day", "2011-01-01": "New Year's Day", - "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-02-15": "Prophet's Birthday (estimated)", "2011-05-01": "Labor Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", - "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", - "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha Holiday* (*estimated)", - "2011-11-08": "Eid al-Adha Holiday* (*estimated)", - "2011-11-26": "Islamic New Year* (*estimated)", - "2011-12-04": "Ashura Eve* (*estimated)", - "2011-12-05": "Ashura* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", + "2011-08-31": "Eid al-Fitr Holiday (estimated)", + "2011-09-01": "Eid al-Fitr Holiday (estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha Holiday (estimated)", + "2011-11-08": "Eid al-Adha Holiday (estimated)", + "2011-11-26": "Islamic New Year (estimated)", + "2011-12-04": "Ashura Eve (estimated)", + "2011-12-05": "Ashura (estimated)", "2011-12-16": "National Day", "2011-12-17": "National Day", "2012-01-01": "New Year's Day", - "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-02-04": "Prophet's Birthday (estimated)", "2012-05-01": "Labor Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", - "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha Holiday* (*estimated)", - "2012-10-28": "Eid al-Adha Holiday* (*estimated)", - "2012-11-15": "Islamic New Year* (*estimated)", - "2012-11-23": "Ashura Eve* (*estimated)", - "2012-11-24": "Ashura* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr Holiday (estimated)", + "2012-08-21": "Eid al-Fitr Holiday (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha Holiday (estimated)", + "2012-10-28": "Eid al-Adha Holiday (estimated)", + "2012-11-15": "Islamic New Year (estimated)", + "2012-11-23": "Ashura Eve (estimated)", + "2012-11-24": "Ashura (estimated)", "2012-12-16": "National Day", "2012-12-17": "National Day", "2013-01-01": "New Year's Day", - "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-01-24": "Prophet's Birthday (estimated)", "2013-05-01": "Labor Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", - "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha Holiday* (*estimated)", - "2013-10-17": "Eid al-Adha Holiday* (*estimated)", - "2013-11-04": "Islamic New Year* (*estimated)", - "2013-11-12": "Ashura Eve* (*estimated)", - "2013-11-13": "Ashura* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-08-09": "Eid al-Fitr Holiday (estimated)", + "2013-08-10": "Eid al-Fitr Holiday (estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha Holiday (estimated)", + "2013-10-17": "Eid al-Adha Holiday (estimated)", + "2013-11-04": "Islamic New Year (estimated)", + "2013-11-12": "Ashura Eve (estimated)", + "2013-11-13": "Ashura (estimated)", "2013-12-16": "National Day", "2013-12-17": "National Day", "2014-01-01": "New Year's Day", - "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-01-13": "Prophet's Birthday (estimated)", "2014-05-01": "Labor Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", - "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha Holiday* (*estimated)", - "2014-10-06": "Eid al-Adha Holiday* (*estimated)", - "2014-10-25": "Islamic New Year* (*estimated)", - "2014-11-02": "Ashura Eve* (*estimated)", - "2014-11-03": "Ashura* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-07-29": "Eid al-Fitr Holiday (estimated)", + "2014-07-30": "Eid al-Fitr Holiday (estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha Holiday (estimated)", + "2014-10-06": "Eid al-Adha Holiday (estimated)", + "2014-10-25": "Islamic New Year (estimated)", + "2014-11-02": "Ashura Eve (estimated)", + "2014-11-03": "Ashura (estimated)", "2014-12-16": "National Day", "2014-12-17": "National Day", "2015-01-01": "New Year's Day", - "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-01-03": "Prophet's Birthday (estimated)", "2015-05-01": "Labor Day", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", - "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha Holiday* (*estimated)", - "2015-09-25": "Eid al-Adha Holiday* (*estimated)", - "2015-10-14": "Islamic New Year* (*estimated)", - "2015-10-22": "Ashura Eve* (*estimated)", - "2015-10-23": "Ashura* (*estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-07-18": "Eid al-Fitr Holiday (estimated)", + "2015-07-19": "Eid al-Fitr Holiday (estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha Holiday (estimated)", + "2015-09-25": "Eid al-Adha Holiday (estimated)", + "2015-10-14": "Islamic New Year (estimated)", + "2015-10-22": "Ashura Eve (estimated)", + "2015-10-23": "Ashura (estimated)", "2015-12-16": "National Day", "2015-12-17": "National Day", - "2015-12-23": "Prophet's Birthday* (*estimated)", + "2015-12-23": "Prophet's Birthday (estimated)", "2016-01-01": "New Year's Day", "2016-05-01": "Labor Day", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", - "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha Holiday* (*estimated)", - "2016-09-13": "Eid al-Adha Holiday* (*estimated)", - "2016-10-02": "Islamic New Year* (*estimated)", - "2016-10-10": "Ashura Eve* (*estimated)", - "2016-10-11": "Ashura* (*estimated)", - "2016-12-11": "Prophet's Birthday* (*estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-07-07": "Eid al-Fitr Holiday (estimated)", + "2016-07-08": "Eid al-Fitr Holiday (estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha Holiday (estimated)", + "2016-09-13": "Eid al-Adha Holiday (estimated)", + "2016-10-02": "Islamic New Year (estimated)", + "2016-10-10": "Ashura Eve (estimated)", + "2016-10-11": "Ashura (estimated)", + "2016-12-11": "Prophet's Birthday (estimated)", "2016-12-16": "National Day", "2016-12-17": "National Day", "2017-01-01": "New Year's Day", "2017-05-01": "Labor Day", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", - "2017-06-27": "Eid al-Fitr Holiday* (*estimated)", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha Holiday* (*estimated)", - "2017-09-03": "Eid al-Adha Holiday* (*estimated)", - "2017-09-21": "Islamic New Year* (*estimated)", - "2017-09-29": "Ashura Eve* (*estimated)", - "2017-09-30": "Ashura* (*estimated)", - "2017-11-30": "Prophet's Birthday* (*estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-06-26": "Eid al-Fitr Holiday (estimated)", + "2017-06-27": "Eid al-Fitr Holiday (estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha Holiday (estimated)", + "2017-09-03": "Eid al-Adha Holiday (estimated)", + "2017-09-21": "Islamic New Year (estimated)", + "2017-09-29": "Ashura Eve (estimated)", + "2017-09-30": "Ashura (estimated)", + "2017-11-30": "Prophet's Birthday (estimated)", "2017-12-16": "National Day", "2017-12-17": "National Day", "2018-01-01": "New Year's Day", "2018-05-01": "Labor Day", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", - "2018-06-17": "Eid al-Fitr Holiday* (*estimated)", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha Holiday* (*estimated)", - "2018-08-23": "Eid al-Adha Holiday* (*estimated)", - "2018-09-11": "Islamic New Year* (*estimated)", - "2018-09-19": "Ashura Eve* (*estimated)", - "2018-09-20": "Ashura* (*estimated)", - "2018-11-20": "Prophet's Birthday* (*estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-06-16": "Eid al-Fitr Holiday (estimated)", + "2018-06-17": "Eid al-Fitr Holiday (estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha Holiday (estimated)", + "2018-08-23": "Eid al-Adha Holiday (estimated)", + "2018-09-11": "Islamic New Year (estimated)", + "2018-09-19": "Ashura Eve (estimated)", + "2018-09-20": "Ashura (estimated)", + "2018-11-20": "Prophet's Birthday (estimated)", "2018-12-16": "National Day", "2018-12-17": "National Day", "2019-01-01": "New Year's Day", "2019-05-01": "Labor Day", - "2019-06-04": "Eid al-Fitr* (*estimated)", - "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", - "2019-06-06": "Eid al-Fitr Holiday* (*estimated)", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha Holiday* (*estimated)", - "2019-08-13": "Eid al-Adha Holiday* (*estimated)", - "2019-08-31": "Islamic New Year* (*estimated)", - "2019-09-08": "Ashura Eve* (*estimated)", - "2019-09-09": "Ashura* (*estimated)", - "2019-11-09": "Prophet's Birthday* (*estimated)", + "2019-06-04": "Eid al-Fitr (estimated)", + "2019-06-05": "Eid al-Fitr Holiday (estimated)", + "2019-06-06": "Eid al-Fitr Holiday (estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha Holiday (estimated)", + "2019-08-13": "Eid al-Adha Holiday (estimated)", + "2019-08-31": "Islamic New Year (estimated)", + "2019-09-08": "Ashura Eve (estimated)", + "2019-09-09": "Ashura (estimated)", + "2019-11-09": "Prophet's Birthday (estimated)", "2019-12-16": "National Day", "2019-12-17": "National Day", "2020-01-01": "New Year's Day", "2020-05-01": "Labor Day", - "2020-05-24": "Eid al-Fitr* (*estimated)", - "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", - "2020-05-26": "Eid al-Fitr Holiday* (*estimated)", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha Holiday* (*estimated)", - "2020-08-02": "Eid al-Adha Holiday* (*estimated)", - "2020-08-20": "Islamic New Year* (*estimated)", - "2020-08-28": "Ashura Eve* (*estimated)", - "2020-08-29": "Ashura* (*estimated)", - "2020-10-29": "Prophet's Birthday* (*estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", + "2020-05-25": "Eid al-Fitr Holiday (estimated)", + "2020-05-26": "Eid al-Fitr Holiday (estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha Holiday (estimated)", + "2020-08-02": "Eid al-Adha Holiday (estimated)", + "2020-08-20": "Islamic New Year (estimated)", + "2020-08-28": "Ashura Eve (estimated)", + "2020-08-29": "Ashura (estimated)", + "2020-10-29": "Prophet's Birthday (estimated)", "2020-12-16": "National Day", "2020-12-17": "National Day", "2021-01-01": "New Year's Day", "2021-05-01": "Labor Day", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", - "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha Holiday* (*estimated)", - "2021-07-22": "Eid al-Adha Holiday* (*estimated)", - "2021-08-09": "Islamic New Year* (*estimated)", - "2021-08-17": "Ashura Eve* (*estimated)", - "2021-08-18": "Ashura* (*estimated)", - "2021-10-18": "Prophet's Birthday* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-05-14": "Eid al-Fitr Holiday (estimated)", + "2021-05-15": "Eid al-Fitr Holiday (estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha Holiday (estimated)", + "2021-07-22": "Eid al-Adha Holiday (estimated)", + "2021-08-09": "Islamic New Year (estimated)", + "2021-08-17": "Ashura Eve (estimated)", + "2021-08-18": "Ashura (estimated)", + "2021-10-18": "Prophet's Birthday (estimated)", "2021-12-16": "National Day", "2021-12-17": "National Day", "2022-01-01": "New Year's Day", @@ -1023,9 +1023,9 @@ "2022-05-02": "Eid al-Fitr", "2022-05-03": "Eid al-Fitr Holiday", "2022-05-04": "Eid al-Fitr Holiday", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha Holiday* (*estimated)", - "2022-07-11": "Eid al-Adha Holiday* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha Holiday (estimated)", + "2022-07-11": "Eid al-Adha Holiday (estimated)", "2022-07-30": "Islamic New Year", "2022-08-07": "Ashura Eve", "2022-08-08": "Ashura", @@ -1033,402 +1033,402 @@ "2022-12-16": "National Day", "2022-12-17": "National Day", "2023-01-01": "New Year's Day", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", - "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", + "2023-04-22": "Eid al-Fitr Holiday (estimated)", + "2023-04-23": "Eid al-Fitr Holiday (estimated)", "2023-05-01": "Labor Day", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha Holiday* (*estimated)", - "2023-06-30": "Eid al-Adha Holiday* (*estimated)", - "2023-07-19": "Islamic New Year* (*estimated)", - "2023-07-27": "Ashura Eve* (*estimated)", - "2023-07-28": "Ashura* (*estimated)", - "2023-09-27": "Prophet's Birthday* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha Holiday (estimated)", + "2023-06-30": "Eid al-Adha Holiday (estimated)", + "2023-07-19": "Islamic New Year (estimated)", + "2023-07-27": "Ashura Eve (estimated)", + "2023-07-28": "Ashura (estimated)", + "2023-09-27": "Prophet's Birthday (estimated)", "2023-12-16": "National Day", "2023-12-17": "National Day", "2024-01-01": "New Year's Day", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", - "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr Holiday (estimated)", + "2024-04-12": "Eid al-Fitr Holiday (estimated)", "2024-05-01": "Labor Day", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha Holiday* (*estimated)", - "2024-06-18": "Eid al-Adha Holiday* (*estimated)", - "2024-07-07": "Islamic New Year* (*estimated)", - "2024-07-15": "Ashura Eve* (*estimated)", - "2024-07-16": "Ashura* (*estimated)", - "2024-09-15": "Prophet's Birthday* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha Holiday (estimated)", + "2024-06-18": "Eid al-Adha Holiday (estimated)", + "2024-07-07": "Islamic New Year (estimated)", + "2024-07-15": "Ashura Eve (estimated)", + "2024-07-16": "Ashura (estimated)", + "2024-09-15": "Prophet's Birthday (estimated)", "2024-12-16": "National Day", "2024-12-17": "National Day", "2025-01-01": "New Year's Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", - "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr Holiday (estimated)", + "2025-04-01": "Eid al-Fitr Holiday (estimated)", "2025-05-01": "Labor Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha Holiday* (*estimated)", - "2025-06-08": "Eid al-Adha Holiday* (*estimated)", - "2025-06-26": "Islamic New Year* (*estimated)", - "2025-07-04": "Ashura Eve* (*estimated)", - "2025-07-05": "Ashura* (*estimated)", - "2025-09-04": "Prophet's Birthday* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha Holiday (estimated)", + "2025-06-08": "Eid al-Adha Holiday (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-07-04": "Ashura Eve (estimated)", + "2025-07-05": "Ashura (estimated)", + "2025-09-04": "Prophet's Birthday (estimated)", "2025-12-16": "National Day", "2025-12-17": "National Day", "2026-01-01": "New Year's Day", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", - "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr Holiday (estimated)", + "2026-03-22": "Eid al-Fitr Holiday (estimated)", "2026-05-01": "Labor Day", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha Holiday* (*estimated)", - "2026-05-29": "Eid al-Adha Holiday* (*estimated)", - "2026-06-16": "Islamic New Year* (*estimated)", - "2026-06-24": "Ashura Eve* (*estimated)", - "2026-06-25": "Ashura* (*estimated)", - "2026-08-25": "Prophet's Birthday* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha Holiday (estimated)", + "2026-05-29": "Eid al-Adha Holiday (estimated)", + "2026-06-16": "Islamic New Year (estimated)", + "2026-06-24": "Ashura Eve (estimated)", + "2026-06-25": "Ashura (estimated)", + "2026-08-25": "Prophet's Birthday (estimated)", "2026-12-16": "National Day", "2026-12-17": "National Day", "2027-01-01": "New Year's Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", - "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr Holiday (estimated)", + "2027-03-11": "Eid al-Fitr Holiday (estimated)", "2027-05-01": "Labor Day", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha Holiday* (*estimated)", - "2027-05-18": "Eid al-Adha Holiday* (*estimated)", - "2027-06-06": "Islamic New Year* (*estimated)", - "2027-06-14": "Ashura Eve* (*estimated)", - "2027-06-15": "Ashura* (*estimated)", - "2027-08-14": "Prophet's Birthday* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha Holiday (estimated)", + "2027-05-18": "Eid al-Adha Holiday (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-14": "Ashura Eve (estimated)", + "2027-06-15": "Ashura (estimated)", + "2027-08-14": "Prophet's Birthday (estimated)", "2027-12-16": "National Day", "2027-12-17": "National Day", "2028-01-01": "New Year's Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", - "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr Holiday (estimated)", + "2028-02-28": "Eid al-Fitr Holiday (estimated)", "2028-05-01": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha Holiday* (*estimated)", - "2028-05-07": "Eid al-Adha Holiday* (*estimated)", - "2028-05-25": "Islamic New Year* (*estimated)", - "2028-06-02": "Ashura Eve* (*estimated)", - "2028-06-03": "Ashura* (*estimated)", - "2028-08-03": "Prophet's Birthday* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha Holiday (estimated)", + "2028-05-07": "Eid al-Adha Holiday (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-02": "Ashura Eve (estimated)", + "2028-06-03": "Ashura (estimated)", + "2028-08-03": "Prophet's Birthday (estimated)", "2028-12-16": "National Day", "2028-12-17": "National Day", "2029-01-01": "New Year's Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", - "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha Holiday* (*estimated)", - "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr Holiday (estimated)", + "2029-02-16": "Eid al-Fitr Holiday (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha Holiday (estimated)", + "2029-04-26": "Eid al-Adha Holiday (estimated)", "2029-05-01": "Labor Day", - "2029-05-14": "Islamic New Year* (*estimated)", - "2029-05-22": "Ashura Eve* (*estimated)", - "2029-05-23": "Ashura* (*estimated)", - "2029-07-24": "Prophet's Birthday* (*estimated)", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-22": "Ashura Eve (estimated)", + "2029-05-23": "Ashura (estimated)", + "2029-07-24": "Prophet's Birthday (estimated)", "2029-12-16": "National Day", "2029-12-17": "National Day", "2030-01-01": "New Year's Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", - "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha Holiday* (*estimated)", - "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr Holiday (estimated)", + "2030-02-06": "Eid al-Fitr Holiday (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha Holiday (estimated)", + "2030-04-15": "Eid al-Adha Holiday (estimated)", "2030-05-01": "Labor Day", - "2030-05-03": "Islamic New Year* (*estimated)", - "2030-05-11": "Ashura Eve* (*estimated)", - "2030-05-12": "Ashura* (*estimated)", - "2030-07-13": "Prophet's Birthday* (*estimated)", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-11": "Ashura Eve (estimated)", + "2030-05-12": "Ashura (estimated)", + "2030-07-13": "Prophet's Birthday (estimated)", "2030-12-16": "National Day", "2030-12-17": "National Day", "2031-01-01": "New Year's Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", - "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha Holiday* (*estimated)", - "2031-04-04": "Eid al-Adha Holiday* (*estimated)", - "2031-04-23": "Islamic New Year* (*estimated)", - "2031-05-01": "Ashura Eve* (*estimated); Labor Day", - "2031-05-02": "Ashura* (*estimated)", - "2031-07-02": "Prophet's Birthday* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr Holiday (estimated)", + "2031-01-26": "Eid al-Fitr Holiday (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha Holiday (estimated)", + "2031-04-04": "Eid al-Adha Holiday (estimated)", + "2031-04-23": "Islamic New Year (estimated)", + "2031-05-01": "Ashura Eve (estimated); Labor Day", + "2031-05-02": "Ashura (estimated)", + "2031-07-02": "Prophet's Birthday (estimated)", "2031-12-16": "National Day", "2031-12-17": "National Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", - "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha Holiday* (*estimated)", - "2032-03-24": "Eid al-Adha Holiday* (*estimated)", - "2032-04-11": "Islamic New Year* (*estimated)", - "2032-04-19": "Ashura Eve* (*estimated)", - "2032-04-20": "Ashura* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr Holiday (estimated)", + "2032-01-16": "Eid al-Fitr Holiday (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha Holiday (estimated)", + "2032-03-24": "Eid al-Adha Holiday (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-04-19": "Ashura Eve (estimated)", + "2032-04-20": "Ashura (estimated)", "2032-05-01": "Labor Day", - "2032-06-20": "Prophet's Birthday* (*estimated)", + "2032-06-20": "Prophet's Birthday (estimated)", "2032-12-16": "National Day", "2032-12-17": "National Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", - "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha Holiday* (*estimated)", - "2033-03-13": "Eid al-Adha Holiday* (*estimated)", - "2033-04-01": "Islamic New Year* (*estimated)", - "2033-04-09": "Ashura Eve* (*estimated)", - "2033-04-10": "Ashura* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr Holiday (estimated)", + "2033-01-04": "Eid al-Fitr Holiday (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha Holiday (estimated)", + "2033-03-13": "Eid al-Adha Holiday (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-04-09": "Ashura Eve (estimated)", + "2033-04-10": "Ashura (estimated)", "2033-05-01": "Labor Day", - "2033-06-09": "Prophet's Birthday* (*estimated)", + "2033-06-09": "Prophet's Birthday (estimated)", "2033-12-16": "National Day", "2033-12-17": "National Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", - "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr Holiday (estimated)", + "2033-12-25": "Eid al-Fitr Holiday (estimated)", "2034-01-01": "New Year's Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha Holiday* (*estimated)", - "2034-03-03": "Eid al-Adha Holiday* (*estimated)", - "2034-03-21": "Islamic New Year* (*estimated)", - "2034-03-29": "Ashura Eve* (*estimated)", - "2034-03-30": "Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha Holiday (estimated)", + "2034-03-03": "Eid al-Adha Holiday (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-03-29": "Ashura Eve (estimated)", + "2034-03-30": "Ashura (estimated)", "2034-05-01": "Labor Day", - "2034-05-30": "Prophet's Birthday* (*estimated)", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", - "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2034-05-30": "Prophet's Birthday (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr Holiday (estimated)", + "2034-12-14": "Eid al-Fitr Holiday (estimated)", "2034-12-16": "National Day", "2034-12-17": "National Day", "2035-01-01": "New Year's Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha Holiday* (*estimated)", - "2035-02-20": "Eid al-Adha Holiday* (*estimated)", - "2035-03-11": "Islamic New Year* (*estimated)", - "2035-03-19": "Ashura Eve* (*estimated)", - "2035-03-20": "Ashura* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha Holiday (estimated)", + "2035-02-20": "Eid al-Adha Holiday (estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-03-19": "Ashura Eve (estimated)", + "2035-03-20": "Ashura (estimated)", "2035-05-01": "Labor Day", - "2035-05-20": "Prophet's Birthday* (*estimated)", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", - "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", + "2035-05-20": "Prophet's Birthday (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr Holiday (estimated)", + "2035-12-03": "Eid al-Fitr Holiday (estimated)", "2035-12-16": "National Day", "2035-12-17": "National Day", "2036-01-01": "New Year's Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha Holiday* (*estimated)", - "2036-02-09": "Eid al-Adha Holiday* (*estimated)", - "2036-02-28": "Islamic New Year* (*estimated)", - "2036-03-07": "Ashura Eve* (*estimated)", - "2036-03-08": "Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha Holiday (estimated)", + "2036-02-09": "Eid al-Adha Holiday (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-03-07": "Ashura Eve (estimated)", + "2036-03-08": "Ashura (estimated)", "2036-05-01": "Labor Day", - "2036-05-08": "Prophet's Birthday* (*estimated)", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", - "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2036-05-08": "Prophet's Birthday (estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr Holiday (estimated)", + "2036-11-21": "Eid al-Fitr Holiday (estimated)", "2036-12-16": "National Day", "2036-12-17": "National Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha Holiday* (*estimated)", - "2037-01-28": "Eid al-Adha Holiday* (*estimated)", - "2037-02-16": "Islamic New Year* (*estimated)", - "2037-02-24": "Ashura Eve* (*estimated)", - "2037-02-25": "Ashura* (*estimated)", - "2037-04-28": "Prophet's Birthday* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha Holiday (estimated)", + "2037-01-28": "Eid al-Adha Holiday (estimated)", + "2037-02-16": "Islamic New Year (estimated)", + "2037-02-24": "Ashura Eve (estimated)", + "2037-02-25": "Ashura (estimated)", + "2037-04-28": "Prophet's Birthday (estimated)", "2037-05-01": "Labor Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", - "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr Holiday (estimated)", + "2037-11-10": "Eid al-Fitr Holiday (estimated)", "2037-12-16": "National Day", "2037-12-17": "National Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha Holiday* (*estimated)", - "2038-01-18": "Eid al-Adha Holiday* (*estimated)", - "2038-02-05": "Islamic New Year* (*estimated)", - "2038-02-13": "Ashura Eve* (*estimated)", - "2038-02-14": "Ashura* (*estimated)", - "2038-04-17": "Prophet's Birthday* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha Holiday (estimated)", + "2038-01-18": "Eid al-Adha Holiday (estimated)", + "2038-02-05": "Islamic New Year (estimated)", + "2038-02-13": "Ashura Eve (estimated)", + "2038-02-14": "Ashura (estimated)", + "2038-04-17": "Prophet's Birthday (estimated)", "2038-05-01": "Labor Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", - "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr Holiday (estimated)", + "2038-10-31": "Eid al-Fitr Holiday (estimated)", "2038-12-16": "National Day", "2038-12-17": "National Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha Holiday* (*estimated)", - "2039-01-07": "Eid al-Adha Holiday* (*estimated)", - "2039-01-26": "Islamic New Year* (*estimated)", - "2039-02-03": "Ashura Eve* (*estimated)", - "2039-02-04": "Ashura* (*estimated)", - "2039-04-06": "Prophet's Birthday* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha Holiday (estimated)", + "2039-01-07": "Eid al-Adha Holiday (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-02-03": "Ashura Eve (estimated)", + "2039-02-04": "Ashura (estimated)", + "2039-04-06": "Prophet's Birthday (estimated)", "2039-05-01": "Labor Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", - "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr Holiday (estimated)", + "2039-10-21": "Eid al-Fitr Holiday (estimated)", "2039-12-16": "National Day", "2039-12-17": "National Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha Holiday* (*estimated)", - "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha Holiday (estimated)", + "2039-12-28": "Eid al-Adha Holiday (estimated)", "2040-01-01": "New Year's Day", - "2040-01-15": "Islamic New Year* (*estimated)", - "2040-01-23": "Ashura Eve* (*estimated)", - "2040-01-24": "Ashura* (*estimated)", - "2040-03-25": "Prophet's Birthday* (*estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-01-23": "Ashura Eve (estimated)", + "2040-01-24": "Ashura (estimated)", + "2040-03-25": "Prophet's Birthday (estimated)", "2040-05-01": "Labor Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", - "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha Holiday* (*estimated)", - "2040-12-16": "Eid al-Adha Holiday* (*estimated); National Day", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr Holiday (estimated)", + "2040-10-09": "Eid al-Fitr Holiday (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha Holiday (estimated)", + "2040-12-16": "Eid al-Adha Holiday (estimated); National Day", "2040-12-17": "National Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", - "2041-01-12": "Ashura Eve* (*estimated)", - "2041-01-13": "Ashura* (*estimated)", - "2041-03-15": "Prophet's Birthday* (*estimated)", + "2041-01-04": "Islamic New Year (estimated)", + "2041-01-12": "Ashura Eve (estimated)", + "2041-01-13": "Ashura (estimated)", + "2041-03-15": "Prophet's Birthday (estimated)", "2041-05-01": "Labor Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", - "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha Holiday* (*estimated)", - "2041-12-06": "Eid al-Adha Holiday* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr Holiday (estimated)", + "2041-09-28": "Eid al-Fitr Holiday (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha Holiday (estimated)", + "2041-12-06": "Eid al-Adha Holiday (estimated)", "2041-12-16": "National Day", "2041-12-17": "National Day", - "2041-12-24": "Islamic New Year* (*estimated)", - "2042-01-01": "Ashura Eve* (*estimated); New Year's Day", - "2042-01-02": "Ashura* (*estimated)", - "2042-03-04": "Prophet's Birthday* (*estimated)", + "2041-12-24": "Islamic New Year (estimated)", + "2042-01-01": "Ashura Eve (estimated); New Year's Day", + "2042-01-02": "Ashura (estimated)", + "2042-03-04": "Prophet's Birthday (estimated)", "2042-05-01": "Labor Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", - "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha Holiday* (*estimated)", - "2042-11-25": "Eid al-Adha Holiday* (*estimated)", - "2042-12-14": "Islamic New Year* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr Holiday (estimated)", + "2042-09-17": "Eid al-Fitr Holiday (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha Holiday (estimated)", + "2042-11-25": "Eid al-Adha Holiday (estimated)", + "2042-12-14": "Islamic New Year (estimated)", "2042-12-16": "National Day", "2042-12-17": "National Day", - "2042-12-22": "Ashura Eve* (*estimated)", - "2042-12-23": "Ashura* (*estimated)", + "2042-12-22": "Ashura Eve (estimated)", + "2042-12-23": "Ashura (estimated)", "2043-01-01": "New Year's Day", - "2043-02-22": "Prophet's Birthday* (*estimated)", + "2043-02-22": "Prophet's Birthday (estimated)", "2043-05-01": "Labor Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", - "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha Holiday* (*estimated)", - "2043-11-14": "Eid al-Adha Holiday* (*estimated)", - "2043-12-03": "Islamic New Year* (*estimated)", - "2043-12-11": "Ashura Eve* (*estimated)", - "2043-12-12": "Ashura* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr Holiday (estimated)", + "2043-09-06": "Eid al-Fitr Holiday (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha Holiday (estimated)", + "2043-11-14": "Eid al-Adha Holiday (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-11": "Ashura Eve (estimated)", + "2043-12-12": "Ashura (estimated)", "2043-12-16": "National Day", "2043-12-17": "National Day", "2044-01-01": "New Year's Day", - "2044-02-11": "Prophet's Birthday* (*estimated)", + "2044-02-11": "Prophet's Birthday (estimated)", "2044-05-01": "Labor Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", - "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha Holiday* (*estimated)", - "2044-11-02": "Eid al-Adha Holiday* (*estimated)", - "2044-11-21": "Islamic New Year* (*estimated)", - "2044-11-29": "Ashura Eve* (*estimated)", - "2044-11-30": "Ashura* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr Holiday (estimated)", + "2044-08-26": "Eid al-Fitr Holiday (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha Holiday (estimated)", + "2044-11-02": "Eid al-Adha Holiday (estimated)", + "2044-11-21": "Islamic New Year (estimated)", + "2044-11-29": "Ashura Eve (estimated)", + "2044-11-30": "Ashura (estimated)", "2044-12-16": "National Day", "2044-12-17": "National Day", "2045-01-01": "New Year's Day", - "2045-01-30": "Prophet's Birthday* (*estimated)", + "2045-01-30": "Prophet's Birthday (estimated)", "2045-05-01": "Labor Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", - "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha Holiday* (*estimated)", - "2045-10-23": "Eid al-Adha Holiday* (*estimated)", - "2045-11-10": "Islamic New Year* (*estimated)", - "2045-11-18": "Ashura Eve* (*estimated)", - "2045-11-19": "Ashura* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr Holiday (estimated)", + "2045-08-16": "Eid al-Fitr Holiday (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha Holiday (estimated)", + "2045-10-23": "Eid al-Adha Holiday (estimated)", + "2045-11-10": "Islamic New Year (estimated)", + "2045-11-18": "Ashura Eve (estimated)", + "2045-11-19": "Ashura (estimated)", "2045-12-16": "National Day", "2045-12-17": "National Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Prophet's Birthday* (*estimated)", + "2046-01-19": "Prophet's Birthday (estimated)", "2046-05-01": "Labor Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", - "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha Holiday* (*estimated)", - "2046-10-12": "Eid al-Adha Holiday* (*estimated)", - "2046-10-31": "Islamic New Year* (*estimated)", - "2046-11-08": "Ashura Eve* (*estimated)", - "2046-11-09": "Ashura* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr Holiday (estimated)", + "2046-08-05": "Eid al-Fitr Holiday (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha Holiday (estimated)", + "2046-10-12": "Eid al-Adha Holiday (estimated)", + "2046-10-31": "Islamic New Year (estimated)", + "2046-11-08": "Ashura Eve (estimated)", + "2046-11-09": "Ashura (estimated)", "2046-12-16": "National Day", "2046-12-17": "National Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Prophet's Birthday* (*estimated)", + "2047-01-08": "Prophet's Birthday (estimated)", "2047-05-01": "Labor Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", - "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha Holiday* (*estimated)", - "2047-10-02": "Eid al-Adha Holiday* (*estimated)", - "2047-10-20": "Islamic New Year* (*estimated)", - "2047-10-28": "Ashura Eve* (*estimated)", - "2047-10-29": "Ashura* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr Holiday (estimated)", + "2047-07-26": "Eid al-Fitr Holiday (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha Holiday (estimated)", + "2047-10-02": "Eid al-Adha Holiday (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-10-28": "Ashura Eve (estimated)", + "2047-10-29": "Ashura (estimated)", "2047-12-16": "National Day", "2047-12-17": "National Day", - "2047-12-29": "Prophet's Birthday* (*estimated)", + "2047-12-29": "Prophet's Birthday (estimated)", "2048-01-01": "New Year's Day", "2048-05-01": "Labor Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", - "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha Holiday* (*estimated)", - "2048-09-21": "Eid al-Adha Holiday* (*estimated)", - "2048-10-09": "Islamic New Year* (*estimated)", - "2048-10-17": "Ashura Eve* (*estimated)", - "2048-10-18": "Ashura* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr Holiday (estimated)", + "2048-07-14": "Eid al-Fitr Holiday (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha Holiday (estimated)", + "2048-09-21": "Eid al-Adha Holiday (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-10-17": "Ashura Eve (estimated)", + "2048-10-18": "Ashura (estimated)", "2048-12-16": "National Day", "2048-12-17": "National Day", - "2048-12-18": "Prophet's Birthday* (*estimated)", + "2048-12-18": "Prophet's Birthday (estimated)", "2049-01-01": "New Year's Day", "2049-05-01": "Labor Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", - "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha Holiday* (*estimated)", - "2049-09-10": "Eid al-Adha Holiday* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", - "2049-10-06": "Ashura Eve* (*estimated)", - "2049-10-07": "Ashura* (*estimated)", - "2049-12-07": "Prophet's Birthday* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr Holiday (estimated)", + "2049-07-03": "Eid al-Fitr Holiday (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha Holiday (estimated)", + "2049-09-10": "Eid al-Adha Holiday (estimated)", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-06": "Ashura Eve (estimated)", + "2049-10-07": "Ashura (estimated)", + "2049-12-07": "Prophet's Birthday (estimated)", "2049-12-16": "National Day", "2049-12-17": "National Day", "2050-01-01": "New Year's Day", "2050-05-01": "Labor Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", - "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha Holiday* (*estimated)", - "2050-08-30": "Eid al-Adha Holiday* (*estimated)", - "2050-09-17": "Islamic New Year* (*estimated)", - "2050-09-25": "Ashura Eve* (*estimated)", - "2050-09-26": "Ashura* (*estimated)", - "2050-11-26": "Prophet's Birthday* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr Holiday (estimated)", + "2050-06-22": "Eid al-Fitr Holiday (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha Holiday (estimated)", + "2050-08-30": "Eid al-Adha Holiday (estimated)", + "2050-09-17": "Islamic New Year (estimated)", + "2050-09-25": "Ashura Eve (estimated)", + "2050-09-26": "Ashura (estimated)", + "2050-11-26": "Prophet's Birthday (estimated)", "2050-12-16": "National Day", "2050-12-17": "National Day" } diff --git a/snapshots/countries/BI_COMMON.json b/snapshots/countries/BI_COMMON.json index 8899c1aa3..cfb2d8e28 100644 --- a/snapshots/countries/BI_COMMON.json +++ b/snapshots/countries/BI_COMMON.json @@ -1,8 +1,8 @@ { "1962-01-01": "New Year's Day", - "1962-03-07": "Eid ul Fitr* (*estimated)", + "1962-03-07": "Eid ul Fitr (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al Adha* (*estimated)", + "1962-05-14": "Eid al Adha (estimated)", "1962-05-31": "Ascension Day", "1962-07-01": "Independence Day", "1962-07-02": "Independence Day (Observed)", @@ -11,10 +11,10 @@ "1962-11-01": "All Saints' Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-02-24": "Eid ul Fitr* (*estimated)", - "1963-02-25": "Eid ul Fitr* (*estimated) (Observed)", + "1963-02-24": "Eid ul Fitr (estimated)", + "1963-02-25": "Eid ul Fitr (estimated) (Observed)", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al Adha* (*estimated)", + "1963-05-03": "Eid al Adha (estimated)", "1963-05-23": "Ascension Day", "1963-07-01": "Independence Day", "1963-08-15": "Assumption Day", @@ -23,8 +23,8 @@ "1963-11-01": "All Saints' Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-14": "Eid ul Fitr* (*estimated)", - "1964-04-22": "Eid al Adha* (*estimated)", + "1964-02-14": "Eid ul Fitr (estimated)", + "1964-04-22": "Eid al Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-07": "Ascension Day", "1964-07-01": "Independence Day", @@ -34,9 +34,9 @@ "1964-11-02": "All Saints' Day (Observed)", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Eid ul Fitr* (*estimated)", - "1965-04-11": "Eid al Adha* (*estimated)", - "1965-04-12": "Eid al Adha* (*estimated) (Observed)", + "1965-02-02": "Eid ul Fitr (estimated)", + "1965-04-11": "Eid al Adha (estimated)", + "1965-04-12": "Eid al Adha (estimated) (Observed)", "1965-05-01": "Labour Day", "1965-05-27": "Ascension Day", "1965-07-01": "Independence Day", @@ -46,8 +46,8 @@ "1965-11-01": "All Saints' Day", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-22": "Eid ul Fitr* (*estimated)", - "1966-04-01": "Eid al Adha* (*estimated)", + "1966-01-22": "Eid ul Fitr (estimated)", + "1966-04-01": "Eid al Adha (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day (Observed)", "1966-05-19": "Ascension Day", @@ -59,8 +59,8 @@ "1966-12-26": "Christmas Day (Observed)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day (Observed)", - "1967-01-12": "Eid ul Fitr* (*estimated)", - "1967-03-21": "Eid al Adha* (*estimated)", + "1967-01-12": "Eid ul Fitr (estimated)", + "1967-03-21": "Eid al Adha (estimated)", "1967-05-01": "Labour Day", "1967-05-04": "Ascension Day", "1967-07-01": "Independence Day", @@ -68,8 +68,8 @@ "1967-10-13": "Prince Louis Rwagasore Day", "1967-11-01": "All Saints' Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul Fitr* (*estimated); New Year's Day", - "1968-03-09": "Eid al Adha* (*estimated)", + "1968-01-01": "Eid ul Fitr (estimated); New Year's Day", + "1968-03-09": "Eid al Adha (estimated)", "1968-05-01": "Labour Day", "1968-05-23": "Ascension Day", "1968-07-01": "Independence Day", @@ -77,20 +77,20 @@ "1968-10-13": "Prince Louis Rwagasore Day", "1968-10-14": "Prince Louis Rwagasore Day (Observed)", "1968-11-01": "All Saints' Day", - "1968-12-21": "Eid ul Fitr* (*estimated)", + "1968-12-21": "Eid ul Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-27": "Eid al Adha* (*estimated)", + "1969-02-27": "Eid al Adha (estimated)", "1969-05-01": "Labour Day", "1969-05-15": "Ascension Day", "1969-07-01": "Independence Day", "1969-08-15": "Assumption Day", "1969-10-13": "Prince Louis Rwagasore Day", "1969-11-01": "All Saints' Day", - "1969-12-10": "Eid ul Fitr* (*estimated)", + "1969-12-10": "Eid ul Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-16": "Eid al Adha* (*estimated)", + "1970-02-16": "Eid al Adha (estimated)", "1970-05-01": "Labour Day", "1970-05-07": "Ascension Day", "1970-07-01": "Independence Day", @@ -98,10 +98,10 @@ "1970-10-13": "Prince Louis Rwagasore Day", "1970-11-01": "All Saints' Day", "1970-11-02": "All Saints' Day (Observed)", - "1970-11-30": "Eid ul Fitr* (*estimated)", + "1970-11-30": "Eid ul Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-02-06": "Eid al Adha* (*estimated)", + "1971-02-06": "Eid al Adha (estimated)", "1971-05-01": "Labour Day", "1971-05-20": "Ascension Day", "1971-07-01": "Independence Day", @@ -109,51 +109,51 @@ "1971-08-16": "Assumption Day (Observed)", "1971-10-13": "Prince Louis Rwagasore Day", "1971-11-01": "All Saints' Day", - "1971-11-19": "Eid ul Fitr* (*estimated)", + "1971-11-19": "Eid ul Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Eid al Adha* (*estimated)", + "1972-01-26": "Eid al Adha (estimated)", "1972-05-01": "Labour Day", "1972-05-11": "Ascension Day", "1972-07-01": "Independence Day", "1972-08-15": "Assumption Day", "1972-10-13": "Prince Louis Rwagasore Day", "1972-11-01": "All Saints' Day", - "1972-11-07": "Eid ul Fitr* (*estimated)", + "1972-11-07": "Eid ul Fitr (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Eid al Adha* (*estimated)", - "1973-01-15": "Eid al Adha* (*estimated) (Observed)", + "1973-01-14": "Eid al Adha (estimated)", + "1973-01-15": "Eid al Adha (estimated) (Observed)", "1973-05-01": "Labour Day", "1973-05-31": "Ascension Day", "1973-07-01": "Independence Day", "1973-07-02": "Independence Day (Observed)", "1973-08-15": "Assumption Day", "1973-10-13": "Prince Louis Rwagasore Day", - "1973-10-27": "Eid ul Fitr* (*estimated)", + "1973-10-27": "Eid ul Fitr (estimated)", "1973-11-01": "All Saints' Day", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid al Adha* (*estimated)", + "1974-01-03": "Eid al Adha (estimated)", "1974-05-01": "Labour Day", "1974-05-23": "Ascension Day", "1974-07-01": "Independence Day", "1974-08-15": "Assumption Day", "1974-10-13": "Prince Louis Rwagasore Day", "1974-10-14": "Prince Louis Rwagasore Day (Observed)", - "1974-10-16": "Eid ul Fitr* (*estimated)", + "1974-10-16": "Eid ul Fitr (estimated)", "1974-11-01": "All Saints' Day", - "1974-12-24": "Eid al Adha* (*estimated)", + "1974-12-24": "Eid al Adha (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-05-01": "Labour Day", "1975-05-08": "Ascension Day", "1975-07-01": "Independence Day", "1975-08-15": "Assumption Day", - "1975-10-06": "Eid ul Fitr* (*estimated)", + "1975-10-06": "Eid ul Fitr (estimated)", "1975-10-13": "Prince Louis Rwagasore Day", "1975-11-01": "All Saints' Day", - "1975-12-13": "Eid al Adha* (*estimated)", + "1975-12-13": "Eid al Adha (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-05-01": "Labour Day", @@ -161,10 +161,10 @@ "1976-07-01": "Independence Day", "1976-08-15": "Assumption Day", "1976-08-16": "Assumption Day (Observed)", - "1976-09-24": "Eid ul Fitr* (*estimated)", + "1976-09-24": "Eid ul Fitr (estimated)", "1976-10-13": "Prince Louis Rwagasore Day", "1976-11-01": "All Saints' Day", - "1976-12-01": "Eid al Adha* (*estimated)", + "1976-12-01": "Eid al Adha (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-05-01": "Labour Day", @@ -172,10 +172,10 @@ "1977-05-19": "Ascension Day", "1977-07-01": "Independence Day", "1977-08-15": "Assumption Day", - "1977-09-14": "Eid ul Fitr* (*estimated)", + "1977-09-14": "Eid ul Fitr (estimated)", "1977-10-13": "Prince Louis Rwagasore Day", "1977-11-01": "All Saints' Day", - "1977-11-21": "Eid al Adha* (*estimated)", + "1977-11-21": "Eid al Adha (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day (Observed)", "1978-01-01": "New Year's Day", @@ -184,11 +184,11 @@ "1978-05-04": "Ascension Day", "1978-07-01": "Independence Day", "1978-08-15": "Assumption Day", - "1978-09-03": "Eid ul Fitr* (*estimated)", - "1978-09-04": "Eid ul Fitr* (*estimated) (Observed)", + "1978-09-03": "Eid ul Fitr (estimated)", + "1978-09-04": "Eid ul Fitr (estimated) (Observed)", "1978-10-13": "Prince Louis Rwagasore Day", "1978-11-01": "All Saints' Day", - "1978-11-10": "Eid al Adha* (*estimated)", + "1978-11-10": "Eid al Adha (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-05-01": "Labour Day", @@ -196,29 +196,29 @@ "1979-07-01": "Independence Day", "1979-07-02": "Independence Day (Observed)", "1979-08-15": "Assumption Day", - "1979-08-23": "Eid ul Fitr* (*estimated)", + "1979-08-23": "Eid ul Fitr (estimated)", "1979-10-13": "Prince Louis Rwagasore Day", - "1979-10-31": "Eid al Adha* (*estimated)", + "1979-10-31": "Eid al Adha (estimated)", "1979-11-01": "All Saints' Day", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-05-01": "Labour Day", "1980-05-15": "Ascension Day", "1980-07-01": "Independence Day", - "1980-08-12": "Eid ul Fitr* (*estimated)", + "1980-08-12": "Eid ul Fitr (estimated)", "1980-08-15": "Assumption Day", "1980-10-13": "Prince Louis Rwagasore Day", - "1980-10-19": "Eid al Adha* (*estimated)", - "1980-10-20": "Eid al Adha* (*estimated) (Observed)", + "1980-10-19": "Eid al Adha (estimated)", + "1980-10-20": "Eid al Adha (estimated) (Observed)", "1980-11-01": "All Saints' Day", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-05-01": "Labour Day", "1981-05-28": "Ascension Day", "1981-07-01": "Independence Day", - "1981-08-01": "Eid ul Fitr* (*estimated)", + "1981-08-01": "Eid ul Fitr (estimated)", "1981-08-15": "Assumption Day", - "1981-10-08": "Eid al Adha* (*estimated)", + "1981-10-08": "Eid al Adha (estimated)", "1981-10-13": "Prince Louis Rwagasore Day", "1981-11-01": "All Saints' Day", "1981-11-02": "All Saints' Day (Observed)", @@ -227,10 +227,10 @@ "1982-05-01": "Labour Day", "1982-05-20": "Ascension Day", "1982-07-01": "Independence Day", - "1982-07-21": "Eid ul Fitr* (*estimated)", + "1982-07-21": "Eid ul Fitr (estimated)", "1982-08-15": "Assumption Day", "1982-08-16": "Assumption Day (Observed)", - "1982-09-27": "Eid al Adha* (*estimated)", + "1982-09-27": "Eid al Adha (estimated)", "1982-10-13": "Prince Louis Rwagasore Day", "1982-11-01": "All Saints' Day", "1982-12-25": "Christmas Day", @@ -239,9 +239,9 @@ "1983-05-02": "Labour Day (Observed)", "1983-05-12": "Ascension Day", "1983-07-01": "Independence Day", - "1983-07-11": "Eid ul Fitr* (*estimated)", + "1983-07-11": "Eid ul Fitr (estimated)", "1983-08-15": "Assumption Day", - "1983-09-17": "Eid al Adha* (*estimated)", + "1983-09-17": "Eid al Adha (estimated)", "1983-10-13": "Prince Louis Rwagasore Day", "1983-11-01": "All Saints' Day", "1983-12-25": "Christmas Day", @@ -250,21 +250,21 @@ "1984-01-02": "New Year's Day (Observed)", "1984-05-01": "Labour Day", "1984-05-31": "Ascension Day", - "1984-06-30": "Eid ul Fitr* (*estimated)", + "1984-06-30": "Eid ul Fitr (estimated)", "1984-07-01": "Independence Day", "1984-07-02": "Independence Day (Observed)", "1984-08-15": "Assumption Day", - "1984-09-05": "Eid al Adha* (*estimated)", + "1984-09-05": "Eid al Adha (estimated)", "1984-10-13": "Prince Louis Rwagasore Day", "1984-11-01": "All Saints' Day", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-05-01": "Labour Day", "1985-05-16": "Ascension Day", - "1985-06-19": "Eid ul Fitr* (*estimated)", + "1985-06-19": "Eid ul Fitr (estimated)", "1985-07-01": "Independence Day", "1985-08-15": "Assumption Day", - "1985-08-26": "Eid al Adha* (*estimated)", + "1985-08-26": "Eid al Adha (estimated)", "1985-10-13": "Prince Louis Rwagasore Day", "1985-10-14": "Prince Louis Rwagasore Day (Observed)", "1985-11-01": "All Saints' Day", @@ -272,18 +272,18 @@ "1986-01-01": "New Year's Day", "1986-05-01": "Labour Day", "1986-05-08": "Ascension Day", - "1986-06-08": "Eid ul Fitr* (*estimated)", - "1986-06-09": "Eid ul Fitr* (*estimated) (Observed)", + "1986-06-08": "Eid ul Fitr (estimated)", + "1986-06-09": "Eid ul Fitr (estimated) (Observed)", "1986-07-01": "Independence Day", - "1986-08-15": "Assumption Day; Eid al Adha* (*estimated)", + "1986-08-15": "Assumption Day; Eid al Adha (estimated)", "1986-10-13": "Prince Louis Rwagasore Day", "1986-11-01": "All Saints' Day", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-05-01": "Labour Day", - "1987-05-28": "Ascension Day; Eid ul Fitr* (*estimated)", + "1987-05-28": "Ascension Day; Eid ul Fitr (estimated)", "1987-07-01": "Independence Day", - "1987-08-04": "Eid al Adha* (*estimated)", + "1987-08-04": "Eid al Adha (estimated)", "1987-08-15": "Assumption Day", "1987-10-13": "Prince Louis Rwagasore Day", "1987-11-01": "All Saints' Day", @@ -293,9 +293,9 @@ "1988-05-01": "Labour Day", "1988-05-02": "Labour Day (Observed)", "1988-05-12": "Ascension Day", - "1988-05-16": "Eid ul Fitr* (*estimated)", + "1988-05-16": "Eid ul Fitr (estimated)", "1988-07-01": "Independence Day", - "1988-07-23": "Eid al Adha* (*estimated)", + "1988-07-23": "Eid al Adha (estimated)", "1988-08-15": "Assumption Day", "1988-10-13": "Prince Louis Rwagasore Day", "1988-11-01": "All Saints' Day", @@ -305,28 +305,28 @@ "1989-01-02": "New Year's Day (Observed)", "1989-05-01": "Labour Day", "1989-05-04": "Ascension Day", - "1989-05-06": "Eid ul Fitr* (*estimated)", + "1989-05-06": "Eid ul Fitr (estimated)", "1989-07-01": "Independence Day", - "1989-07-13": "Eid al Adha* (*estimated)", + "1989-07-13": "Eid al Adha (estimated)", "1989-08-15": "Assumption Day", "1989-10-13": "Prince Louis Rwagasore Day", "1989-11-01": "All Saints' Day", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", - "1990-04-26": "Eid ul Fitr* (*estimated)", + "1990-04-26": "Eid ul Fitr (estimated)", "1990-05-01": "Labour Day", "1990-05-24": "Ascension Day", "1990-07-01": "Independence Day", - "1990-07-02": "Eid al Adha* (*estimated); Independence Day (Observed)", + "1990-07-02": "Eid al Adha (estimated); Independence Day (Observed)", "1990-08-15": "Assumption Day", "1990-10-13": "Prince Louis Rwagasore Day", "1990-11-01": "All Saints' Day", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-04-15": "Eid ul Fitr* (*estimated)", + "1991-04-15": "Eid ul Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-09": "Ascension Day", - "1991-06-22": "Eid al Adha* (*estimated)", + "1991-06-22": "Eid al Adha (estimated)", "1991-07-01": "Independence Day", "1991-08-15": "Assumption Day", "1991-10-13": "Prince Louis Rwagasore Day", @@ -335,10 +335,10 @@ "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-02-05": "Unity Day", - "1992-04-04": "Eid ul Fitr* (*estimated)", + "1992-04-04": "Eid ul Fitr (estimated)", "1992-05-01": "Labour Day", "1992-05-28": "Ascension Day", - "1992-06-11": "Eid al Adha* (*estimated)", + "1992-06-11": "Eid al Adha (estimated)", "1992-07-01": "Independence Day", "1992-08-15": "Assumption Day", "1992-10-13": "Prince Louis Rwagasore Day", @@ -347,10 +347,10 @@ "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-02-05": "Unity Day", - "1993-03-24": "Eid ul Fitr* (*estimated)", + "1993-03-24": "Eid ul Fitr (estimated)", "1993-05-01": "Labour Day", "1993-05-20": "Ascension Day", - "1993-05-31": "Eid al Adha* (*estimated)", + "1993-05-31": "Eid al Adha (estimated)", "1993-07-01": "Independence Day", "1993-08-15": "Assumption Day", "1993-08-16": "Assumption Day (Observed)", @@ -359,12 +359,12 @@ "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-02-05": "Unity Day", - "1994-03-13": "Eid ul Fitr* (*estimated)", - "1994-03-14": "Eid ul Fitr* (*estimated) (Observed)", + "1994-03-13": "Eid ul Fitr (estimated)", + "1994-03-14": "Eid ul Fitr (estimated) (Observed)", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day (Observed)", "1994-05-12": "Ascension Day", - "1994-05-20": "Eid al Adha* (*estimated)", + "1994-05-20": "Eid al Adha (estimated)", "1994-07-01": "Independence Day", "1994-08-15": "Assumption Day", "1994-10-13": "Prince Louis Rwagasore Day", @@ -376,10 +376,10 @@ "1995-01-02": "New Year's Day (Observed)", "1995-02-05": "Unity Day", "1995-02-06": "Unity Day (Observed)", - "1995-03-02": "Eid ul Fitr* (*estimated)", + "1995-03-02": "Eid ul Fitr (estimated)", "1995-04-06": "President Ntaryamira Day", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al Adha* (*estimated)", + "1995-05-09": "Eid al Adha (estimated)", "1995-05-25": "Ascension Day", "1995-07-01": "Independence Day", "1995-08-15": "Assumption Day", @@ -389,9 +389,9 @@ "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-02-05": "Unity Day", - "1996-02-19": "Eid ul Fitr* (*estimated)", + "1996-02-19": "Eid ul Fitr (estimated)", "1996-04-06": "President Ntaryamira Day", - "1996-04-27": "Eid al Adha* (*estimated)", + "1996-04-27": "Eid al Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-16": "Ascension Day", "1996-07-01": "Independence Day", @@ -403,10 +403,10 @@ "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-02-05": "Unity Day", - "1997-02-08": "Eid ul Fitr* (*estimated)", + "1997-02-08": "Eid ul Fitr (estimated)", "1997-04-06": "President Ntaryamira Day", "1997-04-07": "President Ntaryamira Day (Observed)", - "1997-04-17": "Eid al Adha* (*estimated)", + "1997-04-17": "Eid al Adha (estimated)", "1997-05-01": "Labour Day", "1997-05-08": "Ascension Day", "1997-07-01": "Independence Day", @@ -416,10 +416,10 @@ "1997-11-01": "All Saints' Day", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid ul Fitr* (*estimated)", + "1998-01-29": "Eid ul Fitr (estimated)", "1998-02-05": "Unity Day", "1998-04-06": "President Ntaryamira Day", - "1998-04-07": "Eid al Adha* (*estimated)", + "1998-04-07": "Eid al Adha (estimated)", "1998-05-01": "Labour Day", "1998-05-21": "Ascension Day", "1998-07-01": "Independence Day", @@ -430,9 +430,9 @@ "1998-11-02": "All Saints' Day (Observed)", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid ul Fitr* (*estimated)", + "1999-01-18": "Eid ul Fitr (estimated)", "1999-02-05": "Unity Day", - "1999-03-27": "Eid al Adha* (*estimated)", + "1999-03-27": "Eid al Adha (estimated)", "1999-04-06": "President Ntaryamira Day", "1999-05-01": "Labour Day", "1999-05-13": "Ascension Day", @@ -444,9 +444,9 @@ "1999-11-01": "All Saints' Day", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid ul Fitr* (*estimated)", + "2000-01-08": "Eid ul Fitr (estimated)", "2000-02-05": "Unity Day", - "2000-03-16": "Eid al Adha* (*estimated)", + "2000-03-16": "Eid al Adha (estimated)", "2000-04-06": "President Ntaryamira Day", "2000-05-01": "Labour Day", "2000-06-01": "Ascension Day", @@ -456,10 +456,10 @@ "2000-10-21": "President Ndadaye's Day", "2000-11-01": "All Saints' Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul Fitr* (*estimated)", + "2000-12-27": "Eid ul Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-02-05": "Unity Day", - "2001-03-05": "Eid al Adha* (*estimated)", + "2001-03-05": "Eid al Adha (estimated)", "2001-04-06": "President Ntaryamira Day", "2001-05-01": "Labour Day", "2001-05-24": "Ascension Day", @@ -470,12 +470,12 @@ "2001-10-21": "President Ndadaye's Day", "2001-10-22": "President Ndadaye's Day (Observed)", "2001-11-01": "All Saints' Day", - "2001-12-16": "Eid ul Fitr* (*estimated)", - "2001-12-17": "Eid ul Fitr* (*estimated) (Observed)", + "2001-12-16": "Eid ul Fitr (estimated)", + "2001-12-17": "Eid ul Fitr (estimated) (Observed)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-02-05": "Unity Day", - "2002-02-22": "Eid al Adha* (*estimated)", + "2002-02-22": "Eid al Adha (estimated)", "2002-04-06": "President Ntaryamira Day", "2002-05-01": "Labour Day", "2002-05-09": "Ascension Day", @@ -485,11 +485,11 @@ "2002-10-14": "Prince Louis Rwagasore Day (Observed)", "2002-10-21": "President Ndadaye's Day", "2002-11-01": "All Saints' Day", - "2002-12-05": "Eid ul Fitr* (*estimated)", + "2002-12-05": "Eid ul Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-02-05": "Unity Day", - "2003-02-11": "Eid al Adha* (*estimated)", + "2003-02-11": "Eid al Adha (estimated)", "2003-04-06": "President Ntaryamira Day", "2003-04-07": "President Ntaryamira Day (Observed)", "2003-05-01": "Labour Day", @@ -499,11 +499,11 @@ "2003-10-13": "Prince Louis Rwagasore Day", "2003-10-21": "President Ndadaye's Day", "2003-11-01": "All Saints' Day", - "2003-11-25": "Eid ul Fitr* (*estimated)", + "2003-11-25": "Eid ul Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", - "2004-02-01": "Eid al Adha* (*estimated)", - "2004-02-02": "Eid al Adha* (*estimated) (Observed)", + "2004-02-01": "Eid al Adha (estimated)", + "2004-02-02": "Eid al Adha (estimated) (Observed)", "2004-02-05": "Unity Day", "2004-04-06": "President Ntaryamira Day", "2004-05-01": "Labour Day", @@ -514,11 +514,11 @@ "2004-10-13": "Prince Louis Rwagasore Day", "2004-10-21": "President Ndadaye's Day", "2004-11-01": "All Saints' Day", - "2004-11-14": "Eid ul Fitr* (*estimated)", - "2004-11-15": "Eid ul Fitr* (*estimated) (Observed)", + "2004-11-14": "Eid ul Fitr (estimated)", + "2004-11-15": "Eid ul Fitr (estimated) (Observed)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", - "2005-01-21": "Eid al Adha* (*estimated)", + "2005-01-21": "Eid al Adha (estimated)", "2005-02-05": "Unity Day", "2005-04-06": "President Ntaryamira Day", "2005-05-01": "Labour Day", @@ -529,12 +529,12 @@ "2005-10-13": "Prince Louis Rwagasore Day", "2005-10-21": "President Ndadaye's Day", "2005-11-01": "All Saints' Day", - "2005-11-03": "Eid ul Fitr* (*estimated)", + "2005-11-03": "Eid ul Fitr (estimated)", "2005-12-25": "Christmas Day", "2005-12-26": "Christmas Day (Observed)", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day (Observed)", - "2006-01-10": "Eid al Adha* (*estimated)", + "2006-01-10": "Eid al Adha (estimated)", "2006-02-05": "Unity Day", "2006-02-06": "Unity Day (Observed)", "2006-04-06": "President Ntaryamira Day", @@ -544,10 +544,10 @@ "2006-08-15": "Assumption Day", "2006-10-13": "Prince Louis Rwagasore Day", "2006-10-21": "President Ndadaye's Day", - "2006-10-23": "Eid ul Fitr* (*estimated)", + "2006-10-23": "Eid ul Fitr (estimated)", "2006-11-01": "All Saints' Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al Adha* (*estimated)", + "2006-12-31": "Eid al Adha (estimated)", "2007-01-01": "New Year's Day", "2007-02-05": "Unity Day", "2007-04-06": "President Ntaryamira Day", @@ -556,11 +556,11 @@ "2007-07-01": "Independence Day", "2007-07-02": "Independence Day (Observed)", "2007-08-15": "Assumption Day", - "2007-10-13": "Eid ul Fitr* (*estimated); Prince Louis Rwagasore Day", + "2007-10-13": "Eid ul Fitr (estimated); Prince Louis Rwagasore Day", "2007-10-21": "President Ndadaye's Day", "2007-10-22": "President Ndadaye's Day (Observed)", "2007-11-01": "All Saints' Day", - "2007-12-20": "Eid al Adha* (*estimated)", + "2007-12-20": "Eid al Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-02-05": "Unity Day", @@ -569,11 +569,11 @@ "2008-05-01": "Ascension Day; Labour Day", "2008-07-01": "Independence Day", "2008-08-15": "Assumption Day", - "2008-10-01": "Eid ul Fitr* (*estimated)", + "2008-10-01": "Eid ul Fitr (estimated)", "2008-10-13": "Prince Louis Rwagasore Day", "2008-10-21": "President Ndadaye's Day", "2008-11-01": "All Saints' Day", - "2008-12-08": "Eid al Adha* (*estimated)", + "2008-12-08": "Eid al Adha (estimated)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-05": "Unity Day", @@ -582,13 +582,13 @@ "2009-05-21": "Ascension Day", "2009-07-01": "Independence Day", "2009-08-15": "Assumption Day", - "2009-09-20": "Eid ul Fitr* (*estimated)", - "2009-09-21": "Eid ul Fitr* (*estimated) (Observed)", + "2009-09-20": "Eid ul Fitr (estimated)", + "2009-09-21": "Eid ul Fitr (estimated) (Observed)", "2009-10-13": "Prince Louis Rwagasore Day", "2009-10-21": "President Ndadaye's Day", "2009-11-01": "All Saints' Day", "2009-11-02": "All Saints' Day (Observed)", - "2009-11-27": "Eid al Adha* (*estimated)", + "2009-11-27": "Eid al Adha (estimated)", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-02-05": "Unity Day", @@ -598,11 +598,11 @@ "2010-07-01": "Independence Day", "2010-08-15": "Assumption Day", "2010-08-16": "Assumption Day (Observed)", - "2010-09-10": "Eid ul Fitr* (*estimated)", + "2010-09-10": "Eid ul Fitr (estimated)", "2010-10-13": "Prince Louis Rwagasore Day", "2010-10-21": "President Ndadaye's Day", "2010-11-01": "All Saints' Day", - "2010-11-16": "Eid al Adha* (*estimated)", + "2010-11-16": "Eid al Adha (estimated)", "2010-12-25": "Christmas Day", "2011-01-01": "New Year's Day", "2011-02-05": "Unity Day", @@ -612,12 +612,12 @@ "2011-06-02": "Ascension Day", "2011-07-01": "Independence Day", "2011-08-15": "Assumption Day", - "2011-08-30": "Eid ul Fitr* (*estimated)", + "2011-08-30": "Eid ul Fitr (estimated)", "2011-10-13": "Prince Louis Rwagasore Day", "2011-10-21": "President Ndadaye's Day", "2011-11-01": "All Saints' Day", - "2011-11-06": "Eid al Adha* (*estimated)", - "2011-11-07": "Eid al Adha* (*estimated) (Observed)", + "2011-11-06": "Eid al Adha (estimated)", + "2011-11-07": "Eid al Adha (estimated) (Observed)", "2011-12-25": "Christmas Day", "2011-12-26": "Christmas Day (Observed)", "2012-01-01": "New Year's Day", @@ -630,12 +630,12 @@ "2012-07-01": "Independence Day", "2012-07-02": "Independence Day (Observed)", "2012-08-15": "Assumption Day", - "2012-08-19": "Eid ul Fitr* (*estimated)", - "2012-08-20": "Eid ul Fitr* (*estimated) (Observed)", + "2012-08-19": "Eid ul Fitr (estimated)", + "2012-08-20": "Eid ul Fitr (estimated) (Observed)", "2012-10-13": "Prince Louis Rwagasore Day", "2012-10-21": "President Ndadaye's Day", "2012-10-22": "President Ndadaye's Day (Observed)", - "2012-10-26": "Eid al Adha* (*estimated)", + "2012-10-26": "Eid al Adha (estimated)", "2012-11-01": "All Saints' Day", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -644,11 +644,11 @@ "2013-05-01": "Labour Day", "2013-05-09": "Ascension Day", "2013-07-01": "Independence Day", - "2013-08-08": "Eid ul Fitr* (*estimated)", + "2013-08-08": "Eid ul Fitr (estimated)", "2013-08-15": "Assumption Day", "2013-10-13": "Prince Louis Rwagasore Day", "2013-10-14": "Prince Louis Rwagasore Day (Observed)", - "2013-10-15": "Eid al Adha* (*estimated)", + "2013-10-15": "Eid al Adha (estimated)", "2013-10-21": "President Ndadaye's Day", "2013-11-01": "All Saints' Day", "2013-12-25": "Christmas Day", @@ -659,9 +659,9 @@ "2014-05-01": "Labour Day", "2014-05-29": "Ascension Day", "2014-07-01": "Independence Day", - "2014-07-28": "Eid ul Fitr* (*estimated)", + "2014-07-28": "Eid ul Fitr (estimated)", "2014-08-15": "Assumption Day", - "2014-10-04": "Eid al Adha* (*estimated)", + "2014-10-04": "Eid al Adha (estimated)", "2014-10-13": "Prince Louis Rwagasore Day", "2014-10-21": "President Ndadaye's Day", "2014-11-01": "All Saints' Day", @@ -672,9 +672,9 @@ "2015-05-01": "Labour Day", "2015-05-14": "Ascension Day", "2015-07-01": "Independence Day", - "2015-07-17": "Eid ul Fitr* (*estimated)", + "2015-07-17": "Eid ul Fitr (estimated)", "2015-08-15": "Assumption Day", - "2015-09-23": "Eid al Adha* (*estimated)", + "2015-09-23": "Eid al Adha (estimated)", "2015-10-13": "Prince Louis Rwagasore Day", "2015-10-21": "President Ndadaye's Day", "2015-11-01": "All Saints' Day", @@ -687,10 +687,10 @@ "2016-05-02": "Labour Day (Observed)", "2016-05-05": "Ascension Day", "2016-07-01": "Independence Day", - "2016-07-06": "Eid ul Fitr* (*estimated)", + "2016-07-06": "Eid ul Fitr (estimated)", "2016-08-15": "Assumption Day", - "2016-09-11": "Eid al Adha* (*estimated)", - "2016-09-12": "Eid al Adha* (*estimated) (Observed)", + "2016-09-11": "Eid al Adha (estimated)", + "2016-09-12": "Eid al Adha (estimated) (Observed)", "2016-10-13": "Prince Louis Rwagasore Day", "2016-10-21": "President Ndadaye's Day", "2016-11-01": "All Saints' Day", @@ -703,11 +703,11 @@ "2017-04-06": "President Ntaryamira Day", "2017-05-01": "Labour Day", "2017-05-25": "Ascension Day", - "2017-06-25": "Eid ul Fitr* (*estimated)", - "2017-06-26": "Eid ul Fitr* (*estimated) (Observed)", + "2017-06-25": "Eid ul Fitr (estimated)", + "2017-06-26": "Eid ul Fitr (estimated) (Observed)", "2017-07-01": "Independence Day", "2017-08-15": "Assumption Day", - "2017-09-01": "Eid al Adha* (*estimated)", + "2017-09-01": "Eid al Adha (estimated)", "2017-10-13": "Prince Louis Rwagasore Day", "2017-10-21": "President Ndadaye's Day", "2017-11-01": "All Saints' Day", @@ -717,11 +717,11 @@ "2018-04-06": "President Ntaryamira Day", "2018-05-01": "Labour Day", "2018-05-10": "Ascension Day", - "2018-06-15": "Eid ul Fitr* (*estimated)", + "2018-06-15": "Eid ul Fitr (estimated)", "2018-07-01": "Independence Day", "2018-07-02": "Independence Day (Observed)", "2018-08-15": "Assumption Day", - "2018-08-21": "Eid al Adha* (*estimated)", + "2018-08-21": "Eid al Adha (estimated)", "2018-10-13": "Prince Louis Rwagasore Day", "2018-10-21": "President Ndadaye's Day", "2018-10-22": "President Ndadaye's Day (Observed)", @@ -732,10 +732,10 @@ "2019-04-06": "President Ntaryamira Day", "2019-05-01": "Labour Day", "2019-05-30": "Ascension Day", - "2019-06-04": "Eid ul Fitr* (*estimated)", + "2019-06-04": "Eid ul Fitr (estimated)", "2019-07-01": "Independence Day", - "2019-08-11": "Eid al Adha* (*estimated)", - "2019-08-12": "Eid al Adha* (*estimated) (Observed)", + "2019-08-11": "Eid al Adha (estimated)", + "2019-08-12": "Eid al Adha (estimated) (Observed)", "2019-08-15": "Assumption Day", "2019-10-13": "Prince Louis Rwagasore Day", "2019-10-14": "Prince Louis Rwagasore Day (Observed)", @@ -747,10 +747,10 @@ "2020-04-06": "President Ntaryamira Day", "2020-05-01": "Labour Day", "2020-05-21": "Ascension Day", - "2020-05-24": "Eid ul Fitr* (*estimated)", - "2020-05-25": "Eid ul Fitr* (*estimated) (Observed)", + "2020-05-24": "Eid ul Fitr (estimated)", + "2020-05-25": "Eid ul Fitr (estimated) (Observed)", "2020-07-01": "Independence Day", - "2020-07-31": "Eid al Adha* (*estimated)", + "2020-07-31": "Eid al Adha (estimated)", "2020-08-15": "Assumption Day", "2020-10-13": "Prince Louis Rwagasore Day", "2020-10-21": "President Ndadaye's Day", @@ -761,9 +761,9 @@ "2021-02-05": "Unity Day", "2021-04-06": "President Ntaryamira Day", "2021-05-01": "Labour Day", - "2021-05-13": "Ascension Day; Eid ul Fitr* (*estimated)", + "2021-05-13": "Ascension Day; Eid ul Fitr (estimated)", "2021-07-01": "Independence Day", - "2021-07-20": "Eid al Adha* (*estimated)", + "2021-07-20": "Eid al Adha (estimated)", "2021-08-15": "Assumption Day", "2021-08-16": "Assumption Day (Observed)", "2021-10-13": "Prince Louis Rwagasore Day", @@ -774,11 +774,11 @@ "2022-02-05": "Unity Day", "2022-04-06": "President Ntaryamira Day", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul Fitr* (*estimated); Labour Day (Observed)", + "2022-05-02": "Eid ul Fitr (estimated); Labour Day (Observed)", "2022-05-26": "Ascension Day", "2022-06-08": "President Nkurunziza Day", "2022-07-01": "Independence Day", - "2022-07-09": "Eid al Adha* (*estimated)", + "2022-07-09": "Eid al Adha (estimated)", "2022-08-15": "Assumption Day", "2022-10-13": "Prince Louis Rwagasore Day", "2022-10-21": "President Ndadaye's Day", @@ -790,11 +790,11 @@ "2023-02-05": "Unity Day", "2023-02-06": "Unity Day (Observed)", "2023-04-06": "President Ntaryamira Day", - "2023-04-21": "Eid ul Fitr* (*estimated)", + "2023-04-21": "Eid ul Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-18": "Ascension Day", "2023-06-08": "President Nkurunziza Day", - "2023-06-28": "Eid al Adha* (*estimated)", + "2023-06-28": "Eid al Adha (estimated)", "2023-07-01": "Independence Day", "2023-08-15": "Assumption Day", "2023-10-13": "Prince Louis Rwagasore Day", @@ -804,12 +804,12 @@ "2024-01-01": "New Year's Day", "2024-02-05": "Unity Day", "2024-04-06": "President Ntaryamira Day", - "2024-04-10": "Eid ul Fitr* (*estimated)", + "2024-04-10": "Eid ul Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-09": "Ascension Day", "2024-06-08": "President Nkurunziza Day", - "2024-06-16": "Eid al Adha* (*estimated)", - "2024-06-17": "Eid al Adha* (*estimated) (Observed)", + "2024-06-16": "Eid al Adha (estimated)", + "2024-06-17": "Eid al Adha (estimated) (Observed)", "2024-07-01": "Independence Day", "2024-08-15": "Assumption Day", "2024-10-13": "Prince Louis Rwagasore Day", @@ -819,13 +819,13 @@ "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-02-05": "Unity Day", - "2025-03-30": "Eid ul Fitr* (*estimated)", - "2025-03-31": "Eid ul Fitr* (*estimated) (Observed)", + "2025-03-30": "Eid ul Fitr (estimated)", + "2025-03-31": "Eid ul Fitr (estimated) (Observed)", "2025-04-06": "President Ntaryamira Day", "2025-04-07": "President Ntaryamira Day (Observed)", "2025-05-01": "Labour Day", "2025-05-29": "Ascension Day", - "2025-06-06": "Eid al Adha* (*estimated)", + "2025-06-06": "Eid al Adha (estimated)", "2025-06-08": "President Nkurunziza Day", "2025-06-09": "President Nkurunziza Day (Observed)", "2025-07-01": "Independence Day", @@ -836,11 +836,11 @@ "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-05": "Unity Day", - "2026-03-20": "Eid ul Fitr* (*estimated)", + "2026-03-20": "Eid ul Fitr (estimated)", "2026-04-06": "President Ntaryamira Day", "2026-05-01": "Labour Day", "2026-05-14": "Ascension Day", - "2026-05-27": "Eid al Adha* (*estimated)", + "2026-05-27": "Eid al Adha (estimated)", "2026-06-08": "President Nkurunziza Day", "2026-07-01": "Independence Day", "2026-08-15": "Assumption Day", @@ -851,12 +851,12 @@ "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-02-05": "Unity Day", - "2027-03-09": "Eid ul Fitr* (*estimated)", + "2027-03-09": "Eid ul Fitr (estimated)", "2027-04-06": "President Ntaryamira Day", "2027-05-01": "Labour Day", "2027-05-06": "Ascension Day", - "2027-05-16": "Eid al Adha* (*estimated)", - "2027-05-17": "Eid al Adha* (*estimated) (Observed)", + "2027-05-16": "Eid al Adha (estimated)", + "2027-05-17": "Eid al Adha (estimated) (Observed)", "2027-06-08": "President Nkurunziza Day", "2027-07-01": "Independence Day", "2027-08-15": "Assumption Day", @@ -867,10 +867,10 @@ "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-02-05": "Unity Day", - "2028-02-26": "Eid ul Fitr* (*estimated)", + "2028-02-26": "Eid ul Fitr (estimated)", "2028-04-06": "President Ntaryamira Day", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al Adha* (*estimated)", + "2028-05-05": "Eid al Adha (estimated)", "2028-05-25": "Ascension Day", "2028-06-08": "President Nkurunziza Day", "2028-07-01": "Independence Day", @@ -881,9 +881,9 @@ "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-02-05": "Unity Day", - "2029-02-14": "Eid ul Fitr* (*estimated)", + "2029-02-14": "Eid ul Fitr (estimated)", "2029-04-06": "President Ntaryamira Day", - "2029-04-24": "Eid al Adha* (*estimated)", + "2029-04-24": "Eid al Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-10": "Ascension Day", "2029-06-08": "President Nkurunziza Day", @@ -896,10 +896,10 @@ "2029-11-01": "All Saints' Day", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-02-04": "Eid ul Fitr* (*estimated)", + "2030-02-04": "Eid ul Fitr (estimated)", "2030-02-05": "Unity Day", "2030-04-06": "President Ntaryamira Day", - "2030-04-13": "Eid al Adha* (*estimated)", + "2030-04-13": "Eid al Adha (estimated)", "2030-05-01": "Labour Day", "2030-05-30": "Ascension Day", "2030-06-08": "President Nkurunziza Day", @@ -911,9 +911,9 @@ "2030-11-01": "All Saints' Day", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-24": "Eid ul Fitr* (*estimated)", + "2031-01-24": "Eid ul Fitr (estimated)", "2031-02-05": "Unity Day", - "2031-04-02": "Eid al Adha* (*estimated)", + "2031-04-02": "Eid al Adha (estimated)", "2031-04-06": "President Ntaryamira Day", "2031-04-07": "President Ntaryamira Day (Observed)", "2031-05-01": "Labour Day", @@ -927,9 +927,9 @@ "2031-11-01": "All Saints' Day", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid ul Fitr* (*estimated)", + "2032-01-14": "Eid ul Fitr (estimated)", "2032-02-05": "Unity Day", - "2032-03-22": "Eid al Adha* (*estimated)", + "2032-03-22": "Eid al Adha (estimated)", "2032-04-06": "President Ntaryamira Day", "2032-05-01": "Labour Day", "2032-05-06": "Ascension Day", @@ -942,10 +942,10 @@ "2032-11-01": "All Saints' Day", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid ul Fitr* (*estimated)", - "2033-01-03": "Eid ul Fitr* (*estimated) (Observed)", + "2033-01-02": "Eid ul Fitr (estimated)", + "2033-01-03": "Eid ul Fitr (estimated) (Observed)", "2033-02-05": "Unity Day", - "2033-03-11": "Eid al Adha* (*estimated)", + "2033-03-11": "Eid al Adha (estimated)", "2033-04-06": "President Ntaryamira Day", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day (Observed)", @@ -956,14 +956,14 @@ "2033-10-13": "Prince Louis Rwagasore Day", "2033-10-21": "President Ndadaye's Day", "2033-11-01": "All Saints' Day", - "2033-12-23": "Eid ul Fitr* (*estimated)", + "2033-12-23": "Eid ul Fitr (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (Observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day (Observed)", "2034-02-05": "Unity Day", "2034-02-06": "Unity Day (Observed)", - "2034-03-01": "Eid al Adha* (*estimated)", + "2034-03-01": "Eid al Adha (estimated)", "2034-04-06": "President Ntaryamira Day", "2034-05-01": "Labour Day", "2034-05-18": "Ascension Day", @@ -973,12 +973,12 @@ "2034-10-13": "Prince Louis Rwagasore Day", "2034-10-21": "President Ndadaye's Day", "2034-11-01": "All Saints' Day", - "2034-12-12": "Eid ul Fitr* (*estimated)", + "2034-12-12": "Eid ul Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-02-05": "Unity Day", - "2035-02-18": "Eid al Adha* (*estimated)", - "2035-02-19": "Eid al Adha* (*estimated) (Observed)", + "2035-02-18": "Eid al Adha (estimated)", + "2035-02-19": "Eid al Adha (estimated) (Observed)", "2035-04-06": "President Ntaryamira Day", "2035-05-01": "Labour Day", "2035-05-03": "Ascension Day", @@ -990,11 +990,11 @@ "2035-10-21": "President Ndadaye's Day", "2035-10-22": "President Ndadaye's Day (Observed)", "2035-11-01": "All Saints' Day", - "2035-12-01": "Eid ul Fitr* (*estimated)", + "2035-12-01": "Eid ul Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-02-05": "Unity Day", - "2036-02-07": "Eid al Adha* (*estimated)", + "2036-02-07": "Eid al Adha (estimated)", "2036-04-06": "President Ntaryamira Day", "2036-04-07": "President Ntaryamira Day (Observed)", "2036-05-01": "Labour Day", @@ -1006,10 +1006,10 @@ "2036-10-13": "Prince Louis Rwagasore Day", "2036-10-21": "President Ndadaye's Day", "2036-11-01": "All Saints' Day", - "2036-11-19": "Eid ul Fitr* (*estimated)", + "2036-11-19": "Eid ul Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Eid al Adha* (*estimated)", + "2037-01-26": "Eid al Adha (estimated)", "2037-02-05": "Unity Day", "2037-04-06": "President Ntaryamira Day", "2037-05-01": "Labour Day", @@ -1021,11 +1021,11 @@ "2037-10-21": "President Ndadaye's Day", "2037-11-01": "All Saints' Day", "2037-11-02": "All Saints' Day (Observed)", - "2037-11-08": "Eid ul Fitr* (*estimated)", - "2037-11-09": "Eid ul Fitr* (*estimated) (Observed)", + "2037-11-08": "Eid ul Fitr (estimated)", + "2037-11-09": "Eid ul Fitr (estimated) (Observed)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Eid al Adha* (*estimated)", + "2038-01-16": "Eid al Adha (estimated)", "2038-02-05": "Unity Day", "2038-04-06": "President Ntaryamira Day", "2038-05-01": "Labour Day", @@ -1036,11 +1036,11 @@ "2038-08-16": "Assumption Day (Observed)", "2038-10-13": "Prince Louis Rwagasore Day", "2038-10-21": "President Ndadaye's Day", - "2038-10-29": "Eid ul Fitr* (*estimated)", + "2038-10-29": "Eid ul Fitr (estimated)", "2038-11-01": "All Saints' Day", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al Adha* (*estimated)", + "2039-01-05": "Eid al Adha (estimated)", "2039-02-05": "Unity Day", "2039-04-06": "President Ntaryamira Day", "2039-05-01": "Labour Day", @@ -1050,11 +1050,11 @@ "2039-07-01": "Independence Day", "2039-08-15": "Assumption Day", "2039-10-13": "Prince Louis Rwagasore Day", - "2039-10-19": "Eid ul Fitr* (*estimated)", + "2039-10-19": "Eid ul Fitr (estimated)", "2039-10-21": "President Ndadaye's Day", "2039-11-01": "All Saints' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Eid al Adha* (*estimated)", + "2039-12-26": "Christmas Day (Observed); Eid al Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day (Observed)", "2040-02-05": "Unity Day", @@ -1066,13 +1066,13 @@ "2040-07-01": "Independence Day", "2040-07-02": "Independence Day (Observed)", "2040-08-15": "Assumption Day", - "2040-10-07": "Eid ul Fitr* (*estimated)", - "2040-10-08": "Eid ul Fitr* (*estimated) (Observed)", + "2040-10-07": "Eid ul Fitr (estimated)", + "2040-10-08": "Eid ul Fitr (estimated) (Observed)", "2040-10-13": "Prince Louis Rwagasore Day", "2040-10-21": "President Ndadaye's Day", "2040-10-22": "President Ndadaye's Day (Observed)", "2040-11-01": "All Saints' Day", - "2040-12-14": "Eid al Adha* (*estimated)", + "2040-12-14": "Eid al Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-02-05": "Unity Day", @@ -1082,12 +1082,12 @@ "2041-06-08": "President Nkurunziza Day", "2041-07-01": "Independence Day", "2041-08-15": "Assumption Day", - "2041-09-26": "Eid ul Fitr* (*estimated)", + "2041-09-26": "Eid ul Fitr (estimated)", "2041-10-13": "Prince Louis Rwagasore Day", "2041-10-14": "Prince Louis Rwagasore Day (Observed)", "2041-10-21": "President Ndadaye's Day", "2041-11-01": "All Saints' Day", - "2041-12-04": "Eid al Adha* (*estimated)", + "2041-12-04": "Eid al Adha (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-02-05": "Unity Day", @@ -1099,12 +1099,12 @@ "2042-06-09": "President Nkurunziza Day (Observed)", "2042-07-01": "Independence Day", "2042-08-15": "Assumption Day", - "2042-09-15": "Eid ul Fitr* (*estimated)", + "2042-09-15": "Eid ul Fitr (estimated)", "2042-10-13": "Prince Louis Rwagasore Day", "2042-10-21": "President Ndadaye's Day", "2042-11-01": "All Saints' Day", - "2042-11-23": "Eid al Adha* (*estimated)", - "2042-11-24": "Eid al Adha* (*estimated) (Observed)", + "2042-11-23": "Eid al Adha (estimated)", + "2042-11-24": "Eid al Adha (estimated) (Observed)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-05": "Unity Day", @@ -1114,12 +1114,12 @@ "2043-06-08": "President Nkurunziza Day", "2043-07-01": "Independence Day", "2043-08-15": "Assumption Day", - "2043-09-04": "Eid ul Fitr* (*estimated)", + "2043-09-04": "Eid ul Fitr (estimated)", "2043-10-13": "Prince Louis Rwagasore Day", "2043-10-21": "President Ndadaye's Day", "2043-11-01": "All Saints' Day", "2043-11-02": "All Saints' Day (Observed)", - "2043-11-12": "Eid al Adha* (*estimated)", + "2043-11-12": "Eid al Adha (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-02-05": "Unity Day", @@ -1130,10 +1130,10 @@ "2044-06-08": "President Nkurunziza Day", "2044-07-01": "Independence Day", "2044-08-15": "Assumption Day", - "2044-08-24": "Eid ul Fitr* (*estimated)", + "2044-08-24": "Eid ul Fitr (estimated)", "2044-10-13": "Prince Louis Rwagasore Day", "2044-10-21": "President Ndadaye's Day", - "2044-10-31": "Eid al Adha* (*estimated)", + "2044-10-31": "Eid al Adha (estimated)", "2044-11-01": "All Saints' Day", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day (Observed)", @@ -1146,10 +1146,10 @@ "2045-05-18": "Ascension Day", "2045-06-08": "President Nkurunziza Day", "2045-07-01": "Independence Day", - "2045-08-14": "Eid ul Fitr* (*estimated)", + "2045-08-14": "Eid ul Fitr (estimated)", "2045-08-15": "Assumption Day", "2045-10-13": "Prince Louis Rwagasore Day", - "2045-10-21": "Eid al Adha* (*estimated); President Ndadaye's Day", + "2045-10-21": "Eid al Adha (estimated); President Ndadaye's Day", "2045-11-01": "All Saints' Day", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", @@ -1160,9 +1160,9 @@ "2046-06-08": "President Nkurunziza Day", "2046-07-01": "Independence Day", "2046-07-02": "Independence Day (Observed)", - "2046-08-03": "Eid ul Fitr* (*estimated)", + "2046-08-03": "Eid ul Fitr (estimated)", "2046-08-15": "Assumption Day", - "2046-10-10": "Eid al Adha* (*estimated)", + "2046-10-10": "Eid al Adha (estimated)", "2046-10-13": "Prince Louis Rwagasore Day", "2046-10-21": "President Ndadaye's Day", "2046-10-22": "President Ndadaye's Day (Observed)", @@ -1175,9 +1175,9 @@ "2047-05-23": "Ascension Day", "2047-06-08": "President Nkurunziza Day", "2047-07-01": "Independence Day", - "2047-07-24": "Eid ul Fitr* (*estimated)", + "2047-07-24": "Eid ul Fitr (estimated)", "2047-08-15": "Assumption Day", - "2047-09-30": "Eid al Adha* (*estimated)", + "2047-09-30": "Eid al Adha (estimated)", "2047-10-13": "Prince Louis Rwagasore Day", "2047-10-14": "Prince Louis Rwagasore Day (Observed)", "2047-10-21": "President Ndadaye's Day", @@ -1190,10 +1190,10 @@ "2048-05-14": "Ascension Day", "2048-06-08": "President Nkurunziza Day", "2048-07-01": "Independence Day", - "2048-07-12": "Eid ul Fitr* (*estimated)", - "2048-07-13": "Eid ul Fitr* (*estimated) (Observed)", + "2048-07-12": "Eid ul Fitr (estimated)", + "2048-07-13": "Eid ul Fitr (estimated) (Observed)", "2048-08-15": "Assumption Day", - "2048-09-19": "Eid al Adha* (*estimated)", + "2048-09-19": "Eid al Adha (estimated)", "2048-10-13": "Prince Louis Rwagasore Day", "2048-10-21": "President Ndadaye's Day", "2048-11-01": "All Saints' Day", @@ -1205,10 +1205,10 @@ "2049-05-01": "Labour Day", "2049-05-27": "Ascension Day", "2049-06-08": "President Nkurunziza Day", - "2049-07-01": "Eid ul Fitr* (*estimated); Independence Day", + "2049-07-01": "Eid ul Fitr (estimated); Independence Day", "2049-08-15": "Assumption Day", "2049-08-16": "Assumption Day (Observed)", - "2049-09-08": "Eid al Adha* (*estimated)", + "2049-09-08": "Eid al Adha (estimated)", "2049-10-13": "Prince Louis Rwagasore Day", "2049-10-21": "President Ndadaye's Day", "2049-11-01": "All Saints' Day", @@ -1220,11 +1220,11 @@ "2050-05-02": "Labour Day (Observed)", "2050-05-19": "Ascension Day", "2050-06-08": "President Nkurunziza Day", - "2050-06-20": "Eid ul Fitr* (*estimated)", + "2050-06-20": "Eid ul Fitr (estimated)", "2050-07-01": "Independence Day", "2050-08-15": "Assumption Day", - "2050-08-28": "Eid al Adha* (*estimated)", - "2050-08-29": "Eid al Adha* (*estimated) (Observed)", + "2050-08-28": "Eid al Adha (estimated)", + "2050-08-29": "Eid al Adha (estimated) (Observed)", "2050-10-13": "Prince Louis Rwagasore Day", "2050-10-21": "President Ndadaye's Day", "2050-11-01": "All Saints' Day", diff --git a/snapshots/countries/BN_COMMON.json b/snapshots/countries/BN_COMMON.json index 88b1403c5..09d0eab07 100644 --- a/snapshots/countries/BN_COMMON.json +++ b/snapshots/countries/BN_COMMON.json @@ -3,309 +3,309 @@ "1984-01-02": "New Year's Day (Observed)", "1984-02-02": "Lunar New Year", "1984-02-23": "National Day", - "1984-04-28": "Isra Mi'raj* (*estimated)", - "1984-05-31": "Armed Forces Day; First Day of Ramadan* (*estimated)", - "1984-06-16": "Anniversary of the revelation of the Quran* (*estimated)", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr* (*estimated)", - "1984-07-02": "Eid al-Fitr* (*estimated)", - "1984-07-03": "Eid al-Fitr* (*estimated) (Observed)", + "1984-04-28": "Isra Mi'raj (estimated)", + "1984-05-31": "Armed Forces Day; First Day of Ramadan (estimated)", + "1984-06-16": "Anniversary of the revelation of the Quran (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (estimated)", + "1984-07-02": "Eid al-Fitr (estimated)", + "1984-07-03": "Eid al-Fitr (estimated) (Observed)", "1984-07-15": "Sultan Hassanal Bolkiah's Birthday", "1984-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", - "1984-12-04": "Birth of the Prophet* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-26": "Islamic New Year (estimated)", + "1984-12-04": "Birth of the Prophet (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-20": "Lunar New Year", "1985-02-23": "National Day", - "1985-04-17": "Isra Mi'raj* (*estimated)", - "1985-05-20": "First Day of Ramadan* (*estimated)", + "1985-04-17": "Isra Mi'raj (estimated)", + "1985-05-20": "First Day of Ramadan (estimated)", "1985-05-31": "Armed Forces Day", "1985-06-01": "Armed Forces Day (Observed)", - "1985-06-05": "Anniversary of the revelation of the Quran* (*estimated)", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr* (*estimated)", - "1985-06-21": "Eid al-Fitr* (*estimated)", - "1985-06-22": "Eid al-Fitr* (*estimated) (Observed)", + "1985-06-05": "Anniversary of the revelation of the Quran (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (estimated)", + "1985-06-21": "Eid al-Fitr (estimated)", + "1985-06-22": "Eid al-Fitr (estimated) (Observed)", "1985-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", - "1985-09-16": "Islamic New Year* (*estimated) (Observed)", - "1985-11-24": "Birth of the Prophet* (*estimated)", - "1985-11-25": "Birth of the Prophet* (*estimated) (Observed)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-09-15": "Islamic New Year (estimated)", + "1985-09-16": "Islamic New Year (estimated) (Observed)", + "1985-11-24": "Birth of the Prophet (estimated)", + "1985-11-25": "Birth of the Prophet (estimated) (Observed)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Lunar New Year", "1986-02-10": "Lunar New Year (Observed)", "1986-02-23": "National Day", "1986-02-24": "National Day (Observed)", - "1986-04-06": "Isra Mi'raj* (*estimated)", - "1986-04-07": "Isra Mi'raj* (*estimated) (Observed)", - "1986-05-09": "First Day of Ramadan* (*estimated)", - "1986-05-10": "First Day of Ramadan* (*estimated) (Observed)", - "1986-05-25": "Anniversary of the revelation of the Quran* (*estimated)", - "1986-05-26": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "1986-04-06": "Isra Mi'raj (estimated)", + "1986-04-07": "Isra Mi'raj (estimated) (Observed)", + "1986-05-09": "First Day of Ramadan (estimated)", + "1986-05-10": "First Day of Ramadan (estimated) (Observed)", + "1986-05-25": "Anniversary of the revelation of the Quran (estimated)", + "1986-05-26": "Anniversary of the revelation of the Quran (estimated) (Observed)", "1986-05-31": "Armed Forces Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr* (*estimated)", - "1986-06-10": "Eid al-Fitr* (*estimated)", - "1986-06-11": "Eid al-Fitr* (*estimated) (Observed)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (estimated)", + "1986-06-10": "Eid al-Fitr (estimated)", + "1986-06-11": "Eid al-Fitr (estimated) (Observed)", "1986-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha* (*estimated) (Observed)", - "1986-09-05": "Islamic New Year* (*estimated)", - "1986-09-06": "Islamic New Year* (*estimated) (Observed)", - "1986-11-14": "Birth of the Prophet* (*estimated)", - "1986-11-15": "Birth of the Prophet* (*estimated) (Observed)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (estimated) (Observed)", + "1986-09-05": "Islamic New Year (estimated)", + "1986-09-06": "Islamic New Year (estimated) (Observed)", + "1986-11-14": "Birth of the Prophet (estimated)", + "1986-11-15": "Birth of the Prophet (estimated) (Observed)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-29": "Lunar New Year", "1987-02-23": "National Day", - "1987-03-27": "Isra Mi'raj* (*estimated)", - "1987-03-28": "Isra Mi'raj* (*estimated) (Observed)", - "1987-04-29": "First Day of Ramadan* (*estimated)", - "1987-05-15": "Anniversary of the revelation of the Quran* (*estimated)", - "1987-05-16": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr* (*estimated)", - "1987-05-30": "Eid al-Fitr* (*estimated)", + "1987-03-27": "Isra Mi'raj (estimated)", + "1987-03-28": "Isra Mi'raj (estimated) (Observed)", + "1987-04-29": "First Day of Ramadan (estimated)", + "1987-05-15": "Anniversary of the revelation of the Quran (estimated)", + "1987-05-16": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (estimated)", + "1987-05-30": "Eid al-Fitr (estimated)", "1987-05-31": "Armed Forces Day", - "1987-06-01": "Armed Forces Day (Observed); Eid al-Fitr* (*estimated) (Observed)", + "1987-06-01": "Armed Forces Day (Observed); Eid al-Fitr (estimated) (Observed)", "1987-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-25": "Islamic New Year* (*estimated)", - "1987-11-03": "Birth of the Prophet* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-25": "Islamic New Year (estimated)", + "1987-11-03": "Birth of the Prophet (estimated)", "1987-12-25": "Christmas Day", "1987-12-26": "Christmas Day (Observed)", "1988-01-01": "New Year's Day", "1988-01-02": "New Year's Day (Observed)", "1988-02-17": "Lunar New Year", "1988-02-23": "National Day", - "1988-03-15": "Isra Mi'raj* (*estimated)", - "1988-04-17": "First Day of Ramadan* (*estimated)", - "1988-04-18": "First Day of Ramadan* (*estimated) (Observed)", - "1988-05-03": "Anniversary of the revelation of the Quran* (*estimated)", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr* (*estimated)", - "1988-05-18": "Eid al-Fitr* (*estimated)", + "1988-03-15": "Isra Mi'raj (estimated)", + "1988-04-17": "First Day of Ramadan (estimated)", + "1988-04-18": "First Day of Ramadan (estimated) (Observed)", + "1988-05-03": "Anniversary of the revelation of the Quran (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (estimated)", + "1988-05-18": "Eid al-Fitr (estimated)", "1988-05-31": "Armed Forces Day", "1988-07-15": "Sultan Hassanal Bolkiah's Birthday", "1988-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-08-13": "Islamic New Year* (*estimated)", - "1988-10-22": "Birth of the Prophet* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-13": "Islamic New Year (estimated)", + "1988-10-22": "Birth of the Prophet (estimated)", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day (Observed)", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day (Observed)", "1989-02-06": "Lunar New Year", "1989-02-23": "National Day", - "1989-03-05": "Isra Mi'raj* (*estimated)", - "1989-03-06": "Isra Mi'raj* (*estimated) (Observed)", - "1989-04-07": "First Day of Ramadan* (*estimated)", - "1989-04-08": "First Day of Ramadan* (*estimated) (Observed)", - "1989-04-23": "Anniversary of the revelation of the Quran* (*estimated)", - "1989-04-24": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr* (*estimated)", - "1989-05-08": "Eid al-Fitr* (*estimated)", - "1989-05-09": "Eid al-Fitr* (*estimated) (Observed)", + "1989-03-05": "Isra Mi'raj (estimated)", + "1989-03-06": "Isra Mi'raj (estimated) (Observed)", + "1989-04-07": "First Day of Ramadan (estimated)", + "1989-04-08": "First Day of Ramadan (estimated) (Observed)", + "1989-04-23": "Anniversary of the revelation of the Quran (estimated)", + "1989-04-24": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (estimated)", + "1989-05-08": "Eid al-Fitr (estimated)", + "1989-05-09": "Eid al-Fitr (estimated) (Observed)", "1989-05-31": "Armed Forces Day", - "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", "1989-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1989-08-02": "Islamic New Year* (*estimated)", - "1989-10-11": "Birth of the Prophet* (*estimated)", + "1989-08-02": "Islamic New Year (estimated)", + "1989-10-11": "Birth of the Prophet (estimated)", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-01-27": "Lunar New Year", - "1990-02-22": "Isra Mi'raj* (*estimated)", + "1990-02-22": "Isra Mi'raj (estimated)", "1990-02-23": "National Day", "1990-02-24": "National Day (Observed)", - "1990-03-27": "First Day of Ramadan* (*estimated)", - "1990-04-12": "Anniversary of the revelation of the Quran* (*estimated)", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr* (*estimated)", - "1990-04-28": "Eid al-Fitr* (*estimated)", - "1990-04-30": "Eid al-Fitr* (*estimated) (Observed)", + "1990-03-27": "First Day of Ramadan (estimated)", + "1990-04-12": "Anniversary of the revelation of the Quran (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (estimated)", + "1990-04-28": "Eid al-Fitr (estimated)", + "1990-04-30": "Eid al-Fitr (estimated) (Observed)", "1990-05-31": "Armed Forces Day", - "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", "1990-07-15": "Sultan Hassanal Bolkiah's Birthday", "1990-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "1990-07-23": "Islamic New Year* (*estimated)", - "1990-10-01": "Birth of the Prophet* (*estimated)", + "1990-07-23": "Islamic New Year (estimated)", + "1990-10-01": "Birth of the Prophet (estimated)", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-11": "Isra Mi'raj* (*estimated)", + "1991-02-11": "Isra Mi'raj (estimated)", "1991-02-15": "Lunar New Year", "1991-02-16": "Lunar New Year (Observed)", "1991-02-23": "National Day", - "1991-03-17": "First Day of Ramadan* (*estimated)", - "1991-03-18": "First Day of Ramadan* (*estimated) (Observed)", - "1991-04-02": "Anniversary of the revelation of the Quran* (*estimated)", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr* (*estimated)", - "1991-04-17": "Eid al-Fitr* (*estimated)", + "1991-03-17": "First Day of Ramadan (estimated)", + "1991-03-18": "First Day of Ramadan (estimated) (Observed)", + "1991-04-02": "Anniversary of the revelation of the Quran (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (estimated)", + "1991-04-17": "Eid al-Fitr (estimated)", "1991-05-31": "Armed Forces Day", "1991-06-01": "Armed Forces Day (Observed)", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-07-12": "Islamic New Year* (*estimated)", - "1991-07-13": "Islamic New Year* (*estimated) (Observed)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-07-12": "Islamic New Year (estimated)", + "1991-07-13": "Islamic New Year (estimated) (Observed)", "1991-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1991-09-20": "Birth of the Prophet* (*estimated)", - "1991-09-21": "Birth of the Prophet* (*estimated) (Observed)", + "1991-09-20": "Birth of the Prophet (estimated)", + "1991-09-21": "Birth of the Prophet (estimated) (Observed)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-01-31": "Isra Mi'raj* (*estimated)", - "1992-02-01": "Isra Mi'raj* (*estimated) (Observed)", + "1992-01-31": "Isra Mi'raj (estimated)", + "1992-02-01": "Isra Mi'raj (estimated) (Observed)", "1992-02-04": "Lunar New Year", "1992-02-23": "National Day", "1992-02-24": "National Day (Observed)", - "1992-03-05": "First Day of Ramadan* (*estimated)", - "1992-03-21": "Anniversary of the revelation of the Quran* (*estimated)", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr* (*estimated)", - "1992-04-06": "Eid al-Fitr* (*estimated)", - "1992-04-07": "Eid al-Fitr* (*estimated) (Observed)", + "1992-03-05": "First Day of Ramadan (estimated)", + "1992-03-21": "Anniversary of the revelation of the Quran (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (estimated)", + "1992-04-06": "Eid al-Fitr (estimated)", + "1992-04-07": "Eid al-Fitr (estimated) (Observed)", "1992-05-31": "Armed Forces Day", "1992-06-01": "Armed Forces Day (Observed)", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-07-01": "Islamic New Year* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-07-01": "Islamic New Year (estimated)", "1992-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1992-09-09": "Birth of the Prophet* (*estimated)", + "1992-09-09": "Birth of the Prophet (estimated)", "1992-12-25": "Christmas Day", "1992-12-26": "Christmas Day (Observed)", "1993-01-01": "New Year's Day", "1993-01-02": "New Year's Day (Observed)", - "1993-01-20": "Isra Mi'raj* (*estimated)", + "1993-01-20": "Isra Mi'raj (estimated)", "1993-01-23": "Lunar New Year", - "1993-02-22": "First Day of Ramadan* (*estimated)", + "1993-02-22": "First Day of Ramadan (estimated)", "1993-02-23": "National Day", - "1993-03-10": "Anniversary of the revelation of the Quran* (*estimated)", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr* (*estimated)", - "1993-03-26": "Eid al-Fitr* (*estimated)", - "1993-03-27": "Eid al-Fitr* (*estimated) (Observed)", - "1993-05-31": "Armed Forces Day; Eid al-Adha* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", + "1993-03-10": "Anniversary of the revelation of the Quran (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (estimated)", + "1993-03-26": "Eid al-Fitr (estimated)", + "1993-03-27": "Eid al-Fitr (estimated) (Observed)", + "1993-05-31": "Armed Forces Day; Eid al-Adha (estimated)", + "1993-06-21": "Islamic New Year (estimated)", "1993-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1993-08-29": "Birth of the Prophet* (*estimated)", - "1993-08-30": "Birth of the Prophet* (*estimated) (Observed)", + "1993-08-29": "Birth of the Prophet (estimated)", + "1993-08-30": "Birth of the Prophet (estimated) (Observed)", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-01-09": "Isra Mi'raj* (*estimated)", - "1994-01-10": "Isra Mi'raj* (*estimated) (Observed)", + "1994-01-09": "Isra Mi'raj (estimated)", + "1994-01-10": "Isra Mi'raj (estimated) (Observed)", "1994-02-10": "Lunar New Year", - "1994-02-11": "First Day of Ramadan* (*estimated)", - "1994-02-12": "First Day of Ramadan* (*estimated) (Observed)", + "1994-02-11": "First Day of Ramadan (estimated)", + "1994-02-12": "First Day of Ramadan (estimated) (Observed)", "1994-02-23": "National Day", - "1994-02-27": "Anniversary of the revelation of the Quran* (*estimated)", - "1994-02-28": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr* (*estimated)", - "1994-03-15": "Eid al-Fitr* (*estimated)", - "1994-03-16": "Eid al-Fitr* (*estimated) (Observed)", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated) (Observed)", + "1994-02-27": "Anniversary of the revelation of the Quran (estimated)", + "1994-02-28": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (estimated)", + "1994-03-15": "Eid al-Fitr (estimated)", + "1994-03-16": "Eid al-Fitr (estimated) (Observed)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated) (Observed)", "1994-05-31": "Armed Forces Day", - "1994-06-10": "Islamic New Year* (*estimated)", - "1994-06-11": "Islamic New Year* (*estimated) (Observed)", + "1994-06-10": "Islamic New Year (estimated)", + "1994-06-11": "Islamic New Year (estimated) (Observed)", "1994-07-15": "Sultan Hassanal Bolkiah's Birthday", "1994-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "1994-08-19": "Birth of the Prophet* (*estimated)", - "1994-08-20": "Birth of the Prophet* (*estimated) (Observed)", + "1994-08-19": "Birth of the Prophet (estimated)", + "1994-08-20": "Birth of the Prophet (estimated) (Observed)", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day (Observed)", - "1994-12-29": "Isra Mi'raj* (*estimated)", + "1994-12-29": "Isra Mi'raj (estimated)", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day (Observed)", - "1995-01-31": "First Day of Ramadan* (*estimated); Lunar New Year", - "1995-02-16": "Anniversary of the revelation of the Quran* (*estimated)", + "1995-01-31": "First Day of Ramadan (estimated); Lunar New Year", + "1995-02-16": "Anniversary of the revelation of the Quran (estimated)", "1995-02-23": "National Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr* (*estimated)", - "1995-03-04": "Eid al-Fitr* (*estimated)", - "1995-03-06": "Eid al-Fitr* (*estimated) (Observed)", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-30": "Islamic New Year* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (estimated)", + "1995-03-04": "Eid al-Fitr (estimated)", + "1995-03-06": "Eid al-Fitr (estimated) (Observed)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-30": "Islamic New Year (estimated)", "1995-05-31": "Armed Forces Day", "1995-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1995-08-08": "Birth of the Prophet* (*estimated)", - "1995-12-19": "Isra Mi'raj* (*estimated)", + "1995-08-08": "Birth of the Prophet (estimated)", + "1995-12-19": "Isra Mi'raj (estimated)", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-01-21": "First Day of Ramadan* (*estimated)", - "1996-01-22": "First Day of Ramadan* (*estimated) (Observed)", - "1996-02-06": "Anniversary of the revelation of the Quran* (*estimated)", - "1996-02-19": "Eid al-Fitr* (*estimated); Lunar New Year", - "1996-02-20": "Eid al-Fitr* (*estimated)", - "1996-02-21": "Eid al-Fitr* (*estimated)", + "1996-01-21": "First Day of Ramadan (estimated)", + "1996-01-22": "First Day of Ramadan (estimated) (Observed)", + "1996-02-06": "Anniversary of the revelation of the Quran (estimated)", + "1996-02-19": "Eid al-Fitr (estimated); Lunar New Year", + "1996-02-20": "Eid al-Fitr (estimated)", + "1996-02-21": "Eid al-Fitr (estimated)", "1996-02-23": "National Day", "1996-02-24": "National Day (Observed)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-05-18": "Islamic New Year* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-18": "Islamic New Year (estimated)", "1996-05-31": "Armed Forces Day", "1996-06-01": "Armed Forces Day (Observed)", "1996-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1996-07-27": "Birth of the Prophet* (*estimated)", - "1996-12-08": "Isra Mi'raj* (*estimated)", - "1996-12-09": "Isra Mi'raj* (*estimated) (Observed)", + "1996-07-27": "Birth of the Prophet (estimated)", + "1996-12-08": "Isra Mi'raj (estimated)", + "1996-12-09": "Isra Mi'raj (estimated) (Observed)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-01-10": "First Day of Ramadan* (*estimated)", - "1997-01-11": "First Day of Ramadan* (*estimated) (Observed)", - "1997-01-26": "Anniversary of the revelation of the Quran* (*estimated)", - "1997-01-27": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "1997-01-10": "First Day of Ramadan (estimated)", + "1997-01-11": "First Day of Ramadan (estimated) (Observed)", + "1997-01-26": "Anniversary of the revelation of the Quran (estimated)", + "1997-01-27": "Anniversary of the revelation of the Quran (estimated) (Observed)", "1997-02-07": "Lunar New Year", - "1997-02-08": "Eid al-Fitr* (*estimated); Lunar New Year (Observed)", - "1997-02-09": "Eid al-Fitr* (*estimated)", - "1997-02-10": "Eid al-Fitr* (*estimated)", - "1997-02-11": "Eid al-Fitr* (*estimated) (Observed)", + "1997-02-08": "Eid al-Fitr (estimated); Lunar New Year (Observed)", + "1997-02-09": "Eid al-Fitr (estimated)", + "1997-02-10": "Eid al-Fitr (estimated)", + "1997-02-11": "Eid al-Fitr (estimated) (Observed)", "1997-02-23": "National Day", "1997-02-24": "National Day (Observed)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-05-07": "Islamic New Year* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-07": "Islamic New Year (estimated)", "1997-05-31": "Armed Forces Day", "1997-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1997-07-16": "Birth of the Prophet* (*estimated)", - "1997-11-27": "Isra Mi'raj* (*estimated)", + "1997-07-16": "Birth of the Prophet (estimated)", + "1997-11-27": "Isra Mi'raj (estimated)", "1997-12-25": "Christmas Day", - "1997-12-30": "First Day of Ramadan* (*estimated)", + "1997-12-30": "First Day of Ramadan (estimated)", "1998-01-01": "New Year's Day", - "1998-01-15": "Anniversary of the revelation of the Quran* (*estimated)", + "1998-01-15": "Anniversary of the revelation of the Quran (estimated)", "1998-01-28": "Lunar New Year", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr* (*estimated)", - "1998-01-31": "Eid al-Fitr* (*estimated)", - "1998-02-02": "Eid al-Fitr* (*estimated) (Observed)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (estimated)", + "1998-01-31": "Eid al-Fitr (estimated)", + "1998-02-02": "Eid al-Fitr (estimated) (Observed)", "1998-02-23": "National Day", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-27": "Islamic New Year* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", "1998-05-31": "Armed Forces Day", "1998-06-01": "Armed Forces Day (Observed)", - "1998-07-06": "Birth of the Prophet* (*estimated)", + "1998-07-06": "Birth of the Prophet (estimated)", "1998-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1998-11-16": "Isra Mi'raj* (*estimated)", - "1998-12-19": "First Day of Ramadan* (*estimated)", + "1998-11-16": "Isra Mi'raj (estimated)", + "1998-12-19": "First Day of Ramadan (estimated)", "1998-12-25": "Christmas Day", "1998-12-26": "Christmas Day (Observed)", "1999-01-01": "New Year's Day", "1999-01-02": "New Year's Day (Observed)", - "1999-01-04": "Anniversary of the revelation of the Quran* (*estimated)", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr* (*estimated)", - "1999-01-20": "Eid al-Fitr* (*estimated)", + "1999-01-04": "Anniversary of the revelation of the Quran (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (estimated)", + "1999-01-20": "Eid al-Fitr (estimated)", "1999-02-16": "Lunar New Year", "1999-02-23": "National Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-04-17": "Islamic New Year* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", "1999-05-31": "Armed Forces Day", - "1999-06-26": "Birth of the Prophet* (*estimated)", + "1999-06-26": "Birth of the Prophet (estimated)", "1999-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1999-11-05": "Isra Mi'raj* (*estimated)", - "1999-11-06": "Isra Mi'raj* (*estimated) (Observed)", - "1999-12-09": "First Day of Ramadan* (*estimated)", - "1999-12-25": "Anniversary of the revelation of the Quran* (*estimated); Christmas Day", + "1999-11-05": "Isra Mi'raj (estimated)", + "1999-11-06": "Isra Mi'raj (estimated) (Observed)", + "1999-12-09": "First Day of Ramadan (estimated)", + "1999-12-25": "Anniversary of the revelation of the Quran (estimated); Christmas Day", "2000-01-01": "New Year's Day", "2000-01-08": "Eid al-Fitr", "2000-01-09": "Eid al-Fitr", @@ -762,524 +762,524 @@ "2023-09-28": "Birth of the Prophet", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-08": "Isra Mi'raj* (*estimated)", + "2024-02-08": "Isra Mi'raj (estimated)", "2024-02-10": "Lunar New Year", "2024-02-23": "National Day", "2024-02-24": "National Day (Observed)", - "2024-03-11": "First Day of Ramadan* (*estimated)", - "2024-03-27": "Anniversary of the revelation of the Quran* (*estimated)", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr* (*estimated)", - "2024-04-12": "Eid al-Fitr* (*estimated)", - "2024-04-13": "Eid al-Fitr* (*estimated) (Observed)", + "2024-03-11": "First Day of Ramadan (estimated)", + "2024-03-27": "Anniversary of the revelation of the Quran (estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr (estimated)", + "2024-04-12": "Eid al-Fitr (estimated)", + "2024-04-13": "Eid al-Fitr (estimated) (Observed)", "2024-05-31": "Armed Forces Day", "2024-06-01": "Armed Forces Day (Observed)", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated) (Observed)", - "2024-07-07": "Islamic New Year* (*estimated)", - "2024-07-08": "Islamic New Year* (*estimated) (Observed)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated) (Observed)", + "2024-07-07": "Islamic New Year (estimated)", + "2024-07-08": "Islamic New Year (estimated) (Observed)", "2024-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2024-09-15": "Birth of the Prophet* (*estimated)", - "2024-09-16": "Birth of the Prophet* (*estimated) (Observed)", + "2024-09-15": "Birth of the Prophet (estimated)", + "2024-09-16": "Birth of the Prophet (estimated) (Observed)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-27": "Isra Mi'raj* (*estimated)", + "2025-01-27": "Isra Mi'raj (estimated)", "2025-01-29": "Lunar New Year", "2025-02-23": "National Day", "2025-02-24": "National Day (Observed)", - "2025-03-01": "First Day of Ramadan* (*estimated)", - "2025-03-17": "Anniversary of the revelation of the Quran* (*estimated)", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr* (*estimated)", - "2025-04-01": "Eid al-Fitr* (*estimated)", - "2025-04-02": "Eid al-Fitr* (*estimated) (Observed)", + "2025-03-01": "First Day of Ramadan (estimated)", + "2025-03-17": "Anniversary of the revelation of the Quran (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated)", + "2025-04-01": "Eid al-Fitr (estimated)", + "2025-04-02": "Eid al-Fitr (estimated) (Observed)", "2025-05-31": "Armed Forces Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated) (Observed)", - "2025-06-26": "Islamic New Year* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated) (Observed)", + "2025-06-26": "Islamic New Year (estimated)", "2025-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2025-09-04": "Birth of the Prophet* (*estimated)", + "2025-09-04": "Birth of the Prophet (estimated)", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", - "2026-01-16": "Isra Mi'raj* (*estimated)", - "2026-01-17": "Isra Mi'raj* (*estimated) (Observed)", + "2026-01-16": "Isra Mi'raj (estimated)", + "2026-01-17": "Isra Mi'raj (estimated) (Observed)", "2026-02-17": "Lunar New Year", - "2026-02-18": "First Day of Ramadan* (*estimated)", + "2026-02-18": "First Day of Ramadan (estimated)", "2026-02-23": "National Day", - "2026-03-06": "Anniversary of the revelation of the Quran* (*estimated)", - "2026-03-07": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr* (*estimated)", - "2026-03-22": "Eid al-Fitr* (*estimated)", - "2026-03-23": "Eid al-Fitr* (*estimated) (Observed)", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-03-06": "Anniversary of the revelation of the Quran (estimated)", + "2026-03-07": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (estimated)", + "2026-03-22": "Eid al-Fitr (estimated)", + "2026-03-23": "Eid al-Fitr (estimated) (Observed)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-05-31": "Armed Forces Day", "2026-06-01": "Armed Forces Day (Observed)", - "2026-06-16": "Islamic New Year* (*estimated)", + "2026-06-16": "Islamic New Year (estimated)", "2026-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2026-08-25": "Birth of the Prophet* (*estimated)", + "2026-08-25": "Birth of the Prophet (estimated)", "2026-12-25": "Christmas Day", "2026-12-26": "Christmas Day (Observed)", "2027-01-01": "New Year's Day", "2027-01-02": "New Year's Day (Observed)", - "2027-01-05": "Isra Mi'raj* (*estimated)", + "2027-01-05": "Isra Mi'raj (estimated)", "2027-02-06": "Lunar New Year", - "2027-02-08": "First Day of Ramadan* (*estimated)", + "2027-02-08": "First Day of Ramadan (estimated)", "2027-02-23": "National Day", - "2027-02-24": "Anniversary of the revelation of the Quran* (*estimated)", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr* (*estimated)", - "2027-03-11": "Eid al-Fitr* (*estimated)", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha* (*estimated) (Observed)", + "2027-02-24": "Anniversary of the revelation of the Quran (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (estimated)", + "2027-03-11": "Eid al-Fitr (estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated) (Observed)", "2027-05-31": "Armed Forces Day", - "2027-06-06": "Islamic New Year* (*estimated)", - "2027-06-07": "Islamic New Year* (*estimated) (Observed)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-07": "Islamic New Year (estimated) (Observed)", "2027-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2027-08-14": "Birth of the Prophet* (*estimated)", - "2027-12-25": "Christmas Day; Isra Mi'raj* (*estimated)", + "2027-08-14": "Birth of the Prophet (estimated)", + "2027-12-25": "Christmas Day; Isra Mi'raj (estimated)", "2028-01-01": "New Year's Day", "2028-01-26": "Lunar New Year", - "2028-01-28": "First Day of Ramadan* (*estimated)", - "2028-01-29": "First Day of Ramadan* (*estimated) (Observed)", - "2028-02-13": "Anniversary of the revelation of the Quran* (*estimated)", - "2028-02-14": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", + "2028-01-28": "First Day of Ramadan (estimated)", + "2028-01-29": "First Day of Ramadan (estimated) (Observed)", + "2028-02-13": "Anniversary of the revelation of the Quran (estimated)", + "2028-02-14": "Anniversary of the revelation of the Quran (estimated) (Observed)", "2028-02-23": "National Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr* (*estimated)", - "2028-02-28": "Eid al-Fitr* (*estimated)", - "2028-02-29": "Eid al-Fitr* (*estimated) (Observed)", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated) (Observed)", - "2028-05-25": "Islamic New Year* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (estimated)", + "2028-02-28": "Eid al-Fitr (estimated)", + "2028-02-29": "Eid al-Fitr (estimated) (Observed)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated) (Observed)", + "2028-05-25": "Islamic New Year (estimated)", "2028-05-31": "Armed Forces Day", "2028-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2028-08-03": "Birth of the Prophet* (*estimated)", - "2028-12-14": "Isra Mi'raj* (*estimated)", + "2028-08-03": "Birth of the Prophet (estimated)", + "2028-12-14": "Isra Mi'raj (estimated)", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-01-16": "First Day of Ramadan* (*estimated)", - "2029-02-01": "Anniversary of the revelation of the Quran* (*estimated)", + "2029-01-16": "First Day of Ramadan (estimated)", + "2029-02-01": "Anniversary of the revelation of the Quran (estimated)", "2029-02-13": "Lunar New Year", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr* (*estimated)", - "2029-02-16": "Eid al-Fitr* (*estimated)", - "2029-02-17": "Eid al-Fitr* (*estimated) (Observed)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (estimated)", + "2029-02-16": "Eid al-Fitr (estimated)", + "2029-02-17": "Eid al-Fitr (estimated) (Observed)", "2029-02-23": "National Day", "2029-02-24": "National Day (Observed)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-05-14": "Islamic New Year* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-14": "Islamic New Year (estimated)", "2029-05-31": "Armed Forces Day", "2029-07-15": "Sultan Hassanal Bolkiah's Birthday", "2029-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "2029-07-24": "Birth of the Prophet* (*estimated)", - "2029-12-03": "Isra Mi'raj* (*estimated)", + "2029-07-24": "Birth of the Prophet (estimated)", + "2029-12-03": "Isra Mi'raj (estimated)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-01-05": "First Day of Ramadan* (*estimated)", - "2030-01-21": "Anniversary of the revelation of the Quran* (*estimated)", + "2030-01-05": "First Day of Ramadan (estimated)", + "2030-01-21": "Anniversary of the revelation of the Quran (estimated)", "2030-02-03": "Lunar New Year", - "2030-02-04": "Eid al-Fitr* (*estimated); Lunar New Year (Observed)", - "2030-02-05": "Eid al-Fitr* (*estimated)", - "2030-02-06": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated); Lunar New Year (Observed)", + "2030-02-05": "Eid al-Fitr (estimated)", + "2030-02-06": "Eid al-Fitr (estimated)", "2030-02-23": "National Day", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-05-03": "Islamic New Year* (*estimated)", - "2030-05-04": "Islamic New Year* (*estimated) (Observed)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-04": "Islamic New Year (estimated) (Observed)", "2030-05-31": "Armed Forces Day", "2030-06-01": "Armed Forces Day (Observed)", - "2030-07-13": "Birth of the Prophet* (*estimated)", + "2030-07-13": "Birth of the Prophet (estimated)", "2030-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2030-11-23": "Isra Mi'raj* (*estimated)", + "2030-11-23": "Isra Mi'raj (estimated)", "2030-12-25": "Christmas Day", - "2030-12-26": "First Day of Ramadan* (*estimated)", + "2030-12-26": "First Day of Ramadan (estimated)", "2031-01-01": "New Year's Day", - "2031-01-11": "Anniversary of the revelation of the Quran* (*estimated)", + "2031-01-11": "Anniversary of the revelation of the Quran (estimated)", "2031-01-23": "Lunar New Year", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr* (*estimated)", - "2031-01-26": "Eid al-Fitr* (*estimated)", - "2031-01-27": "Eid al-Fitr* (*estimated) (Observed)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (estimated)", + "2031-01-26": "Eid al-Fitr (estimated)", + "2031-01-27": "Eid al-Fitr (estimated) (Observed)", "2031-02-23": "National Day", "2031-02-24": "National Day (Observed)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-23": "Islamic New Year* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", "2031-05-31": "Armed Forces Day", - "2031-07-02": "Birth of the Prophet* (*estimated)", + "2031-07-02": "Birth of the Prophet (estimated)", "2031-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2031-11-12": "Isra Mi'raj* (*estimated)", - "2031-12-15": "First Day of Ramadan* (*estimated)", + "2031-11-12": "Isra Mi'raj (estimated)", + "2031-12-15": "First Day of Ramadan (estimated)", "2031-12-25": "Christmas Day", - "2031-12-31": "Anniversary of the revelation of the Quran* (*estimated)", + "2031-12-31": "Anniversary of the revelation of the Quran (estimated)", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr* (*estimated)", - "2032-01-16": "Eid al-Fitr* (*estimated)", - "2032-01-17": "Eid al-Fitr* (*estimated) (Observed)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (estimated)", + "2032-01-16": "Eid al-Fitr (estimated)", + "2032-01-17": "Eid al-Fitr (estimated) (Observed)", "2032-02-11": "Lunar New Year", "2032-02-23": "National Day", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-04-11": "Islamic New Year* (*estimated)", - "2032-04-12": "Islamic New Year* (*estimated) (Observed)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-04-12": "Islamic New Year (estimated) (Observed)", "2032-05-31": "Armed Forces Day", - "2032-06-20": "Birth of the Prophet* (*estimated)", - "2032-06-21": "Birth of the Prophet* (*estimated) (Observed)", + "2032-06-20": "Birth of the Prophet (estimated)", + "2032-06-21": "Birth of the Prophet (estimated) (Observed)", "2032-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2032-11-01": "Isra Mi'raj* (*estimated)", - "2032-12-04": "First Day of Ramadan* (*estimated)", - "2032-12-20": "Anniversary of the revelation of the Quran* (*estimated)", + "2032-11-01": "Isra Mi'raj (estimated)", + "2032-12-04": "First Day of Ramadan (estimated)", + "2032-12-20": "Anniversary of the revelation of the Quran (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr* (*estimated)", - "2033-01-04": "Eid al-Fitr* (*estimated)", - "2033-01-05": "Eid al-Fitr* (*estimated) (Observed)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (estimated)", + "2033-01-04": "Eid al-Fitr (estimated)", + "2033-01-05": "Eid al-Fitr (estimated) (Observed)", "2033-01-31": "Lunar New Year", "2033-02-23": "National Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated) (Observed)", - "2033-04-01": "Islamic New Year* (*estimated)", - "2033-04-02": "Islamic New Year* (*estimated) (Observed)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated) (Observed)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-04-02": "Islamic New Year (estimated) (Observed)", "2033-05-31": "Armed Forces Day", - "2033-06-09": "Birth of the Prophet* (*estimated)", + "2033-06-09": "Birth of the Prophet (estimated)", "2033-07-15": "Sultan Hassanal Bolkiah's Birthday", "2033-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "2033-10-21": "Isra Mi'raj* (*estimated)", - "2033-10-22": "Isra Mi'raj* (*estimated) (Observed)", - "2033-11-23": "First Day of Ramadan* (*estimated)", - "2033-12-09": "Anniversary of the revelation of the Quran* (*estimated)", - "2033-12-10": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr* (*estimated)", - "2033-12-25": "Christmas Day; Eid al-Fitr* (*estimated)", - "2033-12-26": "Christmas Day (Observed); Eid al-Fitr* (*estimated) (Observed)", + "2033-10-21": "Isra Mi'raj (estimated)", + "2033-10-22": "Isra Mi'raj (estimated) (Observed)", + "2033-11-23": "First Day of Ramadan (estimated)", + "2033-12-09": "Anniversary of the revelation of the Quran (estimated)", + "2033-12-10": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (estimated)", + "2033-12-25": "Christmas Day; Eid al-Fitr (estimated)", + "2033-12-26": "Christmas Day (Observed); Eid al-Fitr (estimated) (Observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day (Observed)", "2034-02-19": "Lunar New Year", "2034-02-20": "Lunar New Year (Observed)", "2034-02-23": "National Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-21": "Islamic New Year* (*estimated)", - "2034-05-30": "Birth of the Prophet* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-05-30": "Birth of the Prophet (estimated)", "2034-05-31": "Armed Forces Day", "2034-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2034-10-10": "Isra Mi'raj* (*estimated)", - "2034-11-12": "First Day of Ramadan* (*estimated)", - "2034-11-13": "First Day of Ramadan* (*estimated) (Observed)", - "2034-11-28": "Anniversary of the revelation of the Quran* (*estimated)", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr* (*estimated)", - "2034-12-14": "Eid al-Fitr* (*estimated)", + "2034-10-10": "Isra Mi'raj (estimated)", + "2034-11-12": "First Day of Ramadan (estimated)", + "2034-11-13": "First Day of Ramadan (estimated) (Observed)", + "2034-11-28": "Anniversary of the revelation of the Quran (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (estimated)", + "2034-12-14": "Eid al-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-02-08": "Lunar New Year", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated) (Observed)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated) (Observed)", "2035-02-23": "National Day", "2035-02-24": "National Day (Observed)", - "2035-03-11": "Islamic New Year* (*estimated)", - "2035-03-12": "Islamic New Year* (*estimated) (Observed)", - "2035-05-20": "Birth of the Prophet* (*estimated)", - "2035-05-21": "Birth of the Prophet* (*estimated) (Observed)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-03-12": "Islamic New Year (estimated) (Observed)", + "2035-05-20": "Birth of the Prophet (estimated)", + "2035-05-21": "Birth of the Prophet (estimated) (Observed)", "2035-05-31": "Armed Forces Day", "2035-07-15": "Sultan Hassanal Bolkiah's Birthday", "2035-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "2035-09-29": "Isra Mi'raj* (*estimated)", - "2035-11-01": "First Day of Ramadan* (*estimated)", - "2035-11-17": "Anniversary of the revelation of the Quran* (*estimated)", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr* (*estimated)", - "2035-12-03": "Eid al-Fitr* (*estimated)", - "2035-12-04": "Eid al-Fitr* (*estimated) (Observed)", + "2035-09-29": "Isra Mi'raj (estimated)", + "2035-11-01": "First Day of Ramadan (estimated)", + "2035-11-17": "Anniversary of the revelation of the Quran (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (estimated)", + "2035-12-03": "Eid al-Fitr (estimated)", + "2035-12-04": "Eid al-Fitr (estimated) (Observed)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-28": "Lunar New Year", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-02-23": "National Day", - "2036-02-28": "Islamic New Year* (*estimated)", - "2036-05-08": "Birth of the Prophet* (*estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-05-08": "Birth of the Prophet (estimated)", "2036-05-31": "Armed Forces Day", "2036-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2036-09-18": "Isra Mi'raj* (*estimated)", - "2036-10-20": "First Day of Ramadan* (*estimated)", - "2036-11-05": "Anniversary of the revelation of the Quran* (*estimated)", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr* (*estimated)", - "2036-11-21": "Eid al-Fitr* (*estimated)", - "2036-11-22": "Eid al-Fitr* (*estimated) (Observed)", + "2036-09-18": "Isra Mi'raj (estimated)", + "2036-10-20": "First Day of Ramadan (estimated)", + "2036-11-05": "Anniversary of the revelation of the Quran (estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (estimated)", + "2036-11-21": "Eid al-Fitr (estimated)", + "2036-11-22": "Eid al-Fitr (estimated) (Observed)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-02-15": "Lunar New Year", - "2037-02-16": "Islamic New Year* (*estimated); Lunar New Year (Observed)", + "2037-02-16": "Islamic New Year (estimated); Lunar New Year (Observed)", "2037-02-23": "National Day", - "2037-04-28": "Birth of the Prophet* (*estimated)", + "2037-04-28": "Birth of the Prophet (estimated)", "2037-05-31": "Armed Forces Day", "2037-06-01": "Armed Forces Day (Observed)", "2037-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2037-09-07": "Isra Mi'raj* (*estimated)", - "2037-10-10": "First Day of Ramadan* (*estimated)", - "2037-10-26": "Anniversary of the revelation of the Quran* (*estimated)", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr* (*estimated)", - "2037-11-10": "Eid al-Fitr* (*estimated)", - "2037-11-11": "Eid al-Fitr* (*estimated) (Observed)", + "2037-09-07": "Isra Mi'raj (estimated)", + "2037-10-10": "First Day of Ramadan (estimated)", + "2037-10-26": "Anniversary of the revelation of the Quran (estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated)", + "2037-11-10": "Eid al-Fitr (estimated)", + "2037-11-11": "Eid al-Fitr (estimated) (Observed)", "2037-12-25": "Christmas Day", "2037-12-26": "Christmas Day (Observed)", "2038-01-01": "New Year's Day", "2038-01-02": "New Year's Day (Observed)", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-02-04": "Lunar New Year", - "2038-02-05": "Islamic New Year* (*estimated)", - "2038-02-06": "Islamic New Year* (*estimated) (Observed)", + "2038-02-05": "Islamic New Year (estimated)", + "2038-02-06": "Islamic New Year (estimated) (Observed)", "2038-02-23": "National Day", - "2038-04-17": "Birth of the Prophet* (*estimated)", + "2038-04-17": "Birth of the Prophet (estimated)", "2038-05-31": "Armed Forces Day", "2038-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2038-08-28": "Isra Mi'raj* (*estimated)", - "2038-09-30": "First Day of Ramadan* (*estimated)", - "2038-10-16": "Anniversary of the revelation of the Quran* (*estimated)", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr* (*estimated)", - "2038-10-31": "Eid al-Fitr* (*estimated)", - "2038-11-01": "Eid al-Fitr* (*estimated) (Observed)", + "2038-08-28": "Isra Mi'raj (estimated)", + "2038-09-30": "First Day of Ramadan (estimated)", + "2038-10-16": "Anniversary of the revelation of the Quran (estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (estimated)", + "2038-10-31": "Eid al-Fitr (estimated)", + "2038-11-01": "Eid al-Fitr (estimated) (Observed)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-01-24": "Lunar New Year", - "2039-01-26": "Islamic New Year* (*estimated)", + "2039-01-26": "Islamic New Year (estimated)", "2039-02-23": "National Day", - "2039-04-06": "Birth of the Prophet* (*estimated)", + "2039-04-06": "Birth of the Prophet (estimated)", "2039-05-31": "Armed Forces Day", "2039-07-15": "Sultan Hassanal Bolkiah's Birthday", "2039-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "2039-08-17": "Isra Mi'raj* (*estimated)", - "2039-09-19": "First Day of Ramadan* (*estimated)", - "2039-10-05": "Anniversary of the revelation of the Quran* (*estimated)", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr* (*estimated)", - "2039-10-21": "Eid al-Fitr* (*estimated)", - "2039-10-22": "Eid al-Fitr* (*estimated) (Observed)", + "2039-08-17": "Isra Mi'raj (estimated)", + "2039-09-19": "First Day of Ramadan (estimated)", + "2039-10-05": "Anniversary of the revelation of the Quran (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (estimated)", + "2039-10-21": "Eid al-Fitr (estimated)", + "2039-10-22": "Eid al-Fitr (estimated) (Observed)", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Eid al-Adha* (*estimated)", + "2039-12-26": "Christmas Day (Observed); Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day (Observed)", - "2040-01-15": "Islamic New Year* (*estimated)", - "2040-01-16": "Islamic New Year* (*estimated) (Observed)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-01-16": "Islamic New Year (estimated) (Observed)", "2040-02-12": "Lunar New Year", "2040-02-13": "Lunar New Year (Observed)", "2040-02-23": "National Day", - "2040-03-25": "Birth of the Prophet* (*estimated)", - "2040-03-26": "Birth of the Prophet* (*estimated) (Observed)", + "2040-03-25": "Birth of the Prophet (estimated)", + "2040-03-26": "Birth of the Prophet (estimated) (Observed)", "2040-05-31": "Armed Forces Day", "2040-07-15": "Sultan Hassanal Bolkiah's Birthday", "2040-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "2040-08-05": "Isra Mi'raj* (*estimated)", - "2040-08-06": "Isra Mi'raj* (*estimated) (Observed)", - "2040-09-07": "First Day of Ramadan* (*estimated)", - "2040-09-08": "First Day of Ramadan* (*estimated) (Observed)", - "2040-09-23": "Anniversary of the revelation of the Quran* (*estimated)", - "2040-09-24": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated)", - "2040-10-09": "Eid al-Fitr* (*estimated)", - "2040-10-10": "Eid al-Fitr* (*estimated) (Observed)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated) (Observed)", + "2040-08-05": "Isra Mi'raj (estimated)", + "2040-08-06": "Isra Mi'raj (estimated) (Observed)", + "2040-09-07": "First Day of Ramadan (estimated)", + "2040-09-08": "First Day of Ramadan (estimated) (Observed)", + "2040-09-23": "Anniversary of the revelation of the Quran (estimated)", + "2040-09-24": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated)", + "2040-10-09": "Eid al-Fitr (estimated)", + "2040-10-10": "Eid al-Fitr (estimated) (Observed)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated) (Observed)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", - "2041-01-05": "Islamic New Year* (*estimated) (Observed)", + "2041-01-04": "Islamic New Year (estimated)", + "2041-01-05": "Islamic New Year (estimated) (Observed)", "2041-02-01": "Lunar New Year", "2041-02-02": "Lunar New Year (Observed)", "2041-02-23": "National Day", - "2041-03-15": "Birth of the Prophet* (*estimated)", - "2041-03-16": "Birth of the Prophet* (*estimated) (Observed)", + "2041-03-15": "Birth of the Prophet (estimated)", + "2041-03-16": "Birth of the Prophet (estimated) (Observed)", "2041-05-31": "Armed Forces Day", "2041-06-01": "Armed Forces Day (Observed)", "2041-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2041-07-25": "Isra Mi'raj* (*estimated)", - "2041-08-28": "First Day of Ramadan* (*estimated)", - "2041-09-13": "Anniversary of the revelation of the Quran* (*estimated)", - "2041-09-14": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr* (*estimated)", - "2041-09-28": "Eid al-Fitr* (*estimated)", - "2041-09-30": "Eid al-Fitr* (*estimated) (Observed)", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-24": "Islamic New Year* (*estimated)", + "2041-07-25": "Isra Mi'raj (estimated)", + "2041-08-28": "First Day of Ramadan (estimated)", + "2041-09-13": "Anniversary of the revelation of the Quran (estimated)", + "2041-09-14": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (estimated)", + "2041-09-28": "Eid al-Fitr (estimated)", + "2041-09-30": "Eid al-Fitr (estimated) (Observed)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-22": "Lunar New Year", "2042-02-23": "National Day", "2042-02-24": "National Day (Observed)", - "2042-03-04": "Birth of the Prophet* (*estimated)", + "2042-03-04": "Birth of the Prophet (estimated)", "2042-05-31": "Armed Forces Day", - "2042-07-15": "Isra Mi'raj* (*estimated); Sultan Hassanal Bolkiah's Birthday", - "2042-08-17": "First Day of Ramadan* (*estimated)", - "2042-08-18": "First Day of Ramadan* (*estimated) (Observed)", - "2042-09-02": "Anniversary of the revelation of the Quran* (*estimated)", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr* (*estimated)", - "2042-09-17": "Eid al-Fitr* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated) (Observed)", - "2042-12-14": "Islamic New Year* (*estimated)", - "2042-12-15": "Islamic New Year* (*estimated) (Observed)", + "2042-07-15": "Isra Mi'raj (estimated); Sultan Hassanal Bolkiah's Birthday", + "2042-08-17": "First Day of Ramadan (estimated)", + "2042-08-18": "First Day of Ramadan (estimated) (Observed)", + "2042-09-02": "Anniversary of the revelation of the Quran (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (estimated)", + "2042-09-17": "Eid al-Fitr (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated) (Observed)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-15": "Islamic New Year (estimated) (Observed)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Lunar New Year", - "2043-02-22": "Birth of the Prophet* (*estimated)", - "2043-02-23": "Birth of the Prophet* (*estimated) (Observed); National Day", + "2043-02-22": "Birth of the Prophet (estimated)", + "2043-02-23": "Birth of the Prophet (estimated) (Observed); National Day", "2043-05-31": "Armed Forces Day", "2043-06-01": "Armed Forces Day (Observed)", - "2043-07-04": "Isra Mi'raj* (*estimated)", + "2043-07-04": "Isra Mi'raj (estimated)", "2043-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2043-08-06": "First Day of Ramadan* (*estimated)", - "2043-08-22": "Anniversary of the revelation of the Quran* (*estimated)", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr* (*estimated)", - "2043-09-06": "Eid al-Fitr* (*estimated)", - "2043-09-07": "Eid al-Fitr* (*estimated) (Observed)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-12-03": "Islamic New Year* (*estimated)", + "2043-08-06": "First Day of Ramadan (estimated)", + "2043-08-22": "Anniversary of the revelation of the Quran (estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (estimated)", + "2043-09-06": "Eid al-Fitr (estimated)", + "2043-09-07": "Eid al-Fitr (estimated) (Observed)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", "2043-12-25": "Christmas Day", "2043-12-26": "Christmas Day (Observed)", "2044-01-01": "New Year's Day", "2044-01-02": "New Year's Day (Observed)", "2044-01-30": "Lunar New Year", - "2044-02-11": "Birth of the Prophet* (*estimated)", + "2044-02-11": "Birth of the Prophet (estimated)", "2044-02-23": "National Day", "2044-05-31": "Armed Forces Day", - "2044-06-23": "Isra Mi'raj* (*estimated)", + "2044-06-23": "Isra Mi'raj (estimated)", "2044-07-15": "Sultan Hassanal Bolkiah's Birthday", "2044-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "2044-07-26": "First Day of Ramadan* (*estimated)", - "2044-08-11": "Anniversary of the revelation of the Quran* (*estimated)", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr* (*estimated)", - "2044-08-26": "Eid al-Fitr* (*estimated)", - "2044-08-27": "Eid al-Fitr* (*estimated) (Observed)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-21": "Islamic New Year* (*estimated)", + "2044-07-26": "First Day of Ramadan (estimated)", + "2044-08-11": "Anniversary of the revelation of the Quran (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (estimated)", + "2044-08-26": "Eid al-Fitr (estimated)", + "2044-08-27": "Eid al-Fitr (estimated) (Observed)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-21": "Islamic New Year (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day (Observed)", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day (Observed)", - "2045-01-30": "Birth of the Prophet* (*estimated)", + "2045-01-30": "Birth of the Prophet (estimated)", "2045-02-17": "Lunar New Year", "2045-02-18": "Lunar New Year (Observed)", "2045-02-23": "National Day", "2045-05-31": "Armed Forces Day", - "2045-06-13": "Isra Mi'raj* (*estimated)", - "2045-07-15": "First Day of Ramadan* (*estimated); Sultan Hassanal Bolkiah's Birthday", - "2045-07-31": "Anniversary of the revelation of the Quran* (*estimated)", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr* (*estimated)", - "2045-08-16": "Eid al-Fitr* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-11-10": "Islamic New Year* (*estimated)", - "2045-11-11": "Islamic New Year* (*estimated) (Observed)", + "2045-06-13": "Isra Mi'raj (estimated)", + "2045-07-15": "First Day of Ramadan (estimated); Sultan Hassanal Bolkiah's Birthday", + "2045-07-31": "Anniversary of the revelation of the Quran (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (estimated)", + "2045-08-16": "Eid al-Fitr (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-10": "Islamic New Year (estimated)", + "2045-11-11": "Islamic New Year (estimated) (Observed)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Birth of the Prophet* (*estimated)", - "2046-01-20": "Birth of the Prophet* (*estimated) (Observed)", + "2046-01-19": "Birth of the Prophet (estimated)", + "2046-01-20": "Birth of the Prophet (estimated) (Observed)", "2046-02-06": "Lunar New Year", "2046-02-23": "National Day", "2046-02-24": "National Day (Observed)", "2046-05-31": "Armed Forces Day", - "2046-06-02": "Isra Mi'raj* (*estimated)", - "2046-07-05": "First Day of Ramadan* (*estimated)", + "2046-06-02": "Isra Mi'raj (estimated)", + "2046-07-05": "First Day of Ramadan (estimated)", "2046-07-15": "Sultan Hassanal Bolkiah's Birthday", "2046-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "2046-07-21": "Anniversary of the revelation of the Quran* (*estimated)", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr* (*estimated)", - "2046-08-05": "Eid al-Fitr* (*estimated)", - "2046-08-06": "Eid al-Fitr* (*estimated) (Observed)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-31": "Islamic New Year* (*estimated)", + "2046-07-21": "Anniversary of the revelation of the Quran (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (estimated)", + "2046-08-05": "Eid al-Fitr (estimated)", + "2046-08-06": "Eid al-Fitr (estimated) (Observed)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Birth of the Prophet* (*estimated)", + "2047-01-08": "Birth of the Prophet (estimated)", "2047-01-26": "Lunar New Year", "2047-02-23": "National Day", - "2047-05-22": "Isra Mi'raj* (*estimated)", + "2047-05-22": "Isra Mi'raj (estimated)", "2047-05-31": "Armed Forces Day", "2047-06-01": "Armed Forces Day (Observed)", - "2047-06-24": "First Day of Ramadan* (*estimated)", - "2047-07-10": "Anniversary of the revelation of the Quran* (*estimated)", + "2047-06-24": "First Day of Ramadan (estimated)", + "2047-07-10": "Anniversary of the revelation of the Quran (estimated)", "2047-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr* (*estimated)", - "2047-07-26": "Eid al-Fitr* (*estimated)", - "2047-07-27": "Eid al-Fitr* (*estimated) (Observed)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-20": "Islamic New Year* (*estimated)", - "2047-10-21": "Islamic New Year* (*estimated) (Observed)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (estimated)", + "2047-07-26": "Eid al-Fitr (estimated)", + "2047-07-27": "Eid al-Fitr (estimated) (Observed)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-10-21": "Islamic New Year (estimated) (Observed)", "2047-12-25": "Christmas Day", - "2047-12-29": "Birth of the Prophet* (*estimated)", - "2047-12-30": "Birth of the Prophet* (*estimated) (Observed)", + "2047-12-29": "Birth of the Prophet (estimated)", + "2047-12-30": "Birth of the Prophet (estimated) (Observed)", "2048-01-01": "New Year's Day", "2048-02-14": "Lunar New Year", "2048-02-15": "Lunar New Year (Observed)", "2048-02-23": "National Day", "2048-02-24": "National Day (Observed)", - "2048-05-10": "Isra Mi'raj* (*estimated)", - "2048-05-11": "Isra Mi'raj* (*estimated) (Observed)", + "2048-05-10": "Isra Mi'raj (estimated)", + "2048-05-11": "Isra Mi'raj (estimated) (Observed)", "2048-05-31": "Armed Forces Day", "2048-06-01": "Armed Forces Day (Observed)", - "2048-06-12": "First Day of Ramadan* (*estimated)", - "2048-06-13": "First Day of Ramadan* (*estimated) (Observed)", - "2048-06-28": "Anniversary of the revelation of the Quran* (*estimated)", - "2048-06-29": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated)", - "2048-07-14": "Eid al-Fitr* (*estimated)", - "2048-07-15": "Eid al-Fitr* (*estimated) (Observed); Sultan Hassanal Bolkiah's Birthday", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-10-09": "Islamic New Year* (*estimated)", - "2048-10-10": "Islamic New Year* (*estimated) (Observed)", - "2048-12-18": "Birth of the Prophet* (*estimated)", - "2048-12-19": "Birth of the Prophet* (*estimated) (Observed)", + "2048-06-12": "First Day of Ramadan (estimated)", + "2048-06-13": "First Day of Ramadan (estimated) (Observed)", + "2048-06-28": "Anniversary of the revelation of the Quran (estimated)", + "2048-06-29": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated)", + "2048-07-14": "Eid al-Fitr (estimated)", + "2048-07-15": "Eid al-Fitr (estimated) (Observed); Sultan Hassanal Bolkiah's Birthday", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-10-10": "Islamic New Year (estimated) (Observed)", + "2048-12-18": "Birth of the Prophet (estimated)", + "2048-12-19": "Birth of the Prophet (estimated) (Observed)", "2048-12-25": "Christmas Day", "2048-12-26": "Christmas Day (Observed)", "2049-01-01": "New Year's Day", "2049-01-02": "New Year's Day (Observed)", "2049-02-02": "Lunar New Year", "2049-02-23": "National Day", - "2049-04-29": "Isra Mi'raj* (*estimated)", + "2049-04-29": "Isra Mi'raj (estimated)", "2049-05-31": "Armed Forces Day", - "2049-06-02": "First Day of Ramadan* (*estimated)", - "2049-06-18": "Anniversary of the revelation of the Quran* (*estimated)", - "2049-06-19": "Anniversary of the revelation of the Quran* (*estimated) (Observed)", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr* (*estimated)", - "2049-07-03": "Eid al-Fitr* (*estimated)", - "2049-07-05": "Eid al-Fitr* (*estimated) (Observed)", + "2049-06-02": "First Day of Ramadan (estimated)", + "2049-06-18": "Anniversary of the revelation of the Quran (estimated)", + "2049-06-19": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (estimated)", + "2049-07-03": "Eid al-Fitr (estimated)", + "2049-07-05": "Eid al-Fitr (estimated) (Observed)", "2049-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", - "2049-12-07": "Birth of the Prophet* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-28": "Islamic New Year (estimated)", + "2049-12-07": "Birth of the Prophet (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-01-23": "Lunar New Year", "2050-01-24": "Lunar New Year (Observed)", "2050-02-23": "National Day", - "2050-04-19": "Isra Mi'raj* (*estimated)", - "2050-05-22": "First Day of Ramadan* (*estimated)", - "2050-05-23": "First Day of Ramadan* (*estimated) (Observed)", + "2050-04-19": "Isra Mi'raj (estimated)", + "2050-05-22": "First Day of Ramadan (estimated)", + "2050-05-23": "First Day of Ramadan (estimated) (Observed)", "2050-05-31": "Armed Forces Day", - "2050-06-07": "Anniversary of the revelation of the Quran* (*estimated)", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr* (*estimated)", - "2050-06-22": "Eid al-Fitr* (*estimated)", + "2050-06-07": "Anniversary of the revelation of the Quran (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (estimated)", + "2050-06-22": "Eid al-Fitr (estimated)", "2050-07-15": "Sultan Hassanal Bolkiah's Birthday", "2050-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated) (Observed)", - "2050-09-17": "Islamic New Year* (*estimated)", - "2050-11-26": "Birth of the Prophet* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated) (Observed)", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-26": "Birth of the Prophet (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day (Observed)" } diff --git a/snapshots/countries/CA_AB.json b/snapshots/countries/CA_AB.json index 6c980ee9c..1aaeb4c5b 100644 --- a/snapshots/countries/CA_AB.json +++ b/snapshots/countries/CA_AB.json @@ -5,7 +5,7 @@ "1950-04-10": "Easter Monday", "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -16,7 +16,7 @@ "1951-03-26": "Easter Monday", "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -26,7 +26,7 @@ "1952-04-11": "Good Friday", "1952-04-14": "Easter Monday", "1952-07-01": "Dominion Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -36,7 +36,7 @@ "1953-04-06": "Easter Monday", "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -47,7 +47,7 @@ "1954-04-19": "Easter Monday", "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -60,7 +60,7 @@ "1955-04-11": "Easter Monday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -73,7 +73,7 @@ "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -84,7 +84,7 @@ "1957-04-22": "Easter Monday", "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1958-04-07": "Easter Monday", "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1959-03-30": "Easter Monday", "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1960-04-18": "Easter Monday", "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -140,7 +140,7 @@ "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -151,7 +151,7 @@ "1963-04-15": "Easter Monday", "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -161,7 +161,7 @@ "1964-03-30": "Easter Monday", "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -172,7 +172,7 @@ "1965-04-19": "Easter Monday", "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -185,7 +185,7 @@ "1966-04-11": "Easter Monday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -198,7 +198,7 @@ "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -209,7 +209,7 @@ "1968-04-15": "Easter Monday", "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -219,7 +219,7 @@ "1969-04-07": "Easter Monday", "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -229,7 +229,7 @@ "1970-03-30": "Easter Monday", "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -240,7 +240,7 @@ "1971-04-12": "Easter Monday", "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -254,7 +254,7 @@ "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -266,7 +266,7 @@ "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -278,7 +278,7 @@ "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", "1974-08-05": "Heritage Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -289,7 +289,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", "1975-08-04": "Heritage Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -300,7 +300,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", "1976-08-02": "Heritage Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -314,7 +314,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", "1977-08-01": "Heritage Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -328,7 +328,7 @@ "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", "1978-08-07": "Heritage Day", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -341,7 +341,7 @@ "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", "1979-08-06": "Heritage Day", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -353,7 +353,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", "1980-08-04": "Heritage Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -364,7 +364,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", "1981-08-03": "Heritage Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -376,7 +376,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", "1982-08-02": "Heritage Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -390,7 +390,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", "1983-08-01": "Heritage Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -404,7 +404,7 @@ "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", "1984-08-06": "Heritage Day", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -416,7 +416,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", "1985-08-05": "Heritage Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -427,7 +427,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", "1986-08-04": "Heritage Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -438,7 +438,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", "1987-08-03": "Heritage Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -450,7 +450,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", "1988-08-01": "Heritage Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -464,7 +464,7 @@ "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", "1989-08-07": "Heritage Day", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -478,7 +478,7 @@ "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", "1990-08-06": "Heritage Day", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -491,7 +491,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", "1991-08-05": "Heritage Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -503,7 +503,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", "1992-08-03": "Heritage Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -516,7 +516,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", "1993-08-02": "Heritage Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -531,7 +531,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", "1994-08-01": "Heritage Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -546,7 +546,7 @@ "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", "1995-08-07": "Heritage Day", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -559,7 +559,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", "1996-08-05": "Heritage Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -571,7 +571,7 @@ "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", "1997-08-04": "Heritage Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -583,7 +583,7 @@ "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", "1998-08-03": "Heritage Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -596,7 +596,7 @@ "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", "1999-08-02": "Heritage Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -612,7 +612,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-07": "Heritage Day", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -626,7 +626,7 @@ "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", "2001-08-06": "Heritage Day", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -639,7 +639,7 @@ "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", "2002-08-05": "Heritage Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -651,7 +651,7 @@ "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", "2003-08-04": "Heritage Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -663,7 +663,7 @@ "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", "2004-08-02": "Heritage Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -678,7 +678,7 @@ "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", "2005-08-01": "Heritage Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -693,7 +693,7 @@ "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", "2006-08-07": "Heritage Day", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -707,7 +707,7 @@ "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", "2007-08-06": "Heritage Day", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -720,7 +720,7 @@ "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", "2008-08-04": "Heritage Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -732,7 +732,7 @@ "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", "2009-08-03": "Heritage Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -745,7 +745,7 @@ "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", "2010-08-02": "Heritage Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -760,7 +760,7 @@ "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", "2011-08-01": "Heritage Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -775,7 +775,7 @@ "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", "2012-08-06": "Heritage Day", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -788,7 +788,7 @@ "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", "2013-08-05": "Heritage Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -800,7 +800,7 @@ "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", "2014-08-04": "Heritage Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -812,7 +812,7 @@ "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", "2015-08-03": "Heritage Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -825,7 +825,7 @@ "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", "2016-08-01": "Heritage Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -840,7 +840,7 @@ "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", "2017-08-07": "Heritage Day", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -854,7 +854,7 @@ "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", "2018-08-06": "Heritage Day", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -867,7 +867,7 @@ "2019-05-20": "Victoria Day", "2019-07-01": "Canada Day", "2019-08-05": "Heritage Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -879,7 +879,7 @@ "2020-05-18": "Victoria Day", "2020-07-01": "Canada Day", "2020-08-03": "Heritage Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -892,7 +892,7 @@ "2021-05-24": "Victoria Day", "2021-07-01": "Canada Day", "2021-08-02": "Heritage Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -908,7 +908,7 @@ "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", "2022-08-01": "Heritage Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", @@ -924,7 +924,7 @@ "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", "2023-08-07": "Heritage Day", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -939,7 +939,7 @@ "2024-05-20": "Victoria Day", "2024-07-01": "Canada Day", "2024-08-05": "Heritage Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -952,7 +952,7 @@ "2025-05-19": "Victoria Day", "2025-07-01": "Canada Day", "2025-08-04": "Heritage Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -965,7 +965,7 @@ "2026-05-18": "Victoria Day", "2026-07-01": "Canada Day", "2026-08-03": "Heritage Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -979,7 +979,7 @@ "2027-05-24": "Victoria Day", "2027-07-01": "Canada Day", "2027-08-02": "Heritage Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -996,7 +996,7 @@ "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", "2028-08-07": "Heritage Day", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -1012,7 +1012,7 @@ "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", "2029-08-06": "Heritage Day", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -1027,7 +1027,7 @@ "2030-05-20": "Victoria Day", "2030-07-01": "Canada Day", "2030-08-05": "Heritage Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -1040,7 +1040,7 @@ "2031-05-19": "Victoria Day", "2031-07-01": "Canada Day", "2031-08-04": "Heritage Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -1053,7 +1053,7 @@ "2032-05-24": "Victoria Day", "2032-07-01": "Canada Day", "2032-08-02": "Heritage Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -1069,7 +1069,7 @@ "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", "2033-08-01": "Heritage Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -1085,7 +1085,7 @@ "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", "2034-08-07": "Heritage Day", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -1101,7 +1101,7 @@ "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", "2035-08-06": "Heritage Day", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1116,7 +1116,7 @@ "2036-05-19": "Victoria Day", "2036-07-01": "Canada Day", "2036-08-04": "Heritage Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1129,7 +1129,7 @@ "2037-05-18": "Victoria Day", "2037-07-01": "Canada Day", "2037-08-03": "Heritage Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1143,7 +1143,7 @@ "2038-05-24": "Victoria Day", "2038-07-01": "Canada Day", "2038-08-02": "Heritage Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1159,7 +1159,7 @@ "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", "2039-08-01": "Heritage Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1175,7 +1175,7 @@ "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", "2040-08-06": "Heritage Day", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1190,7 +1190,7 @@ "2041-05-20": "Victoria Day", "2041-07-01": "Canada Day", "2041-08-05": "Heritage Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1203,7 +1203,7 @@ "2042-05-19": "Victoria Day", "2042-07-01": "Canada Day", "2042-08-04": "Heritage Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1216,7 +1216,7 @@ "2043-05-18": "Victoria Day", "2043-07-01": "Canada Day", "2043-08-03": "Heritage Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1230,7 +1230,7 @@ "2044-05-23": "Victoria Day", "2044-07-01": "Canada Day", "2044-08-01": "Heritage Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1246,7 +1246,7 @@ "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", "2045-08-07": "Heritage Day", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1262,7 +1262,7 @@ "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", "2046-08-06": "Heritage Day", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1277,7 +1277,7 @@ "2047-05-20": "Victoria Day", "2047-07-01": "Canada Day", "2047-08-05": "Heritage Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1290,7 +1290,7 @@ "2048-05-18": "Victoria Day", "2048-07-01": "Canada Day", "2048-08-03": "Heritage Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1304,7 +1304,7 @@ "2049-05-24": "Victoria Day", "2049-07-01": "Canada Day", "2049-08-02": "Heritage Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1320,7 +1320,7 @@ "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", "2050-08-01": "Heritage Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_BC.json b/snapshots/countries/CA_BC.json index 90f14153c..6a68f5536 100644 --- a/snapshots/countries/CA_BC.json +++ b/snapshots/countries/CA_BC.json @@ -4,7 +4,7 @@ "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -14,7 +14,7 @@ "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -23,7 +23,7 @@ "1952-01-01": "New Year's Day", "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -32,7 +32,7 @@ "1953-04-03": "Good Friday", "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -42,7 +42,7 @@ "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -54,7 +54,7 @@ "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -66,7 +66,7 @@ "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -76,7 +76,7 @@ "1957-04-19": "Good Friday", "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -85,7 +85,7 @@ "1958-04-04": "Good Friday", "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1959-03-27": "Good Friday", "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -116,7 +116,7 @@ "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -127,7 +127,7 @@ "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -137,7 +137,7 @@ "1963-04-12": "Good Friday", "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -146,7 +146,7 @@ "1964-03-27": "Good Friday", "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -156,7 +156,7 @@ "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -168,7 +168,7 @@ "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -180,7 +180,7 @@ "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -190,7 +190,7 @@ "1968-04-12": "Good Friday", "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -199,7 +199,7 @@ "1969-04-04": "Good Friday", "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -208,7 +208,7 @@ "1970-03-27": "Good Friday", "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -218,7 +218,7 @@ "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -231,7 +231,7 @@ "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -242,7 +242,7 @@ "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -253,7 +253,7 @@ "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", "1974-08-05": "British Columbia Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -263,7 +263,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", "1975-08-04": "British Columbia Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -273,7 +273,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", "1976-08-02": "British Columbia Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -286,7 +286,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", "1977-08-01": "British Columbia Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", "1978-08-07": "British Columbia Day", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -311,7 +311,7 @@ "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", "1979-08-06": "British Columbia Day", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -322,7 +322,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", "1980-08-04": "British Columbia Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -332,7 +332,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", "1981-08-03": "British Columbia Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -343,7 +343,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", "1982-08-02": "British Columbia Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -356,7 +356,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", "1983-08-01": "British Columbia Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -369,7 +369,7 @@ "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", "1984-08-06": "British Columbia Day", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -380,7 +380,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", "1985-08-05": "British Columbia Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -390,7 +390,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", "1986-08-04": "British Columbia Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -400,7 +400,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", "1987-08-03": "British Columbia Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -411,7 +411,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", "1988-08-01": "British Columbia Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -424,7 +424,7 @@ "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", "1989-08-07": "British Columbia Day", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -436,7 +436,7 @@ "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", "1990-08-06": "British Columbia Day", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -447,7 +447,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", "1991-08-05": "British Columbia Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -457,7 +457,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", "1992-08-03": "British Columbia Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -468,7 +468,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", "1993-08-02": "British Columbia Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -481,7 +481,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", "1994-08-01": "British Columbia Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -494,7 +494,7 @@ "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", "1995-08-07": "British Columbia Day", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -505,7 +505,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", "1996-08-05": "British Columbia Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -515,7 +515,7 @@ "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", "1997-08-04": "British Columbia Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -525,7 +525,7 @@ "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", "1998-08-03": "British Columbia Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -536,7 +536,7 @@ "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", "1999-08-02": "British Columbia Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -550,7 +550,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-07": "British Columbia Day", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -562,7 +562,7 @@ "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", "2001-08-06": "British Columbia Day", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -573,7 +573,7 @@ "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", "2002-08-05": "British Columbia Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -583,7 +583,7 @@ "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", "2003-08-04": "British Columbia Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -593,7 +593,7 @@ "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", "2004-08-02": "British Columbia Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -606,7 +606,7 @@ "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", "2005-08-01": "British Columbia Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -619,7 +619,7 @@ "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", "2006-08-07": "British Columbia Day", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -631,7 +631,7 @@ "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", "2007-08-06": "British Columbia Day", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -642,7 +642,7 @@ "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", "2008-08-04": "British Columbia Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -652,7 +652,7 @@ "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", "2009-08-03": "British Columbia Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -663,7 +663,7 @@ "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", "2010-08-02": "British Columbia Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -676,7 +676,7 @@ "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", "2011-08-01": "British Columbia Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -689,7 +689,7 @@ "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", "2012-08-06": "British Columbia Day", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -701,7 +701,7 @@ "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", "2013-08-05": "British Columbia Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -712,7 +712,7 @@ "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", "2014-08-04": "British Columbia Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -723,7 +723,7 @@ "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", "2015-08-03": "British Columbia Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -735,7 +735,7 @@ "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", "2016-08-01": "British Columbia Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -749,7 +749,7 @@ "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", "2017-08-07": "British Columbia Day", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -762,7 +762,7 @@ "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", "2018-08-06": "British Columbia Day", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -774,7 +774,7 @@ "2019-05-20": "Victoria Day", "2019-07-01": "Canada Day", "2019-08-05": "British Columbia Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -785,7 +785,7 @@ "2020-05-18": "Victoria Day", "2020-07-01": "Canada Day", "2020-08-03": "British Columbia Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -797,7 +797,7 @@ "2021-05-24": "Victoria Day", "2021-07-01": "Canada Day", "2021-08-02": "British Columbia Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -812,7 +812,7 @@ "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", "2022-08-01": "British Columbia Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-19": "Funeral of Her Majesty the Queen Elizabeth II", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", @@ -828,7 +828,7 @@ "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", "2023-08-07": "British Columbia Day", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -842,7 +842,7 @@ "2024-05-20": "Victoria Day", "2024-07-01": "Canada Day", "2024-08-05": "British Columbia Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -854,7 +854,7 @@ "2025-05-19": "Victoria Day", "2025-07-01": "Canada Day", "2025-08-04": "British Columbia Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -866,7 +866,7 @@ "2026-05-18": "Victoria Day", "2026-07-01": "Canada Day", "2026-08-03": "British Columbia Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -879,7 +879,7 @@ "2027-05-24": "Victoria Day", "2027-07-01": "Canada Day", "2027-08-02": "British Columbia Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -895,7 +895,7 @@ "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", "2028-08-07": "British Columbia Day", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -910,7 +910,7 @@ "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", "2029-08-06": "British Columbia Day", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -924,7 +924,7 @@ "2030-05-20": "Victoria Day", "2030-07-01": "Canada Day", "2030-08-05": "British Columbia Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -936,7 +936,7 @@ "2031-05-19": "Victoria Day", "2031-07-01": "Canada Day", "2031-08-04": "British Columbia Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -948,7 +948,7 @@ "2032-05-24": "Victoria Day", "2032-07-01": "Canada Day", "2032-08-02": "British Columbia Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -963,7 +963,7 @@ "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", "2033-08-01": "British Columbia Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -978,7 +978,7 @@ "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", "2034-08-07": "British Columbia Day", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -993,7 +993,7 @@ "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", "2035-08-06": "British Columbia Day", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1007,7 +1007,7 @@ "2036-05-19": "Victoria Day", "2036-07-01": "Canada Day", "2036-08-04": "British Columbia Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1019,7 +1019,7 @@ "2037-05-18": "Victoria Day", "2037-07-01": "Canada Day", "2037-08-03": "British Columbia Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1032,7 +1032,7 @@ "2038-05-24": "Victoria Day", "2038-07-01": "Canada Day", "2038-08-02": "British Columbia Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1047,7 +1047,7 @@ "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", "2039-08-01": "British Columbia Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1062,7 +1062,7 @@ "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", "2040-08-06": "British Columbia Day", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1076,7 +1076,7 @@ "2041-05-20": "Victoria Day", "2041-07-01": "Canada Day", "2041-08-05": "British Columbia Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1088,7 +1088,7 @@ "2042-05-19": "Victoria Day", "2042-07-01": "Canada Day", "2042-08-04": "British Columbia Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1100,7 +1100,7 @@ "2043-05-18": "Victoria Day", "2043-07-01": "Canada Day", "2043-08-03": "British Columbia Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1113,7 +1113,7 @@ "2044-05-23": "Victoria Day", "2044-07-01": "Canada Day", "2044-08-01": "British Columbia Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1128,7 +1128,7 @@ "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", "2045-08-07": "British Columbia Day", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1143,7 +1143,7 @@ "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", "2046-08-06": "British Columbia Day", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1157,7 +1157,7 @@ "2047-05-20": "Victoria Day", "2047-07-01": "Canada Day", "2047-08-05": "British Columbia Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1169,7 +1169,7 @@ "2048-05-18": "Victoria Day", "2048-07-01": "Canada Day", "2048-08-03": "British Columbia Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1182,7 +1182,7 @@ "2049-05-24": "Victoria Day", "2049-07-01": "Canada Day", "2049-08-02": "British Columbia Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1197,7 +1197,7 @@ "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", "2050-08-01": "British Columbia Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_COMMON.json b/snapshots/countries/CA_COMMON.json index e1f04976d..e112ddc9a 100644 --- a/snapshots/countries/CA_COMMON.json +++ b/snapshots/countries/CA_COMMON.json @@ -4,7 +4,7 @@ "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -14,7 +14,7 @@ "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -23,7 +23,7 @@ "1952-01-01": "New Year's Day", "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -32,7 +32,7 @@ "1953-04-03": "Good Friday", "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -42,7 +42,7 @@ "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -54,7 +54,7 @@ "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -66,7 +66,7 @@ "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -76,7 +76,7 @@ "1957-04-19": "Good Friday", "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -85,7 +85,7 @@ "1958-04-04": "Good Friday", "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1959-03-27": "Good Friday", "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -116,7 +116,7 @@ "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -127,7 +127,7 @@ "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -137,7 +137,7 @@ "1963-04-12": "Good Friday", "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -146,7 +146,7 @@ "1964-03-27": "Good Friday", "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -156,7 +156,7 @@ "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -168,7 +168,7 @@ "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -180,7 +180,7 @@ "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -190,7 +190,7 @@ "1968-04-12": "Good Friday", "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -199,7 +199,7 @@ "1969-04-04": "Good Friday", "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -208,7 +208,7 @@ "1970-03-27": "Good Friday", "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -218,7 +218,7 @@ "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -231,7 +231,7 @@ "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -242,7 +242,7 @@ "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -252,7 +252,7 @@ "1974-04-12": "Good Friday", "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -261,7 +261,7 @@ "1975-03-28": "Good Friday", "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -270,7 +270,7 @@ "1976-04-16": "Good Friday", "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -282,7 +282,7 @@ "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -294,7 +294,7 @@ "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -305,7 +305,7 @@ "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -315,7 +315,7 @@ "1980-04-04": "Good Friday", "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -324,7 +324,7 @@ "1981-04-17": "Good Friday", "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -334,7 +334,7 @@ "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -346,7 +346,7 @@ "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -358,7 +358,7 @@ "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -368,7 +368,7 @@ "1985-04-05": "Good Friday", "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -377,7 +377,7 @@ "1986-03-28": "Good Friday", "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -386,7 +386,7 @@ "1987-04-17": "Good Friday", "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -396,7 +396,7 @@ "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -408,7 +408,7 @@ "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -419,7 +419,7 @@ "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -429,7 +429,7 @@ "1991-03-29": "Good Friday", "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -438,7 +438,7 @@ "1992-04-17": "Good Friday", "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -448,7 +448,7 @@ "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -460,7 +460,7 @@ "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -472,7 +472,7 @@ "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -482,7 +482,7 @@ "1996-04-05": "Good Friday", "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -491,7 +491,7 @@ "1997-03-28": "Good Friday", "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -500,7 +500,7 @@ "1998-04-10": "Good Friday", "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -510,7 +510,7 @@ "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -523,7 +523,7 @@ "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -534,7 +534,7 @@ "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -544,7 +544,7 @@ "2002-03-29": "Good Friday", "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -553,7 +553,7 @@ "2003-04-18": "Good Friday", "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -562,7 +562,7 @@ "2004-04-09": "Good Friday", "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -574,7 +574,7 @@ "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -586,7 +586,7 @@ "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -597,7 +597,7 @@ "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -607,7 +607,7 @@ "2008-03-21": "Good Friday", "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -616,7 +616,7 @@ "2009-04-10": "Good Friday", "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -626,7 +626,7 @@ "2010-04-02": "Good Friday", "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -638,7 +638,7 @@ "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -650,7 +650,7 @@ "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -660,7 +660,7 @@ "2013-03-29": "Good Friday", "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -669,7 +669,7 @@ "2014-04-18": "Good Friday", "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -678,7 +678,7 @@ "2015-04-03": "Good Friday", "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -688,7 +688,7 @@ "2016-03-25": "Good Friday", "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -700,7 +700,7 @@ "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -711,7 +711,7 @@ "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -721,7 +721,7 @@ "2019-04-19": "Good Friday", "2019-05-20": "Victoria Day", "2019-07-01": "Canada Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -730,7 +730,7 @@ "2020-04-10": "Good Friday", "2020-05-18": "Victoria Day", "2020-07-01": "Canada Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -740,7 +740,7 @@ "2021-04-02": "Good Friday", "2021-05-24": "Victoria Day", "2021-07-01": "Canada Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -753,7 +753,7 @@ "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", @@ -766,7 +766,7 @@ "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -778,7 +778,7 @@ "2024-03-29": "Good Friday", "2024-05-20": "Victoria Day", "2024-07-01": "Canada Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -788,7 +788,7 @@ "2025-04-18": "Good Friday", "2025-05-19": "Victoria Day", "2025-07-01": "Canada Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -798,7 +798,7 @@ "2026-04-03": "Good Friday", "2026-05-18": "Victoria Day", "2026-07-01": "Canada Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -809,7 +809,7 @@ "2027-03-26": "Good Friday", "2027-05-24": "Victoria Day", "2027-07-01": "Canada Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -823,7 +823,7 @@ "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -836,7 +836,7 @@ "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -848,7 +848,7 @@ "2030-04-19": "Good Friday", "2030-05-20": "Victoria Day", "2030-07-01": "Canada Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -858,7 +858,7 @@ "2031-04-11": "Good Friday", "2031-05-19": "Victoria Day", "2031-07-01": "Canada Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -868,7 +868,7 @@ "2032-03-26": "Good Friday", "2032-05-24": "Victoria Day", "2032-07-01": "Canada Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -881,7 +881,7 @@ "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -894,7 +894,7 @@ "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -907,7 +907,7 @@ "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -919,7 +919,7 @@ "2036-04-11": "Good Friday", "2036-05-19": "Victoria Day", "2036-07-01": "Canada Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -929,7 +929,7 @@ "2037-04-03": "Good Friday", "2037-05-18": "Victoria Day", "2037-07-01": "Canada Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -940,7 +940,7 @@ "2038-04-23": "Good Friday", "2038-05-24": "Victoria Day", "2038-07-01": "Canada Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -953,7 +953,7 @@ "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -966,7 +966,7 @@ "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -978,7 +978,7 @@ "2041-04-19": "Good Friday", "2041-05-20": "Victoria Day", "2041-07-01": "Canada Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -988,7 +988,7 @@ "2042-04-04": "Good Friday", "2042-05-19": "Victoria Day", "2042-07-01": "Canada Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -998,7 +998,7 @@ "2043-03-27": "Good Friday", "2043-05-18": "Victoria Day", "2043-07-01": "Canada Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1009,7 +1009,7 @@ "2044-04-15": "Good Friday", "2044-05-23": "Victoria Day", "2044-07-01": "Canada Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1022,7 +1022,7 @@ "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1035,7 +1035,7 @@ "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1047,7 +1047,7 @@ "2047-04-12": "Good Friday", "2047-05-20": "Victoria Day", "2047-07-01": "Canada Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1057,7 +1057,7 @@ "2048-04-03": "Good Friday", "2048-05-18": "Victoria Day", "2048-07-01": "Canada Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1068,7 +1068,7 @@ "2049-04-16": "Good Friday", "2049-05-24": "Victoria Day", "2049-07-01": "Canada Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1081,7 +1081,7 @@ "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_MB.json b/snapshots/countries/CA_MB.json index 3e5ecc604..cf2272e37 100644 --- a/snapshots/countries/CA_MB.json +++ b/snapshots/countries/CA_MB.json @@ -5,7 +5,7 @@ "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", "1950-08-07": "Civic Holiday", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -16,7 +16,7 @@ "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", "1951-08-06": "Civic Holiday", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -26,7 +26,7 @@ "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", "1952-08-04": "Civic Holiday", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -36,7 +36,7 @@ "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", "1953-08-03": "Civic Holiday", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -47,7 +47,7 @@ "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", "1954-08-02": "Civic Holiday", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -60,7 +60,7 @@ "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", "1955-08-01": "Civic Holiday", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -73,7 +73,7 @@ "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", "1956-08-06": "Civic Holiday", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -84,7 +84,7 @@ "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", "1957-08-05": "Civic Holiday", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", "1958-08-04": "Civic Holiday", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", "1959-08-03": "Civic Holiday", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", "1960-08-01": "Civic Holiday", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", "1961-08-07": "Civic Holiday", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -140,7 +140,7 @@ "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", "1962-08-06": "Civic Holiday", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -151,7 +151,7 @@ "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", "1963-08-05": "Civic Holiday", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -161,7 +161,7 @@ "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", "1964-08-03": "Civic Holiday", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -172,7 +172,7 @@ "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", "1965-08-02": "Civic Holiday", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -185,7 +185,7 @@ "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", "1966-08-01": "Civic Holiday", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -198,7 +198,7 @@ "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", "1967-08-07": "Civic Holiday", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -209,7 +209,7 @@ "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", "1968-08-05": "Civic Holiday", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -219,7 +219,7 @@ "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", "1969-08-04": "Civic Holiday", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -229,7 +229,7 @@ "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", "1970-08-03": "Civic Holiday", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -240,7 +240,7 @@ "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", "1971-08-02": "Civic Holiday", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -254,7 +254,7 @@ "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", "1972-08-07": "Civic Holiday", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -266,7 +266,7 @@ "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", "1973-08-06": "Civic Holiday", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -277,7 +277,7 @@ "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", "1974-08-05": "Civic Holiday", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -287,7 +287,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", "1975-08-04": "Civic Holiday", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -297,7 +297,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", "1976-08-02": "Civic Holiday", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -310,7 +310,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", "1977-08-01": "Civic Holiday", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -323,7 +323,7 @@ "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", "1978-08-07": "Civic Holiday", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -335,7 +335,7 @@ "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", "1979-08-06": "Civic Holiday", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -346,7 +346,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", "1980-08-04": "Civic Holiday", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -356,7 +356,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", "1981-08-03": "Civic Holiday", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -367,7 +367,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", "1982-08-02": "Civic Holiday", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -380,7 +380,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", "1983-08-01": "Civic Holiday", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -393,7 +393,7 @@ "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", "1984-08-06": "Civic Holiday", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -404,7 +404,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", "1985-08-05": "Civic Holiday", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -414,7 +414,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", "1986-08-04": "Civic Holiday", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -424,7 +424,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", "1987-08-03": "Civic Holiday", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -435,7 +435,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", "1988-08-01": "Civic Holiday", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -448,7 +448,7 @@ "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", "1989-08-07": "Civic Holiday", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -460,7 +460,7 @@ "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", "1990-08-06": "Civic Holiday", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -471,7 +471,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", "1991-08-05": "Civic Holiday", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -481,7 +481,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", "1992-08-03": "Civic Holiday", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -492,7 +492,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", "1993-08-02": "Civic Holiday", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -505,7 +505,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", "1994-08-01": "Civic Holiday", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -518,7 +518,7 @@ "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", "1995-08-07": "Civic Holiday", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -529,7 +529,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", "1996-08-05": "Civic Holiday", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -539,7 +539,7 @@ "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", "1997-08-04": "Civic Holiday", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -549,7 +549,7 @@ "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", "1998-08-03": "Civic Holiday", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -560,7 +560,7 @@ "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", "1999-08-02": "Civic Holiday", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -574,7 +574,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-07": "Civic Holiday", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -586,7 +586,7 @@ "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", "2001-08-06": "Civic Holiday", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -597,7 +597,7 @@ "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", "2002-08-05": "Civic Holiday", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -607,7 +607,7 @@ "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", "2003-08-04": "Civic Holiday", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -617,7 +617,7 @@ "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", "2004-08-02": "Civic Holiday", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -630,7 +630,7 @@ "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", "2005-08-01": "Civic Holiday", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -643,7 +643,7 @@ "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", "2006-08-07": "Civic Holiday", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -655,7 +655,7 @@ "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", "2007-08-06": "Civic Holiday", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -667,7 +667,7 @@ "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", "2008-08-04": "Civic Holiday", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -678,7 +678,7 @@ "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", "2009-08-03": "Civic Holiday", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -690,7 +690,7 @@ "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", "2010-08-02": "Civic Holiday", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -704,7 +704,7 @@ "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", "2011-08-01": "Civic Holiday", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -718,7 +718,7 @@ "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", "2012-08-06": "Civic Holiday", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -730,7 +730,7 @@ "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", "2013-08-05": "Civic Holiday", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -741,7 +741,7 @@ "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", "2014-08-04": "Civic Holiday", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -752,7 +752,7 @@ "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", "2015-08-03": "Terry Fox Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -764,7 +764,7 @@ "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", "2016-08-01": "Terry Fox Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -778,7 +778,7 @@ "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", "2017-08-07": "Terry Fox Day", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -791,7 +791,7 @@ "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", "2018-08-06": "Terry Fox Day", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -803,7 +803,7 @@ "2019-05-20": "Victoria Day", "2019-07-01": "Canada Day", "2019-08-05": "Terry Fox Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -814,7 +814,7 @@ "2020-05-18": "Victoria Day", "2020-07-01": "Canada Day", "2020-08-03": "Terry Fox Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -826,7 +826,7 @@ "2021-05-24": "Victoria Day", "2021-07-01": "Canada Day", "2021-08-02": "Terry Fox Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -841,7 +841,7 @@ "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", "2022-08-01": "Terry Fox Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", @@ -856,7 +856,7 @@ "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", "2023-08-07": "Terry Fox Day", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -870,7 +870,7 @@ "2024-05-20": "Victoria Day", "2024-07-01": "Canada Day", "2024-08-05": "Terry Fox Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -882,7 +882,7 @@ "2025-05-19": "Victoria Day", "2025-07-01": "Canada Day", "2025-08-04": "Terry Fox Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -894,7 +894,7 @@ "2026-05-18": "Victoria Day", "2026-07-01": "Canada Day", "2026-08-03": "Terry Fox Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -907,7 +907,7 @@ "2027-05-24": "Victoria Day", "2027-07-01": "Canada Day", "2027-08-02": "Terry Fox Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -923,7 +923,7 @@ "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", "2028-08-07": "Terry Fox Day", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -938,7 +938,7 @@ "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", "2029-08-06": "Terry Fox Day", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -952,7 +952,7 @@ "2030-05-20": "Victoria Day", "2030-07-01": "Canada Day", "2030-08-05": "Terry Fox Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -964,7 +964,7 @@ "2031-05-19": "Victoria Day", "2031-07-01": "Canada Day", "2031-08-04": "Terry Fox Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -976,7 +976,7 @@ "2032-05-24": "Victoria Day", "2032-07-01": "Canada Day", "2032-08-02": "Terry Fox Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -991,7 +991,7 @@ "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", "2033-08-01": "Terry Fox Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -1006,7 +1006,7 @@ "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", "2034-08-07": "Terry Fox Day", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -1021,7 +1021,7 @@ "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", "2035-08-06": "Terry Fox Day", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1035,7 +1035,7 @@ "2036-05-19": "Victoria Day", "2036-07-01": "Canada Day", "2036-08-04": "Terry Fox Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1047,7 +1047,7 @@ "2037-05-18": "Victoria Day", "2037-07-01": "Canada Day", "2037-08-03": "Terry Fox Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1060,7 +1060,7 @@ "2038-05-24": "Victoria Day", "2038-07-01": "Canada Day", "2038-08-02": "Terry Fox Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1075,7 +1075,7 @@ "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", "2039-08-01": "Terry Fox Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1090,7 +1090,7 @@ "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", "2040-08-06": "Terry Fox Day", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1104,7 +1104,7 @@ "2041-05-20": "Victoria Day", "2041-07-01": "Canada Day", "2041-08-05": "Terry Fox Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1116,7 +1116,7 @@ "2042-05-19": "Victoria Day", "2042-07-01": "Canada Day", "2042-08-04": "Terry Fox Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1128,7 +1128,7 @@ "2043-05-18": "Victoria Day", "2043-07-01": "Canada Day", "2043-08-03": "Terry Fox Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1141,7 +1141,7 @@ "2044-05-23": "Victoria Day", "2044-07-01": "Canada Day", "2044-08-01": "Terry Fox Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1156,7 +1156,7 @@ "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", "2045-08-07": "Terry Fox Day", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1171,7 +1171,7 @@ "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", "2046-08-06": "Terry Fox Day", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1185,7 +1185,7 @@ "2047-05-20": "Victoria Day", "2047-07-01": "Canada Day", "2047-08-05": "Terry Fox Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1197,7 +1197,7 @@ "2048-05-18": "Victoria Day", "2048-07-01": "Canada Day", "2048-08-03": "Terry Fox Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1210,7 +1210,7 @@ "2049-05-24": "Victoria Day", "2049-07-01": "Canada Day", "2049-08-02": "Terry Fox Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1225,7 +1225,7 @@ "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", "2050-08-01": "Terry Fox Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_NB.json b/snapshots/countries/CA_NB.json index 304d0ca70..10281ed3a 100644 --- a/snapshots/countries/CA_NB.json +++ b/snapshots/countries/CA_NB.json @@ -4,7 +4,7 @@ "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -14,7 +14,7 @@ "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -23,7 +23,7 @@ "1952-01-01": "New Year's Day", "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -32,7 +32,7 @@ "1953-04-03": "Good Friday", "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -42,7 +42,7 @@ "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -54,7 +54,7 @@ "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -66,7 +66,7 @@ "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -76,7 +76,7 @@ "1957-04-19": "Good Friday", "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -85,7 +85,7 @@ "1958-04-04": "Good Friday", "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1959-03-27": "Good Friday", "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -116,7 +116,7 @@ "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -127,7 +127,7 @@ "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -137,7 +137,7 @@ "1963-04-12": "Good Friday", "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -146,7 +146,7 @@ "1964-03-27": "Good Friday", "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -156,7 +156,7 @@ "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -168,7 +168,7 @@ "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -180,7 +180,7 @@ "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -190,7 +190,7 @@ "1968-04-12": "Good Friday", "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -199,7 +199,7 @@ "1969-04-04": "Good Friday", "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -208,7 +208,7 @@ "1970-03-27": "Good Friday", "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -218,7 +218,7 @@ "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -231,7 +231,7 @@ "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -242,7 +242,7 @@ "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -252,7 +252,7 @@ "1974-04-12": "Good Friday", "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -262,7 +262,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", "1975-08-04": "New Brunswick Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -272,7 +272,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", "1976-08-02": "New Brunswick Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -285,7 +285,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", "1977-08-01": "New Brunswick Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -298,7 +298,7 @@ "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", "1978-08-07": "New Brunswick Day", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -310,7 +310,7 @@ "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", "1979-08-06": "New Brunswick Day", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -321,7 +321,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", "1980-08-04": "New Brunswick Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -331,7 +331,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", "1981-08-03": "New Brunswick Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -342,7 +342,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", "1982-08-02": "New Brunswick Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -355,7 +355,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", "1983-08-01": "New Brunswick Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -368,7 +368,7 @@ "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", "1984-08-06": "New Brunswick Day", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -379,7 +379,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", "1985-08-05": "New Brunswick Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -389,7 +389,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", "1986-08-04": "New Brunswick Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -399,7 +399,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", "1987-08-03": "New Brunswick Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -410,7 +410,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", "1988-08-01": "New Brunswick Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -423,7 +423,7 @@ "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", "1989-08-07": "New Brunswick Day", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -435,7 +435,7 @@ "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", "1990-08-06": "New Brunswick Day", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -446,7 +446,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", "1991-08-05": "New Brunswick Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -456,7 +456,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", "1992-08-03": "New Brunswick Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -467,7 +467,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", "1993-08-02": "New Brunswick Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -480,7 +480,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", "1994-08-01": "New Brunswick Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -493,7 +493,7 @@ "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", "1995-08-07": "New Brunswick Day", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -504,7 +504,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", "1996-08-05": "New Brunswick Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -514,7 +514,7 @@ "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", "1997-08-04": "New Brunswick Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -524,7 +524,7 @@ "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", "1998-08-03": "New Brunswick Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -535,7 +535,7 @@ "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", "1999-08-02": "New Brunswick Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -549,7 +549,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-07": "New Brunswick Day", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -561,7 +561,7 @@ "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", "2001-08-06": "New Brunswick Day", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -572,7 +572,7 @@ "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", "2002-08-05": "New Brunswick Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -582,7 +582,7 @@ "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", "2003-08-04": "New Brunswick Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -592,7 +592,7 @@ "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", "2004-08-02": "New Brunswick Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", "2005-08-01": "New Brunswick Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -618,7 +618,7 @@ "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", "2006-08-07": "New Brunswick Day", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -630,7 +630,7 @@ "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", "2007-08-06": "New Brunswick Day", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -641,7 +641,7 @@ "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", "2008-08-04": "New Brunswick Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -651,7 +651,7 @@ "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", "2009-08-03": "New Brunswick Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -662,7 +662,7 @@ "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", "2010-08-02": "New Brunswick Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -675,7 +675,7 @@ "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", "2011-08-01": "New Brunswick Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -688,7 +688,7 @@ "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", "2012-08-06": "New Brunswick Day", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -699,7 +699,7 @@ "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", "2013-08-05": "New Brunswick Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -709,7 +709,7 @@ "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", "2014-08-04": "New Brunswick Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -719,7 +719,7 @@ "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", "2015-08-03": "New Brunswick Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -730,7 +730,7 @@ "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", "2016-08-01": "New Brunswick Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", "2017-08-07": "New Brunswick Day", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -756,7 +756,7 @@ "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", "2018-08-06": "New Brunswick Day", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -768,7 +768,7 @@ "2019-05-20": "Victoria Day", "2019-07-01": "Canada Day", "2019-08-05": "New Brunswick Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -779,7 +779,7 @@ "2020-05-18": "Victoria Day", "2020-07-01": "Canada Day", "2020-08-03": "New Brunswick Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -791,7 +791,7 @@ "2021-05-24": "Victoria Day", "2021-07-01": "Canada Day", "2021-08-02": "New Brunswick Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -806,7 +806,7 @@ "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", "2022-08-01": "New Brunswick Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-19": "Funeral of Her Majesty the Queen Elizabeth II", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", @@ -822,7 +822,7 @@ "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", "2023-08-07": "New Brunswick Day", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -836,7 +836,7 @@ "2024-05-20": "Victoria Day", "2024-07-01": "Canada Day", "2024-08-05": "New Brunswick Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -848,7 +848,7 @@ "2025-05-19": "Victoria Day", "2025-07-01": "Canada Day", "2025-08-04": "New Brunswick Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -860,7 +860,7 @@ "2026-05-18": "Victoria Day", "2026-07-01": "Canada Day", "2026-08-03": "New Brunswick Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -873,7 +873,7 @@ "2027-05-24": "Victoria Day", "2027-07-01": "Canada Day", "2027-08-02": "New Brunswick Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -889,7 +889,7 @@ "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", "2028-08-07": "New Brunswick Day", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -904,7 +904,7 @@ "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", "2029-08-06": "New Brunswick Day", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -918,7 +918,7 @@ "2030-05-20": "Victoria Day", "2030-07-01": "Canada Day", "2030-08-05": "New Brunswick Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -930,7 +930,7 @@ "2031-05-19": "Victoria Day", "2031-07-01": "Canada Day", "2031-08-04": "New Brunswick Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -942,7 +942,7 @@ "2032-05-24": "Victoria Day", "2032-07-01": "Canada Day", "2032-08-02": "New Brunswick Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -957,7 +957,7 @@ "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", "2033-08-01": "New Brunswick Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -972,7 +972,7 @@ "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", "2034-08-07": "New Brunswick Day", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -987,7 +987,7 @@ "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", "2035-08-06": "New Brunswick Day", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1001,7 +1001,7 @@ "2036-05-19": "Victoria Day", "2036-07-01": "Canada Day", "2036-08-04": "New Brunswick Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1013,7 +1013,7 @@ "2037-05-18": "Victoria Day", "2037-07-01": "Canada Day", "2037-08-03": "New Brunswick Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1026,7 +1026,7 @@ "2038-05-24": "Victoria Day", "2038-07-01": "Canada Day", "2038-08-02": "New Brunswick Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1041,7 +1041,7 @@ "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", "2039-08-01": "New Brunswick Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1056,7 +1056,7 @@ "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", "2040-08-06": "New Brunswick Day", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1070,7 +1070,7 @@ "2041-05-20": "Victoria Day", "2041-07-01": "Canada Day", "2041-08-05": "New Brunswick Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1082,7 +1082,7 @@ "2042-05-19": "Victoria Day", "2042-07-01": "Canada Day", "2042-08-04": "New Brunswick Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1094,7 +1094,7 @@ "2043-05-18": "Victoria Day", "2043-07-01": "Canada Day", "2043-08-03": "New Brunswick Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1107,7 +1107,7 @@ "2044-05-23": "Victoria Day", "2044-07-01": "Canada Day", "2044-08-01": "New Brunswick Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1122,7 +1122,7 @@ "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", "2045-08-07": "New Brunswick Day", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1137,7 +1137,7 @@ "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", "2046-08-06": "New Brunswick Day", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1151,7 +1151,7 @@ "2047-05-20": "Victoria Day", "2047-07-01": "Canada Day", "2047-08-05": "New Brunswick Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1163,7 +1163,7 @@ "2048-05-18": "Victoria Day", "2048-07-01": "Canada Day", "2048-08-03": "New Brunswick Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1176,7 +1176,7 @@ "2049-05-24": "Victoria Day", "2049-07-01": "Canada Day", "2049-08-02": "New Brunswick Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1191,7 +1191,7 @@ "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", "2050-08-01": "New Brunswick Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_NL.json b/snapshots/countries/CA_NL.json index 8e122a92c..a07592ad0 100644 --- a/snapshots/countries/CA_NL.json +++ b/snapshots/countries/CA_NL.json @@ -6,7 +6,7 @@ "1950-07-01": "Dominion Day; Memorial Day", "1950-07-03": "Dominion Day (Observed); Memorial Day (Observed)", "1950-07-10": "Orangemen's Day", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -18,7 +18,7 @@ "1951-07-01": "Dominion Day; Memorial Day", "1951-07-02": "Dominion Day (Observed); Memorial Day (Observed)", "1951-07-09": "Orangemen's Day", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -29,7 +29,7 @@ "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day; Memorial Day", "1952-07-14": "Orangemen's Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -40,7 +40,7 @@ "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day; Memorial Day", "1953-07-13": "Orangemen's Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -52,7 +52,7 @@ "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day; Memorial Day", "1954-07-12": "Orangemen's Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -66,7 +66,7 @@ "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day; Memorial Day", "1955-07-11": "Orangemen's Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -80,7 +80,7 @@ "1956-07-01": "Dominion Day; Memorial Day", "1956-07-02": "Dominion Day (Observed); Memorial Day (Observed)", "1956-07-09": "Orangemen's Day", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -92,7 +92,7 @@ "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day; Memorial Day", "1957-07-15": "Orangemen's Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -103,7 +103,7 @@ "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day; Memorial Day", "1958-07-14": "Orangemen's Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -114,7 +114,7 @@ "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day; Memorial Day", "1959-07-13": "Orangemen's Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -126,7 +126,7 @@ "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day; Memorial Day", "1960-07-11": "Orangemen's Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -140,7 +140,7 @@ "1961-07-01": "Dominion Day; Memorial Day", "1961-07-03": "Dominion Day (Observed); Memorial Day (Observed)", "1961-07-10": "Orangemen's Day", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -153,7 +153,7 @@ "1962-07-01": "Dominion Day; Memorial Day", "1962-07-02": "Dominion Day (Observed); Memorial Day (Observed)", "1962-07-09": "Orangemen's Day", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -165,7 +165,7 @@ "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day; Memorial Day", "1963-07-15": "Orangemen's Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -176,7 +176,7 @@ "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day; Memorial Day", "1964-07-13": "Orangemen's Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -188,7 +188,7 @@ "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day; Memorial Day", "1965-07-12": "Orangemen's Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -202,7 +202,7 @@ "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day; Memorial Day", "1966-07-11": "Orangemen's Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -216,7 +216,7 @@ "1967-07-01": "Dominion Day; Memorial Day", "1967-07-03": "Dominion Day (Observed); Memorial Day (Observed)", "1967-07-10": "Orangemen's Day", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -228,7 +228,7 @@ "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day; Memorial Day", "1968-07-15": "Orangemen's Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -239,7 +239,7 @@ "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day; Memorial Day", "1969-07-14": "Orangemen's Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -250,7 +250,7 @@ "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day; Memorial Day", "1970-07-13": "Orangemen's Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -262,7 +262,7 @@ "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day; Memorial Day", "1971-07-12": "Orangemen's Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -277,7 +277,7 @@ "1972-07-01": "Dominion Day; Memorial Day", "1972-07-03": "Dominion Day (Observed); Memorial Day (Observed)", "1972-07-10": "Orangemen's Day", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -290,7 +290,7 @@ "1973-07-01": "Dominion Day; Memorial Day", "1973-07-02": "Dominion Day (Observed); Memorial Day (Observed)", "1973-07-09": "Orangemen's Day", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -302,7 +302,7 @@ "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day; Memorial Day", "1974-07-15": "Orangemen's Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -313,7 +313,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day; Memorial Day", "1975-07-14": "Orangemen's Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -324,7 +324,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day; Memorial Day", "1976-07-12": "Orangemen's Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -338,7 +338,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day; Memorial Day", "1977-07-11": "Orangemen's Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -352,7 +352,7 @@ "1978-07-01": "Dominion Day; Memorial Day", "1978-07-03": "Dominion Day (Observed); Memorial Day (Observed)", "1978-07-10": "Orangemen's Day", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -365,7 +365,7 @@ "1979-07-01": "Dominion Day; Memorial Day", "1979-07-02": "Dominion Day (Observed); Memorial Day (Observed)", "1979-07-09": "Orangemen's Day", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -377,7 +377,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day; Memorial Day", "1980-07-14": "Orangemen's Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -388,7 +388,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day; Memorial Day", "1981-07-13": "Orangemen's Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -400,7 +400,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day; Memorial Day", "1982-07-12": "Orangemen's Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -414,7 +414,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day; Memorial Day", "1983-07-11": "Orangemen's Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -428,7 +428,7 @@ "1984-07-01": "Canada Day; Memorial Day", "1984-07-02": "Canada Day (Observed); Memorial Day (Observed)", "1984-07-09": "Orangemen's Day", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -440,7 +440,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day; Memorial Day", "1985-07-15": "Orangemen's Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day; Memorial Day", "1986-07-14": "Orangemen's Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -462,7 +462,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day; Memorial Day", "1987-07-13": "Orangemen's Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -474,7 +474,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day; Memorial Day", "1988-07-11": "Orangemen's Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -488,7 +488,7 @@ "1989-07-01": "Canada Day; Memorial Day", "1989-07-03": "Canada Day (Observed); Memorial Day (Observed)", "1989-07-10": "Orangemen's Day", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -502,7 +502,7 @@ "1990-07-01": "Canada Day; Memorial Day", "1990-07-02": "Canada Day (Observed); Memorial Day (Observed)", "1990-07-09": "Orangemen's Day", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -515,7 +515,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day; Memorial Day", "1991-07-15": "Orangemen's Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -527,7 +527,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day; Memorial Day", "1992-07-13": "Orangemen's Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -540,7 +540,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day; Memorial Day", "1993-07-12": "Orangemen's Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -555,7 +555,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day; Memorial Day", "1994-07-11": "Orangemen's Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -570,7 +570,7 @@ "1995-07-01": "Canada Day; Memorial Day", "1995-07-03": "Canada Day (Observed); Memorial Day (Observed)", "1995-07-10": "Orangemen's Day", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -583,7 +583,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day; Memorial Day", "1996-07-15": "Orangemen's Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -596,7 +596,7 @@ "1997-06-23": "Discovery Day", "1997-07-01": "Canada Day; Memorial Day", "1997-07-14": "Orangemen's Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -609,7 +609,7 @@ "1998-06-22": "Discovery Day", "1998-07-01": "Canada Day; Memorial Day", "1998-07-13": "Orangemen's Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -623,7 +623,7 @@ "1999-06-21": "Discovery Day", "1999-07-01": "Canada Day; Memorial Day", "1999-07-12": "Orangemen's Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -640,7 +640,7 @@ "2000-07-01": "Canada Day; Memorial Day", "2000-07-03": "Canada Day (Observed); Memorial Day (Observed)", "2000-07-10": "Orangemen's Day", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -655,7 +655,7 @@ "2001-07-01": "Canada Day; Memorial Day", "2001-07-02": "Canada Day (Observed); Memorial Day (Observed)", "2001-07-09": "Orangemen's Day", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -669,7 +669,7 @@ "2002-06-24": "Discovery Day", "2002-07-01": "Canada Day; Memorial Day", "2002-07-15": "Orangemen's Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -682,7 +682,7 @@ "2003-06-23": "Discovery Day", "2003-07-01": "Canada Day; Memorial Day", "2003-07-14": "Orangemen's Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -695,7 +695,7 @@ "2004-06-21": "Discovery Day", "2004-07-01": "Canada Day; Memorial Day", "2004-07-12": "Orangemen's Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -711,7 +711,7 @@ "2005-06-27": "Discovery Day", "2005-07-01": "Canada Day; Memorial Day", "2005-07-11": "Orangemen's Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -727,7 +727,7 @@ "2006-07-01": "Canada Day; Memorial Day", "2006-07-03": "Canada Day (Observed); Memorial Day (Observed)", "2006-07-10": "Orangemen's Day", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -742,7 +742,7 @@ "2007-07-01": "Canada Day; Memorial Day", "2007-07-02": "Canada Day (Observed); Memorial Day (Observed)", "2007-07-09": "Orangemen's Day", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -756,7 +756,7 @@ "2008-06-23": "Discovery Day", "2008-07-01": "Canada Day; Memorial Day", "2008-07-14": "Orangemen's Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -769,7 +769,7 @@ "2009-06-22": "Discovery Day", "2009-07-01": "Canada Day; Memorial Day", "2009-07-13": "Orangemen's Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -783,7 +783,7 @@ "2010-06-21": "Discovery Day", "2010-07-01": "Canada Day; Memorial Day", "2010-07-12": "Orangemen's Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -799,7 +799,7 @@ "2011-06-27": "Discovery Day", "2011-07-01": "Canada Day; Memorial Day", "2011-07-11": "Orangemen's Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -815,7 +815,7 @@ "2012-07-01": "Canada Day; Memorial Day", "2012-07-02": "Canada Day (Observed); Memorial Day (Observed)", "2012-07-09": "Orangemen's Day", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -829,7 +829,7 @@ "2013-06-24": "Discovery Day", "2013-07-01": "Canada Day; Memorial Day", "2013-07-15": "Orangemen's Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -842,7 +842,7 @@ "2014-06-23": "Discovery Day", "2014-07-01": "Canada Day; Memorial Day", "2014-07-14": "Orangemen's Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -855,7 +855,7 @@ "2015-06-22": "Discovery Day", "2015-07-01": "Canada Day; Memorial Day", "2015-07-13": "Orangemen's Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -869,7 +869,7 @@ "2016-06-27": "Discovery Day", "2016-07-01": "Canada Day; Memorial Day", "2016-07-11": "Orangemen's Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -885,7 +885,7 @@ "2017-07-01": "Canada Day; Memorial Day", "2017-07-03": "Canada Day (Observed); Memorial Day (Observed)", "2017-07-10": "Orangemen's Day", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -900,7 +900,7 @@ "2018-07-01": "Canada Day; Memorial Day", "2018-07-02": "Canada Day (Observed); Memorial Day (Observed)", "2018-07-09": "Orangemen's Day", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -914,7 +914,7 @@ "2019-06-24": "Discovery Day", "2019-07-01": "Canada Day; Memorial Day", "2019-07-15": "Orangemen's Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -927,7 +927,7 @@ "2020-06-22": "Discovery Day", "2020-07-01": "Canada Day; Memorial Day", "2020-07-13": "Orangemen's Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -941,7 +941,7 @@ "2021-06-21": "Discovery Day", "2021-07-01": "Canada Day; Memorial Day", "2021-07-12": "Orangemen's Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -958,7 +958,7 @@ "2022-06-27": "Discovery Day", "2022-07-01": "Canada Day; Memorial Day", "2022-07-11": "Orangemen's Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-19": "Funeral of Her Majesty the Queen Elizabeth II", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", @@ -976,7 +976,7 @@ "2023-07-01": "Canada Day; Memorial Day", "2023-07-03": "Canada Day (Observed); Memorial Day (Observed)", "2023-07-10": "Orangemen's Day", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -992,7 +992,7 @@ "2024-06-24": "Discovery Day", "2024-07-01": "Canada Day; Memorial Day", "2024-07-15": "Orangemen's Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -1006,7 +1006,7 @@ "2025-06-23": "Discovery Day", "2025-07-01": "Canada Day; Memorial Day", "2025-07-14": "Orangemen's Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -1020,7 +1020,7 @@ "2026-06-22": "Discovery Day", "2026-07-01": "Canada Day; Memorial Day", "2026-07-13": "Orangemen's Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -1035,7 +1035,7 @@ "2027-06-21": "Discovery Day", "2027-07-01": "Canada Day; Memorial Day", "2027-07-12": "Orangemen's Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -1053,7 +1053,7 @@ "2028-07-01": "Canada Day; Memorial Day", "2028-07-03": "Canada Day (Observed); Memorial Day (Observed)", "2028-07-10": "Orangemen's Day", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -1070,7 +1070,7 @@ "2029-07-01": "Canada Day; Memorial Day", "2029-07-02": "Canada Day (Observed); Memorial Day (Observed)", "2029-07-09": "Orangemen's Day", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -1086,7 +1086,7 @@ "2030-06-24": "Discovery Day", "2030-07-01": "Canada Day; Memorial Day", "2030-07-15": "Orangemen's Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -1100,7 +1100,7 @@ "2031-06-23": "Discovery Day", "2031-07-01": "Canada Day; Memorial Day", "2031-07-14": "Orangemen's Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -1114,7 +1114,7 @@ "2032-06-21": "Discovery Day", "2032-07-01": "Canada Day; Memorial Day", "2032-07-12": "Orangemen's Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -1131,7 +1131,7 @@ "2033-06-27": "Discovery Day", "2033-07-01": "Canada Day; Memorial Day", "2033-07-11": "Orangemen's Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -1148,7 +1148,7 @@ "2034-07-01": "Canada Day; Memorial Day", "2034-07-03": "Canada Day (Observed); Memorial Day (Observed)", "2034-07-10": "Orangemen's Day", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -1165,7 +1165,7 @@ "2035-07-01": "Canada Day; Memorial Day", "2035-07-02": "Canada Day (Observed); Memorial Day (Observed)", "2035-07-09": "Orangemen's Day", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1181,7 +1181,7 @@ "2036-06-23": "Discovery Day", "2036-07-01": "Canada Day; Memorial Day", "2036-07-14": "Orangemen's Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1195,7 +1195,7 @@ "2037-06-22": "Discovery Day", "2037-07-01": "Canada Day; Memorial Day", "2037-07-13": "Orangemen's Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1210,7 +1210,7 @@ "2038-06-21": "Discovery Day", "2038-07-01": "Canada Day; Memorial Day", "2038-07-12": "Orangemen's Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1227,7 +1227,7 @@ "2039-06-27": "Discovery Day", "2039-07-01": "Canada Day; Memorial Day", "2039-07-11": "Orangemen's Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1244,7 +1244,7 @@ "2040-07-01": "Canada Day; Memorial Day", "2040-07-02": "Canada Day (Observed); Memorial Day (Observed)", "2040-07-09": "Orangemen's Day", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1260,7 +1260,7 @@ "2041-06-24": "Discovery Day", "2041-07-01": "Canada Day; Memorial Day", "2041-07-15": "Orangemen's Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1274,7 +1274,7 @@ "2042-06-23": "Discovery Day", "2042-07-01": "Canada Day; Memorial Day", "2042-07-14": "Orangemen's Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1288,7 +1288,7 @@ "2043-06-22": "Discovery Day", "2043-07-01": "Canada Day; Memorial Day", "2043-07-13": "Orangemen's Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1303,7 +1303,7 @@ "2044-06-27": "Discovery Day", "2044-07-01": "Canada Day; Memorial Day", "2044-07-11": "Orangemen's Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1320,7 +1320,7 @@ "2045-07-01": "Canada Day; Memorial Day", "2045-07-03": "Canada Day (Observed); Memorial Day (Observed)", "2045-07-10": "Orangemen's Day", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1337,7 +1337,7 @@ "2046-07-01": "Canada Day; Memorial Day", "2046-07-02": "Canada Day (Observed); Memorial Day (Observed)", "2046-07-09": "Orangemen's Day", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1353,7 +1353,7 @@ "2047-06-24": "Discovery Day", "2047-07-01": "Canada Day; Memorial Day", "2047-07-15": "Orangemen's Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1367,7 +1367,7 @@ "2048-06-22": "Discovery Day", "2048-07-01": "Canada Day; Memorial Day", "2048-07-13": "Orangemen's Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1382,7 +1382,7 @@ "2049-06-21": "Discovery Day", "2049-07-01": "Canada Day; Memorial Day", "2049-07-12": "Orangemen's Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1399,7 +1399,7 @@ "2050-06-27": "Discovery Day", "2050-07-01": "Canada Day; Memorial Day", "2050-07-11": "Orangemen's Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_NS.json b/snapshots/countries/CA_NS.json index db2058299..01fd2a23c 100644 --- a/snapshots/countries/CA_NS.json +++ b/snapshots/countries/CA_NS.json @@ -4,7 +4,7 @@ "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -14,7 +14,7 @@ "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -23,7 +23,7 @@ "1952-01-01": "New Year's Day", "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -32,7 +32,7 @@ "1953-04-03": "Good Friday", "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -42,7 +42,7 @@ "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -54,7 +54,7 @@ "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -66,7 +66,7 @@ "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -76,7 +76,7 @@ "1957-04-19": "Good Friday", "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -85,7 +85,7 @@ "1958-04-04": "Good Friday", "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1959-03-27": "Good Friday", "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -116,7 +116,7 @@ "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -127,7 +127,7 @@ "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -137,7 +137,7 @@ "1963-04-12": "Good Friday", "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -146,7 +146,7 @@ "1964-03-27": "Good Friday", "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -156,7 +156,7 @@ "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -168,7 +168,7 @@ "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -180,7 +180,7 @@ "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -190,7 +190,7 @@ "1968-04-12": "Good Friday", "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -199,7 +199,7 @@ "1969-04-04": "Good Friday", "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -208,7 +208,7 @@ "1970-03-27": "Good Friday", "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -218,7 +218,7 @@ "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -231,7 +231,7 @@ "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -242,7 +242,7 @@ "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -252,7 +252,7 @@ "1974-04-12": "Good Friday", "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -261,7 +261,7 @@ "1975-03-28": "Good Friday", "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -270,7 +270,7 @@ "1976-04-16": "Good Friday", "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -282,7 +282,7 @@ "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -294,7 +294,7 @@ "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -305,7 +305,7 @@ "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -315,7 +315,7 @@ "1980-04-04": "Good Friday", "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -324,7 +324,7 @@ "1981-04-17": "Good Friday", "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -334,7 +334,7 @@ "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -346,7 +346,7 @@ "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -358,7 +358,7 @@ "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -368,7 +368,7 @@ "1985-04-05": "Good Friday", "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -377,7 +377,7 @@ "1986-03-28": "Good Friday", "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -386,7 +386,7 @@ "1987-04-17": "Good Friday", "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -396,7 +396,7 @@ "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -408,7 +408,7 @@ "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -419,7 +419,7 @@ "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -429,7 +429,7 @@ "1991-03-29": "Good Friday", "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -438,7 +438,7 @@ "1992-04-17": "Good Friday", "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -448,7 +448,7 @@ "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -460,7 +460,7 @@ "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -472,7 +472,7 @@ "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -483,7 +483,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", "1996-08-05": "Natal Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -493,7 +493,7 @@ "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", "1997-08-04": "Natal Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -503,7 +503,7 @@ "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", "1998-08-03": "Natal Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -514,7 +514,7 @@ "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", "1999-08-02": "Natal Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -528,7 +528,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-07": "Natal Day", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -540,7 +540,7 @@ "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", "2001-08-06": "Natal Day", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -551,7 +551,7 @@ "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", "2002-08-05": "Natal Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -561,7 +561,7 @@ "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", "2003-08-04": "Natal Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -571,7 +571,7 @@ "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", "2004-08-02": "Natal Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -584,7 +584,7 @@ "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", "2005-08-01": "Natal Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -597,7 +597,7 @@ "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", "2006-08-07": "Natal Day", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -609,7 +609,7 @@ "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", "2007-08-06": "Natal Day", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -620,7 +620,7 @@ "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", "2008-08-04": "Natal Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -630,7 +630,7 @@ "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", "2009-08-03": "Natal Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -641,7 +641,7 @@ "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", "2010-08-02": "Natal Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -654,7 +654,7 @@ "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", "2011-08-01": "Natal Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -667,7 +667,7 @@ "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", "2012-08-06": "Natal Day", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -678,7 +678,7 @@ "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", "2013-08-05": "Natal Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -688,7 +688,7 @@ "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", "2014-08-04": "Natal Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -699,7 +699,7 @@ "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", "2015-08-03": "Natal Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -711,7 +711,7 @@ "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", "2016-08-01": "Natal Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -725,7 +725,7 @@ "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", "2017-08-07": "Natal Day", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -738,7 +738,7 @@ "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", "2018-08-06": "Natal Day", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -750,7 +750,7 @@ "2019-05-20": "Victoria Day", "2019-07-01": "Canada Day", "2019-08-05": "Natal Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -761,7 +761,7 @@ "2020-05-18": "Victoria Day", "2020-07-01": "Canada Day", "2020-08-03": "Natal Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -773,7 +773,7 @@ "2021-05-24": "Victoria Day", "2021-07-01": "Canada Day", "2021-08-02": "Natal Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -788,7 +788,7 @@ "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", "2022-08-01": "Natal Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-19": "Funeral of Her Majesty the Queen Elizabeth II", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", @@ -804,7 +804,7 @@ "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", "2023-08-07": "Natal Day", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -818,7 +818,7 @@ "2024-05-20": "Victoria Day", "2024-07-01": "Canada Day", "2024-08-05": "Natal Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -830,7 +830,7 @@ "2025-05-19": "Victoria Day", "2025-07-01": "Canada Day", "2025-08-04": "Natal Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -842,7 +842,7 @@ "2026-05-18": "Victoria Day", "2026-07-01": "Canada Day", "2026-08-03": "Natal Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -855,7 +855,7 @@ "2027-05-24": "Victoria Day", "2027-07-01": "Canada Day", "2027-08-02": "Natal Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -871,7 +871,7 @@ "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", "2028-08-07": "Natal Day", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -886,7 +886,7 @@ "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", "2029-08-06": "Natal Day", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -900,7 +900,7 @@ "2030-05-20": "Victoria Day", "2030-07-01": "Canada Day", "2030-08-05": "Natal Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -912,7 +912,7 @@ "2031-05-19": "Victoria Day", "2031-07-01": "Canada Day", "2031-08-04": "Natal Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -924,7 +924,7 @@ "2032-05-24": "Victoria Day", "2032-07-01": "Canada Day", "2032-08-02": "Natal Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -939,7 +939,7 @@ "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", "2033-08-01": "Natal Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -954,7 +954,7 @@ "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", "2034-08-07": "Natal Day", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -969,7 +969,7 @@ "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", "2035-08-06": "Natal Day", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -983,7 +983,7 @@ "2036-05-19": "Victoria Day", "2036-07-01": "Canada Day", "2036-08-04": "Natal Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -995,7 +995,7 @@ "2037-05-18": "Victoria Day", "2037-07-01": "Canada Day", "2037-08-03": "Natal Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1008,7 +1008,7 @@ "2038-05-24": "Victoria Day", "2038-07-01": "Canada Day", "2038-08-02": "Natal Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1023,7 +1023,7 @@ "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", "2039-08-01": "Natal Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1038,7 +1038,7 @@ "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", "2040-08-06": "Natal Day", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1052,7 +1052,7 @@ "2041-05-20": "Victoria Day", "2041-07-01": "Canada Day", "2041-08-05": "Natal Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1064,7 +1064,7 @@ "2042-05-19": "Victoria Day", "2042-07-01": "Canada Day", "2042-08-04": "Natal Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1076,7 +1076,7 @@ "2043-05-18": "Victoria Day", "2043-07-01": "Canada Day", "2043-08-03": "Natal Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1089,7 +1089,7 @@ "2044-05-23": "Victoria Day", "2044-07-01": "Canada Day", "2044-08-01": "Natal Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1104,7 +1104,7 @@ "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", "2045-08-07": "Natal Day", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1119,7 +1119,7 @@ "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", "2046-08-06": "Natal Day", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1133,7 +1133,7 @@ "2047-05-20": "Victoria Day", "2047-07-01": "Canada Day", "2047-08-05": "Natal Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1145,7 +1145,7 @@ "2048-05-18": "Victoria Day", "2048-07-01": "Canada Day", "2048-08-03": "Natal Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1158,7 +1158,7 @@ "2049-05-24": "Victoria Day", "2049-07-01": "Canada Day", "2049-08-02": "Natal Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1173,7 +1173,7 @@ "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", "2050-08-01": "Natal Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_NT.json b/snapshots/countries/CA_NT.json index fe2b59686..08b83e909 100644 --- a/snapshots/countries/CA_NT.json +++ b/snapshots/countries/CA_NT.json @@ -5,7 +5,7 @@ "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", "1950-08-07": "Civic Holiday", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -16,7 +16,7 @@ "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", "1951-08-06": "Civic Holiday", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -26,7 +26,7 @@ "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", "1952-08-04": "Civic Holiday", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -36,7 +36,7 @@ "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", "1953-08-03": "Civic Holiday", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -47,7 +47,7 @@ "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", "1954-08-02": "Civic Holiday", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -60,7 +60,7 @@ "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", "1955-08-01": "Civic Holiday", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -73,7 +73,7 @@ "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", "1956-08-06": "Civic Holiday", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -84,7 +84,7 @@ "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", "1957-08-05": "Civic Holiday", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", "1958-08-04": "Civic Holiday", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", "1959-08-03": "Civic Holiday", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", "1960-08-01": "Civic Holiday", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", "1961-08-07": "Civic Holiday", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -140,7 +140,7 @@ "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", "1962-08-06": "Civic Holiday", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -151,7 +151,7 @@ "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", "1963-08-05": "Civic Holiday", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -161,7 +161,7 @@ "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", "1964-08-03": "Civic Holiday", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -172,7 +172,7 @@ "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", "1965-08-02": "Civic Holiday", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -185,7 +185,7 @@ "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", "1966-08-01": "Civic Holiday", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -198,7 +198,7 @@ "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", "1967-08-07": "Civic Holiday", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -209,7 +209,7 @@ "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", "1968-08-05": "Civic Holiday", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -219,7 +219,7 @@ "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", "1969-08-04": "Civic Holiday", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -229,7 +229,7 @@ "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", "1970-08-03": "Civic Holiday", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -240,7 +240,7 @@ "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", "1971-08-02": "Civic Holiday", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -254,7 +254,7 @@ "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", "1972-08-07": "Civic Holiday", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -266,7 +266,7 @@ "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", "1973-08-06": "Civic Holiday", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -277,7 +277,7 @@ "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", "1974-08-05": "Civic Holiday", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -287,7 +287,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", "1975-08-04": "Civic Holiday", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -297,7 +297,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", "1976-08-02": "Civic Holiday", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -310,7 +310,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", "1977-08-01": "Civic Holiday", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -323,7 +323,7 @@ "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", "1978-08-07": "Civic Holiday", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -335,7 +335,7 @@ "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", "1979-08-06": "Civic Holiday", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -346,7 +346,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", "1980-08-04": "Civic Holiday", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -356,7 +356,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", "1981-08-03": "Civic Holiday", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -367,7 +367,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", "1982-08-02": "Civic Holiday", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -380,7 +380,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", "1983-08-01": "Civic Holiday", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -393,7 +393,7 @@ "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", "1984-08-06": "Civic Holiday", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -404,7 +404,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", "1985-08-05": "Civic Holiday", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -414,7 +414,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", "1986-08-04": "Civic Holiday", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -424,7 +424,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", "1987-08-03": "Civic Holiday", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -435,7 +435,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", "1988-08-01": "Civic Holiday", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -448,7 +448,7 @@ "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", "1989-08-07": "Civic Holiday", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -460,7 +460,7 @@ "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", "1990-08-06": "Civic Holiday", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -471,7 +471,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", "1991-08-05": "Civic Holiday", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -481,7 +481,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", "1992-08-03": "Civic Holiday", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -492,7 +492,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", "1993-08-02": "Civic Holiday", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -505,7 +505,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", "1994-08-01": "Civic Holiday", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -518,7 +518,7 @@ "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", "1995-08-07": "Civic Holiday", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -530,7 +530,7 @@ "1996-06-21": "National Aboriginal Day", "1996-07-01": "Canada Day", "1996-08-05": "Civic Holiday", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -541,7 +541,7 @@ "1997-06-21": "National Aboriginal Day", "1997-07-01": "Canada Day", "1997-08-04": "Civic Holiday", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -552,7 +552,7 @@ "1998-06-21": "National Aboriginal Day", "1998-07-01": "Canada Day", "1998-08-03": "Civic Holiday", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -564,7 +564,7 @@ "1999-06-21": "National Aboriginal Day", "1999-07-01": "Canada Day", "1999-08-02": "Civic Holiday", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -579,7 +579,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-07": "Civic Holiday", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -592,7 +592,7 @@ "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", "2001-08-06": "Civic Holiday", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -604,7 +604,7 @@ "2002-06-21": "National Aboriginal Day", "2002-07-01": "Canada Day", "2002-08-05": "Civic Holiday", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -615,7 +615,7 @@ "2003-06-21": "National Aboriginal Day", "2003-07-01": "Canada Day", "2003-08-04": "Civic Holiday", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -626,7 +626,7 @@ "2004-06-21": "National Aboriginal Day", "2004-07-01": "Canada Day", "2004-08-02": "Civic Holiday", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -640,7 +640,7 @@ "2005-06-21": "National Aboriginal Day", "2005-07-01": "Canada Day", "2005-08-01": "Civic Holiday", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -654,7 +654,7 @@ "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", "2006-08-07": "Civic Holiday", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -667,7 +667,7 @@ "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", "2007-08-06": "Civic Holiday", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -679,7 +679,7 @@ "2008-06-21": "National Aboriginal Day", "2008-07-01": "Canada Day", "2008-08-04": "Civic Holiday", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -690,7 +690,7 @@ "2009-06-21": "National Aboriginal Day", "2009-07-01": "Canada Day", "2009-08-03": "Civic Holiday", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -702,7 +702,7 @@ "2010-06-21": "National Aboriginal Day", "2010-07-01": "Canada Day", "2010-08-02": "Civic Holiday", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -716,7 +716,7 @@ "2011-06-21": "National Aboriginal Day", "2011-07-01": "Canada Day", "2011-08-01": "Civic Holiday", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -730,7 +730,7 @@ "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", "2012-08-06": "Civic Holiday", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -742,7 +742,7 @@ "2013-06-21": "National Aboriginal Day", "2013-07-01": "Canada Day", "2013-08-05": "Civic Holiday", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -753,7 +753,7 @@ "2014-06-21": "National Aboriginal Day", "2014-07-01": "Canada Day", "2014-08-04": "Civic Holiday", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -764,7 +764,7 @@ "2015-06-21": "National Aboriginal Day", "2015-07-01": "Canada Day", "2015-08-03": "Civic Holiday", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -776,7 +776,7 @@ "2016-06-21": "National Aboriginal Day", "2016-07-01": "Canada Day", "2016-08-01": "Civic Holiday", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -790,7 +790,7 @@ "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", "2017-08-07": "Civic Holiday", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -803,7 +803,7 @@ "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", "2018-08-06": "Civic Holiday", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -815,7 +815,7 @@ "2019-06-21": "National Aboriginal Day", "2019-07-01": "Canada Day", "2019-08-05": "Civic Holiday", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -826,7 +826,7 @@ "2020-06-21": "National Aboriginal Day", "2020-07-01": "Canada Day", "2020-08-03": "Civic Holiday", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -838,7 +838,7 @@ "2021-06-21": "National Aboriginal Day", "2021-07-01": "Canada Day", "2021-08-02": "Civic Holiday", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -853,7 +853,7 @@ "2022-06-21": "National Aboriginal Day", "2022-07-01": "Canada Day", "2022-08-01": "Civic Holiday", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", @@ -868,7 +868,7 @@ "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", "2023-08-07": "Civic Holiday", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -882,7 +882,7 @@ "2024-06-21": "National Aboriginal Day", "2024-07-01": "Canada Day", "2024-08-05": "Civic Holiday", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -894,7 +894,7 @@ "2025-06-21": "National Aboriginal Day", "2025-07-01": "Canada Day", "2025-08-04": "Civic Holiday", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -906,7 +906,7 @@ "2026-06-21": "National Aboriginal Day", "2026-07-01": "Canada Day", "2026-08-03": "Civic Holiday", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -919,7 +919,7 @@ "2027-06-21": "National Aboriginal Day", "2027-07-01": "Canada Day", "2027-08-02": "Civic Holiday", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -935,7 +935,7 @@ "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", "2028-08-07": "Civic Holiday", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -950,7 +950,7 @@ "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", "2029-08-06": "Civic Holiday", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -964,7 +964,7 @@ "2030-06-21": "National Aboriginal Day", "2030-07-01": "Canada Day", "2030-08-05": "Civic Holiday", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -976,7 +976,7 @@ "2031-06-21": "National Aboriginal Day", "2031-07-01": "Canada Day", "2031-08-04": "Civic Holiday", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -988,7 +988,7 @@ "2032-06-21": "National Aboriginal Day", "2032-07-01": "Canada Day", "2032-08-02": "Civic Holiday", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -1003,7 +1003,7 @@ "2033-06-21": "National Aboriginal Day", "2033-07-01": "Canada Day", "2033-08-01": "Civic Holiday", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -1018,7 +1018,7 @@ "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", "2034-08-07": "Civic Holiday", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -1033,7 +1033,7 @@ "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", "2035-08-06": "Civic Holiday", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1047,7 +1047,7 @@ "2036-06-21": "National Aboriginal Day", "2036-07-01": "Canada Day", "2036-08-04": "Civic Holiday", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1059,7 +1059,7 @@ "2037-06-21": "National Aboriginal Day", "2037-07-01": "Canada Day", "2037-08-03": "Civic Holiday", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1072,7 +1072,7 @@ "2038-06-21": "National Aboriginal Day", "2038-07-01": "Canada Day", "2038-08-02": "Civic Holiday", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1087,7 +1087,7 @@ "2039-06-21": "National Aboriginal Day", "2039-07-01": "Canada Day", "2039-08-01": "Civic Holiday", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1102,7 +1102,7 @@ "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", "2040-08-06": "Civic Holiday", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1116,7 +1116,7 @@ "2041-06-21": "National Aboriginal Day", "2041-07-01": "Canada Day", "2041-08-05": "Civic Holiday", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1128,7 +1128,7 @@ "2042-06-21": "National Aboriginal Day", "2042-07-01": "Canada Day", "2042-08-04": "Civic Holiday", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1140,7 +1140,7 @@ "2043-06-21": "National Aboriginal Day", "2043-07-01": "Canada Day", "2043-08-03": "Civic Holiday", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1153,7 +1153,7 @@ "2044-06-21": "National Aboriginal Day", "2044-07-01": "Canada Day", "2044-08-01": "Civic Holiday", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1168,7 +1168,7 @@ "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", "2045-08-07": "Civic Holiday", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1183,7 +1183,7 @@ "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", "2046-08-06": "Civic Holiday", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1197,7 +1197,7 @@ "2047-06-21": "National Aboriginal Day", "2047-07-01": "Canada Day", "2047-08-05": "Civic Holiday", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1209,7 +1209,7 @@ "2048-06-21": "National Aboriginal Day", "2048-07-01": "Canada Day", "2048-08-03": "Civic Holiday", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1222,7 +1222,7 @@ "2049-06-21": "National Aboriginal Day", "2049-07-01": "Canada Day", "2049-08-02": "Civic Holiday", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1237,7 +1237,7 @@ "2050-06-21": "National Aboriginal Day", "2050-07-01": "Canada Day", "2050-08-01": "Civic Holiday", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_NU.json b/snapshots/countries/CA_NU.json index d1234753c..55b817eb5 100644 --- a/snapshots/countries/CA_NU.json +++ b/snapshots/countries/CA_NU.json @@ -5,7 +5,7 @@ "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", "1950-08-07": "Civic Holiday", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -16,7 +16,7 @@ "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", "1951-08-06": "Civic Holiday", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -26,7 +26,7 @@ "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", "1952-08-04": "Civic Holiday", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -36,7 +36,7 @@ "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", "1953-08-03": "Civic Holiday", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -47,7 +47,7 @@ "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", "1954-08-02": "Civic Holiday", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -60,7 +60,7 @@ "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", "1955-08-01": "Civic Holiday", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -73,7 +73,7 @@ "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", "1956-08-06": "Civic Holiday", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -84,7 +84,7 @@ "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", "1957-08-05": "Civic Holiday", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", "1958-08-04": "Civic Holiday", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", "1959-08-03": "Civic Holiday", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", "1960-08-01": "Civic Holiday", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", "1961-08-07": "Civic Holiday", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -140,7 +140,7 @@ "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", "1962-08-06": "Civic Holiday", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -151,7 +151,7 @@ "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", "1963-08-05": "Civic Holiday", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -161,7 +161,7 @@ "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", "1964-08-03": "Civic Holiday", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -172,7 +172,7 @@ "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", "1965-08-02": "Civic Holiday", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -185,7 +185,7 @@ "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", "1966-08-01": "Civic Holiday", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -198,7 +198,7 @@ "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", "1967-08-07": "Civic Holiday", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -209,7 +209,7 @@ "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", "1968-08-05": "Civic Holiday", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -219,7 +219,7 @@ "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", "1969-08-04": "Civic Holiday", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -229,7 +229,7 @@ "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", "1970-08-03": "Civic Holiday", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -240,7 +240,7 @@ "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", "1971-08-02": "Civic Holiday", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -254,7 +254,7 @@ "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", "1972-08-07": "Civic Holiday", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -266,7 +266,7 @@ "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", "1973-08-06": "Civic Holiday", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -277,7 +277,7 @@ "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", "1974-08-05": "Civic Holiday", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -287,7 +287,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", "1975-08-04": "Civic Holiday", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -297,7 +297,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", "1976-08-02": "Civic Holiday", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -310,7 +310,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", "1977-08-01": "Civic Holiday", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -323,7 +323,7 @@ "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", "1978-08-07": "Civic Holiday", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -335,7 +335,7 @@ "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", "1979-08-06": "Civic Holiday", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -346,7 +346,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", "1980-08-04": "Civic Holiday", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -356,7 +356,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", "1981-08-03": "Civic Holiday", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -367,7 +367,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", "1982-08-02": "Civic Holiday", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -380,7 +380,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", "1983-08-01": "Civic Holiday", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -393,7 +393,7 @@ "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", "1984-08-06": "Civic Holiday", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -404,7 +404,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", "1985-08-05": "Civic Holiday", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -414,7 +414,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", "1986-08-04": "Civic Holiday", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -424,7 +424,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", "1987-08-03": "Civic Holiday", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -435,7 +435,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", "1988-08-01": "Civic Holiday", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -448,7 +448,7 @@ "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", "1989-08-07": "Civic Holiday", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -460,7 +460,7 @@ "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", "1990-08-06": "Civic Holiday", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -471,7 +471,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", "1991-08-05": "Civic Holiday", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -481,7 +481,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", "1992-08-03": "Civic Holiday", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -492,7 +492,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", "1993-08-02": "Civic Holiday", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -505,7 +505,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", "1994-08-01": "Civic Holiday", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -518,7 +518,7 @@ "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", "1995-08-07": "Civic Holiday", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -529,7 +529,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", "1996-08-05": "Civic Holiday", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -539,7 +539,7 @@ "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", "1997-08-04": "Civic Holiday", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -549,7 +549,7 @@ "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", "1998-08-03": "Civic Holiday", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -560,7 +560,7 @@ "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", "1999-08-02": "Civic Holiday", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -575,7 +575,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-07": "Civic Holiday", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -588,7 +588,7 @@ "2001-07-02": "Canada Day (Observed)", "2001-07-09": "Nunavut Day", "2001-08-06": "Civic Holiday", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -600,7 +600,7 @@ "2002-07-01": "Canada Day", "2002-07-09": "Nunavut Day", "2002-08-05": "Civic Holiday", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -611,7 +611,7 @@ "2003-07-01": "Canada Day", "2003-07-09": "Nunavut Day", "2003-08-04": "Civic Holiday", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -622,7 +622,7 @@ "2004-07-01": "Canada Day", "2004-07-09": "Nunavut Day", "2004-08-02": "Civic Holiday", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -636,7 +636,7 @@ "2005-07-01": "Canada Day", "2005-07-09": "Nunavut Day", "2005-08-01": "Civic Holiday", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -650,7 +650,7 @@ "2006-07-03": "Canada Day (Observed)", "2006-07-09": "Nunavut Day", "2006-08-07": "Civic Holiday", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -663,7 +663,7 @@ "2007-07-02": "Canada Day (Observed)", "2007-07-09": "Nunavut Day", "2007-08-06": "Civic Holiday", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -675,7 +675,7 @@ "2008-07-01": "Canada Day", "2008-07-09": "Nunavut Day", "2008-08-04": "Civic Holiday", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -686,7 +686,7 @@ "2009-07-01": "Canada Day", "2009-07-09": "Nunavut Day", "2009-08-03": "Civic Holiday", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -698,7 +698,7 @@ "2010-07-01": "Canada Day", "2010-07-09": "Nunavut Day", "2010-08-02": "Civic Holiday", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -712,7 +712,7 @@ "2011-07-01": "Canada Day", "2011-07-09": "Nunavut Day", "2011-08-01": "Civic Holiday", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -726,7 +726,7 @@ "2012-07-02": "Canada Day (Observed)", "2012-07-09": "Nunavut Day", "2012-08-06": "Civic Holiday", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -738,7 +738,7 @@ "2013-07-01": "Canada Day", "2013-07-09": "Nunavut Day", "2013-08-05": "Civic Holiday", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -749,7 +749,7 @@ "2014-07-01": "Canada Day", "2014-07-09": "Nunavut Day", "2014-08-04": "Civic Holiday", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -760,7 +760,7 @@ "2015-07-01": "Canada Day", "2015-07-09": "Nunavut Day", "2015-08-03": "Civic Holiday", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -772,7 +772,7 @@ "2016-07-01": "Canada Day", "2016-07-09": "Nunavut Day", "2016-08-01": "Civic Holiday", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -786,7 +786,7 @@ "2017-07-03": "Canada Day (Observed)", "2017-07-09": "Nunavut Day", "2017-08-07": "Civic Holiday", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -799,7 +799,7 @@ "2018-07-02": "Canada Day (Observed)", "2018-07-09": "Nunavut Day", "2018-08-06": "Civic Holiday", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -811,7 +811,7 @@ "2019-07-01": "Canada Day", "2019-07-09": "Nunavut Day", "2019-08-05": "Civic Holiday", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -822,7 +822,7 @@ "2020-07-01": "Canada Day", "2020-07-09": "Nunavut Day", "2020-08-03": "Civic Holiday", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -834,7 +834,7 @@ "2021-07-01": "Canada Day", "2021-07-09": "Nunavut Day", "2021-08-02": "Civic Holiday", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -849,7 +849,7 @@ "2022-07-01": "Canada Day", "2022-07-09": "Nunavut Day", "2022-08-01": "Civic Holiday", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", @@ -864,7 +864,7 @@ "2023-07-03": "Canada Day (Observed)", "2023-07-09": "Nunavut Day", "2023-08-07": "Civic Holiday", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -878,7 +878,7 @@ "2024-07-01": "Canada Day", "2024-07-09": "Nunavut Day", "2024-08-05": "Civic Holiday", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -890,7 +890,7 @@ "2025-07-01": "Canada Day", "2025-07-09": "Nunavut Day", "2025-08-04": "Civic Holiday", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -902,7 +902,7 @@ "2026-07-01": "Canada Day", "2026-07-09": "Nunavut Day", "2026-08-03": "Civic Holiday", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -915,7 +915,7 @@ "2027-07-01": "Canada Day", "2027-07-09": "Nunavut Day", "2027-08-02": "Civic Holiday", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -931,7 +931,7 @@ "2028-07-03": "Canada Day (Observed)", "2028-07-09": "Nunavut Day", "2028-08-07": "Civic Holiday", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -946,7 +946,7 @@ "2029-07-02": "Canada Day (Observed)", "2029-07-09": "Nunavut Day", "2029-08-06": "Civic Holiday", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -960,7 +960,7 @@ "2030-07-01": "Canada Day", "2030-07-09": "Nunavut Day", "2030-08-05": "Civic Holiday", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -972,7 +972,7 @@ "2031-07-01": "Canada Day", "2031-07-09": "Nunavut Day", "2031-08-04": "Civic Holiday", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -984,7 +984,7 @@ "2032-07-01": "Canada Day", "2032-07-09": "Nunavut Day", "2032-08-02": "Civic Holiday", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -999,7 +999,7 @@ "2033-07-01": "Canada Day", "2033-07-09": "Nunavut Day", "2033-08-01": "Civic Holiday", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -1014,7 +1014,7 @@ "2034-07-03": "Canada Day (Observed)", "2034-07-09": "Nunavut Day", "2034-08-07": "Civic Holiday", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -1029,7 +1029,7 @@ "2035-07-02": "Canada Day (Observed)", "2035-07-09": "Nunavut Day", "2035-08-06": "Civic Holiday", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1043,7 +1043,7 @@ "2036-07-01": "Canada Day", "2036-07-09": "Nunavut Day", "2036-08-04": "Civic Holiday", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1055,7 +1055,7 @@ "2037-07-01": "Canada Day", "2037-07-09": "Nunavut Day", "2037-08-03": "Civic Holiday", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1068,7 +1068,7 @@ "2038-07-01": "Canada Day", "2038-07-09": "Nunavut Day", "2038-08-02": "Civic Holiday", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1083,7 +1083,7 @@ "2039-07-01": "Canada Day", "2039-07-09": "Nunavut Day", "2039-08-01": "Civic Holiday", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1098,7 +1098,7 @@ "2040-07-02": "Canada Day (Observed)", "2040-07-09": "Nunavut Day", "2040-08-06": "Civic Holiday", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1112,7 +1112,7 @@ "2041-07-01": "Canada Day", "2041-07-09": "Nunavut Day", "2041-08-05": "Civic Holiday", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1124,7 +1124,7 @@ "2042-07-01": "Canada Day", "2042-07-09": "Nunavut Day", "2042-08-04": "Civic Holiday", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1136,7 +1136,7 @@ "2043-07-01": "Canada Day", "2043-07-09": "Nunavut Day", "2043-08-03": "Civic Holiday", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1149,7 +1149,7 @@ "2044-07-01": "Canada Day", "2044-07-09": "Nunavut Day", "2044-08-01": "Civic Holiday", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1164,7 +1164,7 @@ "2045-07-03": "Canada Day (Observed)", "2045-07-09": "Nunavut Day", "2045-08-07": "Civic Holiday", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1179,7 +1179,7 @@ "2046-07-02": "Canada Day (Observed)", "2046-07-09": "Nunavut Day", "2046-08-06": "Civic Holiday", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1193,7 +1193,7 @@ "2047-07-01": "Canada Day", "2047-07-09": "Nunavut Day", "2047-08-05": "Civic Holiday", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1205,7 +1205,7 @@ "2048-07-01": "Canada Day", "2048-07-09": "Nunavut Day", "2048-08-03": "Civic Holiday", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1218,7 +1218,7 @@ "2049-07-01": "Canada Day", "2049-07-09": "Nunavut Day", "2049-08-02": "Civic Holiday", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1233,7 +1233,7 @@ "2050-07-01": "Canada Day", "2050-07-09": "Nunavut Day", "2050-08-01": "Civic Holiday", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_ON.json b/snapshots/countries/CA_ON.json index 7759a42aa..49d6df2f2 100644 --- a/snapshots/countries/CA_ON.json +++ b/snapshots/countries/CA_ON.json @@ -5,7 +5,7 @@ "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", "1950-08-07": "Civic Holiday", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -16,7 +16,7 @@ "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", "1951-08-06": "Civic Holiday", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -26,7 +26,7 @@ "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", "1952-08-04": "Civic Holiday", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -36,7 +36,7 @@ "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", "1953-08-03": "Civic Holiday", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -47,7 +47,7 @@ "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", "1954-08-02": "Civic Holiday", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -60,7 +60,7 @@ "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", "1955-08-01": "Civic Holiday", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -73,7 +73,7 @@ "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", "1956-08-06": "Civic Holiday", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -84,7 +84,7 @@ "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", "1957-08-05": "Civic Holiday", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", "1958-08-04": "Civic Holiday", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", "1959-08-03": "Civic Holiday", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", "1960-08-01": "Civic Holiday", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", "1961-08-07": "Civic Holiday", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -140,7 +140,7 @@ "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", "1962-08-06": "Civic Holiday", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -151,7 +151,7 @@ "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", "1963-08-05": "Civic Holiday", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -161,7 +161,7 @@ "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", "1964-08-03": "Civic Holiday", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -172,7 +172,7 @@ "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", "1965-08-02": "Civic Holiday", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -185,7 +185,7 @@ "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", "1966-08-01": "Civic Holiday", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -198,7 +198,7 @@ "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", "1967-08-07": "Civic Holiday", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -209,7 +209,7 @@ "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", "1968-08-05": "Civic Holiday", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -219,7 +219,7 @@ "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", "1969-08-04": "Civic Holiday", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -229,7 +229,7 @@ "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", "1970-08-03": "Civic Holiday", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -240,7 +240,7 @@ "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", "1971-08-02": "Civic Holiday", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -254,7 +254,7 @@ "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", "1972-08-07": "Civic Holiday", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -266,7 +266,7 @@ "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", "1973-08-06": "Civic Holiday", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -277,7 +277,7 @@ "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", "1974-08-05": "Civic Holiday", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -287,7 +287,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", "1975-08-04": "Civic Holiday", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -297,7 +297,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", "1976-08-02": "Civic Holiday", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -310,7 +310,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", "1977-08-01": "Civic Holiday", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -323,7 +323,7 @@ "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", "1978-08-07": "Civic Holiday", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -335,7 +335,7 @@ "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", "1979-08-06": "Civic Holiday", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -346,7 +346,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", "1980-08-04": "Civic Holiday", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -356,7 +356,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", "1981-08-03": "Civic Holiday", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -367,7 +367,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", "1982-08-02": "Civic Holiday", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -380,7 +380,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", "1983-08-01": "Civic Holiday", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -393,7 +393,7 @@ "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", "1984-08-06": "Civic Holiday", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -404,7 +404,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", "1985-08-05": "Civic Holiday", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -414,7 +414,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", "1986-08-04": "Civic Holiday", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -424,7 +424,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", "1987-08-03": "Civic Holiday", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -435,7 +435,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", "1988-08-01": "Civic Holiday", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -448,7 +448,7 @@ "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", "1989-08-07": "Civic Holiday", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -460,7 +460,7 @@ "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", "1990-08-06": "Civic Holiday", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -471,7 +471,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", "1991-08-05": "Civic Holiday", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -481,7 +481,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", "1992-08-03": "Civic Holiday", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -492,7 +492,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", "1993-08-02": "Civic Holiday", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -505,7 +505,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", "1994-08-01": "Civic Holiday", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -518,7 +518,7 @@ "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", "1995-08-07": "Civic Holiday", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -529,7 +529,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", "1996-08-05": "Civic Holiday", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -539,7 +539,7 @@ "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", "1997-08-04": "Civic Holiday", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -549,7 +549,7 @@ "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", "1998-08-03": "Civic Holiday", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -560,7 +560,7 @@ "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", "1999-08-02": "Civic Holiday", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -574,7 +574,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-07": "Civic Holiday", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -586,7 +586,7 @@ "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", "2001-08-06": "Civic Holiday", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -597,7 +597,7 @@ "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", "2002-08-05": "Civic Holiday", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -607,7 +607,7 @@ "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", "2003-08-04": "Civic Holiday", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -617,7 +617,7 @@ "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", "2004-08-02": "Civic Holiday", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -630,7 +630,7 @@ "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", "2005-08-01": "Civic Holiday", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -643,7 +643,7 @@ "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", "2006-08-07": "Civic Holiday", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -655,7 +655,7 @@ "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", "2007-08-06": "Civic Holiday", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -667,7 +667,7 @@ "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", "2008-08-04": "Civic Holiday", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -678,7 +678,7 @@ "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", "2009-08-03": "Civic Holiday", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -690,7 +690,7 @@ "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", "2010-08-02": "Civic Holiday", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -704,7 +704,7 @@ "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", "2011-08-01": "Civic Holiday", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -718,7 +718,7 @@ "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", "2012-08-06": "Civic Holiday", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -730,7 +730,7 @@ "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", "2013-08-05": "Civic Holiday", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -741,7 +741,7 @@ "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", "2014-08-04": "Civic Holiday", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -752,7 +752,7 @@ "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", "2015-08-03": "Civic Holiday", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -764,7 +764,7 @@ "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", "2016-08-01": "Civic Holiday", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -778,7 +778,7 @@ "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", "2017-08-07": "Civic Holiday", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -791,7 +791,7 @@ "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", "2018-08-06": "Civic Holiday", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -803,7 +803,7 @@ "2019-05-20": "Victoria Day", "2019-07-01": "Canada Day", "2019-08-05": "Civic Holiday", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -814,7 +814,7 @@ "2020-05-18": "Victoria Day", "2020-07-01": "Canada Day", "2020-08-03": "Civic Holiday", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -826,7 +826,7 @@ "2021-05-24": "Victoria Day", "2021-07-01": "Canada Day", "2021-08-02": "Civic Holiday", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -841,7 +841,7 @@ "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", "2022-08-01": "Civic Holiday", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", @@ -856,7 +856,7 @@ "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", "2023-08-07": "Civic Holiday", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -870,7 +870,7 @@ "2024-05-20": "Victoria Day", "2024-07-01": "Canada Day", "2024-08-05": "Civic Holiday", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -882,7 +882,7 @@ "2025-05-19": "Victoria Day", "2025-07-01": "Canada Day", "2025-08-04": "Civic Holiday", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -894,7 +894,7 @@ "2026-05-18": "Victoria Day", "2026-07-01": "Canada Day", "2026-08-03": "Civic Holiday", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -907,7 +907,7 @@ "2027-05-24": "Victoria Day", "2027-07-01": "Canada Day", "2027-08-02": "Civic Holiday", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -923,7 +923,7 @@ "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", "2028-08-07": "Civic Holiday", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -938,7 +938,7 @@ "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", "2029-08-06": "Civic Holiday", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -952,7 +952,7 @@ "2030-05-20": "Victoria Day", "2030-07-01": "Canada Day", "2030-08-05": "Civic Holiday", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -964,7 +964,7 @@ "2031-05-19": "Victoria Day", "2031-07-01": "Canada Day", "2031-08-04": "Civic Holiday", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -976,7 +976,7 @@ "2032-05-24": "Victoria Day", "2032-07-01": "Canada Day", "2032-08-02": "Civic Holiday", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -991,7 +991,7 @@ "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", "2033-08-01": "Civic Holiday", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -1006,7 +1006,7 @@ "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", "2034-08-07": "Civic Holiday", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -1021,7 +1021,7 @@ "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", "2035-08-06": "Civic Holiday", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1035,7 +1035,7 @@ "2036-05-19": "Victoria Day", "2036-07-01": "Canada Day", "2036-08-04": "Civic Holiday", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1047,7 +1047,7 @@ "2037-05-18": "Victoria Day", "2037-07-01": "Canada Day", "2037-08-03": "Civic Holiday", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1060,7 +1060,7 @@ "2038-05-24": "Victoria Day", "2038-07-01": "Canada Day", "2038-08-02": "Civic Holiday", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1075,7 +1075,7 @@ "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", "2039-08-01": "Civic Holiday", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1090,7 +1090,7 @@ "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", "2040-08-06": "Civic Holiday", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1104,7 +1104,7 @@ "2041-05-20": "Victoria Day", "2041-07-01": "Canada Day", "2041-08-05": "Civic Holiday", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1116,7 +1116,7 @@ "2042-05-19": "Victoria Day", "2042-07-01": "Canada Day", "2042-08-04": "Civic Holiday", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1128,7 +1128,7 @@ "2043-05-18": "Victoria Day", "2043-07-01": "Canada Day", "2043-08-03": "Civic Holiday", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1141,7 +1141,7 @@ "2044-05-23": "Victoria Day", "2044-07-01": "Canada Day", "2044-08-01": "Civic Holiday", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1156,7 +1156,7 @@ "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", "2045-08-07": "Civic Holiday", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1171,7 +1171,7 @@ "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", "2046-08-06": "Civic Holiday", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1185,7 +1185,7 @@ "2047-05-20": "Victoria Day", "2047-07-01": "Canada Day", "2047-08-05": "Civic Holiday", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1197,7 +1197,7 @@ "2048-05-18": "Victoria Day", "2048-07-01": "Canada Day", "2048-08-03": "Civic Holiday", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1210,7 +1210,7 @@ "2049-05-24": "Victoria Day", "2049-07-01": "Canada Day", "2049-08-02": "Civic Holiday", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1225,7 +1225,7 @@ "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", "2050-08-01": "Civic Holiday", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_PE.json b/snapshots/countries/CA_PE.json index 45277fa75..2dd38734d 100644 --- a/snapshots/countries/CA_PE.json +++ b/snapshots/countries/CA_PE.json @@ -4,7 +4,7 @@ "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -14,7 +14,7 @@ "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -23,7 +23,7 @@ "1952-01-01": "New Year's Day", "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -32,7 +32,7 @@ "1953-04-03": "Good Friday", "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -42,7 +42,7 @@ "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -54,7 +54,7 @@ "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -66,7 +66,7 @@ "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -76,7 +76,7 @@ "1957-04-19": "Good Friday", "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -85,7 +85,7 @@ "1958-04-04": "Good Friday", "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1959-03-27": "Good Friday", "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -116,7 +116,7 @@ "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -127,7 +127,7 @@ "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -137,7 +137,7 @@ "1963-04-12": "Good Friday", "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -146,7 +146,7 @@ "1964-03-27": "Good Friday", "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -156,7 +156,7 @@ "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -168,7 +168,7 @@ "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -180,7 +180,7 @@ "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -190,7 +190,7 @@ "1968-04-12": "Good Friday", "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -199,7 +199,7 @@ "1969-04-04": "Good Friday", "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -208,7 +208,7 @@ "1970-03-27": "Good Friday", "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -218,7 +218,7 @@ "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -231,7 +231,7 @@ "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -242,7 +242,7 @@ "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -252,7 +252,7 @@ "1974-04-12": "Good Friday", "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -261,7 +261,7 @@ "1975-03-28": "Good Friday", "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -270,7 +270,7 @@ "1976-04-16": "Good Friday", "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -282,7 +282,7 @@ "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -294,7 +294,7 @@ "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -305,7 +305,7 @@ "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -315,7 +315,7 @@ "1980-04-04": "Good Friday", "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -324,7 +324,7 @@ "1981-04-17": "Good Friday", "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -334,7 +334,7 @@ "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -346,7 +346,7 @@ "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -358,7 +358,7 @@ "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -368,7 +368,7 @@ "1985-04-05": "Good Friday", "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -377,7 +377,7 @@ "1986-03-28": "Good Friday", "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -386,7 +386,7 @@ "1987-04-17": "Good Friday", "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -396,7 +396,7 @@ "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -408,7 +408,7 @@ "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -419,7 +419,7 @@ "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -429,7 +429,7 @@ "1991-03-29": "Good Friday", "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -438,7 +438,7 @@ "1992-04-17": "Good Friday", "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -448,7 +448,7 @@ "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -460,7 +460,7 @@ "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -472,7 +472,7 @@ "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -482,7 +482,7 @@ "1996-04-05": "Good Friday", "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -491,7 +491,7 @@ "1997-03-28": "Good Friday", "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -500,7 +500,7 @@ "1998-04-10": "Good Friday", "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -510,7 +510,7 @@ "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -523,7 +523,7 @@ "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -534,7 +534,7 @@ "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -544,7 +544,7 @@ "2002-03-29": "Good Friday", "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -553,7 +553,7 @@ "2003-04-18": "Good Friday", "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -562,7 +562,7 @@ "2004-04-09": "Good Friday", "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -574,7 +574,7 @@ "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -586,7 +586,7 @@ "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -597,7 +597,7 @@ "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -607,7 +607,7 @@ "2008-03-21": "Good Friday", "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -617,7 +617,7 @@ "2009-04-10": "Good Friday", "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -628,7 +628,7 @@ "2010-04-02": "Good Friday", "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -641,7 +641,7 @@ "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -654,7 +654,7 @@ "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -665,7 +665,7 @@ "2013-03-29": "Good Friday", "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -675,7 +675,7 @@ "2014-04-18": "Good Friday", "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -685,7 +685,7 @@ "2015-04-03": "Good Friday", "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -696,7 +696,7 @@ "2016-03-25": "Good Friday", "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -709,7 +709,7 @@ "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -721,7 +721,7 @@ "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -732,7 +732,7 @@ "2019-04-19": "Good Friday", "2019-05-20": "Victoria Day", "2019-07-01": "Canada Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -742,7 +742,7 @@ "2020-04-10": "Good Friday", "2020-05-18": "Victoria Day", "2020-07-01": "Canada Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -753,7 +753,7 @@ "2021-04-02": "Good Friday", "2021-05-24": "Victoria Day", "2021-07-01": "Canada Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -767,7 +767,7 @@ "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-19": "Funeral of Her Majesty the Queen Elizabeth II", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", @@ -782,7 +782,7 @@ "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -795,7 +795,7 @@ "2024-03-29": "Good Friday", "2024-05-20": "Victoria Day", "2024-07-01": "Canada Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -806,7 +806,7 @@ "2025-04-18": "Good Friday", "2025-05-19": "Victoria Day", "2025-07-01": "Canada Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -817,7 +817,7 @@ "2026-04-03": "Good Friday", "2026-05-18": "Victoria Day", "2026-07-01": "Canada Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -829,7 +829,7 @@ "2027-03-26": "Good Friday", "2027-05-24": "Victoria Day", "2027-07-01": "Canada Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -844,7 +844,7 @@ "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -858,7 +858,7 @@ "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -871,7 +871,7 @@ "2030-04-19": "Good Friday", "2030-05-20": "Victoria Day", "2030-07-01": "Canada Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -882,7 +882,7 @@ "2031-04-11": "Good Friday", "2031-05-19": "Victoria Day", "2031-07-01": "Canada Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -893,7 +893,7 @@ "2032-03-26": "Good Friday", "2032-05-24": "Victoria Day", "2032-07-01": "Canada Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -907,7 +907,7 @@ "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -921,7 +921,7 @@ "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -935,7 +935,7 @@ "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -948,7 +948,7 @@ "2036-04-11": "Good Friday", "2036-05-19": "Victoria Day", "2036-07-01": "Canada Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -959,7 +959,7 @@ "2037-04-03": "Good Friday", "2037-05-18": "Victoria Day", "2037-07-01": "Canada Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -971,7 +971,7 @@ "2038-04-23": "Good Friday", "2038-05-24": "Victoria Day", "2038-07-01": "Canada Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -985,7 +985,7 @@ "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -999,7 +999,7 @@ "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1012,7 +1012,7 @@ "2041-04-19": "Good Friday", "2041-05-20": "Victoria Day", "2041-07-01": "Canada Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1023,7 +1023,7 @@ "2042-04-04": "Good Friday", "2042-05-19": "Victoria Day", "2042-07-01": "Canada Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1034,7 +1034,7 @@ "2043-03-27": "Good Friday", "2043-05-18": "Victoria Day", "2043-07-01": "Canada Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1046,7 +1046,7 @@ "2044-04-15": "Good Friday", "2044-05-23": "Victoria Day", "2044-07-01": "Canada Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1060,7 +1060,7 @@ "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1074,7 +1074,7 @@ "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1087,7 +1087,7 @@ "2047-04-12": "Good Friday", "2047-05-20": "Victoria Day", "2047-07-01": "Canada Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1098,7 +1098,7 @@ "2048-04-03": "Good Friday", "2048-05-18": "Victoria Day", "2048-07-01": "Canada Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1110,7 +1110,7 @@ "2049-04-16": "Good Friday", "2049-05-24": "Victoria Day", "2049-07-01": "Canada Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1124,7 +1124,7 @@ "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_QC.json b/snapshots/countries/CA_QC.json index e51533402..ebcabf1e7 100644 --- a/snapshots/countries/CA_QC.json +++ b/snapshots/countries/CA_QC.json @@ -3,10 +3,10 @@ "1950-01-02": "New Year's Day (Observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", - "1950-06-24": "St. Jean Baptiste Day", + "1950-06-24": "St. John the Baptist Day", "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -15,11 +15,11 @@ "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-03-26": "Easter Monday", - "1951-06-24": "St. Jean Baptiste Day", - "1951-06-25": "St. Jean Baptiste Day (Observed)", + "1951-06-24": "St. John the Baptist Day", + "1951-06-25": "St. John the Baptist Day (Observed)", "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -28,9 +28,9 @@ "1952-01-01": "New Year's Day", "1952-04-11": "Good Friday", "1952-04-14": "Easter Monday", - "1952-06-24": "St. Jean Baptiste Day", + "1952-06-24": "St. John the Baptist Day", "1952-07-01": "Dominion Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -39,9 +39,9 @@ "1953-04-03": "Good Friday", "1953-04-06": "Easter Monday", "1953-05-18": "Victoria Day", - "1953-06-24": "St. Jean Baptiste Day", + "1953-06-24": "St. John the Baptist Day", "1953-07-01": "Dominion Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -51,9 +51,9 @@ "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-05-24": "Victoria Day", - "1954-06-24": "St. Jean Baptiste Day", + "1954-06-24": "St. John the Baptist Day", "1954-07-01": "Dominion Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -65,9 +65,9 @@ "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-05-23": "Victoria Day", - "1955-06-24": "St. Jean Baptiste Day", + "1955-06-24": "St. John the Baptist Day", "1955-07-01": "Dominion Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -78,11 +78,11 @@ "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-05-21": "Victoria Day", - "1956-06-24": "St. Jean Baptiste Day", - "1956-06-25": "St. Jean Baptiste Day (Observed)", + "1956-06-24": "St. John the Baptist Day", + "1956-06-25": "St. John the Baptist Day (Observed)", "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -92,9 +92,9 @@ "1957-04-19": "Good Friday", "1957-04-22": "Easter Monday", "1957-05-20": "Victoria Day", - "1957-06-24": "St. Jean Baptiste Day", + "1957-06-24": "St. John the Baptist Day", "1957-07-01": "Dominion Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -103,9 +103,9 @@ "1958-04-04": "Good Friday", "1958-04-07": "Easter Monday", "1958-05-19": "Victoria Day", - "1958-06-24": "St. Jean Baptiste Day", + "1958-06-24": "St. John the Baptist Day", "1958-07-01": "Dominion Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -114,9 +114,9 @@ "1959-03-27": "Good Friday", "1959-03-30": "Easter Monday", "1959-05-18": "Victoria Day", - "1959-06-24": "St. Jean Baptiste Day", + "1959-06-24": "St. John the Baptist Day", "1959-07-01": "Dominion Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -126,9 +126,9 @@ "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-05-23": "Victoria Day", - "1960-06-24": "St. Jean Baptiste Day", + "1960-06-24": "St. John the Baptist Day", "1960-07-01": "Dominion Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -139,10 +139,10 @@ "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-05-22": "Victoria Day", - "1961-06-24": "St. Jean Baptiste Day", + "1961-06-24": "St. John the Baptist Day", "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -152,11 +152,11 @@ "1962-04-20": "Good Friday", "1962-04-23": "Easter Monday", "1962-05-21": "Victoria Day", - "1962-06-24": "St. Jean Baptiste Day", - "1962-06-25": "St. Jean Baptiste Day (Observed)", + "1962-06-24": "St. John the Baptist Day", + "1962-06-25": "St. John the Baptist Day (Observed)", "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -166,9 +166,9 @@ "1963-04-12": "Good Friday", "1963-04-15": "Easter Monday", "1963-05-20": "Victoria Day", - "1963-06-24": "St. Jean Baptiste Day", + "1963-06-24": "St. John the Baptist Day", "1963-07-01": "Dominion Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -177,9 +177,9 @@ "1964-03-27": "Good Friday", "1964-03-30": "Easter Monday", "1964-05-18": "Victoria Day", - "1964-06-24": "St. Jean Baptiste Day", + "1964-06-24": "St. John the Baptist Day", "1964-07-01": "Dominion Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -189,9 +189,9 @@ "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-05-24": "Victoria Day", - "1965-06-24": "St. Jean Baptiste Day", + "1965-06-24": "St. John the Baptist Day", "1965-07-01": "Dominion Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -203,9 +203,9 @@ "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-05-23": "Victoria Day", - "1966-06-24": "St. Jean Baptiste Day", + "1966-06-24": "St. John the Baptist Day", "1966-07-01": "Dominion Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -216,10 +216,10 @@ "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-05-22": "Victoria Day", - "1967-06-24": "St. Jean Baptiste Day", + "1967-06-24": "St. John the Baptist Day", "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -229,9 +229,9 @@ "1968-04-12": "Good Friday", "1968-04-15": "Easter Monday", "1968-05-20": "Victoria Day", - "1968-06-24": "St. Jean Baptiste Day", + "1968-06-24": "St. John the Baptist Day", "1968-07-01": "Dominion Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -240,9 +240,9 @@ "1969-04-04": "Good Friday", "1969-04-07": "Easter Monday", "1969-05-19": "Victoria Day", - "1969-06-24": "St. Jean Baptiste Day", + "1969-06-24": "St. John the Baptist Day", "1969-07-01": "Dominion Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -251,9 +251,9 @@ "1970-03-27": "Good Friday", "1970-03-30": "Easter Monday", "1970-05-18": "Victoria Day", - "1970-06-24": "St. Jean Baptiste Day", + "1970-06-24": "St. John the Baptist Day", "1970-07-01": "Dominion Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -263,9 +263,9 @@ "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-05-24": "Victoria Day", - "1971-06-24": "St. Jean Baptiste Day", + "1971-06-24": "St. John the Baptist Day", "1971-07-01": "Dominion Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -277,10 +277,10 @@ "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-05-22": "Victoria Day", - "1972-06-24": "St. Jean Baptiste Day", + "1972-06-24": "St. John the Baptist Day", "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -290,11 +290,11 @@ "1973-04-20": "Good Friday", "1973-04-23": "Easter Monday", "1973-05-21": "Victoria Day", - "1973-06-24": "St. Jean Baptiste Day", - "1973-06-25": "St. Jean Baptiste Day (Observed)", + "1973-06-24": "St. John the Baptist Day", + "1973-06-25": "St. John the Baptist Day (Observed)", "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -304,9 +304,9 @@ "1974-04-12": "Good Friday", "1974-04-15": "Easter Monday", "1974-05-20": "Victoria Day", - "1974-06-24": "St. Jean Baptiste Day", + "1974-06-24": "St. John the Baptist Day", "1974-07-01": "Dominion Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -315,9 +315,9 @@ "1975-03-28": "Good Friday", "1975-03-31": "Easter Monday", "1975-05-19": "Victoria Day", - "1975-06-24": "St. Jean Baptiste Day", + "1975-06-24": "St. John the Baptist Day", "1975-07-01": "Dominion Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -326,9 +326,9 @@ "1976-04-16": "Good Friday", "1976-04-19": "Easter Monday", "1976-05-24": "Victoria Day", - "1976-06-24": "St. Jean Baptiste Day", + "1976-06-24": "St. John the Baptist Day", "1976-07-01": "Dominion Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -340,9 +340,9 @@ "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-23": "Victoria Day", - "1977-06-24": "St. Jean Baptiste Day", + "1977-06-24": "St. John the Baptist Day", "1977-07-01": "Dominion Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -353,10 +353,10 @@ "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-22": "Victoria Day", - "1978-06-24": "St. Jean Baptiste Day", + "1978-06-24": "St. John the Baptist Day", "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -366,11 +366,11 @@ "1979-04-13": "Good Friday", "1979-04-16": "Easter Monday", "1979-05-21": "Victoria Day", - "1979-06-24": "St. Jean Baptiste Day", - "1979-06-25": "St. Jean Baptiste Day (Observed)", + "1979-06-24": "St. John the Baptist Day", + "1979-06-25": "St. John the Baptist Day (Observed)", "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -380,9 +380,9 @@ "1980-04-04": "Good Friday", "1980-04-07": "Easter Monday", "1980-05-19": "Victoria Day", - "1980-06-24": "St. Jean Baptiste Day", + "1980-06-24": "St. John the Baptist Day", "1980-07-01": "Dominion Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -391,9 +391,9 @@ "1981-04-17": "Good Friday", "1981-04-20": "Easter Monday", "1981-05-18": "Victoria Day", - "1981-06-24": "St. Jean Baptiste Day", + "1981-06-24": "St. John the Baptist Day", "1981-07-01": "Dominion Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -403,9 +403,9 @@ "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", "1982-05-24": "Victoria Day", - "1982-06-24": "St. Jean Baptiste Day", + "1982-06-24": "St. John the Baptist Day", "1982-07-01": "Dominion Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -417,9 +417,9 @@ "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-23": "Victoria Day", - "1983-06-24": "St. Jean Baptiste Day", + "1983-06-24": "St. John the Baptist Day", "1983-07-01": "Canada Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -430,11 +430,11 @@ "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-21": "Victoria Day", - "1984-06-24": "St. Jean Baptiste Day", - "1984-06-25": "St. Jean Baptiste Day (Observed)", + "1984-06-24": "St. John the Baptist Day", + "1984-06-25": "St. John the Baptist Day (Observed)", "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -444,9 +444,9 @@ "1985-04-05": "Good Friday", "1985-04-08": "Easter Monday", "1985-05-20": "Victoria Day", - "1985-06-24": "St. Jean Baptiste Day", + "1985-06-24": "St. John the Baptist Day", "1985-07-01": "Canada Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -455,9 +455,9 @@ "1986-03-28": "Good Friday", "1986-03-31": "Easter Monday", "1986-05-19": "Victoria Day", - "1986-06-24": "St. Jean Baptiste Day", + "1986-06-24": "St. John the Baptist Day", "1986-07-01": "Canada Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -466,9 +466,9 @@ "1987-04-17": "Good Friday", "1987-04-20": "Easter Monday", "1987-05-18": "Victoria Day", - "1987-06-24": "St. Jean Baptiste Day", + "1987-06-24": "St. John the Baptist Day", "1987-07-01": "Canada Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -478,9 +478,9 @@ "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", "1988-05-23": "Victoria Day", - "1988-06-24": "St. Jean Baptiste Day", + "1988-06-24": "St. John the Baptist Day", "1988-07-01": "Canada Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -491,10 +491,10 @@ "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-22": "Victoria Day", - "1989-06-24": "St. Jean Baptiste Day", + "1989-06-24": "St. John the Baptist Day", "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -504,11 +504,11 @@ "1990-04-13": "Good Friday", "1990-04-16": "Easter Monday", "1990-05-21": "Victoria Day", - "1990-06-24": "St. Jean Baptiste Day", - "1990-06-25": "St. Jean Baptiste Day (Observed)", + "1990-06-24": "St. John the Baptist Day", + "1990-06-25": "St. John the Baptist Day (Observed)", "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -518,9 +518,9 @@ "1991-03-29": "Good Friday", "1991-04-01": "Easter Monday", "1991-05-20": "Victoria Day", - "1991-06-24": "St. Jean Baptiste Day", + "1991-06-24": "St. John the Baptist Day", "1991-07-01": "Canada Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -529,9 +529,9 @@ "1992-04-17": "Good Friday", "1992-04-20": "Easter Monday", "1992-05-18": "Victoria Day", - "1992-06-24": "St. Jean Baptiste Day", + "1992-06-24": "St. John the Baptist Day", "1992-07-01": "Canada Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -541,9 +541,9 @@ "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", "1993-05-24": "Victoria Day", - "1993-06-24": "St. Jean Baptiste Day", + "1993-06-24": "St. John the Baptist Day", "1993-07-01": "Canada Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -555,9 +555,9 @@ "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-23": "Victoria Day", - "1994-06-24": "St. Jean Baptiste Day", + "1994-06-24": "St. John the Baptist Day", "1994-07-01": "Canada Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -568,10 +568,10 @@ "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-22": "Victoria Day", - "1995-06-24": "St. Jean Baptiste Day", + "1995-06-24": "St. John the Baptist Day", "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -581,9 +581,9 @@ "1996-04-05": "Good Friday", "1996-04-08": "Easter Monday", "1996-05-20": "Victoria Day", - "1996-06-24": "St. Jean Baptiste Day", + "1996-06-24": "St. John the Baptist Day", "1996-07-01": "Canada Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -592,9 +592,9 @@ "1997-03-28": "Good Friday", "1997-03-31": "Easter Monday", "1997-05-19": "Victoria Day", - "1997-06-24": "St. Jean Baptiste Day", + "1997-06-24": "St. John the Baptist Day", "1997-07-01": "Canada Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -603,9 +603,9 @@ "1998-04-10": "Good Friday", "1998-04-13": "Easter Monday", "1998-05-18": "Victoria Day", - "1998-06-24": "St. Jean Baptiste Day", + "1998-06-24": "St. John the Baptist Day", "1998-07-01": "Canada Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -615,9 +615,9 @@ "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", "1999-05-24": "Victoria Day", - "1999-06-24": "St. Jean Baptiste Day", + "1999-06-24": "St. John the Baptist Day", "1999-07-01": "Canada Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -629,10 +629,10 @@ "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-22": "Victoria Day", - "2000-06-24": "St. Jean Baptiste Day", + "2000-06-24": "St. John the Baptist Day", "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -642,11 +642,11 @@ "2001-04-13": "Good Friday", "2001-04-16": "Easter Monday", "2001-05-21": "Victoria Day", - "2001-06-24": "St. Jean Baptiste Day", - "2001-06-25": "St. Jean Baptiste Day (Observed)", + "2001-06-24": "St. John the Baptist Day", + "2001-06-25": "St. John the Baptist Day (Observed)", "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -656,9 +656,9 @@ "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", "2002-05-20": "Victoria Day", - "2002-06-24": "St. Jean Baptiste Day", + "2002-06-24": "St. John the Baptist Day", "2002-07-01": "Canada Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -667,9 +667,9 @@ "2003-04-18": "Good Friday", "2003-04-21": "Easter Monday", "2003-05-19": "National Patriots' Day; Victoria Day", - "2003-06-24": "St. Jean Baptiste Day", + "2003-06-24": "St. John the Baptist Day", "2003-07-01": "Canada Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -678,9 +678,9 @@ "2004-04-09": "Good Friday", "2004-04-12": "Easter Monday", "2004-05-24": "National Patriots' Day; Victoria Day", - "2004-06-24": "St. Jean Baptiste Day", + "2004-06-24": "St. John the Baptist Day", "2004-07-01": "Canada Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -692,9 +692,9 @@ "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-23": "National Patriots' Day; Victoria Day", - "2005-06-24": "St. Jean Baptiste Day", + "2005-06-24": "St. John the Baptist Day", "2005-07-01": "Canada Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -705,10 +705,10 @@ "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-22": "National Patriots' Day; Victoria Day", - "2006-06-24": "St. Jean Baptiste Day", + "2006-06-24": "St. John the Baptist Day", "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -718,11 +718,11 @@ "2007-04-06": "Good Friday", "2007-04-09": "Easter Monday", "2007-05-21": "National Patriots' Day; Victoria Day", - "2007-06-24": "St. Jean Baptiste Day", - "2007-06-25": "St. Jean Baptiste Day (Observed)", + "2007-06-24": "St. John the Baptist Day", + "2007-06-25": "St. John the Baptist Day (Observed)", "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -732,9 +732,9 @@ "2008-03-21": "Good Friday", "2008-03-24": "Easter Monday", "2008-05-19": "National Patriots' Day; Victoria Day", - "2008-06-24": "St. Jean Baptiste Day", + "2008-06-24": "St. John the Baptist Day", "2008-07-01": "Canada Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -743,9 +743,9 @@ "2009-04-10": "Good Friday", "2009-04-13": "Easter Monday", "2009-05-18": "National Patriots' Day; Victoria Day", - "2009-06-24": "St. Jean Baptiste Day", + "2009-06-24": "St. John the Baptist Day", "2009-07-01": "Canada Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -755,9 +755,9 @@ "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", "2010-05-24": "National Patriots' Day; Victoria Day", - "2010-06-24": "St. Jean Baptiste Day", + "2010-06-24": "St. John the Baptist Day", "2010-07-01": "Canada Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -769,9 +769,9 @@ "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-05-23": "National Patriots' Day; Victoria Day", - "2011-06-24": "St. Jean Baptiste Day", + "2011-06-24": "St. John the Baptist Day", "2011-07-01": "Canada Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -782,11 +782,11 @@ "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-21": "National Patriots' Day; Victoria Day", - "2012-06-24": "St. Jean Baptiste Day", - "2012-06-25": "St. Jean Baptiste Day (Observed)", + "2012-06-24": "St. John the Baptist Day", + "2012-06-25": "St. John the Baptist Day (Observed)", "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -796,9 +796,9 @@ "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", "2013-05-20": "National Patriots' Day; Victoria Day", - "2013-06-24": "St. Jean Baptiste Day", + "2013-06-24": "St. John the Baptist Day", "2013-07-01": "Canada Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -807,9 +807,9 @@ "2014-04-18": "Good Friday", "2014-04-21": "Easter Monday", "2014-05-19": "National Patriots' Day; Victoria Day", - "2014-06-24": "St. Jean Baptiste Day", + "2014-06-24": "St. John the Baptist Day", "2014-07-01": "Canada Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -818,9 +818,9 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-05-18": "National Patriots' Day; Victoria Day", - "2015-06-24": "St. Jean Baptiste Day", + "2015-06-24": "St. John the Baptist Day", "2015-07-01": "Canada Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -830,9 +830,9 @@ "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-05-23": "National Patriots' Day; Victoria Day", - "2016-06-24": "St. Jean Baptiste Day", + "2016-06-24": "St. John the Baptist Day", "2016-07-01": "Canada Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -843,10 +843,10 @@ "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-22": "National Patriots' Day; Victoria Day", - "2017-06-24": "St. Jean Baptiste Day", + "2017-06-24": "St. John the Baptist Day", "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -856,11 +856,11 @@ "2018-03-30": "Good Friday", "2018-04-02": "Easter Monday", "2018-05-21": "National Patriots' Day; Victoria Day", - "2018-06-24": "St. Jean Baptiste Day", - "2018-06-25": "St. Jean Baptiste Day (Observed)", + "2018-06-24": "St. John the Baptist Day", + "2018-06-25": "St. John the Baptist Day (Observed)", "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -870,9 +870,9 @@ "2019-04-19": "Good Friday", "2019-04-22": "Easter Monday", "2019-05-20": "National Patriots' Day; Victoria Day", - "2019-06-24": "St. Jean Baptiste Day", + "2019-06-24": "St. John the Baptist Day", "2019-07-01": "Canada Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -881,9 +881,9 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-05-18": "National Patriots' Day; Victoria Day", - "2020-06-24": "St. Jean Baptiste Day", + "2020-06-24": "St. John the Baptist Day", "2020-07-01": "Canada Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -893,9 +893,9 @@ "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-05-24": "National Patriots' Day; Victoria Day", - "2021-06-24": "St. Jean Baptiste Day", + "2021-06-24": "St. John the Baptist Day", "2021-07-01": "Canada Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -908,9 +908,9 @@ "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-23": "National Patriots' Day; Victoria Day", - "2022-06-24": "St. Jean Baptiste Day", + "2022-06-24": "St. John the Baptist Day", "2022-07-01": "Canada Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", @@ -922,10 +922,10 @@ "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-22": "National Patriots' Day; Victoria Day", - "2023-06-24": "St. Jean Baptiste Day", + "2023-06-24": "St. John the Baptist Day", "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -937,9 +937,9 @@ "2024-03-29": "Good Friday", "2024-04-01": "Easter Monday", "2024-05-20": "National Patriots' Day; Victoria Day", - "2024-06-24": "St. Jean Baptiste Day", + "2024-06-24": "St. John the Baptist Day", "2024-07-01": "Canada Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -949,9 +949,9 @@ "2025-04-18": "Good Friday", "2025-04-21": "Easter Monday", "2025-05-19": "National Patriots' Day; Victoria Day", - "2025-06-24": "St. Jean Baptiste Day", + "2025-06-24": "St. John the Baptist Day", "2025-07-01": "Canada Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -961,9 +961,9 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-05-18": "National Patriots' Day; Victoria Day", - "2026-06-24": "St. Jean Baptiste Day", + "2026-06-24": "St. John the Baptist Day", "2026-07-01": "Canada Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -974,9 +974,9 @@ "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-05-24": "National Patriots' Day; Victoria Day", - "2027-06-24": "St. Jean Baptiste Day", + "2027-06-24": "St. John the Baptist Day", "2027-07-01": "Canada Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -989,10 +989,10 @@ "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-22": "National Patriots' Day; Victoria Day", - "2028-06-24": "St. Jean Baptiste Day", + "2028-06-24": "St. John the Baptist Day", "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -1004,11 +1004,11 @@ "2029-03-30": "Good Friday", "2029-04-02": "Easter Monday", "2029-05-21": "National Patriots' Day; Victoria Day", - "2029-06-24": "St. Jean Baptiste Day", - "2029-06-25": "St. Jean Baptiste Day (Observed)", + "2029-06-24": "St. John the Baptist Day", + "2029-06-25": "St. John the Baptist Day (Observed)", "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -1020,9 +1020,9 @@ "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", "2030-05-20": "National Patriots' Day; Victoria Day", - "2030-06-24": "St. Jean Baptiste Day", + "2030-06-24": "St. John the Baptist Day", "2030-07-01": "Canada Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -1032,9 +1032,9 @@ "2031-04-11": "Good Friday", "2031-04-14": "Easter Monday", "2031-05-19": "National Patriots' Day; Victoria Day", - "2031-06-24": "St. Jean Baptiste Day", + "2031-06-24": "St. John the Baptist Day", "2031-07-01": "Canada Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -1044,9 +1044,9 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-05-24": "National Patriots' Day; Victoria Day", - "2032-06-24": "St. Jean Baptiste Day", + "2032-06-24": "St. John the Baptist Day", "2032-07-01": "Canada Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -1059,9 +1059,9 @@ "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-23": "National Patriots' Day; Victoria Day", - "2033-06-24": "St. Jean Baptiste Day", + "2033-06-24": "St. John the Baptist Day", "2033-07-01": "Canada Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -1073,10 +1073,10 @@ "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-22": "National Patriots' Day; Victoria Day", - "2034-06-24": "St. Jean Baptiste Day", + "2034-06-24": "St. John the Baptist Day", "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -1088,11 +1088,11 @@ "2035-03-23": "Good Friday", "2035-03-26": "Easter Monday", "2035-05-21": "National Patriots' Day; Victoria Day", - "2035-06-24": "St. Jean Baptiste Day", - "2035-06-25": "St. Jean Baptiste Day (Observed)", + "2035-06-24": "St. John the Baptist Day", + "2035-06-25": "St. John the Baptist Day (Observed)", "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1104,9 +1104,9 @@ "2036-04-11": "Good Friday", "2036-04-14": "Easter Monday", "2036-05-19": "National Patriots' Day; Victoria Day", - "2036-06-24": "St. Jean Baptiste Day", + "2036-06-24": "St. John the Baptist Day", "2036-07-01": "Canada Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1116,9 +1116,9 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-05-18": "National Patriots' Day; Victoria Day", - "2037-06-24": "St. Jean Baptiste Day", + "2037-06-24": "St. John the Baptist Day", "2037-07-01": "Canada Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1129,9 +1129,9 @@ "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-05-24": "National Patriots' Day; Victoria Day", - "2038-06-24": "St. Jean Baptiste Day", + "2038-06-24": "St. John the Baptist Day", "2038-07-01": "Canada Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1144,9 +1144,9 @@ "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-23": "National Patriots' Day; Victoria Day", - "2039-06-24": "St. Jean Baptiste Day", + "2039-06-24": "St. John the Baptist Day", "2039-07-01": "Canada Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1158,11 +1158,11 @@ "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-21": "National Patriots' Day; Victoria Day", - "2040-06-24": "St. Jean Baptiste Day", - "2040-06-25": "St. Jean Baptiste Day (Observed)", + "2040-06-24": "St. John the Baptist Day", + "2040-06-25": "St. John the Baptist Day (Observed)", "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1174,9 +1174,9 @@ "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", "2041-05-20": "National Patriots' Day; Victoria Day", - "2041-06-24": "St. Jean Baptiste Day", + "2041-06-24": "St. John the Baptist Day", "2041-07-01": "Canada Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1186,9 +1186,9 @@ "2042-04-04": "Good Friday", "2042-04-07": "Easter Monday", "2042-05-19": "National Patriots' Day; Victoria Day", - "2042-06-24": "St. Jean Baptiste Day", + "2042-06-24": "St. John the Baptist Day", "2042-07-01": "Canada Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1198,9 +1198,9 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-05-18": "National Patriots' Day; Victoria Day", - "2043-06-24": "St. Jean Baptiste Day", + "2043-06-24": "St. John the Baptist Day", "2043-07-01": "Canada Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1211,9 +1211,9 @@ "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-05-23": "National Patriots' Day; Victoria Day", - "2044-06-24": "St. Jean Baptiste Day", + "2044-06-24": "St. John the Baptist Day", "2044-07-01": "Canada Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1225,10 +1225,10 @@ "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-22": "National Patriots' Day; Victoria Day", - "2045-06-24": "St. Jean Baptiste Day", + "2045-06-24": "St. John the Baptist Day", "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1240,11 +1240,11 @@ "2046-03-23": "Good Friday", "2046-03-26": "Easter Monday", "2046-05-21": "National Patriots' Day; Victoria Day", - "2046-06-24": "St. Jean Baptiste Day", - "2046-06-25": "St. Jean Baptiste Day (Observed)", + "2046-06-24": "St. John the Baptist Day", + "2046-06-25": "St. John the Baptist Day (Observed)", "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1256,9 +1256,9 @@ "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", "2047-05-20": "National Patriots' Day; Victoria Day", - "2047-06-24": "St. Jean Baptiste Day", + "2047-06-24": "St. John the Baptist Day", "2047-07-01": "Canada Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1268,9 +1268,9 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-05-18": "National Patriots' Day; Victoria Day", - "2048-06-24": "St. Jean Baptiste Day", + "2048-06-24": "St. John the Baptist Day", "2048-07-01": "Canada Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1281,9 +1281,9 @@ "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-05-24": "National Patriots' Day; Victoria Day", - "2049-06-24": "St. Jean Baptiste Day", + "2049-06-24": "St. John the Baptist Day", "2049-07-01": "Canada Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1296,9 +1296,9 @@ "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-23": "National Patriots' Day; Victoria Day", - "2050-06-24": "St. Jean Baptiste Day", + "2050-06-24": "St. John the Baptist Day", "2050-07-01": "Canada Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_SK.json b/snapshots/countries/CA_SK.json index 556fd6f12..ae46502ec 100644 --- a/snapshots/countries/CA_SK.json +++ b/snapshots/countries/CA_SK.json @@ -5,7 +5,7 @@ "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", "1950-08-07": "Saskatchewan Day", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -16,7 +16,7 @@ "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", "1951-08-06": "Saskatchewan Day", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -26,7 +26,7 @@ "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", "1952-08-04": "Saskatchewan Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -36,7 +36,7 @@ "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", "1953-08-03": "Saskatchewan Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -47,7 +47,7 @@ "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", "1954-08-02": "Saskatchewan Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -60,7 +60,7 @@ "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", "1955-08-01": "Saskatchewan Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -73,7 +73,7 @@ "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", "1956-08-06": "Saskatchewan Day", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -84,7 +84,7 @@ "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", "1957-08-05": "Saskatchewan Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", "1958-08-04": "Saskatchewan Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", "1959-08-03": "Saskatchewan Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", "1960-08-01": "Saskatchewan Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", "1961-08-07": "Saskatchewan Day", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -140,7 +140,7 @@ "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", "1962-08-06": "Saskatchewan Day", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -151,7 +151,7 @@ "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", "1963-08-05": "Saskatchewan Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -161,7 +161,7 @@ "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", "1964-08-03": "Saskatchewan Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -172,7 +172,7 @@ "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", "1965-08-02": "Saskatchewan Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -185,7 +185,7 @@ "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", "1966-08-01": "Saskatchewan Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -198,7 +198,7 @@ "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", "1967-08-07": "Saskatchewan Day", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -209,7 +209,7 @@ "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", "1968-08-05": "Saskatchewan Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -219,7 +219,7 @@ "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", "1969-08-04": "Saskatchewan Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -229,7 +229,7 @@ "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", "1970-08-03": "Saskatchewan Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -240,7 +240,7 @@ "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", "1971-08-02": "Saskatchewan Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -254,7 +254,7 @@ "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", "1972-08-07": "Saskatchewan Day", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -266,7 +266,7 @@ "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", "1973-08-06": "Saskatchewan Day", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -277,7 +277,7 @@ "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", "1974-08-05": "Saskatchewan Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -287,7 +287,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", "1975-08-04": "Saskatchewan Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -297,7 +297,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", "1976-08-02": "Saskatchewan Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -310,7 +310,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", "1977-08-01": "Saskatchewan Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -323,7 +323,7 @@ "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", "1978-08-07": "Saskatchewan Day", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -335,7 +335,7 @@ "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", "1979-08-06": "Saskatchewan Day", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -346,7 +346,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", "1980-08-04": "Saskatchewan Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -356,7 +356,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", "1981-08-03": "Saskatchewan Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -367,7 +367,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", "1982-08-02": "Saskatchewan Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -380,7 +380,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", "1983-08-01": "Saskatchewan Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -393,7 +393,7 @@ "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", "1984-08-06": "Saskatchewan Day", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -404,7 +404,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", "1985-08-05": "Saskatchewan Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -414,7 +414,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", "1986-08-04": "Saskatchewan Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -424,7 +424,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", "1987-08-03": "Saskatchewan Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -435,7 +435,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", "1988-08-01": "Saskatchewan Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -448,7 +448,7 @@ "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", "1989-08-07": "Saskatchewan Day", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -460,7 +460,7 @@ "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", "1990-08-06": "Saskatchewan Day", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -471,7 +471,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", "1991-08-05": "Saskatchewan Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -481,7 +481,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", "1992-08-03": "Saskatchewan Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -492,7 +492,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", "1993-08-02": "Saskatchewan Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -505,7 +505,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", "1994-08-01": "Saskatchewan Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -518,7 +518,7 @@ "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", "1995-08-07": "Saskatchewan Day", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -529,7 +529,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", "1996-08-05": "Saskatchewan Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -539,7 +539,7 @@ "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", "1997-08-04": "Saskatchewan Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -549,7 +549,7 @@ "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", "1998-08-03": "Saskatchewan Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -560,7 +560,7 @@ "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", "1999-08-02": "Saskatchewan Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -574,7 +574,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-07": "Saskatchewan Day", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -586,7 +586,7 @@ "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", "2001-08-06": "Saskatchewan Day", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -597,7 +597,7 @@ "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", "2002-08-05": "Saskatchewan Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -607,7 +607,7 @@ "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", "2003-08-04": "Saskatchewan Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -617,7 +617,7 @@ "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", "2004-08-02": "Saskatchewan Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -630,7 +630,7 @@ "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", "2005-08-01": "Saskatchewan Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -643,7 +643,7 @@ "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", "2006-08-07": "Saskatchewan Day", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -656,7 +656,7 @@ "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", "2007-08-06": "Saskatchewan Day", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -668,7 +668,7 @@ "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", "2008-08-04": "Saskatchewan Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -679,7 +679,7 @@ "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", "2009-08-03": "Saskatchewan Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -691,7 +691,7 @@ "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", "2010-08-02": "Saskatchewan Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -705,7 +705,7 @@ "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", "2011-08-01": "Saskatchewan Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -719,7 +719,7 @@ "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", "2012-08-06": "Saskatchewan Day", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -731,7 +731,7 @@ "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", "2013-08-05": "Saskatchewan Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -742,7 +742,7 @@ "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", "2014-08-04": "Saskatchewan Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -753,7 +753,7 @@ "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", "2015-08-03": "Saskatchewan Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -765,7 +765,7 @@ "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", "2016-08-01": "Saskatchewan Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -779,7 +779,7 @@ "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", "2017-08-07": "Saskatchewan Day", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -792,7 +792,7 @@ "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", "2018-08-06": "Saskatchewan Day", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -804,7 +804,7 @@ "2019-05-20": "Victoria Day", "2019-07-01": "Canada Day", "2019-08-05": "Saskatchewan Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -815,7 +815,7 @@ "2020-05-18": "Victoria Day", "2020-07-01": "Canada Day", "2020-08-03": "Saskatchewan Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -827,7 +827,7 @@ "2021-05-24": "Victoria Day", "2021-07-01": "Canada Day", "2021-08-02": "Saskatchewan Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -842,7 +842,7 @@ "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", "2022-08-01": "Saskatchewan Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", @@ -857,7 +857,7 @@ "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", "2023-08-07": "Saskatchewan Day", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -871,7 +871,7 @@ "2024-05-20": "Victoria Day", "2024-07-01": "Canada Day", "2024-08-05": "Saskatchewan Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -883,7 +883,7 @@ "2025-05-19": "Victoria Day", "2025-07-01": "Canada Day", "2025-08-04": "Saskatchewan Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -895,7 +895,7 @@ "2026-05-18": "Victoria Day", "2026-07-01": "Canada Day", "2026-08-03": "Saskatchewan Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -908,7 +908,7 @@ "2027-05-24": "Victoria Day", "2027-07-01": "Canada Day", "2027-08-02": "Saskatchewan Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -924,7 +924,7 @@ "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", "2028-08-07": "Saskatchewan Day", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -939,7 +939,7 @@ "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", "2029-08-06": "Saskatchewan Day", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -953,7 +953,7 @@ "2030-05-20": "Victoria Day", "2030-07-01": "Canada Day", "2030-08-05": "Saskatchewan Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -965,7 +965,7 @@ "2031-05-19": "Victoria Day", "2031-07-01": "Canada Day", "2031-08-04": "Saskatchewan Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -977,7 +977,7 @@ "2032-05-24": "Victoria Day", "2032-07-01": "Canada Day", "2032-08-02": "Saskatchewan Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -992,7 +992,7 @@ "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", "2033-08-01": "Saskatchewan Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -1007,7 +1007,7 @@ "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", "2034-08-07": "Saskatchewan Day", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -1022,7 +1022,7 @@ "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", "2035-08-06": "Saskatchewan Day", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1036,7 +1036,7 @@ "2036-05-19": "Victoria Day", "2036-07-01": "Canada Day", "2036-08-04": "Saskatchewan Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1048,7 +1048,7 @@ "2037-05-18": "Victoria Day", "2037-07-01": "Canada Day", "2037-08-03": "Saskatchewan Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1061,7 +1061,7 @@ "2038-05-24": "Victoria Day", "2038-07-01": "Canada Day", "2038-08-02": "Saskatchewan Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1076,7 +1076,7 @@ "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", "2039-08-01": "Saskatchewan Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1091,7 +1091,7 @@ "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", "2040-08-06": "Saskatchewan Day", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1105,7 +1105,7 @@ "2041-05-20": "Victoria Day", "2041-07-01": "Canada Day", "2041-08-05": "Saskatchewan Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1117,7 +1117,7 @@ "2042-05-19": "Victoria Day", "2042-07-01": "Canada Day", "2042-08-04": "Saskatchewan Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1129,7 +1129,7 @@ "2043-05-18": "Victoria Day", "2043-07-01": "Canada Day", "2043-08-03": "Saskatchewan Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1142,7 +1142,7 @@ "2044-05-23": "Victoria Day", "2044-07-01": "Canada Day", "2044-08-01": "Saskatchewan Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1157,7 +1157,7 @@ "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", "2045-08-07": "Saskatchewan Day", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1172,7 +1172,7 @@ "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", "2046-08-06": "Saskatchewan Day", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1186,7 +1186,7 @@ "2047-05-20": "Victoria Day", "2047-07-01": "Canada Day", "2047-08-05": "Saskatchewan Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1198,7 +1198,7 @@ "2048-05-18": "Victoria Day", "2048-07-01": "Canada Day", "2048-08-03": "Saskatchewan Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1211,7 +1211,7 @@ "2049-05-24": "Victoria Day", "2049-07-01": "Canada Day", "2049-08-02": "Saskatchewan Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1226,7 +1226,7 @@ "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", "2050-08-01": "Saskatchewan Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CA_YT.json b/snapshots/countries/CA_YT.json index 18af86d1c..d1bd8223a 100644 --- a/snapshots/countries/CA_YT.json +++ b/snapshots/countries/CA_YT.json @@ -5,7 +5,7 @@ "1950-07-01": "Dominion Day", "1950-07-03": "Dominion Day (Observed)", "1950-08-21": "Discovery Day", - "1950-09-04": "Labour Day", + "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", "1950-11-13": "Remembrance Day (Observed)", @@ -16,7 +16,7 @@ "1951-07-01": "Dominion Day", "1951-07-02": "Dominion Day (Observed)", "1951-08-20": "Discovery Day", - "1951-09-03": "Labour Day", + "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", "1951-11-12": "Remembrance Day (Observed)", @@ -26,7 +26,7 @@ "1952-04-11": "Good Friday", "1952-07-01": "Dominion Day", "1952-08-18": "Discovery Day", - "1952-09-01": "Labour Day", + "1952-09-01": "Labor Day", "1952-10-13": "Thanksgiving Day", "1952-11-11": "Remembrance Day", "1952-12-25": "Christmas Day", @@ -36,7 +36,7 @@ "1953-05-18": "Victoria Day", "1953-07-01": "Dominion Day", "1953-08-17": "Discovery Day", - "1953-09-07": "Labour Day", + "1953-09-07": "Labor Day", "1953-10-12": "Thanksgiving Day", "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", @@ -47,7 +47,7 @@ "1954-05-24": "Victoria Day", "1954-07-01": "Dominion Day", "1954-08-16": "Discovery Day", - "1954-09-06": "Labour Day", + "1954-09-06": "Labor Day", "1954-10-11": "Thanksgiving Day", "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", @@ -60,7 +60,7 @@ "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", "1955-08-15": "Discovery Day", - "1955-09-05": "Labour Day", + "1955-09-05": "Labor Day", "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", @@ -73,7 +73,7 @@ "1956-07-01": "Dominion Day", "1956-07-02": "Dominion Day (Observed)", "1956-08-20": "Discovery Day", - "1956-09-03": "Labour Day", + "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", "1956-11-12": "Remembrance Day (Observed)", @@ -84,7 +84,7 @@ "1957-05-20": "Victoria Day", "1957-07-01": "Dominion Day", "1957-08-19": "Discovery Day", - "1957-09-02": "Labour Day", + "1957-09-02": "Labor Day", "1957-10-14": "Thanksgiving Day", "1957-11-11": "Remembrance Day", "1957-12-25": "Christmas Day", @@ -94,7 +94,7 @@ "1958-05-19": "Victoria Day", "1958-07-01": "Dominion Day", "1958-08-18": "Discovery Day", - "1958-09-01": "Labour Day", + "1958-09-01": "Labor Day", "1958-10-13": "Thanksgiving Day", "1958-11-11": "Remembrance Day", "1958-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1959-05-18": "Victoria Day", "1959-07-01": "Dominion Day", "1959-08-17": "Discovery Day", - "1959-09-07": "Labour Day", + "1959-09-07": "Labor Day", "1959-10-12": "Thanksgiving Day", "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1960-05-23": "Victoria Day", "1960-07-01": "Dominion Day", "1960-08-15": "Discovery Day", - "1960-09-05": "Labour Day", + "1960-09-05": "Labor Day", "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1961-07-01": "Dominion Day", "1961-07-03": "Dominion Day (Observed)", "1961-08-21": "Discovery Day", - "1961-09-04": "Labour Day", + "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", "1961-11-13": "Remembrance Day (Observed)", @@ -140,7 +140,7 @@ "1962-07-01": "Dominion Day", "1962-07-02": "Dominion Day (Observed)", "1962-08-20": "Discovery Day", - "1962-09-03": "Labour Day", + "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", "1962-11-12": "Remembrance Day (Observed)", @@ -151,7 +151,7 @@ "1963-05-20": "Victoria Day", "1963-07-01": "Dominion Day", "1963-08-19": "Discovery Day", - "1963-09-02": "Labour Day", + "1963-09-02": "Labor Day", "1963-10-14": "Thanksgiving Day", "1963-11-11": "Remembrance Day", "1963-12-25": "Christmas Day", @@ -161,7 +161,7 @@ "1964-05-18": "Victoria Day", "1964-07-01": "Dominion Day", "1964-08-17": "Discovery Day", - "1964-09-07": "Labour Day", + "1964-09-07": "Labor Day", "1964-10-12": "Thanksgiving Day", "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", @@ -172,7 +172,7 @@ "1965-05-24": "Victoria Day", "1965-07-01": "Dominion Day", "1965-08-16": "Discovery Day", - "1965-09-06": "Labour Day", + "1965-09-06": "Labor Day", "1965-10-11": "Thanksgiving Day", "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", @@ -185,7 +185,7 @@ "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", "1966-08-15": "Discovery Day", - "1966-09-05": "Labour Day", + "1966-09-05": "Labor Day", "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", @@ -198,7 +198,7 @@ "1967-07-01": "Dominion Day", "1967-07-03": "Dominion Day (Observed)", "1967-08-21": "Discovery Day", - "1967-09-04": "Labour Day", + "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", "1967-11-13": "Remembrance Day (Observed)", @@ -209,7 +209,7 @@ "1968-05-20": "Victoria Day", "1968-07-01": "Dominion Day", "1968-08-19": "Discovery Day", - "1968-09-02": "Labour Day", + "1968-09-02": "Labor Day", "1968-10-14": "Thanksgiving Day", "1968-11-11": "Remembrance Day", "1968-12-25": "Christmas Day", @@ -219,7 +219,7 @@ "1969-05-19": "Victoria Day", "1969-07-01": "Dominion Day", "1969-08-18": "Discovery Day", - "1969-09-01": "Labour Day", + "1969-09-01": "Labor Day", "1969-10-13": "Thanksgiving Day", "1969-11-11": "Remembrance Day", "1969-12-25": "Christmas Day", @@ -229,7 +229,7 @@ "1970-05-18": "Victoria Day", "1970-07-01": "Dominion Day", "1970-08-17": "Discovery Day", - "1970-09-07": "Labour Day", + "1970-09-07": "Labor Day", "1970-10-12": "Thanksgiving Day", "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", @@ -240,7 +240,7 @@ "1971-05-24": "Victoria Day", "1971-07-01": "Dominion Day", "1971-08-16": "Discovery Day", - "1971-09-06": "Labour Day", + "1971-09-06": "Labor Day", "1971-10-11": "Thanksgiving Day", "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", @@ -254,7 +254,7 @@ "1972-07-01": "Dominion Day", "1972-07-03": "Dominion Day (Observed)", "1972-08-21": "Discovery Day", - "1972-09-04": "Labour Day", + "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", "1972-11-13": "Remembrance Day (Observed)", @@ -266,7 +266,7 @@ "1973-07-01": "Dominion Day", "1973-07-02": "Dominion Day (Observed)", "1973-08-20": "Discovery Day", - "1973-09-03": "Labour Day", + "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", "1973-11-12": "Remembrance Day (Observed)", @@ -277,7 +277,7 @@ "1974-05-20": "Victoria Day", "1974-07-01": "Dominion Day", "1974-08-19": "Discovery Day", - "1974-09-02": "Labour Day", + "1974-09-02": "Labor Day", "1974-10-14": "Thanksgiving Day", "1974-11-11": "Remembrance Day", "1974-12-25": "Christmas Day", @@ -287,7 +287,7 @@ "1975-05-19": "Victoria Day", "1975-07-01": "Dominion Day", "1975-08-18": "Discovery Day", - "1975-09-01": "Labour Day", + "1975-09-01": "Labor Day", "1975-10-13": "Thanksgiving Day", "1975-11-11": "Remembrance Day", "1975-12-25": "Christmas Day", @@ -298,7 +298,7 @@ "1976-05-24": "Victoria Day", "1976-07-01": "Dominion Day", "1976-08-16": "Discovery Day", - "1976-09-06": "Labour Day", + "1976-09-06": "Labor Day", "1976-10-11": "Thanksgiving Day", "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", @@ -312,7 +312,7 @@ "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", "1977-08-15": "Discovery Day", - "1977-09-05": "Labour Day", + "1977-09-05": "Labor Day", "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", @@ -326,7 +326,7 @@ "1978-07-01": "Dominion Day", "1978-07-03": "Dominion Day (Observed)", "1978-08-21": "Discovery Day", - "1978-09-04": "Labour Day", + "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", "1978-11-13": "Remembrance Day (Observed)", @@ -339,7 +339,7 @@ "1979-07-01": "Dominion Day", "1979-07-02": "Dominion Day (Observed)", "1979-08-20": "Discovery Day", - "1979-09-03": "Labour Day", + "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", "1979-11-12": "Remembrance Day (Observed)", @@ -351,7 +351,7 @@ "1980-05-19": "Victoria Day", "1980-07-01": "Dominion Day", "1980-08-18": "Discovery Day", - "1980-09-01": "Labour Day", + "1980-09-01": "Labor Day", "1980-10-13": "Thanksgiving Day", "1980-11-11": "Remembrance Day", "1980-12-25": "Christmas Day", @@ -362,7 +362,7 @@ "1981-05-18": "Victoria Day", "1981-07-01": "Dominion Day", "1981-08-17": "Discovery Day", - "1981-09-07": "Labour Day", + "1981-09-07": "Labor Day", "1981-10-12": "Thanksgiving Day", "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1982-05-24": "Victoria Day", "1982-07-01": "Dominion Day", "1982-08-16": "Discovery Day", - "1982-09-06": "Labour Day", + "1982-09-06": "Labor Day", "1982-10-11": "Thanksgiving Day", "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", @@ -388,7 +388,7 @@ "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", "1983-08-15": "Discovery Day", - "1983-09-05": "Labour Day", + "1983-09-05": "Labor Day", "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", @@ -402,7 +402,7 @@ "1984-07-01": "Canada Day", "1984-07-02": "Canada Day (Observed)", "1984-08-20": "Discovery Day", - "1984-09-03": "Labour Day", + "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", "1984-11-12": "Remembrance Day (Observed)", @@ -414,7 +414,7 @@ "1985-05-20": "Victoria Day", "1985-07-01": "Canada Day", "1985-08-19": "Discovery Day", - "1985-09-02": "Labour Day", + "1985-09-02": "Labor Day", "1985-10-14": "Thanksgiving Day", "1985-11-11": "Remembrance Day", "1985-12-25": "Christmas Day", @@ -425,7 +425,7 @@ "1986-05-19": "Victoria Day", "1986-07-01": "Canada Day", "1986-08-18": "Discovery Day", - "1986-09-01": "Labour Day", + "1986-09-01": "Labor Day", "1986-10-13": "Thanksgiving Day", "1986-11-11": "Remembrance Day", "1986-12-25": "Christmas Day", @@ -436,7 +436,7 @@ "1987-05-18": "Victoria Day", "1987-07-01": "Canada Day", "1987-08-17": "Discovery Day", - "1987-09-07": "Labour Day", + "1987-09-07": "Labor Day", "1987-10-12": "Thanksgiving Day", "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", @@ -448,7 +448,7 @@ "1988-05-23": "Victoria Day", "1988-07-01": "Canada Day", "1988-08-15": "Discovery Day", - "1988-09-05": "Labour Day", + "1988-09-05": "Labor Day", "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", @@ -462,7 +462,7 @@ "1989-07-01": "Canada Day", "1989-07-03": "Canada Day (Observed)", "1989-08-21": "Discovery Day", - "1989-09-04": "Labour Day", + "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", "1989-11-13": "Remembrance Day (Observed)", @@ -475,7 +475,7 @@ "1990-07-01": "Canada Day", "1990-07-02": "Canada Day (Observed)", "1990-08-20": "Discovery Day", - "1990-09-03": "Labour Day", + "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", "1990-11-12": "Remembrance Day (Observed)", @@ -487,7 +487,7 @@ "1991-05-20": "Victoria Day", "1991-07-01": "Canada Day", "1991-08-19": "Discovery Day", - "1991-09-02": "Labour Day", + "1991-09-02": "Labor Day", "1991-10-14": "Thanksgiving Day", "1991-11-11": "Remembrance Day", "1991-12-25": "Christmas Day", @@ -498,7 +498,7 @@ "1992-05-18": "Victoria Day", "1992-07-01": "Canada Day", "1992-08-17": "Discovery Day", - "1992-09-07": "Labour Day", + "1992-09-07": "Labor Day", "1992-10-12": "Thanksgiving Day", "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", @@ -510,7 +510,7 @@ "1993-05-24": "Victoria Day", "1993-07-01": "Canada Day", "1993-08-16": "Discovery Day", - "1993-09-06": "Labour Day", + "1993-09-06": "Labor Day", "1993-10-11": "Thanksgiving Day", "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", @@ -524,7 +524,7 @@ "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", "1994-08-15": "Discovery Day", - "1994-09-05": "Labour Day", + "1994-09-05": "Labor Day", "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "1995-07-01": "Canada Day", "1995-07-03": "Canada Day (Observed)", "1995-08-21": "Discovery Day", - "1995-09-04": "Labour Day", + "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", "1995-11-13": "Remembrance Day (Observed)", @@ -550,7 +550,7 @@ "1996-05-20": "Victoria Day", "1996-07-01": "Canada Day", "1996-08-19": "Discovery Day", - "1996-09-02": "Labour Day", + "1996-09-02": "Labor Day", "1996-10-14": "Thanksgiving Day", "1996-11-11": "Remembrance Day", "1996-12-25": "Christmas Day", @@ -561,7 +561,7 @@ "1997-05-19": "Victoria Day", "1997-07-01": "Canada Day", "1997-08-18": "Discovery Day", - "1997-09-01": "Labour Day", + "1997-09-01": "Labor Day", "1997-10-13": "Thanksgiving Day", "1997-11-11": "Remembrance Day", "1997-12-25": "Christmas Day", @@ -572,7 +572,7 @@ "1998-05-18": "Victoria Day", "1998-07-01": "Canada Day", "1998-08-17": "Discovery Day", - "1998-09-07": "Labour Day", + "1998-09-07": "Labor Day", "1998-10-12": "Thanksgiving Day", "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", @@ -584,7 +584,7 @@ "1999-05-24": "Victoria Day", "1999-07-01": "Canada Day", "1999-08-16": "Discovery Day", - "1999-09-06": "Labour Day", + "1999-09-06": "Labor Day", "1999-10-11": "Thanksgiving Day", "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", @@ -599,7 +599,7 @@ "2000-07-01": "Canada Day", "2000-07-03": "Canada Day (Observed)", "2000-08-21": "Discovery Day", - "2000-09-04": "Labour Day", + "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", "2000-11-13": "Remembrance Day (Observed)", @@ -612,7 +612,7 @@ "2001-07-01": "Canada Day", "2001-07-02": "Canada Day (Observed)", "2001-08-20": "Discovery Day", - "2001-09-03": "Labour Day", + "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", "2001-11-12": "Remembrance Day (Observed)", @@ -624,7 +624,7 @@ "2002-05-20": "Victoria Day", "2002-07-01": "Canada Day", "2002-08-19": "Discovery Day", - "2002-09-02": "Labour Day", + "2002-09-02": "Labor Day", "2002-10-14": "Thanksgiving Day", "2002-11-11": "Remembrance Day", "2002-12-25": "Christmas Day", @@ -635,7 +635,7 @@ "2003-05-19": "Victoria Day", "2003-07-01": "Canada Day", "2003-08-18": "Discovery Day", - "2003-09-01": "Labour Day", + "2003-09-01": "Labor Day", "2003-10-13": "Thanksgiving Day", "2003-11-11": "Remembrance Day", "2003-12-25": "Christmas Day", @@ -646,7 +646,7 @@ "2004-05-24": "Victoria Day", "2004-07-01": "Canada Day", "2004-08-16": "Discovery Day", - "2004-09-06": "Labour Day", + "2004-09-06": "Labor Day", "2004-10-11": "Thanksgiving Day", "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", @@ -660,7 +660,7 @@ "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", "2005-08-15": "Discovery Day", - "2005-09-05": "Labour Day", + "2005-09-05": "Labor Day", "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", @@ -674,7 +674,7 @@ "2006-07-01": "Canada Day", "2006-07-03": "Canada Day (Observed)", "2006-08-21": "Discovery Day", - "2006-09-04": "Labour Day", + "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", "2006-11-13": "Remembrance Day (Observed)", @@ -687,7 +687,7 @@ "2007-07-01": "Canada Day", "2007-07-02": "Canada Day (Observed)", "2007-08-20": "Discovery Day", - "2007-09-03": "Labour Day", + "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", "2007-11-12": "Remembrance Day (Observed)", @@ -699,7 +699,7 @@ "2008-05-19": "Victoria Day", "2008-07-01": "Canada Day", "2008-08-18": "Discovery Day", - "2008-09-01": "Labour Day", + "2008-09-01": "Labor Day", "2008-10-13": "Thanksgiving Day", "2008-11-11": "Remembrance Day", "2008-12-25": "Christmas Day", @@ -710,7 +710,7 @@ "2009-05-18": "Victoria Day", "2009-07-01": "Canada Day", "2009-08-17": "Discovery Day", - "2009-09-07": "Labour Day", + "2009-09-07": "Labor Day", "2009-10-12": "Thanksgiving Day", "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", @@ -722,7 +722,7 @@ "2010-05-24": "Victoria Day", "2010-07-01": "Canada Day", "2010-08-16": "Discovery Day", - "2010-09-06": "Labour Day", + "2010-09-06": "Labor Day", "2010-10-11": "Thanksgiving Day", "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", @@ -736,7 +736,7 @@ "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", "2011-08-15": "Discovery Day", - "2011-09-05": "Labour Day", + "2011-09-05": "Labor Day", "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", @@ -750,7 +750,7 @@ "2012-07-01": "Canada Day", "2012-07-02": "Canada Day (Observed)", "2012-08-20": "Discovery Day", - "2012-09-03": "Labour Day", + "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", "2012-11-12": "Remembrance Day (Observed)", @@ -762,7 +762,7 @@ "2013-05-20": "Victoria Day", "2013-07-01": "Canada Day", "2013-08-19": "Discovery Day", - "2013-09-02": "Labour Day", + "2013-09-02": "Labor Day", "2013-10-14": "Thanksgiving Day", "2013-11-11": "Remembrance Day", "2013-12-25": "Christmas Day", @@ -773,7 +773,7 @@ "2014-05-19": "Victoria Day", "2014-07-01": "Canada Day", "2014-08-18": "Discovery Day", - "2014-09-01": "Labour Day", + "2014-09-01": "Labor Day", "2014-10-13": "Thanksgiving Day", "2014-11-11": "Remembrance Day", "2014-12-25": "Christmas Day", @@ -784,7 +784,7 @@ "2015-05-18": "Victoria Day", "2015-07-01": "Canada Day", "2015-08-17": "Discovery Day", - "2015-09-07": "Labour Day", + "2015-09-07": "Labor Day", "2015-10-12": "Thanksgiving Day", "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", @@ -796,7 +796,7 @@ "2016-05-23": "Victoria Day", "2016-07-01": "Canada Day", "2016-08-15": "Discovery Day", - "2016-09-05": "Labour Day", + "2016-09-05": "Labor Day", "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", @@ -811,7 +811,7 @@ "2017-07-01": "Canada Day", "2017-07-03": "Canada Day (Observed)", "2017-08-21": "Discovery Day", - "2017-09-04": "Labour Day", + "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", "2017-11-13": "Remembrance Day (Observed)", @@ -825,7 +825,7 @@ "2018-07-01": "Canada Day", "2018-07-02": "Canada Day (Observed)", "2018-08-20": "Discovery Day", - "2018-09-03": "Labour Day", + "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", "2018-11-12": "Remembrance Day (Observed)", @@ -838,7 +838,7 @@ "2019-06-21": "National Aboriginal Day", "2019-07-01": "Canada Day", "2019-08-19": "Discovery Day", - "2019-09-02": "Labour Day", + "2019-09-02": "Labor Day", "2019-10-14": "Thanksgiving Day", "2019-11-11": "Remembrance Day", "2019-12-25": "Christmas Day", @@ -850,7 +850,7 @@ "2020-06-21": "National Aboriginal Day", "2020-07-01": "Canada Day", "2020-08-17": "Discovery Day", - "2020-09-07": "Labour Day", + "2020-09-07": "Labor Day", "2020-10-12": "Thanksgiving Day", "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", @@ -863,7 +863,7 @@ "2021-06-21": "National Aboriginal Day", "2021-07-01": "Canada Day", "2021-08-16": "Discovery Day", - "2021-09-06": "Labour Day", + "2021-09-06": "Labor Day", "2021-09-30": "National Day for Truth and Reconciliation", "2021-10-11": "Thanksgiving Day", "2021-11-11": "Remembrance Day", @@ -879,7 +879,7 @@ "2022-06-21": "National Aboriginal Day", "2022-07-01": "Canada Day", "2022-08-15": "Discovery Day", - "2022-09-05": "Labour Day", + "2022-09-05": "Labor Day", "2022-09-19": "Funeral of Her Majesty the Queen Elizabeth II", "2022-09-30": "National Day for Truth and Reconciliation", "2022-10-10": "Thanksgiving Day", @@ -896,7 +896,7 @@ "2023-07-01": "Canada Day", "2023-07-03": "Canada Day (Observed)", "2023-08-21": "Discovery Day", - "2023-09-04": "Labour Day", + "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", "2023-10-02": "National Day for Truth and Reconciliation (Observed)", "2023-10-09": "Thanksgiving Day", @@ -911,7 +911,7 @@ "2024-06-21": "National Aboriginal Day", "2024-07-01": "Canada Day", "2024-08-19": "Discovery Day", - "2024-09-02": "Labour Day", + "2024-09-02": "Labor Day", "2024-09-30": "National Day for Truth and Reconciliation", "2024-10-14": "Thanksgiving Day", "2024-11-11": "Remembrance Day", @@ -924,7 +924,7 @@ "2025-06-21": "National Aboriginal Day", "2025-07-01": "Canada Day", "2025-08-18": "Discovery Day", - "2025-09-01": "Labour Day", + "2025-09-01": "Labor Day", "2025-09-30": "National Day for Truth and Reconciliation", "2025-10-13": "Thanksgiving Day", "2025-11-11": "Remembrance Day", @@ -937,7 +937,7 @@ "2026-06-21": "National Aboriginal Day", "2026-07-01": "Canada Day", "2026-08-17": "Discovery Day", - "2026-09-07": "Labour Day", + "2026-09-07": "Labor Day", "2026-09-30": "National Day for Truth and Reconciliation", "2026-10-12": "Thanksgiving Day", "2026-11-11": "Remembrance Day", @@ -951,7 +951,7 @@ "2027-06-21": "National Aboriginal Day", "2027-07-01": "Canada Day", "2027-08-16": "Discovery Day", - "2027-09-06": "Labour Day", + "2027-09-06": "Labor Day", "2027-09-30": "National Day for Truth and Reconciliation", "2027-10-11": "Thanksgiving Day", "2027-11-11": "Remembrance Day", @@ -968,7 +968,7 @@ "2028-07-01": "Canada Day", "2028-07-03": "Canada Day (Observed)", "2028-08-21": "Discovery Day", - "2028-09-04": "Labour Day", + "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", "2028-10-02": "National Day for Truth and Reconciliation (Observed)", "2028-10-09": "Thanksgiving Day", @@ -984,7 +984,7 @@ "2029-07-01": "Canada Day", "2029-07-02": "Canada Day (Observed)", "2029-08-20": "Discovery Day", - "2029-09-03": "Labour Day", + "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", "2029-10-01": "National Day for Truth and Reconciliation (Observed)", "2029-10-08": "Thanksgiving Day", @@ -999,7 +999,7 @@ "2030-06-21": "National Aboriginal Day", "2030-07-01": "Canada Day", "2030-08-19": "Discovery Day", - "2030-09-02": "Labour Day", + "2030-09-02": "Labor Day", "2030-09-30": "National Day for Truth and Reconciliation", "2030-10-14": "Thanksgiving Day", "2030-11-11": "Remembrance Day", @@ -1012,7 +1012,7 @@ "2031-06-21": "National Aboriginal Day", "2031-07-01": "Canada Day", "2031-08-18": "Discovery Day", - "2031-09-01": "Labour Day", + "2031-09-01": "Labor Day", "2031-09-30": "National Day for Truth and Reconciliation", "2031-10-13": "Thanksgiving Day", "2031-11-11": "Remembrance Day", @@ -1025,7 +1025,7 @@ "2032-06-21": "National Aboriginal Day", "2032-07-01": "Canada Day", "2032-08-16": "Discovery Day", - "2032-09-06": "Labour Day", + "2032-09-06": "Labor Day", "2032-09-30": "National Day for Truth and Reconciliation", "2032-10-11": "Thanksgiving Day", "2032-11-11": "Remembrance Day", @@ -1041,7 +1041,7 @@ "2033-06-21": "National Aboriginal Day", "2033-07-01": "Canada Day", "2033-08-15": "Discovery Day", - "2033-09-05": "Labour Day", + "2033-09-05": "Labor Day", "2033-09-30": "National Day for Truth and Reconciliation", "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", @@ -1057,7 +1057,7 @@ "2034-07-01": "Canada Day", "2034-07-03": "Canada Day (Observed)", "2034-08-21": "Discovery Day", - "2034-09-04": "Labour Day", + "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", "2034-10-02": "National Day for Truth and Reconciliation (Observed)", "2034-10-09": "Thanksgiving Day", @@ -1073,7 +1073,7 @@ "2035-07-01": "Canada Day", "2035-07-02": "Canada Day (Observed)", "2035-08-20": "Discovery Day", - "2035-09-03": "Labour Day", + "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", "2035-10-01": "National Day for Truth and Reconciliation (Observed)", "2035-10-08": "Thanksgiving Day", @@ -1088,7 +1088,7 @@ "2036-06-21": "National Aboriginal Day", "2036-07-01": "Canada Day", "2036-08-18": "Discovery Day", - "2036-09-01": "Labour Day", + "2036-09-01": "Labor Day", "2036-09-30": "National Day for Truth and Reconciliation", "2036-10-13": "Thanksgiving Day", "2036-11-11": "Remembrance Day", @@ -1101,7 +1101,7 @@ "2037-06-21": "National Aboriginal Day", "2037-07-01": "Canada Day", "2037-08-17": "Discovery Day", - "2037-09-07": "Labour Day", + "2037-09-07": "Labor Day", "2037-09-30": "National Day for Truth and Reconciliation", "2037-10-12": "Thanksgiving Day", "2037-11-11": "Remembrance Day", @@ -1115,7 +1115,7 @@ "2038-06-21": "National Aboriginal Day", "2038-07-01": "Canada Day", "2038-08-16": "Discovery Day", - "2038-09-06": "Labour Day", + "2038-09-06": "Labor Day", "2038-09-30": "National Day for Truth and Reconciliation", "2038-10-11": "Thanksgiving Day", "2038-11-11": "Remembrance Day", @@ -1131,7 +1131,7 @@ "2039-06-21": "National Aboriginal Day", "2039-07-01": "Canada Day", "2039-08-15": "Discovery Day", - "2039-09-05": "Labour Day", + "2039-09-05": "Labor Day", "2039-09-30": "National Day for Truth and Reconciliation", "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", @@ -1147,7 +1147,7 @@ "2040-07-01": "Canada Day", "2040-07-02": "Canada Day (Observed)", "2040-08-20": "Discovery Day", - "2040-09-03": "Labour Day", + "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", "2040-10-01": "National Day for Truth and Reconciliation (Observed)", "2040-10-08": "Thanksgiving Day", @@ -1162,7 +1162,7 @@ "2041-06-21": "National Aboriginal Day", "2041-07-01": "Canada Day", "2041-08-19": "Discovery Day", - "2041-09-02": "Labour Day", + "2041-09-02": "Labor Day", "2041-09-30": "National Day for Truth and Reconciliation", "2041-10-14": "Thanksgiving Day", "2041-11-11": "Remembrance Day", @@ -1175,7 +1175,7 @@ "2042-06-21": "National Aboriginal Day", "2042-07-01": "Canada Day", "2042-08-18": "Discovery Day", - "2042-09-01": "Labour Day", + "2042-09-01": "Labor Day", "2042-09-30": "National Day for Truth and Reconciliation", "2042-10-13": "Thanksgiving Day", "2042-11-11": "Remembrance Day", @@ -1188,7 +1188,7 @@ "2043-06-21": "National Aboriginal Day", "2043-07-01": "Canada Day", "2043-08-17": "Discovery Day", - "2043-09-07": "Labour Day", + "2043-09-07": "Labor Day", "2043-09-30": "National Day for Truth and Reconciliation", "2043-10-12": "Thanksgiving Day", "2043-11-11": "Remembrance Day", @@ -1202,7 +1202,7 @@ "2044-06-21": "National Aboriginal Day", "2044-07-01": "Canada Day", "2044-08-15": "Discovery Day", - "2044-09-05": "Labour Day", + "2044-09-05": "Labor Day", "2044-09-30": "National Day for Truth and Reconciliation", "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", @@ -1218,7 +1218,7 @@ "2045-07-01": "Canada Day", "2045-07-03": "Canada Day (Observed)", "2045-08-21": "Discovery Day", - "2045-09-04": "Labour Day", + "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", "2045-10-02": "National Day for Truth and Reconciliation (Observed)", "2045-10-09": "Thanksgiving Day", @@ -1234,7 +1234,7 @@ "2046-07-01": "Canada Day", "2046-07-02": "Canada Day (Observed)", "2046-08-20": "Discovery Day", - "2046-09-03": "Labour Day", + "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", "2046-10-01": "National Day for Truth and Reconciliation (Observed)", "2046-10-08": "Thanksgiving Day", @@ -1249,7 +1249,7 @@ "2047-06-21": "National Aboriginal Day", "2047-07-01": "Canada Day", "2047-08-19": "Discovery Day", - "2047-09-02": "Labour Day", + "2047-09-02": "Labor Day", "2047-09-30": "National Day for Truth and Reconciliation", "2047-10-14": "Thanksgiving Day", "2047-11-11": "Remembrance Day", @@ -1262,7 +1262,7 @@ "2048-06-21": "National Aboriginal Day", "2048-07-01": "Canada Day", "2048-08-17": "Discovery Day", - "2048-09-07": "Labour Day", + "2048-09-07": "Labor Day", "2048-09-30": "National Day for Truth and Reconciliation", "2048-10-12": "Thanksgiving Day", "2048-11-11": "Remembrance Day", @@ -1276,7 +1276,7 @@ "2049-06-21": "National Aboriginal Day", "2049-07-01": "Canada Day", "2049-08-16": "Discovery Day", - "2049-09-06": "Labour Day", + "2049-09-06": "Labor Day", "2049-09-30": "National Day for Truth and Reconciliation", "2049-10-11": "Thanksgiving Day", "2049-11-11": "Remembrance Day", @@ -1292,7 +1292,7 @@ "2050-06-21": "National Aboriginal Day", "2050-07-01": "Canada Day", "2050-08-15": "Discovery Day", - "2050-09-05": "Labour Day", + "2050-09-05": "Labor Day", "2050-09-30": "National Day for Truth and Reconciliation", "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", diff --git a/snapshots/countries/CM_COMMON.json b/snapshots/countries/CM_COMMON.json index 6649b4cc1..5fa99c99b 100644 --- a/snapshots/countries/CM_COMMON.json +++ b/snapshots/countries/CM_COMMON.json @@ -1,220 +1,220 @@ { "1960-01-01": "New Year's Day", - "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", "1960-04-15": "Good Friday", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day (Observed)", "1960-05-26": "Ascension Day", - "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", "1960-08-15": "Assumption Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day (Observed)", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day (Observed)", - "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", "1961-03-31": "Good Friday", "1961-05-01": "Labour Day", "1961-05-11": "Ascension Day", - "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", "1961-08-15": "Assumption Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", "1962-04-20": "Good Friday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", "1962-05-31": "Ascension Day", - "1962-08-12": "Mawlid* (*estimated)", - "1962-08-13": "Mawlid* (*estimated) (Observed)", + "1962-08-12": "Mawlid (estimated)", + "1962-08-13": "Mawlid (estimated) (Observed)", "1962-08-15": "Assumption Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr* (*estimated) (Observed)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (estimated) (Observed)", "1963-04-12": "Good Friday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", "1963-05-23": "Ascension Day", - "1963-08-02": "Mawlid* (*estimated)", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Assumption Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-27": "Good Friday", - "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-07": "Ascension Day", - "1964-07-21": "Mawlid* (*estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Assumption Day", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha* (*estimated) (Observed)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (estimated) (Observed)", "1965-04-16": "Good Friday", "1965-05-01": "Labour Day", "1965-05-27": "Ascension Day", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Assumption Day", "1965-08-16": "Assumption Day (Observed)", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", "1966-02-11": "Youth Day", - "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-04-08": "Good Friday", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day (Observed)", "1966-05-19": "Ascension Day", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Assumption Day", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day (Observed)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day (Observed)", - "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", "1967-02-11": "Youth Day", - "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-05-01": "Labour Day", "1967-05-04": "Ascension Day", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Assumption Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-02-11": "Youth Day", "1968-02-12": "Youth Day (Observed)", - "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", "1968-04-12": "Good Friday", "1968-05-01": "Labour Day", "1968-05-23": "Ascension Day", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Assumption Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-11": "Youth Day", - "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", "1969-04-04": "Good Friday", "1969-05-01": "Labour Day", "1969-05-15": "Ascension Day", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Assumption Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-02-11": "Youth Day", - "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", "1970-03-27": "Good Friday", "1970-05-01": "Labour Day", "1970-05-07": "Ascension Day", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Assumption Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", "1971-02-11": "Youth Day", "1971-04-09": "Good Friday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-20": "Ascension Day", "1971-08-15": "Assumption Day", "1971-08-16": "Assumption Day (Observed)", - "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", "1972-02-11": "Youth Day", "1972-03-31": "Good Friday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-11": "Ascension Day", "1972-05-20": "National Day", "1972-08-15": "Assumption Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha* (*estimated) (Observed)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (estimated) (Observed)", "1973-02-11": "Youth Day", "1973-02-12": "Youth Day (Observed)", - "1973-04-15": "Mawlid* (*estimated)", - "1973-04-16": "Mawlid* (*estimated) (Observed)", + "1973-04-15": "Mawlid (estimated)", + "1973-04-16": "Mawlid (estimated) (Observed)", "1973-04-20": "Good Friday", "1973-05-01": "Labour Day", "1973-05-20": "National Day", "1973-05-21": "National Day (Observed)", "1973-05-31": "Ascension Day", "1973-08-15": "Assumption Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", "1974-02-11": "Youth Day", - "1974-04-04": "Mawlid* (*estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-12": "Good Friday", "1974-05-01": "Labour Day", "1974-05-20": "National Day", "1974-05-23": "Ascension Day", "1974-08-15": "Assumption Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-02-11": "Youth Day", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-05-01": "Labour Day", "1975-05-08": "Ascension Day", "1975-05-20": "National Day", "1975-08-15": "Assumption Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-02-11": "Youth Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-16": "Good Friday", "1976-05-01": "Labour Day", "1976-05-20": "National Day", "1976-05-27": "Ascension Day", "1976-08-15": "Assumption Day", "1976-08-16": "Assumption Day (Observed)", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-02-11": "Youth Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-08": "Good Friday", "1977-05-01": "Labour Day", "1977-05-02": "Labour Day (Observed)", "1977-05-19": "Ascension Day", "1977-05-20": "National Day", "1977-08-15": "Assumption Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day (Observed)", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day (Observed)", "1978-02-11": "Youth Day", - "1978-02-19": "Mawlid* (*estimated)", - "1978-02-20": "Mawlid* (*estimated) (Observed)", + "1978-02-19": "Mawlid (estimated)", + "1978-02-20": "Mawlid (estimated) (Observed)", "1978-03-24": "Good Friday", "1978-05-01": "Labour Day", "1978-05-04": "Ascension Day", "1978-05-20": "National Day", "1978-08-15": "Assumption Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr* (*estimated) (Observed)", - "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (estimated) (Observed)", + "1978-11-10": "Eid al-Adha (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-02-11": "Youth Day", "1979-02-12": "Youth Day (Observed)", "1979-04-13": "Good Friday", @@ -223,45 +223,45 @@ "1979-05-21": "National Day (Observed)", "1979-05-24": "Ascension Day", "1979-08-15": "Assumption Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-02-11": "Youth Day", "1980-04-04": "Good Friday", "1980-05-01": "Labour Day", "1980-05-15": "Ascension Day", "1980-05-20": "National Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", "1980-08-15": "Assumption Day", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated) (Observed)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated) (Observed)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Mawlid* (*estimated)", - "1981-01-19": "Mawlid* (*estimated) (Observed)", + "1981-01-18": "Mawlid (estimated)", + "1981-01-19": "Mawlid (estimated) (Observed)", "1981-02-11": "Youth Day", "1981-04-17": "Good Friday", "1981-05-01": "Labour Day", "1981-05-20": "National Day", "1981-05-28": "Ascension Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", "1981-08-15": "Assumption Day", - "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-02-11": "Youth Day", "1982-04-09": "Good Friday", "1982-05-01": "Labour Day", "1982-05-20": "Ascension Day; National Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", "1982-08-15": "Assumption Day", "1982-08-16": "Assumption Day (Observed)", - "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-01": "New Year's Day", "1983-02-11": "Youth Day", "1983-04-01": "Good Friday", @@ -269,10 +269,10 @@ "1983-05-02": "Labour Day (Observed)", "1983-05-12": "Ascension Day", "1983-05-20": "National Day", - "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", "1983-08-15": "Assumption Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day (Observed)", "1984-01-01": "New Year's Day", @@ -283,10 +283,10 @@ "1984-05-20": "National Day", "1984-05-21": "National Day (Observed)", "1984-05-31": "Ascension Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", "1984-08-15": "Assumption Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-11": "Youth Day", @@ -294,11 +294,11 @@ "1985-05-01": "Labour Day", "1985-05-16": "Ascension Day", "1985-05-20": "National Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", "1985-08-15": "Assumption Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-11-24": "Mawlid* (*estimated)", - "1985-11-25": "Mawlid* (*estimated) (Observed)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-11-24": "Mawlid (estimated)", + "1985-11-25": "Mawlid (estimated) (Observed)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-11": "Youth Day", @@ -306,20 +306,20 @@ "1986-05-01": "Labour Day", "1986-05-08": "Ascension Day", "1986-05-20": "National Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr* (*estimated) (Observed)", - "1986-08-15": "Assumption Day; Eid al-Adha* (*estimated)", - "1986-11-14": "Mawlid* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (estimated) (Observed)", + "1986-08-15": "Assumption Day; Eid al-Adha (estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-02-11": "Youth Day", "1987-04-17": "Good Friday", "1987-05-01": "Labour Day", "1987-05-20": "National Day", - "1987-05-28": "Ascension Day; Eid al-Fitr* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-05-28": "Ascension Day; Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", "1987-08-15": "Assumption Day", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-02-11": "Youth Day", @@ -327,11 +327,11 @@ "1988-05-01": "Labour Day", "1988-05-02": "Labour Day (Observed)", "1988-05-12": "Ascension Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", "1988-05-20": "National Day", - "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", "1988-08-15": "Assumption Day", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day (Observed)", "1989-01-01": "New Year's Day", @@ -340,142 +340,142 @@ "1989-03-24": "Good Friday", "1989-05-01": "Labour Day", "1989-05-04": "Ascension Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", "1989-05-20": "National Day", - "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", "1989-08-15": "Assumption Day", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-02-11": "Youth Day", "1990-02-12": "Youth Day (Observed)", "1990-04-13": "Good Friday", - "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-05-20": "National Day", "1990-05-21": "National Day (Observed)", "1990-05-24": "Ascension Day", - "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", "1990-08-15": "Assumption Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-02-11": "Youth Day", "1991-03-29": "Good Friday", - "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-09": "Ascension Day", "1991-05-20": "National Day", - "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", "1991-08-15": "Assumption Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-02-11": "Youth Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-17": "Good Friday", "1992-05-01": "Labour Day", "1992-05-20": "National Day", "1992-05-28": "Ascension Day", - "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", "1992-08-15": "Assumption Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-02-11": "Youth Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-09": "Good Friday", "1993-05-01": "Labour Day", "1993-05-20": "Ascension Day; National Day", - "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", "1993-08-15": "Assumption Day", "1993-08-16": "Assumption Day (Observed)", - "1993-08-29": "Mawlid* (*estimated)", - "1993-08-30": "Mawlid* (*estimated) (Observed)", + "1993-08-29": "Mawlid (estimated)", + "1993-08-30": "Mawlid (estimated) (Observed)", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-02-11": "Youth Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr* (*estimated) (Observed)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (estimated) (Observed)", "1994-04-01": "Good Friday", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day (Observed)", "1994-05-12": "Ascension Day", - "1994-05-20": "Eid al-Adha* (*estimated); National Day", + "1994-05-20": "Eid al-Adha (estimated); National Day", "1994-08-15": "Assumption Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day (Observed)", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day (Observed)", "1995-02-11": "Youth Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-04-14": "Good Friday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", "1995-05-20": "National Day", "1995-05-25": "Ascension Day", - "1995-08-08": "Mawlid* (*estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Assumption Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-02-11": "Youth Day", "1996-02-12": "Youth Day (Observed)", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-04-05": "Good Friday", - "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-16": "Ascension Day", "1996-05-20": "National Day", - "1996-07-27": "Mawlid* (*estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Assumption Day", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-02-11": "Youth Day", "1997-03-28": "Good Friday", - "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", "1997-05-08": "Ascension Day", "1997-05-20": "National Day", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Assumption Day", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", "1998-02-11": "Youth Day", - "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-05-01": "Labour Day", "1998-05-20": "National Day", "1998-05-21": "Ascension Day", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Assumption Day", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-02-11": "Youth Day", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-02": "Good Friday", "1999-05-01": "Labour Day", "1999-05-13": "Ascension Day", "1999-05-20": "National Day", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Assumption Day", "1999-08-16": "Assumption Day (Observed)", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-02-11": "Youth Day", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-04-21": "Good Friday", "2000-05-01": "Labour Day", "2000-05-20": "National Day", "2000-06-01": "Ascension Day", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Assumption Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-02-11": "Youth Day", "2001-02-12": "Youth Day (Observed)", @@ -759,282 +759,282 @@ "2023-05-20": "National Day", "2023-06-28": "Eid al-Adha", "2023-08-15": "Assumption Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-02-11": "Youth Day", "2024-02-12": "Youth Day (Observed)", "2024-03-29": "Good Friday", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-09": "Ascension Day", "2024-05-20": "National Day", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated) (Observed)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated) (Observed)", "2024-08-15": "Assumption Day", - "2024-09-15": "Mawlid* (*estimated)", - "2024-09-16": "Mawlid* (*estimated) (Observed)", + "2024-09-15": "Mawlid (estimated)", + "2024-09-16": "Mawlid (estimated) (Observed)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-02-11": "Youth Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr* (*estimated) (Observed)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated) (Observed)", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", "2025-05-20": "National Day", "2025-05-29": "Ascension Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-08-15": "Assumption Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-11": "Youth Day", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-03": "Good Friday", "2026-05-01": "Labour Day", "2026-05-14": "Ascension Day", "2026-05-20": "National Day", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-08-15": "Assumption Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-02-11": "Youth Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-26": "Good Friday", "2027-05-01": "Labour Day", "2027-05-06": "Ascension Day", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha* (*estimated) (Observed)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated) (Observed)", "2027-05-20": "National Day", - "2027-08-14": "Mawlid* (*estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Assumption Day", "2027-08-16": "Assumption Day (Observed)", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-02-11": "Youth Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-04-14": "Good Friday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", "2028-05-20": "National Day", "2028-05-25": "Ascension Day", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Assumption Day", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-02-11": "Youth Day", "2029-02-12": "Youth Day (Observed)", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-30": "Good Friday", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-10": "Ascension Day", "2029-05-20": "National Day", "2029-05-21": "National Day (Observed)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Assumption Day", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", "2030-02-11": "Youth Day", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-19": "Good Friday", "2030-05-01": "Labour Day", "2030-05-20": "National Day", "2030-05-30": "Ascension Day", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Assumption Day", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", "2031-02-11": "Youth Day", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-11": "Good Friday", "2031-05-01": "Labour Day", "2031-05-20": "National Day", "2031-05-22": "Ascension Day", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Assumption Day", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", "2032-02-11": "Youth Day", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-05-01": "Labour Day", "2032-05-06": "Ascension Day", "2032-05-20": "National Day", - "2032-06-20": "Mawlid* (*estimated)", - "2032-06-21": "Mawlid* (*estimated) (Observed)", + "2032-06-20": "Mawlid (estimated)", + "2032-06-21": "Mawlid (estimated) (Observed)", "2032-08-15": "Assumption Day", "2032-08-16": "Assumption Day (Observed)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr* (*estimated) (Observed)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (estimated) (Observed)", "2033-02-11": "Youth Day", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day (Observed)", "2033-05-20": "National Day", "2033-05-26": "Ascension Day", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Assumption Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (Observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day (Observed)", "2034-02-11": "Youth Day", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-04-07": "Good Friday", "2034-05-01": "Labour Day", "2034-05-18": "Ascension Day", "2034-05-20": "National Day", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Assumption Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-02-11": "Youth Day", "2035-02-12": "Youth Day (Observed)", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated) (Observed)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated) (Observed)", "2035-03-23": "Good Friday", "2035-05-01": "Labour Day", "2035-05-03": "Ascension Day", - "2035-05-20": "Mawlid* (*estimated); National Day", - "2035-05-21": "Mawlid* (*estimated) (Observed); National Day (Observed)", + "2035-05-20": "Mawlid (estimated); National Day", + "2035-05-21": "Mawlid (estimated) (Observed); National Day (Observed)", "2035-08-15": "Assumption Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-02-11": "Youth Day", "2036-04-11": "Good Friday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-05-20": "National Day", "2036-05-22": "Ascension Day", "2036-08-15": "Assumption Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-02-11": "Youth Day", "2037-04-03": "Good Friday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-14": "Ascension Day", "2037-05-20": "National Day", "2037-08-15": "Assumption Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr* (*estimated) (Observed)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated) (Observed)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-02-11": "Youth Day", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-23": "Good Friday", "2038-05-01": "Labour Day", "2038-05-20": "National Day", "2038-06-03": "Ascension Day", "2038-08-15": "Assumption Day", "2038-08-16": "Assumption Day (Observed)", - "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-02-11": "Youth Day", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day (Observed)", "2039-05-19": "Ascension Day", "2039-05-20": "National Day", "2039-08-15": "Assumption Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", "2039-12-27": "Christmas Day (Observed)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day (Observed)", "2040-02-11": "Youth Day", - "2040-03-25": "Mawlid* (*estimated)", - "2040-03-26": "Mawlid* (*estimated) (Observed)", + "2040-03-25": "Mawlid (estimated)", + "2040-03-26": "Mawlid (estimated) (Observed)", "2040-03-30": "Good Friday", "2040-05-01": "Labour Day", "2040-05-10": "Ascension Day", "2040-05-20": "National Day", "2040-05-21": "National Day (Observed)", "2040-08-15": "Assumption Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated) (Observed)", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated) (Observed)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-02-11": "Youth Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-19": "Good Friday", "2041-05-01": "Labour Day", "2041-05-20": "National Day", "2041-05-30": "Ascension Day", "2041-08-15": "Assumption Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-02-11": "Youth Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-04-04": "Good Friday", "2042-05-01": "Labour Day", "2042-05-15": "Ascension Day", "2042-05-20": "National Day", "2042-08-15": "Assumption Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated) (Observed)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated) (Observed)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-11": "Youth Day", - "2043-02-22": "Mawlid* (*estimated)", - "2043-02-23": "Mawlid* (*estimated) (Observed)", + "2043-02-22": "Mawlid (estimated)", + "2043-02-23": "Mawlid (estimated) (Observed)", "2043-03-27": "Good Friday", "2043-05-01": "Labour Day", "2043-05-07": "Ascension Day", "2043-05-20": "National Day", "2043-08-15": "Assumption Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-02-11": "Mawlid* (*estimated); Youth Day", + "2044-02-11": "Mawlid (estimated); Youth Day", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day (Observed)", "2044-05-20": "National Day", "2044-05-26": "Ascension Day", "2044-08-15": "Assumption Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day (Observed)", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day (Observed)", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-02-11": "Youth Day", "2045-04-07": "Good Friday", "2045-05-01": "Labour Day", "2045-05-18": "Ascension Day", "2045-05-20": "National Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", "2045-08-15": "Assumption Day", - "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-02-11": "Youth Day", "2046-02-12": "Youth Day (Observed)", "2046-03-23": "Good Friday", @@ -1042,34 +1042,34 @@ "2046-05-03": "Ascension Day", "2046-05-20": "National Day", "2046-05-21": "National Day (Observed)", - "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-15": "Assumption Day", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-02-11": "Youth Day", "2047-04-12": "Good Friday", "2047-05-01": "Labour Day", "2047-05-20": "National Day", "2047-05-23": "Ascension Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-08-15": "Assumption Day", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", - "2047-12-30": "Mawlid* (*estimated) (Observed)", + "2047-12-29": "Mawlid (estimated)", + "2047-12-30": "Mawlid (estimated) (Observed)", "2048-01-01": "New Year's Day", "2048-02-11": "Youth Day", "2048-04-03": "Good Friday", "2048-05-01": "Labour Day", "2048-05-14": "Ascension Day", "2048-05-20": "National Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated) (Observed)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated) (Observed)", "2048-08-15": "Assumption Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-02-11": "Youth Day", @@ -1077,11 +1077,11 @@ "2049-05-01": "Labour Day", "2049-05-20": "National Day", "2049-05-27": "Ascension Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", "2049-08-15": "Assumption Day", "2049-08-16": "Assumption Day (Observed)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-02-11": "Youth Day", @@ -1090,11 +1090,11 @@ "2050-05-02": "Labour Day (Observed)", "2050-05-19": "Ascension Day", "2050-05-20": "National Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-15": "Assumption Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated) (Observed)", - "2050-11-26": "Mawlid* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated) (Observed)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day (Observed)" } diff --git a/snapshots/countries/DJ_COMMON.json b/snapshots/countries/DJ_COMMON.json index 7a731b2a5..0f820ae3f 100644 --- a/snapshots/countries/DJ_COMMON.json +++ b/snapshots/countries/DJ_COMMON.json @@ -1,962 +1,962 @@ { "1978-01-01": "New Year's Day", - "1978-02-19": "Prophet Muhammad's Birthday* (*estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", "1978-05-01": "Labor Day", "1978-06-27": "Independence Day", "1978-06-28": "Independence Day Holiday", - "1978-07-02": "Isra and Miraj* (*estimated)", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", - "1978-11-09": "Arafat* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha Holiday* (*estimated)", - "1978-12-01": "Islamic New Year* (*estimated)", + "1978-07-02": "Isra and Miraj (estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr Holiday (estimated)", + "1978-11-09": "Arafat (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha Holiday (estimated)", + "1978-12-01": "Islamic New Year (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-02-09": "Prophet Muhammad's Birthday* (*estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", "1979-05-01": "Labor Day", - "1979-06-22": "Isra and Miraj* (*estimated)", + "1979-06-22": "Isra and Miraj (estimated)", "1979-06-27": "Independence Day", "1979-06-28": "Independence Day Holiday", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", - "1979-10-30": "Arafat* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha Holiday* (*estimated)", - "1979-11-20": "Islamic New Year* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr Holiday (estimated)", + "1979-10-30": "Arafat (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha Holiday (estimated)", + "1979-11-20": "Islamic New Year (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Prophet Muhammad's Birthday* (*estimated)", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", "1980-05-01": "Labor Day", - "1980-06-10": "Isra and Miraj* (*estimated)", + "1980-06-10": "Isra and Miraj (estimated)", "1980-06-27": "Independence Day", "1980-06-28": "Independence Day Holiday", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", - "1980-10-18": "Arafat* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha Holiday* (*estimated)", - "1980-11-09": "Islamic New Year* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr Holiday (estimated)", + "1980-10-18": "Arafat (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha Holiday (estimated)", + "1980-11-09": "Islamic New Year (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Prophet Muhammad's Birthday* (*estimated)", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", "1981-05-01": "Labor Day", - "1981-05-31": "Isra and Miraj* (*estimated)", + "1981-05-31": "Isra and Miraj (estimated)", "1981-06-27": "Independence Day", "1981-06-28": "Independence Day Holiday", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", - "1981-10-07": "Arafat* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha Holiday* (*estimated)", - "1981-10-28": "Islamic New Year* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr Holiday (estimated)", + "1981-10-07": "Arafat (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha Holiday (estimated)", + "1981-10-28": "Islamic New Year (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Prophet Muhammad's Birthday* (*estimated)", + "1982-01-07": "Prophet Muhammad's Birthday (estimated)", "1982-05-01": "Labor Day", - "1982-05-20": "Isra and Miraj* (*estimated)", + "1982-05-20": "Isra and Miraj (estimated)", "1982-06-27": "Independence Day", "1982-06-28": "Independence Day Holiday", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", - "1982-09-26": "Arafat* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha Holiday* (*estimated)", - "1982-10-18": "Islamic New Year* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr Holiday (estimated)", + "1982-09-26": "Arafat (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha Holiday (estimated)", + "1982-10-18": "Islamic New Year (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Prophet Muhammad's Birthday* (*estimated)", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", "1983-01-01": "New Year's Day", "1983-05-01": "Labor Day", - "1983-05-10": "Isra and Miraj* (*estimated)", + "1983-05-10": "Isra and Miraj (estimated)", "1983-06-27": "Independence Day", "1983-06-28": "Independence Day Holiday", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", - "1983-09-16": "Arafat* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha Holiday* (*estimated)", - "1983-10-07": "Islamic New Year* (*estimated)", - "1983-12-16": "Prophet Muhammad's Birthday* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr Holiday (estimated)", + "1983-09-16": "Arafat (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha Holiday (estimated)", + "1983-10-07": "Islamic New Year (estimated)", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", "1983-12-25": "Christmas Day", "1984-01-01": "New Year's Day", - "1984-04-28": "Isra and Miraj* (*estimated)", + "1984-04-28": "Isra and Miraj (estimated)", "1984-05-01": "Labor Day", "1984-06-27": "Independence Day", "1984-06-28": "Independence Day Holiday", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", - "1984-09-04": "Arafat* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha Holiday* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", - "1984-12-04": "Prophet Muhammad's Birthday* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr Holiday (estimated)", + "1984-09-04": "Arafat (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha Holiday (estimated)", + "1984-09-26": "Islamic New Year (estimated)", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-04-17": "Isra and Miraj* (*estimated)", + "1985-04-17": "Isra and Miraj (estimated)", "1985-05-01": "Labor Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr Holiday (estimated)", "1985-06-27": "Independence Day", "1985-06-28": "Independence Day Holiday", - "1985-08-25": "Arafat* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha Holiday* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", - "1985-11-24": "Prophet Muhammad's Birthday* (*estimated)", + "1985-08-25": "Arafat (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha Holiday (estimated)", + "1985-09-15": "Islamic New Year (estimated)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-04-06": "Isra and Miraj* (*estimated)", + "1986-04-06": "Isra and Miraj (estimated)", "1986-05-01": "Labor Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr Holiday (estimated)", "1986-06-27": "Independence Day", "1986-06-28": "Independence Day Holiday", - "1986-08-14": "Arafat* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha Holiday* (*estimated)", - "1986-09-05": "Islamic New Year* (*estimated)", - "1986-11-14": "Prophet Muhammad's Birthday* (*estimated)", + "1986-08-14": "Arafat (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha Holiday (estimated)", + "1986-09-05": "Islamic New Year (estimated)", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", - "1987-03-27": "Isra and Miraj* (*estimated)", + "1987-03-27": "Isra and Miraj (estimated)", "1987-05-01": "Labor Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr Holiday (estimated)", "1987-06-27": "Independence Day", "1987-06-28": "Independence Day Holiday", - "1987-08-03": "Arafat* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha Holiday* (*estimated)", - "1987-08-25": "Islamic New Year* (*estimated)", - "1987-11-03": "Prophet Muhammad's Birthday* (*estimated)", + "1987-08-03": "Arafat (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha Holiday (estimated)", + "1987-08-25": "Islamic New Year (estimated)", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-03-15": "Isra and Miraj* (*estimated)", + "1988-03-15": "Isra and Miraj (estimated)", "1988-05-01": "Labor Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr Holiday (estimated)", "1988-06-27": "Independence Day", "1988-06-28": "Independence Day Holiday", - "1988-07-22": "Arafat* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha Holiday* (*estimated)", - "1988-08-13": "Islamic New Year* (*estimated)", - "1988-10-22": "Prophet Muhammad's Birthday* (*estimated)", + "1988-07-22": "Arafat (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha Holiday (estimated)", + "1988-08-13": "Islamic New Year (estimated)", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", "1988-12-25": "Christmas Day", "1989-01-01": "New Year's Day", - "1989-03-05": "Isra and Miraj* (*estimated)", + "1989-03-05": "Isra and Miraj (estimated)", "1989-05-01": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr Holiday (estimated)", "1989-06-27": "Independence Day", "1989-06-28": "Independence Day Holiday", - "1989-07-12": "Arafat* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha Holiday* (*estimated)", - "1989-08-02": "Islamic New Year* (*estimated)", - "1989-10-11": "Prophet Muhammad's Birthday* (*estimated)", + "1989-07-12": "Arafat (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha Holiday (estimated)", + "1989-08-02": "Islamic New Year (estimated)", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", - "1990-02-22": "Isra and Miraj* (*estimated)", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", + "1990-02-22": "Isra and Miraj (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr Holiday (estimated)", "1990-05-01": "Labor Day", "1990-06-27": "Independence Day", "1990-06-28": "Independence Day Holiday", - "1990-07-01": "Arafat* (*estimated)", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha Holiday* (*estimated)", - "1990-07-23": "Islamic New Year* (*estimated)", - "1990-10-01": "Prophet Muhammad's Birthday* (*estimated)", + "1990-07-01": "Arafat (estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha Holiday (estimated)", + "1990-07-23": "Islamic New Year (estimated)", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-11": "Isra and Miraj* (*estimated)", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", + "1991-02-11": "Isra and Miraj (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr Holiday (estimated)", "1991-05-01": "Labor Day", - "1991-06-21": "Arafat* (*estimated)", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha Holiday* (*estimated)", + "1991-06-21": "Arafat (estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha Holiday (estimated)", "1991-06-27": "Independence Day", "1991-06-28": "Independence Day Holiday", - "1991-07-12": "Islamic New Year* (*estimated)", - "1991-09-20": "Prophet Muhammad's Birthday* (*estimated)", + "1991-07-12": "Islamic New Year (estimated)", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-01-31": "Isra and Miraj* (*estimated)", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", + "1992-01-31": "Isra and Miraj (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr Holiday (estimated)", "1992-05-01": "Labor Day", - "1992-06-10": "Arafat* (*estimated)", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha Holiday* (*estimated)", + "1992-06-10": "Arafat (estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha Holiday (estimated)", "1992-06-27": "Independence Day", "1992-06-28": "Independence Day Holiday", - "1992-07-01": "Islamic New Year* (*estimated)", - "1992-09-09": "Prophet Muhammad's Birthday* (*estimated)", + "1992-07-01": "Islamic New Year (estimated)", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", - "1993-01-20": "Isra and Miraj* (*estimated)", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", + "1993-01-20": "Isra and Miraj (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr Holiday (estimated)", "1993-05-01": "Labor Day", - "1993-05-30": "Arafat* (*estimated)", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha Holiday* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", + "1993-05-30": "Arafat (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha Holiday (estimated)", + "1993-06-21": "Islamic New Year (estimated)", "1993-06-27": "Independence Day", "1993-06-28": "Independence Day Holiday", - "1993-08-29": "Prophet Muhammad's Birthday* (*estimated)", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-01-09": "Isra and Miraj* (*estimated)", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", + "1994-01-09": "Isra and Miraj (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr Holiday (estimated)", "1994-05-01": "Labor Day", - "1994-05-19": "Arafat* (*estimated)", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha Holiday* (*estimated)", - "1994-06-10": "Islamic New Year* (*estimated)", + "1994-05-19": "Arafat (estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha Holiday (estimated)", + "1994-06-10": "Islamic New Year (estimated)", "1994-06-27": "Independence Day", "1994-06-28": "Independence Day Holiday", - "1994-08-19": "Prophet Muhammad's Birthday* (*estimated)", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", "1994-12-25": "Christmas Day", - "1994-12-29": "Isra and Miraj* (*estimated)", + "1994-12-29": "Isra and Miraj (estimated)", "1995-01-01": "New Year's Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr Holiday (estimated)", "1995-05-01": "Labor Day", - "1995-05-08": "Arafat* (*estimated)", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha Holiday* (*estimated)", - "1995-05-30": "Islamic New Year* (*estimated)", + "1995-05-08": "Arafat (estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha Holiday (estimated)", + "1995-05-30": "Islamic New Year (estimated)", "1995-06-27": "Independence Day", "1995-06-28": "Independence Day Holiday", - "1995-08-08": "Prophet Muhammad's Birthday* (*estimated)", - "1995-12-19": "Isra and Miraj* (*estimated)", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-12-19": "Isra and Miraj (estimated)", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", - "1996-04-26": "Arafat* (*estimated)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha Holiday* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr Holiday (estimated)", + "1996-04-26": "Arafat (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha Holiday (estimated)", "1996-05-01": "Labor Day", - "1996-05-18": "Islamic New Year* (*estimated)", + "1996-05-18": "Islamic New Year (estimated)", "1996-06-27": "Independence Day", "1996-06-28": "Independence Day Holiday", - "1996-07-27": "Prophet Muhammad's Birthday* (*estimated)", - "1996-12-08": "Isra and Miraj* (*estimated)", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-12-08": "Isra and Miraj (estimated)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", - "1997-04-16": "Arafat* (*estimated)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha Holiday* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr Holiday (estimated)", + "1997-04-16": "Arafat (estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha Holiday (estimated)", "1997-05-01": "Labor Day", - "1997-05-07": "Islamic New Year* (*estimated)", + "1997-05-07": "Islamic New Year (estimated)", "1997-06-27": "Independence Day", "1997-06-28": "Independence Day Holiday", - "1997-07-16": "Prophet Muhammad's Birthday* (*estimated)", - "1997-11-27": "Isra and Miraj* (*estimated)", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-11-27": "Isra and Miraj (estimated)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", - "1998-04-06": "Arafat* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha Holiday* (*estimated)", - "1998-04-27": "Islamic New Year* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr Holiday (estimated)", + "1998-04-06": "Arafat (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha Holiday (estimated)", + "1998-04-27": "Islamic New Year (estimated)", "1998-05-01": "Labor Day", "1998-06-27": "Independence Day", "1998-06-28": "Independence Day Holiday", - "1998-07-06": "Prophet Muhammad's Birthday* (*estimated)", - "1998-11-16": "Isra and Miraj* (*estimated)", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-11-16": "Isra and Miraj (estimated)", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", - "1999-03-26": "Arafat* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha Holiday* (*estimated)", - "1999-04-17": "Islamic New Year* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr Holiday (estimated)", + "1999-03-26": "Arafat (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha Holiday (estimated)", + "1999-04-17": "Islamic New Year (estimated)", "1999-05-01": "Labor Day", - "1999-06-26": "Prophet Muhammad's Birthday* (*estimated)", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", "1999-06-27": "Independence Day", "1999-06-28": "Independence Day Holiday", - "1999-11-05": "Isra and Miraj* (*estimated)", + "1999-11-05": "Isra and Miraj (estimated)", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", - "2000-03-15": "Arafat* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha Holiday* (*estimated)", - "2000-04-06": "Islamic New Year* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr Holiday (estimated)", + "2000-03-15": "Arafat (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha Holiday (estimated)", + "2000-04-06": "Islamic New Year (estimated)", "2000-05-01": "Labor Day", - "2000-06-14": "Prophet Muhammad's Birthday* (*estimated)", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", "2000-06-27": "Independence Day", "2000-06-28": "Independence Day Holiday", - "2000-10-24": "Isra and Miraj* (*estimated)", + "2000-10-24": "Isra and Miraj (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr Holiday (estimated)", "2001-01-01": "New Year's Day", - "2001-03-04": "Arafat* (*estimated)", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha Holiday* (*estimated)", - "2001-03-26": "Islamic New Year* (*estimated)", + "2001-03-04": "Arafat (estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha Holiday (estimated)", + "2001-03-26": "Islamic New Year (estimated)", "2001-05-01": "Labor Day", - "2001-06-04": "Prophet Muhammad's Birthday* (*estimated)", + "2001-06-04": "Prophet Muhammad's Birthday (estimated)", "2001-06-27": "Independence Day", "2001-06-28": "Independence Day Holiday", - "2001-10-14": "Isra and Miraj* (*estimated)", - "2001-12-16": "Eid al-Fitr* (*estimated)", - "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", + "2001-10-14": "Isra and Miraj (estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2001-12-17": "Eid al-Fitr Holiday (estimated)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", - "2002-02-21": "Arafat* (*estimated)", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha Holiday* (*estimated)", - "2002-03-15": "Islamic New Year* (*estimated)", + "2002-02-21": "Arafat (estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha Holiday (estimated)", + "2002-03-15": "Islamic New Year (estimated)", "2002-05-01": "Labor Day", - "2002-05-24": "Prophet Muhammad's Birthday* (*estimated)", + "2002-05-24": "Prophet Muhammad's Birthday (estimated)", "2002-06-27": "Independence Day", "2002-06-28": "Independence Day Holiday", - "2002-10-04": "Isra and Miraj* (*estimated)", - "2002-12-05": "Eid al-Fitr* (*estimated)", - "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", + "2002-10-04": "Isra and Miraj (estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", + "2002-12-06": "Eid al-Fitr Holiday (estimated)", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", - "2003-02-10": "Arafat* (*estimated)", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha Holiday* (*estimated)", - "2003-03-04": "Islamic New Year* (*estimated)", + "2003-02-10": "Arafat (estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha Holiday (estimated)", + "2003-03-04": "Islamic New Year (estimated)", "2003-05-01": "Labor Day", - "2003-05-13": "Prophet Muhammad's Birthday* (*estimated)", + "2003-05-13": "Prophet Muhammad's Birthday (estimated)", "2003-06-27": "Independence Day", "2003-06-28": "Independence Day Holiday", - "2003-09-24": "Isra and Miraj* (*estimated)", - "2003-11-25": "Eid al-Fitr* (*estimated)", - "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", + "2003-09-24": "Isra and Miraj (estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", + "2003-11-26": "Eid al-Fitr Holiday (estimated)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", - "2004-01-31": "Arafat* (*estimated)", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha Holiday* (*estimated)", - "2004-02-21": "Islamic New Year* (*estimated)", - "2004-05-01": "Labor Day; Prophet Muhammad's Birthday* (*estimated)", + "2004-01-31": "Arafat (estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha Holiday (estimated)", + "2004-02-21": "Islamic New Year (estimated)", + "2004-05-01": "Labor Day; Prophet Muhammad's Birthday (estimated)", "2004-06-27": "Independence Day", "2004-06-28": "Independence Day Holiday", - "2004-09-12": "Isra and Miraj* (*estimated)", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", + "2004-09-12": "Isra and Miraj (estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr Holiday (estimated)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", - "2005-01-20": "Arafat* (*estimated)", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha Holiday* (*estimated)", - "2005-02-10": "Islamic New Year* (*estimated)", - "2005-04-21": "Prophet Muhammad's Birthday* (*estimated)", + "2005-01-20": "Arafat (estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha Holiday (estimated)", + "2005-02-10": "Islamic New Year (estimated)", + "2005-04-21": "Prophet Muhammad's Birthday (estimated)", "2005-05-01": "Labor Day", "2005-06-27": "Independence Day", "2005-06-28": "Independence Day Holiday", - "2005-09-01": "Isra and Miraj* (*estimated)", - "2005-11-03": "Eid al-Fitr* (*estimated)", - "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", + "2005-09-01": "Isra and Miraj (estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", + "2005-11-04": "Eid al-Fitr Holiday (estimated)", "2005-12-25": "Christmas Day", "2006-01-01": "New Year's Day", - "2006-01-09": "Arafat* (*estimated)", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha Holiday* (*estimated)", - "2006-01-31": "Islamic New Year* (*estimated)", - "2006-04-10": "Prophet Muhammad's Birthday* (*estimated)", + "2006-01-09": "Arafat (estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha Holiday (estimated)", + "2006-01-31": "Islamic New Year (estimated)", + "2006-04-10": "Prophet Muhammad's Birthday (estimated)", "2006-05-01": "Labor Day", "2006-06-27": "Independence Day", "2006-06-28": "Independence Day Holiday", - "2006-08-21": "Isra and Miraj* (*estimated)", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", + "2006-08-21": "Isra and Miraj (estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-10-24": "Eid al-Fitr Holiday (estimated)", "2006-12-25": "Christmas Day", - "2006-12-30": "Arafat* (*estimated)", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", - "2007-01-20": "Islamic New Year* (*estimated)", - "2007-03-31": "Prophet Muhammad's Birthday* (*estimated)", + "2006-12-30": "Arafat (estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha Holiday (estimated); New Year's Day", + "2007-01-20": "Islamic New Year (estimated)", + "2007-03-31": "Prophet Muhammad's Birthday (estimated)", "2007-05-01": "Labor Day", "2007-06-27": "Independence Day", "2007-06-28": "Independence Day Holiday", - "2007-08-10": "Isra and Miraj* (*estimated)", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", - "2007-12-19": "Arafat* (*estimated)", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha Holiday* (*estimated)", + "2007-08-10": "Isra and Miraj (estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-14": "Eid al-Fitr Holiday (estimated)", + "2007-12-19": "Arafat (estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha Holiday (estimated)", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", - "2008-01-10": "Islamic New Year* (*estimated)", - "2008-03-20": "Prophet Muhammad's Birthday* (*estimated)", + "2008-01-10": "Islamic New Year (estimated)", + "2008-03-20": "Prophet Muhammad's Birthday (estimated)", "2008-05-01": "Labor Day", "2008-06-27": "Independence Day", "2008-06-28": "Independence Day Holiday", - "2008-07-30": "Isra and Miraj* (*estimated)", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", - "2008-12-07": "Arafat* (*estimated)", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha Holiday* (*estimated)", + "2008-07-30": "Isra and Miraj (estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-10-02": "Eid al-Fitr Holiday (estimated)", + "2008-12-07": "Arafat (estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha Holiday (estimated)", "2008-12-25": "Christmas Day", - "2008-12-29": "Islamic New Year* (*estimated)", + "2008-12-29": "Islamic New Year (estimated)", "2009-01-01": "New Year's Day", - "2009-03-09": "Prophet Muhammad's Birthday* (*estimated)", + "2009-03-09": "Prophet Muhammad's Birthday (estimated)", "2009-05-01": "Labor Day", "2009-06-27": "Independence Day", "2009-06-28": "Independence Day Holiday", - "2009-07-20": "Isra and Miraj* (*estimated)", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", - "2009-11-26": "Arafat* (*estimated)", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha Holiday* (*estimated)", - "2009-12-18": "Islamic New Year* (*estimated)", + "2009-07-20": "Isra and Miraj (estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr Holiday (estimated)", + "2009-11-26": "Arafat (estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha Holiday (estimated)", + "2009-12-18": "Islamic New Year (estimated)", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", - "2010-02-26": "Prophet Muhammad's Birthday* (*estimated)", + "2010-02-26": "Prophet Muhammad's Birthday (estimated)", "2010-05-01": "Labor Day", "2010-06-27": "Independence Day", "2010-06-28": "Independence Day Holiday", - "2010-07-09": "Isra and Miraj* (*estimated)", - "2010-09-10": "Eid al-Fitr* (*estimated)", - "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", - "2010-11-15": "Arafat* (*estimated)", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha Holiday* (*estimated)", - "2010-12-07": "Islamic New Year* (*estimated)", + "2010-07-09": "Isra and Miraj (estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", + "2010-09-11": "Eid al-Fitr Holiday (estimated)", + "2010-11-15": "Arafat (estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha Holiday (estimated)", + "2010-12-07": "Islamic New Year (estimated)", "2010-12-25": "Christmas Day", "2011-01-01": "New Year's Day", - "2011-02-15": "Prophet Muhammad's Birthday* (*estimated)", + "2011-02-15": "Prophet Muhammad's Birthday (estimated)", "2011-05-01": "Labor Day", "2011-06-27": "Independence Day", "2011-06-28": "Independence Day Holiday", - "2011-06-29": "Isra and Miraj* (*estimated)", - "2011-08-30": "Eid al-Fitr* (*estimated)", - "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", - "2011-11-05": "Arafat* (*estimated)", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha Holiday* (*estimated)", - "2011-11-26": "Islamic New Year* (*estimated)", + "2011-06-29": "Isra and Miraj (estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", + "2011-08-31": "Eid al-Fitr Holiday (estimated)", + "2011-11-05": "Arafat (estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha Holiday (estimated)", + "2011-11-26": "Islamic New Year (estimated)", "2011-12-25": "Christmas Day", "2012-01-01": "New Year's Day", - "2012-02-04": "Prophet Muhammad's Birthday* (*estimated)", + "2012-02-04": "Prophet Muhammad's Birthday (estimated)", "2012-05-01": "Labor Day", - "2012-06-17": "Isra and Miraj* (*estimated)", + "2012-06-17": "Isra and Miraj (estimated)", "2012-06-27": "Independence Day", "2012-06-28": "Independence Day Holiday", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", - "2012-10-25": "Arafat* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha Holiday* (*estimated)", - "2012-11-15": "Islamic New Year* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr Holiday (estimated)", + "2012-10-25": "Arafat (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha Holiday (estimated)", + "2012-11-15": "Islamic New Year (estimated)", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", - "2013-01-24": "Prophet Muhammad's Birthday* (*estimated)", + "2013-01-24": "Prophet Muhammad's Birthday (estimated)", "2013-05-01": "Labor Day", - "2013-06-06": "Isra and Miraj* (*estimated)", + "2013-06-06": "Isra and Miraj (estimated)", "2013-06-27": "Independence Day", "2013-06-28": "Independence Day Holiday", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", - "2013-10-14": "Arafat* (*estimated)", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha Holiday* (*estimated)", - "2013-11-04": "Islamic New Year* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-08-09": "Eid al-Fitr Holiday (estimated)", + "2013-10-14": "Arafat (estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha Holiday (estimated)", + "2013-11-04": "Islamic New Year (estimated)", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", - "2014-01-13": "Prophet Muhammad's Birthday* (*estimated)", + "2014-01-13": "Prophet Muhammad's Birthday (estimated)", "2014-05-01": "Labor Day", - "2014-05-26": "Isra and Miraj* (*estimated)", + "2014-05-26": "Isra and Miraj (estimated)", "2014-06-27": "Independence Day", "2014-06-28": "Independence Day Holiday", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", - "2014-10-03": "Arafat* (*estimated)", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha Holiday* (*estimated)", - "2014-10-25": "Islamic New Year* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-07-29": "Eid al-Fitr Holiday (estimated)", + "2014-10-03": "Arafat (estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha Holiday (estimated)", + "2014-10-25": "Islamic New Year (estimated)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", - "2015-01-03": "Prophet Muhammad's Birthday* (*estimated)", + "2015-01-03": "Prophet Muhammad's Birthday (estimated)", "2015-05-01": "Labor Day", - "2015-05-16": "Isra and Miraj* (*estimated)", + "2015-05-16": "Isra and Miraj (estimated)", "2015-06-27": "Independence Day", "2015-06-28": "Independence Day Holiday", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", - "2015-09-22": "Arafat* (*estimated)", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha Holiday* (*estimated)", - "2015-10-14": "Islamic New Year* (*estimated)", - "2015-12-23": "Prophet Muhammad's Birthday* (*estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-07-18": "Eid al-Fitr Holiday (estimated)", + "2015-09-22": "Arafat (estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha Holiday (estimated)", + "2015-10-14": "Islamic New Year (estimated)", + "2015-12-23": "Prophet Muhammad's Birthday (estimated)", "2015-12-25": "Christmas Day", "2016-01-01": "New Year's Day", "2016-05-01": "Labor Day", - "2016-05-04": "Isra and Miraj* (*estimated)", + "2016-05-04": "Isra and Miraj (estimated)", "2016-06-27": "Independence Day", "2016-06-28": "Independence Day Holiday", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", - "2016-09-10": "Arafat* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha Holiday* (*estimated)", - "2016-10-02": "Islamic New Year* (*estimated)", - "2016-12-11": "Prophet Muhammad's Birthday* (*estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-07-07": "Eid al-Fitr Holiday (estimated)", + "2016-09-10": "Arafat (estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha Holiday (estimated)", + "2016-10-02": "Islamic New Year (estimated)", + "2016-12-11": "Prophet Muhammad's Birthday (estimated)", "2016-12-25": "Christmas Day", "2017-01-01": "New Year's Day", - "2017-04-24": "Isra and Miraj* (*estimated)", + "2017-04-24": "Isra and Miraj (estimated)", "2017-05-01": "Labor Day", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-06-26": "Eid al-Fitr Holiday (estimated)", "2017-06-27": "Independence Day", "2017-06-28": "Independence Day Holiday", - "2017-08-31": "Arafat* (*estimated)", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha Holiday* (*estimated)", - "2017-09-21": "Islamic New Year* (*estimated)", - "2017-11-30": "Prophet Muhammad's Birthday* (*estimated)", + "2017-08-31": "Arafat (estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha Holiday (estimated)", + "2017-09-21": "Islamic New Year (estimated)", + "2017-11-30": "Prophet Muhammad's Birthday (estimated)", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", - "2018-04-13": "Isra and Miraj* (*estimated)", + "2018-04-13": "Isra and Miraj (estimated)", "2018-05-01": "Labor Day", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-06-16": "Eid al-Fitr Holiday (estimated)", "2018-06-27": "Independence Day", "2018-06-28": "Independence Day Holiday", - "2018-08-20": "Arafat* (*estimated)", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha Holiday* (*estimated)", - "2018-09-11": "Islamic New Year* (*estimated)", - "2018-11-20": "Prophet Muhammad's Birthday* (*estimated)", + "2018-08-20": "Arafat (estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha Holiday (estimated)", + "2018-09-11": "Islamic New Year (estimated)", + "2018-11-20": "Prophet Muhammad's Birthday (estimated)", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", - "2019-04-03": "Isra and Miraj* (*estimated)", + "2019-04-03": "Isra and Miraj (estimated)", "2019-05-01": "Labor Day", - "2019-06-04": "Eid al-Fitr* (*estimated)", - "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-04": "Eid al-Fitr (estimated)", + "2019-06-05": "Eid al-Fitr Holiday (estimated)", "2019-06-27": "Independence Day", "2019-06-28": "Independence Day Holiday", - "2019-08-10": "Arafat* (*estimated)", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha Holiday* (*estimated)", - "2019-08-31": "Islamic New Year* (*estimated)", - "2019-11-09": "Prophet Muhammad's Birthday* (*estimated)", + "2019-08-10": "Arafat (estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha Holiday (estimated)", + "2019-08-31": "Islamic New Year (estimated)", + "2019-11-09": "Prophet Muhammad's Birthday (estimated)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", - "2020-03-22": "Isra and Miraj* (*estimated)", + "2020-03-22": "Isra and Miraj (estimated)", "2020-05-01": "Labor Day", - "2020-05-24": "Eid al-Fitr* (*estimated)", - "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", + "2020-05-25": "Eid al-Fitr Holiday (estimated)", "2020-06-27": "Independence Day", "2020-06-28": "Independence Day Holiday", - "2020-07-30": "Arafat* (*estimated)", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha Holiday* (*estimated)", - "2020-08-20": "Islamic New Year* (*estimated)", - "2020-10-29": "Prophet Muhammad's Birthday* (*estimated)", + "2020-07-30": "Arafat (estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha Holiday (estimated)", + "2020-08-20": "Islamic New Year (estimated)", + "2020-10-29": "Prophet Muhammad's Birthday (estimated)", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", - "2021-03-11": "Isra and Miraj* (*estimated)", + "2021-03-11": "Isra and Miraj (estimated)", "2021-05-01": "Labor Day", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-05-14": "Eid al-Fitr Holiday (estimated)", "2021-06-27": "Independence Day", "2021-06-28": "Independence Day Holiday", - "2021-07-19": "Arafat* (*estimated)", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha Holiday* (*estimated)", - "2021-08-09": "Islamic New Year* (*estimated)", - "2021-10-18": "Prophet Muhammad's Birthday* (*estimated)", + "2021-07-19": "Arafat (estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha Holiday (estimated)", + "2021-08-09": "Islamic New Year (estimated)", + "2021-10-18": "Prophet Muhammad's Birthday (estimated)", "2021-12-25": "Christmas Day", "2022-01-01": "New Year's Day", - "2022-02-28": "Isra and Miraj* (*estimated)", + "2022-02-28": "Isra and Miraj (estimated)", "2022-05-01": "Labor Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", - "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", + "2022-05-03": "Eid al-Fitr Holiday (estimated)", "2022-06-27": "Independence Day", "2022-06-28": "Independence Day Holiday", - "2022-07-08": "Arafat* (*estimated)", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha Holiday* (*estimated)", - "2022-07-30": "Islamic New Year* (*estimated)", - "2022-10-08": "Prophet Muhammad's Birthday* (*estimated)", + "2022-07-08": "Arafat (estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha Holiday (estimated)", + "2022-07-30": "Islamic New Year (estimated)", + "2022-10-08": "Prophet Muhammad's Birthday (estimated)", "2022-12-25": "Christmas Day", "2023-01-01": "New Year's Day", - "2023-02-18": "Isra and Miraj* (*estimated)", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", + "2023-02-18": "Isra and Miraj (estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", + "2023-04-22": "Eid al-Fitr Holiday (estimated)", "2023-05-01": "Labor Day", - "2023-06-27": "Arafat* (*estimated); Independence Day", - "2023-06-28": "Eid al-Adha* (*estimated); Independence Day Holiday", - "2023-06-29": "Eid al-Adha Holiday* (*estimated)", - "2023-07-19": "Islamic New Year* (*estimated)", - "2023-09-27": "Prophet Muhammad's Birthday* (*estimated)", + "2023-06-27": "Arafat (estimated); Independence Day", + "2023-06-28": "Eid al-Adha (estimated); Independence Day Holiday", + "2023-06-29": "Eid al-Adha Holiday (estimated)", + "2023-07-19": "Islamic New Year (estimated)", + "2023-09-27": "Prophet Muhammad's Birthday (estimated)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-08": "Isra and Miraj* (*estimated)", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", + "2024-02-08": "Isra and Miraj (estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr Holiday (estimated)", "2024-05-01": "Labor Day", - "2024-06-15": "Arafat* (*estimated)", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha Holiday* (*estimated)", + "2024-06-15": "Arafat (estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha Holiday (estimated)", "2024-06-27": "Independence Day", "2024-06-28": "Independence Day Holiday", - "2024-07-07": "Islamic New Year* (*estimated)", - "2024-09-15": "Prophet Muhammad's Birthday* (*estimated)", + "2024-07-07": "Islamic New Year (estimated)", + "2024-09-15": "Prophet Muhammad's Birthday (estimated)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-27": "Isra and Miraj* (*estimated)", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", + "2025-01-27": "Isra and Miraj (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr Holiday (estimated)", "2025-05-01": "Labor Day", - "2025-06-05": "Arafat* (*estimated)", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha Holiday* (*estimated)", - "2025-06-26": "Islamic New Year* (*estimated)", + "2025-06-05": "Arafat (estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha Holiday (estimated)", + "2025-06-26": "Islamic New Year (estimated)", "2025-06-27": "Independence Day", "2025-06-28": "Independence Day Holiday", - "2025-09-04": "Prophet Muhammad's Birthday* (*estimated)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", - "2026-01-16": "Isra and Miraj* (*estimated)", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", + "2026-01-16": "Isra and Miraj (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr Holiday (estimated)", "2026-05-01": "Labor Day", - "2026-05-26": "Arafat* (*estimated)", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha Holiday* (*estimated)", - "2026-06-16": "Islamic New Year* (*estimated)", + "2026-05-26": "Arafat (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha Holiday (estimated)", + "2026-06-16": "Islamic New Year (estimated)", "2026-06-27": "Independence Day", "2026-06-28": "Independence Day Holiday", - "2026-08-25": "Prophet Muhammad's Birthday* (*estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", - "2027-01-05": "Isra and Miraj* (*estimated)", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", + "2027-01-05": "Isra and Miraj (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr Holiday (estimated)", "2027-05-01": "Labor Day", - "2027-05-15": "Arafat* (*estimated)", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha Holiday* (*estimated)", - "2027-06-06": "Islamic New Year* (*estimated)", + "2027-05-15": "Arafat (estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha Holiday (estimated)", + "2027-06-06": "Islamic New Year (estimated)", "2027-06-27": "Independence Day", "2027-06-28": "Independence Day Holiday", - "2027-08-14": "Prophet Muhammad's Birthday* (*estimated)", - "2027-12-25": "Christmas Day; Isra and Miraj* (*estimated)", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-12-25": "Christmas Day; Isra and Miraj (estimated)", "2028-01-01": "New Year's Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr Holiday (estimated)", "2028-05-01": "Labor Day", - "2028-05-04": "Arafat* (*estimated)", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha Holiday* (*estimated)", - "2028-05-25": "Islamic New Year* (*estimated)", + "2028-05-04": "Arafat (estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha Holiday (estimated)", + "2028-05-25": "Islamic New Year (estimated)", "2028-06-27": "Independence Day", "2028-06-28": "Independence Day Holiday", - "2028-08-03": "Prophet Muhammad's Birthday* (*estimated)", - "2028-12-14": "Isra and Miraj* (*estimated)", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-12-14": "Isra and Miraj (estimated)", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", - "2029-04-23": "Arafat* (*estimated)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha Holiday* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr Holiday (estimated)", + "2029-04-23": "Arafat (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha Holiday (estimated)", "2029-05-01": "Labor Day", - "2029-05-14": "Islamic New Year* (*estimated)", + "2029-05-14": "Islamic New Year (estimated)", "2029-06-27": "Independence Day", "2029-06-28": "Independence Day Holiday", - "2029-07-24": "Prophet Muhammad's Birthday* (*estimated)", - "2029-12-03": "Isra and Miraj* (*estimated)", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-12-03": "Isra and Miraj (estimated)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", - "2030-04-12": "Arafat* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha Holiday* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr Holiday (estimated)", + "2030-04-12": "Arafat (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha Holiday (estimated)", "2030-05-01": "Labor Day", - "2030-05-03": "Islamic New Year* (*estimated)", + "2030-05-03": "Islamic New Year (estimated)", "2030-06-27": "Independence Day", "2030-06-28": "Independence Day Holiday", - "2030-07-13": "Prophet Muhammad's Birthday* (*estimated)", - "2030-11-23": "Isra and Miraj* (*estimated)", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-11-23": "Isra and Miraj (estimated)", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", - "2031-04-01": "Arafat* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha Holiday* (*estimated)", - "2031-04-23": "Islamic New Year* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr Holiday (estimated)", + "2031-04-01": "Arafat (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha Holiday (estimated)", + "2031-04-23": "Islamic New Year (estimated)", "2031-05-01": "Labor Day", "2031-06-27": "Independence Day", "2031-06-28": "Independence Day Holiday", - "2031-07-02": "Prophet Muhammad's Birthday* (*estimated)", - "2031-11-12": "Isra and Miraj* (*estimated)", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-11-12": "Isra and Miraj (estimated)", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", - "2032-03-21": "Arafat* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha Holiday* (*estimated)", - "2032-04-11": "Islamic New Year* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr Holiday (estimated)", + "2032-03-21": "Arafat (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha Holiday (estimated)", + "2032-04-11": "Islamic New Year (estimated)", "2032-05-01": "Labor Day", - "2032-06-20": "Prophet Muhammad's Birthday* (*estimated)", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", "2032-06-27": "Independence Day", "2032-06-28": "Independence Day Holiday", - "2032-11-01": "Isra and Miraj* (*estimated)", + "2032-11-01": "Isra and Miraj (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", - "2033-03-10": "Arafat* (*estimated)", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha Holiday* (*estimated)", - "2033-04-01": "Islamic New Year* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr Holiday (estimated)", + "2033-03-10": "Arafat (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha Holiday (estimated)", + "2033-04-01": "Islamic New Year (estimated)", "2033-05-01": "Labor Day", - "2033-06-09": "Prophet Muhammad's Birthday* (*estimated)", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", "2033-06-27": "Independence Day", "2033-06-28": "Independence Day Holiday", - "2033-10-21": "Isra and Miraj* (*estimated)", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", + "2033-10-21": "Isra and Miraj (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr Holiday (estimated)", "2033-12-25": "Christmas Day", "2034-01-01": "New Year's Day", - "2034-02-28": "Arafat* (*estimated)", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha Holiday* (*estimated)", - "2034-03-21": "Islamic New Year* (*estimated)", + "2034-02-28": "Arafat (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha Holiday (estimated)", + "2034-03-21": "Islamic New Year (estimated)", "2034-05-01": "Labor Day", - "2034-05-30": "Prophet Muhammad's Birthday* (*estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", "2034-06-27": "Independence Day", "2034-06-28": "Independence Day Holiday", - "2034-10-10": "Isra and Miraj* (*estimated)", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", + "2034-10-10": "Isra and Miraj (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr Holiday (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-17": "Arafat* (*estimated)", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha Holiday* (*estimated)", - "2035-03-11": "Islamic New Year* (*estimated)", + "2035-02-17": "Arafat (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha Holiday (estimated)", + "2035-03-11": "Islamic New Year (estimated)", "2035-05-01": "Labor Day", - "2035-05-20": "Prophet Muhammad's Birthday* (*estimated)", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", "2035-06-27": "Independence Day", "2035-06-28": "Independence Day Holiday", - "2035-09-29": "Isra and Miraj* (*estimated)", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", + "2035-09-29": "Isra and Miraj (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr Holiday (estimated)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-02-06": "Arafat* (*estimated)", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha Holiday* (*estimated)", - "2036-02-28": "Islamic New Year* (*estimated)", + "2036-02-06": "Arafat (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha Holiday (estimated)", + "2036-02-28": "Islamic New Year (estimated)", "2036-05-01": "Labor Day", - "2036-05-08": "Prophet Muhammad's Birthday* (*estimated)", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", "2036-06-27": "Independence Day", "2036-06-28": "Independence Day Holiday", - "2036-09-18": "Isra and Miraj* (*estimated)", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", + "2036-09-18": "Isra and Miraj (estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr Holiday (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-25": "Arafat* (*estimated)", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha Holiday* (*estimated)", - "2037-02-16": "Islamic New Year* (*estimated)", - "2037-04-28": "Prophet Muhammad's Birthday* (*estimated)", + "2037-01-25": "Arafat (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha Holiday (estimated)", + "2037-02-16": "Islamic New Year (estimated)", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", "2037-05-01": "Labor Day", "2037-06-27": "Independence Day", "2037-06-28": "Independence Day Holiday", - "2037-09-07": "Isra and Miraj* (*estimated)", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", + "2037-09-07": "Isra and Miraj (estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr Holiday (estimated)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-15": "Arafat* (*estimated)", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha Holiday* (*estimated)", - "2038-02-05": "Islamic New Year* (*estimated)", - "2038-04-17": "Prophet Muhammad's Birthday* (*estimated)", + "2038-01-15": "Arafat (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha Holiday (estimated)", + "2038-02-05": "Islamic New Year (estimated)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", "2038-05-01": "Labor Day", "2038-06-27": "Independence Day", "2038-06-28": "Independence Day Holiday", - "2038-08-28": "Isra and Miraj* (*estimated)", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", + "2038-08-28": "Isra and Miraj (estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr Holiday (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-04": "Arafat* (*estimated)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha Holiday* (*estimated)", - "2039-01-26": "Islamic New Year* (*estimated)", - "2039-04-06": "Prophet Muhammad's Birthday* (*estimated)", + "2039-01-04": "Arafat (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha Holiday (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", "2039-05-01": "Labor Day", "2039-06-27": "Independence Day", "2039-06-28": "Independence Day Holiday", - "2039-08-17": "Isra and Miraj* (*estimated)", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", - "2039-12-25": "Arafat* (*estimated); Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha Holiday* (*estimated)", + "2039-08-17": "Isra and Miraj (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr Holiday (estimated)", + "2039-12-25": "Arafat (estimated); Christmas Day", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha Holiday (estimated)", "2040-01-01": "New Year's Day", - "2040-01-15": "Islamic New Year* (*estimated)", - "2040-03-25": "Prophet Muhammad's Birthday* (*estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", "2040-05-01": "Labor Day", "2040-06-27": "Independence Day", "2040-06-28": "Independence Day Holiday", - "2040-08-05": "Isra and Miraj* (*estimated)", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", - "2040-12-13": "Arafat* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha Holiday* (*estimated)", + "2040-08-05": "Isra and Miraj (estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr Holiday (estimated)", + "2040-12-13": "Arafat (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha Holiday (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", - "2041-03-15": "Prophet Muhammad's Birthday* (*estimated)", + "2041-01-04": "Islamic New Year (estimated)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", "2041-05-01": "Labor Day", "2041-06-27": "Independence Day", "2041-06-28": "Independence Day Holiday", - "2041-07-25": "Isra and Miraj* (*estimated)", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", - "2041-12-03": "Arafat* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha Holiday* (*estimated)", - "2041-12-24": "Islamic New Year* (*estimated)", + "2041-07-25": "Isra and Miraj (estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr Holiday (estimated)", + "2041-12-03": "Arafat (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha Holiday (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", - "2042-03-04": "Prophet Muhammad's Birthday* (*estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", "2042-05-01": "Labor Day", "2042-06-27": "Independence Day", "2042-06-28": "Independence Day Holiday", - "2042-07-15": "Isra and Miraj* (*estimated)", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", - "2042-11-22": "Arafat* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha Holiday* (*estimated)", - "2042-12-14": "Islamic New Year* (*estimated)", + "2042-07-15": "Isra and Miraj (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr Holiday (estimated)", + "2042-11-22": "Arafat (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha Holiday (estimated)", + "2042-12-14": "Islamic New Year (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-22": "Prophet Muhammad's Birthday* (*estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", "2043-05-01": "Labor Day", "2043-06-27": "Independence Day", "2043-06-28": "Independence Day Holiday", - "2043-07-04": "Isra and Miraj* (*estimated)", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", - "2043-11-11": "Arafat* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha Holiday* (*estimated)", - "2043-12-03": "Islamic New Year* (*estimated)", + "2043-07-04": "Isra and Miraj (estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr Holiday (estimated)", + "2043-11-11": "Arafat (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha Holiday (estimated)", + "2043-12-03": "Islamic New Year (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-02-11": "Prophet Muhammad's Birthday* (*estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", "2044-05-01": "Labor Day", - "2044-06-23": "Isra and Miraj* (*estimated)", + "2044-06-23": "Isra and Miraj (estimated)", "2044-06-27": "Independence Day", "2044-06-28": "Independence Day Holiday", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", - "2044-10-30": "Arafat* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha Holiday* (*estimated)", - "2044-11-21": "Islamic New Year* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr Holiday (estimated)", + "2044-10-30": "Arafat (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha Holiday (estimated)", + "2044-11-21": "Islamic New Year (estimated)", "2044-12-25": "Christmas Day", "2045-01-01": "New Year's Day", - "2045-01-30": "Prophet Muhammad's Birthday* (*estimated)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", "2045-05-01": "Labor Day", - "2045-06-13": "Isra and Miraj* (*estimated)", + "2045-06-13": "Isra and Miraj (estimated)", "2045-06-27": "Independence Day", "2045-06-28": "Independence Day Holiday", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", - "2045-10-20": "Arafat* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha Holiday* (*estimated)", - "2045-11-10": "Islamic New Year* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr Holiday (estimated)", + "2045-10-20": "Arafat (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha Holiday (estimated)", + "2045-11-10": "Islamic New Year (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Prophet Muhammad's Birthday* (*estimated)", + "2046-01-19": "Prophet Muhammad's Birthday (estimated)", "2046-05-01": "Labor Day", - "2046-06-02": "Isra and Miraj* (*estimated)", + "2046-06-02": "Isra and Miraj (estimated)", "2046-06-27": "Independence Day", "2046-06-28": "Independence Day Holiday", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", - "2046-10-09": "Arafat* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha Holiday* (*estimated)", - "2046-10-31": "Islamic New Year* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr Holiday (estimated)", + "2046-10-09": "Arafat (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha Holiday (estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Prophet Muhammad's Birthday* (*estimated)", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", "2047-05-01": "Labor Day", - "2047-05-22": "Isra and Miraj* (*estimated)", + "2047-05-22": "Isra and Miraj (estimated)", "2047-06-27": "Independence Day", "2047-06-28": "Independence Day Holiday", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", - "2047-09-29": "Arafat* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha Holiday* (*estimated)", - "2047-10-20": "Islamic New Year* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr Holiday (estimated)", + "2047-09-29": "Arafat (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha Holiday (estimated)", + "2047-10-20": "Islamic New Year (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Prophet Muhammad's Birthday* (*estimated)", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", "2048-01-01": "New Year's Day", "2048-05-01": "Labor Day", - "2048-05-10": "Isra and Miraj* (*estimated)", + "2048-05-10": "Isra and Miraj (estimated)", "2048-06-27": "Independence Day", "2048-06-28": "Independence Day Holiday", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", - "2048-09-18": "Arafat* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha Holiday* (*estimated)", - "2048-10-09": "Islamic New Year* (*estimated)", - "2048-12-18": "Prophet Muhammad's Birthday* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr Holiday (estimated)", + "2048-09-18": "Arafat (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha Holiday (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-04-29": "Isra and Miraj* (*estimated)", + "2049-04-29": "Isra and Miraj (estimated)", "2049-05-01": "Labor Day", "2049-06-27": "Independence Day", "2049-06-28": "Independence Day Holiday", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", - "2049-09-07": "Arafat* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha Holiday* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", - "2049-12-07": "Prophet Muhammad's Birthday* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr Holiday (estimated)", + "2049-09-07": "Arafat (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha Holiday (estimated)", + "2049-09-28": "Islamic New Year (estimated)", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", - "2050-04-19": "Isra and Miraj* (*estimated)", + "2050-04-19": "Isra and Miraj (estimated)", "2050-05-01": "Labor Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr Holiday (estimated)", "2050-06-27": "Independence Day", "2050-06-28": "Independence Day Holiday", - "2050-08-27": "Arafat* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha Holiday* (*estimated)", - "2050-09-17": "Islamic New Year* (*estimated)", - "2050-11-26": "Prophet Muhammad's Birthday* (*estimated)", + "2050-08-27": "Arafat (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha Holiday (estimated)", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/DZ_COMMON.json b/snapshots/countries/DZ_COMMON.json index c6351c0bc..74610aea3 100644 --- a/snapshots/countries/DZ_COMMON.json +++ b/snapshots/countries/DZ_COMMON.json @@ -1,1191 +1,1191 @@ { - "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-01-01": "New Year's Day; Prophet's Birthday (estimated)", "1950-05-01": "Labor Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha Holiday* (*estimated)", - "1950-10-13": "Islamic New Year* (*estimated)", - "1950-10-22": "Ashura* (*estimated)", - "1950-12-22": "Prophet's Birthday* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr Holiday (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha Holiday (estimated)", + "1950-10-13": "Islamic New Year (estimated)", + "1950-10-22": "Ashura (estimated)", + "1950-12-22": "Prophet's Birthday (estimated)", "1951-01-01": "New Year's Day", "1951-05-01": "Labor Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha Holiday* (*estimated)", - "1951-10-02": "Islamic New Year* (*estimated)", - "1951-10-11": "Ashura* (*estimated)", - "1951-12-11": "Prophet's Birthday* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Eid al-Fitr Holiday (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha Holiday (estimated)", + "1951-10-02": "Islamic New Year (estimated)", + "1951-10-11": "Ashura (estimated)", + "1951-12-11": "Prophet's Birthday (estimated)", "1952-01-01": "New Year's Day", "1952-05-01": "Labor Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha Holiday* (*estimated)", - "1952-09-21": "Islamic New Year* (*estimated)", - "1952-09-30": "Ashura* (*estimated)", - "1952-11-30": "Prophet's Birthday* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr Holiday (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha Holiday (estimated)", + "1952-09-21": "Islamic New Year (estimated)", + "1952-09-30": "Ashura (estimated)", + "1952-11-30": "Prophet's Birthday (estimated)", "1953-01-01": "New Year's Day", "1953-05-01": "Labor Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha Holiday* (*estimated)", - "1953-09-10": "Islamic New Year* (*estimated)", - "1953-09-19": "Ashura* (*estimated)", - "1953-11-19": "Prophet's Birthday* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr Holiday (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha Holiday (estimated)", + "1953-09-10": "Islamic New Year (estimated)", + "1953-09-19": "Ashura (estimated)", + "1953-11-19": "Prophet's Birthday (estimated)", "1954-01-01": "New Year's Day", "1954-05-01": "Labor Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha Holiday* (*estimated)", - "1954-08-30": "Islamic New Year* (*estimated)", - "1954-09-08": "Ashura* (*estimated)", - "1954-11-08": "Prophet's Birthday* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr Holiday (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha Holiday (estimated)", + "1954-08-30": "Islamic New Year (estimated)", + "1954-09-08": "Ashura (estimated)", + "1954-11-08": "Prophet's Birthday (estimated)", "1955-01-01": "New Year's Day", "1955-05-01": "Labor Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha Holiday* (*estimated)", - "1955-08-20": "Islamic New Year* (*estimated)", - "1955-08-29": "Ashura* (*estimated)", - "1955-10-29": "Prophet's Birthday* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr Holiday (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha Holiday (estimated)", + "1955-08-20": "Islamic New Year (estimated)", + "1955-08-29": "Ashura (estimated)", + "1955-10-29": "Prophet's Birthday (estimated)", "1956-01-01": "New Year's Day", "1956-05-01": "Labor Day", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha Holiday* (*estimated)", - "1956-08-08": "Islamic New Year* (*estimated)", - "1956-08-17": "Ashura* (*estimated)", - "1956-10-17": "Prophet's Birthday* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr Holiday (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha Holiday (estimated)", + "1956-08-08": "Islamic New Year (estimated)", + "1956-08-17": "Ashura (estimated)", + "1956-10-17": "Prophet's Birthday (estimated)", "1957-01-01": "New Year's Day", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", - "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha Holiday* (*estimated)", - "1957-07-28": "Islamic New Year* (*estimated)", - "1957-08-06": "Ashura* (*estimated)", - "1957-10-06": "Prophet's Birthday* (*estimated)", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", + "1957-05-02": "Eid al-Fitr Holiday (estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha Holiday (estimated)", + "1957-07-28": "Islamic New Year (estimated)", + "1957-08-06": "Ashura (estimated)", + "1957-10-06": "Prophet's Birthday (estimated)", "1958-01-01": "New Year's Day", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr Holiday (estimated)", "1958-05-01": "Labor Day", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha Holiday* (*estimated)", - "1958-07-18": "Islamic New Year* (*estimated)", - "1958-07-27": "Ashura* (*estimated)", - "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha Holiday (estimated)", + "1958-07-18": "Islamic New Year (estimated)", + "1958-07-27": "Ashura (estimated)", + "1958-09-26": "Prophet's Birthday (estimated)", "1959-01-01": "New Year's Day", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr Holiday (estimated)", "1959-05-01": "Labor Day", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha Holiday* (*estimated)", - "1959-07-07": "Islamic New Year* (*estimated)", - "1959-07-16": "Ashura* (*estimated)", - "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha Holiday (estimated)", + "1959-07-07": "Islamic New Year (estimated)", + "1959-07-16": "Ashura (estimated)", + "1959-09-15": "Prophet's Birthday (estimated)", "1960-01-01": "New Year's Day", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr Holiday (estimated)", "1960-05-01": "Labor Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha Holiday* (*estimated)", - "1960-06-25": "Islamic New Year* (*estimated)", - "1960-07-04": "Ashura* (*estimated)", - "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha Holiday (estimated)", + "1960-06-25": "Islamic New Year (estimated)", + "1960-07-04": "Ashura (estimated)", + "1960-09-03": "Prophet's Birthday (estimated)", "1961-01-01": "New Year's Day", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr Holiday (estimated)", "1961-05-01": "Labor Day", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha Holiday* (*estimated)", - "1961-06-14": "Islamic New Year* (*estimated)", - "1961-06-23": "Ashura* (*estimated)", - "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha Holiday (estimated)", + "1961-06-14": "Islamic New Year (estimated)", + "1961-06-23": "Ashura (estimated)", + "1961-08-23": "Prophet's Birthday (estimated)", "1962-01-01": "New Year's Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr Holiday (estimated)", "1962-05-01": "Labor Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha Holiday* (*estimated)", - "1962-06-03": "Islamic New Year* (*estimated)", - "1962-06-12": "Ashura* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha Holiday (estimated)", + "1962-06-03": "Islamic New Year (estimated)", + "1962-06-12": "Ashura (estimated)", "1962-07-05": "Independence Day", - "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-08-12": "Prophet's Birthday (estimated)", "1963-01-01": "New Year's Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr Holiday (estimated)", "1963-05-01": "Labor Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha Holiday* (*estimated)", - "1963-05-24": "Islamic New Year* (*estimated)", - "1963-06-02": "Ashura* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha Holiday (estimated)", + "1963-05-24": "Islamic New Year (estimated)", + "1963-06-02": "Ashura (estimated)", "1963-07-05": "Independence Day", - "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-08-02": "Prophet's Birthday (estimated)", "1963-11-01": "Revolution Day", "1964-01-01": "New Year's Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha Holiday* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr Holiday (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha Holiday (estimated)", "1964-05-01": "Labor Day", - "1964-05-12": "Islamic New Year* (*estimated)", - "1964-05-21": "Ashura* (*estimated)", + "1964-05-12": "Islamic New Year (estimated)", + "1964-05-21": "Ashura (estimated)", "1964-07-05": "Independence Day", - "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-07-21": "Prophet's Birthday (estimated)", "1964-11-01": "Revolution Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha Holiday* (*estimated)", - "1965-05-01": "Islamic New Year* (*estimated); Labor Day", - "1965-05-10": "Ashura* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-02-03": "Eid al-Fitr Holiday (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha Holiday (estimated)", + "1965-05-01": "Islamic New Year (estimated); Labor Day", + "1965-05-10": "Ashura (estimated)", "1965-07-05": "Independence Day", - "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-07-10": "Prophet's Birthday (estimated)", "1965-11-01": "Revolution Day", "1966-01-01": "New Year's Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha Holiday* (*estimated)", - "1966-04-21": "Islamic New Year* (*estimated)", - "1966-04-30": "Ashura* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr Holiday (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha Holiday (estimated)", + "1966-04-21": "Islamic New Year (estimated)", + "1966-04-30": "Ashura (estimated)", "1966-05-01": "Labor Day", - "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-07-01": "Prophet's Birthday (estimated)", "1966-07-05": "Independence Day", "1966-11-01": "Revolution Day", "1967-01-01": "New Year's Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha Holiday* (*estimated)", - "1967-04-11": "Islamic New Year* (*estimated)", - "1967-04-20": "Ashura* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr Holiday (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha Holiday (estimated)", + "1967-04-11": "Islamic New Year (estimated)", + "1967-04-20": "Ashura (estimated)", "1967-05-01": "Labor Day", - "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-06-19": "Prophet's Birthday (estimated)", "1967-07-05": "Independence Day", "1967-11-01": "Revolution Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha Holiday* (*estimated)", - "1968-03-30": "Islamic New Year* (*estimated)", - "1968-04-08": "Ashura* (*estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha Holiday (estimated)", + "1968-03-30": "Islamic New Year (estimated)", + "1968-04-08": "Ashura (estimated)", "1968-05-01": "Labor Day", - "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-06-08": "Prophet's Birthday (estimated)", "1968-07-05": "Independence Day", "1968-11-01": "Revolution Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr Holiday (estimated)", "1969-01-01": "New Year's Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha Holiday* (*estimated)", - "1969-03-19": "Islamic New Year* (*estimated)", - "1969-03-28": "Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha Holiday (estimated)", + "1969-03-19": "Islamic New Year (estimated)", + "1969-03-28": "Ashura (estimated)", "1969-05-01": "Labor Day", - "1969-05-28": "Prophet's Birthday* (*estimated)", + "1969-05-28": "Prophet's Birthday (estimated)", "1969-07-05": "Independence Day", "1969-11-01": "Revolution Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr Holiday (estimated)", "1970-01-01": "New Year's Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha Holiday* (*estimated)", - "1970-03-09": "Islamic New Year* (*estimated)", - "1970-03-18": "Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha Holiday (estimated)", + "1970-03-09": "Islamic New Year (estimated)", + "1970-03-18": "Ashura (estimated)", "1970-05-01": "Labor Day", - "1970-05-18": "Prophet's Birthday* (*estimated)", + "1970-05-18": "Prophet's Birthday (estimated)", "1970-07-05": "Independence Day", "1970-11-01": "Revolution Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr Holiday (estimated)", "1971-01-01": "New Year's Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha Holiday* (*estimated)", - "1971-02-26": "Islamic New Year* (*estimated)", - "1971-03-07": "Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha Holiday (estimated)", + "1971-02-26": "Islamic New Year (estimated)", + "1971-03-07": "Ashura (estimated)", "1971-05-01": "Labor Day", - "1971-05-07": "Prophet's Birthday* (*estimated)", + "1971-05-07": "Prophet's Birthday (estimated)", "1971-07-05": "Independence Day", "1971-11-01": "Revolution Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr Holiday (estimated)", "1972-01-01": "New Year's Day", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha Holiday* (*estimated)", - "1972-02-16": "Islamic New Year* (*estimated)", - "1972-02-25": "Ashura* (*estimated)", - "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha Holiday (estimated)", + "1972-02-16": "Islamic New Year (estimated)", + "1972-02-25": "Ashura (estimated)", + "1972-04-25": "Prophet's Birthday (estimated)", "1972-05-01": "Labor Day", "1972-07-05": "Independence Day", "1972-11-01": "Revolution Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr Holiday (estimated)", "1973-01-01": "New Year's Day", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha Holiday* (*estimated)", - "1973-02-04": "Islamic New Year* (*estimated)", - "1973-02-13": "Ashura* (*estimated)", - "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha Holiday (estimated)", + "1973-02-04": "Islamic New Year (estimated)", + "1973-02-13": "Ashura (estimated)", + "1973-04-15": "Prophet's Birthday (estimated)", "1973-05-01": "Labor Day", "1973-07-05": "Independence Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr Holiday (estimated)", "1973-11-01": "Revolution Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha Holiday* (*estimated)", - "1974-01-24": "Islamic New Year* (*estimated)", - "1974-02-02": "Ashura* (*estimated)", - "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha Holiday (estimated)", + "1974-01-24": "Islamic New Year (estimated)", + "1974-02-02": "Ashura (estimated)", + "1974-04-04": "Prophet's Birthday (estimated)", "1974-05-01": "Labor Day", "1974-07-05": "Independence Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr Holiday (estimated)", "1974-11-01": "Revolution Day", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Eid al-Adha Holiday* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Eid al-Adha Holiday (estimated)", "1975-01-01": "New Year's Day", - "1975-01-13": "Islamic New Year* (*estimated)", - "1975-01-22": "Ashura* (*estimated)", - "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-01-13": "Islamic New Year (estimated)", + "1975-01-22": "Ashura (estimated)", + "1975-03-24": "Prophet's Birthday (estimated)", "1975-05-01": "Labor Day", "1975-07-05": "Independence Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr Holiday (estimated)", "1975-11-01": "Revolution Day", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha Holiday* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha Holiday (estimated)", "1976-01-01": "New Year's Day", - "1976-01-02": "Islamic New Year* (*estimated)", - "1976-01-11": "Ashura* (*estimated)", - "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-01-02": "Islamic New Year (estimated)", + "1976-01-11": "Ashura (estimated)", + "1976-03-12": "Prophet's Birthday (estimated)", "1976-05-01": "Labor Day", "1976-07-05": "Independence Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr Holiday (estimated)", "1976-11-01": "Revolution Day", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha Holiday* (*estimated)", - "1976-12-22": "Islamic New Year* (*estimated)", - "1976-12-31": "Ashura* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha Holiday (estimated)", + "1976-12-22": "Islamic New Year (estimated)", + "1976-12-31": "Ashura (estimated)", "1977-01-01": "New Year's Day", - "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-03-02": "Prophet's Birthday (estimated)", "1977-05-01": "Labor Day", "1977-07-05": "Independence Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr Holiday (estimated)", "1977-11-01": "Revolution Day", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha Holiday* (*estimated)", - "1977-12-11": "Islamic New Year* (*estimated)", - "1977-12-20": "Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha Holiday (estimated)", + "1977-12-11": "Islamic New Year (estimated)", + "1977-12-20": "Ashura (estimated)", "1978-01-01": "New Year's Day", - "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-02-19": "Prophet's Birthday (estimated)", "1978-05-01": "Labor Day", "1978-07-05": "Independence Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr Holiday (estimated)", "1978-11-01": "Revolution Day", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha Holiday* (*estimated)", - "1978-12-01": "Islamic New Year* (*estimated)", - "1978-12-10": "Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha Holiday (estimated)", + "1978-12-01": "Islamic New Year (estimated)", + "1978-12-10": "Ashura (estimated)", "1979-01-01": "New Year's Day", - "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-02-09": "Prophet's Birthday (estimated)", "1979-05-01": "Labor Day", "1979-07-05": "Independence Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha Holiday* (*estimated); Revolution Day", - "1979-11-20": "Islamic New Year* (*estimated)", - "1979-11-29": "Ashura* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr Holiday (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha Holiday (estimated); Revolution Day", + "1979-11-20": "Islamic New Year (estimated)", + "1979-11-29": "Ashura (estimated)", "1980-01-01": "New Year's Day", - "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-01-30": "Prophet's Birthday (estimated)", "1980-05-01": "Labor Day", "1980-07-05": "Independence Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha Holiday* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr Holiday (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha Holiday (estimated)", "1980-11-01": "Revolution Day", - "1980-11-09": "Islamic New Year* (*estimated)", - "1980-11-18": "Ashura* (*estimated)", + "1980-11-09": "Islamic New Year (estimated)", + "1980-11-18": "Ashura (estimated)", "1981-01-01": "New Year's Day", - "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-01-18": "Prophet's Birthday (estimated)", "1981-05-01": "Labor Day", "1981-07-05": "Independence Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha Holiday* (*estimated)", - "1981-10-28": "Islamic New Year* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr Holiday (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha Holiday (estimated)", + "1981-10-28": "Islamic New Year (estimated)", "1981-11-01": "Revolution Day", - "1981-11-06": "Ashura* (*estimated)", + "1981-11-06": "Ashura (estimated)", "1982-01-01": "New Year's Day", - "1982-01-07": "Prophet's Birthday* (*estimated)", + "1982-01-07": "Prophet's Birthday (estimated)", "1982-05-01": "Labor Day", "1982-07-05": "Independence Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha Holiday* (*estimated)", - "1982-10-18": "Islamic New Year* (*estimated)", - "1982-10-27": "Ashura* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr Holiday (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha Holiday (estimated)", + "1982-10-18": "Islamic New Year (estimated)", + "1982-10-27": "Ashura (estimated)", "1982-11-01": "Revolution Day", - "1982-12-27": "Prophet's Birthday* (*estimated)", + "1982-12-27": "Prophet's Birthday (estimated)", "1983-01-01": "New Year's Day", "1983-05-01": "Labor Day", "1983-07-05": "Independence Day", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha Holiday* (*estimated)", - "1983-10-07": "Islamic New Year* (*estimated)", - "1983-10-16": "Ashura* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr Holiday (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha Holiday (estimated)", + "1983-10-07": "Islamic New Year (estimated)", + "1983-10-16": "Ashura (estimated)", "1983-11-01": "Revolution Day", - "1983-12-16": "Prophet's Birthday* (*estimated)", + "1983-12-16": "Prophet's Birthday (estimated)", "1984-01-01": "New Year's Day", "1984-05-01": "Labor Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr Holiday (estimated)", "1984-07-05": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha Holiday* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", - "1984-10-05": "Ashura* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha Holiday (estimated)", + "1984-09-26": "Islamic New Year (estimated)", + "1984-10-05": "Ashura (estimated)", "1984-11-01": "Revolution Day", - "1984-12-04": "Prophet's Birthday* (*estimated)", + "1984-12-04": "Prophet's Birthday (estimated)", "1985-01-01": "New Year's Day", "1985-05-01": "Labor Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr Holiday (estimated)", "1985-07-05": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha Holiday* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", - "1985-09-24": "Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha Holiday (estimated)", + "1985-09-15": "Islamic New Year (estimated)", + "1985-09-24": "Ashura (estimated)", "1985-11-01": "Revolution Day", - "1985-11-24": "Prophet's Birthday* (*estimated)", + "1985-11-24": "Prophet's Birthday (estimated)", "1986-01-01": "New Year's Day", "1986-05-01": "Labor Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr Holiday (estimated)", "1986-07-05": "Independence Day", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha Holiday* (*estimated)", - "1986-09-05": "Islamic New Year* (*estimated)", - "1986-09-14": "Ashura* (*estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha Holiday (estimated)", + "1986-09-05": "Islamic New Year (estimated)", + "1986-09-14": "Ashura (estimated)", "1986-11-01": "Revolution Day", - "1986-11-14": "Prophet's Birthday* (*estimated)", + "1986-11-14": "Prophet's Birthday (estimated)", "1987-01-01": "New Year's Day", "1987-05-01": "Labor Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr Holiday (estimated)", "1987-07-05": "Independence Day", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha Holiday* (*estimated)", - "1987-08-25": "Islamic New Year* (*estimated)", - "1987-09-03": "Ashura* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha Holiday (estimated)", + "1987-08-25": "Islamic New Year (estimated)", + "1987-09-03": "Ashura (estimated)", "1987-11-01": "Revolution Day", - "1987-11-03": "Prophet's Birthday* (*estimated)", + "1987-11-03": "Prophet's Birthday (estimated)", "1988-01-01": "New Year's Day", "1988-05-01": "Labor Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr Holiday (estimated)", "1988-07-05": "Independence Day", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha Holiday* (*estimated)", - "1988-08-13": "Islamic New Year* (*estimated)", - "1988-08-22": "Ashura* (*estimated)", - "1988-10-22": "Prophet's Birthday* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha Holiday (estimated)", + "1988-08-13": "Islamic New Year (estimated)", + "1988-08-22": "Ashura (estimated)", + "1988-10-22": "Prophet's Birthday (estimated)", "1988-11-01": "Revolution Day", "1989-01-01": "New Year's Day", "1989-05-01": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr Holiday (estimated)", "1989-07-05": "Independence Day", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha Holiday* (*estimated)", - "1989-08-02": "Islamic New Year* (*estimated)", - "1989-08-11": "Ashura* (*estimated)", - "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha Holiday (estimated)", + "1989-08-02": "Islamic New Year (estimated)", + "1989-08-11": "Ashura (estimated)", + "1989-10-11": "Prophet's Birthday (estimated)", "1989-11-01": "Revolution Day", "1990-01-01": "New Year's Day", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr Holiday (estimated)", "1990-05-01": "Labor Day", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha Holiday* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha Holiday (estimated)", "1990-07-05": "Independence Day", - "1990-07-23": "Islamic New Year* (*estimated)", - "1990-08-01": "Ashura* (*estimated)", - "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-07-23": "Islamic New Year (estimated)", + "1990-08-01": "Ashura (estimated)", + "1990-10-01": "Prophet's Birthday (estimated)", "1990-11-01": "Revolution Day", "1991-01-01": "New Year's Day", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr Holiday (estimated)", "1991-05-01": "Labor Day", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha Holiday* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha Holiday (estimated)", "1991-07-05": "Independence Day", - "1991-07-12": "Islamic New Year* (*estimated)", - "1991-07-21": "Ashura* (*estimated)", - "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-07-12": "Islamic New Year (estimated)", + "1991-07-21": "Ashura (estimated)", + "1991-09-20": "Prophet's Birthday (estimated)", "1991-11-01": "Revolution Day", "1992-01-01": "New Year's Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr Holiday (estimated)", "1992-05-01": "Labor Day", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha Holiday* (*estimated)", - "1992-07-01": "Islamic New Year* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha Holiday (estimated)", + "1992-07-01": "Islamic New Year (estimated)", "1992-07-05": "Independence Day", - "1992-07-10": "Ashura* (*estimated)", - "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-07-10": "Ashura (estimated)", + "1992-09-09": "Prophet's Birthday (estimated)", "1992-11-01": "Revolution Day", "1993-01-01": "New Year's Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr Holiday (estimated)", "1993-05-01": "Labor Day", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha Holiday* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", - "1993-06-30": "Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha Holiday (estimated)", + "1993-06-21": "Islamic New Year (estimated)", + "1993-06-30": "Ashura (estimated)", "1993-07-05": "Independence Day", - "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-08-29": "Prophet's Birthday (estimated)", "1993-11-01": "Revolution Day", "1994-01-01": "New Year's Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr Holiday (estimated)", "1994-05-01": "Labor Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha Holiday* (*estimated)", - "1994-06-10": "Islamic New Year* (*estimated)", - "1994-06-19": "Ashura* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha Holiday (estimated)", + "1994-06-10": "Islamic New Year (estimated)", + "1994-06-19": "Ashura (estimated)", "1994-07-05": "Independence Day", - "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-08-19": "Prophet's Birthday (estimated)", "1994-11-01": "Revolution Day", "1995-01-01": "New Year's Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr Holiday (estimated)", "1995-05-01": "Labor Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha Holiday* (*estimated)", - "1995-05-30": "Islamic New Year* (*estimated)", - "1995-06-08": "Ashura* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha Holiday (estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-06-08": "Ashura (estimated)", "1995-07-05": "Independence Day", - "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-08-08": "Prophet's Birthday (estimated)", "1995-11-01": "Revolution Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha Holiday* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr Holiday (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha Holiday (estimated)", "1996-05-01": "Labor Day", - "1996-05-18": "Islamic New Year* (*estimated)", - "1996-05-27": "Ashura* (*estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-05-27": "Ashura (estimated)", "1996-07-05": "Independence Day", - "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-07-27": "Prophet's Birthday (estimated)", "1996-11-01": "Revolution Day", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha Holiday* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr Holiday (estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha Holiday (estimated)", "1997-05-01": "Labor Day", - "1997-05-07": "Islamic New Year* (*estimated)", - "1997-05-16": "Ashura* (*estimated)", + "1997-05-07": "Islamic New Year (estimated)", + "1997-05-16": "Ashura (estimated)", "1997-07-05": "Independence Day", - "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-07-16": "Prophet's Birthday (estimated)", "1997-11-01": "Revolution Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha Holiday* (*estimated)", - "1998-04-27": "Islamic New Year* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr Holiday (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha Holiday (estimated)", + "1998-04-27": "Islamic New Year (estimated)", "1998-05-01": "Labor Day", - "1998-05-06": "Ashura* (*estimated)", + "1998-05-06": "Ashura (estimated)", "1998-07-05": "Independence Day", - "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-07-06": "Prophet's Birthday (estimated)", "1998-11-01": "Revolution Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha Holiday* (*estimated)", - "1999-04-17": "Islamic New Year* (*estimated)", - "1999-04-26": "Ashura* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr Holiday (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha Holiday (estimated)", + "1999-04-17": "Islamic New Year (estimated)", + "1999-04-26": "Ashura (estimated)", "1999-05-01": "Labor Day", - "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-06-26": "Prophet's Birthday (estimated)", "1999-07-05": "Independence Day", "1999-11-01": "Revolution Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha Holiday* (*estimated)", - "2000-04-06": "Islamic New Year* (*estimated)", - "2000-04-15": "Ashura* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr Holiday (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha Holiday (estimated)", + "2000-04-06": "Islamic New Year (estimated)", + "2000-04-15": "Ashura (estimated)", "2000-05-01": "Labor Day", - "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-06-14": "Prophet's Birthday (estimated)", "2000-07-05": "Independence Day", "2000-11-01": "Revolution Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr Holiday (estimated)", "2001-01-01": "New Year's Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha Holiday* (*estimated)", - "2001-03-26": "Islamic New Year* (*estimated)", - "2001-04-04": "Ashura* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha Holiday (estimated)", + "2001-03-26": "Islamic New Year (estimated)", + "2001-04-04": "Ashura (estimated)", "2001-05-01": "Labor Day", - "2001-06-04": "Prophet's Birthday* (*estimated)", + "2001-06-04": "Prophet's Birthday (estimated)", "2001-07-05": "Independence Day", "2001-11-01": "Revolution Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", - "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2001-12-17": "Eid al-Fitr Holiday (estimated)", "2002-01-01": "New Year's Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha Holiday* (*estimated)", - "2002-03-15": "Islamic New Year* (*estimated)", - "2002-03-24": "Ashura* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha Holiday (estimated)", + "2002-03-15": "Islamic New Year (estimated)", + "2002-03-24": "Ashura (estimated)", "2002-05-01": "Labor Day", - "2002-05-24": "Prophet's Birthday* (*estimated)", + "2002-05-24": "Prophet's Birthday (estimated)", "2002-07-05": "Independence Day", "2002-11-01": "Revolution Day", - "2002-12-05": "Eid al-Fitr* (*estimated)", - "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", + "2002-12-06": "Eid al-Fitr Holiday (estimated)", "2003-01-01": "New Year's Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha Holiday* (*estimated)", - "2003-03-04": "Islamic New Year* (*estimated)", - "2003-03-13": "Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha Holiday (estimated)", + "2003-03-04": "Islamic New Year (estimated)", + "2003-03-13": "Ashura (estimated)", "2003-05-01": "Labor Day", - "2003-05-13": "Prophet's Birthday* (*estimated)", + "2003-05-13": "Prophet's Birthday (estimated)", "2003-07-05": "Independence Day", "2003-11-01": "Revolution Day", - "2003-11-25": "Eid al-Fitr* (*estimated)", - "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", + "2003-11-26": "Eid al-Fitr Holiday (estimated)", "2004-01-01": "New Year's Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha Holiday* (*estimated)", - "2004-02-21": "Islamic New Year* (*estimated)", - "2004-03-01": "Ashura* (*estimated)", - "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha Holiday (estimated)", + "2004-02-21": "Islamic New Year (estimated)", + "2004-03-01": "Ashura (estimated)", + "2004-05-01": "Labor Day; Prophet's Birthday (estimated)", "2004-07-05": "Independence Day", "2004-11-01": "Revolution Day", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr Holiday (estimated)", "2005-01-01": "New Year's Day", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha Holiday* (*estimated)", - "2005-02-10": "Islamic New Year* (*estimated)", - "2005-02-19": "Ashura* (*estimated)", - "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha Holiday (estimated)", + "2005-02-10": "Islamic New Year (estimated)", + "2005-02-19": "Ashura (estimated)", + "2005-04-21": "Prophet's Birthday (estimated)", "2005-05-01": "Labor Day", "2005-07-05": "Independence Day", "2005-11-01": "Revolution Day", - "2005-11-03": "Eid al-Fitr* (*estimated)", - "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", + "2005-11-04": "Eid al-Fitr Holiday (estimated)", "2006-01-01": "New Year's Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha Holiday* (*estimated)", - "2006-01-31": "Islamic New Year* (*estimated)", - "2006-02-09": "Ashura* (*estimated)", - "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha Holiday (estimated)", + "2006-01-31": "Islamic New Year (estimated)", + "2006-02-09": "Ashura (estimated)", + "2006-04-10": "Prophet's Birthday (estimated)", "2006-05-01": "Labor Day", "2006-07-05": "Independence Day", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-10-24": "Eid al-Fitr Holiday (estimated)", "2006-11-01": "Revolution Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", - "2007-01-20": "Islamic New Year* (*estimated)", - "2007-01-29": "Ashura* (*estimated)", - "2007-03-31": "Prophet's Birthday* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha Holiday (estimated); New Year's Day", + "2007-01-20": "Islamic New Year (estimated)", + "2007-01-29": "Ashura (estimated)", + "2007-03-31": "Prophet's Birthday (estimated)", "2007-05-01": "Labor Day", "2007-07-05": "Independence Day", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-14": "Eid al-Fitr Holiday (estimated)", "2007-11-01": "Revolution Day", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha Holiday* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha Holiday (estimated)", "2008-01-01": "New Year's Day", - "2008-01-10": "Islamic New Year* (*estimated)", - "2008-01-19": "Ashura* (*estimated)", - "2008-03-20": "Prophet's Birthday* (*estimated)", + "2008-01-10": "Islamic New Year (estimated)", + "2008-01-19": "Ashura (estimated)", + "2008-03-20": "Prophet's Birthday (estimated)", "2008-05-01": "Labor Day", "2008-07-05": "Independence Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-10-02": "Eid al-Fitr Holiday (estimated)", "2008-11-01": "Revolution Day", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha Holiday* (*estimated)", - "2008-12-29": "Islamic New Year* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha Holiday (estimated)", + "2008-12-29": "Islamic New Year (estimated)", "2009-01-01": "New Year's Day", - "2009-01-07": "Ashura* (*estimated)", - "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-01-07": "Ashura (estimated)", + "2009-03-09": "Prophet's Birthday (estimated)", "2009-05-01": "Labor Day", "2009-07-05": "Independence Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr Holiday (estimated)", "2009-11-01": "Revolution Day", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha Holiday* (*estimated)", - "2009-12-18": "Islamic New Year* (*estimated)", - "2009-12-27": "Ashura* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha Holiday (estimated)", + "2009-12-18": "Islamic New Year (estimated)", + "2009-12-27": "Ashura (estimated)", "2010-01-01": "New Year's Day", - "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-02-26": "Prophet's Birthday (estimated)", "2010-05-01": "Labor Day", "2010-07-05": "Independence Day", - "2010-09-10": "Eid al-Fitr* (*estimated)", - "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", + "2010-09-11": "Eid al-Fitr Holiday (estimated)", "2010-11-01": "Revolution Day", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha Holiday* (*estimated)", - "2010-12-07": "Islamic New Year* (*estimated)", - "2010-12-16": "Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha Holiday (estimated)", + "2010-12-07": "Islamic New Year (estimated)", + "2010-12-16": "Ashura (estimated)", "2011-01-01": "New Year's Day", - "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-02-15": "Prophet's Birthday (estimated)", "2011-05-01": "Labor Day", "2011-07-05": "Independence Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", - "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", + "2011-08-31": "Eid al-Fitr Holiday (estimated)", "2011-11-01": "Revolution Day", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha Holiday* (*estimated)", - "2011-11-26": "Islamic New Year* (*estimated)", - "2011-12-05": "Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha Holiday (estimated)", + "2011-11-26": "Islamic New Year (estimated)", + "2011-12-05": "Ashura (estimated)", "2012-01-01": "New Year's Day", - "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-02-04": "Prophet's Birthday (estimated)", "2012-05-01": "Labor Day", "2012-07-05": "Independence Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha Holiday* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr Holiday (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha Holiday (estimated)", "2012-11-01": "Revolution Day", - "2012-11-15": "Islamic New Year* (*estimated)", - "2012-11-24": "Ashura* (*estimated)", + "2012-11-15": "Islamic New Year (estimated)", + "2012-11-24": "Ashura (estimated)", "2013-01-01": "New Year's Day", - "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-01-24": "Prophet's Birthday (estimated)", "2013-05-01": "Labor Day", "2013-07-05": "Independence Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha Holiday* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-08-09": "Eid al-Fitr Holiday (estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha Holiday (estimated)", "2013-11-01": "Revolution Day", - "2013-11-04": "Islamic New Year* (*estimated)", - "2013-11-13": "Ashura* (*estimated)", + "2013-11-04": "Islamic New Year (estimated)", + "2013-11-13": "Ashura (estimated)", "2014-01-01": "New Year's Day", - "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-01-13": "Prophet's Birthday (estimated)", "2014-05-01": "Labor Day", "2014-07-05": "Independence Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha Holiday* (*estimated)", - "2014-10-25": "Islamic New Year* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-07-29": "Eid al-Fitr Holiday (estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha Holiday (estimated)", + "2014-10-25": "Islamic New Year (estimated)", "2014-11-01": "Revolution Day", - "2014-11-03": "Ashura* (*estimated)", + "2014-11-03": "Ashura (estimated)", "2015-01-01": "New Year's Day", - "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-01-03": "Prophet's Birthday (estimated)", "2015-05-01": "Labor Day", "2015-07-05": "Independence Day", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha Holiday* (*estimated)", - "2015-10-14": "Islamic New Year* (*estimated)", - "2015-10-23": "Ashura* (*estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-07-18": "Eid al-Fitr Holiday (estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha Holiday (estimated)", + "2015-10-14": "Islamic New Year (estimated)", + "2015-10-23": "Ashura (estimated)", "2015-11-01": "Revolution Day", - "2015-12-23": "Prophet's Birthday* (*estimated)", + "2015-12-23": "Prophet's Birthday (estimated)", "2016-01-01": "New Year's Day", "2016-05-01": "Labor Day", "2016-07-05": "Independence Day", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha Holiday* (*estimated)", - "2016-10-02": "Islamic New Year* (*estimated)", - "2016-10-11": "Ashura* (*estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-07-07": "Eid al-Fitr Holiday (estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha Holiday (estimated)", + "2016-10-02": "Islamic New Year (estimated)", + "2016-10-11": "Ashura (estimated)", "2016-11-01": "Revolution Day", - "2016-12-11": "Prophet's Birthday* (*estimated)", + "2016-12-11": "Prophet's Birthday (estimated)", "2017-01-01": "New Year's Day", "2017-05-01": "Labor Day", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-06-26": "Eid al-Fitr Holiday (estimated)", "2017-07-05": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha Holiday* (*estimated)", - "2017-09-21": "Islamic New Year* (*estimated)", - "2017-09-30": "Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha Holiday (estimated)", + "2017-09-21": "Islamic New Year (estimated)", + "2017-09-30": "Ashura (estimated)", "2017-11-01": "Revolution Day", - "2017-11-30": "Prophet's Birthday* (*estimated)", + "2017-11-30": "Prophet's Birthday (estimated)", "2018-01-01": "New Year's Day", "2018-01-12": "Amazigh New Year", "2018-05-01": "Labor Day", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-06-16": "Eid al-Fitr Holiday (estimated)", "2018-07-05": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha Holiday* (*estimated)", - "2018-09-11": "Islamic New Year* (*estimated)", - "2018-09-20": "Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha Holiday (estimated)", + "2018-09-11": "Islamic New Year (estimated)", + "2018-09-20": "Ashura (estimated)", "2018-11-01": "Revolution Day", - "2018-11-20": "Prophet's Birthday* (*estimated)", + "2018-11-20": "Prophet's Birthday (estimated)", "2019-01-01": "New Year's Day", "2019-01-12": "Amazigh New Year", "2019-05-01": "Labor Day", - "2019-06-04": "Eid al-Fitr* (*estimated)", - "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-04": "Eid al-Fitr (estimated)", + "2019-06-05": "Eid al-Fitr Holiday (estimated)", "2019-07-05": "Independence Day", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha Holiday* (*estimated)", - "2019-08-31": "Islamic New Year* (*estimated)", - "2019-09-09": "Ashura* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha Holiday (estimated)", + "2019-08-31": "Islamic New Year (estimated)", + "2019-09-09": "Ashura (estimated)", "2019-11-01": "Revolution Day", - "2019-11-09": "Prophet's Birthday* (*estimated)", + "2019-11-09": "Prophet's Birthday (estimated)", "2020-01-01": "New Year's Day", "2020-01-12": "Amazigh New Year", "2020-05-01": "Labor Day", - "2020-05-24": "Eid al-Fitr* (*estimated)", - "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", + "2020-05-25": "Eid al-Fitr Holiday (estimated)", "2020-07-05": "Independence Day", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha Holiday* (*estimated)", - "2020-08-20": "Islamic New Year* (*estimated)", - "2020-08-29": "Ashura* (*estimated)", - "2020-10-29": "Prophet's Birthday* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha Holiday (estimated)", + "2020-08-20": "Islamic New Year (estimated)", + "2020-08-29": "Ashura (estimated)", + "2020-10-29": "Prophet's Birthday (estimated)", "2020-11-01": "Revolution Day", "2021-01-01": "New Year's Day", "2021-01-12": "Amazigh New Year", "2021-05-01": "Labor Day", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-05-14": "Eid al-Fitr Holiday (estimated)", "2021-07-05": "Independence Day", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha Holiday* (*estimated)", - "2021-08-09": "Islamic New Year* (*estimated)", - "2021-08-18": "Ashura* (*estimated)", - "2021-10-18": "Prophet's Birthday* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha Holiday (estimated)", + "2021-08-09": "Islamic New Year (estimated)", + "2021-08-18": "Ashura (estimated)", + "2021-10-18": "Prophet's Birthday (estimated)", "2021-11-01": "Revolution Day", "2022-01-01": "New Year's Day", "2022-01-12": "Amazigh New Year", "2022-05-01": "Labor Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", - "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", + "2022-05-03": "Eid al-Fitr Holiday (estimated)", "2022-07-05": "Independence Day", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha Holiday* (*estimated)", - "2022-07-30": "Islamic New Year* (*estimated)", - "2022-08-08": "Ashura* (*estimated)", - "2022-10-08": "Prophet's Birthday* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha Holiday (estimated)", + "2022-07-30": "Islamic New Year (estimated)", + "2022-08-08": "Ashura (estimated)", + "2022-10-08": "Prophet's Birthday (estimated)", "2022-11-01": "Revolution Day", "2023-01-01": "New Year's Day", "2023-01-12": "Amazigh New Year", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", + "2023-04-22": "Eid al-Fitr Holiday (estimated)", "2023-05-01": "Labor Day", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha Holiday* (*estimated)", - "2023-06-30": "Eid al-Adha Holiday* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha Holiday (estimated)", + "2023-06-30": "Eid al-Adha Holiday (estimated)", "2023-07-05": "Independence Day", - "2023-07-19": "Islamic New Year* (*estimated)", - "2023-07-28": "Ashura* (*estimated)", - "2023-09-27": "Prophet's Birthday* (*estimated)", + "2023-07-19": "Islamic New Year (estimated)", + "2023-07-28": "Ashura (estimated)", + "2023-09-27": "Prophet's Birthday (estimated)", "2023-11-01": "Revolution Day", "2024-01-01": "New Year's Day", "2024-01-12": "Amazigh New Year", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", - "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr Holiday (estimated)", + "2024-04-12": "Eid al-Fitr Holiday (estimated)", "2024-05-01": "Labor Day", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha Holiday* (*estimated)", - "2024-06-18": "Eid al-Adha Holiday* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha Holiday (estimated)", + "2024-06-18": "Eid al-Adha Holiday (estimated)", "2024-07-05": "Independence Day", - "2024-07-07": "Islamic New Year* (*estimated)", - "2024-07-16": "Ashura* (*estimated)", - "2024-09-15": "Prophet's Birthday* (*estimated)", + "2024-07-07": "Islamic New Year (estimated)", + "2024-07-16": "Ashura (estimated)", + "2024-09-15": "Prophet's Birthday (estimated)", "2024-11-01": "Revolution Day", "2025-01-01": "New Year's Day", "2025-01-12": "Amazigh New Year", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", - "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr Holiday (estimated)", + "2025-04-01": "Eid al-Fitr Holiday (estimated)", "2025-05-01": "Labor Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha Holiday* (*estimated)", - "2025-06-08": "Eid al-Adha Holiday* (*estimated)", - "2025-06-26": "Islamic New Year* (*estimated)", - "2025-07-05": "Ashura* (*estimated); Independence Day", - "2025-09-04": "Prophet's Birthday* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha Holiday (estimated)", + "2025-06-08": "Eid al-Adha Holiday (estimated)", + "2025-06-26": "Islamic New Year (estimated)", + "2025-07-05": "Ashura (estimated); Independence Day", + "2025-09-04": "Prophet's Birthday (estimated)", "2025-11-01": "Revolution Day", "2026-01-01": "New Year's Day", "2026-01-12": "Amazigh New Year", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", - "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr Holiday (estimated)", + "2026-03-22": "Eid al-Fitr Holiday (estimated)", "2026-05-01": "Labor Day", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha Holiday* (*estimated)", - "2026-05-29": "Eid al-Adha Holiday* (*estimated)", - "2026-06-16": "Islamic New Year* (*estimated)", - "2026-06-25": "Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha Holiday (estimated)", + "2026-05-29": "Eid al-Adha Holiday (estimated)", + "2026-06-16": "Islamic New Year (estimated)", + "2026-06-25": "Ashura (estimated)", "2026-07-05": "Independence Day", - "2026-08-25": "Prophet's Birthday* (*estimated)", + "2026-08-25": "Prophet's Birthday (estimated)", "2026-11-01": "Revolution Day", "2027-01-01": "New Year's Day", "2027-01-12": "Amazigh New Year", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", - "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr Holiday (estimated)", + "2027-03-11": "Eid al-Fitr Holiday (estimated)", "2027-05-01": "Labor Day", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha Holiday* (*estimated)", - "2027-05-18": "Eid al-Adha Holiday* (*estimated)", - "2027-06-06": "Islamic New Year* (*estimated)", - "2027-06-15": "Ashura* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha Holiday (estimated)", + "2027-05-18": "Eid al-Adha Holiday (estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-06-15": "Ashura (estimated)", "2027-07-05": "Independence Day", - "2027-08-14": "Prophet's Birthday* (*estimated)", + "2027-08-14": "Prophet's Birthday (estimated)", "2027-11-01": "Revolution Day", "2028-01-01": "New Year's Day", "2028-01-12": "Amazigh New Year", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", - "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr Holiday (estimated)", + "2028-02-28": "Eid al-Fitr Holiday (estimated)", "2028-05-01": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha Holiday* (*estimated)", - "2028-05-07": "Eid al-Adha Holiday* (*estimated)", - "2028-05-25": "Islamic New Year* (*estimated)", - "2028-06-03": "Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha Holiday (estimated)", + "2028-05-07": "Eid al-Adha Holiday (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-06-03": "Ashura (estimated)", "2028-07-05": "Independence Day", - "2028-08-03": "Prophet's Birthday* (*estimated)", + "2028-08-03": "Prophet's Birthday (estimated)", "2028-11-01": "Revolution Day", "2029-01-01": "New Year's Day", "2029-01-12": "Amazigh New Year", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", - "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha Holiday* (*estimated)", - "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr Holiday (estimated)", + "2029-02-16": "Eid al-Fitr Holiday (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha Holiday (estimated)", + "2029-04-26": "Eid al-Adha Holiday (estimated)", "2029-05-01": "Labor Day", - "2029-05-14": "Islamic New Year* (*estimated)", - "2029-05-23": "Ashura* (*estimated)", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-23": "Ashura (estimated)", "2029-07-05": "Independence Day", - "2029-07-24": "Prophet's Birthday* (*estimated)", + "2029-07-24": "Prophet's Birthday (estimated)", "2029-11-01": "Revolution Day", "2030-01-01": "New Year's Day", "2030-01-12": "Amazigh New Year", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", - "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha Holiday* (*estimated)", - "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr Holiday (estimated)", + "2030-02-06": "Eid al-Fitr Holiday (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha Holiday (estimated)", + "2030-04-15": "Eid al-Adha Holiday (estimated)", "2030-05-01": "Labor Day", - "2030-05-03": "Islamic New Year* (*estimated)", - "2030-05-12": "Ashura* (*estimated)", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-12": "Ashura (estimated)", "2030-07-05": "Independence Day", - "2030-07-13": "Prophet's Birthday* (*estimated)", + "2030-07-13": "Prophet's Birthday (estimated)", "2030-11-01": "Revolution Day", "2031-01-01": "New Year's Day", "2031-01-12": "Amazigh New Year", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", - "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha Holiday* (*estimated)", - "2031-04-04": "Eid al-Adha Holiday* (*estimated)", - "2031-04-23": "Islamic New Year* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr Holiday (estimated)", + "2031-01-26": "Eid al-Fitr Holiday (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha Holiday (estimated)", + "2031-04-04": "Eid al-Adha Holiday (estimated)", + "2031-04-23": "Islamic New Year (estimated)", "2031-05-01": "Labor Day", - "2031-05-02": "Ashura* (*estimated)", - "2031-07-02": "Prophet's Birthday* (*estimated)", + "2031-05-02": "Ashura (estimated)", + "2031-07-02": "Prophet's Birthday (estimated)", "2031-07-05": "Independence Day", "2031-11-01": "Revolution Day", "2032-01-01": "New Year's Day", "2032-01-12": "Amazigh New Year", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", - "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha Holiday* (*estimated)", - "2032-03-24": "Eid al-Adha Holiday* (*estimated)", - "2032-04-11": "Islamic New Year* (*estimated)", - "2032-04-20": "Ashura* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr Holiday (estimated)", + "2032-01-16": "Eid al-Fitr Holiday (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha Holiday (estimated)", + "2032-03-24": "Eid al-Adha Holiday (estimated)", + "2032-04-11": "Islamic New Year (estimated)", + "2032-04-20": "Ashura (estimated)", "2032-05-01": "Labor Day", - "2032-06-20": "Prophet's Birthday* (*estimated)", + "2032-06-20": "Prophet's Birthday (estimated)", "2032-07-05": "Independence Day", "2032-11-01": "Revolution Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", - "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr Holiday (estimated)", + "2033-01-04": "Eid al-Fitr Holiday (estimated)", "2033-01-12": "Amazigh New Year", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha Holiday* (*estimated)", - "2033-03-13": "Eid al-Adha Holiday* (*estimated)", - "2033-04-01": "Islamic New Year* (*estimated)", - "2033-04-10": "Ashura* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha Holiday (estimated)", + "2033-03-13": "Eid al-Adha Holiday (estimated)", + "2033-04-01": "Islamic New Year (estimated)", + "2033-04-10": "Ashura (estimated)", "2033-05-01": "Labor Day", - "2033-06-09": "Prophet's Birthday* (*estimated)", + "2033-06-09": "Prophet's Birthday (estimated)", "2033-07-05": "Independence Day", "2033-11-01": "Revolution Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", - "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr Holiday (estimated)", + "2033-12-25": "Eid al-Fitr Holiday (estimated)", "2034-01-01": "New Year's Day", "2034-01-12": "Amazigh New Year", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha Holiday* (*estimated)", - "2034-03-03": "Eid al-Adha Holiday* (*estimated)", - "2034-03-21": "Islamic New Year* (*estimated)", - "2034-03-30": "Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha Holiday (estimated)", + "2034-03-03": "Eid al-Adha Holiday (estimated)", + "2034-03-21": "Islamic New Year (estimated)", + "2034-03-30": "Ashura (estimated)", "2034-05-01": "Labor Day", - "2034-05-30": "Prophet's Birthday* (*estimated)", + "2034-05-30": "Prophet's Birthday (estimated)", "2034-07-05": "Independence Day", "2034-11-01": "Revolution Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", - "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr Holiday (estimated)", + "2034-12-14": "Eid al-Fitr Holiday (estimated)", "2035-01-01": "New Year's Day", "2035-01-12": "Amazigh New Year", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha Holiday* (*estimated)", - "2035-02-20": "Eid al-Adha Holiday* (*estimated)", - "2035-03-11": "Islamic New Year* (*estimated)", - "2035-03-20": "Ashura* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha Holiday (estimated)", + "2035-02-20": "Eid al-Adha Holiday (estimated)", + "2035-03-11": "Islamic New Year (estimated)", + "2035-03-20": "Ashura (estimated)", "2035-05-01": "Labor Day", - "2035-05-20": "Prophet's Birthday* (*estimated)", + "2035-05-20": "Prophet's Birthday (estimated)", "2035-07-05": "Independence Day", "2035-11-01": "Revolution Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", - "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr Holiday (estimated)", + "2035-12-03": "Eid al-Fitr Holiday (estimated)", "2036-01-01": "New Year's Day", "2036-01-12": "Amazigh New Year", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha Holiday* (*estimated)", - "2036-02-09": "Eid al-Adha Holiday* (*estimated)", - "2036-02-28": "Islamic New Year* (*estimated)", - "2036-03-08": "Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha Holiday (estimated)", + "2036-02-09": "Eid al-Adha Holiday (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-03-08": "Ashura (estimated)", "2036-05-01": "Labor Day", - "2036-05-08": "Prophet's Birthday* (*estimated)", + "2036-05-08": "Prophet's Birthday (estimated)", "2036-07-05": "Independence Day", "2036-11-01": "Revolution Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", - "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr Holiday (estimated)", + "2036-11-21": "Eid al-Fitr Holiday (estimated)", "2037-01-01": "New Year's Day", "2037-01-12": "Amazigh New Year", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha Holiday* (*estimated)", - "2037-01-28": "Eid al-Adha Holiday* (*estimated)", - "2037-02-16": "Islamic New Year* (*estimated)", - "2037-02-25": "Ashura* (*estimated)", - "2037-04-28": "Prophet's Birthday* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha Holiday (estimated)", + "2037-01-28": "Eid al-Adha Holiday (estimated)", + "2037-02-16": "Islamic New Year (estimated)", + "2037-02-25": "Ashura (estimated)", + "2037-04-28": "Prophet's Birthday (estimated)", "2037-05-01": "Labor Day", "2037-07-05": "Independence Day", "2037-11-01": "Revolution Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", - "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr Holiday (estimated)", + "2037-11-10": "Eid al-Fitr Holiday (estimated)", "2038-01-01": "New Year's Day", "2038-01-12": "Amazigh New Year", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha Holiday* (*estimated)", - "2038-01-18": "Eid al-Adha Holiday* (*estimated)", - "2038-02-05": "Islamic New Year* (*estimated)", - "2038-02-14": "Ashura* (*estimated)", - "2038-04-17": "Prophet's Birthday* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha Holiday (estimated)", + "2038-01-18": "Eid al-Adha Holiday (estimated)", + "2038-02-05": "Islamic New Year (estimated)", + "2038-02-14": "Ashura (estimated)", + "2038-04-17": "Prophet's Birthday (estimated)", "2038-05-01": "Labor Day", "2038-07-05": "Independence Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", - "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr Holiday (estimated)", + "2038-10-31": "Eid al-Fitr Holiday (estimated)", "2038-11-01": "Revolution Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha Holiday* (*estimated)", - "2039-01-07": "Eid al-Adha Holiday* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha Holiday (estimated)", + "2039-01-07": "Eid al-Adha Holiday (estimated)", "2039-01-12": "Amazigh New Year", - "2039-01-26": "Islamic New Year* (*estimated)", - "2039-02-04": "Ashura* (*estimated)", - "2039-04-06": "Prophet's Birthday* (*estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-02-04": "Ashura (estimated)", + "2039-04-06": "Prophet's Birthday (estimated)", "2039-05-01": "Labor Day", "2039-07-05": "Independence Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", - "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr Holiday (estimated)", + "2039-10-21": "Eid al-Fitr Holiday (estimated)", "2039-11-01": "Revolution Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha Holiday* (*estimated)", - "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha Holiday (estimated)", + "2039-12-28": "Eid al-Adha Holiday (estimated)", "2040-01-01": "New Year's Day", "2040-01-12": "Amazigh New Year", - "2040-01-15": "Islamic New Year* (*estimated)", - "2040-01-24": "Ashura* (*estimated)", - "2040-03-25": "Prophet's Birthday* (*estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-01-24": "Ashura (estimated)", + "2040-03-25": "Prophet's Birthday (estimated)", "2040-05-01": "Labor Day", "2040-07-05": "Independence Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", - "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr Holiday (estimated)", + "2040-10-09": "Eid al-Fitr Holiday (estimated)", "2040-11-01": "Revolution Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha Holiday* (*estimated)", - "2040-12-16": "Eid al-Adha Holiday* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha Holiday (estimated)", + "2040-12-16": "Eid al-Adha Holiday (estimated)", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-04": "Islamic New Year (estimated)", "2041-01-12": "Amazigh New Year", - "2041-01-13": "Ashura* (*estimated)", - "2041-03-15": "Prophet's Birthday* (*estimated)", + "2041-01-13": "Ashura (estimated)", + "2041-03-15": "Prophet's Birthday (estimated)", "2041-05-01": "Labor Day", "2041-07-05": "Independence Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", - "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr Holiday (estimated)", + "2041-09-28": "Eid al-Fitr Holiday (estimated)", "2041-11-01": "Revolution Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha Holiday* (*estimated)", - "2041-12-06": "Eid al-Adha Holiday* (*estimated)", - "2041-12-24": "Islamic New Year* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha Holiday (estimated)", + "2041-12-06": "Eid al-Adha Holiday (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2042-01-01": "New Year's Day", - "2042-01-02": "Ashura* (*estimated)", + "2042-01-02": "Ashura (estimated)", "2042-01-12": "Amazigh New Year", - "2042-03-04": "Prophet's Birthday* (*estimated)", + "2042-03-04": "Prophet's Birthday (estimated)", "2042-05-01": "Labor Day", "2042-07-05": "Independence Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", - "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr Holiday (estimated)", + "2042-09-17": "Eid al-Fitr Holiday (estimated)", "2042-11-01": "Revolution Day", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha Holiday* (*estimated)", - "2042-11-25": "Eid al-Adha Holiday* (*estimated)", - "2042-12-14": "Islamic New Year* (*estimated)", - "2042-12-23": "Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha Holiday (estimated)", + "2042-11-25": "Eid al-Adha Holiday (estimated)", + "2042-12-14": "Islamic New Year (estimated)", + "2042-12-23": "Ashura (estimated)", "2043-01-01": "New Year's Day", "2043-01-12": "Amazigh New Year", - "2043-02-22": "Prophet's Birthday* (*estimated)", + "2043-02-22": "Prophet's Birthday (estimated)", "2043-05-01": "Labor Day", "2043-07-05": "Independence Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", - "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr Holiday (estimated)", + "2043-09-06": "Eid al-Fitr Holiday (estimated)", "2043-11-01": "Revolution Day", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha Holiday* (*estimated)", - "2043-11-14": "Eid al-Adha Holiday* (*estimated)", - "2043-12-03": "Islamic New Year* (*estimated)", - "2043-12-12": "Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha Holiday (estimated)", + "2043-11-14": "Eid al-Adha Holiday (estimated)", + "2043-12-03": "Islamic New Year (estimated)", + "2043-12-12": "Ashura (estimated)", "2044-01-01": "New Year's Day", "2044-01-12": "Amazigh New Year", - "2044-02-11": "Prophet's Birthday* (*estimated)", + "2044-02-11": "Prophet's Birthday (estimated)", "2044-05-01": "Labor Day", "2044-07-05": "Independence Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", - "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha Holiday* (*estimated); Revolution Day", - "2044-11-02": "Eid al-Adha Holiday* (*estimated)", - "2044-11-21": "Islamic New Year* (*estimated)", - "2044-11-30": "Ashura* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr Holiday (estimated)", + "2044-08-26": "Eid al-Fitr Holiday (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha Holiday (estimated); Revolution Day", + "2044-11-02": "Eid al-Adha Holiday (estimated)", + "2044-11-21": "Islamic New Year (estimated)", + "2044-11-30": "Ashura (estimated)", "2045-01-01": "New Year's Day", "2045-01-12": "Amazigh New Year", - "2045-01-30": "Prophet's Birthday* (*estimated)", + "2045-01-30": "Prophet's Birthday (estimated)", "2045-05-01": "Labor Day", "2045-07-05": "Independence Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", - "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha Holiday* (*estimated)", - "2045-10-23": "Eid al-Adha Holiday* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr Holiday (estimated)", + "2045-08-16": "Eid al-Fitr Holiday (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha Holiday (estimated)", + "2045-10-23": "Eid al-Adha Holiday (estimated)", "2045-11-01": "Revolution Day", - "2045-11-10": "Islamic New Year* (*estimated)", - "2045-11-19": "Ashura* (*estimated)", + "2045-11-10": "Islamic New Year (estimated)", + "2045-11-19": "Ashura (estimated)", "2046-01-01": "New Year's Day", "2046-01-12": "Amazigh New Year", - "2046-01-19": "Prophet's Birthday* (*estimated)", + "2046-01-19": "Prophet's Birthday (estimated)", "2046-05-01": "Labor Day", "2046-07-05": "Independence Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", - "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha Holiday* (*estimated)", - "2046-10-12": "Eid al-Adha Holiday* (*estimated)", - "2046-10-31": "Islamic New Year* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr Holiday (estimated)", + "2046-08-05": "Eid al-Fitr Holiday (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha Holiday (estimated)", + "2046-10-12": "Eid al-Adha Holiday (estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2046-11-01": "Revolution Day", - "2046-11-09": "Ashura* (*estimated)", + "2046-11-09": "Ashura (estimated)", "2047-01-01": "New Year's Day", - "2047-01-08": "Prophet's Birthday* (*estimated)", + "2047-01-08": "Prophet's Birthday (estimated)", "2047-01-12": "Amazigh New Year", "2047-05-01": "Labor Day", "2047-07-05": "Independence Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", - "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha Holiday* (*estimated)", - "2047-10-02": "Eid al-Adha Holiday* (*estimated)", - "2047-10-20": "Islamic New Year* (*estimated)", - "2047-10-29": "Ashura* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr Holiday (estimated)", + "2047-07-26": "Eid al-Fitr Holiday (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha Holiday (estimated)", + "2047-10-02": "Eid al-Adha Holiday (estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-10-29": "Ashura (estimated)", "2047-11-01": "Revolution Day", - "2047-12-29": "Prophet's Birthday* (*estimated)", + "2047-12-29": "Prophet's Birthday (estimated)", "2048-01-01": "New Year's Day", "2048-01-12": "Amazigh New Year", "2048-05-01": "Labor Day", "2048-07-05": "Independence Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", - "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha Holiday* (*estimated)", - "2048-09-21": "Eid al-Adha Holiday* (*estimated)", - "2048-10-09": "Islamic New Year* (*estimated)", - "2048-10-18": "Ashura* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr Holiday (estimated)", + "2048-07-14": "Eid al-Fitr Holiday (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha Holiday (estimated)", + "2048-09-21": "Eid al-Adha Holiday (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-10-18": "Ashura (estimated)", "2048-11-01": "Revolution Day", - "2048-12-18": "Prophet's Birthday* (*estimated)", + "2048-12-18": "Prophet's Birthday (estimated)", "2049-01-01": "New Year's Day", "2049-01-12": "Amazigh New Year", "2049-05-01": "Labor Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", - "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr Holiday (estimated)", + "2049-07-03": "Eid al-Fitr Holiday (estimated)", "2049-07-05": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha Holiday* (*estimated)", - "2049-09-10": "Eid al-Adha Holiday* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", - "2049-10-07": "Ashura* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha Holiday (estimated)", + "2049-09-10": "Eid al-Adha Holiday (estimated)", + "2049-09-28": "Islamic New Year (estimated)", + "2049-10-07": "Ashura (estimated)", "2049-11-01": "Revolution Day", - "2049-12-07": "Prophet's Birthday* (*estimated)", + "2049-12-07": "Prophet's Birthday (estimated)", "2050-01-01": "New Year's Day", "2050-01-12": "Amazigh New Year", "2050-05-01": "Labor Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", - "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr Holiday (estimated)", + "2050-06-22": "Eid al-Fitr Holiday (estimated)", "2050-07-05": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha Holiday* (*estimated)", - "2050-08-30": "Eid al-Adha Holiday* (*estimated)", - "2050-09-17": "Islamic New Year* (*estimated)", - "2050-09-26": "Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha Holiday (estimated)", + "2050-08-30": "Eid al-Adha Holiday (estimated)", + "2050-09-17": "Islamic New Year (estimated)", + "2050-09-26": "Ashura (estimated)", "2050-11-01": "Revolution Day", - "2050-11-26": "Prophet's Birthday* (*estimated)" + "2050-11-26": "Prophet's Birthday (estimated)" } diff --git a/snapshots/countries/EG_COMMON.json b/snapshots/countries/EG_COMMON.json index 4c6056ad9..c9d233efb 100644 --- a/snapshots/countries/EG_COMMON.json +++ b/snapshots/countries/EG_COMMON.json @@ -1,1063 +1,1063 @@ { - "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-01-01": "New Year's Day; Prophet's Birthday (estimated)", "1950-01-07": "Coptic Christmas", "1950-04-09": "Coptic Easter - Orthodox Easter", "1950-04-10": "Sham El Nessim", "1950-05-01": "Labor Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", - "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", - "1950-09-22": "Arafat Day* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha Holiday* (*estimated)", - "1950-09-25": "Eid al-Adha Holiday* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr Holiday (estimated)", + "1950-07-18": "Eid al-Fitr Holiday (estimated)", + "1950-09-22": "Arafat Day (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha Holiday (estimated)", + "1950-09-25": "Eid al-Adha Holiday (estimated)", "1950-10-06": "Armed Forces Day", - "1950-10-13": "Islamic New Year* (*estimated)", - "1950-12-22": "Prophet's Birthday* (*estimated)", + "1950-10-13": "Islamic New Year (estimated)", + "1950-12-22": "Prophet's Birthday (estimated)", "1951-01-01": "New Year's Day", "1951-01-07": "Coptic Christmas", "1951-04-29": "Coptic Easter - Orthodox Easter", "1951-04-30": "Sham El Nessim", "1951-05-01": "Labor Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", - "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", - "1951-09-11": "Arafat Day* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha Holiday* (*estimated)", - "1951-09-14": "Eid al-Adha Holiday* (*estimated)", - "1951-10-02": "Islamic New Year* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Eid al-Fitr Holiday (estimated)", + "1951-07-08": "Eid al-Fitr Holiday (estimated)", + "1951-09-11": "Arafat Day (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha Holiday (estimated)", + "1951-09-14": "Eid al-Adha Holiday (estimated)", + "1951-10-02": "Islamic New Year (estimated)", "1951-10-06": "Armed Forces Day", - "1951-12-11": "Prophet's Birthday* (*estimated)", + "1951-12-11": "Prophet's Birthday (estimated)", "1952-01-01": "New Year's Day", "1952-01-07": "Coptic Christmas", "1952-04-20": "Coptic Easter - Orthodox Easter", "1952-04-21": "Sham El Nessim", "1952-05-01": "Labor Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", - "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", - "1952-08-30": "Arafat Day* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha Holiday* (*estimated)", - "1952-09-02": "Eid al-Adha Holiday* (*estimated)", - "1952-09-21": "Islamic New Year* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr Holiday (estimated)", + "1952-06-25": "Eid al-Fitr Holiday (estimated)", + "1952-08-30": "Arafat Day (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha Holiday (estimated)", + "1952-09-02": "Eid al-Adha Holiday (estimated)", + "1952-09-21": "Islamic New Year (estimated)", "1952-10-06": "Armed Forces Day", - "1952-11-30": "Prophet's Birthday* (*estimated)", + "1952-11-30": "Prophet's Birthday (estimated)", "1953-01-01": "New Year's Day", "1953-01-07": "Coptic Christmas", "1953-04-05": "Coptic Easter - Orthodox Easter", "1953-04-06": "Sham El Nessim", "1953-05-01": "Labor Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", - "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr Holiday (estimated)", + "1953-06-15": "Eid al-Fitr Holiday (estimated)", "1953-07-23": "July 23 Revolution Day", - "1953-08-19": "Arafat Day* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha Holiday* (*estimated)", - "1953-08-22": "Eid al-Adha Holiday* (*estimated)", - "1953-09-10": "Islamic New Year* (*estimated)", + "1953-08-19": "Arafat Day (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha Holiday (estimated)", + "1953-08-22": "Eid al-Adha Holiday (estimated)", + "1953-09-10": "Islamic New Year (estimated)", "1953-10-06": "Armed Forces Day", - "1953-11-19": "Prophet's Birthday* (*estimated)", + "1953-11-19": "Prophet's Birthday (estimated)", "1954-01-01": "New Year's Day", "1954-01-07": "Coptic Christmas", "1954-04-25": "Coptic Easter - Orthodox Easter", "1954-04-26": "Sham El Nessim", "1954-05-01": "Labor Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", - "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr Holiday (estimated)", + "1954-06-04": "Eid al-Fitr Holiday (estimated)", "1954-07-23": "July 23 Revolution Day", - "1954-08-08": "Arafat Day* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha Holiday* (*estimated)", - "1954-08-11": "Eid al-Adha Holiday* (*estimated)", - "1954-08-30": "Islamic New Year* (*estimated)", + "1954-08-08": "Arafat Day (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha Holiday (estimated)", + "1954-08-11": "Eid al-Adha Holiday (estimated)", + "1954-08-30": "Islamic New Year (estimated)", "1954-10-06": "Armed Forces Day", - "1954-11-08": "Prophet's Birthday* (*estimated)", + "1954-11-08": "Prophet's Birthday (estimated)", "1955-01-01": "New Year's Day", "1955-01-07": "Coptic Christmas", "1955-04-17": "Coptic Easter - Orthodox Easter", "1955-04-18": "Sham El Nessim", "1955-05-01": "Labor Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", - "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr Holiday (estimated)", + "1955-05-25": "Eid al-Fitr Holiday (estimated)", "1955-07-23": "July 23 Revolution Day", - "1955-07-29": "Arafat Day* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha Holiday* (*estimated)", - "1955-08-01": "Eid al-Adha Holiday* (*estimated)", - "1955-08-20": "Islamic New Year* (*estimated)", + "1955-07-29": "Arafat Day (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha Holiday (estimated)", + "1955-08-01": "Eid al-Adha Holiday (estimated)", + "1955-08-20": "Islamic New Year (estimated)", "1955-10-06": "Armed Forces Day", - "1955-10-29": "Prophet's Birthday* (*estimated)", + "1955-10-29": "Prophet's Birthday (estimated)", "1956-01-01": "New Year's Day", "1956-01-07": "Coptic Christmas", "1956-05-01": "Labor Day", "1956-05-06": "Coptic Easter - Orthodox Easter", "1956-05-07": "Sham El Nessim", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", - "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", - "1956-07-18": "Arafat Day* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha Holiday* (*estimated)", - "1956-07-21": "Eid al-Adha Holiday* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr Holiday (estimated)", + "1956-05-13": "Eid al-Fitr Holiday (estimated)", + "1956-07-18": "Arafat Day (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha Holiday (estimated)", + "1956-07-21": "Eid al-Adha Holiday (estimated)", "1956-07-23": "July 23 Revolution Day", - "1956-08-08": "Islamic New Year* (*estimated)", + "1956-08-08": "Islamic New Year (estimated)", "1956-10-06": "Armed Forces Day", - "1956-10-17": "Prophet's Birthday* (*estimated)", + "1956-10-17": "Prophet's Birthday (estimated)", "1957-01-01": "New Year's Day", "1957-01-07": "Coptic Christmas", "1957-04-21": "Coptic Easter - Orthodox Easter", "1957-04-22": "Sham El Nessim", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", - "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", - "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", - "1957-07-07": "Arafat Day* (*estimated)", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha Holiday* (*estimated)", - "1957-07-10": "Eid al-Adha Holiday* (*estimated)", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", + "1957-05-02": "Eid al-Fitr Holiday (estimated)", + "1957-05-03": "Eid al-Fitr Holiday (estimated)", + "1957-07-07": "Arafat Day (estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha Holiday (estimated)", + "1957-07-10": "Eid al-Adha Holiday (estimated)", "1957-07-23": "July 23 Revolution Day", - "1957-07-28": "Islamic New Year* (*estimated)", - "1957-10-06": "Armed Forces Day; Prophet's Birthday* (*estimated)", + "1957-07-28": "Islamic New Year (estimated)", + "1957-10-06": "Armed Forces Day; Prophet's Birthday (estimated)", "1958-01-01": "New Year's Day", "1958-01-07": "Coptic Christmas", "1958-04-13": "Coptic Easter - Orthodox Easter", "1958-04-14": "Sham El Nessim", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", - "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr Holiday (estimated)", + "1958-04-22": "Eid al-Fitr Holiday (estimated)", "1958-05-01": "Labor Day", - "1958-06-26": "Arafat Day* (*estimated)", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha Holiday* (*estimated)", - "1958-06-29": "Eid al-Adha Holiday* (*estimated)", - "1958-07-18": "Islamic New Year* (*estimated)", + "1958-06-26": "Arafat Day (estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha Holiday (estimated)", + "1958-06-29": "Eid al-Adha Holiday (estimated)", + "1958-07-18": "Islamic New Year (estimated)", "1958-07-23": "July 23 Revolution Day", - "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-09-26": "Prophet's Birthday (estimated)", "1958-10-06": "Armed Forces Day", "1959-01-01": "New Year's Day", "1959-01-07": "Coptic Christmas", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", - "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr Holiday (estimated)", + "1959-04-12": "Eid al-Fitr Holiday (estimated)", "1959-05-01": "Labor Day", "1959-05-03": "Coptic Easter - Orthodox Easter", "1959-05-04": "Sham El Nessim", - "1959-06-16": "Arafat Day* (*estimated)", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha Holiday* (*estimated)", - "1959-06-19": "Eid al-Adha Holiday* (*estimated)", - "1959-07-07": "Islamic New Year* (*estimated)", + "1959-06-16": "Arafat Day (estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha Holiday (estimated)", + "1959-06-19": "Eid al-Adha Holiday (estimated)", + "1959-07-07": "Islamic New Year (estimated)", "1959-07-23": "July 23 Revolution Day", - "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-09-15": "Prophet's Birthday (estimated)", "1959-10-06": "Armed Forces Day", "1960-01-01": "New Year's Day", "1960-01-07": "Coptic Christmas", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", - "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr Holiday (estimated)", + "1960-03-30": "Eid al-Fitr Holiday (estimated)", "1960-04-17": "Coptic Easter - Orthodox Easter", "1960-04-18": "Sham El Nessim", "1960-05-01": "Labor Day", - "1960-06-03": "Arafat Day* (*estimated)", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha Holiday* (*estimated)", - "1960-06-06": "Eid al-Adha Holiday* (*estimated)", - "1960-06-25": "Islamic New Year* (*estimated)", + "1960-06-03": "Arafat Day (estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha Holiday (estimated)", + "1960-06-06": "Eid al-Adha Holiday (estimated)", + "1960-06-25": "Islamic New Year (estimated)", "1960-07-23": "July 23 Revolution Day", - "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-09-03": "Prophet's Birthday (estimated)", "1960-10-06": "Armed Forces Day", "1961-01-01": "New Year's Day", "1961-01-07": "Coptic Christmas", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", - "1961-03-20": "Eid al-Fitr Holiday* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr Holiday (estimated)", + "1961-03-20": "Eid al-Fitr Holiday (estimated)", "1961-04-09": "Coptic Easter - Orthodox Easter", "1961-04-10": "Sham El Nessim", "1961-05-01": "Labor Day", - "1961-05-24": "Arafat Day* (*estimated)", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha Holiday* (*estimated)", - "1961-05-27": "Eid al-Adha Holiday* (*estimated)", - "1961-06-14": "Islamic New Year* (*estimated)", + "1961-05-24": "Arafat Day (estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha Holiday (estimated)", + "1961-05-27": "Eid al-Adha Holiday (estimated)", + "1961-06-14": "Islamic New Year (estimated)", "1961-07-23": "July 23 Revolution Day", - "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-08-23": "Prophet's Birthday (estimated)", "1961-10-06": "Armed Forces Day", "1962-01-01": "New Year's Day", "1962-01-07": "Coptic Christmas", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", - "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr Holiday (estimated)", + "1962-03-09": "Eid al-Fitr Holiday (estimated)", "1962-04-29": "Coptic Easter - Orthodox Easter", "1962-04-30": "Sham El Nessim", "1962-05-01": "Labor Day", - "1962-05-13": "Arafat Day* (*estimated)", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha Holiday* (*estimated)", - "1962-05-16": "Eid al-Adha Holiday* (*estimated)", - "1962-06-03": "Islamic New Year* (*estimated)", + "1962-05-13": "Arafat Day (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha Holiday (estimated)", + "1962-05-16": "Eid al-Adha Holiday (estimated)", + "1962-06-03": "Islamic New Year (estimated)", "1962-07-23": "July 23 Revolution Day", - "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-08-12": "Prophet's Birthday (estimated)", "1962-10-06": "Armed Forces Day", "1963-01-01": "New Year's Day", "1963-01-07": "Coptic Christmas", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", - "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr Holiday (estimated)", + "1963-02-26": "Eid al-Fitr Holiday (estimated)", "1963-04-14": "Coptic Easter - Orthodox Easter", "1963-04-15": "Sham El Nessim", "1963-05-01": "Labor Day", - "1963-05-02": "Arafat Day* (*estimated)", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha Holiday* (*estimated)", - "1963-05-05": "Eid al-Adha Holiday* (*estimated)", - "1963-05-24": "Islamic New Year* (*estimated)", + "1963-05-02": "Arafat Day (estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha Holiday (estimated)", + "1963-05-05": "Eid al-Adha Holiday (estimated)", + "1963-05-24": "Islamic New Year (estimated)", "1963-07-23": "July 23 Revolution Day", - "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-08-02": "Prophet's Birthday (estimated)", "1963-10-06": "Armed Forces Day", "1964-01-01": "New Year's Day", "1964-01-07": "Coptic Christmas", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", - "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", - "1964-04-21": "Arafat Day* (*estimated)", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha Holiday* (*estimated)", - "1964-04-24": "Eid al-Adha Holiday* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr Holiday (estimated)", + "1964-02-16": "Eid al-Fitr Holiday (estimated)", + "1964-04-21": "Arafat Day (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha Holiday (estimated)", + "1964-04-24": "Eid al-Adha Holiday (estimated)", "1964-05-01": "Labor Day", "1964-05-03": "Coptic Easter - Orthodox Easter", "1964-05-04": "Sham El Nessim", - "1964-05-12": "Islamic New Year* (*estimated)", - "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-05-12": "Islamic New Year (estimated)", + "1964-07-21": "Prophet's Birthday (estimated)", "1964-07-23": "July 23 Revolution Day", "1964-10-06": "Armed Forces Day", "1965-01-01": "New Year's Day", "1965-01-07": "Coptic Christmas", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", - "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", - "1965-04-10": "Arafat Day* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha Holiday* (*estimated)", - "1965-04-13": "Eid al-Adha Holiday* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-02-03": "Eid al-Fitr Holiday (estimated)", + "1965-02-04": "Eid al-Fitr Holiday (estimated)", + "1965-04-10": "Arafat Day (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha Holiday (estimated)", + "1965-04-13": "Eid al-Adha Holiday (estimated)", "1965-04-25": "Coptic Easter - Orthodox Easter", "1965-04-26": "Sham El Nessim", - "1965-05-01": "Islamic New Year* (*estimated); Labor Day", - "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-05-01": "Islamic New Year (estimated); Labor Day", + "1965-07-10": "Prophet's Birthday (estimated)", "1965-07-23": "July 23 Revolution Day", "1965-10-06": "Armed Forces Day", "1966-01-01": "New Year's Day", "1966-01-07": "Coptic Christmas", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", - "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", - "1966-03-31": "Arafat Day* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha Holiday* (*estimated)", - "1966-04-03": "Eid al-Adha Holiday* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr Holiday (estimated)", + "1966-01-24": "Eid al-Fitr Holiday (estimated)", + "1966-03-31": "Arafat Day (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha Holiday (estimated)", + "1966-04-03": "Eid al-Adha Holiday (estimated)", "1966-04-10": "Coptic Easter - Orthodox Easter", "1966-04-11": "Sham El Nessim", - "1966-04-21": "Islamic New Year* (*estimated)", + "1966-04-21": "Islamic New Year (estimated)", "1966-05-01": "Labor Day", - "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-07-01": "Prophet's Birthday (estimated)", "1966-07-23": "July 23 Revolution Day", "1966-10-06": "Armed Forces Day", "1967-01-01": "New Year's Day", "1967-01-07": "Coptic Christmas", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", - "1967-01-14": "Eid al-Fitr Holiday* (*estimated)", - "1967-03-20": "Arafat Day* (*estimated)", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha Holiday* (*estimated)", - "1967-03-23": "Eid al-Adha Holiday* (*estimated)", - "1967-04-11": "Islamic New Year* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr Holiday (estimated)", + "1967-01-14": "Eid al-Fitr Holiday (estimated)", + "1967-03-20": "Arafat Day (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha Holiday (estimated)", + "1967-03-23": "Eid al-Adha Holiday (estimated)", + "1967-04-11": "Islamic New Year (estimated)", "1967-04-30": "Coptic Easter - Orthodox Easter", "1967-05-01": "Labor Day; Sham El Nessim", - "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-06-19": "Prophet's Birthday (estimated)", "1967-07-23": "July 23 Revolution Day", "1967-10-06": "Armed Forces Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", - "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday (estimated)", + "1968-01-03": "Eid al-Fitr Holiday (estimated)", "1968-01-07": "Coptic Christmas", - "1968-03-08": "Arafat Day* (*estimated)", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha Holiday* (*estimated)", - "1968-03-11": "Eid al-Adha Holiday* (*estimated)", - "1968-03-30": "Islamic New Year* (*estimated)", + "1968-03-08": "Arafat Day (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha Holiday (estimated)", + "1968-03-11": "Eid al-Adha Holiday (estimated)", + "1968-03-30": "Islamic New Year (estimated)", "1968-04-21": "Coptic Easter - Orthodox Easter", "1968-04-22": "Sham El Nessim", "1968-05-01": "Labor Day", - "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-06-08": "Prophet's Birthday (estimated)", "1968-07-23": "July 23 Revolution Day", "1968-10-06": "Armed Forces Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", - "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr Holiday (estimated)", + "1968-12-23": "Eid al-Fitr Holiday (estimated)", "1969-01-01": "New Year's Day", "1969-01-07": "Coptic Christmas", - "1969-02-26": "Arafat Day* (*estimated)", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha Holiday* (*estimated)", - "1969-03-01": "Eid al-Adha Holiday* (*estimated)", - "1969-03-19": "Islamic New Year* (*estimated)", + "1969-02-26": "Arafat Day (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha Holiday (estimated)", + "1969-03-01": "Eid al-Adha Holiday (estimated)", + "1969-03-19": "Islamic New Year (estimated)", "1969-04-13": "Coptic Easter - Orthodox Easter", "1969-04-14": "Sham El Nessim", "1969-05-01": "Labor Day", - "1969-05-28": "Prophet's Birthday* (*estimated)", + "1969-05-28": "Prophet's Birthday (estimated)", "1969-07-23": "July 23 Revolution Day", "1969-10-06": "Armed Forces Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", - "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr Holiday (estimated)", + "1969-12-12": "Eid al-Fitr Holiday (estimated)", "1970-01-01": "New Year's Day", "1970-01-07": "Coptic Christmas", - "1970-02-15": "Arafat Day* (*estimated)", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha Holiday* (*estimated)", - "1970-02-18": "Eid al-Adha Holiday* (*estimated)", - "1970-03-09": "Islamic New Year* (*estimated)", + "1970-02-15": "Arafat Day (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha Holiday (estimated)", + "1970-02-18": "Eid al-Adha Holiday (estimated)", + "1970-03-09": "Islamic New Year (estimated)", "1970-04-26": "Coptic Easter - Orthodox Easter", "1970-04-27": "Sham El Nessim", "1970-05-01": "Labor Day", - "1970-05-18": "Prophet's Birthday* (*estimated)", + "1970-05-18": "Prophet's Birthday (estimated)", "1970-07-23": "July 23 Revolution Day", "1970-10-06": "Armed Forces Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", - "1970-12-02": "Eid al-Fitr Holiday* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr Holiday (estimated)", + "1970-12-02": "Eid al-Fitr Holiday (estimated)", "1971-01-01": "New Year's Day", "1971-01-07": "Coptic Christmas", - "1971-02-05": "Arafat Day* (*estimated)", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha Holiday* (*estimated)", - "1971-02-08": "Eid al-Adha Holiday* (*estimated)", - "1971-02-26": "Islamic New Year* (*estimated)", + "1971-02-05": "Arafat Day (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha Holiday (estimated)", + "1971-02-08": "Eid al-Adha Holiday (estimated)", + "1971-02-26": "Islamic New Year (estimated)", "1971-04-18": "Coptic Easter - Orthodox Easter", "1971-04-19": "Sham El Nessim", "1971-05-01": "Labor Day", - "1971-05-07": "Prophet's Birthday* (*estimated)", + "1971-05-07": "Prophet's Birthday (estimated)", "1971-07-23": "July 23 Revolution Day", "1971-10-06": "Armed Forces Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", - "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr Holiday (estimated)", + "1971-11-21": "Eid al-Fitr Holiday (estimated)", "1972-01-01": "New Year's Day", "1972-01-07": "Coptic Christmas", - "1972-01-25": "Arafat Day* (*estimated)", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha Holiday* (*estimated)", - "1972-01-28": "Eid al-Adha Holiday* (*estimated)", - "1972-02-16": "Islamic New Year* (*estimated)", + "1972-01-25": "Arafat Day (estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha Holiday (estimated)", + "1972-01-28": "Eid al-Adha Holiday (estimated)", + "1972-02-16": "Islamic New Year (estimated)", "1972-04-09": "Coptic Easter - Orthodox Easter", "1972-04-10": "Sham El Nessim", - "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-04-25": "Prophet's Birthday (estimated)", "1972-05-01": "Labor Day", "1972-07-23": "July 23 Revolution Day", "1972-10-06": "Armed Forces Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", - "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr Holiday (estimated)", + "1972-11-09": "Eid al-Fitr Holiday (estimated)", "1973-01-01": "New Year's Day", "1973-01-07": "Coptic Christmas", - "1973-01-13": "Arafat Day* (*estimated)", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha Holiday* (*estimated)", - "1973-01-16": "Eid al-Adha Holiday* (*estimated)", - "1973-02-04": "Islamic New Year* (*estimated)", - "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-01-13": "Arafat Day (estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha Holiday (estimated)", + "1973-01-16": "Eid al-Adha Holiday (estimated)", + "1973-02-04": "Islamic New Year (estimated)", + "1973-04-15": "Prophet's Birthday (estimated)", "1973-04-29": "Coptic Easter - Orthodox Easter", "1973-04-30": "Sham El Nessim", "1973-05-01": "Labor Day", "1973-07-23": "July 23 Revolution Day", "1973-10-06": "Armed Forces Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", - "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr Holiday (estimated)", + "1973-10-29": "Eid al-Fitr Holiday (estimated)", "1974-01-01": "New Year's Day", - "1974-01-02": "Arafat Day* (*estimated)", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha Holiday* (*estimated)", - "1974-01-05": "Eid al-Adha Holiday* (*estimated)", + "1974-01-02": "Arafat Day (estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha Holiday (estimated)", + "1974-01-05": "Eid al-Adha Holiday (estimated)", "1974-01-07": "Coptic Christmas", - "1974-01-24": "Islamic New Year* (*estimated)", - "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-01-24": "Islamic New Year (estimated)", + "1974-04-04": "Prophet's Birthday (estimated)", "1974-04-14": "Coptic Easter - Orthodox Easter", "1974-04-15": "Sham El Nessim", "1974-05-01": "Labor Day", "1974-07-23": "July 23 Revolution Day", "1974-10-06": "Armed Forces Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", - "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", - "1974-12-23": "Arafat Day* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Eid al-Adha Holiday* (*estimated)", - "1974-12-26": "Eid al-Adha Holiday* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr Holiday (estimated)", + "1974-10-18": "Eid al-Fitr Holiday (estimated)", + "1974-12-23": "Arafat Day (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Eid al-Adha Holiday (estimated)", + "1974-12-26": "Eid al-Adha Holiday (estimated)", "1975-01-01": "New Year's Day", "1975-01-07": "Coptic Christmas", - "1975-01-13": "Islamic New Year* (*estimated)", - "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-01-13": "Islamic New Year (estimated)", + "1975-03-24": "Prophet's Birthday (estimated)", "1975-05-01": "Labor Day", "1975-05-04": "Coptic Easter - Orthodox Easter", "1975-05-05": "Sham El Nessim", "1975-07-23": "July 23 Revolution Day", - "1975-10-06": "Armed Forces Day; Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", - "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", - "1975-12-12": "Arafat Day* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha Holiday* (*estimated)", - "1975-12-15": "Eid al-Adha Holiday* (*estimated)", + "1975-10-06": "Armed Forces Day; Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr Holiday (estimated)", + "1975-10-08": "Eid al-Fitr Holiday (estimated)", + "1975-12-12": "Arafat Day (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha Holiday (estimated)", + "1975-12-15": "Eid al-Adha Holiday (estimated)", "1976-01-01": "New Year's Day", - "1976-01-02": "Islamic New Year* (*estimated)", + "1976-01-02": "Islamic New Year (estimated)", "1976-01-07": "Coptic Christmas", - "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-03-12": "Prophet's Birthday (estimated)", "1976-04-25": "Coptic Easter - Orthodox Easter", "1976-04-26": "Sham El Nessim", "1976-05-01": "Labor Day", "1976-07-23": "July 23 Revolution Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", - "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr Holiday (estimated)", + "1976-09-26": "Eid al-Fitr Holiday (estimated)", "1976-10-06": "Armed Forces Day", - "1976-11-30": "Arafat Day* (*estimated)", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha Holiday* (*estimated)", - "1976-12-03": "Eid al-Adha Holiday* (*estimated)", - "1976-12-22": "Islamic New Year* (*estimated)", + "1976-11-30": "Arafat Day (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha Holiday (estimated)", + "1976-12-03": "Eid al-Adha Holiday (estimated)", + "1976-12-22": "Islamic New Year (estimated)", "1977-01-01": "New Year's Day", "1977-01-07": "Coptic Christmas", - "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-03-02": "Prophet's Birthday (estimated)", "1977-04-10": "Coptic Easter - Orthodox Easter", "1977-04-11": "Sham El Nessim", "1977-05-01": "Labor Day", "1977-07-23": "July 23 Revolution Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", - "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr Holiday (estimated)", + "1977-09-16": "Eid al-Fitr Holiday (estimated)", "1977-10-06": "Armed Forces Day", - "1977-11-20": "Arafat Day* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha Holiday* (*estimated)", - "1977-11-23": "Eid al-Adha Holiday* (*estimated)", - "1977-12-11": "Islamic New Year* (*estimated)", + "1977-11-20": "Arafat Day (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha Holiday (estimated)", + "1977-11-23": "Eid al-Adha Holiday (estimated)", + "1977-12-11": "Islamic New Year (estimated)", "1978-01-01": "New Year's Day", "1978-01-07": "Coptic Christmas", - "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-02-19": "Prophet's Birthday (estimated)", "1978-04-30": "Coptic Easter - Orthodox Easter", "1978-05-01": "Labor Day; Sham El Nessim", "1978-07-23": "July 23 Revolution Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", - "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr Holiday (estimated)", + "1978-09-05": "Eid al-Fitr Holiday (estimated)", "1978-10-06": "Armed Forces Day", - "1978-11-09": "Arafat Day* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha Holiday* (*estimated)", - "1978-11-12": "Eid al-Adha Holiday* (*estimated)", - "1978-12-01": "Islamic New Year* (*estimated)", + "1978-11-09": "Arafat Day (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha Holiday (estimated)", + "1978-11-12": "Eid al-Adha Holiday (estimated)", + "1978-12-01": "Islamic New Year (estimated)", "1979-01-01": "New Year's Day", "1979-01-07": "Coptic Christmas", - "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-02-09": "Prophet's Birthday (estimated)", "1979-04-22": "Coptic Easter - Orthodox Easter", "1979-04-23": "Sham El Nessim", "1979-05-01": "Labor Day", "1979-07-23": "July 23 Revolution Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", - "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr Holiday (estimated)", + "1979-08-25": "Eid al-Fitr Holiday (estimated)", "1979-10-06": "Armed Forces Day", - "1979-10-30": "Arafat Day* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha Holiday* (*estimated)", - "1979-11-02": "Eid al-Adha Holiday* (*estimated)", - "1979-11-20": "Islamic New Year* (*estimated)", + "1979-10-30": "Arafat Day (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha Holiday (estimated)", + "1979-11-02": "Eid al-Adha Holiday (estimated)", + "1979-11-20": "Islamic New Year (estimated)", "1980-01-01": "New Year's Day", "1980-01-07": "Coptic Christmas", - "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-01-30": "Prophet's Birthday (estimated)", "1980-04-06": "Coptic Easter - Orthodox Easter", "1980-04-07": "Sham El Nessim", "1980-05-01": "Labor Day", "1980-07-23": "July 23 Revolution Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", - "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr Holiday (estimated)", + "1980-08-14": "Eid al-Fitr Holiday (estimated)", "1980-10-06": "Armed Forces Day", - "1980-10-18": "Arafat Day* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha Holiday* (*estimated)", - "1980-10-21": "Eid al-Adha Holiday* (*estimated)", - "1980-11-09": "Islamic New Year* (*estimated)", + "1980-10-18": "Arafat Day (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha Holiday (estimated)", + "1980-10-21": "Eid al-Adha Holiday (estimated)", + "1980-11-09": "Islamic New Year (estimated)", "1981-01-01": "New Year's Day", "1981-01-07": "Coptic Christmas", - "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-01-18": "Prophet's Birthday (estimated)", "1981-04-26": "Coptic Easter - Orthodox Easter", "1981-04-27": "Sham El Nessim", "1981-05-01": "Labor Day", "1981-07-23": "July 23 Revolution Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", - "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr Holiday (estimated)", + "1981-08-03": "Eid al-Fitr Holiday (estimated)", "1981-10-06": "Armed Forces Day", - "1981-10-07": "Arafat Day* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha Holiday* (*estimated)", - "1981-10-10": "Eid al-Adha Holiday* (*estimated)", - "1981-10-28": "Islamic New Year* (*estimated)", + "1981-10-07": "Arafat Day (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha Holiday (estimated)", + "1981-10-10": "Eid al-Adha Holiday (estimated)", + "1981-10-28": "Islamic New Year (estimated)", "1982-01-01": "New Year's Day", - "1982-01-07": "Coptic Christmas; Prophet's Birthday* (*estimated)", + "1982-01-07": "Coptic Christmas; Prophet's Birthday (estimated)", "1982-04-18": "Coptic Easter - Orthodox Easter", "1982-04-19": "Sham El Nessim", "1982-05-01": "Labor Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", - "1982-07-23": "Eid al-Fitr Holiday* (*estimated); July 23 Revolution Day", - "1982-09-26": "Arafat Day* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha Holiday* (*estimated)", - "1982-09-29": "Eid al-Adha Holiday* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr Holiday (estimated)", + "1982-07-23": "Eid al-Fitr Holiday (estimated); July 23 Revolution Day", + "1982-09-26": "Arafat Day (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha Holiday (estimated)", + "1982-09-29": "Eid al-Adha Holiday (estimated)", "1982-10-06": "Armed Forces Day", - "1982-10-18": "Islamic New Year* (*estimated)", - "1982-12-27": "Prophet's Birthday* (*estimated)", + "1982-10-18": "Islamic New Year (estimated)", + "1982-12-27": "Prophet's Birthday (estimated)", "1983-01-01": "New Year's Day", "1983-01-07": "Coptic Christmas", "1983-04-25": "Sinai Liberation Day", "1983-05-01": "Labor Day", "1983-05-08": "Coptic Easter - Orthodox Easter", "1983-05-09": "Sham El Nessim", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", - "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr Holiday (estimated)", + "1983-07-13": "Eid al-Fitr Holiday (estimated)", "1983-07-23": "July 23 Revolution Day", - "1983-09-16": "Arafat Day* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha Holiday* (*estimated)", - "1983-09-19": "Eid al-Adha Holiday* (*estimated)", + "1983-09-16": "Arafat Day (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha Holiday (estimated)", + "1983-09-19": "Eid al-Adha Holiday (estimated)", "1983-10-06": "Armed Forces Day", - "1983-10-07": "Islamic New Year* (*estimated)", - "1983-12-16": "Prophet's Birthday* (*estimated)", + "1983-10-07": "Islamic New Year (estimated)", + "1983-12-16": "Prophet's Birthday (estimated)", "1984-01-01": "New Year's Day", "1984-01-07": "Coptic Christmas", "1984-04-22": "Coptic Easter - Orthodox Easter", "1984-04-23": "Sham El Nessim", "1984-04-25": "Sinai Liberation Day", "1984-05-01": "Labor Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", - "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr Holiday (estimated)", + "1984-07-02": "Eid al-Fitr Holiday (estimated)", "1984-07-23": "July 23 Revolution Day", - "1984-09-04": "Arafat Day* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha Holiday* (*estimated)", - "1984-09-07": "Eid al-Adha Holiday* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", + "1984-09-04": "Arafat Day (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha Holiday (estimated)", + "1984-09-07": "Eid al-Adha Holiday (estimated)", + "1984-09-26": "Islamic New Year (estimated)", "1984-10-06": "Armed Forces Day", - "1984-12-04": "Prophet's Birthday* (*estimated)", + "1984-12-04": "Prophet's Birthday (estimated)", "1985-01-01": "New Year's Day", "1985-01-07": "Coptic Christmas", "1985-04-14": "Coptic Easter - Orthodox Easter", "1985-04-15": "Sham El Nessim", "1985-04-25": "Sinai Liberation Day", "1985-05-01": "Labor Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", - "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr Holiday (estimated)", + "1985-06-21": "Eid al-Fitr Holiday (estimated)", "1985-07-23": "July 23 Revolution Day", - "1985-08-25": "Arafat Day* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha Holiday* (*estimated)", - "1985-08-28": "Eid al-Adha Holiday* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", + "1985-08-25": "Arafat Day (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha Holiday (estimated)", + "1985-08-28": "Eid al-Adha Holiday (estimated)", + "1985-09-15": "Islamic New Year (estimated)", "1985-10-06": "Armed Forces Day", - "1985-11-24": "Prophet's Birthday* (*estimated)", + "1985-11-24": "Prophet's Birthday (estimated)", "1986-01-01": "New Year's Day", "1986-01-07": "Coptic Christmas", "1986-04-25": "Sinai Liberation Day", "1986-05-01": "Labor Day", "1986-05-04": "Coptic Easter - Orthodox Easter", "1986-05-05": "Sham El Nessim", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", - "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr Holiday (estimated)", + "1986-06-10": "Eid al-Fitr Holiday (estimated)", "1986-07-23": "July 23 Revolution Day", - "1986-08-14": "Arafat Day* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha Holiday* (*estimated)", - "1986-08-17": "Eid al-Adha Holiday* (*estimated)", - "1986-09-05": "Islamic New Year* (*estimated)", + "1986-08-14": "Arafat Day (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha Holiday (estimated)", + "1986-08-17": "Eid al-Adha Holiday (estimated)", + "1986-09-05": "Islamic New Year (estimated)", "1986-10-06": "Armed Forces Day", - "1986-11-14": "Prophet's Birthday* (*estimated)", + "1986-11-14": "Prophet's Birthday (estimated)", "1987-01-01": "New Year's Day", "1987-01-07": "Coptic Christmas", "1987-04-19": "Coptic Easter - Orthodox Easter", "1987-04-20": "Sham El Nessim", "1987-04-25": "Sinai Liberation Day", "1987-05-01": "Labor Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", - "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr Holiday (estimated)", + "1987-05-30": "Eid al-Fitr Holiday (estimated)", "1987-07-23": "July 23 Revolution Day", - "1987-08-03": "Arafat Day* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha Holiday* (*estimated)", - "1987-08-06": "Eid al-Adha Holiday* (*estimated)", - "1987-08-25": "Islamic New Year* (*estimated)", + "1987-08-03": "Arafat Day (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha Holiday (estimated)", + "1987-08-06": "Eid al-Adha Holiday (estimated)", + "1987-08-25": "Islamic New Year (estimated)", "1987-10-06": "Armed Forces Day", - "1987-11-03": "Prophet's Birthday* (*estimated)", + "1987-11-03": "Prophet's Birthday (estimated)", "1988-01-01": "New Year's Day", "1988-01-07": "Coptic Christmas", "1988-04-10": "Coptic Easter - Orthodox Easter", "1988-04-11": "Sham El Nessim", "1988-04-25": "Sinai Liberation Day", "1988-05-01": "Labor Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", - "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", - "1988-07-22": "Arafat Day* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated); July 23 Revolution Day", - "1988-07-24": "Eid al-Adha Holiday* (*estimated)", - "1988-07-25": "Eid al-Adha Holiday* (*estimated)", - "1988-08-13": "Islamic New Year* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr Holiday (estimated)", + "1988-05-18": "Eid al-Fitr Holiday (estimated)", + "1988-07-22": "Arafat Day (estimated)", + "1988-07-23": "Eid al-Adha (estimated); July 23 Revolution Day", + "1988-07-24": "Eid al-Adha Holiday (estimated)", + "1988-07-25": "Eid al-Adha Holiday (estimated)", + "1988-08-13": "Islamic New Year (estimated)", "1988-10-06": "Armed Forces Day", - "1988-10-22": "Prophet's Birthday* (*estimated)", + "1988-10-22": "Prophet's Birthday (estimated)", "1989-01-01": "New Year's Day", "1989-01-07": "Coptic Christmas", "1989-04-25": "Sinai Liberation Day", "1989-04-30": "Coptic Easter - Orthodox Easter", "1989-05-01": "Labor Day; Sham El Nessim", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", - "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", - "1989-07-12": "Arafat Day* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha Holiday* (*estimated)", - "1989-07-15": "Eid al-Adha Holiday* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr Holiday (estimated)", + "1989-05-08": "Eid al-Fitr Holiday (estimated)", + "1989-07-12": "Arafat Day (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha Holiday (estimated)", + "1989-07-15": "Eid al-Adha Holiday (estimated)", "1989-07-23": "July 23 Revolution Day", - "1989-08-02": "Islamic New Year* (*estimated)", + "1989-08-02": "Islamic New Year (estimated)", "1989-10-06": "Armed Forces Day", - "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-10-11": "Prophet's Birthday (estimated)", "1990-01-01": "New Year's Day", "1990-01-07": "Coptic Christmas", "1990-04-15": "Coptic Easter - Orthodox Easter", "1990-04-16": "Sham El Nessim", "1990-04-25": "Sinai Liberation Day", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", - "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr Holiday (estimated)", + "1990-04-28": "Eid al-Fitr Holiday (estimated)", "1990-05-01": "Labor Day", - "1990-07-01": "Arafat Day* (*estimated)", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha Holiday* (*estimated)", - "1990-07-04": "Eid al-Adha Holiday* (*estimated)", - "1990-07-23": "Islamic New Year* (*estimated); July 23 Revolution Day", - "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-07-01": "Arafat Day (estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha Holiday (estimated)", + "1990-07-04": "Eid al-Adha Holiday (estimated)", + "1990-07-23": "Islamic New Year (estimated); July 23 Revolution Day", + "1990-10-01": "Prophet's Birthday (estimated)", "1990-10-06": "Armed Forces Day", "1991-01-01": "New Year's Day", "1991-01-07": "Coptic Christmas", "1991-04-07": "Coptic Easter - Orthodox Easter", "1991-04-08": "Sham El Nessim", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", - "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr Holiday (estimated)", + "1991-04-17": "Eid al-Fitr Holiday (estimated)", "1991-04-25": "Sinai Liberation Day", "1991-05-01": "Labor Day", - "1991-06-21": "Arafat Day* (*estimated)", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha Holiday* (*estimated)", - "1991-06-24": "Eid al-Adha Holiday* (*estimated)", - "1991-07-12": "Islamic New Year* (*estimated)", + "1991-06-21": "Arafat Day (estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha Holiday (estimated)", + "1991-06-24": "Eid al-Adha Holiday (estimated)", + "1991-07-12": "Islamic New Year (estimated)", "1991-07-23": "July 23 Revolution Day", - "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-09-20": "Prophet's Birthday (estimated)", "1991-10-06": "Armed Forces Day", "1992-01-01": "New Year's Day", "1992-01-07": "Coptic Christmas", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", - "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr Holiday (estimated)", + "1992-04-06": "Eid al-Fitr Holiday (estimated)", "1992-04-25": "Sinai Liberation Day", "1992-04-26": "Coptic Easter - Orthodox Easter", "1992-04-27": "Sham El Nessim", "1992-05-01": "Labor Day", - "1992-06-10": "Arafat Day* (*estimated)", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha Holiday* (*estimated)", - "1992-06-13": "Eid al-Adha Holiday* (*estimated)", - "1992-07-01": "Islamic New Year* (*estimated)", + "1992-06-10": "Arafat Day (estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha Holiday (estimated)", + "1992-06-13": "Eid al-Adha Holiday (estimated)", + "1992-07-01": "Islamic New Year (estimated)", "1992-07-23": "July 23 Revolution Day", - "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-09-09": "Prophet's Birthday (estimated)", "1992-10-06": "Armed Forces Day", "1993-01-01": "New Year's Day", "1993-01-07": "Coptic Christmas", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", - "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr Holiday (estimated)", + "1993-03-26": "Eid al-Fitr Holiday (estimated)", "1993-04-18": "Coptic Easter - Orthodox Easter", "1993-04-19": "Sham El Nessim", "1993-04-25": "Sinai Liberation Day", "1993-05-01": "Labor Day", - "1993-05-30": "Arafat Day* (*estimated)", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha Holiday* (*estimated)", - "1993-06-02": "Eid al-Adha Holiday* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", + "1993-05-30": "Arafat Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha Holiday (estimated)", + "1993-06-02": "Eid al-Adha Holiday (estimated)", + "1993-06-21": "Islamic New Year (estimated)", "1993-07-23": "July 23 Revolution Day", - "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-08-29": "Prophet's Birthday (estimated)", "1993-10-06": "Armed Forces Day", "1994-01-01": "New Year's Day", "1994-01-07": "Coptic Christmas", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", - "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr Holiday (estimated)", + "1994-03-15": "Eid al-Fitr Holiday (estimated)", "1994-04-25": "Sinai Liberation Day", "1994-05-01": "Coptic Easter - Orthodox Easter; Labor Day", "1994-05-02": "Sham El Nessim", - "1994-05-19": "Arafat Day* (*estimated)", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha Holiday* (*estimated)", - "1994-05-22": "Eid al-Adha Holiday* (*estimated)", - "1994-06-10": "Islamic New Year* (*estimated)", + "1994-05-19": "Arafat Day (estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha Holiday (estimated)", + "1994-05-22": "Eid al-Adha Holiday (estimated)", + "1994-06-10": "Islamic New Year (estimated)", "1994-07-23": "July 23 Revolution Day", - "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-08-19": "Prophet's Birthday (estimated)", "1994-10-06": "Armed Forces Day", "1995-01-01": "New Year's Day", "1995-01-07": "Coptic Christmas", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", - "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr Holiday (estimated)", + "1995-03-04": "Eid al-Fitr Holiday (estimated)", "1995-04-23": "Coptic Easter - Orthodox Easter", "1995-04-24": "Sham El Nessim", "1995-04-25": "Sinai Liberation Day", "1995-05-01": "Labor Day", - "1995-05-08": "Arafat Day* (*estimated)", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha Holiday* (*estimated)", - "1995-05-11": "Eid al-Adha Holiday* (*estimated)", - "1995-05-30": "Islamic New Year* (*estimated)", + "1995-05-08": "Arafat Day (estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha Holiday (estimated)", + "1995-05-11": "Eid al-Adha Holiday (estimated)", + "1995-05-30": "Islamic New Year (estimated)", "1995-07-23": "July 23 Revolution Day", - "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-08-08": "Prophet's Birthday (estimated)", "1995-10-06": "Armed Forces Day", "1996-01-01": "New Year's Day", "1996-01-07": "Coptic Christmas", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", - "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr Holiday (estimated)", + "1996-02-21": "Eid al-Fitr Holiday (estimated)", "1996-04-14": "Coptic Easter - Orthodox Easter", "1996-04-15": "Sham El Nessim", "1996-04-25": "Sinai Liberation Day", - "1996-04-26": "Arafat Day* (*estimated)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha Holiday* (*estimated)", - "1996-04-29": "Eid al-Adha Holiday* (*estimated)", + "1996-04-26": "Arafat Day (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha Holiday (estimated)", + "1996-04-29": "Eid al-Adha Holiday (estimated)", "1996-05-01": "Labor Day", - "1996-05-18": "Islamic New Year* (*estimated)", + "1996-05-18": "Islamic New Year (estimated)", "1996-07-23": "July 23 Revolution Day", - "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-07-27": "Prophet's Birthday (estimated)", "1996-10-06": "Armed Forces Day", "1997-01-01": "New Year's Day", "1997-01-07": "Coptic Christmas", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", - "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", - "1997-04-16": "Arafat Day* (*estimated)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha Holiday* (*estimated)", - "1997-04-19": "Eid al-Adha Holiday* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr Holiday (estimated)", + "1997-02-10": "Eid al-Fitr Holiday (estimated)", + "1997-04-16": "Arafat Day (estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha Holiday (estimated)", + "1997-04-19": "Eid al-Adha Holiday (estimated)", "1997-04-25": "Sinai Liberation Day", "1997-04-27": "Coptic Easter - Orthodox Easter", "1997-04-28": "Sham El Nessim", "1997-05-01": "Labor Day", - "1997-05-07": "Islamic New Year* (*estimated)", - "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-05-07": "Islamic New Year (estimated)", + "1997-07-16": "Prophet's Birthday (estimated)", "1997-07-23": "July 23 Revolution Day", "1997-10-06": "Armed Forces Day", "1998-01-01": "New Year's Day", "1998-01-07": "Coptic Christmas", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", - "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", - "1998-04-06": "Arafat Day* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha Holiday* (*estimated)", - "1998-04-09": "Eid al-Adha Holiday* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr Holiday (estimated)", + "1998-01-31": "Eid al-Fitr Holiday (estimated)", + "1998-04-06": "Arafat Day (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha Holiday (estimated)", + "1998-04-09": "Eid al-Adha Holiday (estimated)", "1998-04-19": "Coptic Easter - Orthodox Easter", "1998-04-20": "Sham El Nessim", "1998-04-25": "Sinai Liberation Day", - "1998-04-27": "Islamic New Year* (*estimated)", + "1998-04-27": "Islamic New Year (estimated)", "1998-05-01": "Labor Day", - "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-07-06": "Prophet's Birthday (estimated)", "1998-07-23": "July 23 Revolution Day", "1998-10-06": "Armed Forces Day", "1999-01-01": "New Year's Day", "1999-01-07": "Coptic Christmas", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", - "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", - "1999-03-26": "Arafat Day* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha Holiday* (*estimated)", - "1999-03-29": "Eid al-Adha Holiday* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr Holiday (estimated)", + "1999-01-20": "Eid al-Fitr Holiday (estimated)", + "1999-03-26": "Arafat Day (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha Holiday (estimated)", + "1999-03-29": "Eid al-Adha Holiday (estimated)", "1999-04-11": "Coptic Easter - Orthodox Easter", "1999-04-12": "Sham El Nessim", - "1999-04-17": "Islamic New Year* (*estimated)", + "1999-04-17": "Islamic New Year (estimated)", "1999-04-25": "Sinai Liberation Day", "1999-05-01": "Labor Day", - "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-06-26": "Prophet's Birthday (estimated)", "1999-07-23": "July 23 Revolution Day", "1999-10-06": "Armed Forces Day", "2000-01-01": "New Year's Day", "2000-01-07": "Coptic Christmas", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", - "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", - "2000-03-15": "Arafat Day* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha Holiday* (*estimated)", - "2000-03-18": "Eid al-Adha Holiday* (*estimated)", - "2000-04-06": "Islamic New Year* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr Holiday (estimated)", + "2000-01-10": "Eid al-Fitr Holiday (estimated)", + "2000-03-15": "Arafat Day (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha Holiday (estimated)", + "2000-03-18": "Eid al-Adha Holiday (estimated)", + "2000-04-06": "Islamic New Year (estimated)", "2000-04-25": "Sinai Liberation Day", "2000-04-30": "Coptic Easter - Orthodox Easter", "2000-05-01": "Labor Day; Sham El Nessim", - "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-06-14": "Prophet's Birthday (estimated)", "2000-07-23": "July 23 Revolution Day", "2000-10-06": "Armed Forces Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", - "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr Holiday (estimated)", + "2000-12-29": "Eid al-Fitr Holiday (estimated)", "2001-01-01": "New Year's Day", "2001-01-07": "Coptic Christmas", - "2001-03-04": "Arafat Day* (*estimated)", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha Holiday* (*estimated)", - "2001-03-07": "Eid al-Adha Holiday* (*estimated)", - "2001-03-26": "Islamic New Year* (*estimated)", + "2001-03-04": "Arafat Day (estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha Holiday (estimated)", + "2001-03-07": "Eid al-Adha Holiday (estimated)", + "2001-03-26": "Islamic New Year (estimated)", "2001-04-15": "Coptic Easter - Orthodox Easter", "2001-04-16": "Sham El Nessim", "2001-04-25": "Sinai Liberation Day", "2001-05-01": "Labor Day", - "2001-06-04": "Prophet's Birthday* (*estimated)", + "2001-06-04": "Prophet's Birthday (estimated)", "2001-07-23": "July 23 Revolution Day", "2001-10-06": "Armed Forces Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", - "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", - "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2001-12-17": "Eid al-Fitr Holiday (estimated)", + "2001-12-18": "Eid al-Fitr Holiday (estimated)", "2002-01-01": "New Year's Day", "2002-01-07": "Coptic Christmas", - "2002-02-21": "Arafat Day* (*estimated)", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha Holiday* (*estimated)", - "2002-02-24": "Eid al-Adha Holiday* (*estimated)", - "2002-03-15": "Islamic New Year* (*estimated)", + "2002-02-21": "Arafat Day (estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha Holiday (estimated)", + "2002-02-24": "Eid al-Adha Holiday (estimated)", + "2002-03-15": "Islamic New Year (estimated)", "2002-04-25": "Sinai Liberation Day", "2002-05-01": "Labor Day", "2002-05-05": "Coptic Easter - Orthodox Easter", "2002-05-06": "Sham El Nessim", - "2002-05-24": "Prophet's Birthday* (*estimated)", + "2002-05-24": "Prophet's Birthday (estimated)", "2002-07-23": "July 23 Revolution Day", "2002-10-06": "Armed Forces Day", - "2002-12-05": "Eid al-Fitr* (*estimated)", - "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", - "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", + "2002-12-06": "Eid al-Fitr Holiday (estimated)", + "2002-12-07": "Eid al-Fitr Holiday (estimated)", "2003-01-01": "New Year's Day", "2003-01-07": "Coptic Christmas", - "2003-02-10": "Arafat Day* (*estimated)", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha Holiday* (*estimated)", - "2003-02-13": "Eid al-Adha Holiday* (*estimated)", - "2003-03-04": "Islamic New Year* (*estimated)", + "2003-02-10": "Arafat Day (estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha Holiday (estimated)", + "2003-02-13": "Eid al-Adha Holiday (estimated)", + "2003-03-04": "Islamic New Year (estimated)", "2003-04-25": "Sinai Liberation Day", "2003-04-27": "Coptic Easter - Orthodox Easter", "2003-04-28": "Sham El Nessim", "2003-05-01": "Labor Day", - "2003-05-13": "Prophet's Birthday* (*estimated)", + "2003-05-13": "Prophet's Birthday (estimated)", "2003-07-23": "July 23 Revolution Day", "2003-10-06": "Armed Forces Day", - "2003-11-25": "Eid al-Fitr* (*estimated)", - "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", - "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", + "2003-11-26": "Eid al-Fitr Holiday (estimated)", + "2003-11-27": "Eid al-Fitr Holiday (estimated)", "2004-01-01": "New Year's Day", "2004-01-07": "Coptic Christmas", - "2004-01-31": "Arafat Day* (*estimated)", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha Holiday* (*estimated)", - "2004-02-03": "Eid al-Adha Holiday* (*estimated)", - "2004-02-21": "Islamic New Year* (*estimated)", + "2004-01-31": "Arafat Day (estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha Holiday (estimated)", + "2004-02-03": "Eid al-Adha Holiday (estimated)", + "2004-02-21": "Islamic New Year (estimated)", "2004-04-11": "Coptic Easter - Orthodox Easter", "2004-04-12": "Sham El Nessim", "2004-04-25": "Sinai Liberation Day", - "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", + "2004-05-01": "Labor Day; Prophet's Birthday (estimated)", "2004-07-23": "July 23 Revolution Day", "2004-10-06": "Armed Forces Day", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", - "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr Holiday (estimated)", + "2004-11-16": "Eid al-Fitr Holiday (estimated)", "2005-01-01": "New Year's Day", "2005-01-07": "Coptic Christmas", - "2005-01-20": "Arafat Day* (*estimated)", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha Holiday* (*estimated)", - "2005-01-23": "Eid al-Adha Holiday* (*estimated)", - "2005-02-10": "Islamic New Year* (*estimated)", - "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-01-20": "Arafat Day (estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha Holiday (estimated)", + "2005-01-23": "Eid al-Adha Holiday (estimated)", + "2005-02-10": "Islamic New Year (estimated)", + "2005-04-21": "Prophet's Birthday (estimated)", "2005-04-25": "Sinai Liberation Day", "2005-05-01": "Coptic Easter - Orthodox Easter; Labor Day", "2005-05-02": "Sham El Nessim", "2005-07-23": "July 23 Revolution Day", "2005-10-06": "Armed Forces Day", - "2005-11-03": "Eid al-Fitr* (*estimated)", - "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", - "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", + "2005-11-04": "Eid al-Fitr Holiday (estimated)", + "2005-11-05": "Eid al-Fitr Holiday (estimated)", "2006-01-01": "New Year's Day", "2006-01-07": "Coptic Christmas", - "2006-01-09": "Arafat Day* (*estimated)", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha Holiday* (*estimated)", - "2006-01-12": "Eid al-Adha Holiday* (*estimated)", - "2006-01-31": "Islamic New Year* (*estimated)", - "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-01-09": "Arafat Day (estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha Holiday (estimated)", + "2006-01-12": "Eid al-Adha Holiday (estimated)", + "2006-01-31": "Islamic New Year (estimated)", + "2006-04-10": "Prophet's Birthday (estimated)", "2006-04-23": "Coptic Easter - Orthodox Easter", "2006-04-24": "Sham El Nessim", "2006-04-25": "Sinai Liberation Day", "2006-05-01": "Labor Day", "2006-07-23": "July 23 Revolution Day", "2006-10-06": "Armed Forces Day", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", - "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", - "2006-12-30": "Arafat Day* (*estimated)", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", - "2007-01-02": "Eid al-Adha Holiday* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-10-24": "Eid al-Fitr Holiday (estimated)", + "2006-10-25": "Eid al-Fitr Holiday (estimated)", + "2006-12-30": "Arafat Day (estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha Holiday (estimated); New Year's Day", + "2007-01-02": "Eid al-Adha Holiday (estimated)", "2007-01-07": "Coptic Christmas", - "2007-01-20": "Islamic New Year* (*estimated)", - "2007-03-31": "Prophet's Birthday* (*estimated)", + "2007-01-20": "Islamic New Year (estimated)", + "2007-03-31": "Prophet's Birthday (estimated)", "2007-04-08": "Coptic Easter - Orthodox Easter", "2007-04-09": "Sham El Nessim", "2007-04-25": "Sinai Liberation Day", "2007-05-01": "Labor Day", "2007-07-23": "July 23 Revolution Day", "2007-10-06": "Armed Forces Day", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", - "2007-10-15": "Eid al-Fitr Holiday* (*estimated)", - "2007-12-19": "Arafat Day* (*estimated)", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha Holiday* (*estimated)", - "2007-12-22": "Eid al-Adha Holiday* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-14": "Eid al-Fitr Holiday (estimated)", + "2007-10-15": "Eid al-Fitr Holiday (estimated)", + "2007-12-19": "Arafat Day (estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha Holiday (estimated)", + "2007-12-22": "Eid al-Adha Holiday (estimated)", "2008-01-01": "New Year's Day", "2008-01-07": "Coptic Christmas", - "2008-01-10": "Islamic New Year* (*estimated)", - "2008-03-20": "Prophet's Birthday* (*estimated)", + "2008-01-10": "Islamic New Year (estimated)", + "2008-03-20": "Prophet's Birthday (estimated)", "2008-04-25": "Sinai Liberation Day", "2008-04-27": "Coptic Easter - Orthodox Easter", "2008-04-28": "Sham El Nessim", "2008-05-01": "Labor Day", "2008-07-23": "July 23 Revolution Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", - "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-10-02": "Eid al-Fitr Holiday (estimated)", + "2008-10-03": "Eid al-Fitr Holiday (estimated)", "2008-10-06": "Armed Forces Day", - "2008-12-07": "Arafat Day* (*estimated)", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha Holiday* (*estimated)", - "2008-12-10": "Eid al-Adha Holiday* (*estimated)", - "2008-12-29": "Islamic New Year* (*estimated)", + "2008-12-07": "Arafat Day (estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha Holiday (estimated)", + "2008-12-10": "Eid al-Adha Holiday (estimated)", + "2008-12-29": "Islamic New Year (estimated)", "2009-01-01": "New Year's Day", "2009-01-07": "Coptic Christmas", "2009-01-25": "Police Day", - "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-03-09": "Prophet's Birthday (estimated)", "2009-04-19": "Coptic Easter - Orthodox Easter", "2009-04-20": "Sham El Nessim", "2009-04-25": "Sinai Liberation Day", "2009-05-01": "Labor Day", "2009-07-23": "July 23 Revolution Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", - "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr Holiday (estimated)", + "2009-09-22": "Eid al-Fitr Holiday (estimated)", "2009-10-06": "Armed Forces Day", - "2009-11-26": "Arafat Day* (*estimated)", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha Holiday* (*estimated)", - "2009-11-29": "Eid al-Adha Holiday* (*estimated)", - "2009-12-18": "Islamic New Year* (*estimated)", + "2009-11-26": "Arafat Day (estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha Holiday (estimated)", + "2009-11-29": "Eid al-Adha Holiday (estimated)", + "2009-12-18": "Islamic New Year (estimated)", "2010-01-01": "New Year's Day", "2010-01-07": "Coptic Christmas", "2010-01-25": "Police Day", - "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-02-26": "Prophet's Birthday (estimated)", "2010-04-04": "Coptic Easter - Orthodox Easter", "2010-04-05": "Sham El Nessim", "2010-04-25": "Sinai Liberation Day", "2010-05-01": "Labor Day", "2010-07-23": "July 23 Revolution Day", - "2010-09-10": "Eid al-Fitr* (*estimated)", - "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", - "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", + "2010-09-11": "Eid al-Fitr Holiday (estimated)", + "2010-09-12": "Eid al-Fitr Holiday (estimated)", "2010-10-06": "Armed Forces Day", - "2010-11-15": "Arafat Day* (*estimated)", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha Holiday* (*estimated)", - "2010-11-18": "Eid al-Adha Holiday* (*estimated)", - "2010-12-07": "Islamic New Year* (*estimated)", + "2010-11-15": "Arafat Day (estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha Holiday (estimated)", + "2010-11-18": "Eid al-Adha Holiday (estimated)", + "2010-12-07": "Islamic New Year (estimated)", "2011-01-01": "New Year's Day", "2011-01-07": "Coptic Christmas", "2011-01-25": "Police Day", - "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-02-15": "Prophet's Birthday (estimated)", "2011-04-24": "Coptic Easter - Orthodox Easter", "2011-04-25": "Sham El Nessim; Sinai Liberation Day", "2011-05-01": "Labor Day", "2011-07-23": "July 23 Revolution Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", - "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", - "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", + "2011-08-31": "Eid al-Fitr Holiday (estimated)", + "2011-09-01": "Eid al-Fitr Holiday (estimated)", "2011-10-06": "Armed Forces Day", - "2011-11-05": "Arafat Day* (*estimated)", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha Holiday* (*estimated)", - "2011-11-08": "Eid al-Adha Holiday* (*estimated)", - "2011-11-26": "Islamic New Year* (*estimated)", + "2011-11-05": "Arafat Day (estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha Holiday (estimated)", + "2011-11-08": "Eid al-Adha Holiday (estimated)", + "2011-11-26": "Islamic New Year (estimated)", "2012-01-01": "New Year's Day", "2012-01-07": "Coptic Christmas", "2012-01-25": "January 25th Revolution Day", - "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-02-04": "Prophet's Birthday (estimated)", "2012-04-15": "Coptic Easter - Orthodox Easter", "2012-04-16": "Sham El Nessim", "2012-04-25": "Sinai Liberation Day", "2012-05-01": "Labor Day", "2012-07-23": "July 23 Revolution Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", - "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr Holiday (estimated)", + "2012-08-21": "Eid al-Fitr Holiday (estimated)", "2012-10-06": "Armed Forces Day", - "2012-10-25": "Arafat Day* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha Holiday* (*estimated)", - "2012-10-28": "Eid al-Adha Holiday* (*estimated)", - "2012-11-15": "Islamic New Year* (*estimated)", + "2012-10-25": "Arafat Day (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha Holiday (estimated)", + "2012-10-28": "Eid al-Adha Holiday (estimated)", + "2012-11-15": "Islamic New Year (estimated)", "2013-01-01": "New Year's Day", "2013-01-07": "Coptic Christmas", - "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-01-24": "Prophet's Birthday (estimated)", "2013-01-25": "January 25th Revolution Day", "2013-04-25": "Sinai Liberation Day", "2013-05-01": "Labor Day", "2013-05-05": "Coptic Easter - Orthodox Easter", "2013-05-06": "Sham El Nessim", "2013-07-23": "July 23 Revolution Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", - "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-08-09": "Eid al-Fitr Holiday (estimated)", + "2013-08-10": "Eid al-Fitr Holiday (estimated)", "2013-10-06": "Armed Forces Day", - "2013-10-14": "Arafat Day* (*estimated)", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha Holiday* (*estimated)", - "2013-10-17": "Eid al-Adha Holiday* (*estimated)", - "2013-11-04": "Islamic New Year* (*estimated)", + "2013-10-14": "Arafat Day (estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha Holiday (estimated)", + "2013-10-17": "Eid al-Adha Holiday (estimated)", + "2013-11-04": "Islamic New Year (estimated)", "2014-01-01": "New Year's Day", "2014-01-07": "Coptic Christmas", - "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-01-13": "Prophet's Birthday (estimated)", "2014-01-25": "January 25th Revolution Day", "2014-04-20": "Coptic Easter - Orthodox Easter", "2014-04-21": "Sham El Nessim", @@ -1065,16 +1065,16 @@ "2014-05-01": "Labor Day", "2014-06-30": "June 30 Revolution Day", "2014-07-23": "July 23 Revolution Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", - "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", - "2014-10-03": "Arafat Day* (*estimated)", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha Holiday* (*estimated)", - "2014-10-06": "Armed Forces Day; Eid al-Adha Holiday* (*estimated)", - "2014-10-25": "Islamic New Year* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-07-29": "Eid al-Fitr Holiday (estimated)", + "2014-07-30": "Eid al-Fitr Holiday (estimated)", + "2014-10-03": "Arafat Day (estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha Holiday (estimated)", + "2014-10-06": "Armed Forces Day; Eid al-Adha Holiday (estimated)", + "2014-10-25": "Islamic New Year (estimated)", "2015-01-01": "New Year's Day", - "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-01-03": "Prophet's Birthday (estimated)", "2015-01-07": "Coptic Christmas", "2015-01-25": "January 25th Revolution Day", "2015-04-12": "Coptic Easter - Orthodox Easter", @@ -1082,17 +1082,17 @@ "2015-04-25": "Sinai Liberation Day", "2015-05-01": "Labor Day", "2015-06-30": "June 30 Revolution Day", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", - "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-07-18": "Eid al-Fitr Holiday (estimated)", + "2015-07-19": "Eid al-Fitr Holiday (estimated)", "2015-07-23": "July 23 Revolution Day", - "2015-09-22": "Arafat Day* (*estimated)", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha Holiday* (*estimated)", - "2015-09-25": "Eid al-Adha Holiday* (*estimated)", + "2015-09-22": "Arafat Day (estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha Holiday (estimated)", + "2015-09-25": "Eid al-Adha Holiday (estimated)", "2015-10-06": "Armed Forces Day", - "2015-10-14": "Islamic New Year* (*estimated)", - "2015-12-23": "Prophet's Birthday* (*estimated)", + "2015-10-14": "Islamic New Year (estimated)", + "2015-12-23": "Prophet's Birthday (estimated)", "2016-01-01": "New Year's Day", "2016-01-07": "Coptic Christmas", "2016-01-25": "January 25th Revolution Day", @@ -1100,17 +1100,17 @@ "2016-05-01": "Coptic Easter - Orthodox Easter; Labor Day", "2016-05-02": "Sham El Nessim", "2016-06-30": "June 30 Revolution Day", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", - "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-07-07": "Eid al-Fitr Holiday (estimated)", + "2016-07-08": "Eid al-Fitr Holiday (estimated)", "2016-07-23": "July 23 Revolution Day", - "2016-09-10": "Arafat Day* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha Holiday* (*estimated)", - "2016-09-13": "Eid al-Adha Holiday* (*estimated)", - "2016-10-02": "Islamic New Year* (*estimated)", + "2016-09-10": "Arafat Day (estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha Holiday (estimated)", + "2016-09-13": "Eid al-Adha Holiday (estimated)", + "2016-10-02": "Islamic New Year (estimated)", "2016-10-06": "Armed Forces Day", - "2016-12-11": "Prophet's Birthday* (*estimated)", + "2016-12-11": "Prophet's Birthday (estimated)", "2017-01-01": "New Year's Day", "2017-01-07": "Coptic Christmas", "2017-01-25": "January 25th Revolution Day", @@ -1118,18 +1118,18 @@ "2017-04-17": "Sham El Nessim", "2017-04-25": "Sinai Liberation Day", "2017-05-01": "Labor Day", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", - "2017-06-27": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-06-26": "Eid al-Fitr Holiday (estimated)", + "2017-06-27": "Eid al-Fitr Holiday (estimated)", "2017-06-30": "June 30 Revolution Day", "2017-07-23": "July 23 Revolution Day", - "2017-08-31": "Arafat Day* (*estimated)", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha Holiday* (*estimated)", - "2017-09-03": "Eid al-Adha Holiday* (*estimated)", - "2017-09-21": "Islamic New Year* (*estimated)", + "2017-08-31": "Arafat Day (estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha Holiday (estimated)", + "2017-09-03": "Eid al-Adha Holiday (estimated)", + "2017-09-21": "Islamic New Year (estimated)", "2017-10-06": "Armed Forces Day", - "2017-11-30": "Prophet's Birthday* (*estimated)", + "2017-11-30": "Prophet's Birthday (estimated)", "2018-01-01": "New Year's Day", "2018-01-07": "Coptic Christmas", "2018-01-25": "January 25th Revolution Day", @@ -1137,18 +1137,18 @@ "2018-04-09": "Sham El Nessim", "2018-04-25": "Sinai Liberation Day", "2018-05-01": "Labor Day", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", - "2018-06-17": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-06-16": "Eid al-Fitr Holiday (estimated)", + "2018-06-17": "Eid al-Fitr Holiday (estimated)", "2018-06-30": "June 30 Revolution Day", "2018-07-23": "July 23 Revolution Day", - "2018-08-20": "Arafat Day* (*estimated)", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha Holiday* (*estimated)", - "2018-08-23": "Eid al-Adha Holiday* (*estimated)", - "2018-09-11": "Islamic New Year* (*estimated)", + "2018-08-20": "Arafat Day (estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha Holiday (estimated)", + "2018-08-23": "Eid al-Adha Holiday (estimated)", + "2018-09-11": "Islamic New Year (estimated)", "2018-10-06": "Armed Forces Day", - "2018-11-20": "Prophet's Birthday* (*estimated)", + "2018-11-20": "Prophet's Birthday (estimated)", "2019-01-01": "New Year's Day", "2019-01-07": "Coptic Christmas", "2019-01-25": "January 25th Revolution Day", @@ -1156,18 +1156,18 @@ "2019-04-28": "Coptic Easter - Orthodox Easter", "2019-04-29": "Sham El Nessim", "2019-05-01": "Labor Day", - "2019-06-04": "Eid al-Fitr* (*estimated)", - "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", - "2019-06-06": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-04": "Eid al-Fitr (estimated)", + "2019-06-05": "Eid al-Fitr Holiday (estimated)", + "2019-06-06": "Eid al-Fitr Holiday (estimated)", "2019-06-30": "June 30 Revolution Day", "2019-07-23": "July 23 Revolution Day", - "2019-08-10": "Arafat Day* (*estimated)", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha Holiday* (*estimated)", - "2019-08-13": "Eid al-Adha Holiday* (*estimated)", - "2019-08-31": "Islamic New Year* (*estimated)", + "2019-08-10": "Arafat Day (estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha Holiday (estimated)", + "2019-08-13": "Eid al-Adha Holiday (estimated)", + "2019-08-31": "Islamic New Year (estimated)", "2019-10-06": "Armed Forces Day", - "2019-11-09": "Prophet's Birthday* (*estimated)", + "2019-11-09": "Prophet's Birthday (estimated)", "2020-01-01": "New Year's Day", "2020-01-07": "Coptic Christmas", "2020-01-25": "January 25th Revolution Day", @@ -1175,18 +1175,18 @@ "2020-04-20": "Sham El Nessim", "2020-04-25": "Sinai Liberation Day", "2020-05-01": "Labor Day", - "2020-05-24": "Eid al-Fitr* (*estimated)", - "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", - "2020-05-26": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", + "2020-05-25": "Eid al-Fitr Holiday (estimated)", + "2020-05-26": "Eid al-Fitr Holiday (estimated)", "2020-06-30": "June 30 Revolution Day", "2020-07-23": "July 23 Revolution Day", - "2020-07-30": "Arafat Day* (*estimated)", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha Holiday* (*estimated)", - "2020-08-02": "Eid al-Adha Holiday* (*estimated)", - "2020-08-20": "Islamic New Year* (*estimated)", + "2020-07-30": "Arafat Day (estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha Holiday (estimated)", + "2020-08-02": "Eid al-Adha Holiday (estimated)", + "2020-08-20": "Islamic New Year (estimated)", "2020-10-06": "Armed Forces Day", - "2020-10-29": "Prophet's Birthday* (*estimated)", + "2020-10-29": "Prophet's Birthday (estimated)", "2021-01-01": "New Year's Day", "2021-01-07": "Coptic Christmas", "2021-01-25": "January 25th Revolution Day", @@ -1194,345 +1194,345 @@ "2021-05-01": "Labor Day", "2021-05-02": "Coptic Easter - Orthodox Easter", "2021-05-03": "Sham El Nessim", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", - "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-05-14": "Eid al-Fitr Holiday (estimated)", + "2021-05-15": "Eid al-Fitr Holiday (estimated)", "2021-06-30": "June 30 Revolution Day", - "2021-07-19": "Arafat Day* (*estimated)", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha Holiday* (*estimated)", - "2021-07-22": "Eid al-Adha Holiday* (*estimated)", + "2021-07-19": "Arafat Day (estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha Holiday (estimated)", + "2021-07-22": "Eid al-Adha Holiday (estimated)", "2021-07-23": "July 23 Revolution Day", - "2021-08-09": "Islamic New Year* (*estimated)", + "2021-08-09": "Islamic New Year (estimated)", "2021-10-06": "Armed Forces Day", - "2021-10-18": "Prophet's Birthday* (*estimated)", + "2021-10-18": "Prophet's Birthday (estimated)", "2022-01-01": "New Year's Day", "2022-01-07": "Coptic Christmas", "2022-01-25": "January 25th Revolution Day", "2022-04-24": "Coptic Easter - Orthodox Easter", "2022-04-25": "Sham El Nessim; Sinai Liberation Day", "2022-05-01": "Labor Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", - "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", - "2022-05-04": "Eid al-Fitr Holiday* (*estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", + "2022-05-03": "Eid al-Fitr Holiday (estimated)", + "2022-05-04": "Eid al-Fitr Holiday (estimated)", "2022-06-30": "June 30 Revolution Day", - "2022-07-08": "Arafat Day* (*estimated)", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha Holiday* (*estimated)", - "2022-07-11": "Eid al-Adha Holiday* (*estimated)", + "2022-07-08": "Arafat Day (estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha Holiday (estimated)", + "2022-07-11": "Eid al-Adha Holiday (estimated)", "2022-07-23": "July 23 Revolution Day", - "2022-07-30": "Islamic New Year* (*estimated)", + "2022-07-30": "Islamic New Year (estimated)", "2022-10-06": "Armed Forces Day", - "2022-10-08": "Prophet's Birthday* (*estimated)", + "2022-10-08": "Prophet's Birthday (estimated)", "2023-01-01": "New Year's Day", "2023-01-07": "Coptic Christmas", "2023-01-25": "January 25th Revolution Day", "2023-04-16": "Coptic Easter - Orthodox Easter", "2023-04-17": "Sham El Nessim", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", - "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", + "2023-04-22": "Eid al-Fitr Holiday (estimated)", + "2023-04-23": "Eid al-Fitr Holiday (estimated)", "2023-04-25": "Sinai Liberation Day", "2023-05-01": "Labor Day", - "2023-06-27": "Arafat Day* (*estimated)", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha Holiday* (*estimated)", - "2023-06-30": "Eid al-Adha Holiday* (*estimated); June 30 Revolution Day", - "2023-07-19": "Islamic New Year* (*estimated)", + "2023-06-27": "Arafat Day (estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha Holiday (estimated)", + "2023-06-30": "Eid al-Adha Holiday (estimated); June 30 Revolution Day", + "2023-07-19": "Islamic New Year (estimated)", "2023-07-23": "July 23 Revolution Day", - "2023-09-27": "Prophet's Birthday* (*estimated)", + "2023-09-27": "Prophet's Birthday (estimated)", "2023-10-06": "Armed Forces Day", "2024-01-01": "New Year's Day", "2024-01-07": "Coptic Christmas", "2024-01-25": "January 25th Revolution Day", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", - "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr Holiday (estimated)", + "2024-04-12": "Eid al-Fitr Holiday (estimated)", "2024-04-25": "Sinai Liberation Day", "2024-05-01": "Labor Day", "2024-05-05": "Coptic Easter - Orthodox Easter", "2024-05-06": "Sham El Nessim", - "2024-06-15": "Arafat Day* (*estimated)", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha Holiday* (*estimated)", - "2024-06-18": "Eid al-Adha Holiday* (*estimated)", + "2024-06-15": "Arafat Day (estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha Holiday (estimated)", + "2024-06-18": "Eid al-Adha Holiday (estimated)", "2024-06-30": "June 30 Revolution Day", - "2024-07-07": "Islamic New Year* (*estimated)", + "2024-07-07": "Islamic New Year (estimated)", "2024-07-23": "July 23 Revolution Day", - "2024-09-15": "Prophet's Birthday* (*estimated)", + "2024-09-15": "Prophet's Birthday (estimated)", "2024-10-06": "Armed Forces Day", "2025-01-01": "New Year's Day", "2025-01-07": "Coptic Christmas", "2025-01-25": "January 25th Revolution Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", - "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr Holiday (estimated)", + "2025-04-01": "Eid al-Fitr Holiday (estimated)", "2025-04-20": "Coptic Easter - Orthodox Easter", "2025-04-21": "Sham El Nessim", "2025-04-25": "Sinai Liberation Day", "2025-05-01": "Labor Day", - "2025-06-05": "Arafat Day* (*estimated)", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha Holiday* (*estimated)", - "2025-06-08": "Eid al-Adha Holiday* (*estimated)", - "2025-06-26": "Islamic New Year* (*estimated)", + "2025-06-05": "Arafat Day (estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha Holiday (estimated)", + "2025-06-08": "Eid al-Adha Holiday (estimated)", + "2025-06-26": "Islamic New Year (estimated)", "2025-06-30": "June 30 Revolution Day", "2025-07-23": "July 23 Revolution Day", - "2025-09-04": "Prophet's Birthday* (*estimated)", + "2025-09-04": "Prophet's Birthday (estimated)", "2025-10-06": "Armed Forces Day", "2026-01-01": "New Year's Day", "2026-01-07": "Coptic Christmas", "2026-01-25": "January 25th Revolution Day", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", - "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr Holiday (estimated)", + "2026-03-22": "Eid al-Fitr Holiday (estimated)", "2026-04-12": "Coptic Easter - Orthodox Easter", "2026-04-13": "Sham El Nessim", "2026-04-25": "Sinai Liberation Day", "2026-05-01": "Labor Day", - "2026-05-26": "Arafat Day* (*estimated)", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha Holiday* (*estimated)", - "2026-05-29": "Eid al-Adha Holiday* (*estimated)", - "2026-06-16": "Islamic New Year* (*estimated)", + "2026-05-26": "Arafat Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha Holiday (estimated)", + "2026-05-29": "Eid al-Adha Holiday (estimated)", + "2026-06-16": "Islamic New Year (estimated)", "2026-06-30": "June 30 Revolution Day", "2026-07-23": "July 23 Revolution Day", - "2026-08-25": "Prophet's Birthday* (*estimated)", + "2026-08-25": "Prophet's Birthday (estimated)", "2026-10-06": "Armed Forces Day", "2027-01-01": "New Year's Day", "2027-01-07": "Coptic Christmas", "2027-01-25": "January 25th Revolution Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", - "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr Holiday (estimated)", + "2027-03-11": "Eid al-Fitr Holiday (estimated)", "2027-04-25": "Sinai Liberation Day", "2027-05-01": "Labor Day", "2027-05-02": "Coptic Easter - Orthodox Easter", "2027-05-03": "Sham El Nessim", - "2027-05-15": "Arafat Day* (*estimated)", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha Holiday* (*estimated)", - "2027-05-18": "Eid al-Adha Holiday* (*estimated)", - "2027-06-06": "Islamic New Year* (*estimated)", + "2027-05-15": "Arafat Day (estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha Holiday (estimated)", + "2027-05-18": "Eid al-Adha Holiday (estimated)", + "2027-06-06": "Islamic New Year (estimated)", "2027-06-30": "June 30 Revolution Day", "2027-07-23": "July 23 Revolution Day", - "2027-08-14": "Prophet's Birthday* (*estimated)", + "2027-08-14": "Prophet's Birthday (estimated)", "2027-10-06": "Armed Forces Day", "2028-01-01": "New Year's Day", "2028-01-07": "Coptic Christmas", "2028-01-25": "January 25th Revolution Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", - "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr Holiday (estimated)", + "2028-02-28": "Eid al-Fitr Holiday (estimated)", "2028-04-16": "Coptic Easter - Orthodox Easter", "2028-04-17": "Sham El Nessim", "2028-04-25": "Sinai Liberation Day", "2028-05-01": "Labor Day", - "2028-05-04": "Arafat Day* (*estimated)", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha Holiday* (*estimated)", - "2028-05-07": "Eid al-Adha Holiday* (*estimated)", - "2028-05-25": "Islamic New Year* (*estimated)", + "2028-05-04": "Arafat Day (estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha Holiday (estimated)", + "2028-05-07": "Eid al-Adha Holiday (estimated)", + "2028-05-25": "Islamic New Year (estimated)", "2028-06-30": "June 30 Revolution Day", "2028-07-23": "July 23 Revolution Day", - "2028-08-03": "Prophet's Birthday* (*estimated)", + "2028-08-03": "Prophet's Birthday (estimated)", "2028-10-06": "Armed Forces Day", "2029-01-01": "New Year's Day", "2029-01-07": "Coptic Christmas", "2029-01-25": "January 25th Revolution Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", - "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr Holiday (estimated)", + "2029-02-16": "Eid al-Fitr Holiday (estimated)", "2029-04-08": "Coptic Easter - Orthodox Easter", "2029-04-09": "Sham El Nessim", - "2029-04-23": "Arafat Day* (*estimated)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha Holiday* (*estimated); Sinai Liberation Day", - "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-04-23": "Arafat Day (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha Holiday (estimated); Sinai Liberation Day", + "2029-04-26": "Eid al-Adha Holiday (estimated)", "2029-05-01": "Labor Day", - "2029-05-14": "Islamic New Year* (*estimated)", + "2029-05-14": "Islamic New Year (estimated)", "2029-06-30": "June 30 Revolution Day", "2029-07-23": "July 23 Revolution Day", - "2029-07-24": "Prophet's Birthday* (*estimated)", + "2029-07-24": "Prophet's Birthday (estimated)", "2029-10-06": "Armed Forces Day", "2030-01-01": "New Year's Day", "2030-01-07": "Coptic Christmas", "2030-01-25": "January 25th Revolution Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", - "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", - "2030-04-12": "Arafat Day* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha Holiday* (*estimated)", - "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr Holiday (estimated)", + "2030-02-06": "Eid al-Fitr Holiday (estimated)", + "2030-04-12": "Arafat Day (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha Holiday (estimated)", + "2030-04-15": "Eid al-Adha Holiday (estimated)", "2030-04-25": "Sinai Liberation Day", "2030-04-28": "Coptic Easter - Orthodox Easter", "2030-04-29": "Sham El Nessim", "2030-05-01": "Labor Day", - "2030-05-03": "Islamic New Year* (*estimated)", + "2030-05-03": "Islamic New Year (estimated)", "2030-06-30": "June 30 Revolution Day", - "2030-07-13": "Prophet's Birthday* (*estimated)", + "2030-07-13": "Prophet's Birthday (estimated)", "2030-07-23": "July 23 Revolution Day", "2030-10-06": "Armed Forces Day", "2031-01-01": "New Year's Day", "2031-01-07": "Coptic Christmas", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr Holiday* (*estimated); January 25th Revolution Day", - "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", - "2031-04-01": "Arafat Day* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha Holiday* (*estimated)", - "2031-04-04": "Eid al-Adha Holiday* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr Holiday (estimated); January 25th Revolution Day", + "2031-01-26": "Eid al-Fitr Holiday (estimated)", + "2031-04-01": "Arafat Day (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha Holiday (estimated)", + "2031-04-04": "Eid al-Adha Holiday (estimated)", "2031-04-13": "Coptic Easter - Orthodox Easter", "2031-04-14": "Sham El Nessim", - "2031-04-23": "Islamic New Year* (*estimated)", + "2031-04-23": "Islamic New Year (estimated)", "2031-04-25": "Sinai Liberation Day", "2031-05-01": "Labor Day", "2031-06-30": "June 30 Revolution Day", - "2031-07-02": "Prophet's Birthday* (*estimated)", + "2031-07-02": "Prophet's Birthday (estimated)", "2031-07-23": "July 23 Revolution Day", "2031-10-06": "Armed Forces Day", "2032-01-01": "New Year's Day", "2032-01-07": "Coptic Christmas", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", - "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr Holiday (estimated)", + "2032-01-16": "Eid al-Fitr Holiday (estimated)", "2032-01-25": "January 25th Revolution Day", - "2032-03-21": "Arafat Day* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha Holiday* (*estimated)", - "2032-03-24": "Eid al-Adha Holiday* (*estimated)", - "2032-04-11": "Islamic New Year* (*estimated)", + "2032-03-21": "Arafat Day (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha Holiday (estimated)", + "2032-03-24": "Eid al-Adha Holiday (estimated)", + "2032-04-11": "Islamic New Year (estimated)", "2032-04-25": "Sinai Liberation Day", "2032-05-01": "Labor Day", "2032-05-02": "Coptic Easter - Orthodox Easter", "2032-05-03": "Sham El Nessim", - "2032-06-20": "Prophet's Birthday* (*estimated)", + "2032-06-20": "Prophet's Birthday (estimated)", "2032-06-30": "June 30 Revolution Day", "2032-07-23": "July 23 Revolution Day", "2032-10-06": "Armed Forces Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", - "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr Holiday (estimated)", + "2033-01-04": "Eid al-Fitr Holiday (estimated)", "2033-01-07": "Coptic Christmas", "2033-01-25": "January 25th Revolution Day", - "2033-03-10": "Arafat Day* (*estimated)", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha Holiday* (*estimated)", - "2033-03-13": "Eid al-Adha Holiday* (*estimated)", - "2033-04-01": "Islamic New Year* (*estimated)", + "2033-03-10": "Arafat Day (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha Holiday (estimated)", + "2033-03-13": "Eid al-Adha Holiday (estimated)", + "2033-04-01": "Islamic New Year (estimated)", "2033-04-24": "Coptic Easter - Orthodox Easter", "2033-04-25": "Sham El Nessim; Sinai Liberation Day", "2033-05-01": "Labor Day", - "2033-06-09": "Prophet's Birthday* (*estimated)", + "2033-06-09": "Prophet's Birthday (estimated)", "2033-06-30": "June 30 Revolution Day", "2033-07-23": "July 23 Revolution Day", "2033-10-06": "Armed Forces Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", - "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr Holiday (estimated)", + "2033-12-25": "Eid al-Fitr Holiday (estimated)", "2034-01-01": "New Year's Day", "2034-01-07": "Coptic Christmas", "2034-01-25": "January 25th Revolution Day", - "2034-02-28": "Arafat Day* (*estimated)", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha Holiday* (*estimated)", - "2034-03-03": "Eid al-Adha Holiday* (*estimated)", - "2034-03-21": "Islamic New Year* (*estimated)", + "2034-02-28": "Arafat Day (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha Holiday (estimated)", + "2034-03-03": "Eid al-Adha Holiday (estimated)", + "2034-03-21": "Islamic New Year (estimated)", "2034-04-09": "Coptic Easter - Orthodox Easter", "2034-04-10": "Sham El Nessim", "2034-04-25": "Sinai Liberation Day", "2034-05-01": "Labor Day", - "2034-05-30": "Prophet's Birthday* (*estimated)", + "2034-05-30": "Prophet's Birthday (estimated)", "2034-06-30": "June 30 Revolution Day", "2034-07-23": "July 23 Revolution Day", "2034-10-06": "Armed Forces Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", - "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr Holiday (estimated)", + "2034-12-14": "Eid al-Fitr Holiday (estimated)", "2035-01-01": "New Year's Day", "2035-01-07": "Coptic Christmas", "2035-01-25": "January 25th Revolution Day", - "2035-02-17": "Arafat Day* (*estimated)", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha Holiday* (*estimated)", - "2035-02-20": "Eid al-Adha Holiday* (*estimated)", - "2035-03-11": "Islamic New Year* (*estimated)", + "2035-02-17": "Arafat Day (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha Holiday (estimated)", + "2035-02-20": "Eid al-Adha Holiday (estimated)", + "2035-03-11": "Islamic New Year (estimated)", "2035-04-25": "Sinai Liberation Day", "2035-04-29": "Coptic Easter - Orthodox Easter", "2035-04-30": "Sham El Nessim", "2035-05-01": "Labor Day", - "2035-05-20": "Prophet's Birthday* (*estimated)", + "2035-05-20": "Prophet's Birthday (estimated)", "2035-06-30": "June 30 Revolution Day", "2035-07-23": "July 23 Revolution Day", "2035-10-06": "Armed Forces Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", - "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr Holiday (estimated)", + "2035-12-03": "Eid al-Fitr Holiday (estimated)", "2036-01-01": "New Year's Day", "2036-01-07": "Coptic Christmas", "2036-01-25": "January 25th Revolution Day", - "2036-02-06": "Arafat Day* (*estimated)", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha Holiday* (*estimated)", - "2036-02-09": "Eid al-Adha Holiday* (*estimated)", - "2036-02-28": "Islamic New Year* (*estimated)", + "2036-02-06": "Arafat Day (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha Holiday (estimated)", + "2036-02-09": "Eid al-Adha Holiday (estimated)", + "2036-02-28": "Islamic New Year (estimated)", "2036-04-20": "Coptic Easter - Orthodox Easter", "2036-04-21": "Sham El Nessim", "2036-04-25": "Sinai Liberation Day", "2036-05-01": "Labor Day", - "2036-05-08": "Prophet's Birthday* (*estimated)", + "2036-05-08": "Prophet's Birthday (estimated)", "2036-06-30": "June 30 Revolution Day", "2036-07-23": "July 23 Revolution Day", "2036-10-06": "Armed Forces Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", - "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr Holiday (estimated)", + "2036-11-21": "Eid al-Fitr Holiday (estimated)", "2037-01-01": "New Year's Day", "2037-01-07": "Coptic Christmas", - "2037-01-25": "Arafat Day* (*estimated); January 25th Revolution Day", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha Holiday* (*estimated)", - "2037-01-28": "Eid al-Adha Holiday* (*estimated)", - "2037-02-16": "Islamic New Year* (*estimated)", + "2037-01-25": "Arafat Day (estimated); January 25th Revolution Day", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha Holiday (estimated)", + "2037-01-28": "Eid al-Adha Holiday (estimated)", + "2037-02-16": "Islamic New Year (estimated)", "2037-04-05": "Coptic Easter - Orthodox Easter", "2037-04-06": "Sham El Nessim", "2037-04-25": "Sinai Liberation Day", - "2037-04-28": "Prophet's Birthday* (*estimated)", + "2037-04-28": "Prophet's Birthday (estimated)", "2037-05-01": "Labor Day", "2037-06-30": "June 30 Revolution Day", "2037-07-23": "July 23 Revolution Day", "2037-10-06": "Armed Forces Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", - "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr Holiday (estimated)", + "2037-11-10": "Eid al-Fitr Holiday (estimated)", "2038-01-01": "New Year's Day", "2038-01-07": "Coptic Christmas", - "2038-01-15": "Arafat Day* (*estimated)", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha Holiday* (*estimated)", - "2038-01-18": "Eid al-Adha Holiday* (*estimated)", + "2038-01-15": "Arafat Day (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha Holiday (estimated)", + "2038-01-18": "Eid al-Adha Holiday (estimated)", "2038-01-25": "January 25th Revolution Day", - "2038-02-05": "Islamic New Year* (*estimated)", - "2038-04-17": "Prophet's Birthday* (*estimated)", + "2038-02-05": "Islamic New Year (estimated)", + "2038-04-17": "Prophet's Birthday (estimated)", "2038-04-25": "Coptic Easter - Orthodox Easter; Sinai Liberation Day", "2038-04-26": "Sham El Nessim", "2038-05-01": "Labor Day", "2038-06-30": "June 30 Revolution Day", "2038-07-23": "July 23 Revolution Day", "2038-10-06": "Armed Forces Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", - "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr Holiday (estimated)", + "2038-10-31": "Eid al-Fitr Holiday (estimated)", "2039-01-01": "New Year's Day", - "2039-01-04": "Arafat Day* (*estimated)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha Holiday* (*estimated)", - "2039-01-07": "Coptic Christmas; Eid al-Adha Holiday* (*estimated)", + "2039-01-04": "Arafat Day (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha Holiday (estimated)", + "2039-01-07": "Coptic Christmas; Eid al-Adha Holiday (estimated)", "2039-01-25": "January 25th Revolution Day", - "2039-01-26": "Islamic New Year* (*estimated)", - "2039-04-06": "Prophet's Birthday* (*estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet's Birthday (estimated)", "2039-04-17": "Coptic Easter - Orthodox Easter", "2039-04-18": "Sham El Nessim", "2039-04-25": "Sinai Liberation Day", @@ -1540,18 +1540,18 @@ "2039-06-30": "June 30 Revolution Day", "2039-07-23": "July 23 Revolution Day", "2039-10-06": "Armed Forces Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", - "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", - "2039-12-25": "Arafat Day* (*estimated)", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha Holiday* (*estimated)", - "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr Holiday (estimated)", + "2039-10-21": "Eid al-Fitr Holiday (estimated)", + "2039-12-25": "Arafat Day (estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha Holiday (estimated)", + "2039-12-28": "Eid al-Adha Holiday (estimated)", "2040-01-01": "New Year's Day", "2040-01-07": "Coptic Christmas", - "2040-01-15": "Islamic New Year* (*estimated)", + "2040-01-15": "Islamic New Year (estimated)", "2040-01-25": "January 25th Revolution Day", - "2040-03-25": "Prophet's Birthday* (*estimated)", + "2040-03-25": "Prophet's Birthday (estimated)", "2040-04-25": "Sinai Liberation Day", "2040-05-01": "Labor Day", "2040-05-06": "Coptic Easter - Orthodox Easter", @@ -1559,111 +1559,111 @@ "2040-06-30": "June 30 Revolution Day", "2040-07-23": "July 23 Revolution Day", "2040-10-06": "Armed Forces Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", - "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", - "2040-12-13": "Arafat Day* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha Holiday* (*estimated)", - "2040-12-16": "Eid al-Adha Holiday* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr Holiday (estimated)", + "2040-10-09": "Eid al-Fitr Holiday (estimated)", + "2040-12-13": "Arafat Day (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha Holiday (estimated)", + "2040-12-16": "Eid al-Adha Holiday (estimated)", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-04": "Islamic New Year (estimated)", "2041-01-07": "Coptic Christmas", "2041-01-25": "January 25th Revolution Day", - "2041-03-15": "Prophet's Birthday* (*estimated)", + "2041-03-15": "Prophet's Birthday (estimated)", "2041-04-21": "Coptic Easter - Orthodox Easter", "2041-04-22": "Sham El Nessim", "2041-04-25": "Sinai Liberation Day", "2041-05-01": "Labor Day", "2041-06-30": "June 30 Revolution Day", "2041-07-23": "July 23 Revolution Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", - "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr Holiday (estimated)", + "2041-09-28": "Eid al-Fitr Holiday (estimated)", "2041-10-06": "Armed Forces Day", - "2041-12-03": "Arafat Day* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha Holiday* (*estimated)", - "2041-12-06": "Eid al-Adha Holiday* (*estimated)", - "2041-12-24": "Islamic New Year* (*estimated)", + "2041-12-03": "Arafat Day (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha Holiday (estimated)", + "2041-12-06": "Eid al-Adha Holiday (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2042-01-01": "New Year's Day", "2042-01-07": "Coptic Christmas", "2042-01-25": "January 25th Revolution Day", - "2042-03-04": "Prophet's Birthday* (*estimated)", + "2042-03-04": "Prophet's Birthday (estimated)", "2042-04-13": "Coptic Easter - Orthodox Easter", "2042-04-14": "Sham El Nessim", "2042-04-25": "Sinai Liberation Day", "2042-05-01": "Labor Day", "2042-06-30": "June 30 Revolution Day", "2042-07-23": "July 23 Revolution Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", - "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr Holiday (estimated)", + "2042-09-17": "Eid al-Fitr Holiday (estimated)", "2042-10-06": "Armed Forces Day", - "2042-11-22": "Arafat Day* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha Holiday* (*estimated)", - "2042-11-25": "Eid al-Adha Holiday* (*estimated)", - "2042-12-14": "Islamic New Year* (*estimated)", + "2042-11-22": "Arafat Day (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha Holiday (estimated)", + "2042-11-25": "Eid al-Adha Holiday (estimated)", + "2042-12-14": "Islamic New Year (estimated)", "2043-01-01": "New Year's Day", "2043-01-07": "Coptic Christmas", "2043-01-25": "January 25th Revolution Day", - "2043-02-22": "Prophet's Birthday* (*estimated)", + "2043-02-22": "Prophet's Birthday (estimated)", "2043-04-25": "Sinai Liberation Day", "2043-05-01": "Labor Day", "2043-05-03": "Coptic Easter - Orthodox Easter", "2043-05-04": "Sham El Nessim", "2043-06-30": "June 30 Revolution Day", "2043-07-23": "July 23 Revolution Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", - "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr Holiday (estimated)", + "2043-09-06": "Eid al-Fitr Holiday (estimated)", "2043-10-06": "Armed Forces Day", - "2043-11-11": "Arafat Day* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha Holiday* (*estimated)", - "2043-11-14": "Eid al-Adha Holiday* (*estimated)", - "2043-12-03": "Islamic New Year* (*estimated)", + "2043-11-11": "Arafat Day (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha Holiday (estimated)", + "2043-11-14": "Eid al-Adha Holiday (estimated)", + "2043-12-03": "Islamic New Year (estimated)", "2044-01-01": "New Year's Day", "2044-01-07": "Coptic Christmas", "2044-01-25": "January 25th Revolution Day", - "2044-02-11": "Prophet's Birthday* (*estimated)", + "2044-02-11": "Prophet's Birthday (estimated)", "2044-04-24": "Coptic Easter - Orthodox Easter", "2044-04-25": "Sham El Nessim; Sinai Liberation Day", "2044-05-01": "Labor Day", "2044-06-30": "June 30 Revolution Day", "2044-07-23": "July 23 Revolution Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", - "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr Holiday (estimated)", + "2044-08-26": "Eid al-Fitr Holiday (estimated)", "2044-10-06": "Armed Forces Day", - "2044-10-30": "Arafat Day* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha Holiday* (*estimated)", - "2044-11-02": "Eid al-Adha Holiday* (*estimated)", - "2044-11-21": "Islamic New Year* (*estimated)", + "2044-10-30": "Arafat Day (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha Holiday (estimated)", + "2044-11-02": "Eid al-Adha Holiday (estimated)", + "2044-11-21": "Islamic New Year (estimated)", "2045-01-01": "New Year's Day", "2045-01-07": "Coptic Christmas", "2045-01-25": "January 25th Revolution Day", - "2045-01-30": "Prophet's Birthday* (*estimated)", + "2045-01-30": "Prophet's Birthday (estimated)", "2045-04-09": "Coptic Easter - Orthodox Easter", "2045-04-10": "Sham El Nessim", "2045-04-25": "Sinai Liberation Day", "2045-05-01": "Labor Day", "2045-06-30": "June 30 Revolution Day", "2045-07-23": "July 23 Revolution Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", - "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr Holiday (estimated)", + "2045-08-16": "Eid al-Fitr Holiday (estimated)", "2045-10-06": "Armed Forces Day", - "2045-10-20": "Arafat Day* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha Holiday* (*estimated)", - "2045-10-23": "Eid al-Adha Holiday* (*estimated)", - "2045-11-10": "Islamic New Year* (*estimated)", + "2045-10-20": "Arafat Day (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha Holiday (estimated)", + "2045-10-23": "Eid al-Adha Holiday (estimated)", + "2045-11-10": "Islamic New Year (estimated)", "2046-01-01": "New Year's Day", "2046-01-07": "Coptic Christmas", - "2046-01-19": "Prophet's Birthday* (*estimated)", + "2046-01-19": "Prophet's Birthday (estimated)", "2046-01-25": "January 25th Revolution Day", "2046-04-25": "Sinai Liberation Day", "2046-04-29": "Coptic Easter - Orthodox Easter", @@ -1671,18 +1671,18 @@ "2046-05-01": "Labor Day", "2046-06-30": "June 30 Revolution Day", "2046-07-23": "July 23 Revolution Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", - "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr Holiday (estimated)", + "2046-08-05": "Eid al-Fitr Holiday (estimated)", "2046-10-06": "Armed Forces Day", - "2046-10-09": "Arafat Day* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha Holiday* (*estimated)", - "2046-10-12": "Eid al-Adha Holiday* (*estimated)", - "2046-10-31": "Islamic New Year* (*estimated)", + "2046-10-09": "Arafat Day (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha Holiday (estimated)", + "2046-10-12": "Eid al-Adha Holiday (estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2047-01-01": "New Year's Day", "2047-01-07": "Coptic Christmas", - "2047-01-08": "Prophet's Birthday* (*estimated)", + "2047-01-08": "Prophet's Birthday (estimated)", "2047-01-25": "January 25th Revolution Day", "2047-04-21": "Coptic Easter - Orthodox Easter", "2047-04-22": "Sham El Nessim", @@ -1690,16 +1690,16 @@ "2047-05-01": "Labor Day", "2047-06-30": "June 30 Revolution Day", "2047-07-23": "July 23 Revolution Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", - "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", - "2047-09-29": "Arafat Day* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha Holiday* (*estimated)", - "2047-10-02": "Eid al-Adha Holiday* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr Holiday (estimated)", + "2047-07-26": "Eid al-Fitr Holiday (estimated)", + "2047-09-29": "Arafat Day (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha Holiday (estimated)", + "2047-10-02": "Eid al-Adha Holiday (estimated)", "2047-10-06": "Armed Forces Day", - "2047-10-20": "Islamic New Year* (*estimated)", - "2047-12-29": "Prophet's Birthday* (*estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-12-29": "Prophet's Birthday (estimated)", "2048-01-01": "New Year's Day", "2048-01-07": "Coptic Christmas", "2048-01-25": "January 25th Revolution Day", @@ -1708,17 +1708,17 @@ "2048-04-25": "Sinai Liberation Day", "2048-05-01": "Labor Day", "2048-06-30": "June 30 Revolution Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", - "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr Holiday (estimated)", + "2048-07-14": "Eid al-Fitr Holiday (estimated)", "2048-07-23": "July 23 Revolution Day", - "2048-09-18": "Arafat Day* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha Holiday* (*estimated)", - "2048-09-21": "Eid al-Adha Holiday* (*estimated)", + "2048-09-18": "Arafat Day (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha Holiday (estimated)", + "2048-09-21": "Eid al-Adha Holiday (estimated)", "2048-10-06": "Armed Forces Day", - "2048-10-09": "Islamic New Year* (*estimated)", - "2048-12-18": "Prophet's Birthday* (*estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-12-18": "Prophet's Birthday (estimated)", "2049-01-01": "New Year's Day", "2049-01-07": "Coptic Christmas", "2049-01-25": "January 25th Revolution Day", @@ -1726,17 +1726,17 @@ "2049-04-26": "Sham El Nessim", "2049-05-01": "Labor Day", "2049-06-30": "June 30 Revolution Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", - "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr Holiday (estimated)", + "2049-07-03": "Eid al-Fitr Holiday (estimated)", "2049-07-23": "July 23 Revolution Day", - "2049-09-07": "Arafat Day* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha Holiday* (*estimated)", - "2049-09-10": "Eid al-Adha Holiday* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", + "2049-09-07": "Arafat Day (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha Holiday (estimated)", + "2049-09-10": "Eid al-Adha Holiday (estimated)", + "2049-09-28": "Islamic New Year (estimated)", "2049-10-06": "Armed Forces Day", - "2049-12-07": "Prophet's Birthday* (*estimated)", + "2049-12-07": "Prophet's Birthday (estimated)", "2050-01-01": "New Year's Day", "2050-01-07": "Coptic Christmas", "2050-01-25": "January 25th Revolution Day", @@ -1744,16 +1744,16 @@ "2050-04-18": "Sham El Nessim", "2050-04-25": "Sinai Liberation Day", "2050-05-01": "Labor Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", - "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr Holiday (estimated)", + "2050-06-22": "Eid al-Fitr Holiday (estimated)", "2050-06-30": "June 30 Revolution Day", "2050-07-23": "July 23 Revolution Day", - "2050-08-27": "Arafat Day* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha Holiday* (*estimated)", - "2050-08-30": "Eid al-Adha Holiday* (*estimated)", - "2050-09-17": "Islamic New Year* (*estimated)", + "2050-08-27": "Arafat Day (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha Holiday (estimated)", + "2050-08-30": "Eid al-Adha Holiday (estimated)", + "2050-09-17": "Islamic New Year (estimated)", "2050-10-06": "Armed Forces Day", - "2050-11-26": "Prophet's Birthday* (*estimated)" + "2050-11-26": "Prophet's Birthday (estimated)" } diff --git a/snapshots/countries/ES_CE.json b/snapshots/countries/ES_CE.json index 03d252466..e28a34156 100644 --- a/snapshots/countries/ES_CE.json +++ b/snapshots/countries/ES_CE.json @@ -908,7 +908,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-08-05": "Santa Maria of Africa", "2025-08-15": "Assumption of Mary", "2025-09-02": "Ceuta Day", @@ -922,7 +922,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-08-05": "Santa Maria of Africa", "2026-08-15": "Assumption of Mary", "2026-09-02": "Ceuta Day", @@ -936,7 +936,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", - "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", "2027-08-05": "Santa Maria of Africa", "2027-08-15": "Assumption of Mary", "2027-09-02": "Ceuta Day", @@ -950,7 +950,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", "2028-08-05": "Santa Maria of Africa", "2028-08-15": "Assumption of Mary", "2028-09-02": "Ceuta Day", @@ -963,7 +963,7 @@ "2029-01-06": "Epiphany", "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", "2029-08-05": "Santa Maria of Africa", "2029-08-15": "Assumption of Mary", @@ -975,7 +975,7 @@ "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-06": "Epiphany", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", @@ -989,7 +989,7 @@ "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-06": "Epiphany", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", @@ -1003,7 +1003,7 @@ "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", "2032-01-06": "Epiphany", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", @@ -1017,7 +1017,7 @@ "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", "2033-01-06": "Epiphany", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", @@ -1031,7 +1031,7 @@ "2033-12-25": "Christmas Day", "2034-01-01": "New Year's Day", "2034-01-06": "Epiphany", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", @@ -1045,7 +1045,7 @@ "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-01-06": "Epiphany", - "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", @@ -1059,7 +1059,7 @@ "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-06": "Epiphany", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", @@ -1073,7 +1073,7 @@ "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-06": "Epiphany", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", @@ -1087,7 +1087,7 @@ "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-06": "Epiphany", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", @@ -1100,7 +1100,7 @@ "2038-12-08": "Immaculate Conception", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-01-06": "Epiphany", "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", @@ -1113,7 +1113,7 @@ "2039-12-06": "Constitution Day", "2039-12-08": "Immaculate Conception", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-06": "Epiphany", "2040-03-29": "Maundy Thursday", @@ -1126,7 +1126,7 @@ "2040-11-01": "All Saints' Day", "2040-12-06": "Constitution Day", "2040-12-08": "Immaculate Conception", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-06": "Epiphany", @@ -1138,7 +1138,7 @@ "2041-09-02": "Ceuta Day", "2041-10-12": "National Day", "2041-11-01": "All Saints' Day", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-06": "Constitution Day", "2041-12-08": "Immaculate Conception", "2041-12-25": "Christmas Day", @@ -1152,7 +1152,7 @@ "2042-09-02": "Ceuta Day", "2042-10-12": "National Day", "2042-11-01": "All Saints' Day", - "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", "2042-12-06": "Constitution Day", "2042-12-08": "Immaculate Conception", "2042-12-25": "Christmas Day", @@ -1166,7 +1166,7 @@ "2043-09-02": "Ceuta Day", "2043-10-12": "National Day", "2043-11-01": "All Saints' Day", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-06": "Constitution Day", "2043-12-08": "Immaculate Conception", "2043-12-25": "Christmas Day", @@ -1179,7 +1179,7 @@ "2044-08-15": "Assumption of Mary", "2044-09-02": "Ceuta Day", "2044-10-12": "National Day", - "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-11-01": "All Saints' Day", "2044-12-06": "Constitution Day", "2044-12-08": "Immaculate Conception", @@ -1193,7 +1193,7 @@ "2045-08-15": "Assumption of Mary", "2045-09-02": "Ceuta Day", "2045-10-12": "National Day", - "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-11-01": "All Saints' Day", "2045-12-06": "Constitution Day", "2045-12-08": "Immaculate Conception", @@ -1206,7 +1206,7 @@ "2046-08-05": "Santa Maria of Africa", "2046-08-15": "Assumption of Mary", "2046-09-02": "Ceuta Day", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-10-12": "National Day", "2046-11-01": "All Saints' Day", "2046-12-06": "Constitution Day", @@ -1220,7 +1220,7 @@ "2047-08-05": "Santa Maria of Africa", "2047-08-15": "Assumption of Mary", "2047-09-02": "Ceuta Day", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-10-12": "National Day", "2047-11-01": "All Saints' Day", "2047-12-06": "Constitution Day", @@ -1234,7 +1234,7 @@ "2048-08-05": "Santa Maria of Africa", "2048-08-15": "Assumption of Mary", "2048-09-02": "Ceuta Day", - "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-10-12": "National Day", "2048-11-01": "All Saints' Day", "2048-12-06": "Constitution Day", @@ -1248,7 +1248,7 @@ "2049-08-05": "Santa Maria of Africa", "2049-08-15": "Assumption of Mary", "2049-09-02": "Ceuta Day", - "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-10-12": "National Day", "2049-11-01": "All Saints' Day", "2049-12-06": "Constitution Day", @@ -1261,7 +1261,7 @@ "2050-05-01": "Labor Day", "2050-08-05": "Santa Maria of Africa", "2050-08-15": "Assumption of Mary", - "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", "2050-09-02": "Ceuta Day", "2050-10-12": "National Day", "2050-11-01": "All Saints' Day", diff --git a/snapshots/countries/ES_ML.json b/snapshots/countries/ES_ML.json index f019c1cca..7cafc790c 100644 --- a/snapshots/countries/ES_ML.json +++ b/snapshots/countries/ES_ML.json @@ -904,7 +904,7 @@ "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-08-15": "Assumption of Mary", "2025-10-12": "National Day", "2025-11-01": "All Saints' Day", @@ -916,7 +916,7 @@ "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-08-15": "Assumption of Mary", "2026-10-12": "National Day", "2026-11-01": "All Saints' Day", @@ -928,7 +928,7 @@ "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labor Day", - "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", "2027-08-15": "Assumption of Mary", "2027-10-12": "National Day", "2027-11-01": "All Saints' Day", @@ -940,7 +940,7 @@ "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", "2028-08-15": "Assumption of Mary", "2028-10-12": "National Day", "2028-11-01": "All Saints' Day", @@ -951,7 +951,7 @@ "2029-01-06": "Epiphany", "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", "2029-08-15": "Assumption of Mary", "2029-10-12": "National Day", @@ -961,7 +961,7 @@ "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-06": "Epiphany", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labor Day", @@ -973,7 +973,7 @@ "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-06": "Epiphany", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", @@ -985,7 +985,7 @@ "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", "2032-01-06": "Epiphany", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labor Day", @@ -997,7 +997,7 @@ "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", "2033-01-06": "Epiphany", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", @@ -1009,7 +1009,7 @@ "2033-12-25": "Christmas Day", "2034-01-01": "New Year's Day", "2034-01-06": "Epiphany", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labor Day", @@ -1021,7 +1021,7 @@ "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-01-06": "Epiphany", - "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labor Day", @@ -1033,7 +1033,7 @@ "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-06": "Epiphany", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", @@ -1045,7 +1045,7 @@ "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-06": "Epiphany", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", @@ -1057,7 +1057,7 @@ "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-06": "Epiphany", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labor Day", @@ -1068,7 +1068,7 @@ "2038-12-08": "Immaculate Conception", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-01-06": "Epiphany", "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", @@ -1079,7 +1079,7 @@ "2039-12-06": "Constitution Day", "2039-12-08": "Immaculate Conception", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-06": "Epiphany", "2040-03-29": "Maundy Thursday", @@ -1090,7 +1090,7 @@ "2040-11-01": "All Saints' Day", "2040-12-06": "Constitution Day", "2040-12-08": "Immaculate Conception", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-06": "Epiphany", @@ -1100,7 +1100,7 @@ "2041-08-15": "Assumption of Mary", "2041-10-12": "National Day", "2041-11-01": "All Saints' Day", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-06": "Constitution Day", "2041-12-08": "Immaculate Conception", "2041-12-25": "Christmas Day", @@ -1112,7 +1112,7 @@ "2042-08-15": "Assumption of Mary", "2042-10-12": "National Day", "2042-11-01": "All Saints' Day", - "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", "2042-12-06": "Constitution Day", "2042-12-08": "Immaculate Conception", "2042-12-25": "Christmas Day", @@ -1124,7 +1124,7 @@ "2043-08-15": "Assumption of Mary", "2043-10-12": "National Day", "2043-11-01": "All Saints' Day", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-06": "Constitution Day", "2043-12-08": "Immaculate Conception", "2043-12-25": "Christmas Day", @@ -1135,7 +1135,7 @@ "2044-05-01": "Labor Day", "2044-08-15": "Assumption of Mary", "2044-10-12": "National Day", - "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-11-01": "All Saints' Day", "2044-12-06": "Constitution Day", "2044-12-08": "Immaculate Conception", @@ -1147,7 +1147,7 @@ "2045-05-01": "Labor Day", "2045-08-15": "Assumption of Mary", "2045-10-12": "National Day", - "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-11-01": "All Saints' Day", "2045-12-06": "Constitution Day", "2045-12-08": "Immaculate Conception", @@ -1158,7 +1158,7 @@ "2046-03-23": "Good Friday", "2046-05-01": "Labor Day", "2046-08-15": "Assumption of Mary", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-10-12": "National Day", "2046-11-01": "All Saints' Day", "2046-12-06": "Constitution Day", @@ -1170,7 +1170,7 @@ "2047-04-12": "Good Friday", "2047-05-01": "Labor Day", "2047-08-15": "Assumption of Mary", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-10-12": "National Day", "2047-11-01": "All Saints' Day", "2047-12-06": "Constitution Day", @@ -1182,7 +1182,7 @@ "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", "2048-08-15": "Assumption of Mary", - "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-10-12": "National Day", "2048-11-01": "All Saints' Day", "2048-12-06": "Constitution Day", @@ -1194,7 +1194,7 @@ "2049-04-16": "Good Friday", "2049-05-01": "Labor Day", "2049-08-15": "Assumption of Mary", - "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-10-12": "National Day", "2049-11-01": "All Saints' Day", "2049-12-06": "Constitution Day", @@ -1206,7 +1206,7 @@ "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", "2050-08-15": "Assumption of Mary", - "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", "2050-10-12": "National Day", "2050-11-01": "All Saints' Day", "2050-12-06": "Constitution Day", diff --git a/snapshots/countries/ET_COMMON.json b/snapshots/countries/ET_COMMON.json index f4ac7c11c..2b5074162 100644 --- a/snapshots/countries/ET_COMMON.json +++ b/snapshots/countries/ET_COMMON.json @@ -1,6 +1,6 @@ { - "1950-01-01": "Prophet Muhammad's Birthday* (*estimated)", - "1950-01-02": "Prophet Muhammad's Birthday* (*estimated)", + "1950-01-01": "Prophet Muhammad's Birthday (estimated)", + "1950-01-02": "Prophet Muhammad's Birthday (estimated)", "1950-01-07": "Orthodox Christmas Day", "1950-01-19": "Orthodox Epiphany Day", "1950-03-02": "Adwa Victory Day", @@ -8,13 +8,13 @@ "1950-04-09": "Orthodox Easter Sunday", "1950-05-01": "Labor Day", "1950-05-05": "Patriots Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", "1950-09-11": "Ethiopian New Year's Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-09-27": "Finding of True Cross", - "1950-12-22": "Prophet Muhammad's Birthday* (*estimated)", - "1950-12-23": "Prophet Muhammad's Birthday* (*estimated)", + "1950-12-22": "Prophet Muhammad's Birthday (estimated)", + "1950-12-23": "Prophet Muhammad's Birthday (estimated)", "1951-01-07": "Orthodox Christmas Day", "1951-01-19": "Orthodox Epiphany Day", "1951-03-02": "Adwa Victory Day", @@ -22,12 +22,12 @@ "1951-04-29": "Orthodox Easter Sunday", "1951-05-01": "Labor Day", "1951-05-05": "Patriots Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated); Ethiopian New Year's Day", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-09-12": "Eid al-Adha (estimated); Ethiopian New Year's Day", + "1951-09-13": "Eid al-Adha (estimated)", "1951-09-28": "Finding of True Cross", - "1951-12-11": "Prophet Muhammad's Birthday* (*estimated)", - "1951-12-12": "Prophet Muhammad's Birthday* (*estimated)", + "1951-12-11": "Prophet Muhammad's Birthday (estimated)", + "1951-12-12": "Prophet Muhammad's Birthday (estimated)", "1952-01-07": "Orthodox Christmas Day", "1952-01-19": "Orthodox Epiphany Day", "1952-03-02": "Adwa Victory Day", @@ -35,13 +35,13 @@ "1952-04-20": "Orthodox Easter Sunday", "1952-05-01": "Labor Day", "1952-05-05": "Patriots Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", "1952-09-11": "Ethiopian New Year's Day", "1952-09-27": "Finding of True Cross", - "1952-11-30": "Prophet Muhammad's Birthday* (*estimated)", - "1952-12-01": "Prophet Muhammad's Birthday* (*estimated)", + "1952-11-30": "Prophet Muhammad's Birthday (estimated)", + "1952-12-01": "Prophet Muhammad's Birthday (estimated)", "1953-01-07": "Orthodox Christmas Day", "1953-01-19": "Orthodox Epiphany Day", "1953-03-02": "Adwa Victory Day", @@ -49,13 +49,13 @@ "1953-04-05": "Orthodox Easter Sunday", "1953-05-01": "Labor Day", "1953-05-05": "Patriots Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", "1953-09-11": "Ethiopian New Year's Day", "1953-09-27": "Finding of True Cross", - "1953-11-19": "Prophet Muhammad's Birthday* (*estimated)", - "1953-11-20": "Prophet Muhammad's Birthday* (*estimated)", + "1953-11-19": "Prophet Muhammad's Birthday (estimated)", + "1953-11-20": "Prophet Muhammad's Birthday (estimated)", "1954-01-07": "Orthodox Christmas Day", "1954-01-19": "Orthodox Epiphany Day", "1954-03-02": "Adwa Victory Day", @@ -63,13 +63,13 @@ "1954-04-25": "Orthodox Easter Sunday", "1954-05-01": "Labor Day", "1954-05-05": "Patriots Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-09-11": "Ethiopian New Year's Day", "1954-09-27": "Finding of True Cross", - "1954-11-08": "Prophet Muhammad's Birthday* (*estimated)", - "1954-11-09": "Prophet Muhammad's Birthday* (*estimated)", + "1954-11-08": "Prophet Muhammad's Birthday (estimated)", + "1954-11-09": "Prophet Muhammad's Birthday (estimated)", "1955-01-07": "Orthodox Christmas Day", "1955-01-19": "Orthodox Epiphany Day", "1955-03-02": "Adwa Victory Day", @@ -77,13 +77,13 @@ "1955-04-17": "Orthodox Easter Sunday", "1955-05-01": "Labor Day", "1955-05-05": "Patriots Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-09-12": "Ethiopian New Year's Day", "1955-09-28": "Finding of True Cross", - "1955-10-29": "Prophet Muhammad's Birthday* (*estimated)", - "1955-10-30": "Prophet Muhammad's Birthday* (*estimated)", + "1955-10-29": "Prophet Muhammad's Birthday (estimated)", + "1955-10-30": "Prophet Muhammad's Birthday (estimated)", "1956-01-07": "Orthodox Christmas Day", "1956-01-19": "Orthodox Epiphany Day", "1956-03-02": "Adwa Victory Day", @@ -91,269 +91,269 @@ "1956-05-04": "Orthodox Good Friday", "1956-05-05": "Patriots Day", "1956-05-06": "Orthodox Easter Sunday", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-09-11": "Ethiopian New Year's Day", "1956-09-27": "Finding of True Cross", - "1956-10-17": "Prophet Muhammad's Birthday* (*estimated)", - "1956-10-18": "Prophet Muhammad's Birthday* (*estimated)", + "1956-10-17": "Prophet Muhammad's Birthday (estimated)", + "1956-10-18": "Prophet Muhammad's Birthday (estimated)", "1957-01-07": "Orthodox Christmas Day", "1957-01-19": "Orthodox Epiphany Day", "1957-03-02": "Adwa Victory Day", "1957-04-19": "Orthodox Good Friday", "1957-04-21": "Orthodox Easter Sunday", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", "1957-05-05": "Patriots Day", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", "1957-09-11": "Ethiopian New Year's Day", "1957-09-27": "Finding of True Cross", - "1957-10-06": "Prophet Muhammad's Birthday* (*estimated)", - "1957-10-07": "Prophet Muhammad's Birthday* (*estimated)", + "1957-10-06": "Prophet Muhammad's Birthday (estimated)", + "1957-10-07": "Prophet Muhammad's Birthday (estimated)", "1958-01-07": "Orthodox Christmas Day", "1958-01-19": "Orthodox Epiphany Day", "1958-03-02": "Adwa Victory Day", "1958-04-11": "Orthodox Good Friday", "1958-04-13": "Orthodox Easter Sunday", - "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", "1958-05-01": "Labor Day", "1958-05-05": "Patriots Day", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", "1958-09-11": "Ethiopian New Year's Day", - "1958-09-26": "Prophet Muhammad's Birthday* (*estimated)", - "1958-09-27": "Finding of True Cross; Prophet Muhammad's Birthday* (*estimated)", + "1958-09-26": "Prophet Muhammad's Birthday (estimated)", + "1958-09-27": "Finding of True Cross; Prophet Muhammad's Birthday (estimated)", "1959-01-07": "Orthodox Christmas Day", "1959-01-19": "Orthodox Epiphany Day", "1959-03-02": "Adwa Victory Day", - "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", "1959-05-01": "Labor Day; Orthodox Good Friday", "1959-05-03": "Orthodox Easter Sunday", "1959-05-05": "Patriots Day", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", "1959-09-12": "Ethiopian New Year's Day", - "1959-09-15": "Prophet Muhammad's Birthday* (*estimated)", - "1959-09-16": "Prophet Muhammad's Birthday* (*estimated)", + "1959-09-15": "Prophet Muhammad's Birthday (estimated)", + "1959-09-16": "Prophet Muhammad's Birthday (estimated)", "1959-09-28": "Finding of True Cross", "1960-01-07": "Orthodox Christmas Day", "1960-01-19": "Orthodox Epiphany Day", "1960-03-02": "Adwa Victory Day", - "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", "1960-04-15": "Orthodox Good Friday", "1960-04-17": "Orthodox Easter Sunday", "1960-05-01": "Labor Day", "1960-05-05": "Patriots Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated)", - "1960-09-03": "Prophet Muhammad's Birthday* (*estimated)", - "1960-09-04": "Prophet Muhammad's Birthday* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated)", + "1960-09-03": "Prophet Muhammad's Birthday (estimated)", + "1960-09-04": "Prophet Muhammad's Birthday (estimated)", "1960-09-11": "Ethiopian New Year's Day", "1960-09-27": "Finding of True Cross", "1961-01-07": "Orthodox Christmas Day", "1961-01-19": "Orthodox Epiphany Day", "1961-03-02": "Adwa Victory Day", - "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", "1961-04-07": "Orthodox Good Friday", "1961-04-09": "Orthodox Easter Sunday", "1961-05-01": "Labor Day", "1961-05-05": "Patriots Day", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-08-23": "Prophet Muhammad's Birthday* (*estimated)", - "1961-08-24": "Prophet Muhammad's Birthday* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-08-23": "Prophet Muhammad's Birthday (estimated)", + "1961-08-24": "Prophet Muhammad's Birthday (estimated)", "1961-09-11": "Ethiopian New Year's Day", "1961-09-27": "Finding of True Cross", "1962-01-07": "Orthodox Christmas Day", "1962-01-19": "Orthodox Epiphany Day", "1962-03-02": "Adwa Victory Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", "1962-04-27": "Orthodox Good Friday", "1962-04-29": "Orthodox Easter Sunday", "1962-05-01": "Labor Day", "1962-05-05": "Patriots Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", - "1962-08-12": "Prophet Muhammad's Birthday* (*estimated)", - "1962-08-13": "Prophet Muhammad's Birthday* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", + "1962-08-12": "Prophet Muhammad's Birthday (estimated)", + "1962-08-13": "Prophet Muhammad's Birthday (estimated)", "1962-09-11": "Ethiopian New Year's Day", "1962-09-27": "Finding of True Cross", "1963-01-07": "Orthodox Christmas Day", "1963-01-19": "Orthodox Epiphany Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", "1963-03-02": "Adwa Victory Day", "1963-04-12": "Orthodox Good Friday", "1963-04-14": "Orthodox Easter Sunday", "1963-05-01": "Labor Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", "1963-05-05": "Patriots Day", - "1963-08-02": "Prophet Muhammad's Birthday* (*estimated)", - "1963-08-03": "Prophet Muhammad's Birthday* (*estimated)", + "1963-08-02": "Prophet Muhammad's Birthday (estimated)", + "1963-08-03": "Prophet Muhammad's Birthday (estimated)", "1963-09-12": "Ethiopian New Year's Day", "1963-09-28": "Finding of True Cross", "1964-01-07": "Orthodox Christmas Day", "1964-01-19": "Orthodox Epiphany Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-02": "Adwa Victory Day", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labor Day; Orthodox Good Friday", "1964-05-03": "Orthodox Easter Sunday", "1964-05-05": "Patriots Day", - "1964-07-21": "Prophet Muhammad's Birthday* (*estimated)", - "1964-07-22": "Prophet Muhammad's Birthday* (*estimated)", + "1964-07-21": "Prophet Muhammad's Birthday (estimated)", + "1964-07-22": "Prophet Muhammad's Birthday (estimated)", "1964-09-11": "Ethiopian New Year's Day", "1964-09-27": "Finding of True Cross", "1965-01-07": "Orthodox Christmas Day", "1965-01-19": "Orthodox Epiphany Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", "1965-03-02": "Adwa Victory Day", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-23": "Orthodox Good Friday", "1965-04-25": "Orthodox Easter Sunday", "1965-05-01": "Labor Day", "1965-05-05": "Patriots Day", - "1965-07-10": "Prophet Muhammad's Birthday* (*estimated)", - "1965-07-11": "Prophet Muhammad's Birthday* (*estimated)", + "1965-07-10": "Prophet Muhammad's Birthday (estimated)", + "1965-07-11": "Prophet Muhammad's Birthday (estimated)", "1965-09-11": "Ethiopian New Year's Day", "1965-09-27": "Finding of True Cross", "1966-01-07": "Orthodox Christmas Day", "1966-01-19": "Orthodox Epiphany Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", "1966-03-02": "Adwa Victory Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-08": "Orthodox Good Friday", "1966-04-10": "Orthodox Easter Sunday", "1966-05-01": "Labor Day", "1966-05-05": "Patriots Day", - "1966-07-01": "Prophet Muhammad's Birthday* (*estimated)", - "1966-07-02": "Prophet Muhammad's Birthday* (*estimated)", + "1966-07-01": "Prophet Muhammad's Birthday (estimated)", + "1966-07-02": "Prophet Muhammad's Birthday (estimated)", "1966-09-11": "Ethiopian New Year's Day", "1966-09-27": "Finding of True Cross", "1967-01-07": "Orthodox Christmas Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", "1967-01-19": "Orthodox Epiphany Day", "1967-03-02": "Adwa Victory Day", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-04-28": "Orthodox Good Friday", "1967-04-30": "Orthodox Easter Sunday", "1967-05-01": "Labor Day", "1967-05-05": "Patriots Day", - "1967-06-19": "Prophet Muhammad's Birthday* (*estimated)", - "1967-06-20": "Prophet Muhammad's Birthday* (*estimated)", + "1967-06-19": "Prophet Muhammad's Birthday (estimated)", + "1967-06-20": "Prophet Muhammad's Birthday (estimated)", "1967-09-12": "Ethiopian New Year's Day", "1967-09-28": "Finding of True Cross", - "1968-01-01": "Eid al-Fitr* (*estimated)", + "1968-01-01": "Eid al-Fitr (estimated)", "1968-01-07": "Orthodox Christmas Day", "1968-01-19": "Orthodox Epiphany Day", "1968-03-02": "Adwa Victory Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-19": "Orthodox Good Friday", "1968-04-21": "Orthodox Easter Sunday", "1968-05-01": "Labor Day", "1968-05-05": "Patriots Day", - "1968-06-08": "Prophet Muhammad's Birthday* (*estimated)", - "1968-06-09": "Prophet Muhammad's Birthday* (*estimated)", + "1968-06-08": "Prophet Muhammad's Birthday (estimated)", + "1968-06-09": "Prophet Muhammad's Birthday (estimated)", "1968-09-11": "Ethiopian New Year's Day", "1968-09-27": "Finding of True Cross", - "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", "1969-01-07": "Orthodox Christmas Day", "1969-01-19": "Orthodox Epiphany Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", "1969-03-02": "Adwa Victory Day", "1969-04-11": "Orthodox Good Friday", "1969-04-13": "Orthodox Easter Sunday", "1969-05-01": "Labor Day", "1969-05-05": "Patriots Day", - "1969-05-28": "Prophet Muhammad's Birthday* (*estimated)", - "1969-05-29": "Prophet Muhammad's Birthday* (*estimated)", + "1969-05-28": "Prophet Muhammad's Birthday (estimated)", + "1969-05-29": "Prophet Muhammad's Birthday (estimated)", "1969-09-11": "Ethiopian New Year's Day", "1969-09-27": "Finding of True Cross", - "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1970-01-07": "Orthodox Christmas Day", "1970-01-19": "Orthodox Epiphany Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", "1970-03-02": "Adwa Victory Day", "1970-04-24": "Orthodox Good Friday", "1970-04-26": "Orthodox Easter Sunday", "1970-05-01": "Labor Day", "1970-05-05": "Patriots Day", - "1970-05-18": "Prophet Muhammad's Birthday* (*estimated)", - "1970-05-19": "Prophet Muhammad's Birthday* (*estimated)", + "1970-05-18": "Prophet Muhammad's Birthday (estimated)", + "1970-05-19": "Prophet Muhammad's Birthday (estimated)", "1970-09-11": "Ethiopian New Year's Day", "1970-09-27": "Finding of True Cross", - "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1971-01-07": "Orthodox Christmas Day", "1971-01-19": "Orthodox Epiphany Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", "1971-03-02": "Adwa Victory Day", "1971-04-16": "Orthodox Good Friday", "1971-04-18": "Orthodox Easter Sunday", "1971-05-01": "Labor Day", "1971-05-05": "Patriots Day", - "1971-05-07": "Prophet Muhammad's Birthday* (*estimated)", - "1971-05-08": "Prophet Muhammad's Birthday* (*estimated)", + "1971-05-07": "Prophet Muhammad's Birthday (estimated)", + "1971-05-08": "Prophet Muhammad's Birthday (estimated)", "1971-09-12": "Ethiopian New Year's Day", "1971-09-28": "Finding of True Cross", - "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1972-01-07": "Orthodox Christmas Day", "1972-01-19": "Orthodox Epiphany Day", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha (estimated)", "1972-03-02": "Adwa Victory Day", "1972-04-07": "Orthodox Good Friday", "1972-04-09": "Orthodox Easter Sunday", - "1972-04-25": "Prophet Muhammad's Birthday* (*estimated)", - "1972-04-26": "Prophet Muhammad's Birthday* (*estimated)", + "1972-04-25": "Prophet Muhammad's Birthday (estimated)", + "1972-04-26": "Prophet Muhammad's Birthday (estimated)", "1972-05-01": "Labor Day", "1972-05-05": "Patriots Day", "1972-09-11": "Ethiopian New Year's Day", "1972-09-27": "Finding of True Cross", - "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1973-01-07": "Orthodox Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-19": "Orthodox Epiphany Day", "1973-03-02": "Adwa Victory Day", - "1973-04-15": "Prophet Muhammad's Birthday* (*estimated)", - "1973-04-16": "Prophet Muhammad's Birthday* (*estimated)", + "1973-04-15": "Prophet Muhammad's Birthday (estimated)", + "1973-04-16": "Prophet Muhammad's Birthday (estimated)", "1973-04-27": "Orthodox Good Friday", "1973-04-29": "Orthodox Easter Sunday", "1973-05-01": "Labor Day", "1973-05-05": "Patriots Day", "1973-09-11": "Ethiopian New Year's Day", "1973-09-27": "Finding of True Cross", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-07": "Orthodox Christmas Day", "1974-01-19": "Orthodox Epiphany Day", "1974-03-02": "Adwa Victory Day", - "1974-04-04": "Prophet Muhammad's Birthday* (*estimated)", - "1974-04-05": "Prophet Muhammad's Birthday* (*estimated)", + "1974-04-04": "Prophet Muhammad's Birthday (estimated)", + "1974-04-05": "Prophet Muhammad's Birthday (estimated)", "1974-04-12": "Orthodox Good Friday", "1974-04-14": "Orthodox Easter Sunday", "1974-05-01": "Labor Day", "1974-05-05": "Patriots Day", "1974-09-11": "Ethiopian New Year's Day", "1974-09-27": "Finding of True Cross", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Eid al-Adha* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Eid al-Adha (estimated)", "1975-01-07": "Orthodox Christmas Day", "1975-01-19": "Orthodox Epiphany Day", "1975-03-02": "Adwa Victory Day", - "1975-03-24": "Prophet Muhammad's Birthday* (*estimated)", - "1975-03-25": "Prophet Muhammad's Birthday* (*estimated)", + "1975-03-24": "Prophet Muhammad's Birthday (estimated)", + "1975-03-25": "Prophet Muhammad's Birthday (estimated)", "1975-05-01": "Labor Day", "1975-05-02": "Orthodox Good Friday", "1975-05-04": "Orthodox Easter Sunday", @@ -361,112 +361,112 @@ "1975-09-12": "Ethiopian New Year's Day", "1975-09-13": "Downfall of King Haile Selassie Day", "1975-09-28": "Finding of True Cross", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1976-01-07": "Orthodox Christmas Day", "1976-01-19": "Orthodox Epiphany Day", "1976-03-02": "Adwa Victory Day", - "1976-03-12": "Prophet Muhammad's Birthday* (*estimated)", - "1976-03-13": "Prophet Muhammad's Birthday* (*estimated)", + "1976-03-12": "Prophet Muhammad's Birthday (estimated)", + "1976-03-13": "Prophet Muhammad's Birthday (estimated)", "1976-04-23": "Orthodox Good Friday", "1976-04-25": "Orthodox Easter Sunday", "1976-05-01": "Labor Day", "1976-05-05": "Patriots Day", "1976-09-11": "Ethiopian New Year's Day", "1976-09-12": "Downfall of King Haile Selassie Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", "1976-09-27": "Finding of True Cross", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1977-01-07": "Orthodox Christmas Day", "1977-01-19": "Orthodox Epiphany Day", - "1977-03-02": "Adwa Victory Day; Prophet Muhammad's Birthday* (*estimated)", - "1977-03-03": "Prophet Muhammad's Birthday* (*estimated)", + "1977-03-02": "Adwa Victory Day; Prophet Muhammad's Birthday (estimated)", + "1977-03-03": "Prophet Muhammad's Birthday (estimated)", "1977-04-08": "Orthodox Good Friday", "1977-04-10": "Orthodox Easter Sunday", "1977-05-01": "Labor Day", "1977-05-05": "Patriots Day", "1977-09-11": "Ethiopian New Year's Day", "1977-09-12": "Downfall of King Haile Selassie Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", "1977-09-27": "Finding of True Cross", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", "1978-01-07": "Orthodox Christmas Day", "1978-01-19": "Orthodox Epiphany Day", - "1978-02-19": "Prophet Muhammad's Birthday* (*estimated)", - "1978-02-20": "Prophet Muhammad's Birthday* (*estimated)", + "1978-02-19": "Prophet Muhammad's Birthday (estimated)", + "1978-02-20": "Prophet Muhammad's Birthday (estimated)", "1978-03-02": "Adwa Victory Day", "1978-04-28": "Orthodox Good Friday", "1978-04-30": "Orthodox Easter Sunday", "1978-05-01": "Labor Day", "1978-05-05": "Patriots Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", "1978-09-11": "Ethiopian New Year's Day", "1978-09-12": "Downfall of King Haile Selassie Day", "1978-09-27": "Finding of True Cross", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", "1979-01-07": "Orthodox Christmas Day", "1979-01-19": "Orthodox Epiphany Day", - "1979-02-09": "Prophet Muhammad's Birthday* (*estimated)", - "1979-02-10": "Prophet Muhammad's Birthday* (*estimated)", + "1979-02-09": "Prophet Muhammad's Birthday (estimated)", + "1979-02-10": "Prophet Muhammad's Birthday (estimated)", "1979-03-02": "Adwa Victory Day", "1979-04-20": "Orthodox Good Friday", "1979-04-22": "Orthodox Easter Sunday", "1979-05-01": "Labor Day", "1979-05-05": "Patriots Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", "1979-09-12": "Ethiopian New Year's Day", "1979-09-13": "Downfall of King Haile Selassie Day", "1979-09-28": "Finding of True Cross", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", "1980-01-07": "Orthodox Christmas Day", "1980-01-19": "Orthodox Epiphany Day", - "1980-01-30": "Prophet Muhammad's Birthday* (*estimated)", - "1980-01-31": "Prophet Muhammad's Birthday* (*estimated)", + "1980-01-30": "Prophet Muhammad's Birthday (estimated)", + "1980-01-31": "Prophet Muhammad's Birthday (estimated)", "1980-03-02": "Adwa Victory Day", "1980-04-04": "Orthodox Good Friday", "1980-04-06": "Orthodox Easter Sunday", "1980-05-01": "Labor Day", "1980-05-05": "Patriots Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", "1980-09-11": "Ethiopian New Year's Day", "1980-09-12": "Downfall of King Haile Selassie Day", "1980-09-27": "Finding of True Cross", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1981-01-07": "Orthodox Christmas Day", - "1981-01-18": "Prophet Muhammad's Birthday* (*estimated)", - "1981-01-19": "Orthodox Epiphany Day; Prophet Muhammad's Birthday* (*estimated)", + "1981-01-18": "Prophet Muhammad's Birthday (estimated)", + "1981-01-19": "Orthodox Epiphany Day; Prophet Muhammad's Birthday (estimated)", "1981-03-02": "Adwa Victory Day", "1981-04-24": "Orthodox Good Friday", "1981-04-26": "Orthodox Easter Sunday", "1981-05-01": "Labor Day", "1981-05-05": "Patriots Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", "1981-09-11": "Ethiopian New Year's Day", "1981-09-12": "Downfall of King Haile Selassie Day", "1981-09-27": "Finding of True Cross", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1982-01-07": "Orthodox Christmas Day; Prophet Muhammad's Birthday* (*estimated)", - "1982-01-08": "Prophet Muhammad's Birthday* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1982-01-07": "Orthodox Christmas Day; Prophet Muhammad's Birthday (estimated)", + "1982-01-08": "Prophet Muhammad's Birthday (estimated)", "1982-01-19": "Orthodox Epiphany Day", "1982-03-02": "Adwa Victory Day", "1982-04-16": "Orthodox Good Friday", "1982-04-18": "Orthodox Easter Sunday", "1982-05-01": "Labor Day", "1982-05-05": "Patriots Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", "1982-09-11": "Ethiopian New Year's Day", "1982-09-12": "Downfall of King Haile Selassie Day", - "1982-09-27": "Eid al-Adha* (*estimated); Finding of True Cross", - "1982-09-28": "Eid al-Adha* (*estimated)", - "1982-12-27": "Prophet Muhammad's Birthday* (*estimated)", - "1982-12-28": "Prophet Muhammad's Birthday* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated); Finding of True Cross", + "1982-09-28": "Eid al-Adha (estimated)", + "1982-12-27": "Prophet Muhammad's Birthday (estimated)", + "1982-12-28": "Prophet Muhammad's Birthday (estimated)", "1983-01-07": "Orthodox Christmas Day", "1983-01-19": "Orthodox Epiphany Day", "1983-03-02": "Adwa Victory Day", @@ -474,14 +474,14 @@ "1983-05-05": "Patriots Day", "1983-05-06": "Orthodox Good Friday", "1983-05-08": "Orthodox Easter Sunday", - "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", "1983-09-12": "Ethiopian New Year's Day", "1983-09-13": "Downfall of King Haile Selassie Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-09-28": "Finding of True Cross", - "1983-12-16": "Prophet Muhammad's Birthday* (*estimated)", - "1983-12-17": "Prophet Muhammad's Birthday* (*estimated)", + "1983-12-16": "Prophet Muhammad's Birthday (estimated)", + "1983-12-17": "Prophet Muhammad's Birthday (estimated)", "1984-01-07": "Orthodox Christmas Day", "1984-01-19": "Orthodox Epiphany Day", "1984-03-02": "Adwa Victory Day", @@ -489,14 +489,14 @@ "1984-04-22": "Orthodox Easter Sunday", "1984-05-01": "Labor Day", "1984-05-05": "Patriots Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-09-11": "Ethiopian New Year's Day", "1984-09-12": "Downfall of King Haile Selassie Day", "1984-09-27": "Finding of True Cross", - "1984-12-04": "Prophet Muhammad's Birthday* (*estimated)", - "1984-12-05": "Prophet Muhammad's Birthday* (*estimated)", + "1984-12-04": "Prophet Muhammad's Birthday (estimated)", + "1984-12-05": "Prophet Muhammad's Birthday (estimated)", "1985-01-07": "Orthodox Christmas Day", "1985-01-19": "Orthodox Epiphany Day", "1985-03-02": "Adwa Victory Day", @@ -504,14 +504,14 @@ "1985-04-14": "Orthodox Easter Sunday", "1985-05-01": "Labor Day", "1985-05-05": "Patriots Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", "1985-09-11": "Ethiopian New Year's Day", "1985-09-12": "Downfall of King Haile Selassie Day", "1985-09-27": "Finding of True Cross", - "1985-11-24": "Prophet Muhammad's Birthday* (*estimated)", - "1985-11-25": "Prophet Muhammad's Birthday* (*estimated)", + "1985-11-24": "Prophet Muhammad's Birthday (estimated)", + "1985-11-25": "Prophet Muhammad's Birthday (estimated)", "1986-01-07": "Orthodox Christmas Day", "1986-01-19": "Orthodox Epiphany Day", "1986-03-02": "Adwa Victory Day", @@ -519,14 +519,14 @@ "1986-05-02": "Orthodox Good Friday", "1986-05-04": "Orthodox Easter Sunday", "1986-05-05": "Patriots Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (estimated)", "1986-09-11": "Ethiopian New Year's Day", "1986-09-12": "Downfall of King Haile Selassie Day", "1986-09-27": "Finding of True Cross", - "1986-11-14": "Prophet Muhammad's Birthday* (*estimated)", - "1986-11-15": "Prophet Muhammad's Birthday* (*estimated)", + "1986-11-14": "Prophet Muhammad's Birthday (estimated)", + "1986-11-15": "Prophet Muhammad's Birthday (estimated)", "1987-01-07": "Orthodox Christmas Day", "1987-01-19": "Orthodox Epiphany Day", "1987-03-02": "Adwa Victory Day", @@ -534,14 +534,14 @@ "1987-04-19": "Orthodox Easter Sunday", "1987-05-01": "Labor Day", "1987-05-05": "Patriots Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-09-12": "Ethiopian New Year's Day", "1987-09-13": "Downfall of King Haile Selassie Day", "1987-09-28": "Finding of True Cross", - "1987-11-03": "Prophet Muhammad's Birthday* (*estimated)", - "1987-11-04": "Prophet Muhammad's Birthday* (*estimated)", + "1987-11-03": "Prophet Muhammad's Birthday (estimated)", + "1987-11-04": "Prophet Muhammad's Birthday (estimated)", "1988-01-07": "Orthodox Christmas Day", "1988-01-19": "Orthodox Epiphany Day", "1988-03-02": "Adwa Victory Day", @@ -549,14 +549,14 @@ "1988-04-10": "Orthodox Easter Sunday", "1988-05-01": "Labor Day", "1988-05-05": "Patriots Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-09-11": "Ethiopian New Year's Day", "1988-09-12": "Downfall of King Haile Selassie Day", "1988-09-27": "Finding of True Cross", - "1988-10-22": "Prophet Muhammad's Birthday* (*estimated)", - "1988-10-23": "Prophet Muhammad's Birthday* (*estimated)", + "1988-10-22": "Prophet Muhammad's Birthday (estimated)", + "1988-10-23": "Prophet Muhammad's Birthday (estimated)", "1989-01-07": "Orthodox Christmas Day", "1989-01-19": "Orthodox Epiphany Day", "1989-03-02": "Adwa Victory Day", @@ -564,256 +564,256 @@ "1989-04-30": "Orthodox Easter Sunday", "1989-05-01": "Labor Day", "1989-05-05": "Patriots Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", "1989-09-11": "Ethiopian New Year's Day", "1989-09-12": "Downfall of King Haile Selassie Day", "1989-09-27": "Finding of True Cross", - "1989-10-11": "Prophet Muhammad's Birthday* (*estimated)", - "1989-10-12": "Prophet Muhammad's Birthday* (*estimated)", + "1989-10-11": "Prophet Muhammad's Birthday (estimated)", + "1989-10-12": "Prophet Muhammad's Birthday (estimated)", "1990-01-07": "Orthodox Christmas Day", "1990-01-19": "Orthodox Epiphany Day", "1990-03-02": "Adwa Victory Day", "1990-04-13": "Orthodox Good Friday", "1990-04-15": "Orthodox Easter Sunday", - "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "Labor Day", "1990-05-05": "Patriots Day", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", "1990-09-11": "Ethiopian New Year's Day", "1990-09-12": "Downfall of King Haile Selassie Day", "1990-09-27": "Finding of True Cross", - "1990-10-01": "Prophet Muhammad's Birthday* (*estimated)", - "1990-10-02": "Prophet Muhammad's Birthday* (*estimated)", + "1990-10-01": "Prophet Muhammad's Birthday (estimated)", + "1990-10-02": "Prophet Muhammad's Birthday (estimated)", "1991-01-07": "Orthodox Christmas Day", "1991-01-19": "Orthodox Epiphany Day", "1991-03-02": "Adwa Victory Day", "1991-04-05": "Orthodox Good Friday", "1991-04-07": "Orthodox Easter Sunday", - "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "Labor Day", "1991-05-05": "Patriots Day", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", "1991-09-12": "Ethiopian New Year's Day", - "1991-09-20": "Prophet Muhammad's Birthday* (*estimated)", - "1991-09-21": "Prophet Muhammad's Birthday* (*estimated)", + "1991-09-20": "Prophet Muhammad's Birthday (estimated)", + "1991-09-21": "Prophet Muhammad's Birthday (estimated)", "1991-09-28": "Finding of True Cross", "1992-01-07": "Orthodox Christmas Day", "1992-01-19": "Orthodox Epiphany Day", "1992-03-02": "Adwa Victory Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-24": "Orthodox Good Friday", "1992-04-26": "Orthodox Easter Sunday", "1992-05-01": "Labor Day", "1992-05-05": "Patriots Day", "1992-05-28": "Downfall of Dergue Regime Day", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-09-09": "Prophet Muhammad's Birthday* (*estimated)", - "1992-09-10": "Prophet Muhammad's Birthday* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-09-09": "Prophet Muhammad's Birthday (estimated)", + "1992-09-10": "Prophet Muhammad's Birthday (estimated)", "1992-09-11": "Ethiopian New Year's Day", "1992-09-27": "Finding of True Cross", "1993-01-07": "Orthodox Christmas Day", "1993-01-19": "Orthodox Epiphany Day", "1993-03-02": "Adwa Victory Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-16": "Orthodox Good Friday", "1993-04-18": "Orthodox Easter Sunday", "1993-05-01": "Labor Day", "1993-05-05": "Patriots Day", "1993-05-28": "Downfall of Dergue Regime Day", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-08-29": "Prophet Muhammad's Birthday* (*estimated)", - "1993-08-30": "Prophet Muhammad's Birthday* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-08-29": "Prophet Muhammad's Birthday (estimated)", + "1993-08-30": "Prophet Muhammad's Birthday (estimated)", "1993-09-11": "Ethiopian New Year's Day", "1993-09-27": "Finding of True Cross", "1994-01-07": "Orthodox Christmas Day", "1994-01-19": "Orthodox Epiphany Day", "1994-03-02": "Adwa Victory Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-29": "Orthodox Good Friday", "1994-05-01": "Labor Day; Orthodox Easter Sunday", "1994-05-05": "Patriots Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-28": "Downfall of Dergue Regime Day", - "1994-08-19": "Prophet Muhammad's Birthday* (*estimated)", - "1994-08-20": "Prophet Muhammad's Birthday* (*estimated)", + "1994-08-19": "Prophet Muhammad's Birthday (estimated)", + "1994-08-20": "Prophet Muhammad's Birthday (estimated)", "1994-09-11": "Ethiopian New Year's Day", "1994-09-27": "Finding of True Cross", "1995-01-07": "Orthodox Christmas Day", "1995-01-19": "Orthodox Epiphany Day", - "1995-03-02": "Adwa Victory Day; Eid al-Fitr* (*estimated)", + "1995-03-02": "Adwa Victory Day; Eid al-Fitr (estimated)", "1995-04-21": "Orthodox Good Friday", "1995-04-23": "Orthodox Easter Sunday", "1995-05-01": "Labor Day", "1995-05-05": "Patriots Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-05-28": "Downfall of Dergue Regime Day", - "1995-08-08": "Prophet Muhammad's Birthday* (*estimated)", - "1995-08-09": "Prophet Muhammad's Birthday* (*estimated)", + "1995-08-08": "Prophet Muhammad's Birthday (estimated)", + "1995-08-09": "Prophet Muhammad's Birthday (estimated)", "1995-09-12": "Ethiopian New Year's Day", "1995-09-28": "Finding of True Cross", "1996-01-07": "Orthodox Christmas Day", "1996-01-19": "Orthodox Epiphany Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-02": "Adwa Victory Day", "1996-04-12": "Orthodox Good Friday", "1996-04-14": "Orthodox Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labor Day", "1996-05-05": "Patriots Day", "1996-05-28": "Downfall of Dergue Regime Day", - "1996-07-27": "Prophet Muhammad's Birthday* (*estimated)", - "1996-07-28": "Prophet Muhammad's Birthday* (*estimated)", + "1996-07-27": "Prophet Muhammad's Birthday (estimated)", + "1996-07-28": "Prophet Muhammad's Birthday (estimated)", "1996-09-11": "Ethiopian New Year's Day", "1996-09-27": "Finding of True Cross", "1997-01-07": "Orthodox Christmas Day", "1997-01-19": "Orthodox Epiphany Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-02": "Adwa Victory Day", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-04-25": "Orthodox Good Friday", "1997-04-27": "Orthodox Easter Sunday", "1997-05-01": "Labor Day", "1997-05-05": "Patriots Day", "1997-05-28": "Downfall of Dergue Regime Day", - "1997-07-16": "Prophet Muhammad's Birthday* (*estimated)", - "1997-07-17": "Prophet Muhammad's Birthday* (*estimated)", + "1997-07-16": "Prophet Muhammad's Birthday (estimated)", + "1997-07-17": "Prophet Muhammad's Birthday (estimated)", "1997-09-11": "Ethiopian New Year's Day", "1997-09-27": "Finding of True Cross", "1998-01-07": "Orthodox Christmas Day", "1998-01-19": "Orthodox Epiphany Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-02": "Adwa Victory Day", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-17": "Orthodox Good Friday", "1998-04-19": "Orthodox Easter Sunday", "1998-05-01": "Labor Day", "1998-05-05": "Patriots Day", "1998-05-28": "Downfall of Dergue Regime Day", - "1998-07-06": "Prophet Muhammad's Birthday* (*estimated)", - "1998-07-07": "Prophet Muhammad's Birthday* (*estimated)", + "1998-07-06": "Prophet Muhammad's Birthday (estimated)", + "1998-07-07": "Prophet Muhammad's Birthday (estimated)", "1998-09-11": "Ethiopian New Year's Day", "1998-09-27": "Finding of True Cross", "1999-01-07": "Orthodox Christmas Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-01-19": "Orthodox Epiphany Day", "1999-03-02": "Adwa Victory Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated)", "1999-04-09": "Orthodox Good Friday", "1999-04-11": "Orthodox Easter Sunday", "1999-05-01": "Labor Day", "1999-05-05": "Patriots Day", "1999-05-28": "Downfall of Dergue Regime Day", - "1999-06-26": "Prophet Muhammad's Birthday* (*estimated)", - "1999-06-27": "Prophet Muhammad's Birthday* (*estimated)", + "1999-06-26": "Prophet Muhammad's Birthday (estimated)", + "1999-06-27": "Prophet Muhammad's Birthday (estimated)", "1999-09-12": "Ethiopian New Year's Day", "1999-09-28": "Finding of True Cross", "2000-01-07": "Orthodox Christmas Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-01-19": "Orthodox Epiphany Day", "2000-03-02": "Adwa Victory Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-28": "Orthodox Good Friday", "2000-04-30": "Orthodox Easter Sunday", "2000-05-01": "Labor Day", "2000-05-05": "Patriots Day", "2000-05-28": "Downfall of Dergue Regime Day", - "2000-06-14": "Prophet Muhammad's Birthday* (*estimated)", - "2000-06-15": "Prophet Muhammad's Birthday* (*estimated)", + "2000-06-14": "Prophet Muhammad's Birthday (estimated)", + "2000-06-15": "Prophet Muhammad's Birthday (estimated)", "2000-09-11": "Ethiopian New Year's Day", "2000-09-27": "Finding of True Cross", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-07": "Orthodox Christmas Day", "2001-01-19": "Orthodox Epiphany Day", "2001-03-02": "Adwa Victory Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-04-13": "Orthodox Good Friday", "2001-04-15": "Orthodox Easter Sunday", "2001-05-01": "Labor Day", "2001-05-05": "Patriots Day", "2001-05-28": "Downfall of Dergue Regime Day", - "2001-06-04": "Prophet Muhammad's Birthday* (*estimated)", - "2001-06-05": "Prophet Muhammad's Birthday* (*estimated)", + "2001-06-04": "Prophet Muhammad's Birthday (estimated)", + "2001-06-05": "Prophet Muhammad's Birthday (estimated)", "2001-09-11": "Ethiopian New Year's Day", "2001-09-27": "Finding of True Cross", - "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", "2002-01-07": "Orthodox Christmas Day", "2002-01-19": "Orthodox Epiphany Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", "2002-03-02": "Adwa Victory Day", "2002-05-01": "Labor Day", "2002-05-03": "Orthodox Good Friday", "2002-05-05": "Orthodox Easter Sunday; Patriots Day", - "2002-05-24": "Prophet Muhammad's Birthday* (*estimated)", - "2002-05-25": "Prophet Muhammad's Birthday* (*estimated)", + "2002-05-24": "Prophet Muhammad's Birthday (estimated)", + "2002-05-25": "Prophet Muhammad's Birthday (estimated)", "2002-05-28": "Downfall of Dergue Regime Day", "2002-09-11": "Ethiopian New Year's Day", "2002-09-27": "Finding of True Cross", - "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", "2003-01-07": "Orthodox Christmas Day", "2003-01-19": "Orthodox Epiphany Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", "2003-03-02": "Adwa Victory Day", "2003-04-25": "Orthodox Good Friday", "2003-04-27": "Orthodox Easter Sunday", "2003-05-01": "Labor Day", "2003-05-05": "Patriots Day", - "2003-05-13": "Prophet Muhammad's Birthday* (*estimated)", - "2003-05-14": "Prophet Muhammad's Birthday* (*estimated)", + "2003-05-13": "Prophet Muhammad's Birthday (estimated)", + "2003-05-14": "Prophet Muhammad's Birthday (estimated)", "2003-05-28": "Downfall of Dergue Regime Day", "2003-09-12": "Ethiopian New Year's Day", "2003-09-28": "Finding of True Cross", - "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", "2004-01-07": "Orthodox Christmas Day", "2004-01-19": "Orthodox Epiphany Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", "2004-03-02": "Adwa Victory Day", "2004-04-09": "Orthodox Good Friday", "2004-04-11": "Orthodox Easter Sunday", - "2004-05-01": "Labor Day; Prophet Muhammad's Birthday* (*estimated)", - "2004-05-02": "Prophet Muhammad's Birthday* (*estimated)", + "2004-05-01": "Labor Day; Prophet Muhammad's Birthday (estimated)", + "2004-05-02": "Prophet Muhammad's Birthday (estimated)", "2004-05-05": "Patriots Day", "2004-05-28": "Downfall of Dergue Regime Day", "2004-09-11": "Ethiopian New Year's Day", "2004-09-27": "Finding of True Cross", - "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", "2005-01-07": "Orthodox Christmas Day", "2005-01-19": "Orthodox Epiphany Day", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-03-02": "Adwa Victory Day", - "2005-04-21": "Prophet Muhammad's Birthday* (*estimated)", - "2005-04-22": "Prophet Muhammad's Birthday* (*estimated)", + "2005-04-21": "Prophet Muhammad's Birthday (estimated)", + "2005-04-22": "Prophet Muhammad's Birthday (estimated)", "2005-04-29": "Orthodox Good Friday", "2005-05-01": "Labor Day; Orthodox Easter Sunday", "2005-05-05": "Patriots Day", "2005-05-28": "Downfall of Dergue Regime Day", "2005-09-11": "Ethiopian New Year's Day", "2005-09-27": "Finding of True Cross", - "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", "2006-01-07": "Orthodox Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-19": "Orthodox Epiphany Day", "2006-03-02": "Adwa Victory Day", - "2006-04-10": "Prophet Muhammad's Birthday* (*estimated)", - "2006-04-11": "Prophet Muhammad's Birthday* (*estimated)", + "2006-04-10": "Prophet Muhammad's Birthday (estimated)", + "2006-04-11": "Prophet Muhammad's Birthday (estimated)", "2006-04-21": "Orthodox Good Friday", "2006-04-23": "Orthodox Easter Sunday", "2006-05-01": "Labor Day", @@ -821,14 +821,14 @@ "2006-05-28": "Downfall of Dergue Regime Day", "2006-09-11": "Ethiopian New Year's Day", "2006-09-27": "Finding of True Cross", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-07": "Orthodox Christmas Day", "2007-01-19": "Orthodox Epiphany Day", "2007-03-02": "Adwa Victory Day", - "2007-03-31": "Prophet Muhammad's Birthday* (*estimated)", - "2007-04-01": "Prophet Muhammad's Birthday* (*estimated)", + "2007-03-31": "Prophet Muhammad's Birthday (estimated)", + "2007-04-01": "Prophet Muhammad's Birthday (estimated)", "2007-04-06": "Orthodox Good Friday", "2007-04-08": "Orthodox Easter Sunday", "2007-05-01": "Labor Day", @@ -836,14 +836,14 @@ "2007-05-28": "Downfall of Dergue Regime Day", "2007-09-12": "Ethiopian New Year's Day", "2007-09-28": "Finding of True Cross", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2008-01-07": "Orthodox Christmas Day", "2008-01-19": "Orthodox Epiphany Day", "2008-03-02": "Adwa Victory Day", - "2008-03-20": "Prophet Muhammad's Birthday* (*estimated)", - "2008-03-21": "Prophet Muhammad's Birthday* (*estimated)", + "2008-03-20": "Prophet Muhammad's Birthday (estimated)", + "2008-03-21": "Prophet Muhammad's Birthday (estimated)", "2008-04-25": "Orthodox Good Friday", "2008-04-27": "Orthodox Easter Sunday", "2008-05-01": "Labor Day", @@ -851,86 +851,86 @@ "2008-05-28": "Downfall of Dergue Regime Day", "2008-09-11": "Ethiopian New Year's Day", "2008-09-27": "Finding of True Cross", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2009-01-07": "Orthodox Christmas Day", "2009-01-19": "Orthodox Epiphany Day", "2009-03-02": "Adwa Victory Day", - "2009-03-09": "Prophet Muhammad's Birthday* (*estimated)", - "2009-03-10": "Prophet Muhammad's Birthday* (*estimated)", + "2009-03-09": "Prophet Muhammad's Birthday (estimated)", + "2009-03-10": "Prophet Muhammad's Birthday (estimated)", "2009-04-17": "Orthodox Good Friday", "2009-04-19": "Orthodox Easter Sunday", "2009-05-01": "Labor Day", "2009-05-05": "Patriots Day", "2009-05-28": "Downfall of Dergue Regime Day", "2009-09-11": "Ethiopian New Year's Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", "2009-09-27": "Finding of True Cross", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2010-01-07": "Orthodox Christmas Day", "2010-01-19": "Orthodox Epiphany Day", - "2010-02-26": "Prophet Muhammad's Birthday* (*estimated)", - "2010-02-27": "Prophet Muhammad's Birthday* (*estimated)", + "2010-02-26": "Prophet Muhammad's Birthday (estimated)", + "2010-02-27": "Prophet Muhammad's Birthday (estimated)", "2010-03-02": "Adwa Victory Day", "2010-04-02": "Orthodox Good Friday", "2010-04-04": "Orthodox Easter Sunday", "2010-05-01": "Labor Day", "2010-05-05": "Patriots Day", "2010-05-28": "Downfall of Dergue Regime Day", - "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", "2010-09-11": "Ethiopian New Year's Day", "2010-09-27": "Finding of True Cross", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", "2011-01-07": "Orthodox Christmas Day", "2011-01-19": "Orthodox Epiphany Day", - "2011-02-15": "Prophet Muhammad's Birthday* (*estimated)", - "2011-02-16": "Prophet Muhammad's Birthday* (*estimated)", + "2011-02-15": "Prophet Muhammad's Birthday (estimated)", + "2011-02-16": "Prophet Muhammad's Birthday (estimated)", "2011-03-02": "Adwa Victory Day", "2011-04-22": "Orthodox Good Friday", "2011-04-24": "Orthodox Easter Sunday", "2011-05-01": "Labor Day", "2011-05-05": "Patriots Day", "2011-05-28": "Downfall of Dergue Regime Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", "2011-09-12": "Ethiopian New Year's Day", "2011-09-28": "Finding of True Cross", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", "2012-01-07": "Orthodox Christmas Day", "2012-01-19": "Orthodox Epiphany Day", - "2012-02-04": "Prophet Muhammad's Birthday* (*estimated)", - "2012-02-05": "Prophet Muhammad's Birthday* (*estimated)", + "2012-02-04": "Prophet Muhammad's Birthday (estimated)", + "2012-02-05": "Prophet Muhammad's Birthday (estimated)", "2012-03-02": "Adwa Victory Day", "2012-04-13": "Orthodox Good Friday", "2012-04-15": "Orthodox Easter Sunday", "2012-05-01": "Labor Day", "2012-05-05": "Patriots Day", "2012-05-28": "Downfall of Dergue Regime Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", "2012-09-11": "Ethiopian New Year's Day", "2012-09-27": "Finding of True Cross", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2013-01-07": "Orthodox Christmas Day", "2013-01-19": "Orthodox Epiphany Day", - "2013-01-24": "Prophet Muhammad's Birthday* (*estimated)", - "2013-01-25": "Prophet Muhammad's Birthday* (*estimated)", + "2013-01-24": "Prophet Muhammad's Birthday (estimated)", + "2013-01-25": "Prophet Muhammad's Birthday (estimated)", "2013-03-02": "Adwa Victory Day", "2013-05-01": "Labor Day", "2013-05-03": "Orthodox Good Friday", "2013-05-05": "Orthodox Easter Sunday; Patriots Day", "2013-05-28": "Downfall of Dergue Regime Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", "2013-09-11": "Ethiopian New Year's Day", "2013-09-27": "Finding of True Cross", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2014-01-07": "Orthodox Christmas Day", - "2014-01-13": "Prophet Muhammad's Birthday* (*estimated)", - "2014-01-14": "Prophet Muhammad's Birthday* (*estimated)", + "2014-01-13": "Prophet Muhammad's Birthday (estimated)", + "2014-01-14": "Prophet Muhammad's Birthday (estimated)", "2014-01-19": "Orthodox Epiphany Day", "2014-03-02": "Adwa Victory Day", "2014-04-18": "Orthodox Good Friday", @@ -938,13 +938,13 @@ "2014-05-01": "Labor Day", "2014-05-05": "Patriots Day", "2014-05-28": "Downfall of Dergue Regime Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", "2014-09-11": "Ethiopian New Year's Day", "2014-09-27": "Finding of True Cross", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", - "2015-01-03": "Prophet Muhammad's Birthday* (*estimated)", - "2015-01-04": "Prophet Muhammad's Birthday* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", + "2015-01-03": "Prophet Muhammad's Birthday (estimated)", + "2015-01-04": "Prophet Muhammad's Birthday (estimated)", "2015-01-07": "Orthodox Christmas Day", "2015-01-19": "Orthodox Epiphany Day", "2015-03-02": "Adwa Victory Day", @@ -953,13 +953,13 @@ "2015-05-01": "Labor Day", "2015-05-05": "Patriots Day", "2015-05-28": "Downfall of Dergue Regime Day", - "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", "2015-09-12": "Ethiopian New Year's Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-09-28": "Finding of True Cross", - "2015-12-23": "Prophet Muhammad's Birthday* (*estimated)", - "2015-12-24": "Prophet Muhammad's Birthday* (*estimated)", + "2015-12-23": "Prophet Muhammad's Birthday (estimated)", + "2015-12-24": "Prophet Muhammad's Birthday (estimated)", "2016-01-07": "Orthodox Christmas Day", "2016-01-19": "Orthodox Epiphany Day", "2016-03-02": "Adwa Victory Day", @@ -967,12 +967,12 @@ "2016-05-01": "Labor Day; Orthodox Easter Sunday", "2016-05-05": "Patriots Day", "2016-05-28": "Downfall of Dergue Regime Day", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated); Ethiopian New Year's Day", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-09-11": "Eid al-Adha (estimated); Ethiopian New Year's Day", + "2016-09-12": "Eid al-Adha (estimated)", "2016-09-27": "Finding of True Cross", - "2016-12-11": "Prophet Muhammad's Birthday* (*estimated)", - "2016-12-12": "Prophet Muhammad's Birthday* (*estimated)", + "2016-12-11": "Prophet Muhammad's Birthday (estimated)", + "2016-12-12": "Prophet Muhammad's Birthday (estimated)", "2017-01-07": "Orthodox Christmas Day", "2017-01-19": "Orthodox Epiphany Day", "2017-03-02": "Adwa Victory Day", @@ -981,13 +981,13 @@ "2017-05-01": "Labor Day", "2017-05-05": "Patriots Day", "2017-05-28": "Downfall of Dergue Regime Day", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", "2017-09-11": "Ethiopian New Year's Day", "2017-09-27": "Finding of True Cross", - "2017-11-30": "Prophet Muhammad's Birthday* (*estimated)", - "2017-12-01": "Prophet Muhammad's Birthday* (*estimated)", + "2017-11-30": "Prophet Muhammad's Birthday (estimated)", + "2017-12-01": "Prophet Muhammad's Birthday (estimated)", "2018-01-07": "Orthodox Christmas Day", "2018-01-19": "Orthodox Epiphany Day", "2018-03-02": "Adwa Victory Day", @@ -996,13 +996,13 @@ "2018-05-01": "Labor Day", "2018-05-05": "Patriots Day", "2018-05-28": "Downfall of Dergue Regime Day", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", "2018-09-11": "Ethiopian New Year's Day", "2018-09-27": "Finding of True Cross", - "2018-11-20": "Prophet Muhammad's Birthday* (*estimated)", - "2018-11-21": "Prophet Muhammad's Birthday* (*estimated)", + "2018-11-20": "Prophet Muhammad's Birthday (estimated)", + "2018-11-21": "Prophet Muhammad's Birthday (estimated)", "2019-01-07": "Orthodox Christmas Day", "2019-01-19": "Orthodox Epiphany Day", "2019-03-02": "Adwa Victory Day", @@ -1011,13 +1011,13 @@ "2019-05-01": "Labor Day", "2019-05-05": "Patriots Day", "2019-05-28": "Downfall of Dergue Regime Day", - "2019-06-04": "Eid al-Fitr* (*estimated)", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-06-04": "Eid al-Fitr (estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-09-12": "Ethiopian New Year's Day", "2019-09-28": "Finding of True Cross", - "2019-11-09": "Prophet Muhammad's Birthday* (*estimated)", - "2019-11-10": "Prophet Muhammad's Birthday* (*estimated)", + "2019-11-09": "Prophet Muhammad's Birthday (estimated)", + "2019-11-10": "Prophet Muhammad's Birthday (estimated)", "2020-01-07": "Orthodox Christmas Day", "2020-01-19": "Orthodox Epiphany Day", "2020-03-02": "Adwa Victory Day", @@ -1025,14 +1025,14 @@ "2020-04-19": "Orthodox Easter Sunday", "2020-05-01": "Labor Day", "2020-05-05": "Patriots Day", - "2020-05-24": "Eid al-Fitr* (*estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", "2020-05-28": "Downfall of Dergue Regime Day", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-09-11": "Ethiopian New Year's Day", "2020-09-27": "Finding of True Cross", - "2020-10-29": "Prophet Muhammad's Birthday* (*estimated)", - "2020-10-30": "Prophet Muhammad's Birthday* (*estimated)", + "2020-10-29": "Prophet Muhammad's Birthday (estimated)", + "2020-10-30": "Prophet Muhammad's Birthday (estimated)", "2021-01-07": "Orthodox Christmas Day", "2021-01-19": "Orthodox Epiphany Day", "2021-03-02": "Adwa Victory Day", @@ -1040,257 +1040,257 @@ "2021-05-01": "Labor Day", "2021-05-02": "Orthodox Easter Sunday", "2021-05-05": "Patriots Day", - "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", "2021-05-28": "Downfall of Dergue Regime Day", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-09-11": "Ethiopian New Year's Day", "2021-09-27": "Finding of True Cross", - "2021-10-18": "Prophet Muhammad's Birthday* (*estimated)", - "2021-10-19": "Prophet Muhammad's Birthday* (*estimated)", + "2021-10-18": "Prophet Muhammad's Birthday (estimated)", + "2021-10-19": "Prophet Muhammad's Birthday (estimated)", "2022-01-07": "Orthodox Christmas Day", "2022-01-19": "Orthodox Epiphany Day", "2022-03-02": "Adwa Victory Day", "2022-04-22": "Orthodox Good Friday", "2022-04-24": "Orthodox Easter Sunday", "2022-05-01": "Labor Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", "2022-05-05": "Patriots Day", "2022-05-28": "Downfall of Dergue Regime Day", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", "2022-09-11": "Ethiopian New Year's Day", "2022-09-27": "Finding of True Cross", - "2022-10-08": "Prophet Muhammad's Birthday* (*estimated)", - "2022-10-09": "Prophet Muhammad's Birthday* (*estimated)", + "2022-10-08": "Prophet Muhammad's Birthday (estimated)", + "2022-10-09": "Prophet Muhammad's Birthday (estimated)", "2023-01-07": "Orthodox Christmas Day", "2023-01-19": "Orthodox Epiphany Day", "2023-03-02": "Adwa Victory Day", "2023-04-14": "Orthodox Good Friday", "2023-04-16": "Orthodox Easter Sunday", - "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", "2023-05-01": "Labor Day", "2023-05-05": "Patriots Day", "2023-05-28": "Downfall of Dergue Regime Day", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", "2023-09-12": "Ethiopian New Year's Day", - "2023-09-27": "Prophet Muhammad's Birthday* (*estimated)", - "2023-09-28": "Finding of True Cross; Prophet Muhammad's Birthday* (*estimated)", + "2023-09-27": "Prophet Muhammad's Birthday (estimated)", + "2023-09-28": "Finding of True Cross; Prophet Muhammad's Birthday (estimated)", "2024-01-07": "Orthodox Christmas Day", "2024-01-19": "Orthodox Epiphany Day", "2024-03-02": "Adwa Victory Day", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "Labor Day", "2024-05-03": "Orthodox Good Friday", "2024-05-05": "Orthodox Easter Sunday; Patriots Day", "2024-05-28": "Downfall of Dergue Regime Day", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", "2024-09-11": "Ethiopian New Year's Day", - "2024-09-15": "Prophet Muhammad's Birthday* (*estimated)", - "2024-09-16": "Prophet Muhammad's Birthday* (*estimated)", + "2024-09-15": "Prophet Muhammad's Birthday (estimated)", + "2024-09-16": "Prophet Muhammad's Birthday (estimated)", "2024-09-27": "Finding of True Cross", "2025-01-07": "Orthodox Christmas Day", "2025-01-19": "Orthodox Epiphany Day", "2025-03-02": "Adwa Victory Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", "2025-04-18": "Orthodox Good Friday", "2025-04-20": "Orthodox Easter Sunday", "2025-05-01": "Labor Day", "2025-05-05": "Patriots Day", "2025-05-28": "Downfall of Dergue Regime Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", - "2025-09-04": "Prophet Muhammad's Birthday* (*estimated)", - "2025-09-05": "Prophet Muhammad's Birthday* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", + "2025-09-04": "Prophet Muhammad's Birthday (estimated)", + "2025-09-05": "Prophet Muhammad's Birthday (estimated)", "2025-09-11": "Ethiopian New Year's Day", "2025-09-27": "Finding of True Cross", "2026-01-07": "Orthodox Christmas Day", "2026-01-19": "Orthodox Epiphany Day", "2026-03-02": "Adwa Victory Day", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-10": "Orthodox Good Friday", "2026-04-12": "Orthodox Easter Sunday", "2026-05-01": "Labor Day", "2026-05-05": "Patriots Day", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Downfall of Dergue Regime Day; Eid al-Adha* (*estimated)", - "2026-08-25": "Prophet Muhammad's Birthday* (*estimated)", - "2026-08-26": "Prophet Muhammad's Birthday* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Downfall of Dergue Regime Day; Eid al-Adha (estimated)", + "2026-08-25": "Prophet Muhammad's Birthday (estimated)", + "2026-08-26": "Prophet Muhammad's Birthday (estimated)", "2026-09-11": "Ethiopian New Year's Day", "2026-09-27": "Finding of True Cross", "2027-01-07": "Orthodox Christmas Day", "2027-01-19": "Orthodox Epiphany Day", "2027-03-02": "Adwa Victory Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-04-30": "Orthodox Good Friday", "2027-05-01": "Labor Day", "2027-05-02": "Orthodox Easter Sunday", "2027-05-05": "Patriots Day", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated)", "2027-05-28": "Downfall of Dergue Regime Day", - "2027-08-14": "Prophet Muhammad's Birthday* (*estimated)", - "2027-08-15": "Prophet Muhammad's Birthday* (*estimated)", + "2027-08-14": "Prophet Muhammad's Birthday (estimated)", + "2027-08-15": "Prophet Muhammad's Birthday (estimated)", "2027-09-12": "Ethiopian New Year's Day", "2027-09-28": "Finding of True Cross", "2028-01-07": "Orthodox Christmas Day", "2028-01-19": "Orthodox Epiphany Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-03-02": "Adwa Victory Day", "2028-04-14": "Orthodox Good Friday", "2028-04-16": "Orthodox Easter Sunday", "2028-05-01": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated); Patriots Day", - "2028-05-06": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated); Patriots Day", + "2028-05-06": "Eid al-Adha (estimated)", "2028-05-28": "Downfall of Dergue Regime Day", - "2028-08-03": "Prophet Muhammad's Birthday* (*estimated)", - "2028-08-04": "Prophet Muhammad's Birthday* (*estimated)", + "2028-08-03": "Prophet Muhammad's Birthday (estimated)", + "2028-08-04": "Prophet Muhammad's Birthday (estimated)", "2028-09-11": "Ethiopian New Year's Day", "2028-09-27": "Finding of True Cross", "2029-01-07": "Orthodox Christmas Day", "2029-01-19": "Orthodox Epiphany Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-02": "Adwa Victory Day", "2029-04-06": "Orthodox Good Friday", "2029-04-08": "Orthodox Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", "2029-05-05": "Patriots Day", "2029-05-28": "Downfall of Dergue Regime Day", - "2029-07-24": "Prophet Muhammad's Birthday* (*estimated)", - "2029-07-25": "Prophet Muhammad's Birthday* (*estimated)", + "2029-07-24": "Prophet Muhammad's Birthday (estimated)", + "2029-07-25": "Prophet Muhammad's Birthday (estimated)", "2029-09-11": "Ethiopian New Year's Day", "2029-09-27": "Finding of True Cross", "2030-01-07": "Orthodox Christmas Day", "2030-01-19": "Orthodox Epiphany Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", "2030-03-02": "Adwa Victory Day", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated)", "2030-04-26": "Orthodox Good Friday", "2030-04-28": "Orthodox Easter Sunday", "2030-05-01": "Labor Day", "2030-05-05": "Patriots Day", "2030-05-28": "Downfall of Dergue Regime Day", - "2030-07-13": "Prophet Muhammad's Birthday* (*estimated)", - "2030-07-14": "Prophet Muhammad's Birthday* (*estimated)", + "2030-07-13": "Prophet Muhammad's Birthday (estimated)", + "2030-07-14": "Prophet Muhammad's Birthday (estimated)", "2030-09-11": "Ethiopian New Year's Day", "2030-09-27": "Finding of True Cross", "2031-01-07": "Orthodox Christmas Day", "2031-01-19": "Orthodox Epiphany Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", "2031-03-02": "Adwa Victory Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-11": "Orthodox Good Friday", "2031-04-13": "Orthodox Easter Sunday", "2031-05-01": "Labor Day", "2031-05-05": "Patriots Day", "2031-05-28": "Downfall of Dergue Regime Day", - "2031-07-02": "Prophet Muhammad's Birthday* (*estimated)", - "2031-07-03": "Prophet Muhammad's Birthday* (*estimated)", + "2031-07-02": "Prophet Muhammad's Birthday (estimated)", + "2031-07-03": "Prophet Muhammad's Birthday (estimated)", "2031-09-12": "Ethiopian New Year's Day", "2031-09-28": "Finding of True Cross", "2032-01-07": "Orthodox Christmas Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", "2032-01-19": "Orthodox Epiphany Day", "2032-03-02": "Adwa Victory Day", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-04-30": "Orthodox Good Friday", "2032-05-01": "Labor Day", "2032-05-02": "Orthodox Easter Sunday", "2032-05-05": "Patriots Day", "2032-05-28": "Downfall of Dergue Regime Day", - "2032-06-20": "Prophet Muhammad's Birthday* (*estimated)", - "2032-06-21": "Prophet Muhammad's Birthday* (*estimated)", + "2032-06-20": "Prophet Muhammad's Birthday (estimated)", + "2032-06-21": "Prophet Muhammad's Birthday (estimated)", "2032-09-11": "Ethiopian New Year's Day", "2032-09-27": "Finding of True Cross", - "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", "2033-01-07": "Orthodox Christmas Day", "2033-01-19": "Orthodox Epiphany Day", "2033-03-02": "Adwa Victory Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", "2033-04-22": "Orthodox Good Friday", "2033-04-24": "Orthodox Easter Sunday", "2033-05-01": "Labor Day", "2033-05-05": "Patriots Day", "2033-05-28": "Downfall of Dergue Regime Day", - "2033-06-09": "Prophet Muhammad's Birthday* (*estimated)", - "2033-06-10": "Prophet Muhammad's Birthday* (*estimated)", + "2033-06-09": "Prophet Muhammad's Birthday (estimated)", + "2033-06-10": "Prophet Muhammad's Birthday (estimated)", "2033-09-11": "Ethiopian New Year's Day", "2033-09-27": "Finding of True Cross", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2034-01-07": "Orthodox Christmas Day", "2034-01-19": "Orthodox Epiphany Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Adwa Victory Day; Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Adwa Victory Day; Eid al-Adha (estimated)", "2034-04-07": "Orthodox Good Friday", "2034-04-09": "Orthodox Easter Sunday", "2034-05-01": "Labor Day", "2034-05-05": "Patriots Day", "2034-05-28": "Downfall of Dergue Regime Day", - "2034-05-30": "Prophet Muhammad's Birthday* (*estimated)", - "2034-05-31": "Prophet Muhammad's Birthday* (*estimated)", + "2034-05-30": "Prophet Muhammad's Birthday (estimated)", + "2034-05-31": "Prophet Muhammad's Birthday (estimated)", "2034-09-11": "Ethiopian New Year's Day", "2034-09-27": "Finding of True Cross", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2035-01-07": "Orthodox Christmas Day", "2035-01-19": "Orthodox Epiphany Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-02": "Adwa Victory Day", "2035-04-27": "Orthodox Good Friday", "2035-04-29": "Orthodox Easter Sunday", "2035-05-01": "Labor Day", "2035-05-05": "Patriots Day", - "2035-05-20": "Prophet Muhammad's Birthday* (*estimated)", - "2035-05-21": "Prophet Muhammad's Birthday* (*estimated)", + "2035-05-20": "Prophet Muhammad's Birthday (estimated)", + "2035-05-21": "Prophet Muhammad's Birthday (estimated)", "2035-05-28": "Downfall of Dergue Regime Day", "2035-09-12": "Ethiopian New Year's Day", "2035-09-28": "Finding of True Cross", - "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", "2036-01-07": "Orthodox Christmas Day", "2036-01-19": "Orthodox Epiphany Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", "2036-03-02": "Adwa Victory Day", "2036-04-18": "Orthodox Good Friday", "2036-04-20": "Orthodox Easter Sunday", "2036-05-01": "Labor Day", "2036-05-05": "Patriots Day", - "2036-05-08": "Prophet Muhammad's Birthday* (*estimated)", - "2036-05-09": "Prophet Muhammad's Birthday* (*estimated)", + "2036-05-08": "Prophet Muhammad's Birthday (estimated)", + "2036-05-09": "Prophet Muhammad's Birthday (estimated)", "2036-05-28": "Downfall of Dergue Regime Day", "2036-09-11": "Ethiopian New Year's Day", "2036-09-27": "Finding of True Cross", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2037-01-07": "Orthodox Christmas Day", "2037-01-19": "Orthodox Epiphany Day", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (estimated)", "2037-03-02": "Adwa Victory Day", "2037-04-03": "Orthodox Good Friday", "2037-04-05": "Orthodox Easter Sunday", - "2037-04-28": "Prophet Muhammad's Birthday* (*estimated)", - "2037-04-29": "Prophet Muhammad's Birthday* (*estimated)", + "2037-04-28": "Prophet Muhammad's Birthday (estimated)", + "2037-04-29": "Prophet Muhammad's Birthday (estimated)", "2037-05-01": "Labor Day", "2037-05-05": "Patriots Day", "2037-05-28": "Downfall of Dergue Regime Day", "2037-09-11": "Ethiopian New Year's Day", "2037-09-27": "Finding of True Cross", - "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", "2038-01-07": "Orthodox Christmas Day", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-19": "Orthodox Epiphany Day", "2038-03-02": "Adwa Victory Day", - "2038-04-17": "Prophet Muhammad's Birthday* (*estimated)", - "2038-04-18": "Prophet Muhammad's Birthday* (*estimated)", + "2038-04-17": "Prophet Muhammad's Birthday (estimated)", + "2038-04-18": "Prophet Muhammad's Birthday (estimated)", "2038-04-23": "Orthodox Good Friday", "2038-04-25": "Orthodox Easter Sunday", "2038-05-01": "Labor Day", @@ -1298,14 +1298,14 @@ "2038-05-28": "Downfall of Dergue Regime Day", "2038-09-11": "Ethiopian New Year's Day", "2038-09-27": "Finding of True Cross", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-07": "Orthodox Christmas Day", "2039-01-19": "Orthodox Epiphany Day", "2039-03-02": "Adwa Victory Day", - "2039-04-06": "Prophet Muhammad's Birthday* (*estimated)", - "2039-04-07": "Prophet Muhammad's Birthday* (*estimated)", + "2039-04-06": "Prophet Muhammad's Birthday (estimated)", + "2039-04-07": "Prophet Muhammad's Birthday (estimated)", "2039-04-15": "Orthodox Good Friday", "2039-04-17": "Orthodox Easter Sunday", "2039-05-01": "Labor Day", @@ -1313,14 +1313,14 @@ "2039-05-28": "Downfall of Dergue Regime Day", "2039-09-12": "Ethiopian New Year's Day", "2039-09-28": "Finding of True Cross", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-07": "Orthodox Christmas Day", "2040-01-19": "Orthodox Epiphany Day", "2040-03-02": "Adwa Victory Day", - "2040-03-25": "Prophet Muhammad's Birthday* (*estimated)", - "2040-03-26": "Prophet Muhammad's Birthday* (*estimated)", + "2040-03-25": "Prophet Muhammad's Birthday (estimated)", + "2040-03-26": "Prophet Muhammad's Birthday (estimated)", "2040-05-01": "Labor Day", "2040-05-04": "Orthodox Good Friday", "2040-05-05": "Patriots Day", @@ -1328,100 +1328,100 @@ "2040-05-28": "Downfall of Dergue Regime Day", "2040-09-11": "Ethiopian New Year's Day", "2040-09-27": "Finding of True Cross", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2041-01-07": "Orthodox Christmas Day", "2041-01-19": "Orthodox Epiphany Day", "2041-03-02": "Adwa Victory Day", - "2041-03-15": "Prophet Muhammad's Birthday* (*estimated)", - "2041-03-16": "Prophet Muhammad's Birthday* (*estimated)", + "2041-03-15": "Prophet Muhammad's Birthday (estimated)", + "2041-03-16": "Prophet Muhammad's Birthday (estimated)", "2041-04-19": "Orthodox Good Friday", "2041-04-21": "Orthodox Easter Sunday", "2041-05-01": "Labor Day", "2041-05-05": "Patriots Day", "2041-05-28": "Downfall of Dergue Regime Day", "2041-09-11": "Ethiopian New Year's Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", "2041-09-27": "Finding of True Cross", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2042-01-07": "Orthodox Christmas Day", "2042-01-19": "Orthodox Epiphany Day", "2042-03-02": "Adwa Victory Day", - "2042-03-04": "Prophet Muhammad's Birthday* (*estimated)", - "2042-03-05": "Prophet Muhammad's Birthday* (*estimated)", + "2042-03-04": "Prophet Muhammad's Birthday (estimated)", + "2042-03-05": "Prophet Muhammad's Birthday (estimated)", "2042-04-11": "Orthodox Good Friday", "2042-04-13": "Orthodox Easter Sunday", "2042-05-01": "Labor Day", "2042-05-05": "Patriots Day", "2042-05-28": "Downfall of Dergue Regime Day", "2042-09-11": "Ethiopian New Year's Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", "2042-09-27": "Finding of True Cross", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", "2043-01-07": "Orthodox Christmas Day", "2043-01-19": "Orthodox Epiphany Day", - "2043-02-22": "Prophet Muhammad's Birthday* (*estimated)", - "2043-02-23": "Prophet Muhammad's Birthday* (*estimated)", + "2043-02-22": "Prophet Muhammad's Birthday (estimated)", + "2043-02-23": "Prophet Muhammad's Birthday (estimated)", "2043-03-02": "Adwa Victory Day", "2043-05-01": "Labor Day; Orthodox Good Friday", "2043-05-03": "Orthodox Easter Sunday", "2043-05-05": "Patriots Day", "2043-05-28": "Downfall of Dergue Regime Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", "2043-09-12": "Ethiopian New Year's Day", "2043-09-28": "Finding of True Cross", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", "2044-01-07": "Orthodox Christmas Day", "2044-01-19": "Orthodox Epiphany Day", - "2044-02-11": "Prophet Muhammad's Birthday* (*estimated)", - "2044-02-12": "Prophet Muhammad's Birthday* (*estimated)", + "2044-02-11": "Prophet Muhammad's Birthday (estimated)", + "2044-02-12": "Prophet Muhammad's Birthday (estimated)", "2044-03-02": "Adwa Victory Day", "2044-04-22": "Orthodox Good Friday", "2044-04-24": "Orthodox Easter Sunday", "2044-05-01": "Labor Day", "2044-05-05": "Patriots Day", "2044-05-28": "Downfall of Dergue Regime Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", "2044-09-11": "Ethiopian New Year's Day", "2044-09-27": "Finding of True Cross", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", "2045-01-07": "Orthodox Christmas Day", "2045-01-19": "Orthodox Epiphany Day", - "2045-01-30": "Prophet Muhammad's Birthday* (*estimated)", - "2045-01-31": "Prophet Muhammad's Birthday* (*estimated)", + "2045-01-30": "Prophet Muhammad's Birthday (estimated)", + "2045-01-31": "Prophet Muhammad's Birthday (estimated)", "2045-03-02": "Adwa Victory Day", "2045-04-07": "Orthodox Good Friday", "2045-04-09": "Orthodox Easter Sunday", "2045-05-01": "Labor Day", "2045-05-05": "Patriots Day", "2045-05-28": "Downfall of Dergue Regime Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", "2045-09-11": "Ethiopian New Year's Day", "2045-09-27": "Finding of True Cross", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2046-01-07": "Orthodox Christmas Day", - "2046-01-19": "Orthodox Epiphany Day; Prophet Muhammad's Birthday* (*estimated)", - "2046-01-20": "Prophet Muhammad's Birthday* (*estimated)", + "2046-01-19": "Orthodox Epiphany Day; Prophet Muhammad's Birthday (estimated)", + "2046-01-20": "Prophet Muhammad's Birthday (estimated)", "2046-03-02": "Adwa Victory Day", "2046-04-27": "Orthodox Good Friday", "2046-04-29": "Orthodox Easter Sunday", "2046-05-01": "Labor Day", "2046-05-05": "Patriots Day", "2046-05-28": "Downfall of Dergue Regime Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-09-11": "Ethiopian New Year's Day", "2046-09-27": "Finding of True Cross", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2047-01-07": "Orthodox Christmas Day", - "2047-01-08": "Prophet Muhammad's Birthday* (*estimated)", - "2047-01-09": "Prophet Muhammad's Birthday* (*estimated)", + "2047-01-08": "Prophet Muhammad's Birthday (estimated)", + "2047-01-09": "Prophet Muhammad's Birthday (estimated)", "2047-01-19": "Orthodox Epiphany Day", "2047-03-02": "Adwa Victory Day", "2047-04-19": "Orthodox Good Friday", @@ -1429,13 +1429,13 @@ "2047-05-01": "Labor Day", "2047-05-05": "Patriots Day", "2047-05-28": "Downfall of Dergue Regime Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-09-12": "Ethiopian New Year's Day", "2047-09-28": "Finding of True Cross", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", - "2047-12-29": "Prophet Muhammad's Birthday* (*estimated)", - "2047-12-30": "Prophet Muhammad's Birthday* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", + "2047-12-29": "Prophet Muhammad's Birthday (estimated)", + "2047-12-30": "Prophet Muhammad's Birthday (estimated)", "2048-01-07": "Orthodox Christmas Day", "2048-01-19": "Orthodox Epiphany Day", "2048-03-02": "Adwa Victory Day", @@ -1444,13 +1444,13 @@ "2048-05-01": "Labor Day", "2048-05-05": "Patriots Day", "2048-05-28": "Downfall of Dergue Regime Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", "2048-09-11": "Ethiopian New Year's Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-09-27": "Finding of True Cross", - "2048-12-18": "Prophet Muhammad's Birthday* (*estimated)", - "2048-12-19": "Prophet Muhammad's Birthday* (*estimated)", + "2048-12-18": "Prophet Muhammad's Birthday (estimated)", + "2048-12-19": "Prophet Muhammad's Birthday (estimated)", "2049-01-07": "Orthodox Christmas Day", "2049-01-19": "Orthodox Epiphany Day", "2049-03-02": "Adwa Victory Day", @@ -1459,13 +1459,13 @@ "2049-05-01": "Labor Day", "2049-05-05": "Patriots Day", "2049-05-28": "Downfall of Dergue Regime Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-09-11": "Ethiopian New Year's Day", "2049-09-27": "Finding of True Cross", - "2049-12-07": "Prophet Muhammad's Birthday* (*estimated)", - "2049-12-08": "Prophet Muhammad's Birthday* (*estimated)", + "2049-12-07": "Prophet Muhammad's Birthday (estimated)", + "2049-12-08": "Prophet Muhammad's Birthday (estimated)", "2050-01-07": "Orthodox Christmas Day", "2050-01-19": "Orthodox Epiphany Day", "2050-03-02": "Adwa Victory Day", @@ -1474,11 +1474,11 @@ "2050-05-01": "Labor Day", "2050-05-05": "Patriots Day", "2050-05-28": "Downfall of Dergue Regime Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", "2050-09-11": "Ethiopian New Year's Day", "2050-09-27": "Finding of True Cross", - "2050-11-26": "Prophet Muhammad's Birthday* (*estimated)", - "2050-11-27": "Prophet Muhammad's Birthday* (*estimated)" + "2050-11-26": "Prophet Muhammad's Birthday (estimated)", + "2050-11-27": "Prophet Muhammad's Birthday (estimated)" } diff --git a/snapshots/countries/GA_COMMON.json b/snapshots/countries/GA_COMMON.json index 821bac838..3b50848c9 100644 --- a/snapshots/countries/GA_COMMON.json +++ b/snapshots/countries/GA_COMMON.json @@ -1,21 +1,21 @@ { "1961-01-01": "New Year's Day", - "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", "1961-04-03": "Easter Monday", "1961-05-01": "Labour Day", "1961-05-11": "Ascension Day", "1961-05-22": "Whit Monday", - "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", "1961-08-15": "Assumption Day", "1961-08-16": "Independence Day", "1961-08-17": "Independence Day Holiday", "1961-11-01": "All Saints' Day", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", "1962-04-23": "Easter Monday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", "1962-05-31": "Ascension Day", "1962-06-11": "Whit Monday", "1962-08-15": "Assumption Day", @@ -24,10 +24,10 @@ "1962-11-01": "All Saints' Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", "1963-04-15": "Easter Monday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", "1963-05-23": "Ascension Day", "1963-06-03": "Whit Monday", "1963-08-15": "Assumption Day", @@ -36,9 +36,9 @@ "1963-11-01": "All Saints' Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-30": "Easter Monday", - "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-07": "Ascension Day", "1964-05-18": "Whit Monday", @@ -48,8 +48,8 @@ "1964-11-01": "All Saints' Day", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", "1965-04-19": "Easter Monday", "1965-05-01": "Labour Day", "1965-05-27": "Ascension Day", @@ -60,8 +60,8 @@ "1965-11-01": "All Saints' Day", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-04-11": "Easter Monday", "1966-05-01": "Labour Day", "1966-05-19": "Ascension Day", @@ -72,8 +72,8 @@ "1966-11-01": "All Saints' Day", "1966-12-25": "Christmas Day", "1967-01-01": "New Year's Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-03-27": "Easter Monday", "1967-05-01": "Labour Day", "1967-05-04": "Ascension Day", @@ -83,8 +83,8 @@ "1967-08-17": "Independence Day Holiday", "1967-11-01": "All Saints' Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-03-09": "Eid al-Adha (estimated)", "1968-04-15": "Easter Monday", "1968-05-01": "Labour Day", "1968-05-23": "Ascension Day", @@ -93,10 +93,10 @@ "1968-08-16": "Independence Day", "1968-08-17": "Independence Day Holiday", "1968-11-01": "All Saints' Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", "1969-04-07": "Easter Monday", "1969-05-01": "Labour Day", "1969-05-15": "Ascension Day", @@ -105,10 +105,10 @@ "1969-08-16": "Independence Day", "1969-08-17": "Independence Day Holiday", "1969-11-01": "All Saints' Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", "1970-03-30": "Easter Monday", "1970-05-01": "Labour Day", "1970-05-07": "Ascension Day", @@ -117,10 +117,10 @@ "1970-08-16": "Independence Day", "1970-08-17": "Independence Day Holiday", "1970-11-01": "All Saints' Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", "1971-04-12": "Easter Monday", "1971-05-01": "Labour Day", "1971-05-20": "Ascension Day", @@ -129,10 +129,10 @@ "1971-08-16": "Independence Day", "1971-08-17": "Independence Day Holiday", "1971-11-01": "All Saints' Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", "1972-04-03": "Easter Monday", "1972-05-01": "Labour Day", "1972-05-11": "Ascension Day", @@ -141,10 +141,10 @@ "1972-08-16": "Independence Day", "1972-08-17": "Independence Day Holiday", "1972-11-01": "All Saints' Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", "1973-04-23": "Easter Monday", "1973-05-01": "Labour Day", "1973-05-31": "Ascension Day", @@ -152,11 +152,11 @@ "1973-08-15": "Assumption Day", "1973-08-16": "Independence Day", "1973-08-17": "Independence Day Holiday", - "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", "1973-11-01": "All Saints' Day", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", "1974-04-15": "Easter Monday", "1974-05-01": "Labour Day", "1974-05-23": "Ascension Day", @@ -164,9 +164,9 @@ "1974-08-15": "Assumption Day", "1974-08-16": "Independence Day", "1974-08-17": "Independence Day Holiday", - "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", "1974-11-01": "All Saints' Day", - "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-03-31": "Easter Monday", @@ -176,9 +176,9 @@ "1975-08-15": "Assumption Day", "1975-08-16": "Independence Day", "1975-08-17": "Independence Day Holiday", - "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", "1975-11-01": "All Saints' Day", - "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-04-19": "Easter Monday", @@ -188,9 +188,9 @@ "1976-08-15": "Assumption Day", "1976-08-16": "Independence Day", "1976-08-17": "Independence Day Holiday", - "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", "1976-11-01": "All Saints' Day", - "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-04-11": "Easter Monday", @@ -200,9 +200,9 @@ "1977-08-15": "Assumption Day", "1977-08-16": "Independence Day", "1977-08-17": "Independence Day Holiday", - "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", "1977-11-01": "All Saints' Day", - "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", "1977-12-25": "Christmas Day", "1978-01-01": "New Year's Day", "1978-03-27": "Easter Monday", @@ -212,9 +212,9 @@ "1978-08-15": "Assumption Day", "1978-08-16": "Independence Day", "1978-08-17": "Independence Day Holiday", - "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", "1978-11-01": "All Saints' Day", - "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-04-16": "Easter Monday", @@ -224,8 +224,8 @@ "1979-08-15": "Assumption Day", "1979-08-16": "Independence Day", "1979-08-17": "Independence Day Holiday", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", "1979-11-01": "All Saints' Day", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -233,11 +233,11 @@ "1980-05-01": "Labour Day", "1980-05-15": "Ascension Day", "1980-05-26": "Whit Monday", - "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", "1980-08-15": "Assumption Day", "1980-08-16": "Independence Day", "1980-08-17": "Independence Day Holiday", - "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", "1980-11-01": "All Saints' Day", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", @@ -245,11 +245,11 @@ "1981-05-01": "Labour Day", "1981-05-28": "Ascension Day", "1981-06-08": "Whit Monday", - "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", "1981-08-15": "Assumption Day", "1981-08-16": "Independence Day", "1981-08-17": "Independence Day Holiday", - "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", "1981-11-01": "All Saints' Day", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", @@ -257,11 +257,11 @@ "1982-05-01": "Labour Day", "1982-05-20": "Ascension Day", "1982-05-31": "Whit Monday", - "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", "1982-08-15": "Assumption Day", "1982-08-16": "Independence Day", "1982-08-17": "Independence Day Holiday", - "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", "1982-11-01": "All Saints' Day", "1982-12-25": "Christmas Day", "1983-01-01": "New Year's Day", @@ -269,11 +269,11 @@ "1983-05-01": "Labour Day", "1983-05-12": "Ascension Day", "1983-05-23": "Whit Monday", - "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", "1983-08-15": "Assumption Day", "1983-08-16": "Independence Day", "1983-08-17": "Independence Day Holiday", - "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", "1983-11-01": "All Saints' Day", "1983-12-25": "Christmas Day", "1984-01-01": "New Year's Day", @@ -281,11 +281,11 @@ "1984-05-01": "Labour Day", "1984-05-31": "Ascension Day", "1984-06-11": "Whit Monday", - "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", "1984-08-15": "Assumption Day", "1984-08-16": "Independence Day", "1984-08-17": "Independence Day Holiday", - "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", "1984-11-01": "All Saints' Day", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -293,11 +293,11 @@ "1985-05-01": "Labour Day", "1985-05-16": "Ascension Day", "1985-05-27": "Whit Monday", - "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", "1985-08-15": "Assumption Day", "1985-08-16": "Independence Day", "1985-08-17": "Independence Day Holiday", - "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", "1985-11-01": "All Saints' Day", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", @@ -305,8 +305,8 @@ "1986-05-01": "Labour Day", "1986-05-08": "Ascension Day", "1986-05-19": "Whit Monday", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-08-15": "Assumption Day; Eid al-Adha* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-08-15": "Assumption Day; Eid al-Adha (estimated)", "1986-08-16": "Independence Day", "1986-08-17": "Independence Day Holiday", "1986-11-01": "All Saints' Day", @@ -314,9 +314,9 @@ "1987-01-01": "New Year's Day", "1987-04-20": "Easter Monday", "1987-05-01": "Labour Day", - "1987-05-28": "Ascension Day; Eid al-Fitr* (*estimated)", + "1987-05-28": "Ascension Day; Eid al-Fitr (estimated)", "1987-06-08": "Whit Monday", - "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", "1987-08-15": "Assumption Day", "1987-08-16": "Independence Day", "1987-08-17": "Independence Day Holiday", @@ -326,9 +326,9 @@ "1988-04-04": "Easter Monday", "1988-05-01": "Labour Day", "1988-05-12": "Ascension Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", "1988-05-23": "Whit Monday", - "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", "1988-08-15": "Assumption Day", "1988-08-16": "Independence Day", "1988-08-17": "Independence Day Holiday", @@ -338,9 +338,9 @@ "1989-03-27": "Easter Monday", "1989-05-01": "Labour Day", "1989-05-04": "Ascension Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", "1989-05-15": "Whit Monday", - "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", "1989-08-15": "Assumption Day", "1989-08-16": "Independence Day", "1989-08-17": "Independence Day Holiday", @@ -348,11 +348,11 @@ "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-04-16": "Easter Monday", - "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-05-24": "Ascension Day", "1990-06-04": "Whit Monday", - "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", "1990-08-15": "Assumption Day", "1990-08-16": "Independence Day", "1990-08-17": "Independence Day Holiday", @@ -360,45 +360,45 @@ "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-04-01": "Easter Monday", - "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-09": "Ascension Day", "1991-05-20": "Whit Monday", - "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", "1991-08-15": "Assumption Day", "1991-08-16": "Independence Day", "1991-08-17": "Independence Day Holiday", "1991-11-01": "All Saints' Day", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-20": "Easter Monday", "1992-05-01": "Labour Day", "1992-05-28": "Ascension Day", "1992-06-08": "Whit Monday", - "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", "1992-08-15": "Assumption Day", "1992-08-16": "Independence Day", "1992-08-17": "Independence Day Holiday", "1992-11-01": "All Saints' Day", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-12": "Easter Monday", "1993-05-01": "Labour Day", "1993-05-20": "Ascension Day", - "1993-05-31": "Eid al-Adha* (*estimated); Whit Monday", + "1993-05-31": "Eid al-Adha (estimated); Whit Monday", "1993-08-15": "Assumption Day", "1993-08-16": "Independence Day", "1993-08-17": "Independence Day Holiday", "1993-11-01": "All Saints' Day", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-04": "Easter Monday", "1994-05-01": "Labour Day", "1994-05-12": "Ascension Day", - "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", "1994-05-23": "Whit Monday", "1994-08-15": "Assumption Day", "1994-08-16": "Independence Day", @@ -406,10 +406,10 @@ "1994-11-01": "All Saints' Day", "1994-12-25": "Christmas Day", "1995-01-01": "New Year's Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-04-17": "Easter Monday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", "1995-05-25": "Ascension Day", "1995-06-05": "Whit Monday", "1995-08-15": "Assumption Day", @@ -418,9 +418,9 @@ "1995-11-01": "All Saints' Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-04-08": "Easter Monday", - "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-16": "Ascension Day", "1996-05-27": "Whit Monday", @@ -430,9 +430,9 @@ "1996-11-01": "All Saints' Day", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-31": "Easter Monday", - "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", "1997-05-08": "Ascension Day", "1997-05-19": "Whit Monday", @@ -442,8 +442,8 @@ "1997-11-01": "All Saints' Day", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-04-13": "Easter Monday", "1998-05-01": "Labour Day", "1998-05-21": "Ascension Day", @@ -454,8 +454,8 @@ "1998-11-01": "All Saints' Day", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-05": "Easter Monday", "1999-05-01": "Labour Day", "1999-05-13": "Ascension Day", @@ -466,8 +466,8 @@ "1999-11-01": "All Saints' Day", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-04-24": "Easter Monday", "2000-05-01": "Labour Day", "2000-06-01": "Ascension Day", @@ -477,7 +477,7 @@ "2000-08-17": "Independence Day Holiday", "2000-11-01": "All Saints' Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-03-06": "Eid al-Adha", "2001-04-16": "Easter Monday", @@ -763,24 +763,24 @@ "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-04-01": "Easter Monday", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-04-17": "Women's Rights Day", "2024-05-01": "Labour Day", "2024-05-09": "Ascension Day", "2024-05-20": "Whit Monday", - "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", "2024-08-15": "Assumption Day", "2024-08-16": "Independence Day", "2024-08-17": "Independence Day Holiday", "2024-11-01": "All Saints' Day", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", "2025-04-17": "Women's Rights Day", "2025-04-21": "Easter Monday", "2025-05-01": "Labour Day", "2025-05-29": "Ascension Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-06-09": "Whit Monday", "2025-08-15": "Assumption Day", "2025-08-16": "Independence Day", @@ -788,25 +788,25 @@ "2025-11-01": "All Saints' Day", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-06": "Easter Monday", "2026-04-17": "Women's Rights Day", "2026-05-01": "Labour Day", "2026-05-14": "Ascension Day", "2026-05-25": "Whit Monday", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-08-15": "Assumption Day", "2026-08-16": "Independence Day", "2026-08-17": "Independence Day Holiday", "2026-11-01": "All Saints' Day", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-29": "Easter Monday", "2027-04-17": "Women's Rights Day", "2027-05-01": "Labour Day", "2027-05-06": "Ascension Day", - "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", "2027-05-17": "Whit Monday", "2027-08-15": "Assumption Day", "2027-08-16": "Independence Day", @@ -814,10 +814,10 @@ "2027-11-01": "All Saints' Day", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-04-17": "Easter Monday; Women's Rights Day", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", "2028-05-25": "Ascension Day", "2028-06-05": "Whit Monday", "2028-08-15": "Assumption Day", @@ -826,10 +826,10 @@ "2028-11-01": "All Saints' Day", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-04-02": "Easter Monday", "2029-04-17": "Women's Rights Day", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-10": "Ascension Day", "2029-05-21": "Whit Monday", @@ -839,8 +839,8 @@ "2029-11-01": "All Saints' Day", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-17": "Women's Rights Day", "2030-04-22": "Easter Monday", "2030-05-01": "Labour Day", @@ -852,8 +852,8 @@ "2030-11-01": "All Saints' Day", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-14": "Easter Monday", "2031-04-17": "Women's Rights Day", "2031-05-01": "Labour Day", @@ -865,8 +865,8 @@ "2031-11-01": "All Saints' Day", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-29": "Easter Monday", "2032-04-17": "Women's Rights Day", "2032-05-01": "Labour Day", @@ -878,8 +878,8 @@ "2032-11-01": "All Saints' Day", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-17": "Women's Rights Day", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", @@ -889,10 +889,10 @@ "2033-08-16": "Independence Day", "2033-08-17": "Independence Day Holiday", "2033-11-01": "All Saints' Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-01": "New Year's Day", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-04-10": "Easter Monday", "2034-04-17": "Women's Rights Day", "2034-05-01": "Labour Day", @@ -902,10 +902,10 @@ "2034-08-16": "Independence Day", "2034-08-17": "Independence Day Holiday", "2034-11-01": "All Saints' Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", "2035-03-26": "Easter Monday", "2035-04-17": "Women's Rights Day", "2035-05-01": "Labour Day", @@ -915,10 +915,10 @@ "2035-08-16": "Independence Day", "2035-08-17": "Independence Day Holiday", "2035-11-01": "All Saints' Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-04-14": "Easter Monday", "2036-04-17": "Women's Rights Day", "2036-05-01": "Labour Day", @@ -928,10 +928,10 @@ "2036-08-16": "Independence Day", "2036-08-17": "Independence Day Holiday", "2036-11-01": "All Saints' Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-04-06": "Easter Monday", "2037-04-17": "Women's Rights Day", "2037-05-01": "Labour Day", @@ -941,10 +941,10 @@ "2037-08-16": "Independence Day", "2037-08-17": "Independence Day Holiday", "2037-11-01": "All Saints' Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-04-17": "Women's Rights Day", "2038-04-26": "Easter Monday", "2038-05-01": "Labour Day", @@ -953,11 +953,11 @@ "2038-08-15": "Assumption Day", "2038-08-16": "Independence Day", "2038-08-17": "Independence Day Holiday", - "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-11-01": "All Saints' Day", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-04-11": "Easter Monday", "2039-04-17": "Women's Rights Day", "2039-05-01": "Labour Day", @@ -966,10 +966,10 @@ "2039-08-15": "Assumption Day", "2039-08-16": "Independence Day", "2039-08-17": "Independence Day Holiday", - "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-11-01": "All Saints' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-04-02": "Easter Monday", "2040-04-17": "Women's Rights Day", @@ -979,9 +979,9 @@ "2040-08-15": "Assumption Day", "2040-08-16": "Independence Day", "2040-08-17": "Independence Day Holiday", - "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", "2040-11-01": "All Saints' Day", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-04-17": "Women's Rights Day", @@ -992,9 +992,9 @@ "2041-08-15": "Assumption Day", "2041-08-16": "Independence Day", "2041-08-17": "Independence Day Holiday", - "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", "2041-11-01": "All Saints' Day", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-04-07": "Easter Monday", @@ -1005,9 +1005,9 @@ "2042-08-15": "Assumption Day", "2042-08-16": "Independence Day", "2042-08-17": "Independence Day Holiday", - "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", "2042-11-01": "All Saints' Day", - "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-03-30": "Easter Monday", @@ -1018,9 +1018,9 @@ "2043-08-15": "Assumption Day", "2043-08-16": "Independence Day", "2043-08-17": "Independence Day Holiday", - "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", "2043-11-01": "All Saints' Day", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-04-17": "Women's Rights Day", @@ -1031,8 +1031,8 @@ "2044-08-15": "Assumption Day", "2044-08-16": "Independence Day", "2044-08-17": "Independence Day Holiday", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-11-01": "All Saints' Day", "2044-12-25": "Christmas Day", "2045-01-01": "New Year's Day", @@ -1041,11 +1041,11 @@ "2045-05-01": "Labour Day", "2045-05-18": "Ascension Day", "2045-05-29": "Whit Monday", - "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", "2045-08-15": "Assumption Day", "2045-08-16": "Independence Day", "2045-08-17": "Independence Day Holiday", - "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-11-01": "All Saints' Day", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", @@ -1054,11 +1054,11 @@ "2046-05-01": "Labour Day", "2046-05-03": "Ascension Day", "2046-05-14": "Whit Monday", - "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-15": "Assumption Day", "2046-08-16": "Independence Day", "2046-08-17": "Independence Day Holiday", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-11-01": "All Saints' Day", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1067,11 +1067,11 @@ "2047-05-01": "Labour Day", "2047-05-23": "Ascension Day", "2047-06-03": "Whit Monday", - "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-08-15": "Assumption Day", "2047-08-16": "Independence Day", "2047-08-17": "Independence Day Holiday", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-11-01": "All Saints' Day", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", @@ -1080,11 +1080,11 @@ "2048-05-01": "Labour Day", "2048-05-14": "Ascension Day", "2048-05-25": "Whit Monday", - "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", "2048-08-15": "Assumption Day", "2048-08-16": "Independence Day", "2048-08-17": "Independence Day Holiday", - "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-11-01": "All Saints' Day", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", @@ -1093,11 +1093,11 @@ "2049-05-01": "Labour Day", "2049-05-27": "Ascension Day", "2049-06-07": "Whit Monday", - "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", "2049-08-15": "Assumption Day", "2049-08-16": "Independence Day", "2049-08-17": "Independence Day Holiday", - "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-11-01": "All Saints' Day", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", @@ -1106,11 +1106,11 @@ "2050-05-01": "Labour Day", "2050-05-19": "Ascension Day", "2050-05-30": "Whit Monday", - "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-15": "Assumption Day", "2050-08-16": "Independence Day", "2050-08-17": "Independence Day Holiday", - "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", "2050-11-01": "All Saints' Day", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/ID_COMMON.json b/snapshots/countries/ID_COMMON.json index 6ea230135..47df90fae 100644 --- a/snapshots/countries/ID_COMMON.json +++ b/snapshots/countries/ID_COMMON.json @@ -1,611 +1,611 @@ { "1950-01-01": "New Year's Day", - "1950-02-17": "Lunar New Year* (*estimated)", + "1950-02-17": "Lunar New Year (estimated)", "1950-08-17": "Independence Day", "1950-10-05": "Armed Forces Day", "1950-11-10": "Heroes' Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Lunar New Year* (*estimated)", + "1951-02-06": "Lunar New Year (estimated)", "1951-08-17": "Independence Day", "1951-10-05": "Armed Forces Day", "1951-11-10": "Heroes' Day", "1952-01-01": "New Year's Day", - "1952-01-27": "Lunar New Year* (*estimated)", + "1952-01-27": "Lunar New Year (estimated)", "1952-08-17": "Independence Day", "1952-10-05": "Armed Forces Day", "1952-11-10": "Heroes' Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Lunar New Year* (*estimated)", + "1953-02-14": "Lunar New Year (estimated)", "1953-04-03": "Good Friday", "1953-04-06": "Easter Monday", - "1953-04-12": "The Prophet's Ascension* (*estimated)", + "1953-04-12": "The Prophet's Ascension (estimated)", "1953-05-01": "International Labor Day", "1953-05-14": "Ascension Day", "1953-05-25": "Whit Monday", - "1953-05-30": "Nuzul Al Quran* (*estimated)", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr Second Day* (*estimated)", + "1953-05-30": "Nuzul Al Quran (estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr Second Day (estimated)", "1953-08-17": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-09-10": "Islamic New Year* (*estimated)", - "1953-11-19": "The Prophet's Birthday* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-09-10": "Islamic New Year (estimated)", + "1953-11-19": "The Prophet's Birthday (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Lunar New Year* (*estimated)", - "1954-04-01": "The Prophet's Ascension* (*estimated)", + "1954-02-03": "Lunar New Year (estimated)", + "1954-04-01": "The Prophet's Ascension (estimated)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-05-01": "International Labor Day", - "1954-05-20": "Nuzul Al Quran* (*estimated)", + "1954-05-20": "Nuzul Al Quran (estimated)", "1954-05-27": "Ascension Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr Second Day* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr Second Day (estimated)", "1954-06-07": "Whit Monday", - "1954-08-09": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", "1954-08-17": "Independence Day", - "1954-08-30": "Islamic New Year* (*estimated)", - "1954-11-08": "The Prophet's Birthday* (*estimated)", + "1954-08-30": "Islamic New Year (estimated)", + "1954-11-08": "The Prophet's Birthday (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", - "1955-01-24": "Lunar New Year* (*estimated)", - "1955-03-21": "The Prophet's Ascension* (*estimated)", + "1955-01-24": "Lunar New Year (estimated)", + "1955-03-21": "The Prophet's Ascension (estimated)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-05-01": "International Labor Day", - "1955-05-10": "Nuzul Al Quran* (*estimated)", + "1955-05-10": "Nuzul Al Quran (estimated)", "1955-05-19": "Ascension Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr Second Day* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr Second Day (estimated)", "1955-05-30": "Whit Monday", - "1955-07-30": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", "1955-08-17": "Independence Day", - "1955-08-20": "Islamic New Year* (*estimated)", - "1955-10-29": "The Prophet's Birthday* (*estimated)", + "1955-08-20": "Islamic New Year (estimated)", + "1955-10-29": "The Prophet's Birthday (estimated)", "1955-12-25": "Christmas Day", "1956-01-01": "New Year's Day", - "1956-02-12": "Lunar New Year* (*estimated)", - "1956-03-10": "The Prophet's Ascension* (*estimated)", + "1956-02-12": "Lunar New Year (estimated)", + "1956-03-10": "The Prophet's Ascension (estimated)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", - "1956-04-28": "Nuzul Al Quran* (*estimated)", + "1956-04-28": "Nuzul Al Quran (estimated)", "1956-05-01": "International Labor Day", "1956-05-10": "Ascension Day", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr Second Day* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr Second Day (estimated)", "1956-05-21": "Whit Monday", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-08-08": "Islamic New Year* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-08-08": "Islamic New Year (estimated)", "1956-08-17": "Independence Day", - "1956-10-17": "The Prophet's Birthday* (*estimated)", + "1956-10-17": "The Prophet's Birthday (estimated)", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Lunar New Year* (*estimated)", - "1957-02-27": "The Prophet's Ascension* (*estimated)", - "1957-04-17": "Nuzul Al Quran* (*estimated)", + "1957-01-31": "Lunar New Year (estimated)", + "1957-02-27": "The Prophet's Ascension (estimated)", + "1957-04-17": "Nuzul Al Quran (estimated)", "1957-04-19": "Good Friday", "1957-04-22": "Easter Monday", - "1957-05-01": "Eid al-Fitr* (*estimated); International Labor Day", - "1957-05-02": "Eid al-Fitr Second Day* (*estimated)", + "1957-05-01": "Eid al-Fitr (estimated); International Labor Day", + "1957-05-02": "Eid al-Fitr Second Day (estimated)", "1957-05-30": "Ascension Day", "1957-06-10": "Whit Monday", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-28": "Islamic New Year* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-28": "Islamic New Year (estimated)", "1957-08-17": "Independence Day", - "1957-10-06": "The Prophet's Birthday* (*estimated)", + "1957-10-06": "The Prophet's Birthday (estimated)", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-16": "The Prophet's Ascension* (*estimated)", - "1958-02-18": "Lunar New Year* (*estimated)", + "1958-02-16": "The Prophet's Ascension (estimated)", + "1958-02-18": "Lunar New Year (estimated)", "1958-04-04": "Good Friday", - "1958-04-06": "Nuzul Al Quran* (*estimated)", + "1958-04-06": "Nuzul Al Quran (estimated)", "1958-04-07": "Easter Monday", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr Second Day* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr Second Day (estimated)", "1958-05-01": "International Labor Day", "1958-05-15": "Ascension Day", "1958-05-26": "Whit Monday", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-07-18": "Islamic New Year* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-07-18": "Islamic New Year (estimated)", "1958-08-17": "Independence Day", - "1958-09-26": "The Prophet's Birthday* (*estimated)", + "1958-09-26": "The Prophet's Birthday (estimated)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-06": "The Prophet's Ascension* (*estimated)", - "1959-02-08": "Lunar New Year* (*estimated)", - "1959-03-27": "Good Friday; Nuzul Al Quran* (*estimated)", + "1959-02-06": "The Prophet's Ascension (estimated)", + "1959-02-08": "Lunar New Year (estimated)", + "1959-03-27": "Good Friday; Nuzul Al Quran (estimated)", "1959-03-30": "Easter Monday", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr Second Day* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr Second Day (estimated)", "1959-05-01": "International Labor Day", "1959-05-07": "Ascension Day", "1959-05-18": "Whit Monday", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-07-07": "Islamic New Year* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-07-07": "Islamic New Year (estimated)", "1959-08-17": "Independence Day", - "1959-09-15": "The Prophet's Birthday* (*estimated)", + "1959-09-15": "The Prophet's Birthday (estimated)", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", - "1960-01-26": "The Prophet's Ascension* (*estimated)", - "1960-01-28": "Lunar New Year* (*estimated)", - "1960-03-15": "Nuzul Al Quran* (*estimated)", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr Second Day* (*estimated)", + "1960-01-26": "The Prophet's Ascension (estimated)", + "1960-01-28": "Lunar New Year (estimated)", + "1960-03-15": "Nuzul Al Quran (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr Second Day (estimated)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-05-01": "International Labor Day", "1960-05-26": "Ascension Day", - "1960-06-04": "Eid al-Adha* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", "1960-06-06": "Whit Monday", - "1960-06-25": "Islamic New Year* (*estimated)", + "1960-06-25": "Islamic New Year (estimated)", "1960-08-17": "Independence Day", - "1960-09-03": "The Prophet's Birthday* (*estimated)", + "1960-09-03": "The Prophet's Birthday (estimated)", "1960-12-25": "Christmas Day", "1961-01-01": "New Year's Day", - "1961-01-14": "The Prophet's Ascension* (*estimated)", - "1961-02-15": "Lunar New Year* (*estimated)", - "1961-03-04": "Nuzul Al Quran* (*estimated)", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr Second Day* (*estimated)", + "1961-01-14": "The Prophet's Ascension (estimated)", + "1961-02-15": "Lunar New Year (estimated)", + "1961-03-04": "Nuzul Al Quran (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr Second Day (estimated)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-05-01": "International Labor Day", "1961-05-11": "Ascension Day", "1961-05-22": "Whit Monday", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-06-14": "Islamic New Year* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-06-14": "Islamic New Year (estimated)", "1961-08-17": "Independence Day", - "1961-08-23": "The Prophet's Birthday* (*estimated)", + "1961-08-23": "The Prophet's Birthday (estimated)", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-01-04": "The Prophet's Ascension* (*estimated)", - "1962-02-05": "Lunar New Year* (*estimated)", - "1962-02-21": "Nuzul Al Quran* (*estimated)", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr Second Day* (*estimated)", + "1962-01-04": "The Prophet's Ascension (estimated)", + "1962-02-05": "Lunar New Year (estimated)", + "1962-02-21": "Nuzul Al Quran (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr Second Day (estimated)", "1962-04-20": "Good Friday", "1962-04-23": "Easter Monday", "1962-05-01": "International Labor Day", - "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", "1962-05-31": "Ascension Day", - "1962-06-03": "Islamic New Year* (*estimated)", + "1962-06-03": "Islamic New Year (estimated)", "1962-06-11": "Whit Monday", - "1962-08-12": "The Prophet's Birthday* (*estimated)", + "1962-08-12": "The Prophet's Birthday (estimated)", "1962-08-17": "Independence Day", - "1962-12-24": "The Prophet's Ascension* (*estimated)", + "1962-12-24": "The Prophet's Ascension (estimated)", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-01-25": "Lunar New Year* (*estimated)", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr Second Day* (*estimated)", + "1963-01-25": "Lunar New Year (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr Second Day (estimated)", "1963-05-01": "International Labor Day", - "1963-05-03": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", "1963-08-17": "Independence Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-13": "Lunar New Year* (*estimated)", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr Second Day* (*estimated)", - "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-02-13": "Lunar New Year (estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr Second Day (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "International Labor Day", "1964-08-17": "Independence Day", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Eid al-Fitr* (*estimated); Lunar New Year* (*estimated)", - "1965-02-03": "Eid al-Fitr Second Day* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated); Lunar New Year (estimated)", + "1965-02-03": "Eid al-Fitr Second Day (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", "1965-05-01": "International Labor Day", "1965-08-17": "Independence Day", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-21": "Lunar New Year* (*estimated)", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr Second Day* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-01-21": "Lunar New Year (estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr Second Day (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-05-01": "International Labor Day", "1966-08-17": "Independence Day", "1966-12-25": "Christmas Day", "1967-01-01": "New Year's Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr Second Day* (*estimated)", - "1967-02-09": "Lunar New Year* (*estimated)", - "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr Second Day (estimated)", + "1967-02-09": "Lunar New Year (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-05-01": "International Labor Day", "1967-08-17": "Independence Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr Second Day* (*estimated)", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-30": "Islamic New Year* (*estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Second Day (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-30": "Islamic New Year (estimated)", "1968-05-01": "International Labor Day", "1968-05-23": "Ascension Day", - "1968-06-08": "The Prophet's Birthday* (*estimated)", + "1968-06-08": "The Prophet's Birthday (estimated)", "1968-08-15": "Assumption Of Mary", "1968-08-17": "Independence Day", - "1968-10-19": "The Prophet's Ascension* (*estimated)", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr Second Day* (*estimated)", + "1968-10-19": "The Prophet's Ascension (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr Second Day (estimated)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-03-19": "Islamic New Year* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-03-19": "Islamic New Year (estimated)", "1969-05-15": "Ascension Day", - "1969-05-28": "The Prophet's Birthday* (*estimated)", + "1969-05-28": "The Prophet's Birthday (estimated)", "1969-08-15": "Assumption Of Mary", "1969-08-17": "Independence Day", - "1969-10-08": "The Prophet's Ascension* (*estimated)", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr Second Day* (*estimated)", + "1969-10-08": "The Prophet's Ascension (estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr Second Day (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-03-09": "Islamic New Year* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-03-09": "Islamic New Year (estimated)", "1970-05-07": "Ascension Day", - "1970-05-18": "The Prophet's Birthday* (*estimated)", + "1970-05-18": "The Prophet's Birthday (estimated)", "1970-08-15": "Assumption Of Mary", "1970-08-17": "Independence Day", - "1970-09-28": "The Prophet's Ascension* (*estimated)", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr Second Day* (*estimated)", + "1970-09-28": "The Prophet's Ascension (estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr Second Day (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-26": "Islamic New Year* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-26": "Islamic New Year (estimated)", "1971-04-09": "Good Friday", - "1971-05-07": "The Prophet's Birthday* (*estimated)", + "1971-05-07": "The Prophet's Birthday (estimated)", "1971-05-20": "Ascension Day", "1971-08-17": "Independence Day", - "1971-09-17": "The Prophet's Ascension* (*estimated)", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr Second Day* (*estimated)", + "1971-09-17": "The Prophet's Ascension (estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr Second Day (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-02-16": "Islamic New Year* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-02-16": "Islamic New Year (estimated)", "1972-03-31": "Good Friday", - "1972-04-25": "The Prophet's Birthday* (*estimated)", + "1972-04-25": "The Prophet's Birthday (estimated)", "1972-05-11": "Ascension Day", "1972-08-17": "Independence Day", - "1972-09-05": "The Prophet's Ascension* (*estimated)", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr Second Day* (*estimated)", + "1972-09-05": "The Prophet's Ascension (estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr Second Day (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-02-04": "Islamic New Year* (*estimated)", - "1973-04-15": "The Prophet's Birthday* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-02-04": "Islamic New Year (estimated)", + "1973-04-15": "The Prophet's Birthday (estimated)", "1973-04-20": "Good Friday", "1973-05-31": "Ascension Day", "1973-08-17": "Independence Day", - "1973-08-25": "The Prophet's Ascension* (*estimated)", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr Second Day* (*estimated)", + "1973-08-25": "The Prophet's Ascension (estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr Second Day (estimated)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-24": "Islamic New Year* (*estimated)", - "1974-04-04": "The Prophet's Birthday* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-24": "Islamic New Year (estimated)", + "1974-04-04": "The Prophet's Birthday (estimated)", "1974-04-12": "Good Friday", "1974-05-23": "Ascension Day", - "1974-08-15": "The Prophet's Ascension* (*estimated)", + "1974-08-15": "The Prophet's Ascension (estimated)", "1974-08-17": "Independence Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr Second Day* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr Second Day (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Islamic New Year* (*estimated)", - "1975-03-24": "The Prophet's Birthday* (*estimated)", + "1975-01-13": "Islamic New Year (estimated)", + "1975-03-24": "The Prophet's Birthday (estimated)", "1975-03-28": "Good Friday", "1975-05-08": "Ascension Day", - "1975-08-05": "The Prophet's Ascension* (*estimated)", + "1975-08-05": "The Prophet's Ascension (estimated)", "1975-08-17": "Independence Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr Second Day* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr Second Day (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Islamic New Year* (*estimated)", - "1976-03-12": "The Prophet's Birthday* (*estimated)", + "1976-01-02": "Islamic New Year (estimated)", + "1976-03-12": "The Prophet's Birthday (estimated)", "1976-04-16": "Good Friday", "1976-05-27": "Ascension Day", - "1976-07-24": "The Prophet's Ascension* (*estimated)", + "1976-07-24": "The Prophet's Ascension (estimated)", "1976-08-17": "Independence Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr Second Day* (*estimated)", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-22": "Islamic New Year* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr Second Day (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-22": "Islamic New Year (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-03-02": "The Prophet's Birthday* (*estimated)", + "1977-03-02": "The Prophet's Birthday (estimated)", "1977-04-08": "Good Friday", "1977-05-19": "Ascension Day", - "1977-07-13": "The Prophet's Ascension* (*estimated)", + "1977-07-13": "The Prophet's Ascension (estimated)", "1977-08-17": "Independence Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr Second Day* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-12-11": "Islamic New Year* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr Second Day (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-12-11": "Islamic New Year (estimated)", "1977-12-25": "Christmas Day", "1978-01-01": "New Year's Day", - "1978-02-19": "The Prophet's Birthday* (*estimated)", + "1978-02-19": "The Prophet's Birthday (estimated)", "1978-03-24": "Good Friday", "1978-05-04": "Ascension Day", - "1978-07-02": "The Prophet's Ascension* (*estimated)", + "1978-07-02": "The Prophet's Ascension (estimated)", "1978-08-17": "Independence Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr Second Day* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-12-01": "Islamic New Year* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr Second Day (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-12-01": "Islamic New Year (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-02-09": "The Prophet's Birthday* (*estimated)", + "1979-02-09": "The Prophet's Birthday (estimated)", "1979-04-13": "Good Friday", "1979-05-24": "Ascension Day", - "1979-06-22": "The Prophet's Ascension* (*estimated)", + "1979-06-22": "The Prophet's Ascension (estimated)", "1979-08-17": "Independence Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr Second Day* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-20": "Islamic New Year* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr Second Day (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-20": "Islamic New Year (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "The Prophet's Birthday* (*estimated)", + "1980-01-30": "The Prophet's Birthday (estimated)", "1980-04-04": "Good Friday", "1980-05-15": "Ascension Day", - "1980-06-10": "The Prophet's Ascension* (*estimated)", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr Second Day* (*estimated)", + "1980-06-10": "The Prophet's Ascension (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr Second Day (estimated)", "1980-08-17": "Independence Day", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-11-09": "Islamic New Year* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-11-09": "Islamic New Year (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "The Prophet's Birthday* (*estimated)", + "1981-01-18": "The Prophet's Birthday (estimated)", "1981-04-17": "Good Friday", "1981-05-28": "Ascension Day", - "1981-05-31": "The Prophet's Ascension* (*estimated)", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr Second Day* (*estimated)", + "1981-05-31": "The Prophet's Ascension (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr Second Day (estimated)", "1981-08-17": "Independence Day", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-28": "Islamic New Year* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-28": "Islamic New Year (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "The Prophet's Birthday* (*estimated)", + "1982-01-07": "The Prophet's Birthday (estimated)", "1982-04-09": "Good Friday", - "1982-05-20": "Ascension Day; The Prophet's Ascension* (*estimated)", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr Second Day* (*estimated)", + "1982-05-20": "Ascension Day; The Prophet's Ascension (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr Second Day (estimated)", "1982-08-17": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-10-18": "Islamic New Year* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-10-18": "Islamic New Year (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "The Prophet's Birthday* (*estimated)", + "1982-12-27": "The Prophet's Birthday (estimated)", "1983-01-01": "New Year's Day", "1983-04-01": "Good Friday", - "1983-05-10": "The Prophet's Ascension* (*estimated)", + "1983-05-10": "The Prophet's Ascension (estimated)", "1983-05-12": "Ascension Day", - "1983-05-27": "Buddha's Birthday* (*estimated)", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr Second Day* (*estimated)", + "1983-05-27": "Buddha's Birthday (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr Second Day (estimated)", "1983-08-17": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-10-07": "Islamic New Year* (*estimated)", - "1983-12-16": "The Prophet's Birthday* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-10-07": "Islamic New Year (estimated)", + "1983-12-16": "The Prophet's Birthday (estimated)", "1983-12-25": "Christmas Day", "1984-01-01": "New Year's Day", "1984-04-20": "Good Friday", - "1984-04-28": "The Prophet's Ascension* (*estimated)", - "1984-05-15": "Buddha's Birthday* (*estimated)", + "1984-04-28": "The Prophet's Ascension (estimated)", + "1984-05-15": "Buddha's Birthday (estimated)", "1984-05-31": "Ascension Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr Second Day* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr Second Day (estimated)", "1984-08-17": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", - "1984-12-04": "The Prophet's Birthday* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-26": "Islamic New Year (estimated)", + "1984-12-04": "The Prophet's Birthday (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-04-05": "Good Friday", - "1985-04-17": "The Prophet's Ascension* (*estimated)", + "1985-04-17": "The Prophet's Ascension (estimated)", "1985-05-16": "Ascension Day", - "1985-06-03": "Buddha's Birthday* (*estimated)", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr Second Day* (*estimated)", + "1985-06-03": "Buddha's Birthday (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr Second Day (estimated)", "1985-08-17": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", - "1985-11-24": "The Prophet's Birthday* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-09-15": "Islamic New Year (estimated)", + "1985-11-24": "The Prophet's Birthday (estimated)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-03-28": "Good Friday", - "1986-04-06": "The Prophet's Ascension* (*estimated)", + "1986-04-06": "The Prophet's Ascension (estimated)", "1986-05-08": "Ascension Day", - "1986-05-23": "Buddha's Birthday* (*estimated)", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr Second Day* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-05-23": "Buddha's Birthday (estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr Second Day (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", "1986-08-17": "Independence Day", - "1986-09-05": "Islamic New Year* (*estimated)", - "1986-11-14": "The Prophet's Birthday* (*estimated)", + "1986-09-05": "Islamic New Year (estimated)", + "1986-11-14": "The Prophet's Birthday (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", - "1987-03-27": "The Prophet's Ascension* (*estimated)", + "1987-03-27": "The Prophet's Ascension (estimated)", "1987-04-17": "Good Friday", - "1987-05-12": "Buddha's Birthday* (*estimated)", - "1987-05-28": "Ascension Day; Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr Second Day* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-05-12": "Buddha's Birthday (estimated)", + "1987-05-28": "Ascension Day; Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr Second Day (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", "1987-08-17": "Independence Day", - "1987-08-25": "Islamic New Year* (*estimated)", - "1987-11-03": "The Prophet's Birthday* (*estimated)", + "1987-08-25": "Islamic New Year (estimated)", + "1987-11-03": "The Prophet's Birthday (estimated)", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-03-15": "The Prophet's Ascension* (*estimated)", + "1988-03-15": "The Prophet's Ascension (estimated)", "1988-04-01": "Good Friday", "1988-05-12": "Ascension Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr Second Day* (*estimated)", - "1988-05-30": "Buddha's Birthday* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-08-13": "Islamic New Year* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr Second Day (estimated)", + "1988-05-30": "Buddha's Birthday (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-08-13": "Islamic New Year (estimated)", "1988-08-17": "Independence Day", - "1988-10-22": "The Prophet's Birthday* (*estimated)", + "1988-10-22": "The Prophet's Birthday (estimated)", "1988-12-25": "Christmas Day", "1989-01-01": "New Year's Day", - "1989-03-05": "The Prophet's Ascension* (*estimated)", + "1989-03-05": "The Prophet's Ascension (estimated)", "1989-03-24": "Good Friday", "1989-05-04": "Ascension Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr Second Day* (*estimated)", - "1989-05-19": "Buddha's Birthday* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-08-02": "Islamic New Year* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr Second Day (estimated)", + "1989-05-19": "Buddha's Birthday (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-08-02": "Islamic New Year (estimated)", "1989-08-17": "Independence Day", - "1989-10-11": "The Prophet's Birthday* (*estimated)", + "1989-10-11": "The Prophet's Birthday (estimated)", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", - "1990-02-22": "The Prophet's Ascension* (*estimated)", + "1990-02-22": "The Prophet's Ascension (estimated)", "1990-04-13": "Good Friday", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr Second Day* (*estimated)", - "1990-05-09": "Buddha's Birthday* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr Second Day (estimated)", + "1990-05-09": "Buddha's Birthday (estimated)", "1990-05-24": "Ascension Day", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-23": "Islamic New Year* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-23": "Islamic New Year (estimated)", "1990-08-17": "Independence Day", - "1990-10-01": "The Prophet's Birthday* (*estimated)", + "1990-10-01": "The Prophet's Birthday (estimated)", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-11": "The Prophet's Ascension* (*estimated)", + "1991-02-11": "The Prophet's Ascension (estimated)", "1991-03-29": "Good Friday", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr Second Day* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr Second Day (estimated)", "1991-05-09": "Ascension Day", - "1991-05-28": "Buddha's Birthday* (*estimated)", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-07-12": "Islamic New Year* (*estimated)", + "1991-05-28": "Buddha's Birthday (estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-07-12": "Islamic New Year (estimated)", "1991-08-17": "Independence Day", - "1991-09-20": "The Prophet's Birthday* (*estimated)", + "1991-09-20": "The Prophet's Birthday (estimated)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-01-31": "The Prophet's Ascension* (*estimated)", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr Second Day* (*estimated)", + "1992-01-31": "The Prophet's Ascension (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr Second Day (estimated)", "1992-04-17": "Good Friday", - "1992-05-17": "Buddha's Birthday* (*estimated)", + "1992-05-17": "Buddha's Birthday (estimated)", "1992-05-28": "Ascension Day", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-07-01": "Islamic New Year* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-07-01": "Islamic New Year (estimated)", "1992-08-17": "Independence Day", - "1992-09-09": "The Prophet's Birthday* (*estimated)", + "1992-09-09": "The Prophet's Birthday (estimated)", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", - "1993-01-20": "The Prophet's Ascension* (*estimated)", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr Second Day* (*estimated)", + "1993-01-20": "The Prophet's Ascension (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr Second Day (estimated)", "1993-04-09": "Good Friday", "1993-05-20": "Ascension Day", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-04": "Buddha's Birthday* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-04": "Buddha's Birthday (estimated)", + "1993-06-21": "Islamic New Year (estimated)", "1993-08-17": "Independence Day", - "1993-08-29": "The Prophet's Birthday* (*estimated)", + "1993-08-29": "The Prophet's Birthday (estimated)", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-01-09": "The Prophet's Ascension* (*estimated)", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr Second Day* (*estimated)", + "1994-01-09": "The Prophet's Ascension (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr Second Day (estimated)", "1994-04-01": "Good Friday", "1994-05-12": "Ascension Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-25": "Buddha's Birthday* (*estimated)", - "1994-06-10": "Islamic New Year* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-25": "Buddha's Birthday (estimated)", + "1994-06-10": "Islamic New Year (estimated)", "1994-08-17": "Independence Day", - "1994-08-19": "The Prophet's Birthday* (*estimated)", + "1994-08-19": "The Prophet's Birthday (estimated)", "1994-12-25": "Christmas Day", - "1994-12-29": "The Prophet's Ascension* (*estimated)", + "1994-12-29": "The Prophet's Ascension (estimated)", "1995-01-01": "New Year's Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr Second Day* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr Second Day (estimated)", "1995-04-14": "Good Friday", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-14": "Buddha's Birthday* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-14": "Buddha's Birthday (estimated)", "1995-05-25": "Ascension Day", - "1995-05-30": "Islamic New Year* (*estimated)", - "1995-08-08": "The Prophet's Birthday* (*estimated)", + "1995-05-30": "Islamic New Year (estimated)", + "1995-08-08": "The Prophet's Birthday (estimated)", "1995-08-17": "Independence Day", - "1995-12-19": "The Prophet's Ascension* (*estimated)", + "1995-12-19": "The Prophet's Ascension (estimated)", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr Second Day* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr Second Day (estimated)", "1996-04-05": "Good Friday", - "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", "1996-05-16": "Ascension Day", - "1996-05-18": "Islamic New Year* (*estimated)", - "1996-05-31": "Buddha's Birthday* (*estimated)", - "1996-07-27": "The Prophet's Birthday* (*estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-05-31": "Buddha's Birthday (estimated)", + "1996-07-27": "The Prophet's Birthday (estimated)", "1996-08-17": "Independence Day", - "1996-12-08": "The Prophet's Ascension* (*estimated)", + "1996-12-08": "The Prophet's Ascension (estimated)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr Second Day* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr Second Day (estimated)", "1997-03-28": "Good Friday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-05-07": "Islamic New Year* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-07": "Islamic New Year (estimated)", "1997-05-08": "Ascension Day", - "1997-05-21": "Buddha's Birthday* (*estimated)", - "1997-07-16": "The Prophet's Birthday* (*estimated)", + "1997-05-21": "Buddha's Birthday (estimated)", + "1997-07-16": "The Prophet's Birthday (estimated)", "1997-08-17": "Independence Day", - "1997-11-27": "The Prophet's Ascension* (*estimated)", + "1997-11-27": "The Prophet's Ascension (estimated)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr Second Day* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr Second Day (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", - "1998-04-27": "Islamic New Year* (*estimated)", - "1998-05-10": "Buddha's Birthday* (*estimated)", + "1998-04-27": "Islamic New Year (estimated)", + "1998-05-10": "Buddha's Birthday (estimated)", "1998-05-21": "Ascension Day", - "1998-07-06": "The Prophet's Birthday* (*estimated)", + "1998-07-06": "The Prophet's Birthday (estimated)", "1998-08-17": "Independence Day", - "1998-11-16": "The Prophet's Ascension* (*estimated)", + "1998-11-16": "The Prophet's Ascension (estimated)", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr Second Day* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr Second Day (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-02": "Good Friday", - "1999-04-17": "Islamic New Year* (*estimated)", + "1999-04-17": "Islamic New Year (estimated)", "1999-05-13": "Ascension Day", - "1999-05-29": "Buddha's Birthday* (*estimated)", - "1999-06-26": "The Prophet's Birthday* (*estimated)", + "1999-05-29": "Buddha's Birthday (estimated)", + "1999-06-26": "The Prophet's Birthday (estimated)", "1999-08-17": "Independence Day", - "1999-11-05": "The Prophet's Ascension* (*estimated)", + "1999-11-05": "The Prophet's Ascension (estimated)", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr Second Day* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-04-06": "Islamic New Year* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr Second Day (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", "2000-04-21": "Good Friday", - "2000-05-18": "Buddha's Birthday* (*estimated)", + "2000-05-18": "Buddha's Birthday (estimated)", "2000-06-01": "Ascension Day", - "2000-06-14": "The Prophet's Birthday* (*estimated)", + "2000-06-14": "The Prophet's Birthday (estimated)", "2000-08-17": "Independence Day", - "2000-10-24": "The Prophet's Ascension* (*estimated)", + "2000-10-24": "The Prophet's Ascension (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr Second Day* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr Second Day (estimated)", "2001-01-01": "New Year's Day", "2001-03-06": "Eid al-Adha", "2001-03-26": "Islamic New Year", "2001-04-13": "Good Friday", - "2001-05-07": "Buddha's Birthday* (*estimated)", + "2001-05-07": "Buddha's Birthday (estimated)", "2001-05-24": "Ascension Day", - "2001-06-04": "The Prophet's Birthday* (*estimated)", + "2001-06-04": "The Prophet's Birthday (estimated)", "2001-08-17": "Independence Day", "2001-10-15": "The Prophet's Ascension", "2001-12-16": "Eid al-Fitr", @@ -616,8 +616,8 @@ "2002-03-15": "Islamic New Year", "2002-03-29": "Good Friday", "2002-05-09": "Ascension Day", - "2002-05-24": "The Prophet's Birthday* (*estimated)", - "2002-05-26": "Buddha's Birthday* (*estimated)", + "2002-05-24": "The Prophet's Birthday (estimated)", + "2002-05-26": "Buddha's Birthday (estimated)", "2002-08-17": "Independence Day", "2002-10-04": "The Prophet's Ascension", "2002-12-06": "Eid al-Fitr", @@ -628,8 +628,8 @@ "2003-02-12": "Eid al-Adha", "2003-03-05": "Islamic New Year", "2003-04-18": "Good Friday", - "2003-05-13": "The Prophet's Birthday* (*estimated)", - "2003-05-15": "Buddha's Birthday* (*estimated)", + "2003-05-13": "The Prophet's Birthday (estimated)", + "2003-05-15": "Buddha's Birthday (estimated)", "2003-05-29": "Ascension Day", "2003-08-17": "Independence Day", "2003-09-24": "The Prophet's Ascension", @@ -641,9 +641,9 @@ "2004-02-02": "Eid al-Adha", "2004-02-22": "Islamic New Year", "2004-04-09": "Good Friday", - "2004-05-01": "The Prophet's Birthday* (*estimated)", + "2004-05-01": "The Prophet's Birthday (estimated)", "2004-05-20": "Ascension Day", - "2004-06-02": "Buddha's Birthday* (*estimated)", + "2004-06-02": "Buddha's Birthday (estimated)", "2004-08-17": "Independence Day", "2004-09-12": "The Prophet's Ascension", "2004-11-14": "Eid al-Fitr", @@ -654,9 +654,9 @@ "2005-02-09": "Lunar New Year", "2005-02-10": "Islamic New Year", "2005-03-25": "Good Friday", - "2005-04-21": "The Prophet's Birthday* (*estimated)", + "2005-04-21": "The Prophet's Birthday (estimated)", "2005-05-05": "Ascension Day", - "2005-05-22": "Buddha's Birthday* (*estimated)", + "2005-05-22": "Buddha's Birthday (estimated)", "2005-08-17": "Independence Day", "2005-09-01": "The Prophet's Ascension", "2005-11-03": "Eid al-Fitr", @@ -668,7 +668,7 @@ "2006-01-31": "Islamic New Year", "2006-04-10": "The Prophet's Birthday", "2006-04-14": "Good Friday", - "2006-05-12": "Buddha's Birthday* (*estimated)", + "2006-05-12": "Buddha's Birthday (estimated)", "2006-05-25": "Ascension Day", "2006-08-17": "Independence Day", "2006-08-22": "The Prophet's Ascension", @@ -944,417 +944,417 @@ "2023-06-29": "Eid al-Adha", "2023-07-19": "Islamic New Year", "2023-08-17": "Independence Day", - "2023-09-27": "The Prophet's Birthday* (*estimated)", + "2023-09-27": "The Prophet's Birthday (estimated)", "2023-12-25": "Christmas Day", "2023-12-26": "Christmas Joint Holiday", "2024-01-01": "New Year's Day", - "2024-02-08": "The Prophet's Ascension* (*estimated)", - "2024-02-10": "Lunar New Year* (*estimated)", + "2024-02-08": "The Prophet's Ascension (estimated)", + "2024-02-10": "Lunar New Year (estimated)", "2024-03-11": "Day of Silence", "2024-03-29": "Good Friday", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr Second Day* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr Second Day (estimated)", "2024-05-01": "International Labor Day", "2024-05-09": "Ascension Day", - "2024-05-22": "Buddha's Birthday* (*estimated)", + "2024-05-22": "Buddha's Birthday (estimated)", "2024-06-01": "Pancasila Day", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-07-07": "Islamic New Year* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-07-07": "Islamic New Year (estimated)", "2024-08-17": "Independence Day", - "2024-09-15": "The Prophet's Birthday* (*estimated)", + "2024-09-15": "The Prophet's Birthday (estimated)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-27": "The Prophet's Ascension* (*estimated)", - "2025-01-29": "Lunar New Year* (*estimated)", + "2025-01-27": "The Prophet's Ascension (estimated)", + "2025-01-29": "Lunar New Year (estimated)", "2025-03-29": "Day of Silence", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr Second Day* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr Second Day (estimated)", "2025-04-18": "Good Friday", "2025-05-01": "International Labor Day", - "2025-05-11": "Buddha's Birthday* (*estimated)", + "2025-05-11": "Buddha's Birthday (estimated)", "2025-05-29": "Ascension Day", "2025-06-01": "Pancasila Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-26": "Islamic New Year* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", "2025-08-17": "Independence Day", - "2025-09-04": "The Prophet's Birthday* (*estimated)", + "2025-09-04": "The Prophet's Birthday (estimated)", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", - "2026-01-16": "The Prophet's Ascension* (*estimated)", - "2026-02-17": "Lunar New Year* (*estimated)", + "2026-01-16": "The Prophet's Ascension (estimated)", + "2026-02-17": "Lunar New Year (estimated)", "2026-03-19": "Day of Silence", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr Second Day* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr Second Day (estimated)", "2026-04-03": "Good Friday", "2026-05-01": "International Labor Day", "2026-05-14": "Ascension Day", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-31": "Buddha's Birthday* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-31": "Buddha's Birthday (estimated)", "2026-06-01": "Pancasila Day", - "2026-06-16": "Islamic New Year* (*estimated)", + "2026-06-16": "Islamic New Year (estimated)", "2026-08-17": "Independence Day", - "2026-08-25": "The Prophet's Birthday* (*estimated)", + "2026-08-25": "The Prophet's Birthday (estimated)", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", - "2027-01-05": "The Prophet's Ascension* (*estimated)", - "2027-02-06": "Lunar New Year* (*estimated)", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr Second Day* (*estimated)", + "2027-01-05": "The Prophet's Ascension (estimated)", + "2027-02-06": "Lunar New Year (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr Second Day (estimated)", "2027-03-26": "Good Friday", "2027-05-01": "International Labor Day", "2027-05-06": "Ascension Day", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-20": "Buddha's Birthday* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-20": "Buddha's Birthday (estimated)", "2027-06-01": "Pancasila Day", - "2027-06-06": "Islamic New Year* (*estimated)", - "2027-08-14": "The Prophet's Birthday* (*estimated)", + "2027-06-06": "Islamic New Year (estimated)", + "2027-08-14": "The Prophet's Birthday (estimated)", "2027-08-17": "Independence Day", - "2027-12-25": "Christmas Day; The Prophet's Ascension* (*estimated)", + "2027-12-25": "Christmas Day; The Prophet's Ascension (estimated)", "2028-01-01": "New Year's Day", - "2028-01-26": "Lunar New Year* (*estimated)", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr Second Day* (*estimated)", + "2028-01-26": "Lunar New Year (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr Second Day (estimated)", "2028-04-14": "Good Friday", "2028-05-01": "International Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-09": "Buddha's Birthday* (*estimated)", - "2028-05-25": "Ascension Day; Islamic New Year* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Buddha's Birthday (estimated)", + "2028-05-25": "Ascension Day; Islamic New Year (estimated)", "2028-06-01": "Pancasila Day", - "2028-08-03": "The Prophet's Birthday* (*estimated)", + "2028-08-03": "The Prophet's Birthday (estimated)", "2028-08-17": "Independence Day", - "2028-12-14": "The Prophet's Ascension* (*estimated)", + "2028-12-14": "The Prophet's Ascension (estimated)", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-13": "Lunar New Year* (*estimated)", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr Second Day* (*estimated)", + "2029-02-13": "Lunar New Year (estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr Second Day (estimated)", "2029-03-30": "Good Friday", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "International Labor Day", "2029-05-10": "Ascension Day", - "2029-05-14": "Islamic New Year* (*estimated)", - "2029-05-27": "Buddha's Birthday* (*estimated)", + "2029-05-14": "Islamic New Year (estimated)", + "2029-05-27": "Buddha's Birthday (estimated)", "2029-06-01": "Pancasila Day", - "2029-07-24": "The Prophet's Birthday* (*estimated)", + "2029-07-24": "The Prophet's Birthday (estimated)", "2029-08-17": "Independence Day", - "2029-12-03": "The Prophet's Ascension* (*estimated)", + "2029-12-03": "The Prophet's Ascension (estimated)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-02-03": "Lunar New Year* (*estimated)", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr Second Day* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-02-03": "Lunar New Year (estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr Second Day (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-19": "Good Friday", "2030-05-01": "International Labor Day", - "2030-05-03": "Islamic New Year* (*estimated)", - "2030-05-16": "Buddha's Birthday* (*estimated)", + "2030-05-03": "Islamic New Year (estimated)", + "2030-05-16": "Buddha's Birthday (estimated)", "2030-05-30": "Ascension Day", "2030-06-01": "Pancasila Day", - "2030-07-13": "The Prophet's Birthday* (*estimated)", + "2030-07-13": "The Prophet's Birthday (estimated)", "2030-08-17": "Independence Day", - "2030-11-23": "The Prophet's Ascension* (*estimated)", + "2030-11-23": "The Prophet's Ascension (estimated)", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-23": "Lunar New Year* (*estimated)", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr Second Day* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-01-23": "Lunar New Year (estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr Second Day (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-11": "Good Friday", - "2031-04-23": "Islamic New Year* (*estimated)", + "2031-04-23": "Islamic New Year (estimated)", "2031-05-01": "International Labor Day", "2031-05-22": "Ascension Day", "2031-06-01": "Pancasila Day", - "2031-06-04": "Buddha's Birthday* (*estimated)", - "2031-07-02": "The Prophet's Birthday* (*estimated)", + "2031-06-04": "Buddha's Birthday (estimated)", + "2031-07-02": "The Prophet's Birthday (estimated)", "2031-08-17": "Independence Day", - "2031-11-12": "The Prophet's Ascension* (*estimated)", + "2031-11-12": "The Prophet's Ascension (estimated)", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr Second Day* (*estimated)", - "2032-02-11": "Lunar New Year* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr Second Day (estimated)", + "2032-02-11": "Lunar New Year (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", - "2032-04-11": "Islamic New Year* (*estimated)", + "2032-04-11": "Islamic New Year (estimated)", "2032-05-01": "International Labor Day", "2032-05-06": "Ascension Day", - "2032-05-23": "Buddha's Birthday* (*estimated)", + "2032-05-23": "Buddha's Birthday (estimated)", "2032-06-01": "Pancasila Day", - "2032-06-20": "The Prophet's Birthday* (*estimated)", + "2032-06-20": "The Prophet's Birthday (estimated)", "2032-08-17": "Independence Day", - "2032-11-01": "The Prophet's Ascension* (*estimated)", + "2032-11-01": "The Prophet's Ascension (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr Second Day* (*estimated)", - "2033-01-31": "Lunar New Year* (*estimated)", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-04-01": "Islamic New Year* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr Second Day (estimated)", + "2033-01-31": "Lunar New Year (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", "2033-04-15": "Good Friday", "2033-05-01": "International Labor Day", - "2033-05-13": "Buddha's Birthday* (*estimated)", + "2033-05-13": "Buddha's Birthday (estimated)", "2033-05-26": "Ascension Day", "2033-06-01": "Pancasila Day", - "2033-06-09": "The Prophet's Birthday* (*estimated)", + "2033-06-09": "The Prophet's Birthday (estimated)", "2033-08-17": "Independence Day", - "2033-10-21": "The Prophet's Ascension* (*estimated)", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr Second Day* (*estimated)", + "2033-10-21": "The Prophet's Ascension (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr Second Day (estimated)", "2033-12-25": "Christmas Day", "2034-01-01": "New Year's Day", - "2034-02-19": "Lunar New Year* (*estimated)", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-21": "Islamic New Year* (*estimated)", + "2034-02-19": "Lunar New Year (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", "2034-04-07": "Good Friday", "2034-05-01": "International Labor Day", "2034-05-18": "Ascension Day", - "2034-05-30": "The Prophet's Birthday* (*estimated)", - "2034-06-01": "Buddha's Birthday* (*estimated); Pancasila Day", + "2034-05-30": "The Prophet's Birthday (estimated)", + "2034-06-01": "Buddha's Birthday (estimated); Pancasila Day", "2034-08-17": "Independence Day", - "2034-10-10": "The Prophet's Ascension* (*estimated)", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr Second Day* (*estimated)", + "2034-10-10": "The Prophet's Ascension (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr Second Day (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-08": "Lunar New Year* (*estimated)", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-03-11": "Islamic New Year* (*estimated)", + "2035-02-08": "Lunar New Year (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-03-11": "Islamic New Year (estimated)", "2035-03-23": "Good Friday", "2035-05-01": "International Labor Day", "2035-05-03": "Ascension Day", - "2035-05-20": "The Prophet's Birthday* (*estimated)", - "2035-05-22": "Buddha's Birthday* (*estimated)", + "2035-05-20": "The Prophet's Birthday (estimated)", + "2035-05-22": "Buddha's Birthday (estimated)", "2035-06-01": "Pancasila Day", "2035-08-17": "Independence Day", - "2035-09-29": "The Prophet's Ascension* (*estimated)", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr Second Day* (*estimated)", + "2035-09-29": "The Prophet's Ascension (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr Second Day (estimated)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-01-28": "Lunar New Year* (*estimated)", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-28": "Islamic New Year* (*estimated)", + "2036-01-28": "Lunar New Year (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", "2036-04-11": "Good Friday", "2036-05-01": "International Labor Day", - "2036-05-08": "The Prophet's Birthday* (*estimated)", - "2036-05-10": "Buddha's Birthday* (*estimated)", + "2036-05-08": "The Prophet's Birthday (estimated)", + "2036-05-10": "Buddha's Birthday (estimated)", "2036-05-22": "Ascension Day", "2036-06-01": "Pancasila Day", "2036-08-17": "Independence Day", - "2036-09-18": "The Prophet's Ascension* (*estimated)", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr Second Day* (*estimated)", + "2036-09-18": "The Prophet's Ascension (estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr Second Day (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-02-15": "Lunar New Year* (*estimated)", - "2037-02-16": "Islamic New Year* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-15": "Lunar New Year (estimated)", + "2037-02-16": "Islamic New Year (estimated)", "2037-04-03": "Good Friday", - "2037-04-28": "The Prophet's Birthday* (*estimated)", + "2037-04-28": "The Prophet's Birthday (estimated)", "2037-05-01": "International Labor Day", "2037-05-14": "Ascension Day", - "2037-05-29": "Buddha's Birthday* (*estimated)", + "2037-05-29": "Buddha's Birthday (estimated)", "2037-06-01": "Pancasila Day", "2037-08-17": "Independence Day", - "2037-09-07": "The Prophet's Ascension* (*estimated)", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr Second Day* (*estimated)", + "2037-09-07": "The Prophet's Ascension (estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr Second Day (estimated)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-02-04": "Lunar New Year* (*estimated)", - "2038-02-05": "Islamic New Year* (*estimated)", - "2038-04-17": "The Prophet's Birthday* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-02-04": "Lunar New Year (estimated)", + "2038-02-05": "Islamic New Year (estimated)", + "2038-04-17": "The Prophet's Birthday (estimated)", "2038-04-23": "Good Friday", "2038-05-01": "International Labor Day", - "2038-05-18": "Buddha's Birthday* (*estimated)", + "2038-05-18": "Buddha's Birthday (estimated)", "2038-06-01": "Pancasila Day", "2038-06-03": "Ascension Day", "2038-08-17": "Independence Day", - "2038-08-28": "The Prophet's Ascension* (*estimated)", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr Second Day* (*estimated)", + "2038-08-28": "The Prophet's Ascension (estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr Second Day (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-24": "Lunar New Year* (*estimated)", - "2039-01-26": "Islamic New Year* (*estimated)", - "2039-04-06": "The Prophet's Birthday* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-24": "Lunar New Year (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "The Prophet's Birthday (estimated)", "2039-04-08": "Good Friday", "2039-05-01": "International Labor Day", - "2039-05-07": "Buddha's Birthday* (*estimated)", + "2039-05-07": "Buddha's Birthday (estimated)", "2039-05-19": "Ascension Day", "2039-06-01": "Pancasila Day", - "2039-08-17": "Independence Day; The Prophet's Ascension* (*estimated)", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr Second Day* (*estimated)", + "2039-08-17": "Independence Day; The Prophet's Ascension (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr Second Day (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", - "2040-01-15": "Islamic New Year* (*estimated)", - "2040-02-12": "Lunar New Year* (*estimated)", - "2040-03-25": "The Prophet's Birthday* (*estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-02-12": "Lunar New Year (estimated)", + "2040-03-25": "The Prophet's Birthday (estimated)", "2040-03-30": "Good Friday", "2040-05-01": "International Labor Day", "2040-05-10": "Ascension Day", - "2040-05-25": "Buddha's Birthday* (*estimated)", + "2040-05-25": "Buddha's Birthday (estimated)", "2040-06-01": "Pancasila Day", - "2040-08-05": "The Prophet's Ascension* (*estimated)", + "2040-08-05": "The Prophet's Ascension (estimated)", "2040-08-17": "Independence Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr Second Day* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr Second Day (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", - "2041-02-01": "Lunar New Year* (*estimated)", - "2041-03-15": "The Prophet's Birthday* (*estimated)", + "2041-01-04": "Islamic New Year (estimated)", + "2041-02-01": "Lunar New Year (estimated)", + "2041-03-15": "The Prophet's Birthday (estimated)", "2041-04-19": "Good Friday", "2041-05-01": "International Labor Day", - "2041-05-14": "Buddha's Birthday* (*estimated)", + "2041-05-14": "Buddha's Birthday (estimated)", "2041-05-30": "Ascension Day", "2041-06-01": "Pancasila Day", - "2041-07-25": "The Prophet's Ascension* (*estimated)", + "2041-07-25": "The Prophet's Ascension (estimated)", "2041-08-17": "Independence Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr Second Day* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-24": "Islamic New Year* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr Second Day (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", - "2042-01-22": "Lunar New Year* (*estimated)", - "2042-03-04": "The Prophet's Birthday* (*estimated)", + "2042-01-22": "Lunar New Year (estimated)", + "2042-03-04": "The Prophet's Birthday (estimated)", "2042-04-04": "Good Friday", "2042-05-01": "International Labor Day", "2042-05-15": "Ascension Day", "2042-06-01": "Pancasila Day", - "2042-06-02": "Buddha's Birthday* (*estimated)", - "2042-07-15": "The Prophet's Ascension* (*estimated)", + "2042-06-02": "Buddha's Birthday (estimated)", + "2042-07-15": "The Prophet's Ascension (estimated)", "2042-08-17": "Independence Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr Second Day* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-12-14": "Islamic New Year* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr Second Day (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-12-14": "Islamic New Year (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-10": "Lunar New Year* (*estimated)", - "2043-02-22": "The Prophet's Birthday* (*estimated)", + "2043-02-10": "Lunar New Year (estimated)", + "2043-02-22": "The Prophet's Birthday (estimated)", "2043-03-27": "Good Friday", "2043-05-01": "International Labor Day", "2043-05-07": "Ascension Day", - "2043-05-23": "Buddha's Birthday* (*estimated)", + "2043-05-23": "Buddha's Birthday (estimated)", "2043-06-01": "Pancasila Day", - "2043-07-04": "The Prophet's Ascension* (*estimated)", + "2043-07-04": "The Prophet's Ascension (estimated)", "2043-08-17": "Independence Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr Second Day* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-12-03": "Islamic New Year* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr Second Day (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Lunar New Year* (*estimated)", - "2044-02-11": "The Prophet's Birthday* (*estimated)", + "2044-01-30": "Lunar New Year (estimated)", + "2044-02-11": "The Prophet's Birthday (estimated)", "2044-04-15": "Good Friday", "2044-05-01": "International Labor Day", - "2044-05-12": "Buddha's Birthday* (*estimated)", + "2044-05-12": "Buddha's Birthday (estimated)", "2044-05-26": "Ascension Day", "2044-06-01": "Pancasila Day", - "2044-06-23": "The Prophet's Ascension* (*estimated)", + "2044-06-23": "The Prophet's Ascension (estimated)", "2044-08-17": "Independence Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr Second Day* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-21": "Islamic New Year* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr Second Day (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-21": "Islamic New Year (estimated)", "2044-12-25": "Christmas Day", "2045-01-01": "New Year's Day", - "2045-01-30": "The Prophet's Birthday* (*estimated)", - "2045-02-17": "Lunar New Year* (*estimated)", + "2045-01-30": "The Prophet's Birthday (estimated)", + "2045-02-17": "Lunar New Year (estimated)", "2045-04-07": "Good Friday", "2045-05-01": "International Labor Day", "2045-05-18": "Ascension Day", - "2045-05-31": "Buddha's Birthday* (*estimated)", + "2045-05-31": "Buddha's Birthday (estimated)", "2045-06-01": "Pancasila Day", - "2045-06-13": "The Prophet's Ascension* (*estimated)", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr Second Day* (*estimated)", + "2045-06-13": "The Prophet's Ascension (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr Second Day (estimated)", "2045-08-17": "Independence Day", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-11-10": "Islamic New Year* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-11-10": "Islamic New Year (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "The Prophet's Birthday* (*estimated)", - "2046-02-06": "Lunar New Year* (*estimated)", + "2046-01-19": "The Prophet's Birthday (estimated)", + "2046-02-06": "Lunar New Year (estimated)", "2046-03-23": "Good Friday", "2046-05-01": "International Labor Day", "2046-05-03": "Ascension Day", - "2046-05-20": "Buddha's Birthday* (*estimated)", + "2046-05-20": "Buddha's Birthday (estimated)", "2046-06-01": "Pancasila Day", - "2046-06-02": "The Prophet's Ascension* (*estimated)", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr Second Day* (*estimated)", + "2046-06-02": "The Prophet's Ascension (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr Second Day (estimated)", "2046-08-17": "Independence Day", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-31": "Islamic New Year* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "The Prophet's Birthday* (*estimated)", - "2047-01-26": "Lunar New Year* (*estimated)", + "2047-01-08": "The Prophet's Birthday (estimated)", + "2047-01-26": "Lunar New Year (estimated)", "2047-04-12": "Good Friday", "2047-05-01": "International Labor Day", - "2047-05-09": "Buddha's Birthday* (*estimated)", - "2047-05-22": "The Prophet's Ascension* (*estimated)", + "2047-05-09": "Buddha's Birthday (estimated)", + "2047-05-22": "The Prophet's Ascension (estimated)", "2047-05-23": "Ascension Day", "2047-06-01": "Pancasila Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr Second Day* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr Second Day (estimated)", "2047-08-17": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-20": "Islamic New Year* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "The Prophet's Birthday* (*estimated)", + "2047-12-29": "The Prophet's Birthday (estimated)", "2048-01-01": "New Year's Day", - "2048-02-14": "Lunar New Year* (*estimated)", + "2048-02-14": "Lunar New Year (estimated)", "2048-04-03": "Good Friday", "2048-05-01": "International Labor Day", - "2048-05-10": "The Prophet's Ascension* (*estimated)", + "2048-05-10": "The Prophet's Ascension (estimated)", "2048-05-14": "Ascension Day", - "2048-05-27": "Buddha's Birthday* (*estimated)", + "2048-05-27": "Buddha's Birthday (estimated)", "2048-06-01": "Pancasila Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr Second Day* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr Second Day (estimated)", "2048-08-17": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-10-09": "Islamic New Year* (*estimated)", - "2048-12-18": "The Prophet's Birthday* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", + "2048-12-18": "The Prophet's Birthday (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-02-02": "Lunar New Year* (*estimated)", + "2049-02-02": "Lunar New Year (estimated)", "2049-04-16": "Good Friday", - "2049-04-29": "The Prophet's Ascension* (*estimated)", + "2049-04-29": "The Prophet's Ascension (estimated)", "2049-05-01": "International Labor Day", - "2049-05-16": "Buddha's Birthday* (*estimated)", + "2049-05-16": "Buddha's Birthday (estimated)", "2049-05-27": "Ascension Day", "2049-06-01": "Pancasila Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr Second Day* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr Second Day (estimated)", "2049-08-17": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", - "2049-12-07": "The Prophet's Birthday* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-28": "Islamic New Year (estimated)", + "2049-12-07": "The Prophet's Birthday (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", - "2050-01-23": "Lunar New Year* (*estimated)", + "2050-01-23": "Lunar New Year (estimated)", "2050-04-08": "Good Friday", - "2050-04-19": "The Prophet's Ascension* (*estimated)", + "2050-04-19": "The Prophet's Ascension (estimated)", "2050-05-01": "International Labor Day", "2050-05-19": "Ascension Day", "2050-06-01": "Pancasila Day", - "2050-06-04": "Buddha's Birthday* (*estimated)", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr Second Day* (*estimated)", + "2050-06-04": "Buddha's Birthday (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr Second Day (estimated)", "2050-08-17": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-09-17": "Islamic New Year* (*estimated)", - "2050-11-26": "The Prophet's Birthday* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-09-17": "Islamic New Year (estimated)", + "2050-11-26": "The Prophet's Birthday (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_AN.json b/snapshots/countries/IN_AN.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_AN.json +++ b/snapshots/countries/IN_AN.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_AP.json b/snapshots/countries/IN_AP.json index 37158aba6..f239a4caf 100644 --- a/snapshots/countries/IN_AP.json +++ b/snapshots/countries/IN_AP.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -8,15 +8,15 @@ "1950-04-14": "Dr. B. R. Ambedkar's Jayanti", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", "1950-11-01": "Andhra Pradesh Foundation Day", - "1950-12-22": "Mawlid* (*estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -26,15 +26,15 @@ "1951-04-14": "Dr. B. R. Ambedkar's Jayanti", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", "1951-11-01": "Andhra Pradesh Foundation Day", - "1951-12-11": "Mawlid* (*estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -44,15 +44,15 @@ "1952-04-14": "Dr. B. R. Ambedkar's Jayanti", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", "1952-11-01": "Andhra Pradesh Foundation Day", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -62,15 +62,15 @@ "1953-04-14": "Dr. B. R. Ambedkar's Jayanti", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", "1953-11-01": "Andhra Pradesh Foundation Day", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -79,16 +79,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", "1954-11-01": "Andhra Pradesh Foundation Day", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -97,15 +97,15 @@ "1955-04-10": "Easter Sunday", "1955-04-14": "Dr. B. R. Ambedkar's Jayanti", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-11-01": "Andhra Pradesh Foundation Day", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", @@ -115,15 +115,15 @@ "1956-04-01": "Easter Sunday", "1956-04-14": "Dr. B. R. Ambedkar's Jayanti", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-11-01": "Andhra Pradesh Foundation Day", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", @@ -131,15 +131,15 @@ "1957-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-11-01": "Andhra Pradesh Foundation Day", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", @@ -148,15 +148,15 @@ "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-11-01": "Andhra Pradesh Foundation Day", "1958-12-25": "Christmas Day", @@ -165,271 +165,271 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-11-01": "Andhra Pradesh Foundation Day", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-11-01": "Andhra Pradesh Foundation Day", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-04-14": "Dr. B. R. Ambedkar's Jayanti", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-11-01": "Andhra Pradesh Foundation Day", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-11-01": "Andhra Pradesh Foundation Day", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-11-01": "Andhra Pradesh Foundation Day", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-11-01": "Andhra Pradesh Foundation Day", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-11-01": "Andhra Pradesh Foundation Day", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-11-01": "Andhra Pradesh Foundation Day", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-11-01": "Andhra Pradesh Foundation Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", "1968-11-01": "Andhra Pradesh Foundation Day", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-04-14": "Dr. B. R. Ambedkar's Jayanti", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", "1969-11-01": "Andhra Pradesh Foundation Day", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-04-14": "Dr. B. R. Ambedkar's Jayanti", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", "1970-11-01": "Andhra Pradesh Foundation Day", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-14": "Dr. B. R. Ambedkar's Jayanti", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", "1971-11-01": "Andhra Pradesh Foundation Day", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", "1972-11-01": "Andhra Pradesh Foundation Day", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-11-01": "Andhra Pradesh Foundation Day", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", @@ -437,16 +437,16 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", "1974-11-01": "Andhra Pradesh Foundation Day", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -454,16 +454,16 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", "1975-11-01": "Andhra Pradesh Foundation Day", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti", "1976-04-16": "Good Friday", @@ -471,17 +471,17 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", "1976-11-01": "Andhra Pradesh Foundation Day", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -489,17 +489,17 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", "1977-11-01": "Andhra Pradesh Foundation Day", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -507,17 +507,17 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", "1978-11-01": "Andhra Pradesh Foundation Day", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -525,33 +525,33 @@ "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Andhra Pradesh Foundation Day; Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Andhra Pradesh Foundation Day; Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-14": "Dr. B. R. Ambedkar's Jayanti", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-11-01": "Andhra Pradesh Foundation Day", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -559,16 +559,16 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-11-01": "Andhra Pradesh Foundation Day", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -577,16 +577,16 @@ "1982-04-14": "Dr. B. R. Ambedkar's Jayanti", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-11-01": "Andhra Pradesh Foundation Day", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -595,15 +595,15 @@ "1983-04-14": "Dr. B. R. Ambedkar's Jayanti", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", "1983-11-01": "Andhra Pradesh Foundation Day", - "1983-12-16": "Mawlid* (*estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -613,15 +613,15 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", "1984-11-01": "Andhra Pradesh Foundation Day", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -631,15 +631,15 @@ "1985-04-14": "Dr. B. R. Ambedkar's Jayanti", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", "1985-11-01": "Andhra Pradesh Foundation Day", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -649,14 +649,14 @@ "1986-04-14": "Dr. B. R. Ambedkar's Jayanti", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", "1986-11-01": "Andhra Pradesh Foundation Day", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -665,16 +665,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", "1987-11-01": "Andhra Pradesh Foundation Day", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -683,15 +683,15 @@ "1988-04-03": "Easter Sunday", "1988-04-14": "Dr. B. R. Ambedkar's Jayanti", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-11-01": "Andhra Pradesh Foundation Day", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", @@ -701,15 +701,15 @@ "1989-03-26": "Easter Sunday", "1989-04-14": "Dr. B. R. Ambedkar's Jayanti", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-11-01": "Andhra Pradesh Foundation Day", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", @@ -718,15 +718,15 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-11-01": "Andhra Pradesh Foundation Day", "1990-12-25": "Christmas Day", @@ -736,284 +736,284 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-11-01": "Andhra Pradesh Foundation Day", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-11-01": "Andhra Pradesh Foundation Day", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-14": "Dr. B. R. Ambedkar's Jayanti", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-11-01": "Andhra Pradesh Foundation Day", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-14": "Dr. B. R. Ambedkar's Jayanti", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-11-01": "Andhra Pradesh Foundation Day", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-11-01": "Andhra Pradesh Foundation Day", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-11-01": "Andhra Pradesh Foundation Day", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-11-01": "Andhra Pradesh Foundation Day", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-11-01": "Andhra Pradesh Foundation Day", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-11-01": "Andhra Pradesh Foundation Day", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-11-01": "Andhra Pradesh Foundation Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-01": "Andhra Pradesh Foundation Day", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-14": "Dr. B. R. Ambedkar's Jayanti", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-01": "Andhra Pradesh Foundation Day", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-14": "Dr. B. R. Ambedkar's Jayanti", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", "2003-11-01": "Andhra Pradesh Foundation Day", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-01": "Andhra Pradesh Foundation Day", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Andhra Pradesh Foundation Day; Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -1021,17 +1021,17 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-11-01": "Andhra Pradesh Foundation Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -1040,18 +1040,18 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-01": "Andhra Pradesh Foundation Day", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1059,17 +1059,17 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", "2008-11-01": "Andhra Pradesh Foundation Day", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1078,18 +1078,18 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", "2009-11-01": "Andhra Pradesh Foundation Day", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1098,18 +1098,18 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-01": "Andhra Pradesh Foundation Day", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti", "2011-04-17": "Palm Sunday", @@ -1118,18 +1118,18 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", "2011-11-01": "Andhra Pradesh Foundation Day", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1138,17 +1138,17 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-01": "Andhra Pradesh Foundation Day", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1157,17 +1157,17 @@ "2013-04-14": "Dr. B. R. Ambedkar's Jayanti", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-01": "Andhra Pradesh Foundation Day", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1177,17 +1177,17 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", "2014-11-01": "Andhra Pradesh Foundation Day", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1197,16 +1197,16 @@ "2015-04-14": "Dr. B. R. Ambedkar's Jayanti", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-01": "Andhra Pradesh Foundation Day", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1217,16 +1217,16 @@ "2016-04-14": "Dr. B. R. Ambedkar's Jayanti", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", "2016-11-01": "Andhra Pradesh Foundation Day", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1236,16 +1236,16 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", "2017-11-01": "Andhra Pradesh Foundation Day", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1256,16 +1256,16 @@ "2018-04-14": "Dr. B. R. Ambedkar's Jayanti", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-01": "Andhra Pradesh Foundation Day", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1274,17 +1274,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", "2019-11-01": "Andhra Pradesh Foundation Day", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1294,15 +1294,15 @@ "2020-04-12": "Easter Sunday", "2020-04-14": "Dr. B. R. Ambedkar's Jayanti", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-01": "Andhra Pradesh Foundation Day", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", @@ -1314,15 +1314,15 @@ "2021-04-04": "Easter Sunday", "2021-04-14": "Dr. B. R. Ambedkar's Jayanti", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-01": "Andhra Pradesh Foundation Day", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", @@ -1334,15 +1334,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-11-01": "Andhra Pradesh Foundation Day", "2022-12-25": "Christmas Day", @@ -1353,15 +1353,15 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-01": "Andhra Pradesh Foundation Day", "2023-11-12": "Diwali", @@ -1372,35 +1372,35 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Andhra Pradesh Foundation Day; Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-11-01": "Andhra Pradesh Foundation Day", @@ -1408,37 +1408,37 @@ "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-14": "Dr. B. R. Ambedkar's Jayanti", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-01": "Andhra Pradesh Foundation Day", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-14": "Dr. B. R. Ambedkar's Jayanti", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", @@ -1446,18 +1446,18 @@ "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", @@ -1465,19 +1465,19 @@ "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-01": "Andhra Pradesh Foundation Day", @@ -1485,154 +1485,154 @@ "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-11-01": "Andhra Pradesh Foundation Day", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-11-01": "Andhra Pradesh Foundation Day", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-11-01": "Andhra Pradesh Foundation Day", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", "2033-11-01": "Andhra Pradesh Foundation Day", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-14": "Dr. B. R. Ambedkar's Jayanti", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", "2034-11-01": "Andhra Pradesh Foundation Day", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-14": "Dr. B. R. Ambedkar's Jayanti", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", "2035-11-01": "Andhra Pradesh Foundation Day", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Dr. B. R. Ambedkar's Jayanti", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", "2036-11-01": "Andhra Pradesh Foundation Day", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", "2037-11-01": "Andhra Pradesh Foundation Day", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1640,17 +1640,17 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-11-01": "Andhra Pradesh Foundation Day", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1658,16 +1658,16 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-11-01": "Andhra Pradesh Foundation Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1675,33 +1675,33 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", "2040-11-01": "Andhra Pradesh Foundation Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", "2041-11-01": "Andhra Pradesh Foundation Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1709,17 +1709,17 @@ "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", "2042-11-01": "Andhra Pradesh Foundation Day", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1727,17 +1727,17 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", "2043-11-01": "Andhra Pradesh Foundation Day", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti", "2044-04-15": "Good Friday", @@ -1745,32 +1745,32 @@ "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Andhra Pradesh Foundation Day; Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Andhra Pradesh Foundation Day; Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-14": "Dr. B. R. Ambedkar's Jayanti", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-11-01": "Andhra Pradesh Foundation Day", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1778,16 +1778,16 @@ "2046-04-14": "Dr. B. R. Ambedkar's Jayanti", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-11-01": "Andhra Pradesh Foundation Day", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1795,16 +1795,16 @@ "2047-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-11-01": "Andhra Pradesh Foundation Day", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1813,15 +1813,15 @@ "2048-04-14": "Dr. B. R. Ambedkar's Jayanti", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", "2048-11-01": "Andhra Pradesh Foundation Day", - "2048-12-18": "Mawlid* (*estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1831,15 +1831,15 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", "2049-11-01": "Andhra Pradesh Foundation Day", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1849,14 +1849,14 @@ "2050-04-14": "Dr. B. R. Ambedkar's Jayanti", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", "2050-11-01": "Andhra Pradesh Foundation Day", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_AR.json b/snapshots/countries/IN_AR.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_AR.json +++ b/snapshots/countries/IN_AR.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_AS.json b/snapshots/countries/IN_AS.json index e5ec262c5..e977bdf66 100644 --- a/snapshots/countries/IN_AS.json +++ b/snapshots/countries/IN_AS.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -8,14 +8,14 @@ "1950-04-15": "Bihu (Assamese New Year)", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -25,14 +25,14 @@ "1951-04-15": "Bihu (Assamese New Year)", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -42,14 +42,14 @@ "1952-04-15": "Bihu (Assamese New Year)", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -59,14 +59,14 @@ "1953-04-15": "Bihu (Assamese New Year)", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -75,15 +75,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -92,15 +92,15 @@ "1955-04-10": "Easter Sunday", "1955-04-15": "Bihu (Assamese New Year)", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -109,15 +109,15 @@ "1956-04-01": "Easter Sunday", "1956-04-15": "Bihu (Assamese New Year)", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", @@ -125,15 +125,15 @@ "1957-04-15": "Bihu (Assamese New Year)", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", @@ -141,15 +141,15 @@ "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", "1958-04-15": "Bihu (Assamese New Year)", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -157,255 +157,255 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-15": "Bihu (Assamese New Year)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Bihu (Assamese New Year); Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-04-15": "Bihu (Assamese New Year)", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Bihu (Assamese New Year); Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-04-15": "Bihu (Assamese New Year)", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-15": "Bihu (Assamese New Year)", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-15": "Bihu (Assamese New Year)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-15": "Bihu (Assamese New Year)", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-15": "Bihu (Assamese New Year)", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-04-15": "Bihu (Assamese New Year)", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-04-15": "Bihu (Assamese New Year)", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-04-15": "Bihu (Assamese New Year)", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-15": "Bihu (Assamese New Year)", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-15": "Bihu (Assamese New Year)", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Bihu (Assamese New Year); Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Bihu (Assamese New Year); Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -414,15 +414,15 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-15": "Bihu (Assamese New Year)", @@ -430,15 +430,15 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-15": "Bihu (Assamese New Year)", "1976-04-16": "Good Friday", @@ -446,16 +446,16 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -463,16 +463,16 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -480,48 +480,48 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Bihu (Assamese New Year); Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-15": "Bihu (Assamese New Year)", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-15": "Bihu (Assamese New Year)", @@ -529,15 +529,15 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -546,15 +546,15 @@ "1982-04-15": "Bihu (Assamese New Year)", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -563,14 +563,14 @@ "1983-04-15": "Bihu (Assamese New Year)", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -579,14 +579,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -596,14 +596,14 @@ "1985-04-15": "Bihu (Assamese New Year)", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -613,13 +613,13 @@ "1986-04-15": "Bihu (Assamese New Year)", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -628,15 +628,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -645,15 +645,15 @@ "1988-04-03": "Easter Sunday", "1988-04-15": "Bihu (Assamese New Year)", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -662,30 +662,30 @@ "1989-03-26": "Easter Sunday", "1989-04-15": "Bihu (Assamese New Year)", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Bihu (Assamese New Year); Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -693,269 +693,269 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Bihu (Assamese New Year); Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Bihu (Assamese New Year); Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-15": "Bihu (Assamese New Year)", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-15": "Bihu (Assamese New Year)", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-15": "Bihu (Assamese New Year)", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-15": "Bihu (Assamese New Year)", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-15": "Bihu (Assamese New Year)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-15": "Bihu (Assamese New Year)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-15": "Bihu (Assamese New Year)", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-15": "Bihu (Assamese New Year)", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Bihu (Assamese New Year); Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Bihu (Assamese New Year); Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Bihu (Assamese New Year); Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-15": "Bihu (Assamese New Year)", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-15": "Bihu (Assamese New Year)", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-15": "Bihu (Assamese New Year)", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-15": "Bihu (Assamese New Year)", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-15": "Bihu (Assamese New Year)", "2006-04-16": "Easter Sunday", @@ -964,16 +964,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -982,17 +982,17 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1000,16 +1000,16 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1018,17 +1018,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1037,17 +1037,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-15": "Bihu (Assamese New Year)", "2011-04-17": "Palm Sunday", @@ -1056,17 +1056,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1075,16 +1075,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1093,16 +1093,16 @@ "2013-04-15": "Bihu (Assamese New Year)", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1112,16 +1112,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1131,15 +1131,15 @@ "2015-04-15": "Bihu (Assamese New Year)", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1150,15 +1150,15 @@ "2016-04-15": "Bihu (Assamese New Year)", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1169,15 +1169,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1188,15 +1188,15 @@ "2018-04-15": "Bihu (Assamese New Year)", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1206,16 +1206,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1225,15 +1225,15 @@ "2020-04-12": "Easter Sunday", "2020-04-15": "Bihu (Assamese New Year)", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1244,15 +1244,15 @@ "2021-04-04": "Easter Sunday", "2021-04-15": "Bihu (Assamese New Year)", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1262,15 +1262,15 @@ "2022-04-15": "Bihu (Assamese New Year); Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1280,15 +1280,15 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-15": "Bihu (Assamese New Year)", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1298,255 +1298,255 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-15": "Bihu (Assamese New Year)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-15": "Bihu (Assamese New Year)", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-15": "Bihu (Assamese New Year)", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-15": "Bihu (Assamese New Year)", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-15": "Bihu (Assamese New Year)", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-15": "Bihu (Assamese New Year)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-15": "Bihu (Assamese New Year)", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-15": "Bihu (Assamese New Year)", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-15": "Bihu (Assamese New Year)", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Bihu (Assamese New Year); Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-15": "Bihu (Assamese New Year)", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-15": "Bihu (Assamese New Year)", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-15": "Bihu (Assamese New Year)", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-15": "Bihu (Assamese New Year)", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-15": "Bihu (Assamese New Year)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1554,16 +1554,16 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-15": "Bihu (Assamese New Year)", @@ -1571,15 +1571,15 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-15": "Bihu (Assamese New Year)", @@ -1587,15 +1587,15 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-15": "Bihu (Assamese New Year)", "2041-04-19": "Good Friday", @@ -1603,16 +1603,16 @@ "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1620,16 +1620,16 @@ "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1637,47 +1637,47 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Bihu (Assamese New Year); Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-15": "Bihu (Assamese New Year)", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1685,15 +1685,15 @@ "2046-04-15": "Bihu (Assamese New Year)", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1702,15 +1702,15 @@ "2047-04-15": "Bihu (Assamese New Year)", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1719,14 +1719,14 @@ "2048-04-15": "Bihu (Assamese New Year)", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1736,14 +1736,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1753,13 +1753,13 @@ "2050-04-15": "Bihu (Assamese New Year)", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_BR.json b/snapshots/countries/IN_BR.json index 533c9d330..b71d1a7e4 100644 --- a/snapshots/countries/IN_BR.json +++ b/snapshots/countries/IN_BR.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-03-22": "Bihar Day", @@ -9,14 +9,14 @@ "1950-04-14": "Dr. B. R. Ambedkar's Jayanti", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -27,14 +27,14 @@ "1951-04-14": "Dr. B. R. Ambedkar's Jayanti", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -45,14 +45,14 @@ "1952-04-14": "Dr. B. R. Ambedkar's Jayanti", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -63,14 +63,14 @@ "1953-04-14": "Dr. B. R. Ambedkar's Jayanti", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -80,15 +80,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -98,15 +98,15 @@ "1955-04-10": "Easter Sunday", "1955-04-14": "Dr. B. R. Ambedkar's Jayanti", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -116,15 +116,15 @@ "1956-04-01": "Easter Sunday", "1956-04-14": "Dr. B. R. Ambedkar's Jayanti", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", @@ -132,15 +132,15 @@ "1957-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", @@ -149,15 +149,15 @@ "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -165,39 +165,39 @@ "1959-03-22": "Bihar Day; Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", "1960-03-22": "Bihar Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-22": "Bihar Day", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", @@ -205,228 +205,228 @@ "1961-04-14": "Dr. B. R. Ambedkar's Jayanti", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-03-22": "Bihar Day", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-03-22": "Bihar Day", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Bihar Day; Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", "1965-03-22": "Bihar Day", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", "1966-03-22": "Bihar Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Bihar Day; Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Bihar Day; Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-03-22": "Bihar Day", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", "1969-03-22": "Bihar Day", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-04-14": "Dr. B. R. Ambedkar's Jayanti", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Bihar Day; Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-04-14": "Dr. B. R. Ambedkar's Jayanti", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-03-22": "Bihar Day", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-14": "Dr. B. R. Ambedkar's Jayanti", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-22": "Bihar Day", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-03-22": "Bihar Day", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", "1974-03-22": "Bihar Day", - "1974-04-04": "Mawlid* (*estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", @@ -434,16 +434,16 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-22": "Bihar Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -451,15 +451,15 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-03-22": "Bihar Day", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -468,16 +468,16 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-03-22": "Bihar Day", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", @@ -486,16 +486,16 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-22": "Bihar Day", "1978-03-24": "Good Friday", @@ -504,16 +504,16 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-03-22": "Bihar Day", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", @@ -522,16 +522,16 @@ "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-22": "Bihar Day", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", @@ -539,16 +539,16 @@ "1980-04-14": "Dr. B. R. Ambedkar's Jayanti", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-03-22": "Bihar Day", "1981-04-12": "Palm Sunday", @@ -557,15 +557,15 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-03-22": "Bihar Day", @@ -575,15 +575,15 @@ "1982-04-14": "Dr. B. R. Ambedkar's Jayanti", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-22": "Bihar Day", @@ -593,14 +593,14 @@ "1983-04-14": "Dr. B. R. Ambedkar's Jayanti", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -611,14 +611,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -629,14 +629,14 @@ "1985-04-14": "Dr. B. R. Ambedkar's Jayanti", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -647,13 +647,13 @@ "1986-04-14": "Dr. B. R. Ambedkar's Jayanti", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -663,15 +663,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -681,15 +681,15 @@ "1988-04-03": "Easter Sunday", "1988-04-14": "Dr. B. R. Ambedkar's Jayanti", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -699,15 +699,15 @@ "1989-03-26": "Easter Sunday", "1989-04-14": "Dr. B. R. Ambedkar's Jayanti", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", @@ -716,15 +716,15 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -734,222 +734,222 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", "1992-03-22": "Bihar Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", "1993-03-22": "Bihar Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-14": "Dr. B. R. Ambedkar's Jayanti", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-22": "Bihar Day", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-14": "Dr. B. R. Ambedkar's Jayanti", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-03-22": "Bihar Day", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-22": "Bihar Day", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-22": "Bihar Day", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-03-22": "Bihar Day", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", "1999-03-22": "Bihar Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-03-22": "Bihar Day", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", "2001-03-22": "Bihar Day", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", "2002-03-22": "Bihar Day", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-14": "Dr. B. R. Ambedkar's Jayanti", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-03-22": "Bihar Day", "2003-04-13": "Palm Sunday", @@ -957,62 +957,62 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-03-22": "Bihar Day", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-22": "Bihar Day", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-03-22": "Bihar Day", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -1020,17 +1020,17 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", "2007-03-22": "Bihar Day", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -1039,17 +1039,17 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Bihar Day; Holi", "2008-03-23": "Easter Sunday", @@ -1057,16 +1057,16 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-03-22": "Bihar Day", "2009-04-05": "Palm Sunday", @@ -1076,17 +1076,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-22": "Bihar Day", "2010-03-28": "Palm Sunday", @@ -1096,17 +1096,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-03-22": "Bihar Day", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1116,17 +1116,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-03-22": "Bihar Day", "2012-04-01": "Palm Sunday", @@ -1136,16 +1136,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-22": "Bihar Day", "2013-03-24": "Palm Sunday", @@ -1155,16 +1155,16 @@ "2013-04-14": "Dr. B. R. Ambedkar's Jayanti", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1175,16 +1175,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1195,15 +1195,15 @@ "2015-04-14": "Dr. B. R. Ambedkar's Jayanti", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1215,15 +1215,15 @@ "2016-04-14": "Dr. B. R. Ambedkar's Jayanti", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1234,15 +1234,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1254,15 +1254,15 @@ "2018-04-14": "Dr. B. R. Ambedkar's Jayanti", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1272,16 +1272,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1292,15 +1292,15 @@ "2020-04-12": "Easter Sunday", "2020-04-14": "Dr. B. R. Ambedkar's Jayanti", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1312,15 +1312,15 @@ "2021-04-04": "Easter Sunday", "2021-04-14": "Dr. B. R. Ambedkar's Jayanti", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1332,15 +1332,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1351,15 +1351,15 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1370,16 +1370,16 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", @@ -1387,27 +1387,27 @@ "2025-01-26": "Republic Day", "2025-03-14": "Holi", "2025-03-22": "Bihar Day", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-22": "Bihar Day", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", @@ -1415,221 +1415,221 @@ "2026-04-14": "Dr. B. R. Ambedkar's Jayanti", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Bihar Day; Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-14": "Dr. B. R. Ambedkar's Jayanti", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-03-22": "Bihar Day", "2028-04-09": "Palm Sunday", "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-22": "Bihar Day", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", "2030-03-22": "Bihar Day", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", "2031-03-22": "Bihar Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Bihar Day; Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Bihar Day; Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", "2033-03-22": "Bihar Day", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", "2034-03-22": "Bihar Day", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-14": "Dr. B. R. Ambedkar's Jayanti", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-22": "Bihar Day", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-14": "Dr. B. R. Ambedkar's Jayanti", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-03-22": "Bihar Day", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Dr. B. R. Ambedkar's Jayanti", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-22": "Bihar Day", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-03-22": "Bihar Day", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1637,17 +1637,17 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-03-22": "Bihar Day", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1655,16 +1655,16 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", "2040-03-22": "Bihar Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1672,15 +1672,15 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-03-22": "Bihar Day", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "2041-04-19": "Good Friday", @@ -1688,16 +1688,16 @@ "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-22": "Bihar Day", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", @@ -1706,16 +1706,16 @@ "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Bihar Day; Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1723,16 +1723,16 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-03-22": "Bihar Day", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1741,16 +1741,16 @@ "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-03-22": "Bihar Day", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", @@ -1758,15 +1758,15 @@ "2045-04-14": "Dr. B. R. Ambedkar's Jayanti", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-22": "Bihar Day", @@ -1775,15 +1775,15 @@ "2046-04-14": "Dr. B. R. Ambedkar's Jayanti", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-03-22": "Bihar Day", @@ -1792,15 +1792,15 @@ "2047-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-22": "Bihar Day", @@ -1810,14 +1810,14 @@ "2048-04-14": "Dr. B. R. Ambedkar's Jayanti", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1828,14 +1828,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1846,13 +1846,13 @@ "2050-04-14": "Dr. B. R. Ambedkar's Jayanti", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_CG.json b/snapshots/countries/IN_CG.json index f3f6d5ec5..03b591217 100644 --- a/snapshots/countries/IN_CG.json +++ b/snapshots/countries/IN_CG.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,15 +7,15 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", "1950-11-01": "Chhattisgarh Foundation Day", - "1950-12-22": "Mawlid* (*estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -24,15 +24,15 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", "1951-11-01": "Chhattisgarh Foundation Day", - "1951-12-11": "Mawlid* (*estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -41,15 +41,15 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", "1952-11-01": "Chhattisgarh Foundation Day", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -58,15 +58,15 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", "1953-11-01": "Chhattisgarh Foundation Day", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -74,16 +74,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", "1954-11-01": "Chhattisgarh Foundation Day", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -91,15 +91,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-11-01": "Chhattisgarh Foundation Day", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", @@ -108,15 +108,15 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-11-01": "Chhattisgarh Foundation Day", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", @@ -124,15 +124,15 @@ "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-11-01": "Chhattisgarh Foundation Day", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", @@ -140,15 +140,15 @@ "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-11-01": "Chhattisgarh Foundation Day", "1958-12-25": "Christmas Day", @@ -157,258 +157,258 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-11-01": "Chhattisgarh Foundation Day", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-11-01": "Chhattisgarh Foundation Day", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-11-01": "Chhattisgarh Foundation Day", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-11-01": "Chhattisgarh Foundation Day", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-11-01": "Chhattisgarh Foundation Day", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-11-01": "Chhattisgarh Foundation Day", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-11-01": "Chhattisgarh Foundation Day", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-11-01": "Chhattisgarh Foundation Day", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-11-01": "Chhattisgarh Foundation Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", "1968-11-01": "Chhattisgarh Foundation Day", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", "1969-11-01": "Chhattisgarh Foundation Day", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", "1970-11-01": "Chhattisgarh Foundation Day", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", "1971-11-01": "Chhattisgarh Foundation Day", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", "1972-11-01": "Chhattisgarh Foundation Day", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-11-01": "Chhattisgarh Foundation Day", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -416,131 +416,131 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", "1974-11-01": "Chhattisgarh Foundation Day", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", "1975-11-01": "Chhattisgarh Foundation Day", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", "1976-11-01": "Chhattisgarh Foundation Day", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", "1977-11-01": "Chhattisgarh Foundation Day", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", "1978-11-01": "Chhattisgarh Foundation Day", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Chhattisgarh Foundation Day; Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Chhattisgarh Foundation Day; Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-11-01": "Chhattisgarh Foundation Day", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-11-01": "Chhattisgarh Foundation Day", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -548,16 +548,16 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-11-01": "Chhattisgarh Foundation Day", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -565,15 +565,15 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", "1983-11-01": "Chhattisgarh Foundation Day", - "1983-12-16": "Mawlid* (*estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -582,15 +582,15 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", "1984-11-01": "Chhattisgarh Foundation Day", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -599,15 +599,15 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", "1985-11-01": "Chhattisgarh Foundation Day", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -616,14 +616,14 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", "1986-11-01": "Chhattisgarh Foundation Day", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -631,16 +631,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", "1987-11-01": "Chhattisgarh Foundation Day", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -648,15 +648,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-11-01": "Chhattisgarh Foundation Day", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", @@ -665,15 +665,15 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-11-01": "Chhattisgarh Foundation Day", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", @@ -681,15 +681,15 @@ "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-11-01": "Chhattisgarh Foundation Day", "1990-12-25": "Christmas Day", @@ -698,271 +698,271 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-11-01": "Chhattisgarh Foundation Day", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-11-01": "Chhattisgarh Foundation Day", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-11-01": "Chhattisgarh Foundation Day", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-11-01": "Chhattisgarh Foundation Day", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-11-01": "Chhattisgarh Foundation Day", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-11-01": "Chhattisgarh Foundation Day", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-11-01": "Chhattisgarh Foundation Day", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-11-01": "Chhattisgarh Foundation Day", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-11-01": "Chhattisgarh Foundation Day", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-11-01": "Chhattisgarh Foundation Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-01": "Chhattisgarh Foundation Day", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-01": "Chhattisgarh Foundation Day", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", "2003-11-01": "Chhattisgarh Foundation Day", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-01": "Chhattisgarh Foundation Day", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Chhattisgarh Foundation Day; Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -970,17 +970,17 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-11-01": "Chhattisgarh Foundation Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -988,35 +988,35 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-01": "Chhattisgarh Foundation Day", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", "2008-11-01": "Chhattisgarh Foundation Day", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1024,18 +1024,18 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", "2009-11-01": "Chhattisgarh Foundation Day", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1043,18 +1043,18 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-01": "Chhattisgarh Foundation Day", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1062,18 +1062,18 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", "2011-11-01": "Chhattisgarh Foundation Day", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1081,17 +1081,17 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-01": "Chhattisgarh Foundation Day", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1099,17 +1099,17 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-01": "Chhattisgarh Foundation Day", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1118,17 +1118,17 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", "2014-11-01": "Chhattisgarh Foundation Day", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1137,16 +1137,16 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-01": "Chhattisgarh Foundation Day", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1156,16 +1156,16 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", "2016-11-01": "Chhattisgarh Foundation Day", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1175,16 +1175,16 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", "2017-11-01": "Chhattisgarh Foundation Day", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1194,16 +1194,16 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-01": "Chhattisgarh Foundation Day", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1212,17 +1212,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", "2019-11-01": "Chhattisgarh Foundation Day", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1231,15 +1231,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-01": "Chhattisgarh Foundation Day", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", @@ -1250,15 +1250,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-01": "Chhattisgarh Foundation Day", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", @@ -1269,15 +1269,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-11-01": "Chhattisgarh Foundation Day", "2022-12-25": "Christmas Day", @@ -1287,15 +1287,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-01": "Chhattisgarh Foundation Day", "2023-11-12": "Diwali", @@ -1306,33 +1306,33 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Chhattisgarh Foundation Day; Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-11-01": "Chhattisgarh Foundation Day", @@ -1340,35 +1340,35 @@ "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-01": "Chhattisgarh Foundation Day", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", @@ -1376,18 +1376,18 @@ "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", @@ -1395,18 +1395,18 @@ "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-01": "Chhattisgarh Foundation Day", @@ -1414,146 +1414,146 @@ "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-11-01": "Chhattisgarh Foundation Day", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-11-01": "Chhattisgarh Foundation Day", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-11-01": "Chhattisgarh Foundation Day", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", "2033-11-01": "Chhattisgarh Foundation Day", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", "2034-11-01": "Chhattisgarh Foundation Day", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", "2035-11-01": "Chhattisgarh Foundation Day", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", "2036-11-01": "Chhattisgarh Foundation Day", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", "2037-11-01": "Chhattisgarh Foundation Day", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1561,147 +1561,147 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-11-01": "Chhattisgarh Foundation Day", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-11-01": "Chhattisgarh Foundation Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", "2040-11-01": "Chhattisgarh Foundation Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", "2041-11-01": "Chhattisgarh Foundation Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", "2042-11-01": "Chhattisgarh Foundation Day", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", "2043-11-01": "Chhattisgarh Foundation Day", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Chhattisgarh Foundation Day; Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Chhattisgarh Foundation Day; Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-11-01": "Chhattisgarh Foundation Day", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-11-01": "Chhattisgarh Foundation Day", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1709,16 +1709,16 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-11-01": "Chhattisgarh Foundation Day", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1726,15 +1726,15 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", "2048-11-01": "Chhattisgarh Foundation Day", - "2048-12-18": "Mawlid* (*estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1743,15 +1743,15 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", "2049-11-01": "Chhattisgarh Foundation Day", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1760,14 +1760,14 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", "2050-11-01": "Chhattisgarh Foundation Day", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_CH.json b/snapshots/countries/IN_CH.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_CH.json +++ b/snapshots/countries/IN_CH.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_COMMON.json b/snapshots/countries/IN_COMMON.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_COMMON.json +++ b/snapshots/countries/IN_COMMON.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_DD.json b/snapshots/countries/IN_DD.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_DD.json +++ b/snapshots/countries/IN_DD.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_DH.json b/snapshots/countries/IN_DH.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_DH.json +++ b/snapshots/countries/IN_DH.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_DL.json b/snapshots/countries/IN_DL.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_DL.json +++ b/snapshots/countries/IN_DL.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_GA.json b/snapshots/countries/IN_GA.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_GA.json +++ b/snapshots/countries/IN_GA.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_GJ.json b/snapshots/countries/IN_GJ.json index ebe1fc68c..03f303c87 100644 --- a/snapshots/countries/IN_GJ.json +++ b/snapshots/countries/IN_GJ.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal; Uttarayan", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,15 +7,15 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Gujarat Day; Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", "1950-10-31": "Sardar Patel Jayanti", - "1950-12-22": "Mawlid* (*estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal; Uttarayan", "1951-01-26": "Republic Day", @@ -24,15 +24,15 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Gujarat Day; Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", "1951-10-31": "Sardar Patel Jayanti", - "1951-12-11": "Mawlid* (*estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal; Uttarayan", "1952-01-26": "Republic Day", @@ -41,15 +41,15 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Gujarat Day; Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", "1952-10-31": "Sardar Patel Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal; Uttarayan", "1953-01-26": "Republic Day", @@ -58,15 +58,15 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Gujarat Day; Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", "1953-10-31": "Sardar Patel Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal; Uttarayan", "1954-01-26": "Republic Day", @@ -74,16 +74,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Gujarat Day; Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", "1954-10-31": "Sardar Patel Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal; Uttarayan", "1955-01-26": "Republic Day", @@ -91,15 +91,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Gujarat Day; Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-10-31": "Sardar Patel Jayanti", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal; Uttarayan", @@ -108,15 +108,15 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Gujarat Day; Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-10-31": "Sardar Patel Jayanti", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal; Uttarayan", @@ -124,15 +124,15 @@ "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Gujarat Day; Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Gujarat Day; Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-10-31": "Sardar Patel Jayanti", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal; Uttarayan", @@ -140,15 +140,15 @@ "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Gujarat Day; Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-10-31": "Sardar Patel Jayanti", "1958-12-25": "Christmas Day", @@ -157,258 +157,258 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Gujarat Day; Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-10-31": "Sardar Patel Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal; Uttarayan", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Gujarat Day; Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-10-31": "Sardar Patel Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal; Uttarayan", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Gujarat Day; Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-10-31": "Sardar Patel Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal; Uttarayan", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Gujarat Day; Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-10-31": "Sardar Patel Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal; Uttarayan", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Gujarat Day; Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-10-31": "Sardar Patel Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal; Uttarayan", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Gujarat Day; Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-10-31": "Sardar Patel Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal; Uttarayan", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Gujarat Day; Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-10-31": "Sardar Patel Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal; Uttarayan", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Gujarat Day; Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-10-31": "Sardar Patel Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal; Uttarayan", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Gujarat Day; Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-10-31": "Sardar Patel Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal; Uttarayan", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Gujarat Day; Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", "1968-10-31": "Sardar Patel Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal; Uttarayan", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Gujarat Day; Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", "1969-10-31": "Sardar Patel Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal; Uttarayan", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Gujarat Day; Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", "1970-10-31": "Sardar Patel Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal; Uttarayan", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Gujarat Day; Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", "1971-10-31": "Sardar Patel Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal; Uttarayan", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Gujarat Day; Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", "1972-10-31": "Sardar Patel Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal; Uttarayan", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal; Uttarayan", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Gujarat Day; Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-10-31": "Sardar Patel Jayanti", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal; Uttarayan", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -416,131 +416,131 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", "1974-10-31": "Sardar Patel Jayanti", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal; Uttarayan", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Gujarat Day; Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", "1975-10-31": "Sardar Patel Jayanti", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal; Uttarayan", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Gujarat Day; Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", "1976-10-31": "Sardar Patel Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal; Uttarayan", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Gujarat Day; Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", "1977-10-31": "Sardar Patel Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal; Uttarayan", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Gujarat Day; Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", "1978-10-31": "Sardar Patel Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal; Uttarayan", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Gujarat Day; Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated); Sardar Patel Jayanti", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated); Sardar Patel Jayanti", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal; Uttarayan", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Gujarat Day; Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-10-31": "Sardar Patel Jayanti", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal; Uttarayan", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Gujarat Day; Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-10-31": "Sardar Patel Jayanti", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal; Uttarayan", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -548,16 +548,16 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Gujarat Day; Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-10-31": "Sardar Patel Jayanti", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal; Uttarayan", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -565,15 +565,15 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Gujarat Day; Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", "1983-10-31": "Sardar Patel Jayanti", - "1983-12-16": "Mawlid* (*estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal; Uttarayan", "1984-01-26": "Republic Day", @@ -582,15 +582,15 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Gujarat Day; Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", "1984-10-31": "Sardar Patel Jayanti", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal; Uttarayan", "1985-01-26": "Republic Day", @@ -599,15 +599,15 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Gujarat Day; Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", "1985-10-31": "Sardar Patel Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal; Uttarayan", "1986-01-26": "Republic Day", @@ -616,14 +616,14 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Gujarat Day; Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", "1986-10-31": "Sardar Patel Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal; Uttarayan", "1987-01-26": "Republic Day", @@ -631,16 +631,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Gujarat Day; Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", "1987-10-31": "Sardar Patel Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal; Uttarayan", "1988-01-26": "Republic Day", @@ -648,15 +648,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Gujarat Day; Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-10-31": "Sardar Patel Jayanti", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal; Uttarayan", @@ -665,15 +665,15 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Gujarat Day; Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-10-31": "Sardar Patel Jayanti", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal; Uttarayan", @@ -681,15 +681,15 @@ "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Gujarat Day; Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-10-31": "Sardar Patel Jayanti", "1990-12-25": "Christmas Day", @@ -698,272 +698,272 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Gujarat Day; Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-10-31": "Sardar Patel Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal; Uttarayan", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Gujarat Day; Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-10-31": "Sardar Patel Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal; Uttarayan", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Gujarat Day; Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-10-31": "Sardar Patel Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal; Uttarayan", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Gujarat Day; Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-10-31": "Sardar Patel Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal; Uttarayan", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Gujarat Day; Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-10-31": "Sardar Patel Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal; Uttarayan", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Gujarat Day; Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-10-31": "Sardar Patel Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal; Uttarayan", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Gujarat Day; Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-10-31": "Sardar Patel Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal; Uttarayan", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Gujarat Day; Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-10-31": "Sardar Patel Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal; Uttarayan", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Gujarat Day; Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-10-31": "Sardar Patel Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal; Uttarayan", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Gujarat Day; Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-10-31": "Sardar Patel Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal; Uttarayan", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Gujarat Day; Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-10-31": "Sardar Patel Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal; Uttarayan", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Gujarat Day; Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-10-31": "Sardar Patel Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal; Uttarayan", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Gujarat Day; Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", "2003-10-31": "Sardar Patel Jayanti", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal; Uttarayan", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Gujarat Day; Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Gujarat Day; Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-10-31": "Sardar Patel Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal; Uttarayan", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Gujarat Day; Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-10-31": "Sardar Patel Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal; Uttarayan", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Gujarat Day; Labour Day", @@ -971,17 +971,17 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-10-31": "Sardar Patel Jayanti", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal; Uttarayan", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -989,35 +989,35 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-10-31": "Sardar Patel Jayanti", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal; Uttarayan", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Gujarat Day; Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", "2008-10-31": "Sardar Patel Jayanti", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal; Uttarayan", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1025,18 +1025,18 @@ "2009-05-01": "Gujarat Day; Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", "2009-10-31": "Sardar Patel Jayanti", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal; Uttarayan", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1044,18 +1044,18 @@ "2010-05-01": "Gujarat Day; Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-10-31": "Sardar Patel Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal; Uttarayan", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1063,18 +1063,18 @@ "2011-05-01": "Gujarat Day; Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", "2011-10-31": "Sardar Patel Jayanti", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal; Uttarayan", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1082,17 +1082,17 @@ "2012-05-01": "Gujarat Day; Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-10-31": "Sardar Patel Jayanti", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal; Uttarayan", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1100,17 +1100,17 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Gujarat Day; Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-10-31": "Sardar Patel Jayanti", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal; Uttarayan", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1119,17 +1119,17 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Gujarat Day; Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", "2014-10-31": "Sardar Patel Jayanti", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal; Uttarayan", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1138,16 +1138,16 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Gujarat Day; Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-10-31": "Sardar Patel Jayanti", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal; Uttarayan", "2016-01-26": "Republic Day", @@ -1157,16 +1157,16 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Gujarat Day; Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", "2016-10-31": "Sardar Patel Jayanti", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal; Uttarayan", "2017-01-26": "Republic Day", @@ -1176,16 +1176,16 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Gujarat Day; Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", "2017-10-31": "Sardar Patel Jayanti", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal; Uttarayan", "2018-01-26": "Republic Day", @@ -1195,16 +1195,16 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Gujarat Day; Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-10-31": "Sardar Patel Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal; Uttarayan", "2019-01-26": "Republic Day", @@ -1213,17 +1213,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Gujarat Day; Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", "2019-10-31": "Sardar Patel Jayanti", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal; Uttarayan", "2020-01-26": "Republic Day", @@ -1232,15 +1232,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Gujarat Day; Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-10-31": "Sardar Patel Jayanti", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", @@ -1251,15 +1251,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Gujarat Day; Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-10-31": "Sardar Patel Jayanti", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", @@ -1270,15 +1270,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Gujarat Day; Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-10-31": "Sardar Patel Jayanti", "2022-12-25": "Christmas Day", @@ -1288,15 +1288,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Gujarat Day; Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-10-31": "Sardar Patel Jayanti", "2023-11-12": "Diwali", @@ -1307,15 +1307,15 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Gujarat Day; Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-10-31": "Sardar Patel Jayanti", "2024-11-01": "Diwali", @@ -1323,18 +1323,18 @@ "2025-01-14": "Makar Sankranti / Pongal; Uttarayan", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Gujarat Day; Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-10-31": "Sardar Patel Jayanti", @@ -1342,35 +1342,35 @@ "2026-01-14": "Makar Sankranti / Pongal; Uttarayan", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Gujarat Day; Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-10-31": "Sardar Patel Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal; Uttarayan", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Gujarat Day; Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", @@ -1378,18 +1378,18 @@ "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal; Uttarayan", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Gujarat Day; Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", @@ -1397,18 +1397,18 @@ "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal; Uttarayan", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Gujarat Day; Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-10-31": "Sardar Patel Jayanti", @@ -1416,146 +1416,146 @@ "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal; Uttarayan", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Gujarat Day; Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-10-31": "Sardar Patel Jayanti", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal; Uttarayan", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Gujarat Day; Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-10-31": "Sardar Patel Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal; Uttarayan", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal; Uttarayan", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Gujarat Day; Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-10-31": "Sardar Patel Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal; Uttarayan", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Gujarat Day; Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", "2033-10-31": "Sardar Patel Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal; Uttarayan", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Gujarat Day; Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", "2034-10-31": "Sardar Patel Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal; Uttarayan", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Gujarat Day; Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", "2035-10-31": "Sardar Patel Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal; Uttarayan", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Gujarat Day; Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", "2036-10-31": "Sardar Patel Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal; Uttarayan", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Gujarat Day; Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", "2037-10-31": "Sardar Patel Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal; Uttarayan", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1563,147 +1563,147 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-10-31": "Sardar Patel Jayanti", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal; Uttarayan", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Gujarat Day; Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-10-31": "Sardar Patel Jayanti", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal; Uttarayan", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Gujarat Day; Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", "2040-10-31": "Sardar Patel Jayanti", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal; Uttarayan", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Gujarat Day; Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", "2041-10-31": "Sardar Patel Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal; Uttarayan", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Gujarat Day; Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", "2042-10-31": "Sardar Patel Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal; Uttarayan", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Gujarat Day; Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", "2043-10-31": "Sardar Patel Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal; Uttarayan", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Gujarat Day; Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated); Sardar Patel Jayanti", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated); Sardar Patel Jayanti", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal; Uttarayan", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Gujarat Day; Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-10-31": "Sardar Patel Jayanti", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal; Uttarayan", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Gujarat Day; Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-10-31": "Sardar Patel Jayanti", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal; Uttarayan", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1711,16 +1711,16 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Gujarat Day; Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-10-31": "Sardar Patel Jayanti", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal; Uttarayan", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1728,15 +1728,15 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Gujarat Day; Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", "2048-10-31": "Sardar Patel Jayanti", - "2048-12-18": "Mawlid* (*estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal; Uttarayan", "2049-01-26": "Republic Day", @@ -1745,15 +1745,15 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Gujarat Day; Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", "2049-10-31": "Sardar Patel Jayanti", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal; Uttarayan", "2050-01-26": "Republic Day", @@ -1762,14 +1762,14 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Gujarat Day; Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", "2050-10-31": "Sardar Patel Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_HP.json b/snapshots/countries/IN_HP.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_HP.json +++ b/snapshots/countries/IN_HP.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_HR.json b/snapshots/countries/IN_HR.json index 1133b3356..a4da11cde 100644 --- a/snapshots/countries/IN_HR.json +++ b/snapshots/countries/IN_HR.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -8,15 +8,15 @@ "1950-04-14": "Dr. B. R. Ambedkar's Jayanti", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", "1950-11-01": "Haryana Foundation Day", - "1950-12-22": "Mawlid* (*estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -26,15 +26,15 @@ "1951-04-14": "Dr. B. R. Ambedkar's Jayanti", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", "1951-11-01": "Haryana Foundation Day", - "1951-12-11": "Mawlid* (*estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -44,15 +44,15 @@ "1952-04-14": "Dr. B. R. Ambedkar's Jayanti", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", "1952-11-01": "Haryana Foundation Day", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -62,15 +62,15 @@ "1953-04-14": "Dr. B. R. Ambedkar's Jayanti", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", "1953-11-01": "Haryana Foundation Day", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -79,16 +79,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", "1954-11-01": "Haryana Foundation Day", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -97,15 +97,15 @@ "1955-04-10": "Easter Sunday", "1955-04-14": "Dr. B. R. Ambedkar's Jayanti", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-11-01": "Haryana Foundation Day", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", @@ -115,15 +115,15 @@ "1956-04-01": "Easter Sunday", "1956-04-14": "Dr. B. R. Ambedkar's Jayanti", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-11-01": "Haryana Foundation Day", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", @@ -131,15 +131,15 @@ "1957-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-11-01": "Haryana Foundation Day", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", @@ -148,15 +148,15 @@ "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-11-01": "Haryana Foundation Day", "1958-12-25": "Christmas Day", @@ -165,271 +165,271 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-11-01": "Haryana Foundation Day", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-11-01": "Haryana Foundation Day", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-04-14": "Dr. B. R. Ambedkar's Jayanti", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-11-01": "Haryana Foundation Day", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-11-01": "Haryana Foundation Day", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-11-01": "Haryana Foundation Day", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-11-01": "Haryana Foundation Day", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-11-01": "Haryana Foundation Day", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-11-01": "Haryana Foundation Day", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-11-01": "Haryana Foundation Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", "1968-11-01": "Haryana Foundation Day", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-04-14": "Dr. B. R. Ambedkar's Jayanti", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", "1969-11-01": "Haryana Foundation Day", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-04-14": "Dr. B. R. Ambedkar's Jayanti", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", "1970-11-01": "Haryana Foundation Day", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-14": "Dr. B. R. Ambedkar's Jayanti", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", "1971-11-01": "Haryana Foundation Day", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", "1972-11-01": "Haryana Foundation Day", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-11-01": "Haryana Foundation Day", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", @@ -437,16 +437,16 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", "1974-11-01": "Haryana Foundation Day", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -454,16 +454,16 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", "1975-11-01": "Haryana Foundation Day", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti", "1976-04-16": "Good Friday", @@ -471,17 +471,17 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", "1976-11-01": "Haryana Foundation Day", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -489,17 +489,17 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", "1977-11-01": "Haryana Foundation Day", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -507,17 +507,17 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", "1978-11-01": "Haryana Foundation Day", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -525,33 +525,33 @@ "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated); Haryana Foundation Day", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated); Haryana Foundation Day", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-14": "Dr. B. R. Ambedkar's Jayanti", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-11-01": "Haryana Foundation Day", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -559,16 +559,16 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-11-01": "Haryana Foundation Day", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -577,16 +577,16 @@ "1982-04-14": "Dr. B. R. Ambedkar's Jayanti", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-11-01": "Haryana Foundation Day", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -595,15 +595,15 @@ "1983-04-14": "Dr. B. R. Ambedkar's Jayanti", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", "1983-11-01": "Haryana Foundation Day", - "1983-12-16": "Mawlid* (*estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -613,15 +613,15 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", "1984-11-01": "Haryana Foundation Day", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -631,15 +631,15 @@ "1985-04-14": "Dr. B. R. Ambedkar's Jayanti", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", "1985-11-01": "Haryana Foundation Day", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -649,14 +649,14 @@ "1986-04-14": "Dr. B. R. Ambedkar's Jayanti", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", "1986-11-01": "Haryana Foundation Day", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -665,16 +665,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", "1987-11-01": "Haryana Foundation Day", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -683,15 +683,15 @@ "1988-04-03": "Easter Sunday", "1988-04-14": "Dr. B. R. Ambedkar's Jayanti", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-11-01": "Haryana Foundation Day", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", @@ -701,15 +701,15 @@ "1989-03-26": "Easter Sunday", "1989-04-14": "Dr. B. R. Ambedkar's Jayanti", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-11-01": "Haryana Foundation Day", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", @@ -718,15 +718,15 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-11-01": "Haryana Foundation Day", "1990-12-25": "Christmas Day", @@ -736,284 +736,284 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-11-01": "Haryana Foundation Day", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-11-01": "Haryana Foundation Day", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-14": "Dr. B. R. Ambedkar's Jayanti", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-11-01": "Haryana Foundation Day", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-14": "Dr. B. R. Ambedkar's Jayanti", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-11-01": "Haryana Foundation Day", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-11-01": "Haryana Foundation Day", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-11-01": "Haryana Foundation Day", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-11-01": "Haryana Foundation Day", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-11-01": "Haryana Foundation Day", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-11-01": "Haryana Foundation Day", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-11-01": "Haryana Foundation Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-01": "Haryana Foundation Day", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-14": "Dr. B. R. Ambedkar's Jayanti", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-01": "Haryana Foundation Day", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-14": "Dr. B. R. Ambedkar's Jayanti", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", "2003-11-01": "Haryana Foundation Day", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-01": "Haryana Foundation Day", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali; Haryana Foundation Day", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -1021,17 +1021,17 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-11-01": "Haryana Foundation Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -1040,18 +1040,18 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-01": "Haryana Foundation Day", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1059,17 +1059,17 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", "2008-11-01": "Haryana Foundation Day", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1078,18 +1078,18 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", "2009-11-01": "Haryana Foundation Day", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1098,18 +1098,18 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-01": "Haryana Foundation Day", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti", "2011-04-17": "Palm Sunday", @@ -1118,18 +1118,18 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", "2011-11-01": "Haryana Foundation Day", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1138,17 +1138,17 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-01": "Haryana Foundation Day", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1157,17 +1157,17 @@ "2013-04-14": "Dr. B. R. Ambedkar's Jayanti", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-01": "Haryana Foundation Day", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1177,17 +1177,17 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", "2014-11-01": "Haryana Foundation Day", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1197,16 +1197,16 @@ "2015-04-14": "Dr. B. R. Ambedkar's Jayanti", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-01": "Haryana Foundation Day", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1217,16 +1217,16 @@ "2016-04-14": "Dr. B. R. Ambedkar's Jayanti", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", "2016-11-01": "Haryana Foundation Day", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1236,16 +1236,16 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", "2017-11-01": "Haryana Foundation Day", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1256,16 +1256,16 @@ "2018-04-14": "Dr. B. R. Ambedkar's Jayanti", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-01": "Haryana Foundation Day", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1274,17 +1274,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", "2019-11-01": "Haryana Foundation Day", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1294,15 +1294,15 @@ "2020-04-12": "Easter Sunday", "2020-04-14": "Dr. B. R. Ambedkar's Jayanti", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-01": "Haryana Foundation Day", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", @@ -1314,15 +1314,15 @@ "2021-04-04": "Easter Sunday", "2021-04-14": "Dr. B. R. Ambedkar's Jayanti", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-01": "Haryana Foundation Day", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", @@ -1334,15 +1334,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-11-01": "Haryana Foundation Day", "2022-12-25": "Christmas Day", @@ -1353,15 +1353,15 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-01": "Haryana Foundation Day", "2023-11-12": "Diwali", @@ -1372,35 +1372,35 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali; Haryana Foundation Day", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-11-01": "Haryana Foundation Day", @@ -1408,37 +1408,37 @@ "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-14": "Dr. B. R. Ambedkar's Jayanti", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-01": "Haryana Foundation Day", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-14": "Dr. B. R. Ambedkar's Jayanti", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", @@ -1446,18 +1446,18 @@ "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", @@ -1465,19 +1465,19 @@ "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-01": "Haryana Foundation Day", @@ -1485,154 +1485,154 @@ "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-11-01": "Haryana Foundation Day", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-11-01": "Haryana Foundation Day", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-11-01": "Haryana Foundation Day", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", "2033-11-01": "Haryana Foundation Day", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-14": "Dr. B. R. Ambedkar's Jayanti", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", "2034-11-01": "Haryana Foundation Day", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-14": "Dr. B. R. Ambedkar's Jayanti", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", "2035-11-01": "Haryana Foundation Day", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Dr. B. R. Ambedkar's Jayanti", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", "2036-11-01": "Haryana Foundation Day", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", "2037-11-01": "Haryana Foundation Day", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1640,17 +1640,17 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-11-01": "Haryana Foundation Day", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1658,16 +1658,16 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-11-01": "Haryana Foundation Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1675,33 +1675,33 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", "2040-11-01": "Haryana Foundation Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", "2041-11-01": "Haryana Foundation Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1709,17 +1709,17 @@ "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", "2042-11-01": "Haryana Foundation Day", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1727,17 +1727,17 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", "2043-11-01": "Haryana Foundation Day", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti", "2044-04-15": "Good Friday", @@ -1745,32 +1745,32 @@ "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated); Haryana Foundation Day", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated); Haryana Foundation Day", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-14": "Dr. B. R. Ambedkar's Jayanti", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-11-01": "Haryana Foundation Day", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1778,16 +1778,16 @@ "2046-04-14": "Dr. B. R. Ambedkar's Jayanti", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-11-01": "Haryana Foundation Day", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1795,16 +1795,16 @@ "2047-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-11-01": "Haryana Foundation Day", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1813,15 +1813,15 @@ "2048-04-14": "Dr. B. R. Ambedkar's Jayanti", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", "2048-11-01": "Haryana Foundation Day", - "2048-12-18": "Mawlid* (*estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1831,15 +1831,15 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", "2049-11-01": "Haryana Foundation Day", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1849,14 +1849,14 @@ "2050-04-14": "Dr. B. R. Ambedkar's Jayanti", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", "2050-11-01": "Haryana Foundation Day", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_JH.json b/snapshots/countries/IN_JH.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_JH.json +++ b/snapshots/countries/IN_JH.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_JK.json b/snapshots/countries/IN_JK.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_JK.json +++ b/snapshots/countries/IN_JK.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_KA.json b/snapshots/countries/IN_KA.json index 276aa70ae..d2ee39ff5 100644 --- a/snapshots/countries/IN_KA.json +++ b/snapshots/countries/IN_KA.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,15 +7,15 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", "1950-11-01": "Karnataka Rajyotsava", - "1950-12-22": "Mawlid* (*estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -24,15 +24,15 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", "1951-11-01": "Karnataka Rajyotsava", - "1951-12-11": "Mawlid* (*estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -41,15 +41,15 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", "1952-11-01": "Karnataka Rajyotsava", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -58,15 +58,15 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", "1953-11-01": "Karnataka Rajyotsava", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -74,16 +74,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", "1954-11-01": "Karnataka Rajyotsava", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -91,15 +91,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-11-01": "Karnataka Rajyotsava", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", @@ -108,15 +108,15 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-11-01": "Karnataka Rajyotsava", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", @@ -124,15 +124,15 @@ "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-11-01": "Karnataka Rajyotsava", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", @@ -140,15 +140,15 @@ "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-11-01": "Karnataka Rajyotsava", "1958-12-25": "Christmas Day", @@ -157,258 +157,258 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-11-01": "Karnataka Rajyotsava", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-11-01": "Karnataka Rajyotsava", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-11-01": "Karnataka Rajyotsava", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-11-01": "Karnataka Rajyotsava", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-11-01": "Karnataka Rajyotsava", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-11-01": "Karnataka Rajyotsava", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-11-01": "Karnataka Rajyotsava", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-11-01": "Karnataka Rajyotsava", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-11-01": "Karnataka Rajyotsava", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", "1968-11-01": "Karnataka Rajyotsava", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", "1969-11-01": "Karnataka Rajyotsava", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", "1970-11-01": "Karnataka Rajyotsava", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", "1971-11-01": "Karnataka Rajyotsava", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", "1972-11-01": "Karnataka Rajyotsava", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-11-01": "Karnataka Rajyotsava", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -416,131 +416,131 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", "1974-11-01": "Karnataka Rajyotsava", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", "1975-11-01": "Karnataka Rajyotsava", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", "1976-11-01": "Karnataka Rajyotsava", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", "1977-11-01": "Karnataka Rajyotsava", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", "1978-11-01": "Karnataka Rajyotsava", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated); Karnataka Rajyotsava", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated); Karnataka Rajyotsava", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-11-01": "Karnataka Rajyotsava", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-11-01": "Karnataka Rajyotsava", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -548,16 +548,16 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-11-01": "Karnataka Rajyotsava", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -565,15 +565,15 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", "1983-11-01": "Karnataka Rajyotsava", - "1983-12-16": "Mawlid* (*estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -582,15 +582,15 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", "1984-11-01": "Karnataka Rajyotsava", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -599,15 +599,15 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", "1985-11-01": "Karnataka Rajyotsava", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -616,14 +616,14 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", "1986-11-01": "Karnataka Rajyotsava", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -631,16 +631,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", "1987-11-01": "Karnataka Rajyotsava", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -648,15 +648,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-11-01": "Karnataka Rajyotsava", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", @@ -665,15 +665,15 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-11-01": "Karnataka Rajyotsava", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", @@ -681,15 +681,15 @@ "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-11-01": "Karnataka Rajyotsava", "1990-12-25": "Christmas Day", @@ -698,271 +698,271 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-11-01": "Karnataka Rajyotsava", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-11-01": "Karnataka Rajyotsava", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-11-01": "Karnataka Rajyotsava", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-11-01": "Karnataka Rajyotsava", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-11-01": "Karnataka Rajyotsava", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-11-01": "Karnataka Rajyotsava", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-11-01": "Karnataka Rajyotsava", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-11-01": "Karnataka Rajyotsava", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-11-01": "Karnataka Rajyotsava", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-11-01": "Karnataka Rajyotsava", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-01": "Karnataka Rajyotsava", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-01": "Karnataka Rajyotsava", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", "2003-11-01": "Karnataka Rajyotsava", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-01": "Karnataka Rajyotsava", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali; Karnataka Rajyotsava", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -970,17 +970,17 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-11-01": "Karnataka Rajyotsava", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -988,35 +988,35 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-01": "Karnataka Rajyotsava", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", "2008-11-01": "Karnataka Rajyotsava", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1024,18 +1024,18 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", "2009-11-01": "Karnataka Rajyotsava", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1043,18 +1043,18 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-01": "Karnataka Rajyotsava", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1062,18 +1062,18 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", "2011-11-01": "Karnataka Rajyotsava", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1081,17 +1081,17 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-01": "Karnataka Rajyotsava", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1099,17 +1099,17 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-01": "Karnataka Rajyotsava", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1118,17 +1118,17 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", "2014-11-01": "Karnataka Rajyotsava", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1137,16 +1137,16 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-01": "Karnataka Rajyotsava", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1156,16 +1156,16 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", "2016-11-01": "Karnataka Rajyotsava", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1175,16 +1175,16 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", "2017-11-01": "Karnataka Rajyotsava", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1194,16 +1194,16 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-01": "Karnataka Rajyotsava", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1212,17 +1212,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", "2019-11-01": "Karnataka Rajyotsava", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1231,15 +1231,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-01": "Karnataka Rajyotsava", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", @@ -1250,15 +1250,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-01": "Karnataka Rajyotsava", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", @@ -1269,15 +1269,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-11-01": "Karnataka Rajyotsava", "2022-12-25": "Christmas Day", @@ -1287,15 +1287,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-01": "Karnataka Rajyotsava", "2023-11-12": "Diwali", @@ -1306,33 +1306,33 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali; Karnataka Rajyotsava", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-11-01": "Karnataka Rajyotsava", @@ -1340,35 +1340,35 @@ "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-01": "Karnataka Rajyotsava", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", @@ -1376,18 +1376,18 @@ "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", @@ -1395,18 +1395,18 @@ "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-01": "Karnataka Rajyotsava", @@ -1414,146 +1414,146 @@ "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-11-01": "Karnataka Rajyotsava", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-11-01": "Karnataka Rajyotsava", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-11-01": "Karnataka Rajyotsava", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", "2033-11-01": "Karnataka Rajyotsava", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", "2034-11-01": "Karnataka Rajyotsava", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", "2035-11-01": "Karnataka Rajyotsava", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", "2036-11-01": "Karnataka Rajyotsava", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", "2037-11-01": "Karnataka Rajyotsava", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1561,147 +1561,147 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-11-01": "Karnataka Rajyotsava", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-11-01": "Karnataka Rajyotsava", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", "2040-11-01": "Karnataka Rajyotsava", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", "2041-11-01": "Karnataka Rajyotsava", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", "2042-11-01": "Karnataka Rajyotsava", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", "2043-11-01": "Karnataka Rajyotsava", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated); Karnataka Rajyotsava", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated); Karnataka Rajyotsava", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-11-01": "Karnataka Rajyotsava", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-11-01": "Karnataka Rajyotsava", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1709,16 +1709,16 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-11-01": "Karnataka Rajyotsava", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1726,15 +1726,15 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", "2048-11-01": "Karnataka Rajyotsava", - "2048-12-18": "Mawlid* (*estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1743,15 +1743,15 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", "2049-11-01": "Karnataka Rajyotsava", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1760,14 +1760,14 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", "2050-11-01": "Karnataka Rajyotsava", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_KL.json b/snapshots/countries/IN_KL.json index e2012aed4..1e09b987f 100644 --- a/snapshots/countries/IN_KL.json +++ b/snapshots/countries/IN_KL.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -8,15 +8,15 @@ "1950-04-14": "Dr. B. R. Ambedkar's Jayanti", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", "1950-11-01": "Kerala Foundation Day", - "1950-12-22": "Mawlid* (*estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -26,15 +26,15 @@ "1951-04-14": "Dr. B. R. Ambedkar's Jayanti", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", "1951-11-01": "Kerala Foundation Day", - "1951-12-11": "Mawlid* (*estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -44,15 +44,15 @@ "1952-04-14": "Dr. B. R. Ambedkar's Jayanti", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", "1952-11-01": "Kerala Foundation Day", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -62,15 +62,15 @@ "1953-04-14": "Dr. B. R. Ambedkar's Jayanti", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", "1953-11-01": "Kerala Foundation Day", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -79,16 +79,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", "1954-11-01": "Kerala Foundation Day", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -97,15 +97,15 @@ "1955-04-10": "Easter Sunday", "1955-04-14": "Dr. B. R. Ambedkar's Jayanti", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-11-01": "Kerala Foundation Day", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", @@ -115,15 +115,15 @@ "1956-04-01": "Easter Sunday", "1956-04-14": "Dr. B. R. Ambedkar's Jayanti", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-11-01": "Kerala Foundation Day", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", @@ -131,15 +131,15 @@ "1957-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-11-01": "Kerala Foundation Day", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", @@ -148,15 +148,15 @@ "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-11-01": "Kerala Foundation Day", "1958-12-25": "Christmas Day", @@ -165,271 +165,271 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-11-01": "Kerala Foundation Day", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-11-01": "Kerala Foundation Day", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-04-14": "Dr. B. R. Ambedkar's Jayanti", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-11-01": "Kerala Foundation Day", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-11-01": "Kerala Foundation Day", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-11-01": "Kerala Foundation Day", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-11-01": "Kerala Foundation Day", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-11-01": "Kerala Foundation Day", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-11-01": "Kerala Foundation Day", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-11-01": "Kerala Foundation Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", "1968-11-01": "Kerala Foundation Day", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-04-14": "Dr. B. R. Ambedkar's Jayanti", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", "1969-11-01": "Kerala Foundation Day", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-04-14": "Dr. B. R. Ambedkar's Jayanti", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", "1970-11-01": "Kerala Foundation Day", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-14": "Dr. B. R. Ambedkar's Jayanti", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", "1971-11-01": "Kerala Foundation Day", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", "1972-11-01": "Kerala Foundation Day", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-11-01": "Kerala Foundation Day", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", @@ -437,16 +437,16 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", "1974-11-01": "Kerala Foundation Day", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -454,16 +454,16 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", "1975-11-01": "Kerala Foundation Day", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti", "1976-04-16": "Good Friday", @@ -471,17 +471,17 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", "1976-11-01": "Kerala Foundation Day", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -489,17 +489,17 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", "1977-11-01": "Kerala Foundation Day", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -507,17 +507,17 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", "1978-11-01": "Kerala Foundation Day", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -525,33 +525,33 @@ "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated); Kerala Foundation Day", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated); Kerala Foundation Day", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-14": "Dr. B. R. Ambedkar's Jayanti", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-11-01": "Kerala Foundation Day", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -559,16 +559,16 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-11-01": "Kerala Foundation Day", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -577,16 +577,16 @@ "1982-04-14": "Dr. B. R. Ambedkar's Jayanti", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-11-01": "Kerala Foundation Day", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -595,15 +595,15 @@ "1983-04-14": "Dr. B. R. Ambedkar's Jayanti", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", "1983-11-01": "Kerala Foundation Day", - "1983-12-16": "Mawlid* (*estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -613,15 +613,15 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", "1984-11-01": "Kerala Foundation Day", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -631,15 +631,15 @@ "1985-04-14": "Dr. B. R. Ambedkar's Jayanti", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", "1985-11-01": "Kerala Foundation Day", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -649,14 +649,14 @@ "1986-04-14": "Dr. B. R. Ambedkar's Jayanti", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", "1986-11-01": "Kerala Foundation Day", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -665,16 +665,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", "1987-11-01": "Kerala Foundation Day", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -683,15 +683,15 @@ "1988-04-03": "Easter Sunday", "1988-04-14": "Dr. B. R. Ambedkar's Jayanti", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-11-01": "Kerala Foundation Day", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", @@ -701,15 +701,15 @@ "1989-03-26": "Easter Sunday", "1989-04-14": "Dr. B. R. Ambedkar's Jayanti", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-11-01": "Kerala Foundation Day", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", @@ -718,15 +718,15 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-11-01": "Kerala Foundation Day", "1990-12-25": "Christmas Day", @@ -736,284 +736,284 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-11-01": "Kerala Foundation Day", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-11-01": "Kerala Foundation Day", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-14": "Dr. B. R. Ambedkar's Jayanti", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-11-01": "Kerala Foundation Day", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-14": "Dr. B. R. Ambedkar's Jayanti", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-11-01": "Kerala Foundation Day", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-11-01": "Kerala Foundation Day", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-11-01": "Kerala Foundation Day", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-11-01": "Kerala Foundation Day", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-11-01": "Kerala Foundation Day", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-11-01": "Kerala Foundation Day", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-11-01": "Kerala Foundation Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-01": "Kerala Foundation Day", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-14": "Dr. B. R. Ambedkar's Jayanti", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-01": "Kerala Foundation Day", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-14": "Dr. B. R. Ambedkar's Jayanti", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", "2003-11-01": "Kerala Foundation Day", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-01": "Kerala Foundation Day", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali; Kerala Foundation Day", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -1021,17 +1021,17 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-11-01": "Kerala Foundation Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -1040,18 +1040,18 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-01": "Kerala Foundation Day", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1059,17 +1059,17 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", "2008-11-01": "Kerala Foundation Day", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1078,18 +1078,18 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", "2009-11-01": "Kerala Foundation Day", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1098,18 +1098,18 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-01": "Kerala Foundation Day", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti", "2011-04-17": "Palm Sunday", @@ -1118,18 +1118,18 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", "2011-11-01": "Kerala Foundation Day", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1138,17 +1138,17 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-01": "Kerala Foundation Day", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1157,17 +1157,17 @@ "2013-04-14": "Dr. B. R. Ambedkar's Jayanti", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-01": "Kerala Foundation Day", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1177,17 +1177,17 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", "2014-11-01": "Kerala Foundation Day", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1197,16 +1197,16 @@ "2015-04-14": "Dr. B. R. Ambedkar's Jayanti", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-01": "Kerala Foundation Day", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1217,16 +1217,16 @@ "2016-04-14": "Dr. B. R. Ambedkar's Jayanti", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", "2016-11-01": "Kerala Foundation Day", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1236,16 +1236,16 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", "2017-11-01": "Kerala Foundation Day", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1256,16 +1256,16 @@ "2018-04-14": "Dr. B. R. Ambedkar's Jayanti", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-01": "Kerala Foundation Day", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1274,17 +1274,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", "2019-11-01": "Kerala Foundation Day", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1294,15 +1294,15 @@ "2020-04-12": "Easter Sunday", "2020-04-14": "Dr. B. R. Ambedkar's Jayanti", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-01": "Kerala Foundation Day", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", @@ -1314,15 +1314,15 @@ "2021-04-04": "Easter Sunday", "2021-04-14": "Dr. B. R. Ambedkar's Jayanti", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-01": "Kerala Foundation Day", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", @@ -1334,15 +1334,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-11-01": "Kerala Foundation Day", "2022-12-25": "Christmas Day", @@ -1353,15 +1353,15 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-01": "Kerala Foundation Day", "2023-11-12": "Diwali", @@ -1372,35 +1372,35 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali; Kerala Foundation Day", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-11-01": "Kerala Foundation Day", @@ -1408,37 +1408,37 @@ "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-14": "Dr. B. R. Ambedkar's Jayanti", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-01": "Kerala Foundation Day", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-14": "Dr. B. R. Ambedkar's Jayanti", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", @@ -1446,18 +1446,18 @@ "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", @@ -1465,19 +1465,19 @@ "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-01": "Kerala Foundation Day", @@ -1485,154 +1485,154 @@ "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-11-01": "Kerala Foundation Day", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-11-01": "Kerala Foundation Day", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-11-01": "Kerala Foundation Day", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", "2033-11-01": "Kerala Foundation Day", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-14": "Dr. B. R. Ambedkar's Jayanti", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", "2034-11-01": "Kerala Foundation Day", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-14": "Dr. B. R. Ambedkar's Jayanti", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", "2035-11-01": "Kerala Foundation Day", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Dr. B. R. Ambedkar's Jayanti", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", "2036-11-01": "Kerala Foundation Day", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", "2037-11-01": "Kerala Foundation Day", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1640,17 +1640,17 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-11-01": "Kerala Foundation Day", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1658,16 +1658,16 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-11-01": "Kerala Foundation Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1675,33 +1675,33 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", "2040-11-01": "Kerala Foundation Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", "2041-11-01": "Kerala Foundation Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1709,17 +1709,17 @@ "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", "2042-11-01": "Kerala Foundation Day", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1727,17 +1727,17 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", "2043-11-01": "Kerala Foundation Day", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti", "2044-04-15": "Good Friday", @@ -1745,32 +1745,32 @@ "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated); Kerala Foundation Day", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated); Kerala Foundation Day", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-14": "Dr. B. R. Ambedkar's Jayanti", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-11-01": "Kerala Foundation Day", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1778,16 +1778,16 @@ "2046-04-14": "Dr. B. R. Ambedkar's Jayanti", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-11-01": "Kerala Foundation Day", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1795,16 +1795,16 @@ "2047-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-11-01": "Kerala Foundation Day", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1813,15 +1813,15 @@ "2048-04-14": "Dr. B. R. Ambedkar's Jayanti", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", "2048-11-01": "Kerala Foundation Day", - "2048-12-18": "Mawlid* (*estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1831,15 +1831,15 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", "2049-11-01": "Kerala Foundation Day", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1849,14 +1849,14 @@ "2050-04-14": "Dr. B. R. Ambedkar's Jayanti", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", "2050-11-01": "Kerala Foundation Day", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_LA.json b/snapshots/countries/IN_LA.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_LA.json +++ b/snapshots/countries/IN_LA.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_LD.json b/snapshots/countries/IN_LD.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_LD.json +++ b/snapshots/countries/IN_LD.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_MH.json b/snapshots/countries/IN_MH.json index 25cd3ab8c..5c18a4589 100644 --- a/snapshots/countries/IN_MH.json +++ b/snapshots/countries/IN_MH.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -8,15 +8,15 @@ "1950-04-14": "Dr. B. R. Ambedkar's Jayanti", "1950-05-01": "Labour Day; Maharashtra Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", "1950-10-15": "Dussehra", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -26,15 +26,15 @@ "1951-04-14": "Dr. B. R. Ambedkar's Jayanti", "1951-05-01": "Labour Day; Maharashtra Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", "1951-10-15": "Dussehra", - "1951-12-11": "Mawlid* (*estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -44,15 +44,15 @@ "1952-04-14": "Dr. B. R. Ambedkar's Jayanti", "1952-05-01": "Labour Day; Maharashtra Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", "1952-10-15": "Dussehra", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -62,15 +62,15 @@ "1953-04-14": "Dr. B. R. Ambedkar's Jayanti", "1953-05-01": "Labour Day; Maharashtra Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", "1953-10-15": "Dussehra", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -79,16 +79,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day; Maharashtra Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", "1954-10-15": "Dussehra", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -97,16 +97,16 @@ "1955-04-10": "Easter Sunday", "1955-04-14": "Dr. B. R. Ambedkar's Jayanti", "1955-05-01": "Labour Day; Maharashtra Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", "1955-10-15": "Dussehra", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -115,31 +115,31 @@ "1956-04-01": "Easter Sunday", "1956-04-14": "Dr. B. R. Ambedkar's Jayanti", "1956-05-01": "Labour Day; Maharashtra Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", "1956-10-15": "Dussehra", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day; Maharashtra Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day; Maharashtra Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-10-15": "Dussehra", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", @@ -148,15 +148,15 @@ "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day; Maharashtra Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-10-15": "Dussehra", "1958-12-25": "Christmas Day", @@ -165,255 +165,255 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti", "1959-05-01": "Labour Day; Maharashtra Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-10-15": "Dussehra", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day; Maharashtra Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-10-15": "Dussehra", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-04-14": "Dr. B. R. Ambedkar's Jayanti", "1961-05-01": "Labour Day; Maharashtra Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-10-15": "Dussehra", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day; Maharashtra Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-10-15": "Dussehra", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1963-05-01": "Labour Day; Maharashtra Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-10-15": "Dussehra", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day; Maharashtra Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-10-15": "Dussehra", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day; Maharashtra Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-10-15": "Dussehra", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day; Maharashtra Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-10-15": "Dussehra", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day; Maharashtra Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-10-15": "Dussehra", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1968-05-01": "Labour Day; Maharashtra Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", "1968-10-15": "Dussehra", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-04-14": "Dr. B. R. Ambedkar's Jayanti", "1969-05-01": "Labour Day; Maharashtra Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", "1969-10-15": "Dussehra", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-04-14": "Dr. B. R. Ambedkar's Jayanti", "1970-05-01": "Labour Day; Maharashtra Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", "1970-10-15": "Dussehra", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-14": "Dr. B. R. Ambedkar's Jayanti", "1971-05-01": "Labour Day; Maharashtra Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", "1971-10-15": "Dussehra", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day; Maharashtra Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", "1972-10-15": "Dussehra", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day; Maharashtra Day", @@ -421,15 +421,15 @@ "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", "1973-10-15": "Dussehra", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", @@ -438,15 +438,15 @@ "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", "1974-10-15": "Dussehra", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -454,16 +454,16 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", "1975-10-15": "Dussehra", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti", "1976-04-16": "Good Friday", @@ -471,17 +471,17 @@ "1976-05-01": "Labour Day; Maharashtra Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", "1976-10-15": "Dussehra", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -489,17 +489,17 @@ "1977-05-01": "Labour Day; Maharashtra Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", "1977-10-15": "Dussehra", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -507,17 +507,17 @@ "1978-05-01": "Labour Day; Maharashtra Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", "1978-10-15": "Dussehra", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -525,34 +525,34 @@ "1979-05-01": "Labour Day; Maharashtra Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", "1979-10-15": "Dussehra", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-14": "Dr. B. R. Ambedkar's Jayanti", "1980-05-01": "Labour Day; Maharashtra Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", "1980-10-15": "Dussehra", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -560,16 +560,16 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day; Maharashtra Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-10-15": "Dussehra", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -578,16 +578,16 @@ "1982-04-14": "Dr. B. R. Ambedkar's Jayanti", "1982-05-01": "Labour Day; Maharashtra Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", "1982-10-15": "Dussehra", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -596,15 +596,15 @@ "1983-04-14": "Dr. B. R. Ambedkar's Jayanti", "1983-05-01": "Labour Day; Maharashtra Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", "1983-10-15": "Dussehra", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -614,15 +614,15 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day; Maharashtra Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", "1984-10-15": "Dussehra", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -632,15 +632,15 @@ "1985-04-14": "Dr. B. R. Ambedkar's Jayanti", "1985-05-01": "Labour Day; Maharashtra Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", "1985-10-15": "Dussehra", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -650,14 +650,14 @@ "1986-04-14": "Dr. B. R. Ambedkar's Jayanti", "1986-05-01": "Labour Day; Maharashtra Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", "1986-10-15": "Dussehra", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -666,16 +666,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day; Maharashtra Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", "1987-10-15": "Dussehra", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -684,16 +684,16 @@ "1988-04-03": "Easter Sunday", "1988-04-14": "Dr. B. R. Ambedkar's Jayanti", "1988-05-01": "Labour Day; Maharashtra Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", "1988-10-15": "Dussehra", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -702,15 +702,15 @@ "1989-03-26": "Easter Sunday", "1989-04-14": "Dr. B. R. Ambedkar's Jayanti", "1989-05-01": "Labour Day; Maharashtra Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-10-15": "Dussehra", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", @@ -719,15 +719,15 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day; Maharashtra Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-10-15": "Dussehra", "1990-12-25": "Christmas Day", @@ -737,285 +737,285 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day; Maharashtra Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-10-15": "Dussehra", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day; Maharashtra Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-10-15": "Dussehra", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-14": "Dr. B. R. Ambedkar's Jayanti", "1993-05-01": "Labour Day; Maharashtra Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-10-15": "Dussehra", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-14": "Dr. B. R. Ambedkar's Jayanti", "1994-05-01": "Labour Day; Maharashtra Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-10-15": "Dussehra", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day; Maharashtra Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-10-15": "Dussehra", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day; Maharashtra Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-10-15": "Dussehra", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day; Maharashtra Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-10-15": "Dussehra", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti", "1998-05-01": "Labour Day; Maharashtra Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-10-15": "Dussehra", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day; Maharashtra Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-10-15": "Dussehra", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day; Maharashtra Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-10-15": "Dussehra", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day; Maharashtra Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-10-15": "Dussehra", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-14": "Dr. B. R. Ambedkar's Jayanti", "2002-05-01": "Labour Day; Maharashtra Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-10-15": "Dussehra", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-14": "Dr. B. R. Ambedkar's Jayanti", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day; Maharashtra Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-15": "Dussehra", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2004-05-01": "Labour Day; Maharashtra Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Maharashtra Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-10-15": "Dussehra", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day; Maharashtra Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-10-15": "Dussehra", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day; Maharashtra Day", @@ -1024,16 +1024,16 @@ "2006-10-02": "Gandhi Jayanti", "2006-10-15": "Dussehra", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -1042,18 +1042,18 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-10-15": "Dussehra", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1061,17 +1061,17 @@ "2008-05-01": "Labour Day; Maharashtra Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-15": "Dussehra", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1080,18 +1080,18 @@ "2009-05-01": "Labour Day; Maharashtra Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-15": "Dussehra", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1100,18 +1100,18 @@ "2010-05-01": "Labour Day; Maharashtra Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-10-15": "Dussehra", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti", "2011-04-17": "Palm Sunday", @@ -1120,18 +1120,18 @@ "2011-05-01": "Labour Day; Maharashtra Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-15": "Dussehra", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1140,17 +1140,17 @@ "2012-05-01": "Labour Day; Maharashtra Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", "2012-10-15": "Dussehra", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1159,16 +1159,16 @@ "2013-04-14": "Dr. B. R. Ambedkar's Jayanti", "2013-05-01": "Labour Day; Maharashtra Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Dussehra; Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Dussehra; Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1178,17 +1178,17 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day; Maharashtra Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-15": "Dussehra", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1198,16 +1198,16 @@ "2015-04-14": "Dr. B. R. Ambedkar's Jayanti", "2015-05-01": "Labour Day; Maharashtra Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", "2015-10-15": "Dussehra", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1218,16 +1218,16 @@ "2016-04-14": "Dr. B. R. Ambedkar's Jayanti", "2016-05-01": "Labour Day; Maharashtra Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-15": "Dussehra", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1237,16 +1237,16 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day; Maharashtra Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-15": "Dussehra", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1257,16 +1257,16 @@ "2018-04-14": "Dr. B. R. Ambedkar's Jayanti", "2018-05-01": "Labour Day; Maharashtra Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-10-15": "Dussehra", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1275,17 +1275,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day; Maharashtra Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-15": "Dussehra", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1295,16 +1295,16 @@ "2020-04-12": "Easter Sunday", "2020-04-14": "Dr. B. R. Ambedkar's Jayanti", "2020-05-01": "Labour Day; Maharashtra Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", "2020-10-15": "Dussehra", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1315,16 +1315,16 @@ "2021-04-04": "Easter Sunday", "2021-04-14": "Dr. B. R. Ambedkar's Jayanti", "2021-05-01": "Labour Day; Maharashtra Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", "2021-10-15": "Dussehra", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1335,15 +1335,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day; Maharashtra Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-15": "Dussehra", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", @@ -1354,15 +1354,15 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day; Maharashtra Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-10-15": "Dussehra", "2023-11-12": "Diwali", @@ -1373,16 +1373,16 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti", "2024-05-01": "Labour Day; Maharashtra Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-10-15": "Dussehra", "2024-11-01": "Diwali", @@ -1390,19 +1390,19 @@ "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day; Maharashtra Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-15": "Dussehra", "2025-10-20": "Diwali", @@ -1410,37 +1410,37 @@ "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-14": "Dr. B. R. Ambedkar's Jayanti", "2026-05-01": "Labour Day; Maharashtra Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-10-15": "Dussehra", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-14": "Dr. B. R. Ambedkar's Jayanti", "2027-05-01": "Labour Day; Maharashtra Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-15": "Dussehra", @@ -1448,18 +1448,18 @@ "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day; Maharashtra Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-15": "Dussehra", @@ -1467,19 +1467,19 @@ "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day; Maharashtra Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-10-15": "Dussehra", @@ -1487,154 +1487,154 @@ "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day; Maharashtra Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-15": "Dussehra", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti", "2031-05-01": "Labour Day; Maharashtra Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-10-15": "Dussehra", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day; Maharashtra Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-10-15": "Dussehra", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day; Maharashtra Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", "2033-10-15": "Dussehra", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-14": "Dr. B. R. Ambedkar's Jayanti", "2034-05-01": "Labour Day; Maharashtra Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", "2034-10-15": "Dussehra", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-14": "Dr. B. R. Ambedkar's Jayanti", "2035-05-01": "Labour Day; Maharashtra Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", "2035-10-15": "Dussehra", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Dr. B. R. Ambedkar's Jayanti", "2036-05-01": "Labour Day; Maharashtra Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", "2036-10-15": "Dussehra", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day; Maharashtra Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", "2037-10-15": "Dussehra", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1643,16 +1643,16 @@ "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", "2038-10-15": "Dussehra", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1661,15 +1661,15 @@ "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", "2039-10-15": "Dussehra", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1677,33 +1677,33 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", "2040-10-15": "Dussehra", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day; Maharashtra Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", "2041-10-15": "Dussehra", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1711,17 +1711,17 @@ "2042-05-01": "Labour Day; Maharashtra Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", "2042-10-15": "Dussehra", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1729,17 +1729,17 @@ "2043-05-01": "Labour Day; Maharashtra Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", "2043-10-15": "Dussehra", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti", "2044-04-15": "Good Friday", @@ -1747,33 +1747,33 @@ "2044-05-01": "Labour Day; Maharashtra Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", "2044-10-15": "Dussehra", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-14": "Dr. B. R. Ambedkar's Jayanti", "2045-05-01": "Labour Day; Maharashtra Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", "2045-10-15": "Dussehra", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1781,16 +1781,16 @@ "2046-04-14": "Dr. B. R. Ambedkar's Jayanti", "2046-05-01": "Labour Day; Maharashtra Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-10-15": "Dussehra", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1798,16 +1798,16 @@ "2047-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "2047-05-01": "Labour Day; Maharashtra Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", "2047-10-15": "Dussehra", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1816,15 +1816,15 @@ "2048-04-14": "Dr. B. R. Ambedkar's Jayanti", "2048-05-01": "Labour Day; Maharashtra Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", "2048-10-15": "Dussehra", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1834,15 +1834,15 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day; Maharashtra Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", "2049-10-15": "Dussehra", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1852,14 +1852,14 @@ "2050-04-14": "Dr. B. R. Ambedkar's Jayanti", "2050-05-01": "Labour Day; Maharashtra Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", "2050-10-15": "Dussehra", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_ML.json b/snapshots/countries/IN_ML.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_ML.json +++ b/snapshots/countries/IN_ML.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_MN.json b/snapshots/countries/IN_MN.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_MN.json +++ b/snapshots/countries/IN_MN.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_MP.json b/snapshots/countries/IN_MP.json index 0beb3fc40..d7bc82016 100644 --- a/snapshots/countries/IN_MP.json +++ b/snapshots/countries/IN_MP.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,15 +7,15 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", "1950-11-01": "Madhya Pradesh Foundation Day", - "1950-12-22": "Mawlid* (*estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -24,15 +24,15 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", "1951-11-01": "Madhya Pradesh Foundation Day", - "1951-12-11": "Mawlid* (*estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -41,15 +41,15 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", "1952-11-01": "Madhya Pradesh Foundation Day", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -58,15 +58,15 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", "1953-11-01": "Madhya Pradesh Foundation Day", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -74,16 +74,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", "1954-11-01": "Madhya Pradesh Foundation Day", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -91,15 +91,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-11-01": "Madhya Pradesh Foundation Day", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", @@ -108,15 +108,15 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-11-01": "Madhya Pradesh Foundation Day", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", @@ -124,15 +124,15 @@ "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-11-01": "Madhya Pradesh Foundation Day", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", @@ -140,15 +140,15 @@ "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-11-01": "Madhya Pradesh Foundation Day", "1958-12-25": "Christmas Day", @@ -157,258 +157,258 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-11-01": "Madhya Pradesh Foundation Day", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-11-01": "Madhya Pradesh Foundation Day", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-11-01": "Madhya Pradesh Foundation Day", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-11-01": "Madhya Pradesh Foundation Day", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-11-01": "Madhya Pradesh Foundation Day", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-11-01": "Madhya Pradesh Foundation Day", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-11-01": "Madhya Pradesh Foundation Day", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-11-01": "Madhya Pradesh Foundation Day", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-11-01": "Madhya Pradesh Foundation Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", "1968-11-01": "Madhya Pradesh Foundation Day", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", "1969-11-01": "Madhya Pradesh Foundation Day", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", "1970-11-01": "Madhya Pradesh Foundation Day", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", "1971-11-01": "Madhya Pradesh Foundation Day", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", "1972-11-01": "Madhya Pradesh Foundation Day", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-11-01": "Madhya Pradesh Foundation Day", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -416,131 +416,131 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", "1974-11-01": "Madhya Pradesh Foundation Day", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", "1975-11-01": "Madhya Pradesh Foundation Day", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", "1976-11-01": "Madhya Pradesh Foundation Day", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", "1977-11-01": "Madhya Pradesh Foundation Day", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", "1978-11-01": "Madhya Pradesh Foundation Day", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated); Madhya Pradesh Foundation Day", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated); Madhya Pradesh Foundation Day", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-11-01": "Madhya Pradesh Foundation Day", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", "1981-11-01": "Madhya Pradesh Foundation Day", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -548,16 +548,16 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-11-01": "Madhya Pradesh Foundation Day", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -565,15 +565,15 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", "1983-11-01": "Madhya Pradesh Foundation Day", - "1983-12-16": "Mawlid* (*estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -582,15 +582,15 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", "1984-11-01": "Madhya Pradesh Foundation Day", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -599,15 +599,15 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", "1985-11-01": "Madhya Pradesh Foundation Day", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -616,14 +616,14 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", "1986-11-01": "Madhya Pradesh Foundation Day", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -631,16 +631,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", "1987-11-01": "Madhya Pradesh Foundation Day", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -648,15 +648,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-11-01": "Madhya Pradesh Foundation Day", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", @@ -665,15 +665,15 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-11-01": "Madhya Pradesh Foundation Day", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", @@ -681,15 +681,15 @@ "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-11-01": "Madhya Pradesh Foundation Day", "1990-12-25": "Christmas Day", @@ -698,271 +698,271 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-11-01": "Madhya Pradesh Foundation Day", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-11-01": "Madhya Pradesh Foundation Day", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-11-01": "Madhya Pradesh Foundation Day", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-11-01": "Madhya Pradesh Foundation Day", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-11-01": "Madhya Pradesh Foundation Day", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-11-01": "Madhya Pradesh Foundation Day", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-11-01": "Madhya Pradesh Foundation Day", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-11-01": "Madhya Pradesh Foundation Day", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-11-01": "Madhya Pradesh Foundation Day", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-11-01": "Madhya Pradesh Foundation Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-01": "Madhya Pradesh Foundation Day", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-01": "Madhya Pradesh Foundation Day", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", "2003-11-01": "Madhya Pradesh Foundation Day", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-01": "Madhya Pradesh Foundation Day", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali; Madhya Pradesh Foundation Day", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -970,17 +970,17 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-11-01": "Madhya Pradesh Foundation Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -988,35 +988,35 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-01": "Madhya Pradesh Foundation Day", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", "2008-11-01": "Madhya Pradesh Foundation Day", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1024,18 +1024,18 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", "2009-11-01": "Madhya Pradesh Foundation Day", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1043,18 +1043,18 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-01": "Madhya Pradesh Foundation Day", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1062,18 +1062,18 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", "2011-11-01": "Madhya Pradesh Foundation Day", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1081,17 +1081,17 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-01": "Madhya Pradesh Foundation Day", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1099,17 +1099,17 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-01": "Madhya Pradesh Foundation Day", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1118,17 +1118,17 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", "2014-11-01": "Madhya Pradesh Foundation Day", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1137,16 +1137,16 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-01": "Madhya Pradesh Foundation Day", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1156,16 +1156,16 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", "2016-11-01": "Madhya Pradesh Foundation Day", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1175,16 +1175,16 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", "2017-11-01": "Madhya Pradesh Foundation Day", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1194,16 +1194,16 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-01": "Madhya Pradesh Foundation Day", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1212,17 +1212,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", "2019-11-01": "Madhya Pradesh Foundation Day", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1231,15 +1231,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-01": "Madhya Pradesh Foundation Day", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", @@ -1250,15 +1250,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-01": "Madhya Pradesh Foundation Day", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", @@ -1269,15 +1269,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-11-01": "Madhya Pradesh Foundation Day", "2022-12-25": "Christmas Day", @@ -1287,15 +1287,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-01": "Madhya Pradesh Foundation Day", "2023-11-12": "Diwali", @@ -1306,33 +1306,33 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali; Madhya Pradesh Foundation Day", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-11-01": "Madhya Pradesh Foundation Day", @@ -1340,35 +1340,35 @@ "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-01": "Madhya Pradesh Foundation Day", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", @@ -1376,18 +1376,18 @@ "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", @@ -1395,18 +1395,18 @@ "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-01": "Madhya Pradesh Foundation Day", @@ -1414,146 +1414,146 @@ "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-11-01": "Madhya Pradesh Foundation Day", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-11-01": "Madhya Pradesh Foundation Day", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-11-01": "Madhya Pradesh Foundation Day", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", "2033-11-01": "Madhya Pradesh Foundation Day", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", "2034-11-01": "Madhya Pradesh Foundation Day", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", "2035-11-01": "Madhya Pradesh Foundation Day", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", "2036-11-01": "Madhya Pradesh Foundation Day", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", "2037-11-01": "Madhya Pradesh Foundation Day", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1561,147 +1561,147 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-11-01": "Madhya Pradesh Foundation Day", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-11-01": "Madhya Pradesh Foundation Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", "2040-11-01": "Madhya Pradesh Foundation Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", "2041-11-01": "Madhya Pradesh Foundation Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", "2042-11-01": "Madhya Pradesh Foundation Day", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", "2043-11-01": "Madhya Pradesh Foundation Day", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated); Madhya Pradesh Foundation Day", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated); Madhya Pradesh Foundation Day", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-11-01": "Madhya Pradesh Foundation Day", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", "2046-11-01": "Madhya Pradesh Foundation Day", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1709,16 +1709,16 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-11-01": "Madhya Pradesh Foundation Day", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1726,15 +1726,15 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", "2048-11-01": "Madhya Pradesh Foundation Day", - "2048-12-18": "Mawlid* (*estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1743,15 +1743,15 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", "2049-11-01": "Madhya Pradesh Foundation Day", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1760,14 +1760,14 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", "2050-11-01": "Madhya Pradesh Foundation Day", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_MZ.json b/snapshots/countries/IN_MZ.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_MZ.json +++ b/snapshots/countries/IN_MZ.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_NL.json b/snapshots/countries/IN_NL.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_NL.json +++ b/snapshots/countries/IN_NL.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_OR.json b/snapshots/countries/IN_OR.json index 9317cd83b..008042f94 100644 --- a/snapshots/countries/IN_OR.json +++ b/snapshots/countries/IN_OR.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-01": "Odisha Day (Utkala Dibasa)", @@ -10,14 +10,14 @@ "1950-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -29,14 +29,14 @@ "1951-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -48,14 +48,14 @@ "1952-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -67,14 +67,14 @@ "1953-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -85,15 +85,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -104,15 +104,15 @@ "1955-04-14": "Dr. B. R. Ambedkar's Jayanti", "1955-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -122,15 +122,15 @@ "1956-04-14": "Dr. B. R. Ambedkar's Jayanti", "1956-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", @@ -139,15 +139,15 @@ "1957-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", @@ -157,15 +157,15 @@ "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti", "1958-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -174,40 +174,40 @@ "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", "1959-04-01": "Odisha Day (Utkala Dibasa)", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti", "1959-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-01": "Odisha Day (Utkala Dibasa)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti", "1960-04-15": "Good Friday; Maha Vishuva Sankranti / Pana Sankranti", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-01": "Odisha Day (Utkala Dibasa)", @@ -216,147 +216,147 @@ "1961-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-01": "Odisha Day (Utkala Dibasa)", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti", "1962-04-15": "Maha Vishuva Sankranti / Pana Sankranti; Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-01": "Odisha Day (Utkala Dibasa)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1963-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-01": "Odisha Day (Utkala Dibasa)", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti", "1964-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", "1965-04-01": "Odisha Day (Utkala Dibasa)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti", "1965-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated); Odisha Day (Utkala Dibasa)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated); Odisha Day (Utkala Dibasa)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti", "1966-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-01": "Odisha Day (Utkala Dibasa)", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti", "1967-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-01": "Odisha Day (Utkala Dibasa)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1968-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-01": "Odisha Day (Utkala Dibasa)", "1969-04-04": "Good Friday", @@ -365,17 +365,17 @@ "1969-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", @@ -384,17 +384,17 @@ "1970-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-01": "Odisha Day (Utkala Dibasa)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", @@ -402,54 +402,54 @@ "1971-04-14": "Dr. B. R. Ambedkar's Jayanti", "1971-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-01": "Odisha Day (Utkala Dibasa)", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti", "1972-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-01": "Odisha Day (Utkala Dibasa)", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1973-04-15": "Maha Vishuva Sankranti / Pana Sankranti; Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Maha Vishuva Sankranti / Pana Sankranti; Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", "1974-04-01": "Odisha Day (Utkala Dibasa)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", @@ -458,15 +458,15 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-01": "Odisha Day (Utkala Dibasa)", @@ -476,15 +476,15 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-01": "Odisha Day (Utkala Dibasa)", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -494,16 +494,16 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-01": "Odisha Day (Utkala Dibasa)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", @@ -513,16 +513,16 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -532,16 +532,16 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-01": "Odisha Day (Utkala Dibasa)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", @@ -550,16 +550,16 @@ "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-01": "Odisha Day (Utkala Dibasa)", "1980-04-04": "Good Friday", @@ -568,16 +568,16 @@ "1980-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-01": "Odisha Day (Utkala Dibasa)", "1981-04-12": "Palm Sunday", @@ -587,15 +587,15 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-01": "Odisha Day (Utkala Dibasa)", @@ -606,15 +606,15 @@ "1982-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -624,14 +624,14 @@ "1983-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -642,14 +642,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -661,14 +661,14 @@ "1985-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -680,13 +680,13 @@ "1986-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -697,15 +697,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -715,15 +715,15 @@ "1988-04-14": "Dr. B. R. Ambedkar's Jayanti", "1988-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -734,15 +734,15 @@ "1989-04-14": "Dr. B. R. Ambedkar's Jayanti", "1989-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", @@ -751,15 +751,15 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti", "1990-04-15": "Easter Sunday; Maha Vishuva Sankranti / Pana Sankranti", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -769,22 +769,22 @@ "1991-03-31": "Easter Sunday", "1991-04-01": "Odisha Day (Utkala Dibasa)", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1991-04-15": "Eid ul-Fitr* (*estimated); Maha Vishuva Sankranti / Pana Sankranti", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated); Maha Vishuva Sankranti / Pana Sankranti", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", "1992-04-01": "Odisha Day (Utkala Dibasa)", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti", "1992-04-15": "Maha Vishuva Sankranti / Pana Sankranti", @@ -792,17 +792,17 @@ "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-01": "Odisha Day (Utkala Dibasa)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", @@ -811,169 +811,169 @@ "1993-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday; Odisha Day (Utkala Dibasa)", "1994-04-03": "Easter Sunday", "1994-04-14": "Dr. B. R. Ambedkar's Jayanti", "1994-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-01": "Odisha Day (Utkala Dibasa)", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "1995-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-01": "Odisha Day (Utkala Dibasa)", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti", "1996-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-01": "Odisha Day (Utkala Dibasa)", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti", "1997-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-01": "Odisha Day (Utkala Dibasa)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti", "1998-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-01": "Odisha Day (Utkala Dibasa)", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti", "1999-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-01": "Odisha Day (Utkala Dibasa)", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2000-04-15": "Day of Ashura* (*estimated); Maha Vishuva Sankranti / Pana Sankranti", + "2000-04-15": "Day of Ashura (estimated); Maha Vishuva Sankranti / Pana Sankranti", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", "2001-04-01": "Odisha Day (Utkala Dibasa)", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti", "2001-04-15": "Easter Sunday; Maha Vishuva Sankranti / Pana Sankranti", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-01": "Odisha Day (Utkala Dibasa)", @@ -981,18 +981,18 @@ "2002-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-01": "Odisha Day (Utkala Dibasa)", "2003-04-13": "Palm Sunday", @@ -1001,19 +1001,19 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-01": "Odisha Day (Utkala Dibasa)", "2004-04-04": "Palm Sunday", @@ -1021,19 +1021,19 @@ "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti", "2004-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", @@ -1041,24 +1041,24 @@ "2005-04-01": "Odisha Day (Utkala Dibasa)", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti", "2005-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-01": "Odisha Day (Utkala Dibasa)", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2006-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2006-04-16": "Easter Sunday", @@ -1067,16 +1067,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Odisha Day (Utkala Dibasa); Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -1086,17 +1086,17 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1106,16 +1106,16 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-01": "Odisha Day (Utkala Dibasa)", "2009-04-05": "Palm Sunday", @@ -1126,17 +1126,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-01": "Odisha Day (Utkala Dibasa)", @@ -1147,17 +1147,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-01": "Odisha Day (Utkala Dibasa)", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1168,17 +1168,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Odisha Day (Utkala Dibasa); Palm Sunday", "2012-04-06": "Good Friday", @@ -1188,16 +1188,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1208,16 +1208,16 @@ "2013-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1229,16 +1229,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1250,15 +1250,15 @@ "2015-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1271,15 +1271,15 @@ "2016-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1291,15 +1291,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1311,15 +1311,15 @@ "2018-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1330,16 +1330,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1351,15 +1351,15 @@ "2020-04-14": "Dr. B. R. Ambedkar's Jayanti", "2020-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1372,15 +1372,15 @@ "2021-04-14": "Dr. B. R. Ambedkar's Jayanti", "2021-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1392,15 +1392,15 @@ "2022-04-15": "Good Friday; Maha Vishuva Sankranti / Pana Sankranti", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1412,15 +1412,15 @@ "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti", "2023-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1431,25 +1431,25 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-01": "Odisha Day (Utkala Dibasa)", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti", "2024-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-01": "Odisha Day (Utkala Dibasa)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1457,20 +1457,20 @@ "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-01": "Odisha Day (Utkala Dibasa)", "2026-04-03": "Good Friday", @@ -1479,18 +1479,18 @@ "2026-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", @@ -1499,18 +1499,18 @@ "2027-04-14": "Dr. B. R. Ambedkar's Jayanti", "2027-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-01": "Odisha Day (Utkala Dibasa)", "2028-04-09": "Palm Sunday", @@ -1518,115 +1518,115 @@ "2028-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday; Odisha Day (Utkala Dibasa)", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti", "2029-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", "2030-04-01": "Odisha Day (Utkala Dibasa)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday", "2030-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", "2031-04-01": "Odisha Day (Utkala Dibasa)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti", "2031-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-01": "Odisha Day (Utkala Dibasa)", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti", "2032-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", "2033-04-01": "Odisha Day (Utkala Dibasa)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti", "2033-04-15": "Good Friday; Maha Vishuva Sankranti / Pana Sankranti", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-01": "Odisha Day (Utkala Dibasa)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", @@ -1635,18 +1635,18 @@ "2034-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-01": "Odisha Day (Utkala Dibasa)", @@ -1654,17 +1654,17 @@ "2035-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-01": "Odisha Day (Utkala Dibasa)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", @@ -1672,40 +1672,40 @@ "2036-04-14": "Dr. B. R. Ambedkar's Jayanti", "2036-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-01": "Odisha Day (Utkala Dibasa)", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti", "2037-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-01": "Odisha Day (Utkala Dibasa)", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti", "2038-04-15": "Maha Vishuva Sankranti / Pana Sankranti", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1713,17 +1713,17 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-01": "Odisha Day (Utkala Dibasa)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1732,15 +1732,15 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday; Odisha Day (Utkala Dibasa)", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1749,15 +1749,15 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-01": "Odisha Day (Utkala Dibasa)", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "2041-04-15": "Maha Vishuva Sankranti / Pana Sankranti", @@ -1766,16 +1766,16 @@ "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-01": "Odisha Day (Utkala Dibasa)", "2042-04-04": "Good Friday", @@ -1785,16 +1785,16 @@ "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1804,16 +1804,16 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-01": "Odisha Day (Utkala Dibasa)", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1822,16 +1822,16 @@ "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-01": "Odisha Day (Utkala Dibasa)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", @@ -1840,15 +1840,15 @@ "2045-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1858,15 +1858,15 @@ "2046-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-01": "Odisha Day (Utkala Dibasa)", @@ -1876,15 +1876,15 @@ "2047-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1895,14 +1895,14 @@ "2048-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1914,14 +1914,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1933,13 +1933,13 @@ "2050-04-15": "Maha Vishuva Sankranti / Pana Sankranti", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_PB.json b/snapshots/countries/IN_PB.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_PB.json +++ b/snapshots/countries/IN_PB.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_PY.json b/snapshots/countries/IN_PY.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_PY.json +++ b/snapshots/countries/IN_PY.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_RJ.json b/snapshots/countries/IN_RJ.json index bd07b3ac1..b6f3718fe 100644 --- a/snapshots/countries/IN_RJ.json +++ b/snapshots/countries/IN_RJ.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-03-30": "Rajasthan Day", @@ -9,14 +9,14 @@ "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", "1950-06-15": "Maharana Pratap Jayanti", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -27,14 +27,14 @@ "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", "1951-06-15": "Maharana Pratap Jayanti", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -45,14 +45,14 @@ "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", "1952-06-15": "Maharana Pratap Jayanti", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -62,15 +62,15 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-06-15": "Maharana Pratap Jayanti", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -79,16 +79,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", "1954-06-15": "Maharana Pratap Jayanti", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -97,16 +97,16 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", "1955-06-15": "Maharana Pratap Jayanti", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -114,16 +114,16 @@ "1956-03-30": "Good Friday; Rajasthan Day", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", "1956-06-15": "Maharana Pratap Jayanti", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", @@ -131,32 +131,32 @@ "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", "1957-06-15": "Maharana Pratap Jayanti", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday; Rajasthan Day", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", "1958-06-15": "Maharana Pratap Jayanti", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -165,255 +165,255 @@ "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", "1959-03-30": "Rajasthan Day", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", "1959-06-15": "Maharana Pratap Jayanti", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-03-30": "Rajasthan Day", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", "1960-06-15": "Maharana Pratap Jayanti", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-30": "Rajasthan Day", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", "1961-06-15": "Maharana Pratap Jayanti", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-03-30": "Rajasthan Day", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", "1962-06-15": "Maharana Pratap Jayanti", - "1962-08-12": "Mawlid* (*estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-03-30": "Rajasthan Day", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", "1963-06-15": "Maharana Pratap Jayanti", - "1963-08-02": "Mawlid* (*estimated)", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-03-30": "Rajasthan Day", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", "1964-06-15": "Maharana Pratap Jayanti", - "1964-07-21": "Mawlid* (*estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", "1965-03-30": "Rajasthan Day", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", "1965-06-15": "Maharana Pratap Jayanti", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", "1966-03-30": "Rajasthan Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", "1966-06-15": "Maharana Pratap Jayanti", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-03-30": "Rajasthan Day", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", "1967-06-15": "Maharana Pratap Jayanti", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-03-30": "Rajasthan Day", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-06-15": "Maharana Pratap Jayanti", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday; Rajasthan Day", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-06-15": "Maharana Pratap Jayanti", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-03-30": "Rajasthan Day", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-06-15": "Maharana Pratap Jayanti", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-03-30": "Rajasthan Day", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-06-15": "Maharana Pratap Jayanti", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-30": "Rajasthan Day", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-06-15": "Maharana Pratap Jayanti", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-03-30": "Rajasthan Day", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", @@ -421,16 +421,16 @@ "1973-06-15": "Maharana Pratap Jayanti", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", "1974-03-30": "Rajasthan Day", - "1974-04-04": "Mawlid* (*estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -439,15 +439,15 @@ "1974-06-15": "Maharana Pratap Jayanti", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday; Rajasthan Day", "1975-05-01": "Labour Day", @@ -455,15 +455,15 @@ "1975-06-15": "Maharana Pratap Jayanti", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-03-30": "Rajasthan Day", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", @@ -472,16 +472,16 @@ "1976-06-06": "Feast of Pentecost", "1976-06-15": "Maharana Pratap Jayanti", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-03-30": "Rajasthan Day", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", @@ -490,16 +490,16 @@ "1977-05-29": "Feast of Pentecost", "1977-06-15": "Maharana Pratap Jayanti", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -508,16 +508,16 @@ "1978-05-14": "Feast of Pentecost", "1978-06-15": "Maharana Pratap Jayanti", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-03-30": "Rajasthan Day", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", @@ -526,32 +526,32 @@ "1979-06-03": "Feast of Pentecost", "1979-06-15": "Maharana Pratap Jayanti", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday; Rajasthan Day", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", "1980-06-15": "Maharana Pratap Jayanti", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-03-30": "Rajasthan Day", "1981-04-12": "Palm Sunday", @@ -560,15 +560,15 @@ "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", "1981-06-15": "Maharana Pratap Jayanti", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-03-30": "Rajasthan Day", @@ -578,15 +578,15 @@ "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", "1982-06-15": "Maharana Pratap Jayanti", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -596,14 +596,14 @@ "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", "1983-06-15": "Maharana Pratap Jayanti", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -614,14 +614,14 @@ "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", "1984-06-15": "Maharana Pratap Jayanti", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -632,14 +632,14 @@ "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", "1985-06-15": "Maharana Pratap Jayanti", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -648,14 +648,14 @@ "1986-03-30": "Easter Sunday; Rajasthan Day", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", "1986-06-15": "Maharana Pratap Jayanti", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -664,16 +664,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", "1987-06-15": "Maharana Pratap Jayanti", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -682,16 +682,16 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", "1988-06-15": "Maharana Pratap Jayanti", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -700,16 +700,16 @@ "1989-03-26": "Easter Sunday", "1989-03-30": "Rajasthan Day", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", "1989-06-15": "Maharana Pratap Jayanti", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", @@ -717,16 +717,16 @@ "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", "1990-06-15": "Maharana Pratap Jayanti", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -735,286 +735,286 @@ "1991-03-29": "Good Friday", "1991-03-30": "Rajasthan Day", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", "1991-06-15": "Maharana Pratap Jayanti", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", "1992-03-30": "Rajasthan Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", "1992-06-15": "Maharana Pratap Jayanti", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-03-30": "Rajasthan Day", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", "1993-06-15": "Maharana Pratap Jayanti", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-03-30": "Rajasthan Day", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", "1994-06-15": "Maharana Pratap Jayanti", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-03-30": "Rajasthan Day", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", "1995-06-15": "Maharana Pratap Jayanti", - "1995-08-08": "Mawlid* (*estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-30": "Rajasthan Day", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", "1996-06-15": "Maharana Pratap Jayanti", - "1996-07-27": "Mawlid* (*estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday; Rajasthan Day", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", "1997-06-15": "Maharana Pratap Jayanti", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-03-30": "Rajasthan Day", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", "1998-06-15": "Maharana Pratap Jayanti", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-03-30": "Rajasthan Day", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", "1999-06-15": "Maharana Pratap Jayanti", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-03-30": "Rajasthan Day", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-06-15": "Maharana Pratap Jayanti", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", "2001-03-30": "Rajasthan Day", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-06-15": "Maharana Pratap Jayanti", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-30": "Rajasthan Day", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-06-15": "Maharana Pratap Jayanti", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-03-30": "Rajasthan Day", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-06-15": "Maharana Pratap Jayanti", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-03-30": "Rajasthan Day", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-06-15": "Maharana Pratap Jayanti", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-03-30": "Rajasthan Day", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-06-15": "Maharana Pratap Jayanti", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-03-30": "Rajasthan Day", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -1023,17 +1023,17 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", "2007-03-30": "Rajasthan Day", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -1042,17 +1042,17 @@ "2007-06-15": "Maharana Pratap Jayanti", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1061,16 +1061,16 @@ "2008-05-11": "Feast of Pentecost", "2008-06-15": "Maharana Pratap Jayanti", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-03-30": "Rajasthan Day", "2009-04-05": "Palm Sunday", @@ -1080,17 +1080,17 @@ "2009-05-31": "Feast of Pentecost", "2009-06-15": "Maharana Pratap Jayanti", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-03-30": "Rajasthan Day", @@ -1100,17 +1100,17 @@ "2010-05-23": "Feast of Pentecost", "2010-06-15": "Maharana Pratap Jayanti", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-03-30": "Rajasthan Day", "2011-04-17": "Palm Sunday", @@ -1120,17 +1120,17 @@ "2011-06-12": "Feast of Pentecost", "2011-06-15": "Maharana Pratap Jayanti", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-03-30": "Rajasthan Day", "2012-04-01": "Palm Sunday", @@ -1140,16 +1140,16 @@ "2012-05-27": "Feast of Pentecost", "2012-06-15": "Maharana Pratap Jayanti", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1159,16 +1159,16 @@ "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", "2013-06-15": "Maharana Pratap Jayanti", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1179,16 +1179,16 @@ "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", "2014-06-15": "Maharana Pratap Jayanti", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1199,15 +1199,15 @@ "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", "2015-06-15": "Maharana Pratap Jayanti", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1219,15 +1219,15 @@ "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", "2016-06-15": "Maharana Pratap Jayanti", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1239,15 +1239,15 @@ "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", "2017-06-15": "Maharana Pratap Jayanti", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1257,15 +1257,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated); Maharana Pratap Jayanti", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated); Maharana Pratap Jayanti", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1275,17 +1275,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", "2019-06-15": "Maharana Pratap Jayanti", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1295,16 +1295,16 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", "2020-06-15": "Maharana Pratap Jayanti", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1315,16 +1315,16 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", "2021-06-15": "Maharana Pratap Jayanti", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1335,16 +1335,16 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", "2022-06-15": "Maharana Pratap Jayanti", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1354,16 +1354,16 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", "2023-06-15": "Maharana Pratap Jayanti", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1374,265 +1374,265 @@ "2024-03-29": "Good Friday", "2024-03-30": "Rajasthan Day", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", "2024-06-15": "Maharana Pratap Jayanti", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated); Rajasthan Day", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated); Rajasthan Day", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", "2025-06-15": "Maharana Pratap Jayanti", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-03-30": "Rajasthan Day", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", "2026-06-15": "Maharana Pratap Jayanti", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-03-30": "Rajasthan Day", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated); Maharana Pratap Jayanti", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated); Maharana Pratap Jayanti", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-03-30": "Rajasthan Day", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", "2028-06-15": "Maharana Pratap Jayanti", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday; Rajasthan Day", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", "2029-06-15": "Maharana Pratap Jayanti", - "2029-07-24": "Mawlid* (*estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", "2030-03-30": "Rajasthan Day", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", "2030-06-15": "Maharana Pratap Jayanti", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", "2031-03-30": "Rajasthan Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", "2031-06-15": "Maharana Pratap Jayanti", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-03-30": "Rajasthan Day", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", "2032-06-15": "Maharana Pratap Jayanti", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", "2033-03-30": "Rajasthan Day", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-06-15": "Maharana Pratap Jayanti", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated); Rajasthan Day", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated); Rajasthan Day", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-06-15": "Maharana Pratap Jayanti", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-03-30": "Rajasthan Day", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-06-15": "Maharana Pratap Jayanti", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-03-30": "Rajasthan Day", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-06-15": "Maharana Pratap Jayanti", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-03-30": "Rajasthan Day", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-06-15": "Maharana Pratap Jayanti", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-03-30": "Rajasthan Day", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1641,17 +1641,17 @@ "2038-06-15": "Maharana Pratap Jayanti", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-03-30": "Rajasthan Day", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", @@ -1659,15 +1659,15 @@ "2039-06-15": "Maharana Pratap Jayanti", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday; Rajasthan Day", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", @@ -1675,15 +1675,15 @@ "2040-06-15": "Maharana Pratap Jayanti", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-03-30": "Rajasthan Day", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", @@ -1692,16 +1692,16 @@ "2041-06-09": "Feast of Pentecost", "2041-06-15": "Maharana Pratap Jayanti", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday; Rajasthan Day", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1709,16 +1709,16 @@ "2042-05-25": "Feast of Pentecost", "2042-06-15": "Maharana Pratap Jayanti", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1727,16 +1727,16 @@ "2043-05-17": "Feast of Pentecost", "2043-06-15": "Maharana Pratap Jayanti", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-03-30": "Rajasthan Day", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", @@ -1745,16 +1745,16 @@ "2044-06-05": "Feast of Pentecost", "2044-06-15": "Maharana Pratap Jayanti", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-03-30": "Rajasthan Day", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", @@ -1762,15 +1762,15 @@ "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", "2045-06-15": "Maharana Pratap Jayanti", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1779,15 +1779,15 @@ "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", "2046-06-15": "Maharana Pratap Jayanti", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-03-30": "Rajasthan Day", @@ -1797,15 +1797,15 @@ "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", "2047-06-15": "Maharana Pratap Jayanti", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1815,14 +1815,14 @@ "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", "2048-06-15": "Maharana Pratap Jayanti", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1833,14 +1833,14 @@ "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", "2049-06-15": "Maharana Pratap Jayanti", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1851,13 +1851,13 @@ "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", "2050-06-15": "Maharana Pratap Jayanti", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_SK.json b/snapshots/countries/IN_SK.json index 1eaad74a1..246e979da 100644 --- a/snapshots/countries/IN_SK.json +++ b/snapshots/countries/IN_SK.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -8,14 +8,14 @@ "1950-05-01": "Labour Day", "1950-05-16": "Annexation Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -25,14 +25,14 @@ "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", "1951-05-16": "Annexation Day", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -42,14 +42,14 @@ "1952-05-01": "Labour Day", "1952-05-16": "Annexation Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -59,14 +59,14 @@ "1953-05-01": "Labour Day", "1953-05-16": "Annexation Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -75,15 +75,15 @@ "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", "1954-05-16": "Annexation Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -92,15 +92,15 @@ "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", "1955-05-16": "Annexation Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -108,48 +108,48 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-16": "Annexation Day", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-05-16": "Annexation Day", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-16": "Annexation Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -157,242 +157,242 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-16": "Annexation Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", "1960-05-16": "Annexation Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-16": "Annexation Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-05-16": "Annexation Day", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", "1963-05-16": "Annexation Day", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-16": "Annexation Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-05-16": "Annexation Day", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-16": "Annexation Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", "1967-05-16": "Annexation Day", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-05-16": "Annexation Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-16": "Annexation Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-16": "Annexation Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-16": "Annexation Day", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-16": "Annexation Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", @@ -400,15 +400,15 @@ "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -417,15 +417,15 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", @@ -433,15 +433,15 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", @@ -449,16 +449,16 @@ "1976-05-16": "Annexation Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -466,16 +466,16 @@ "1977-05-16": "Annexation Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -483,16 +483,16 @@ "1978-05-14": "Feast of Pentecost", "1978-05-16": "Annexation Day", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", @@ -500,32 +500,32 @@ "1979-05-16": "Annexation Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-16": "Annexation Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", @@ -533,15 +533,15 @@ "1981-05-01": "Labour Day", "1981-05-16": "Annexation Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -550,15 +550,15 @@ "1982-05-01": "Labour Day", "1982-05-16": "Annexation Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -567,14 +567,14 @@ "1983-05-01": "Labour Day", "1983-05-16": "Annexation Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -584,14 +584,14 @@ "1984-05-01": "Labour Day", "1984-05-16": "Annexation Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -601,14 +601,14 @@ "1985-05-01": "Labour Day", "1985-05-16": "Annexation Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -618,13 +618,13 @@ "1986-05-01": "Labour Day", "1986-05-16": "Annexation Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -633,15 +633,15 @@ "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", "1987-05-16": "Annexation Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -649,15 +649,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Annexation Day; Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Annexation Day; Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -665,32 +665,32 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", "1989-05-16": "Annexation Day", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-05-16": "Annexation Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -698,271 +698,271 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-16": "Annexation Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-05-16": "Annexation Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-16": "Annexation Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", "1994-05-16": "Annexation Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-05-16": "Annexation Day", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-16": "Annexation Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Annexation Day; Day of Ashura* (*estimated)", + "1997-05-16": "Annexation Day; Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-16": "Annexation Day", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-16": "Annexation Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-05-16": "Annexation Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-05-16": "Annexation Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-16": "Annexation Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-05-16": "Annexation Day", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-16": "Annexation Day", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-05-16": "Annexation Day", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -971,16 +971,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -989,17 +989,17 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1007,16 +1007,16 @@ "2008-05-11": "Feast of Pentecost", "2008-05-16": "Annexation Day", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1025,17 +1025,17 @@ "2009-05-16": "Annexation Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1044,17 +1044,17 @@ "2010-05-16": "Annexation Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1063,17 +1063,17 @@ "2011-05-16": "Annexation Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1082,16 +1082,16 @@ "2012-05-16": "Annexation Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1100,16 +1100,16 @@ "2013-05-01": "Labour Day", "2013-05-16": "Annexation Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1119,16 +1119,16 @@ "2014-05-01": "Labour Day", "2014-05-16": "Annexation Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1138,15 +1138,15 @@ "2015-05-01": "Labour Day", "2015-05-16": "Annexation Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1157,15 +1157,15 @@ "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", "2016-05-16": "Annexation Day", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1176,15 +1176,15 @@ "2017-05-01": "Labour Day", "2017-05-16": "Annexation Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1195,15 +1195,15 @@ "2018-05-01": "Labour Day", "2018-05-16": "Annexation Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1213,16 +1213,16 @@ "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", "2019-05-16": "Annexation Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1232,15 +1232,15 @@ "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", "2020-05-16": "Annexation Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1250,16 +1250,16 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-16": "Annexation Day", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1269,16 +1269,16 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-05-16": "Annexation Day", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1287,16 +1287,16 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-16": "Annexation Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1306,253 +1306,253 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-16": "Annexation Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", "2025-05-16": "Annexation Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-16": "Annexation Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Annexation Day; Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Annexation Day; Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", "2028-05-16": "Annexation Day", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-16": "Annexation Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-05-16": "Annexation Day", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-05-16": "Annexation Day", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Annexation Day; Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-05-16": "Annexation Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-16": "Annexation Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", "2035-05-16": "Annexation Day", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-05-16": "Annexation Day", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-16": "Annexation Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1561,16 +1561,16 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", @@ -1578,15 +1578,15 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", @@ -1594,15 +1594,15 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", @@ -1610,16 +1610,16 @@ "2041-05-16": "Annexation Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1627,16 +1627,16 @@ "2042-05-16": "Annexation Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1644,16 +1644,16 @@ "2043-05-16": "Annexation Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", @@ -1661,31 +1661,31 @@ "2044-05-16": "Annexation Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-16": "Annexation Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1693,15 +1693,15 @@ "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", "2046-05-16": "Annexation Day", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1710,15 +1710,15 @@ "2047-05-01": "Labour Day", "2047-05-16": "Annexation Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1727,14 +1727,14 @@ "2048-05-01": "Labour Day", "2048-05-16": "Annexation Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1744,14 +1744,14 @@ "2049-05-01": "Labour Day", "2049-05-16": "Annexation Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1761,13 +1761,13 @@ "2050-05-01": "Labour Day", "2050-05-16": "Annexation Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_TN.json b/snapshots/countries/IN_TN.json index da7732afc..fd842fea6 100644 --- a/snapshots/countries/IN_TN.json +++ b/snapshots/countries/IN_TN.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -9,14 +9,14 @@ "1950-04-15": "Puthandu (Tamil New Year)", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -27,14 +27,14 @@ "1951-04-15": "Puthandu (Tamil New Year)", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -45,14 +45,14 @@ "1952-04-15": "Puthandu (Tamil New Year)", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -63,14 +63,14 @@ "1953-04-15": "Puthandu (Tamil New Year)", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -80,15 +80,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -98,15 +98,15 @@ "1955-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1955-04-15": "Puthandu (Tamil New Year)", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -116,15 +116,15 @@ "1956-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1956-04-15": "Puthandu (Tamil New Year)", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", @@ -132,15 +132,15 @@ "1957-04-15": "Puthandu (Tamil New Year)", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", @@ -149,15 +149,15 @@ "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1958-04-15": "Puthandu (Tamil New Year)", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -165,39 +165,39 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1959-04-15": "Puthandu (Tamil New Year)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1960-04-15": "Good Friday; Puthandu (Tamil New Year)", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", @@ -205,141 +205,141 @@ "1961-04-15": "Puthandu (Tamil New Year)", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1962-04-15": "Palm Sunday; Puthandu (Tamil New Year)", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Puthandu (Tamil New Year)", "1963-04-15": "Puthandu (Tamil New Year)", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1964-04-15": "Puthandu (Tamil New Year)", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1965-04-15": "Puthandu (Tamil New Year)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1966-04-15": "Puthandu (Tamil New Year)", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1967-04-15": "Puthandu (Tamil New Year)", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Puthandu (Tamil New Year)", "1968-04-15": "Puthandu (Tamil New Year)", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", @@ -347,17 +347,17 @@ "1969-04-15": "Puthandu (Tamil New Year)", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", @@ -365,68 +365,68 @@ "1970-04-15": "Puthandu (Tamil New Year)", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1971-04-15": "Puthandu (Tamil New Year)", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1972-04-15": "Puthandu (Tamil New Year)", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday; Puthandu (Tamil New Year)", + "1973-04-15": "Mawlid (estimated); Palm Sunday; Puthandu (Tamil New Year)", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Puthandu (Tamil New Year)", @@ -435,15 +435,15 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", @@ -452,15 +452,15 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1976-04-15": "Puthandu (Tamil New Year)", @@ -469,16 +469,16 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -487,16 +487,16 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -505,16 +505,16 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", @@ -522,16 +522,16 @@ "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", @@ -539,16 +539,16 @@ "1980-04-15": "Puthandu (Tamil New Year)", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", @@ -557,15 +557,15 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -575,15 +575,15 @@ "1982-04-15": "Puthandu (Tamil New Year)", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -593,14 +593,14 @@ "1983-04-15": "Puthandu (Tamil New Year)", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -610,14 +610,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -628,14 +628,14 @@ "1985-04-15": "Puthandu (Tamil New Year)", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -646,13 +646,13 @@ "1986-04-15": "Puthandu (Tamil New Year)", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -662,15 +662,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -680,15 +680,15 @@ "1988-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1988-04-15": "Puthandu (Tamil New Year)", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -698,15 +698,15 @@ "1989-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1989-04-15": "Puthandu (Tamil New Year)", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", @@ -714,15 +714,15 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1990-04-15": "Easter Sunday; Puthandu (Tamil New Year)", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -731,21 +731,21 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", - "1991-04-15": "Eid ul-Fitr* (*estimated); Puthandu (Tamil New Year)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated); Puthandu (Tamil New Year)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1992-04-15": "Puthandu (Tamil New Year)", @@ -753,17 +753,17 @@ "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", @@ -771,180 +771,180 @@ "1993-04-15": "Puthandu (Tamil New Year)", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1994-04-15": "Puthandu (Tamil New Year)", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Puthandu (Tamil New Year)", "1995-04-15": "Puthandu (Tamil New Year)", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1996-04-15": "Puthandu (Tamil New Year)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1997-04-15": "Puthandu (Tamil New Year)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1998-04-15": "Puthandu (Tamil New Year)", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "1999-04-15": "Puthandu (Tamil New Year)", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", - "2000-04-15": "Day of Ashura* (*estimated); Puthandu (Tamil New Year)", + "2000-04-15": "Day of Ashura (estimated); Puthandu (Tamil New Year)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2001-04-15": "Easter Sunday; Puthandu (Tamil New Year)", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2002-04-15": "Puthandu (Tamil New Year)", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", @@ -952,61 +952,61 @@ "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2004-04-15": "Puthandu (Tamil New Year)", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2005-04-15": "Puthandu (Tamil New Year)", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Puthandu (Tamil New Year)", "2006-04-15": "Puthandu (Tamil New Year)", "2006-04-16": "Easter Sunday", @@ -1015,16 +1015,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -1034,17 +1034,17 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1053,16 +1053,16 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1072,17 +1072,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1092,17 +1092,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2011-04-15": "Puthandu (Tamil New Year)", @@ -1112,17 +1112,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1132,16 +1132,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1151,16 +1151,16 @@ "2013-04-15": "Puthandu (Tamil New Year)", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1171,16 +1171,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1191,15 +1191,15 @@ "2015-04-15": "Puthandu (Tamil New Year)", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1211,15 +1211,15 @@ "2016-04-15": "Puthandu (Tamil New Year)", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1230,15 +1230,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1250,15 +1250,15 @@ "2018-04-15": "Puthandu (Tamil New Year)", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1268,16 +1268,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1288,15 +1288,15 @@ "2020-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2020-04-15": "Puthandu (Tamil New Year)", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1308,15 +1308,15 @@ "2021-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2021-04-15": "Puthandu (Tamil New Year)", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1327,15 +1327,15 @@ "2022-04-15": "Good Friday; Puthandu (Tamil New Year)", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1346,15 +1346,15 @@ "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2023-04-15": "Puthandu (Tamil New Year)", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1364,45 +1364,45 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2024-04-15": "Puthandu (Tamil New Year)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2025-04-15": "Puthandu (Tamil New Year)", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", @@ -1410,18 +1410,18 @@ "2026-04-15": "Puthandu (Tamil New Year)", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", @@ -1429,129 +1429,129 @@ "2027-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2027-04-15": "Puthandu (Tamil New Year)", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Puthandu (Tamil New Year)", "2028-04-15": "Puthandu (Tamil New Year)", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2029-04-15": "Puthandu (Tamil New Year)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday; Puthandu (Tamil New Year)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday; Puthandu (Tamil New Year)", "2030-04-15": "Puthandu (Tamil New Year)", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2031-04-15": "Puthandu (Tamil New Year)", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2032-04-15": "Puthandu (Tamil New Year)", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2033-04-15": "Good Friday; Puthandu (Tamil New Year)", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", @@ -1559,73 +1559,73 @@ "2034-04-15": "Puthandu (Tamil New Year)", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2035-04-15": "Puthandu (Tamil New Year)", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2036-04-15": "Puthandu (Tamil New Year)", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2037-04-15": "Puthandu (Tamil New Year)", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2038-04-15": "Puthandu (Tamil New Year)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1633,16 +1633,16 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", @@ -1651,15 +1651,15 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", @@ -1668,15 +1668,15 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday; Puthandu (Tamil New Year)", "2041-04-15": "Puthandu (Tamil New Year)", "2041-04-19": "Good Friday", @@ -1684,16 +1684,16 @@ "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1702,16 +1702,16 @@ "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1720,16 +1720,16 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti; Puthandu (Tamil New Year)", "2044-04-15": "Good Friday; Puthandu (Tamil New Year)", @@ -1737,16 +1737,16 @@ "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", @@ -1754,15 +1754,15 @@ "2045-04-15": "Puthandu (Tamil New Year)", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1771,15 +1771,15 @@ "2046-04-15": "Puthandu (Tamil New Year)", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1788,15 +1788,15 @@ "2047-04-15": "Puthandu (Tamil New Year)", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1806,14 +1806,14 @@ "2048-04-15": "Puthandu (Tamil New Year)", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1824,14 +1824,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1842,13 +1842,13 @@ "2050-04-15": "Puthandu (Tamil New Year)", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_TR.json b/snapshots/countries/IN_TR.json index ffa3cf40d..2e57543ad 100644 --- a/snapshots/countries/IN_TR.json +++ b/snapshots/countries/IN_TR.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -7,14 +7,14 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -23,14 +23,14 @@ "1951-03-25": "Easter Sunday", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -39,14 +39,14 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -55,14 +55,14 @@ "1953-04-05": "Easter Sunday", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -70,15 +70,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -86,15 +86,15 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -102,45 +102,45 @@ "1956-03-30": "Good Friday", "1956-04-01": "Easter Sunday", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -148,243 +148,243 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-02-13": "Day of Ashura (estimated)", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Easter Sunday", @@ -392,124 +392,124 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-05-01": "Labour Day", "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", "1976-04-18": "Easter Sunday", "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-15": "Easter Sunday", "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-17": "Good Friday", "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -517,15 +517,15 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -533,14 +533,14 @@ "1983-04-03": "Easter Sunday", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -549,14 +549,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -565,14 +565,14 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -581,13 +581,13 @@ "1986-03-30": "Easter Sunday", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -595,15 +595,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -611,15 +611,15 @@ "1988-04-01": "Good Friday", "1988-04-03": "Easter Sunday", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -627,30 +627,30 @@ "1989-03-24": "Good Friday", "1989-03-26": "Easter Sunday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -658,257 +658,257 @@ "1991-03-24": "Palm Sunday", "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -916,16 +916,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -933,33 +933,33 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -967,17 +967,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -985,17 +985,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-17": "Palm Sunday", "2011-04-22": "Good Friday", @@ -1003,17 +1003,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1021,16 +1021,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1038,16 +1038,16 @@ "2013-03-31": "Easter Sunday", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1056,16 +1056,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1074,15 +1074,15 @@ "2015-04-05": "Easter Sunday", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1092,15 +1092,15 @@ "2016-03-27": "Easter Sunday", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1110,15 +1110,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1128,15 +1128,15 @@ "2018-04-01": "Easter Sunday", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1145,16 +1145,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1163,15 +1163,15 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1181,15 +1181,15 @@ "2021-04-02": "Good Friday", "2021-04-04": "Easter Sunday", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1199,15 +1199,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1216,15 +1216,15 @@ "2023-04-02": "Palm Sunday", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1234,241 +1234,241 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", - "2038-04-17": "Mawlid* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1476,139 +1476,139 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-05-01": "Labour Day", "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1616,15 +1616,15 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1632,14 +1632,14 @@ "2048-04-05": "Easter Sunday", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1648,14 +1648,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1664,13 +1664,13 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_TS.json b/snapshots/countries/IN_TS.json index 7f03cde66..dd72021f4 100644 --- a/snapshots/countries/IN_TS.json +++ b/snapshots/countries/IN_TS.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -8,15 +8,15 @@ "1950-04-09": "Easter Sunday", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", "1950-10-06": "Bathukamma Festival", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -26,15 +26,15 @@ "1951-04-06": "Eid al-Fitr", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", "1951-10-06": "Bathukamma Festival", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -43,15 +43,15 @@ "1952-04-13": "Easter Sunday", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", "1952-10-06": "Bathukamma Festival", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -61,15 +61,15 @@ "1953-04-06": "Eid al-Fitr", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", "1953-10-06": "Bathukamma Festival", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -78,16 +78,16 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", "1954-10-06": "Bathukamma Festival", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -96,16 +96,16 @@ "1955-04-08": "Good Friday", "1955-04-10": "Easter Sunday", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", "1955-10-06": "Bathukamma Festival", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -114,16 +114,16 @@ "1956-04-01": "Easter Sunday", "1956-04-06": "Eid al-Fitr", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", "1956-10-06": "Bathukamma Festival", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", @@ -131,30 +131,30 @@ "1957-04-14": "Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Bathukamma Festival; Mawlid* (*estimated)", + "1957-10-06": "Bathukamma Festival; Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", "1958-03-30": "Palm Sunday", "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday; Eid al-Fitr", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-10-06": "Bathukamma Festival", "1958-12-25": "Christmas Day", @@ -164,255 +164,255 @@ "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", "1959-04-06": "Eid al-Fitr", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-10-06": "Bathukamma Festival", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-06": "Eid al-Fitr", "1960-04-10": "Palm Sunday", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-10-06": "Bathukamma Festival", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-04-06": "Eid al-Fitr", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-10-06": "Bathukamma Festival", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-06": "Eid al-Fitr", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-10-06": "Bathukamma Festival", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-06": "Eid al-Fitr", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-10-06": "Bathukamma Festival", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-06": "Eid al-Fitr", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-10-06": "Bathukamma Festival", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", "1965-04-06": "Eid al-Fitr", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-10-06": "Bathukamma Festival", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-06": "Eid al-Fitr", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-10-06": "Bathukamma Festival", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-06": "Eid al-Fitr", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-10-06": "Bathukamma Festival", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-06": "Eid al-Fitr", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", "1968-10-06": "Bathukamma Festival", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday; Eid al-Fitr", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", "1969-10-06": "Bathukamma Festival", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-04-06": "Eid al-Fitr", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", "1970-10-06": "Bathukamma Festival", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-06": "Eid al-Fitr", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", "1971-10-06": "Bathukamma Festival", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-06": "Eid al-Fitr", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", "1972-10-06": "Bathukamma Festival", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-06": "Eid al-Fitr", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", @@ -420,15 +420,15 @@ "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", "1973-10-06": "Bathukamma Festival", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-06": "Eid al-Fitr", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", @@ -438,15 +438,15 @@ "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", "1974-10-06": "Bathukamma Festival", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-06": "Eid al-Fitr", @@ -454,15 +454,15 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Bathukamma Festival; Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Bathukamma Festival; Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-06": "Eid al-Fitr", "1976-04-11": "Palm Sunday", "1976-04-16": "Good Friday", @@ -470,17 +470,17 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", "1976-10-06": "Bathukamma Festival", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-06": "Eid al-Fitr", "1977-04-08": "Good Friday", @@ -488,17 +488,17 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", "1977-10-06": "Bathukamma Festival", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -506,17 +506,17 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", "1978-10-06": "Bathukamma Festival", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-06": "Eid al-Fitr", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", @@ -524,33 +524,33 @@ "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", "1979-10-06": "Bathukamma Festival", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday; Eid al-Fitr", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", "1980-10-06": "Bathukamma Festival", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-06": "Eid al-Fitr", "1981-04-12": "Palm Sunday", @@ -558,16 +558,16 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", "1981-10-06": "Bathukamma Festival", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -576,16 +576,16 @@ "1982-04-11": "Easter Sunday", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", "1982-10-06": "Bathukamma Festival", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -594,15 +594,15 @@ "1983-04-06": "Eid al-Fitr", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", "1983-10-06": "Bathukamma Festival", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -612,15 +612,15 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", "1984-10-06": "Bathukamma Festival", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -630,15 +630,15 @@ "1985-04-07": "Easter Sunday", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", "1985-10-06": "Bathukamma Festival", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -648,14 +648,14 @@ "1986-04-06": "Eid al-Fitr", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", "1986-10-06": "Bathukamma Festival", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -664,16 +664,16 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", "1987-10-06": "Bathukamma Festival", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -682,16 +682,16 @@ "1988-04-03": "Easter Sunday", "1988-04-06": "Eid al-Fitr", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", "1988-10-06": "Bathukamma Festival", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -700,16 +700,16 @@ "1989-03-26": "Easter Sunday", "1989-04-06": "Eid al-Fitr", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", "1989-10-06": "Bathukamma Festival", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", @@ -717,15 +717,15 @@ "1990-04-08": "Palm Sunday", "1990-04-13": "Good Friday", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-10-06": "Bathukamma Festival", "1990-12-25": "Christmas Day", @@ -735,287 +735,287 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-06": "Eid al-Fitr", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-10-06": "Bathukamma Festival", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-06": "Eid al-Fitr", "1992-04-12": "Palm Sunday", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-10-06": "Bathukamma Festival", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-06": "Eid al-Fitr", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-10-06": "Bathukamma Festival", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-06": "Eid al-Fitr", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-10-06": "Bathukamma Festival", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-06": "Eid al-Fitr", "1995-04-09": "Palm Sunday", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-10-06": "Bathukamma Festival", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-06": "Eid al-Fitr", "1996-04-07": "Easter Sunday", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-10-06": "Bathukamma Festival", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-06": "Eid al-Fitr", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-10-06": "Bathukamma Festival", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", "1998-04-06": "Eid al-Fitr", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-10-06": "Bathukamma Festival", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-06": "Eid al-Fitr", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-10-06": "Bathukamma Festival", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-06": "Eid al-Fitr", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-10-06": "Bathukamma Festival", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-06": "Eid al-Fitr", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-10-06": "Bathukamma Festival", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-06": "Eid al-Fitr", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-10-06": "Bathukamma Festival", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-06": "Eid al-Fitr", "2003-04-13": "Palm Sunday", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-06": "Bathukamma Festival", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-06": "Eid al-Fitr", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-10-06": "Bathukamma Festival", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-06": "Eid al-Fitr", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-10-06": "Bathukamma Festival", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-06": "Eid al-Fitr", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -1024,16 +1024,16 @@ "2006-10-02": "Gandhi Jayanti", "2006-10-06": "Bathukamma Festival", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Eid al-Fitr; Good Friday", "2007-04-08": "Easter Sunday", @@ -1042,17 +1042,17 @@ "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", "2007-10-06": "Bathukamma Festival", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1060,17 +1060,17 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-06": "Bathukamma Festival", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-06": "Eid al-Fitr", @@ -1079,18 +1079,18 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-06": "Bathukamma Festival", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1099,18 +1099,18 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-10-06": "Bathukamma Festival", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-06": "Eid al-Fitr", "2011-04-17": "Palm Sunday", @@ -1119,18 +1119,18 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-06": "Bathukamma Festival", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Eid al-Fitr; Good Friday", @@ -1138,17 +1138,17 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", "2012-10-06": "Bathukamma Festival", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1157,17 +1157,17 @@ "2013-04-06": "Eid al-Fitr", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", "2013-10-06": "Bathukamma Festival", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1177,17 +1177,17 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-06": "Bathukamma Festival", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1197,16 +1197,16 @@ "2015-04-06": "Eid al-Fitr", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", "2015-10-06": "Bathukamma Festival", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1217,16 +1217,16 @@ "2016-04-06": "Eid al-Fitr", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", "2016-10-06": "Bathukamma Festival", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1237,16 +1237,16 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-06": "Bathukamma Festival", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1257,16 +1257,16 @@ "2018-04-06": "Eid al-Fitr", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-10-06": "Bathukamma Festival", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1276,17 +1276,17 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-06": "Bathukamma Festival", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1296,16 +1296,16 @@ "2020-04-10": "Good Friday", "2020-04-12": "Easter Sunday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", "2020-10-06": "Bathukamma Festival", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1316,16 +1316,16 @@ "2021-04-04": "Easter Sunday", "2021-04-06": "Eid al-Fitr", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", "2021-10-06": "Bathukamma Festival", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1336,16 +1336,16 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", "2022-10-06": "Bathukamma Festival", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1355,15 +1355,15 @@ "2023-04-06": "Eid al-Fitr", "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-10-06": "Bathukamma Festival", "2023-11-12": "Diwali", @@ -1375,15 +1375,15 @@ "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", "2024-04-06": "Eid al-Fitr", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-10-06": "Bathukamma Festival", "2024-11-01": "Diwali", @@ -1391,19 +1391,19 @@ "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-06": "Eid al-Fitr", "2025-04-13": "Palm Sunday", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-06": "Bathukamma Festival", "2025-10-20": "Diwali", @@ -1411,37 +1411,37 @@ "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-06": "Eid al-Fitr", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-10-06": "Bathukamma Festival", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-06": "Eid al-Fitr", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-06": "Bathukamma Festival", @@ -1449,19 +1449,19 @@ "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-06": "Eid al-Fitr", "2028-04-09": "Palm Sunday", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-06": "Bathukamma Festival", @@ -1469,19 +1469,19 @@ "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-06": "Eid al-Fitr", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-10-06": "Bathukamma Festival", @@ -1489,153 +1489,153 @@ "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", "2030-04-06": "Eid al-Fitr", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-06": "Bathukamma Festival", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Eid al-Fitr; Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-10-06": "Bathukamma Festival", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-06": "Eid al-Fitr", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-10-06": "Bathukamma Festival", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", "2033-04-06": "Eid al-Fitr", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", "2033-10-06": "Bathukamma Festival", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-06": "Eid al-Fitr", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", "2034-10-06": "Bathukamma Festival", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-06": "Eid al-Fitr", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", "2035-10-06": "Bathukamma Festival", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Eid al-Fitr; Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", "2036-10-06": "Bathukamma Festival", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-06": "Eid al-Fitr", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", "2037-10-06": "Bathukamma Festival", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-06": "Eid al-Fitr", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1644,16 +1644,16 @@ "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", "2038-10-06": "Bathukamma Festival", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Eid al-Fitr; Mawlid* (*estimated)", + "2039-04-06": "Eid al-Fitr; Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-05-01": "Labour Day", @@ -1661,15 +1661,15 @@ "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", "2039-10-06": "Bathukamma Festival", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-06": "Eid al-Fitr", @@ -1678,15 +1678,15 @@ "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", "2040-10-06": "Bathukamma Festival", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-06": "Eid al-Fitr", "2041-04-14": "Palm Sunday", "2041-04-19": "Good Friday", @@ -1694,34 +1694,34 @@ "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", "2041-10-06": "Bathukamma Festival", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday; Eid al-Fitr", "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", "2042-10-06": "Bathukamma Festival", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1729,17 +1729,17 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", "2043-10-06": "Bathukamma Festival", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-06": "Eid al-Fitr", "2044-04-10": "Palm Sunday", "2044-04-15": "Good Friday", @@ -1747,33 +1747,33 @@ "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", "2044-10-06": "Bathukamma Festival", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-06": "Eid al-Fitr", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", "2045-10-06": "Bathukamma Festival", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1781,16 +1781,16 @@ "2046-04-06": "Eid al-Fitr", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", "2046-10-06": "Bathukamma Festival", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-06": "Eid al-Fitr", @@ -1799,16 +1799,16 @@ "2047-04-14": "Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", "2047-10-06": "Bathukamma Festival", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1817,15 +1817,15 @@ "2048-04-06": "Eid al-Fitr", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", "2048-10-06": "Bathukamma Festival", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1835,15 +1835,15 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", "2049-10-06": "Bathukamma Festival", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1853,14 +1853,14 @@ "2050-04-10": "Easter Sunday", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", "2050-10-06": "Bathukamma Festival", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_UK.json b/snapshots/countries/IN_UK.json index a1bfb6c38..dd3939533 100644 --- a/snapshots/countries/IN_UK.json +++ b/snapshots/countries/IN_UK.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -8,14 +8,14 @@ "1950-04-14": "Dr. B. R. Ambedkar's Jayanti", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -25,14 +25,14 @@ "1951-04-14": "Dr. B. R. Ambedkar's Jayanti", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -42,14 +42,14 @@ "1952-04-14": "Dr. B. R. Ambedkar's Jayanti", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -59,14 +59,14 @@ "1953-04-14": "Dr. B. R. Ambedkar's Jayanti", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -75,15 +75,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -92,15 +92,15 @@ "1955-04-10": "Easter Sunday", "1955-04-14": "Dr. B. R. Ambedkar's Jayanti", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -109,30 +109,30 @@ "1956-04-01": "Easter Sunday", "1956-04-14": "Dr. B. R. Ambedkar's Jayanti", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", @@ -140,15 +140,15 @@ "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -156,256 +156,256 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-04-14": "Dr. B. R. Ambedkar's Jayanti", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-04-14": "Dr. B. R. Ambedkar's Jayanti", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-04-14": "Dr. B. R. Ambedkar's Jayanti", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-14": "Dr. B. R. Ambedkar's Jayanti", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", @@ -413,15 +413,15 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -429,15 +429,15 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti", "1976-04-16": "Good Friday", @@ -445,16 +445,16 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -462,16 +462,16 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -479,16 +479,16 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -496,32 +496,32 @@ "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-14": "Dr. B. R. Ambedkar's Jayanti", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -529,15 +529,15 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -546,15 +546,15 @@ "1982-04-14": "Dr. B. R. Ambedkar's Jayanti", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -563,14 +563,14 @@ "1983-04-14": "Dr. B. R. Ambedkar's Jayanti", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -580,14 +580,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -597,14 +597,14 @@ "1985-04-14": "Dr. B. R. Ambedkar's Jayanti", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -614,13 +614,13 @@ "1986-04-14": "Dr. B. R. Ambedkar's Jayanti", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -629,15 +629,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -646,15 +646,15 @@ "1988-04-03": "Easter Sunday", "1988-04-14": "Dr. B. R. Ambedkar's Jayanti", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -663,15 +663,15 @@ "1989-03-26": "Easter Sunday", "1989-04-14": "Dr. B. R. Ambedkar's Jayanti", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", @@ -679,15 +679,15 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -696,270 +696,270 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-14": "Dr. B. R. Ambedkar's Jayanti", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-14": "Dr. B. R. Ambedkar's Jayanti", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-14": "Dr. B. R. Ambedkar's Jayanti", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-14": "Dr. B. R. Ambedkar's Jayanti", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -967,16 +967,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -985,17 +985,17 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1003,16 +1003,16 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1021,17 +1021,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1040,17 +1040,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti", "2011-04-17": "Palm Sunday", @@ -1059,17 +1059,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1078,16 +1078,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1096,16 +1096,16 @@ "2013-04-14": "Dr. B. R. Ambedkar's Jayanti", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1115,16 +1115,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1134,15 +1134,15 @@ "2015-04-14": "Dr. B. R. Ambedkar's Jayanti", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1153,15 +1153,15 @@ "2016-04-14": "Dr. B. R. Ambedkar's Jayanti", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1171,15 +1171,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1190,15 +1190,15 @@ "2018-04-14": "Dr. B. R. Ambedkar's Jayanti", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1207,16 +1207,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1226,15 +1226,15 @@ "2020-04-12": "Easter Sunday", "2020-04-14": "Dr. B. R. Ambedkar's Jayanti", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1245,15 +1245,15 @@ "2021-04-04": "Easter Sunday", "2021-04-14": "Dr. B. R. Ambedkar's Jayanti", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1264,15 +1264,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1282,15 +1282,15 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1300,254 +1300,254 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-14": "Dr. B. R. Ambedkar's Jayanti", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-14": "Dr. B. R. Ambedkar's Jayanti", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-14": "Dr. B. R. Ambedkar's Jayanti", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-14": "Dr. B. R. Ambedkar's Jayanti", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Dr. B. R. Ambedkar's Jayanti", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1555,16 +1555,16 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1572,15 +1572,15 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1588,31 +1588,31 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1620,16 +1620,16 @@ "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1637,16 +1637,16 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti", "2044-04-15": "Good Friday", @@ -1654,31 +1654,31 @@ "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-14": "Dr. B. R. Ambedkar's Jayanti", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1686,15 +1686,15 @@ "2046-04-14": "Dr. B. R. Ambedkar's Jayanti", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1702,15 +1702,15 @@ "2047-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1719,14 +1719,14 @@ "2048-04-14": "Dr. B. R. Ambedkar's Jayanti", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1736,14 +1736,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1753,13 +1753,13 @@ "2050-04-14": "Dr. B. R. Ambedkar's Jayanti", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_UP.json b/snapshots/countries/IN_UP.json index a1bfb6c38..dd3939533 100644 --- a/snapshots/countries/IN_UP.json +++ b/snapshots/countries/IN_UP.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -8,14 +8,14 @@ "1950-04-14": "Dr. B. R. Ambedkar's Jayanti", "1950-05-01": "Labour Day", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -25,14 +25,14 @@ "1951-04-14": "Dr. B. R. Ambedkar's Jayanti", "1951-05-01": "Labour Day", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -42,14 +42,14 @@ "1952-04-14": "Dr. B. R. Ambedkar's Jayanti", "1952-05-01": "Labour Day", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -59,14 +59,14 @@ "1953-04-14": "Dr. B. R. Ambedkar's Jayanti", "1953-05-01": "Labour Day", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -75,15 +75,15 @@ "1954-04-16": "Good Friday", "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -92,15 +92,15 @@ "1955-04-10": "Easter Sunday", "1955-04-14": "Dr. B. R. Ambedkar's Jayanti", "1955-05-01": "Labour Day", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -109,30 +109,30 @@ "1956-04-01": "Easter Sunday", "1956-04-14": "Dr. B. R. Ambedkar's Jayanti", "1956-05-01": "Labour Day", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", "1957-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", @@ -140,15 +140,15 @@ "1958-04-04": "Good Friday", "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -156,256 +156,256 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti", "1959-05-01": "Labour Day", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti", "1960-04-15": "Good Friday", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", "1961-04-14": "Dr. B. R. Ambedkar's Jayanti", "1961-05-01": "Labour Day", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti", "1962-04-15": "Palm Sunday", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "1968-05-01": "Labour Day", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", "1969-04-14": "Dr. B. R. Ambedkar's Jayanti", "1969-05-01": "Labour Day", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", "1970-04-14": "Dr. B. R. Ambedkar's Jayanti", "1970-05-01": "Labour Day", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-14": "Dr. B. R. Ambedkar's Jayanti", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday", + "1973-04-15": "Mawlid (estimated); Palm Sunday", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", @@ -413,15 +413,15 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -429,15 +429,15 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti", "1976-04-16": "Good Friday", @@ -445,16 +445,16 @@ "1976-05-01": "Labour Day", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -462,16 +462,16 @@ "1977-05-01": "Labour Day", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -479,16 +479,16 @@ "1978-05-01": "Labour Day", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -496,32 +496,32 @@ "1979-05-01": "Labour Day", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", "1980-04-14": "Dr. B. R. Ambedkar's Jayanti", "1980-05-01": "Labour Day", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -529,15 +529,15 @@ "1981-04-19": "Easter Sunday", "1981-05-01": "Labour Day", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -546,15 +546,15 @@ "1982-04-14": "Dr. B. R. Ambedkar's Jayanti", "1982-05-01": "Labour Day", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -563,14 +563,14 @@ "1983-04-14": "Dr. B. R. Ambedkar's Jayanti", "1983-05-01": "Labour Day", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -580,14 +580,14 @@ "1984-04-22": "Easter Sunday", "1984-05-01": "Labour Day", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -597,14 +597,14 @@ "1985-04-14": "Dr. B. R. Ambedkar's Jayanti", "1985-05-01": "Labour Day", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -614,13 +614,13 @@ "1986-04-14": "Dr. B. R. Ambedkar's Jayanti", "1986-05-01": "Labour Day", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -629,15 +629,15 @@ "1987-04-17": "Good Friday", "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -646,15 +646,15 @@ "1988-04-03": "Easter Sunday", "1988-04-14": "Dr. B. R. Ambedkar's Jayanti", "1988-05-01": "Labour Day", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -663,15 +663,15 @@ "1989-03-26": "Easter Sunday", "1989-04-14": "Dr. B. R. Ambedkar's Jayanti", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", @@ -679,15 +679,15 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti", "1990-04-15": "Easter Sunday", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -696,270 +696,270 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1991-04-15": "Eid ul-Fitr* (*estimated)", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated)", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti", "1992-04-17": "Good Friday", "1992-04-19": "Easter Sunday", "1992-05-01": "Labour Day", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", "1993-04-14": "Dr. B. R. Ambedkar's Jayanti", "1993-05-01": "Labour Day", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-14": "Dr. B. R. Ambedkar's Jayanti", "1994-05-01": "Labour Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2000-04-15": "Day of Ashura* (*estimated)", + "2000-04-15": "Day of Ashura (estimated)", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti", "2001-04-15": "Easter Sunday", "2001-05-01": "Labour Day", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-14": "Dr. B. R. Ambedkar's Jayanti", "2002-05-01": "Labour Day", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-14": "Dr. B. R. Ambedkar's Jayanti", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2006-04-16": "Easter Sunday", "2006-05-01": "Labour Day", @@ -967,16 +967,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -985,17 +985,17 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1003,16 +1003,16 @@ "2008-05-01": "Labour Day", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1021,17 +1021,17 @@ "2009-05-01": "Labour Day", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1040,17 +1040,17 @@ "2010-05-01": "Labour Day", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti", "2011-04-17": "Palm Sunday", @@ -1059,17 +1059,17 @@ "2011-05-01": "Labour Day", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1078,16 +1078,16 @@ "2012-05-01": "Labour Day", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1096,16 +1096,16 @@ "2013-04-14": "Dr. B. R. Ambedkar's Jayanti", "2013-05-01": "Labour Day", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1115,16 +1115,16 @@ "2014-04-20": "Easter Sunday", "2014-05-01": "Labour Day", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1134,15 +1134,15 @@ "2015-04-14": "Dr. B. R. Ambedkar's Jayanti", "2015-05-01": "Labour Day", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1153,15 +1153,15 @@ "2016-04-14": "Dr. B. R. Ambedkar's Jayanti", "2016-05-01": "Labour Day", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1171,15 +1171,15 @@ "2017-04-16": "Easter Sunday", "2017-05-01": "Labour Day", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1190,15 +1190,15 @@ "2018-04-14": "Dr. B. R. Ambedkar's Jayanti", "2018-05-01": "Labour Day", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1207,16 +1207,16 @@ "2019-04-19": "Good Friday", "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1226,15 +1226,15 @@ "2020-04-12": "Easter Sunday", "2020-04-14": "Dr. B. R. Ambedkar's Jayanti", "2020-05-01": "Labour Day", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1245,15 +1245,15 @@ "2021-04-04": "Easter Sunday", "2021-04-14": "Dr. B. R. Ambedkar's Jayanti", "2021-05-01": "Labour Day", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1264,15 +1264,15 @@ "2022-04-15": "Good Friday", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1282,15 +1282,15 @@ "2023-04-07": "Good Friday", "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1300,254 +1300,254 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti", "2024-05-01": "Labour Day", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-14": "Dr. B. R. Ambedkar's Jayanti", "2026-05-01": "Labour Day", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-04-14": "Dr. B. R. Ambedkar's Jayanti", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-14": "Dr. B. R. Ambedkar's Jayanti", "2034-05-01": "Labour Day", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-14": "Dr. B. R. Ambedkar's Jayanti", "2035-05-01": "Labour Day", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Dr. B. R. Ambedkar's Jayanti", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1555,16 +1555,16 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1572,15 +1572,15 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti", @@ -1588,31 +1588,31 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", "2041-05-01": "Labour Day", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1620,16 +1620,16 @@ "2042-05-01": "Labour Day", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1637,16 +1637,16 @@ "2043-05-01": "Labour Day", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti", "2044-04-15": "Good Friday", @@ -1654,31 +1654,31 @@ "2044-05-01": "Labour Day", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-14": "Dr. B. R. Ambedkar's Jayanti", "2045-05-01": "Labour Day", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1686,15 +1686,15 @@ "2046-04-14": "Dr. B. R. Ambedkar's Jayanti", "2046-05-01": "Labour Day", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1702,15 +1702,15 @@ "2047-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday", "2047-05-01": "Labour Day", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1719,14 +1719,14 @@ "2048-04-14": "Dr. B. R. Ambedkar's Jayanti", "2048-05-01": "Labour Day", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1736,14 +1736,14 @@ "2049-04-18": "Easter Sunday", "2049-05-01": "Labour Day", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1753,13 +1753,13 @@ "2050-04-14": "Dr. B. R. Ambedkar's Jayanti", "2050-05-01": "Labour Day", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IN_WB.json b/snapshots/countries/IN_WB.json index 9e0de4dfa..a1367a531 100644 --- a/snapshots/countries/IN_WB.json +++ b/snapshots/countries/IN_WB.json @@ -1,5 +1,5 @@ { - "1950-01-01": "Mawlid* (*estimated)", + "1950-01-01": "Mawlid (estimated)", "1950-01-14": "Makar Sankranti / Pongal", "1950-01-26": "Republic Day", "1950-04-02": "Palm Sunday", @@ -10,14 +10,14 @@ "1950-05-01": "Labour Day", "1950-05-09": "Rabindra Jayanti", "1950-05-28": "Feast of Pentecost", - "1950-07-16": "Eid ul-Fitr* (*estimated)", - "1950-07-17": "Eid ul-Fitr* (*estimated)", + "1950-07-16": "Eid ul-Fitr (estimated)", + "1950-07-17": "Eid ul-Fitr (estimated)", "1950-08-15": "Independence Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", "1950-10-02": "Gandhi Jayanti", - "1950-10-22": "Day of Ashura* (*estimated)", - "1950-12-22": "Mawlid* (*estimated)", + "1950-10-22": "Day of Ashura (estimated)", + "1950-12-22": "Mawlid (estimated)", "1950-12-25": "Christmas Day", "1951-01-14": "Makar Sankranti / Pongal", "1951-01-26": "Republic Day", @@ -29,14 +29,14 @@ "1951-05-01": "Labour Day", "1951-05-09": "Rabindra Jayanti", "1951-05-13": "Feast of Pentecost", - "1951-07-06": "Eid ul-Fitr* (*estimated)", - "1951-07-07": "Eid ul-Fitr* (*estimated)", + "1951-07-06": "Eid ul-Fitr (estimated)", + "1951-07-07": "Eid ul-Fitr (estimated)", "1951-08-15": "Independence Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", "1951-10-02": "Gandhi Jayanti", - "1951-10-11": "Day of Ashura* (*estimated)", - "1951-12-11": "Mawlid* (*estimated)", + "1951-10-11": "Day of Ashura (estimated)", + "1951-12-11": "Mawlid (estimated)", "1951-12-25": "Christmas Day", "1952-01-14": "Makar Sankranti / Pongal", "1952-01-26": "Republic Day", @@ -48,14 +48,14 @@ "1952-05-01": "Labour Day", "1952-05-09": "Rabindra Jayanti", "1952-06-01": "Feast of Pentecost", - "1952-06-23": "Eid ul-Fitr* (*estimated)", - "1952-06-24": "Eid ul-Fitr* (*estimated)", + "1952-06-23": "Eid ul-Fitr (estimated)", + "1952-06-24": "Eid ul-Fitr (estimated)", "1952-08-15": "Independence Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-30": "Day of Ashura* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-30": "Day of Ashura (estimated)", "1952-10-02": "Gandhi Jayanti", - "1952-11-30": "Mawlid* (*estimated)", + "1952-11-30": "Mawlid (estimated)", "1952-12-25": "Christmas Day", "1953-01-14": "Makar Sankranti / Pongal", "1953-01-26": "Republic Day", @@ -67,14 +67,14 @@ "1953-05-01": "Labour Day", "1953-05-09": "Rabindra Jayanti", "1953-05-24": "Feast of Pentecost", - "1953-06-13": "Eid ul-Fitr* (*estimated)", - "1953-06-14": "Eid ul-Fitr* (*estimated)", + "1953-06-13": "Eid ul-Fitr (estimated)", + "1953-06-14": "Eid ul-Fitr (estimated)", "1953-08-15": "Independence Day", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-19": "Day of Ashura* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-19": "Day of Ashura (estimated)", "1953-10-02": "Gandhi Jayanti", - "1953-11-19": "Mawlid* (*estimated)", + "1953-11-19": "Mawlid (estimated)", "1953-12-25": "Christmas Day", "1954-01-14": "Makar Sankranti / Pongal", "1954-01-26": "Republic Day", @@ -85,15 +85,15 @@ "1954-04-18": "Easter Sunday", "1954-05-01": "Labour Day", "1954-05-09": "Rabindra Jayanti", - "1954-06-02": "Eid ul-Fitr* (*estimated)", - "1954-06-03": "Eid ul-Fitr* (*estimated)", + "1954-06-02": "Eid ul-Fitr (estimated)", + "1954-06-03": "Eid ul-Fitr (estimated)", "1954-06-06": "Feast of Pentecost", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-15": "Independence Day", - "1954-09-08": "Day of Ashura* (*estimated)", + "1954-09-08": "Day of Ashura (estimated)", "1954-10-02": "Gandhi Jayanti", - "1954-11-08": "Mawlid* (*estimated)", + "1954-11-08": "Mawlid (estimated)", "1954-12-25": "Christmas Day", "1955-01-14": "Makar Sankranti / Pongal", "1955-01-26": "Republic Day", @@ -104,15 +104,15 @@ "1955-04-15": "Pohela Boishakh", "1955-05-01": "Labour Day", "1955-05-09": "Rabindra Jayanti", - "1955-05-23": "Eid ul-Fitr* (*estimated)", - "1955-05-24": "Eid ul-Fitr* (*estimated)", + "1955-05-23": "Eid ul-Fitr (estimated)", + "1955-05-24": "Eid ul-Fitr (estimated)", "1955-05-29": "Feast of Pentecost", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-15": "Independence Day", - "1955-08-29": "Day of Ashura* (*estimated)", + "1955-08-29": "Day of Ashura (estimated)", "1955-10-02": "Gandhi Jayanti", - "1955-10-29": "Mawlid* (*estimated)", + "1955-10-29": "Mawlid (estimated)", "1955-12-25": "Christmas Day", "1956-01-14": "Makar Sankranti / Pongal", "1956-01-26": "Republic Day", @@ -123,15 +123,15 @@ "1956-04-15": "Pohela Boishakh", "1956-05-01": "Labour Day", "1956-05-09": "Rabindra Jayanti", - "1956-05-11": "Eid ul-Fitr* (*estimated)", - "1956-05-12": "Eid ul-Fitr* (*estimated)", + "1956-05-11": "Eid ul-Fitr (estimated)", + "1956-05-12": "Eid ul-Fitr (estimated)", "1956-05-20": "Feast of Pentecost", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", "1956-08-15": "Independence Day", - "1956-08-17": "Day of Ashura* (*estimated)", + "1956-08-17": "Day of Ashura (estimated)", "1956-10-02": "Gandhi Jayanti", - "1956-10-17": "Mawlid* (*estimated)", + "1956-10-17": "Mawlid (estimated)", "1956-12-25": "Christmas Day", "1957-01-14": "Makar Sankranti / Pongal", "1957-01-26": "Republic Day", @@ -139,16 +139,16 @@ "1957-04-15": "Pohela Boishakh", "1957-04-19": "Good Friday", "1957-04-21": "Easter Sunday", - "1957-05-01": "Eid ul-Fitr* (*estimated); Labour Day", - "1957-05-02": "Eid ul-Fitr* (*estimated)", + "1957-05-01": "Eid ul-Fitr (estimated); Labour Day", + "1957-05-02": "Eid ul-Fitr (estimated)", "1957-05-09": "Rabindra Jayanti", "1957-06-09": "Feast of Pentecost", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-08-06": "Day of Ashura* (*estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-08-06": "Day of Ashura (estimated)", "1957-08-15": "Independence Day", "1957-10-02": "Gandhi Jayanti", - "1957-10-06": "Mawlid* (*estimated)", + "1957-10-06": "Mawlid (estimated)", "1957-12-25": "Christmas Day", "1958-01-14": "Makar Sankranti / Pongal", "1958-01-26": "Republic Day", @@ -157,16 +157,16 @@ "1958-04-06": "Easter Sunday", "1958-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1958-04-15": "Pohela Boishakh", - "1958-04-20": "Eid ul-Fitr* (*estimated)", - "1958-04-21": "Eid ul-Fitr* (*estimated)", + "1958-04-20": "Eid ul-Fitr (estimated)", + "1958-04-21": "Eid ul-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-09": "Rabindra Jayanti", "1958-05-25": "Feast of Pentecost", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-07-27": "Day of Ashura* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-07-27": "Day of Ashura (estimated)", "1958-08-15": "Independence Day", - "1958-09-26": "Mawlid* (*estimated)", + "1958-09-26": "Mawlid (estimated)", "1958-10-02": "Gandhi Jayanti", "1958-12-25": "Christmas Day", "1959-01-14": "Makar Sankranti / Pongal", @@ -174,41 +174,41 @@ "1959-03-22": "Palm Sunday", "1959-03-27": "Good Friday", "1959-03-29": "Easter Sunday", - "1959-04-10": "Eid ul-Fitr* (*estimated)", - "1959-04-11": "Eid ul-Fitr* (*estimated)", + "1959-04-10": "Eid ul-Fitr (estimated)", + "1959-04-11": "Eid ul-Fitr (estimated)", "1959-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1959-04-15": "Pohela Boishakh", "1959-05-01": "Labour Day", "1959-05-09": "Rabindra Jayanti", "1959-05-17": "Feast of Pentecost", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-16": "Day of Ashura* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-16": "Day of Ashura (estimated)", "1959-08-15": "Independence Day", - "1959-09-15": "Mawlid* (*estimated)", + "1959-09-15": "Mawlid (estimated)", "1959-10-02": "Gandhi Jayanti", "1959-12-25": "Christmas Day", "1960-01-14": "Makar Sankranti / Pongal", "1960-01-26": "Republic Day", - "1960-03-28": "Eid ul-Fitr* (*estimated)", - "1960-03-29": "Eid ul-Fitr* (*estimated)", + "1960-03-28": "Eid ul-Fitr (estimated)", + "1960-03-29": "Eid ul-Fitr (estimated)", "1960-04-10": "Palm Sunday", "1960-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1960-04-15": "Good Friday; Pohela Boishakh", "1960-04-17": "Easter Sunday", "1960-05-01": "Labour Day", "1960-05-09": "Rabindra Jayanti", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated); Feast of Pentecost", - "1960-07-04": "Day of Ashura* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated); Feast of Pentecost", + "1960-07-04": "Day of Ashura (estimated)", "1960-08-15": "Independence Day", - "1960-09-03": "Mawlid* (*estimated)", + "1960-09-03": "Mawlid (estimated)", "1960-10-02": "Gandhi Jayanti", "1960-12-25": "Christmas Day", "1961-01-14": "Makar Sankranti / Pongal", "1961-01-26": "Republic Day", - "1961-03-18": "Eid ul-Fitr* (*estimated)", - "1961-03-19": "Eid ul-Fitr* (*estimated)", + "1961-03-18": "Eid ul-Fitr (estimated)", + "1961-03-19": "Eid ul-Fitr (estimated)", "1961-03-26": "Palm Sunday", "1961-03-31": "Good Friday", "1961-04-02": "Easter Sunday", @@ -217,148 +217,148 @@ "1961-05-01": "Labour Day", "1961-05-09": "Rabindra Jayanti", "1961-05-21": "Feast of Pentecost", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-23": "Day of Ashura* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-23": "Day of Ashura (estimated)", "1961-08-15": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-10-02": "Gandhi Jayanti", "1961-12-25": "Christmas Day", "1962-01-14": "Makar Sankranti / Pongal", "1962-01-26": "Republic Day", - "1962-03-07": "Eid ul-Fitr* (*estimated)", - "1962-03-08": "Eid ul-Fitr* (*estimated)", + "1962-03-07": "Eid ul-Fitr (estimated)", + "1962-03-08": "Eid ul-Fitr (estimated)", "1962-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1962-04-15": "Palm Sunday; Pohela Boishakh", "1962-04-20": "Good Friday", "1962-04-22": "Easter Sunday", "1962-05-01": "Labour Day", "1962-05-09": "Rabindra Jayanti", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", "1962-06-10": "Feast of Pentecost", - "1962-06-12": "Day of Ashura* (*estimated)", - "1962-08-12": "Mawlid* (*estimated)", + "1962-06-12": "Day of Ashura (estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Independence Day", "1962-10-02": "Gandhi Jayanti", "1962-12-25": "Christmas Day", "1963-01-14": "Makar Sankranti / Pongal", "1963-01-26": "Republic Day", - "1963-02-24": "Eid ul-Fitr* (*estimated)", - "1963-02-25": "Eid ul-Fitr* (*estimated)", + "1963-02-24": "Eid ul-Fitr (estimated)", + "1963-02-25": "Eid ul-Fitr (estimated)", "1963-04-07": "Palm Sunday", "1963-04-12": "Good Friday", "1963-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Pohela Boishakh", "1963-04-15": "Pohela Boishakh", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", "1963-05-09": "Rabindra Jayanti", - "1963-06-02": "Day of Ashura* (*estimated); Feast of Pentecost", - "1963-08-02": "Mawlid* (*estimated)", + "1963-06-02": "Day of Ashura (estimated); Feast of Pentecost", + "1963-08-02": "Mawlid (estimated)", "1963-08-15": "Independence Day", "1963-10-02": "Gandhi Jayanti", "1963-12-25": "Christmas Day", "1964-01-14": "Makar Sankranti / Pongal", "1964-01-26": "Republic Day", - "1964-02-14": "Eid ul-Fitr* (*estimated)", - "1964-02-15": "Eid ul-Fitr* (*estimated)", + "1964-02-14": "Eid ul-Fitr (estimated)", + "1964-02-15": "Eid ul-Fitr (estimated)", "1964-03-22": "Palm Sunday", "1964-03-27": "Good Friday", "1964-03-29": "Easter Sunday", "1964-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1964-04-15": "Pohela Boishakh", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", "1964-05-09": "Rabindra Jayanti", "1964-05-17": "Feast of Pentecost", - "1964-05-21": "Day of Ashura* (*estimated)", - "1964-07-21": "Mawlid* (*estimated)", + "1964-05-21": "Day of Ashura (estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-15": "Independence Day", "1964-10-02": "Gandhi Jayanti", "1964-12-25": "Christmas Day", "1965-01-14": "Makar Sankranti / Pongal", "1965-01-26": "Republic Day", - "1965-02-02": "Eid ul-Fitr* (*estimated)", - "1965-02-03": "Eid ul-Fitr* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated); Palm Sunday", - "1965-04-12": "Eid al-Adha* (*estimated)", + "1965-02-02": "Eid ul-Fitr (estimated)", + "1965-02-03": "Eid ul-Fitr (estimated)", + "1965-04-11": "Eid al-Adha (estimated); Palm Sunday", + "1965-04-12": "Eid al-Adha (estimated)", "1965-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1965-04-15": "Pohela Boishakh", "1965-04-16": "Good Friday", "1965-04-18": "Easter Sunday", "1965-05-01": "Labour Day", "1965-05-09": "Rabindra Jayanti", - "1965-05-10": "Day of Ashura* (*estimated)", + "1965-05-10": "Day of Ashura (estimated)", "1965-06-06": "Feast of Pentecost", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Independence Day", "1965-10-02": "Gandhi Jayanti", "1965-12-25": "Christmas Day", "1966-01-14": "Makar Sankranti / Pongal", - "1966-01-22": "Eid ul-Fitr* (*estimated)", - "1966-01-23": "Eid ul-Fitr* (*estimated)", + "1966-01-22": "Eid ul-Fitr (estimated)", + "1966-01-23": "Eid ul-Fitr (estimated)", "1966-01-26": "Republic Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", "1966-04-03": "Palm Sunday", "1966-04-08": "Good Friday", "1966-04-10": "Easter Sunday", "1966-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1966-04-15": "Pohela Boishakh", - "1966-04-30": "Day of Ashura* (*estimated)", + "1966-04-30": "Day of Ashura (estimated)", "1966-05-01": "Labour Day", "1966-05-09": "Rabindra Jayanti", "1966-05-29": "Feast of Pentecost", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Independence Day", "1966-10-02": "Gandhi Jayanti", "1966-12-25": "Christmas Day", - "1967-01-12": "Eid ul-Fitr* (*estimated)", - "1967-01-13": "Eid ul-Fitr* (*estimated)", + "1967-01-12": "Eid ul-Fitr (estimated)", + "1967-01-13": "Eid ul-Fitr (estimated)", "1967-01-14": "Makar Sankranti / Pongal", "1967-01-26": "Republic Day", "1967-03-19": "Palm Sunday", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", "1967-03-24": "Good Friday", "1967-03-26": "Easter Sunday", "1967-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1967-04-15": "Pohela Boishakh", - "1967-04-20": "Day of Ashura* (*estimated)", + "1967-04-20": "Day of Ashura (estimated)", "1967-05-01": "Labour Day", "1967-05-09": "Rabindra Jayanti", "1967-05-14": "Feast of Pentecost", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-15": "Independence Day", "1967-10-02": "Gandhi Jayanti", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid ul-Fitr* (*estimated)", - "1968-01-02": "Eid ul-Fitr* (*estimated)", + "1968-01-01": "Eid ul-Fitr (estimated)", + "1968-01-02": "Eid ul-Fitr (estimated)", "1968-01-14": "Makar Sankranti / Pongal", "1968-01-26": "Republic Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", "1968-04-07": "Palm Sunday", - "1968-04-08": "Day of Ashura* (*estimated)", + "1968-04-08": "Day of Ashura (estimated)", "1968-04-12": "Good Friday", "1968-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Pohela Boishakh", "1968-04-15": "Pohela Boishakh", "1968-05-01": "Labour Day", "1968-05-09": "Rabindra Jayanti", "1968-06-02": "Feast of Pentecost", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-15": "Independence Day", "1968-10-02": "Gandhi Jayanti", - "1968-12-21": "Eid ul-Fitr* (*estimated)", - "1968-12-22": "Eid ul-Fitr* (*estimated)", + "1968-12-21": "Eid ul-Fitr (estimated)", + "1968-12-22": "Eid ul-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-14": "Makar Sankranti / Pongal", "1969-01-26": "Republic Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-28": "Day of Ashura* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-28": "Day of Ashura (estimated)", "1969-03-30": "Palm Sunday", "1969-04-04": "Good Friday", "1969-04-06": "Easter Sunday", @@ -367,17 +367,17 @@ "1969-05-01": "Labour Day", "1969-05-09": "Rabindra Jayanti", "1969-05-25": "Feast of Pentecost", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-15": "Independence Day", "1969-10-02": "Gandhi Jayanti", - "1969-12-10": "Eid ul-Fitr* (*estimated)", - "1969-12-11": "Eid ul-Fitr* (*estimated)", + "1969-12-10": "Eid ul-Fitr (estimated)", + "1969-12-11": "Eid ul-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-14": "Makar Sankranti / Pongal", "1970-01-26": "Republic Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-03-18": "Day of Ashura* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-03-18": "Day of Ashura (estimated)", "1970-03-22": "Palm Sunday", "1970-03-27": "Good Friday", "1970-03-29": "Easter Sunday", @@ -386,55 +386,55 @@ "1970-05-01": "Labour Day", "1970-05-09": "Rabindra Jayanti", "1970-05-17": "Feast of Pentecost", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-15": "Independence Day", "1970-10-02": "Gandhi Jayanti", - "1970-11-30": "Eid ul-Fitr* (*estimated)", - "1970-12-01": "Eid ul-Fitr* (*estimated)", + "1970-11-30": "Eid ul-Fitr (estimated)", + "1970-12-01": "Eid ul-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-14": "Makar Sankranti / Pongal", "1971-01-26": "Republic Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-03-07": "Day of Ashura* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-03-07": "Day of Ashura (estimated)", "1971-04-04": "Palm Sunday", "1971-04-09": "Good Friday", "1971-04-11": "Easter Sunday", "1971-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1971-04-15": "Pohela Boishakh", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-05-09": "Rabindra Jayanti", "1971-05-30": "Feast of Pentecost", "1971-08-15": "Independence Day", "1971-10-02": "Gandhi Jayanti", - "1971-11-19": "Eid ul-Fitr* (*estimated)", - "1971-11-20": "Eid ul-Fitr* (*estimated)", + "1971-11-19": "Eid ul-Fitr (estimated)", + "1971-11-20": "Eid ul-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-14": "Makar Sankranti / Pongal", - "1972-01-26": "Eid al-Adha* (*estimated); Republic Day", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-25": "Day of Ashura* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated); Republic Day", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-25": "Day of Ashura (estimated)", "1972-03-26": "Palm Sunday", "1972-03-31": "Good Friday", "1972-04-02": "Easter Sunday", "1972-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1972-04-15": "Pohela Boishakh", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-05-09": "Rabindra Jayanti", "1972-05-21": "Feast of Pentecost", "1972-08-15": "Independence Day", "1972-10-02": "Gandhi Jayanti", - "1972-11-07": "Eid ul-Fitr* (*estimated)", - "1972-11-08": "Eid ul-Fitr* (*estimated)", + "1972-11-07": "Eid ul-Fitr (estimated)", + "1972-11-08": "Eid ul-Fitr (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Eid al-Adha* (*estimated); Makar Sankranti / Pongal", - "1973-01-15": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated); Makar Sankranti / Pongal", + "1973-01-15": "Eid al-Adha (estimated)", "1973-01-26": "Republic Day", - "1973-02-13": "Day of Ashura* (*estimated)", + "1973-02-13": "Day of Ashura (estimated)", "1973-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", - "1973-04-15": "Mawlid* (*estimated); Palm Sunday; Pohela Boishakh", + "1973-04-15": "Mawlid (estimated); Palm Sunday; Pohela Boishakh", "1973-04-20": "Good Friday", "1973-04-22": "Easter Sunday", "1973-05-01": "Labour Day", @@ -442,15 +442,15 @@ "1973-06-10": "Feast of Pentecost", "1973-08-15": "Independence Day", "1973-10-02": "Gandhi Jayanti", - "1973-10-27": "Eid ul-Fitr* (*estimated)", - "1973-10-28": "Eid ul-Fitr* (*estimated)", + "1973-10-27": "Eid ul-Fitr (estimated)", + "1973-10-28": "Eid ul-Fitr (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-14": "Makar Sankranti / Pongal", "1974-01-26": "Republic Day", - "1974-02-02": "Day of Ashura* (*estimated)", - "1974-04-04": "Mawlid* (*estimated)", + "1974-02-02": "Day of Ashura (estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-07": "Palm Sunday", "1974-04-12": "Good Friday", "1974-04-14": "Dr. B. R. Ambedkar's Jayanti; Easter Sunday; Pohela Boishakh", @@ -460,15 +460,15 @@ "1974-06-02": "Feast of Pentecost", "1974-08-15": "Independence Day", "1974-10-02": "Gandhi Jayanti", - "1974-10-16": "Eid ul-Fitr* (*estimated)", - "1974-10-17": "Eid ul-Fitr* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Christmas Day; Eid al-Adha* (*estimated)", + "1974-10-16": "Eid ul-Fitr (estimated)", + "1974-10-17": "Eid ul-Fitr (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Christmas Day; Eid al-Adha (estimated)", "1975-01-14": "Makar Sankranti / Pongal", - "1975-01-22": "Day of Ashura* (*estimated)", + "1975-01-22": "Day of Ashura (estimated)", "1975-01-26": "Republic Day", "1975-03-23": "Palm Sunday", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-28": "Good Friday", "1975-03-30": "Easter Sunday", "1975-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", @@ -478,15 +478,15 @@ "1975-05-18": "Feast of Pentecost", "1975-08-15": "Independence Day", "1975-10-02": "Gandhi Jayanti", - "1975-10-06": "Eid ul-Fitr* (*estimated)", - "1975-10-07": "Eid ul-Fitr* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-10-06": "Eid ul-Fitr (estimated)", + "1975-10-07": "Eid ul-Fitr (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", - "1976-01-11": "Day of Ashura* (*estimated)", + "1976-01-11": "Day of Ashura (estimated)", "1976-01-14": "Makar Sankranti / Pongal", "1976-01-26": "Republic Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-11": "Palm Sunday", "1976-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1976-04-15": "Pohela Boishakh", @@ -496,16 +496,16 @@ "1976-05-09": "Rabindra Jayanti", "1976-06-06": "Feast of Pentecost", "1976-08-15": "Independence Day", - "1976-09-24": "Eid ul-Fitr* (*estimated)", - "1976-09-25": "Eid ul-Fitr* (*estimated)", + "1976-09-24": "Eid ul-Fitr (estimated)", + "1976-09-25": "Eid ul-Fitr (estimated)", "1976-10-02": "Gandhi Jayanti", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-31": "Day of Ashura* (*estimated)", + "1976-12-31": "Day of Ashura (estimated)", "1977-01-14": "Makar Sankranti / Pongal", "1977-01-26": "Republic Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-04-03": "Palm Sunday", "1977-04-08": "Good Friday", "1977-04-10": "Easter Sunday", @@ -515,16 +515,16 @@ "1977-05-09": "Rabindra Jayanti", "1977-05-29": "Feast of Pentecost", "1977-08-15": "Independence Day", - "1977-09-14": "Eid ul-Fitr* (*estimated)", - "1977-09-15": "Eid ul-Fitr* (*estimated)", + "1977-09-14": "Eid ul-Fitr (estimated)", + "1977-09-15": "Eid ul-Fitr (estimated)", "1977-10-02": "Gandhi Jayanti", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-20": "Day of Ashura* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-20": "Day of Ashura (estimated)", "1977-12-25": "Christmas Day", "1978-01-14": "Makar Sankranti / Pongal", "1978-01-26": "Republic Day", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-19": "Palm Sunday", "1978-03-24": "Good Friday", "1978-03-26": "Easter Sunday", @@ -534,16 +534,16 @@ "1978-05-09": "Rabindra Jayanti", "1978-05-14": "Feast of Pentecost", "1978-08-15": "Independence Day", - "1978-09-03": "Eid ul-Fitr* (*estimated)", - "1978-09-04": "Eid ul-Fitr* (*estimated)", + "1978-09-03": "Eid ul-Fitr (estimated)", + "1978-09-04": "Eid ul-Fitr (estimated)", "1978-10-02": "Gandhi Jayanti", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", - "1978-12-10": "Day of Ashura* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", + "1978-12-10": "Day of Ashura (estimated)", "1978-12-25": "Christmas Day", "1979-01-14": "Makar Sankranti / Pongal", "1979-01-26": "Republic Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-04-08": "Palm Sunday", "1979-04-13": "Good Friday", "1979-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", @@ -552,16 +552,16 @@ "1979-05-09": "Rabindra Jayanti", "1979-06-03": "Feast of Pentecost", "1979-08-15": "Independence Day", - "1979-08-23": "Eid ul-Fitr* (*estimated)", - "1979-08-24": "Eid ul-Fitr* (*estimated)", + "1979-08-23": "Eid ul-Fitr (estimated)", + "1979-08-24": "Eid ul-Fitr (estimated)", "1979-10-02": "Gandhi Jayanti", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-29": "Day of Ashura* (*estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-29": "Day of Ashura (estimated)", "1979-12-25": "Christmas Day", "1980-01-14": "Makar Sankranti / Pongal", "1980-01-26": "Republic Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-30": "Palm Sunday", "1980-04-04": "Good Friday", "1980-04-06": "Easter Sunday", @@ -570,16 +570,16 @@ "1980-05-01": "Labour Day", "1980-05-09": "Rabindra Jayanti", "1980-05-25": "Feast of Pentecost", - "1980-08-12": "Eid ul-Fitr* (*estimated)", - "1980-08-13": "Eid ul-Fitr* (*estimated)", + "1980-08-12": "Eid ul-Fitr (estimated)", + "1980-08-13": "Eid ul-Fitr (estimated)", "1980-08-15": "Independence Day", "1980-10-02": "Gandhi Jayanti", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-11-18": "Day of Ashura* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-11-18": "Day of Ashura (estimated)", "1980-12-25": "Christmas Day", "1981-01-14": "Makar Sankranti / Pongal", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-01-26": "Republic Day", "1981-04-12": "Palm Sunday", "1981-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", @@ -589,15 +589,15 @@ "1981-05-01": "Labour Day", "1981-05-09": "Rabindra Jayanti", "1981-06-07": "Feast of Pentecost", - "1981-08-01": "Eid ul-Fitr* (*estimated)", - "1981-08-02": "Eid ul-Fitr* (*estimated)", + "1981-08-01": "Eid ul-Fitr (estimated)", + "1981-08-02": "Eid ul-Fitr (estimated)", "1981-08-15": "Independence Day", "1981-10-02": "Gandhi Jayanti", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-11-06": "Day of Ashura* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-11-06": "Day of Ashura (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-01-14": "Makar Sankranti / Pongal", "1982-01-26": "Republic Day", "1982-04-04": "Palm Sunday", @@ -608,15 +608,15 @@ "1982-05-01": "Labour Day", "1982-05-09": "Rabindra Jayanti", "1982-05-30": "Feast of Pentecost", - "1982-07-21": "Eid ul-Fitr* (*estimated)", - "1982-07-22": "Eid ul-Fitr* (*estimated)", + "1982-07-21": "Eid ul-Fitr (estimated)", + "1982-07-22": "Eid ul-Fitr (estimated)", "1982-08-15": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", "1982-10-02": "Gandhi Jayanti", - "1982-10-27": "Day of Ashura* (*estimated)", + "1982-10-27": "Day of Ashura (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-14": "Makar Sankranti / Pongal", "1983-01-26": "Republic Day", "1983-03-27": "Palm Sunday", @@ -627,14 +627,14 @@ "1983-05-01": "Labour Day", "1983-05-09": "Rabindra Jayanti", "1983-05-22": "Feast of Pentecost", - "1983-07-11": "Eid ul-Fitr* (*estimated)", - "1983-07-12": "Eid ul-Fitr* (*estimated)", + "1983-07-11": "Eid ul-Fitr (estimated)", + "1983-07-12": "Eid ul-Fitr (estimated)", "1983-08-15": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", "1983-10-02": "Gandhi Jayanti", - "1983-10-16": "Day of Ashura* (*estimated)", - "1983-12-16": "Mawlid* (*estimated)", + "1983-10-16": "Day of Ashura (estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-14": "Makar Sankranti / Pongal", "1984-01-26": "Republic Day", @@ -645,14 +645,14 @@ "1984-05-01": "Labour Day", "1984-05-09": "Rabindra Jayanti", "1984-06-10": "Feast of Pentecost", - "1984-06-30": "Eid ul-Fitr* (*estimated)", - "1984-07-01": "Eid ul-Fitr* (*estimated)", + "1984-06-30": "Eid ul-Fitr (estimated)", + "1984-07-01": "Eid ul-Fitr (estimated)", "1984-08-15": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", "1984-10-02": "Gandhi Jayanti", - "1984-10-05": "Day of Ashura* (*estimated)", - "1984-12-04": "Mawlid* (*estimated)", + "1984-10-05": "Day of Ashura (estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-14": "Makar Sankranti / Pongal", "1985-01-26": "Republic Day", @@ -664,14 +664,14 @@ "1985-05-01": "Labour Day", "1985-05-09": "Rabindra Jayanti", "1985-05-26": "Feast of Pentecost", - "1985-06-19": "Eid ul-Fitr* (*estimated)", - "1985-06-20": "Eid ul-Fitr* (*estimated)", + "1985-06-19": "Eid ul-Fitr (estimated)", + "1985-06-20": "Eid ul-Fitr (estimated)", "1985-08-15": "Independence Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-24": "Day of Ashura* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-24": "Day of Ashura (estimated)", "1985-10-02": "Gandhi Jayanti", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-12-25": "Christmas Day", "1986-01-14": "Makar Sankranti / Pongal", "1986-01-26": "Republic Day", @@ -683,13 +683,13 @@ "1986-05-01": "Labour Day", "1986-05-09": "Rabindra Jayanti", "1986-05-18": "Feast of Pentecost", - "1986-06-08": "Eid ul-Fitr* (*estimated)", - "1986-06-09": "Eid ul-Fitr* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated); Independence Day", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-09-14": "Day of Ashura* (*estimated)", + "1986-06-08": "Eid ul-Fitr (estimated)", + "1986-06-09": "Eid ul-Fitr (estimated)", + "1986-08-15": "Eid al-Adha (estimated); Independence Day", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-09-14": "Day of Ashura (estimated)", "1986-10-02": "Gandhi Jayanti", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", "1987-01-14": "Makar Sankranti / Pongal", "1987-01-26": "Republic Day", @@ -700,15 +700,15 @@ "1987-04-19": "Easter Sunday", "1987-05-01": "Labour Day", "1987-05-09": "Rabindra Jayanti", - "1987-05-28": "Eid ul-Fitr* (*estimated)", - "1987-05-29": "Eid ul-Fitr* (*estimated)", + "1987-05-28": "Eid ul-Fitr (estimated)", + "1987-05-29": "Eid ul-Fitr (estimated)", "1987-06-07": "Feast of Pentecost", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-15": "Independence Day", - "1987-09-03": "Day of Ashura* (*estimated)", + "1987-09-03": "Day of Ashura (estimated)", "1987-10-02": "Gandhi Jayanti", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-12-25": "Christmas Day", "1988-01-14": "Makar Sankranti / Pongal", "1988-01-26": "Republic Day", @@ -719,15 +719,15 @@ "1988-04-15": "Pohela Boishakh", "1988-05-01": "Labour Day", "1988-05-09": "Rabindra Jayanti", - "1988-05-16": "Eid ul-Fitr* (*estimated)", - "1988-05-17": "Eid ul-Fitr* (*estimated)", + "1988-05-16": "Eid ul-Fitr (estimated)", + "1988-05-17": "Eid ul-Fitr (estimated)", "1988-05-22": "Feast of Pentecost", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", "1988-08-15": "Independence Day", - "1988-08-22": "Day of Ashura* (*estimated)", + "1988-08-22": "Day of Ashura (estimated)", "1988-10-02": "Gandhi Jayanti", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", "1989-01-14": "Makar Sankranti / Pongal", "1989-01-26": "Republic Day", @@ -737,16 +737,16 @@ "1989-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1989-04-15": "Pohela Boishakh", "1989-05-01": "Labour Day", - "1989-05-06": "Eid ul-Fitr* (*estimated)", - "1989-05-07": "Eid ul-Fitr* (*estimated)", + "1989-05-06": "Eid ul-Fitr (estimated)", + "1989-05-07": "Eid ul-Fitr (estimated)", "1989-05-09": "Rabindra Jayanti", "1989-05-14": "Feast of Pentecost", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-11": "Day of Ashura* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-11": "Day of Ashura (estimated)", "1989-08-15": "Independence Day", "1989-10-02": "Gandhi Jayanti", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-12-25": "Christmas Day", "1990-01-14": "Makar Sankranti / Pongal", "1990-01-26": "Republic Day", @@ -754,16 +754,16 @@ "1990-04-13": "Good Friday", "1990-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1990-04-15": "Easter Sunday; Pohela Boishakh", - "1990-04-26": "Eid ul-Fitr* (*estimated)", - "1990-04-27": "Eid ul-Fitr* (*estimated)", + "1990-04-26": "Eid ul-Fitr (estimated)", + "1990-04-27": "Eid ul-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-05-09": "Rabindra Jayanti", "1990-06-03": "Feast of Pentecost", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-08-01": "Day of Ashura* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-08-01": "Day of Ashura (estimated)", "1990-08-15": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-10-02": "Gandhi Jayanti", "1990-12-25": "Christmas Day", "1991-01-14": "Makar Sankranti / Pongal", @@ -772,22 +772,22 @@ "1991-03-29": "Good Friday", "1991-03-31": "Easter Sunday", "1991-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", - "1991-04-15": "Eid ul-Fitr* (*estimated); Pohela Boishakh", - "1991-04-16": "Eid ul-Fitr* (*estimated)", + "1991-04-15": "Eid ul-Fitr (estimated); Pohela Boishakh", + "1991-04-16": "Eid ul-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-09": "Rabindra Jayanti", "1991-05-19": "Feast of Pentecost", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-07-21": "Day of Ashura* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-07-21": "Day of Ashura (estimated)", "1991-08-15": "Independence Day", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-10-02": "Gandhi Jayanti", "1991-12-25": "Christmas Day", "1992-01-14": "Makar Sankranti / Pongal", "1992-01-26": "Republic Day", - "1992-04-04": "Eid ul-Fitr* (*estimated)", - "1992-04-05": "Eid ul-Fitr* (*estimated)", + "1992-04-04": "Eid ul-Fitr (estimated)", + "1992-04-05": "Eid ul-Fitr (estimated)", "1992-04-12": "Palm Sunday", "1992-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1992-04-15": "Pohela Boishakh", @@ -796,17 +796,17 @@ "1992-05-01": "Labour Day", "1992-05-09": "Rabindra Jayanti", "1992-06-07": "Feast of Pentecost", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-10": "Day of Ashura* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-10": "Day of Ashura (estimated)", "1992-08-15": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-10-02": "Gandhi Jayanti", "1992-12-25": "Christmas Day", "1993-01-14": "Makar Sankranti / Pongal", "1993-01-26": "Republic Day", - "1993-03-24": "Eid ul-Fitr* (*estimated)", - "1993-03-25": "Eid ul-Fitr* (*estimated)", + "1993-03-24": "Eid ul-Fitr (estimated)", + "1993-03-25": "Eid ul-Fitr (estimated)", "1993-04-04": "Palm Sunday", "1993-04-09": "Good Friday", "1993-04-11": "Easter Sunday", @@ -815,17 +815,17 @@ "1993-05-01": "Labour Day", "1993-05-09": "Rabindra Jayanti", "1993-05-30": "Feast of Pentecost", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-30": "Day of Ashura* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-30": "Day of Ashura (estimated)", "1993-08-15": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-10-02": "Gandhi Jayanti", "1993-12-25": "Christmas Day", "1994-01-14": "Makar Sankranti / Pongal", "1994-01-26": "Republic Day", - "1994-03-13": "Eid ul-Fitr* (*estimated)", - "1994-03-14": "Eid ul-Fitr* (*estimated)", + "1994-03-13": "Eid ul-Fitr (estimated)", + "1994-03-14": "Eid ul-Fitr (estimated)", "1994-03-27": "Palm Sunday", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", @@ -833,132 +833,132 @@ "1994-04-15": "Pohela Boishakh", "1994-05-01": "Labour Day", "1994-05-09": "Rabindra Jayanti", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", "1994-05-22": "Feast of Pentecost", - "1994-06-19": "Day of Ashura* (*estimated)", + "1994-06-19": "Day of Ashura (estimated)", "1994-08-15": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-10-02": "Gandhi Jayanti", "1994-12-25": "Christmas Day", "1995-01-14": "Makar Sankranti / Pongal", "1995-01-26": "Republic Day", - "1995-03-02": "Eid ul-Fitr* (*estimated)", - "1995-03-03": "Eid ul-Fitr* (*estimated)", + "1995-03-02": "Eid ul-Fitr (estimated)", + "1995-03-03": "Eid ul-Fitr (estimated)", "1995-04-09": "Palm Sunday", "1995-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Pohela Boishakh", "1995-04-15": "Pohela Boishakh", "1995-04-16": "Easter Sunday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated); Rabindra Jayanti", - "1995-05-10": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated); Rabindra Jayanti", + "1995-05-10": "Eid al-Adha (estimated)", "1995-06-04": "Feast of Pentecost", - "1995-06-08": "Day of Ashura* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-06-08": "Day of Ashura (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-15": "Independence Day", "1995-10-02": "Gandhi Jayanti", "1995-12-25": "Christmas Day", "1996-01-14": "Makar Sankranti / Pongal", "1996-01-26": "Republic Day", - "1996-02-19": "Eid ul-Fitr* (*estimated)", - "1996-02-20": "Eid ul-Fitr* (*estimated)", + "1996-02-19": "Eid ul-Fitr (estimated)", + "1996-02-20": "Eid ul-Fitr (estimated)", "1996-03-31": "Palm Sunday", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday", "1996-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1996-04-15": "Pohela Boishakh", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", "1996-05-09": "Rabindra Jayanti", "1996-05-26": "Feast of Pentecost", - "1996-05-27": "Day of Ashura* (*estimated)", - "1996-07-27": "Mawlid* (*estimated)", + "1996-05-27": "Day of Ashura (estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-15": "Independence Day", "1996-10-02": "Gandhi Jayanti", "1996-12-25": "Christmas Day", "1997-01-14": "Makar Sankranti / Pongal", "1997-01-26": "Republic Day", - "1997-02-08": "Eid ul-Fitr* (*estimated)", - "1997-02-09": "Eid ul-Fitr* (*estimated)", + "1997-02-08": "Eid ul-Fitr (estimated)", + "1997-02-09": "Eid ul-Fitr (estimated)", "1997-03-23": "Palm Sunday", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1997-04-15": "Pohela Boishakh", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", "1997-05-09": "Rabindra Jayanti", - "1997-05-16": "Day of Ashura* (*estimated)", + "1997-05-16": "Day of Ashura (estimated)", "1997-05-18": "Feast of Pentecost", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-15": "Independence Day", "1997-10-02": "Gandhi Jayanti", "1997-12-25": "Christmas Day", "1998-01-14": "Makar Sankranti / Pongal", "1998-01-26": "Republic Day", - "1998-01-29": "Eid ul-Fitr* (*estimated)", - "1998-01-30": "Eid ul-Fitr* (*estimated)", + "1998-01-29": "Eid ul-Fitr (estimated)", + "1998-01-30": "Eid ul-Fitr (estimated)", "1998-04-05": "Palm Sunday", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1998-04-15": "Pohela Boishakh", "1998-05-01": "Labour Day", - "1998-05-06": "Day of Ashura* (*estimated)", + "1998-05-06": "Day of Ashura (estimated)", "1998-05-09": "Rabindra Jayanti", "1998-05-31": "Feast of Pentecost", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-15": "Independence Day", "1998-10-02": "Gandhi Jayanti", "1998-12-25": "Christmas Day", "1999-01-14": "Makar Sankranti / Pongal", - "1999-01-18": "Eid ul-Fitr* (*estimated)", - "1999-01-19": "Eid ul-Fitr* (*estimated)", + "1999-01-18": "Eid ul-Fitr (estimated)", + "1999-01-19": "Eid ul-Fitr (estimated)", "1999-01-26": "Republic Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated); Palm Sunday", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated); Palm Sunday", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "1999-04-15": "Pohela Boishakh", - "1999-04-26": "Day of Ashura* (*estimated)", + "1999-04-26": "Day of Ashura (estimated)", "1999-05-01": "Labour Day", "1999-05-09": "Rabindra Jayanti", "1999-05-23": "Feast of Pentecost", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Independence Day", "1999-10-02": "Gandhi Jayanti", "1999-12-25": "Christmas Day", - "2000-01-08": "Eid ul-Fitr* (*estimated)", - "2000-01-09": "Eid ul-Fitr* (*estimated)", + "2000-01-08": "Eid ul-Fitr (estimated)", + "2000-01-09": "Eid ul-Fitr (estimated)", "2000-01-14": "Makar Sankranti / Pongal", "2000-01-26": "Republic Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", "2000-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", - "2000-04-15": "Day of Ashura* (*estimated); Pohela Boishakh", + "2000-04-15": "Day of Ashura (estimated); Pohela Boishakh", "2000-04-16": "Palm Sunday", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-05-01": "Labour Day", "2000-05-09": "Rabindra Jayanti", "2000-06-11": "Feast of Pentecost", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-15": "Independence Day", "2000-10-02": "Gandhi Jayanti", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid ul-Fitr* (*estimated)", - "2000-12-28": "Eid ul-Fitr* (*estimated)", + "2000-12-27": "Eid ul-Fitr (estimated)", + "2000-12-28": "Eid ul-Fitr (estimated)", "2001-01-14": "Makar Sankranti / Pongal", "2001-01-26": "Republic Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", "2001-03-10": "Holi", - "2001-04-04": "Day of Ashura* (*estimated)", + "2001-04-04": "Day of Ashura (estimated)", "2001-04-08": "Palm Sunday", "2001-04-13": "Good Friday", "2001-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", @@ -966,18 +966,18 @@ "2001-05-01": "Labour Day", "2001-05-09": "Rabindra Jayanti", "2001-06-03": "Feast of Pentecost", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-15": "Independence Day", "2001-10-02": "Gandhi Jayanti", "2001-11-14": "Diwali", - "2001-12-16": "Eid ul-Fitr* (*estimated)", - "2001-12-17": "Eid ul-Fitr* (*estimated)", + "2001-12-16": "Eid ul-Fitr (estimated)", + "2001-12-17": "Eid ul-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-14": "Makar Sankranti / Pongal", "2002-01-26": "Republic Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-24": "Day of Ashura* (*estimated); Palm Sunday", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-24": "Day of Ashura (estimated); Palm Sunday", "2002-03-29": "Good Friday; Holi", "2002-03-31": "Easter Sunday", "2002-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", @@ -985,18 +985,18 @@ "2002-05-01": "Labour Day", "2002-05-09": "Rabindra Jayanti", "2002-05-19": "Feast of Pentecost", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-15": "Independence Day", "2002-10-02": "Gandhi Jayanti", "2002-11-04": "Diwali", - "2002-12-05": "Eid ul-Fitr* (*estimated)", - "2002-12-06": "Eid ul-Fitr* (*estimated)", + "2002-12-05": "Eid ul-Fitr (estimated)", + "2002-12-06": "Eid ul-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-14": "Makar Sankranti / Pongal", "2003-01-26": "Republic Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-13": "Day of Ashura* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-13": "Day of Ashura (estimated)", "2003-03-18": "Holi", "2003-04-13": "Palm Sunday", "2003-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", @@ -1005,63 +1005,63 @@ "2003-04-20": "Easter Sunday", "2003-05-01": "Labour Day", "2003-05-09": "Rabindra Jayanti", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-06-08": "Feast of Pentecost", "2003-08-15": "Independence Day", "2003-10-02": "Gandhi Jayanti", "2003-10-25": "Diwali", - "2003-11-25": "Eid ul-Fitr* (*estimated)", - "2003-11-26": "Eid ul-Fitr* (*estimated)", + "2003-11-25": "Eid ul-Fitr (estimated)", + "2003-11-26": "Eid ul-Fitr (estimated)", "2003-12-25": "Christmas Day", "2004-01-14": "Makar Sankranti / Pongal", "2004-01-26": "Republic Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-03-01": "Day of Ashura* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-03-01": "Day of Ashura (estimated)", "2004-03-07": "Holi", "2004-04-04": "Palm Sunday", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2004-04-15": "Pohela Boishakh", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-05-09": "Rabindra Jayanti", "2004-05-30": "Feast of Pentecost", "2004-08-15": "Independence Day", "2004-10-02": "Gandhi Jayanti", "2004-11-12": "Diwali", - "2004-11-14": "Eid ul-Fitr* (*estimated)", - "2004-11-15": "Eid ul-Fitr* (*estimated)", + "2004-11-14": "Eid ul-Fitr (estimated)", + "2004-11-15": "Eid ul-Fitr (estimated)", "2004-12-25": "Christmas Day", "2005-01-14": "Makar Sankranti / Pongal", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", "2005-01-26": "Republic Day", - "2005-02-19": "Day of Ashura* (*estimated)", + "2005-02-19": "Day of Ashura (estimated)", "2005-03-20": "Palm Sunday", "2005-03-25": "Good Friday", "2005-03-26": "Holi", "2005-03-27": "Easter Sunday", "2005-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2005-04-15": "Pohela Boishakh", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-09": "Rabindra Jayanti", "2005-05-15": "Feast of Pentecost", "2005-08-15": "Independence Day", "2005-10-02": "Gandhi Jayanti", "2005-11-01": "Diwali", - "2005-11-03": "Eid ul-Fitr* (*estimated)", - "2005-11-04": "Eid ul-Fitr* (*estimated)", + "2005-11-03": "Eid ul-Fitr (estimated)", + "2005-11-04": "Eid ul-Fitr (estimated)", "2005-12-25": "Christmas Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", "2006-01-14": "Makar Sankranti / Pongal", "2006-01-26": "Republic Day", - "2006-02-09": "Day of Ashura* (*estimated)", + "2006-02-09": "Day of Ashura (estimated)", "2006-03-15": "Holi", "2006-04-09": "Palm Sunday", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Pohela Boishakh", "2006-04-15": "Pohela Boishakh", "2006-04-16": "Easter Sunday", @@ -1071,16 +1071,16 @@ "2006-08-15": "Independence Day", "2006-10-02": "Gandhi Jayanti", "2006-10-21": "Diwali", - "2006-10-23": "Eid ul-Fitr* (*estimated)", - "2006-10-24": "Eid ul-Fitr* (*estimated)", + "2006-10-23": "Eid ul-Fitr (estimated)", + "2006-10-24": "Eid ul-Fitr (estimated)", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated)", "2007-01-14": "Makar Sankranti / Pongal", "2007-01-26": "Republic Day", - "2007-01-29": "Day of Ashura* (*estimated)", + "2007-01-29": "Day of Ashura (estimated)", "2007-03-04": "Holi", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-01": "Palm Sunday", "2007-04-06": "Good Friday", "2007-04-08": "Easter Sunday", @@ -1091,17 +1091,17 @@ "2007-05-27": "Feast of Pentecost", "2007-08-15": "Independence Day", "2007-10-02": "Gandhi Jayanti", - "2007-10-13": "Eid ul-Fitr* (*estimated)", - "2007-10-14": "Eid ul-Fitr* (*estimated)", + "2007-10-13": "Eid ul-Fitr (estimated)", + "2007-10-14": "Eid ul-Fitr (estimated)", "2007-11-09": "Diwali", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-14": "Makar Sankranti / Pongal", - "2008-01-19": "Day of Ashura* (*estimated)", + "2008-01-19": "Day of Ashura (estimated)", "2008-01-26": "Republic Day", "2008-03-16": "Palm Sunday", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-22": "Holi", "2008-03-23": "Easter Sunday", @@ -1111,16 +1111,16 @@ "2008-05-09": "Rabindra Jayanti", "2008-05-11": "Feast of Pentecost", "2008-08-15": "Independence Day", - "2008-10-01": "Eid ul-Fitr* (*estimated)", - "2008-10-02": "Eid ul-Fitr* (*estimated); Gandhi Jayanti", + "2008-10-01": "Eid ul-Fitr (estimated)", + "2008-10-02": "Eid ul-Fitr (estimated); Gandhi Jayanti", "2008-10-28": "Diwali", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", - "2009-01-07": "Day of Ashura* (*estimated)", + "2009-01-07": "Day of Ashura (estimated)", "2009-01-14": "Makar Sankranti / Pongal", "2009-01-26": "Republic Day", - "2009-03-09": "Mawlid* (*estimated)", + "2009-03-09": "Mawlid (estimated)", "2009-03-11": "Holi", "2009-04-05": "Palm Sunday", "2009-04-10": "Good Friday", @@ -1131,17 +1131,17 @@ "2009-05-09": "Rabindra Jayanti", "2009-05-31": "Feast of Pentecost", "2009-08-15": "Independence Day", - "2009-09-20": "Eid ul-Fitr* (*estimated)", - "2009-09-21": "Eid ul-Fitr* (*estimated)", + "2009-09-20": "Eid ul-Fitr (estimated)", + "2009-09-21": "Eid ul-Fitr (estimated)", "2009-10-02": "Gandhi Jayanti", "2009-10-17": "Diwali", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", "2009-12-25": "Christmas Day", - "2009-12-27": "Day of Ashura* (*estimated)", + "2009-12-27": "Day of Ashura (estimated)", "2010-01-14": "Makar Sankranti / Pongal", "2010-01-26": "Republic Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-01": "Holi", "2010-03-28": "Palm Sunday", "2010-04-02": "Good Friday", @@ -1152,17 +1152,17 @@ "2010-05-09": "Rabindra Jayanti", "2010-05-23": "Feast of Pentecost", "2010-08-15": "Independence Day", - "2010-09-10": "Eid ul-Fitr* (*estimated)", - "2010-09-11": "Eid ul-Fitr* (*estimated)", + "2010-09-10": "Eid ul-Fitr (estimated)", + "2010-09-11": "Eid ul-Fitr (estimated)", "2010-10-02": "Gandhi Jayanti", "2010-11-05": "Diwali", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-12-16": "Day of Ashura* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-12-16": "Day of Ashura (estimated)", "2010-12-25": "Christmas Day", "2011-01-14": "Makar Sankranti / Pongal", "2011-01-26": "Republic Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-20": "Holi", "2011-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2011-04-15": "Pohela Boishakh", @@ -1173,17 +1173,17 @@ "2011-05-09": "Rabindra Jayanti", "2011-06-12": "Feast of Pentecost", "2011-08-15": "Independence Day", - "2011-08-30": "Eid ul-Fitr* (*estimated)", - "2011-08-31": "Eid ul-Fitr* (*estimated)", + "2011-08-30": "Eid ul-Fitr (estimated)", + "2011-08-31": "Eid ul-Fitr (estimated)", "2011-10-02": "Gandhi Jayanti", "2011-10-26": "Diwali", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-12-05": "Day of Ashura* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-12-05": "Day of Ashura (estimated)", "2011-12-25": "Christmas Day", "2012-01-14": "Makar Sankranti / Pongal", "2012-01-26": "Republic Day", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "Holi", "2012-04-01": "Palm Sunday", "2012-04-06": "Good Friday", @@ -1194,16 +1194,16 @@ "2012-05-09": "Rabindra Jayanti", "2012-05-27": "Feast of Pentecost", "2012-08-15": "Independence Day", - "2012-08-19": "Eid ul-Fitr* (*estimated)", - "2012-08-20": "Eid ul-Fitr* (*estimated)", + "2012-08-19": "Eid ul-Fitr (estimated)", + "2012-08-20": "Eid ul-Fitr (estimated)", "2012-10-02": "Gandhi Jayanti", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-13": "Diwali", - "2012-11-24": "Day of Ashura* (*estimated)", + "2012-11-24": "Day of Ashura (estimated)", "2012-12-25": "Christmas Day", "2013-01-14": "Makar Sankranti / Pongal", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-01-26": "Republic Day", "2013-03-24": "Palm Sunday", "2013-03-27": "Holi", @@ -1214,16 +1214,16 @@ "2013-05-01": "Labour Day", "2013-05-09": "Rabindra Jayanti", "2013-05-19": "Feast of Pentecost", - "2013-08-08": "Eid ul-Fitr* (*estimated)", - "2013-08-09": "Eid ul-Fitr* (*estimated)", + "2013-08-08": "Eid ul-Fitr (estimated)", + "2013-08-09": "Eid ul-Fitr (estimated)", "2013-08-15": "Independence Day", "2013-10-02": "Gandhi Jayanti", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", "2013-11-03": "Diwali", - "2013-11-13": "Day of Ashura* (*estimated)", + "2013-11-13": "Day of Ashura (estimated)", "2013-12-25": "Christmas Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-01-14": "Makar Sankranti / Pongal", "2014-01-26": "Republic Day", "2014-03-17": "Holi", @@ -1235,16 +1235,16 @@ "2014-05-01": "Labour Day", "2014-05-09": "Rabindra Jayanti", "2014-06-08": "Feast of Pentecost", - "2014-07-28": "Eid ul-Fitr* (*estimated)", - "2014-07-29": "Eid ul-Fitr* (*estimated)", + "2014-07-28": "Eid ul-Fitr (estimated)", + "2014-07-29": "Eid ul-Fitr (estimated)", "2014-08-15": "Independence Day", "2014-10-02": "Gandhi Jayanti", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", "2014-10-23": "Diwali", - "2014-11-03": "Day of Ashura* (*estimated)", + "2014-11-03": "Day of Ashura (estimated)", "2014-12-25": "Christmas Day", - "2015-01-03": "Mawlid* (*estimated)", + "2015-01-03": "Mawlid (estimated)", "2015-01-14": "Makar Sankranti / Pongal", "2015-01-26": "Republic Day", "2015-03-06": "Holi", @@ -1256,15 +1256,15 @@ "2015-05-01": "Labour Day", "2015-05-09": "Rabindra Jayanti", "2015-05-24": "Feast of Pentecost", - "2015-07-17": "Eid ul-Fitr* (*estimated)", - "2015-07-18": "Eid ul-Fitr* (*estimated)", + "2015-07-17": "Eid ul-Fitr (estimated)", + "2015-07-18": "Eid ul-Fitr (estimated)", "2015-08-15": "Independence Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", "2015-10-02": "Gandhi Jayanti", - "2015-10-23": "Day of Ashura* (*estimated)", + "2015-10-23": "Day of Ashura (estimated)", "2015-11-11": "Diwali", - "2015-12-23": "Mawlid* (*estimated)", + "2015-12-23": "Mawlid (estimated)", "2015-12-25": "Christmas Day", "2016-01-14": "Makar Sankranti / Pongal", "2016-01-26": "Republic Day", @@ -1277,15 +1277,15 @@ "2016-05-01": "Labour Day", "2016-05-09": "Rabindra Jayanti", "2016-05-15": "Feast of Pentecost", - "2016-07-06": "Eid ul-Fitr* (*estimated)", - "2016-07-07": "Eid ul-Fitr* (*estimated)", + "2016-07-06": "Eid ul-Fitr (estimated)", + "2016-07-07": "Eid ul-Fitr (estimated)", "2016-08-15": "Independence Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", "2016-10-02": "Gandhi Jayanti", - "2016-10-11": "Day of Ashura* (*estimated)", + "2016-10-11": "Day of Ashura (estimated)", "2016-10-30": "Diwali", - "2016-12-11": "Mawlid* (*estimated)", + "2016-12-11": "Mawlid (estimated)", "2016-12-25": "Christmas Day", "2017-01-14": "Makar Sankranti / Pongal", "2017-01-26": "Republic Day", @@ -1297,15 +1297,15 @@ "2017-05-01": "Labour Day", "2017-05-09": "Rabindra Jayanti", "2017-06-04": "Feast of Pentecost", - "2017-06-25": "Eid ul-Fitr* (*estimated)", - "2017-06-26": "Eid ul-Fitr* (*estimated)", + "2017-06-25": "Eid ul-Fitr (estimated)", + "2017-06-26": "Eid ul-Fitr (estimated)", "2017-08-15": "Independence Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-30": "Day of Ashura* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-30": "Day of Ashura (estimated)", "2017-10-02": "Gandhi Jayanti", "2017-10-19": "Diwali", - "2017-11-30": "Mawlid* (*estimated)", + "2017-11-30": "Mawlid (estimated)", "2017-12-25": "Christmas Day", "2018-01-14": "Makar Sankranti / Pongal", "2018-01-26": "Republic Day", @@ -1318,15 +1318,15 @@ "2018-05-01": "Labour Day", "2018-05-09": "Rabindra Jayanti", "2018-05-20": "Feast of Pentecost", - "2018-06-15": "Eid ul-Fitr* (*estimated)", - "2018-06-16": "Eid ul-Fitr* (*estimated)", + "2018-06-15": "Eid ul-Fitr (estimated)", + "2018-06-16": "Eid ul-Fitr (estimated)", "2018-08-15": "Independence Day", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-20": "Day of Ashura* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-20": "Day of Ashura (estimated)", "2018-10-02": "Gandhi Jayanti", "2018-11-07": "Diwali", - "2018-11-20": "Mawlid* (*estimated)", + "2018-11-20": "Mawlid (estimated)", "2018-12-25": "Christmas Day", "2019-01-14": "Makar Sankranti / Pongal", "2019-01-26": "Republic Day", @@ -1337,16 +1337,16 @@ "2019-04-21": "Easter Sunday", "2019-05-01": "Labour Day", "2019-05-09": "Rabindra Jayanti", - "2019-06-04": "Eid ul-Fitr* (*estimated)", - "2019-06-05": "Eid ul-Fitr* (*estimated)", + "2019-06-04": "Eid ul-Fitr (estimated)", + "2019-06-05": "Eid ul-Fitr (estimated)", "2019-06-09": "Feast of Pentecost", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-15": "Independence Day", - "2019-09-09": "Day of Ashura* (*estimated)", + "2019-09-09": "Day of Ashura (estimated)", "2019-10-02": "Gandhi Jayanti", "2019-10-27": "Diwali", - "2019-11-09": "Mawlid* (*estimated)", + "2019-11-09": "Mawlid (estimated)", "2019-12-25": "Christmas Day", "2020-01-14": "Makar Sankranti / Pongal", "2020-01-26": "Republic Day", @@ -1358,15 +1358,15 @@ "2020-04-15": "Pohela Boishakh", "2020-05-01": "Labour Day", "2020-05-09": "Rabindra Jayanti", - "2020-05-24": "Eid ul-Fitr* (*estimated)", - "2020-05-25": "Eid ul-Fitr* (*estimated)", + "2020-05-24": "Eid ul-Fitr (estimated)", + "2020-05-25": "Eid ul-Fitr (estimated)", "2020-05-31": "Feast of Pentecost", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-15": "Independence Day", - "2020-08-29": "Day of Ashura* (*estimated)", + "2020-08-29": "Day of Ashura (estimated)", "2020-10-02": "Gandhi Jayanti", - "2020-10-29": "Mawlid* (*estimated)", + "2020-10-29": "Mawlid (estimated)", "2020-11-14": "Diwali", "2020-12-25": "Christmas Day", "2021-01-14": "Makar Sankranti / Pongal", @@ -1379,15 +1379,15 @@ "2021-04-15": "Pohela Boishakh", "2021-05-01": "Labour Day", "2021-05-09": "Rabindra Jayanti", - "2021-05-13": "Eid ul-Fitr* (*estimated)", - "2021-05-14": "Eid ul-Fitr* (*estimated)", + "2021-05-13": "Eid ul-Fitr (estimated)", + "2021-05-14": "Eid ul-Fitr (estimated)", "2021-05-23": "Feast of Pentecost", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-08-15": "Independence Day", - "2021-08-18": "Day of Ashura* (*estimated)", + "2021-08-18": "Day of Ashura (estimated)", "2021-10-02": "Gandhi Jayanti", - "2021-10-18": "Mawlid* (*estimated)", + "2021-10-18": "Mawlid (estimated)", "2021-11-04": "Diwali", "2021-12-25": "Christmas Day", "2022-01-14": "Makar Sankranti / Pongal", @@ -1398,16 +1398,16 @@ "2022-04-15": "Good Friday; Pohela Boishakh", "2022-04-17": "Easter Sunday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul-Fitr* (*estimated)", - "2022-05-03": "Eid ul-Fitr* (*estimated)", + "2022-05-02": "Eid ul-Fitr (estimated)", + "2022-05-03": "Eid ul-Fitr (estimated)", "2022-05-09": "Rabindra Jayanti", "2022-06-05": "Feast of Pentecost", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-08-08": "Day of Ashura* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-08-08": "Day of Ashura (estimated)", "2022-08-15": "Independence Day", "2022-10-02": "Gandhi Jayanti", - "2022-10-08": "Mawlid* (*estimated)", + "2022-10-08": "Mawlid (estimated)", "2022-10-24": "Diwali", "2022-12-25": "Christmas Day", "2023-01-14": "Makar Sankranti / Pongal", @@ -1418,16 +1418,16 @@ "2023-04-09": "Easter Sunday", "2023-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2023-04-15": "Pohela Boishakh", - "2023-04-21": "Eid ul-Fitr* (*estimated)", - "2023-04-22": "Eid ul-Fitr* (*estimated)", + "2023-04-21": "Eid ul-Fitr (estimated)", + "2023-04-22": "Eid ul-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-09": "Rabindra Jayanti", "2023-05-28": "Feast of Pentecost", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-28": "Day of Ashura* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-28": "Day of Ashura (estimated)", "2023-08-15": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-10-02": "Gandhi Jayanti", "2023-11-12": "Diwali", "2023-12-25": "Christmas Day", @@ -1437,26 +1437,26 @@ "2024-03-25": "Holi", "2024-03-29": "Good Friday", "2024-03-31": "Easter Sunday", - "2024-04-10": "Eid ul-Fitr* (*estimated)", - "2024-04-11": "Eid ul-Fitr* (*estimated)", + "2024-04-10": "Eid ul-Fitr (estimated)", + "2024-04-11": "Eid ul-Fitr (estimated)", "2024-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2024-04-15": "Pohela Boishakh", "2024-05-01": "Labour Day", "2024-05-09": "Rabindra Jayanti", "2024-05-19": "Feast of Pentecost", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-16": "Day of Ashura* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-16": "Day of Ashura (estimated)", "2024-08-15": "Independence Day", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-10-02": "Gandhi Jayanti", "2024-11-01": "Diwali", "2024-12-25": "Christmas Day", "2025-01-14": "Makar Sankranti / Pongal", "2025-01-26": "Republic Day", "2025-03-14": "Holi", - "2025-03-30": "Eid ul-Fitr* (*estimated)", - "2025-03-31": "Eid ul-Fitr* (*estimated)", + "2025-03-30": "Eid ul-Fitr (estimated)", + "2025-03-31": "Eid ul-Fitr (estimated)", "2025-04-13": "Palm Sunday", "2025-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2025-04-15": "Pohela Boishakh", @@ -1464,20 +1464,20 @@ "2025-04-20": "Easter Sunday", "2025-05-01": "Labour Day", "2025-05-09": "Rabindra Jayanti", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", "2025-06-08": "Feast of Pentecost", - "2025-07-05": "Day of Ashura* (*estimated)", + "2025-07-05": "Day of Ashura (estimated)", "2025-08-15": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-10-02": "Gandhi Jayanti", "2025-10-20": "Diwali", "2025-12-25": "Christmas Day", "2026-01-14": "Makar Sankranti / Pongal", "2026-01-26": "Republic Day", "2026-03-04": "Holi", - "2026-03-20": "Eid ul-Fitr* (*estimated)", - "2026-03-21": "Eid ul-Fitr* (*estimated)", + "2026-03-20": "Eid ul-Fitr (estimated)", + "2026-03-21": "Eid ul-Fitr (estimated)", "2026-03-29": "Palm Sunday", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", @@ -1486,18 +1486,18 @@ "2026-05-01": "Labour Day", "2026-05-09": "Rabindra Jayanti", "2026-05-24": "Feast of Pentecost", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-25": "Day of Ashura* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-25": "Day of Ashura (estimated)", "2026-08-15": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-10-02": "Gandhi Jayanti", "2026-11-08": "Diwali", "2026-12-25": "Christmas Day", "2027-01-14": "Makar Sankranti / Pongal", "2027-01-26": "Republic Day", - "2027-03-09": "Eid ul-Fitr* (*estimated)", - "2027-03-10": "Eid ul-Fitr* (*estimated)", + "2027-03-09": "Eid ul-Fitr (estimated)", + "2027-03-10": "Eid ul-Fitr (estimated)", "2027-03-21": "Palm Sunday", "2027-03-22": "Holi", "2027-03-26": "Good Friday", @@ -1506,135 +1506,135 @@ "2027-04-15": "Pohela Boishakh", "2027-05-01": "Labour Day", "2027-05-09": "Rabindra Jayanti", - "2027-05-16": "Eid al-Adha* (*estimated); Feast of Pentecost", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-15": "Day of Ashura* (*estimated)", - "2027-08-14": "Mawlid* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated); Feast of Pentecost", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-15": "Day of Ashura (estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Independence Day", "2027-10-02": "Gandhi Jayanti", "2027-10-29": "Diwali", "2027-12-25": "Christmas Day", "2028-01-14": "Makar Sankranti / Pongal", "2028-01-26": "Republic Day", - "2028-02-26": "Eid ul-Fitr* (*estimated)", - "2028-02-27": "Eid ul-Fitr* (*estimated)", + "2028-02-26": "Eid ul-Fitr (estimated)", + "2028-02-27": "Eid ul-Fitr (estimated)", "2028-03-11": "Holi", "2028-04-09": "Palm Sunday", "2028-04-14": "Dr. B. R. Ambedkar's Jayanti; Good Friday; Pohela Boishakh", "2028-04-15": "Pohela Boishakh", "2028-04-16": "Easter Sunday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", "2028-05-09": "Rabindra Jayanti", - "2028-06-03": "Day of Ashura* (*estimated)", + "2028-06-03": "Day of Ashura (estimated)", "2028-06-04": "Feast of Pentecost", - "2028-08-03": "Mawlid* (*estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-15": "Independence Day", "2028-10-02": "Gandhi Jayanti", "2028-10-17": "Diwali", "2028-12-25": "Christmas Day", "2029-01-14": "Makar Sankranti / Pongal", "2029-01-26": "Republic Day", - "2029-02-14": "Eid ul-Fitr* (*estimated)", - "2029-02-15": "Eid ul-Fitr* (*estimated)", + "2029-02-14": "Eid ul-Fitr (estimated)", + "2029-02-15": "Eid ul-Fitr (estimated)", "2029-03-01": "Holi", "2029-03-25": "Palm Sunday", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2029-04-15": "Pohela Boishakh", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-09": "Rabindra Jayanti", "2029-05-20": "Feast of Pentecost", - "2029-05-23": "Day of Ashura* (*estimated)", - "2029-07-24": "Mawlid* (*estimated)", + "2029-05-23": "Day of Ashura (estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Independence Day", "2029-10-02": "Gandhi Jayanti", "2029-11-05": "Diwali", "2029-12-25": "Christmas Day", "2030-01-14": "Makar Sankranti / Pongal", "2030-01-26": "Republic Day", - "2030-02-04": "Eid ul-Fitr* (*estimated)", - "2030-02-05": "Eid ul-Fitr* (*estimated)", + "2030-02-04": "Eid ul-Fitr (estimated)", + "2030-02-05": "Eid ul-Fitr (estimated)", "2030-03-20": "Holi", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha* (*estimated); Palm Sunday; Pohela Boishakh", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Dr. B. R. Ambedkar's Jayanti; Eid al-Adha (estimated); Palm Sunday; Pohela Boishakh", "2030-04-15": "Pohela Boishakh", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-05-01": "Labour Day", "2030-05-09": "Rabindra Jayanti", - "2030-05-12": "Day of Ashura* (*estimated)", + "2030-05-12": "Day of Ashura (estimated)", "2030-06-09": "Feast of Pentecost", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-15": "Independence Day", "2030-10-02": "Gandhi Jayanti", "2030-10-26": "Diwali", "2030-12-25": "Christmas Day", "2031-01-14": "Makar Sankranti / Pongal", - "2031-01-24": "Eid ul-Fitr* (*estimated)", - "2031-01-25": "Eid ul-Fitr* (*estimated)", + "2031-01-24": "Eid ul-Fitr (estimated)", + "2031-01-25": "Eid ul-Fitr (estimated)", "2031-01-26": "Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", "2031-04-06": "Palm Sunday", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2031-04-15": "Pohela Boishakh", "2031-05-01": "Labour Day", - "2031-05-02": "Day of Ashura* (*estimated)", + "2031-05-02": "Day of Ashura (estimated)", "2031-05-09": "Rabindra Jayanti", "2031-06-01": "Feast of Pentecost", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-15": "Independence Day", "2031-10-02": "Gandhi Jayanti", "2031-12-25": "Christmas Day", - "2032-01-14": "Eid ul-Fitr* (*estimated); Makar Sankranti / Pongal", - "2032-01-15": "Eid ul-Fitr* (*estimated)", + "2032-01-14": "Eid ul-Fitr (estimated); Makar Sankranti / Pongal", + "2032-01-15": "Eid ul-Fitr (estimated)", "2032-01-26": "Republic Day", "2032-03-21": "Palm Sunday", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2032-04-15": "Pohela Boishakh", - "2032-04-20": "Day of Ashura* (*estimated)", + "2032-04-20": "Day of Ashura (estimated)", "2032-05-01": "Labour Day", "2032-05-09": "Rabindra Jayanti", "2032-05-16": "Feast of Pentecost", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-15": "Independence Day", "2032-10-02": "Gandhi Jayanti", "2032-12-25": "Christmas Day", - "2033-01-02": "Eid ul-Fitr* (*estimated)", - "2033-01-03": "Eid ul-Fitr* (*estimated)", + "2033-01-02": "Eid ul-Fitr (estimated)", + "2033-01-03": "Eid ul-Fitr (estimated)", "2033-01-14": "Makar Sankranti / Pongal", "2033-01-26": "Republic Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-10": "Day of Ashura* (*estimated); Palm Sunday", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-10": "Day of Ashura (estimated); Palm Sunday", "2033-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2033-04-15": "Good Friday; Pohela Boishakh", "2033-04-17": "Easter Sunday", "2033-05-01": "Labour Day", "2033-05-09": "Rabindra Jayanti", "2033-06-05": "Feast of Pentecost", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Independence Day", "2033-10-02": "Gandhi Jayanti", - "2033-12-23": "Eid ul-Fitr* (*estimated)", - "2033-12-24": "Eid ul-Fitr* (*estimated)", + "2033-12-23": "Eid ul-Fitr (estimated)", + "2033-12-24": "Eid ul-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-14": "Makar Sankranti / Pongal", "2034-01-26": "Republic Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-30": "Day of Ashura* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-30": "Day of Ashura (estimated)", "2034-04-02": "Palm Sunday", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", @@ -1643,18 +1643,18 @@ "2034-05-01": "Labour Day", "2034-05-09": "Rabindra Jayanti", "2034-05-28": "Feast of Pentecost", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-15": "Independence Day", "2034-10-02": "Gandhi Jayanti", - "2034-12-12": "Eid ul-Fitr* (*estimated)", - "2034-12-13": "Eid ul-Fitr* (*estimated)", + "2034-12-12": "Eid ul-Fitr (estimated)", + "2034-12-13": "Eid ul-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-14": "Makar Sankranti / Pongal", "2035-01-26": "Republic Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", "2035-03-18": "Palm Sunday", - "2035-03-20": "Day of Ashura* (*estimated)", + "2035-03-20": "Day of Ashura (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", @@ -1662,57 +1662,57 @@ "2035-05-01": "Labour Day", "2035-05-09": "Rabindra Jayanti", "2035-05-13": "Feast of Pentecost", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-15": "Independence Day", "2035-10-02": "Gandhi Jayanti", - "2035-12-01": "Eid ul-Fitr* (*estimated)", - "2035-12-02": "Eid ul-Fitr* (*estimated)", + "2035-12-01": "Eid ul-Fitr (estimated)", + "2035-12-02": "Eid ul-Fitr (estimated)", "2035-12-25": "Christmas Day", "2036-01-14": "Makar Sankranti / Pongal", "2036-01-26": "Republic Day", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-03-08": "Day of Ashura* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-03-08": "Day of Ashura (estimated)", "2036-04-06": "Palm Sunday", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2036-04-15": "Pohela Boishakh", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-05-09": "Rabindra Jayanti", "2036-06-01": "Feast of Pentecost", "2036-08-15": "Independence Day", "2036-10-02": "Gandhi Jayanti", - "2036-11-19": "Eid ul-Fitr* (*estimated)", - "2036-11-20": "Eid ul-Fitr* (*estimated)", + "2036-11-19": "Eid ul-Fitr (estimated)", + "2036-11-20": "Eid ul-Fitr (estimated)", "2036-12-25": "Christmas Day", "2037-01-14": "Makar Sankranti / Pongal", - "2037-01-26": "Eid al-Adha* (*estimated); Republic Day", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-25": "Day of Ashura* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated); Republic Day", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-25": "Day of Ashura (estimated)", "2037-03-29": "Palm Sunday", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2037-04-15": "Pohela Boishakh", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-05-09": "Rabindra Jayanti", "2037-05-24": "Feast of Pentecost", "2037-08-15": "Independence Day", "2037-10-02": "Gandhi Jayanti", - "2037-11-08": "Eid ul-Fitr* (*estimated)", - "2037-11-09": "Eid ul-Fitr* (*estimated)", + "2037-11-08": "Eid ul-Fitr (estimated)", + "2037-11-09": "Eid ul-Fitr (estimated)", "2037-12-25": "Christmas Day", "2038-01-14": "Makar Sankranti / Pongal", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", "2038-01-26": "Republic Day", - "2038-02-14": "Day of Ashura* (*estimated)", + "2038-02-14": "Day of Ashura (estimated)", "2038-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2038-04-15": "Pohela Boishakh", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-18": "Palm Sunday", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", @@ -1721,16 +1721,16 @@ "2038-06-13": "Feast of Pentecost", "2038-08-15": "Independence Day", "2038-10-02": "Gandhi Jayanti", - "2038-10-29": "Eid ul-Fitr* (*estimated)", - "2038-10-30": "Eid ul-Fitr* (*estimated)", + "2038-10-29": "Eid ul-Fitr (estimated)", + "2038-10-30": "Eid ul-Fitr (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-14": "Makar Sankranti / Pongal", "2039-01-26": "Republic Day", - "2039-02-04": "Day of Ashura* (*estimated)", + "2039-02-04": "Day of Ashura (estimated)", "2039-04-03": "Palm Sunday", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", "2039-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", @@ -1740,15 +1740,15 @@ "2039-05-29": "Feast of Pentecost", "2039-08-15": "Independence Day", "2039-10-02": "Gandhi Jayanti", - "2039-10-19": "Eid ul-Fitr* (*estimated)", - "2039-10-20": "Eid ul-Fitr* (*estimated)", + "2039-10-19": "Eid ul-Fitr (estimated)", + "2039-10-20": "Eid ul-Fitr (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-14": "Makar Sankranti / Pongal", - "2040-01-24": "Day of Ashura* (*estimated)", + "2040-01-24": "Day of Ashura (estimated)", "2040-01-26": "Republic Day", - "2040-03-25": "Mawlid* (*estimated); Palm Sunday", + "2040-03-25": "Mawlid (estimated); Palm Sunday", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", @@ -1758,15 +1758,15 @@ "2040-05-20": "Feast of Pentecost", "2040-08-15": "Independence Day", "2040-10-02": "Gandhi Jayanti", - "2040-10-07": "Eid ul-Fitr* (*estimated)", - "2040-10-08": "Eid ul-Fitr* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-10-07": "Eid ul-Fitr (estimated)", + "2040-10-08": "Eid ul-Fitr (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", - "2041-01-13": "Day of Ashura* (*estimated)", + "2041-01-13": "Day of Ashura (estimated)", "2041-01-14": "Makar Sankranti / Pongal", "2041-01-26": "Republic Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-14": "Dr. B. R. Ambedkar's Jayanti; Palm Sunday; Pohela Boishakh", "2041-04-15": "Pohela Boishakh", "2041-04-19": "Good Friday", @@ -1775,16 +1775,16 @@ "2041-05-09": "Rabindra Jayanti", "2041-06-09": "Feast of Pentecost", "2041-08-15": "Independence Day", - "2041-09-26": "Eid ul-Fitr* (*estimated)", - "2041-09-27": "Eid ul-Fitr* (*estimated)", + "2041-09-26": "Eid ul-Fitr (estimated)", + "2041-09-27": "Eid ul-Fitr (estimated)", "2041-10-02": "Gandhi Jayanti", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", - "2042-01-02": "Day of Ashura* (*estimated)", + "2042-01-02": "Day of Ashura (estimated)", "2042-01-14": "Makar Sankranti / Pongal", "2042-01-26": "Republic Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-30": "Palm Sunday", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", @@ -1794,16 +1794,16 @@ "2042-05-09": "Rabindra Jayanti", "2042-05-25": "Feast of Pentecost", "2042-08-15": "Independence Day", - "2042-09-15": "Eid ul-Fitr* (*estimated)", - "2042-09-16": "Eid ul-Fitr* (*estimated)", + "2042-09-15": "Eid ul-Fitr (estimated)", + "2042-09-16": "Eid ul-Fitr (estimated)", "2042-10-02": "Gandhi Jayanti", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-23": "Day of Ashura* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-23": "Day of Ashura (estimated)", "2042-12-25": "Christmas Day", "2043-01-14": "Makar Sankranti / Pongal", "2043-01-26": "Republic Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-22": "Palm Sunday", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", @@ -1813,16 +1813,16 @@ "2043-05-09": "Rabindra Jayanti", "2043-05-17": "Feast of Pentecost", "2043-08-15": "Independence Day", - "2043-09-04": "Eid ul-Fitr* (*estimated)", - "2043-09-05": "Eid ul-Fitr* (*estimated)", + "2043-09-04": "Eid ul-Fitr (estimated)", + "2043-09-05": "Eid ul-Fitr (estimated)", "2043-10-02": "Gandhi Jayanti", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-12-12": "Day of Ashura* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-12-12": "Day of Ashura (estimated)", "2043-12-25": "Christmas Day", "2044-01-14": "Makar Sankranti / Pongal", "2044-01-26": "Republic Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-04-10": "Palm Sunday", "2044-04-14": "Dr. B. R. Ambedkar's Jayanti; Pohela Boishakh", "2044-04-15": "Good Friday; Pohela Boishakh", @@ -1831,16 +1831,16 @@ "2044-05-09": "Rabindra Jayanti", "2044-06-05": "Feast of Pentecost", "2044-08-15": "Independence Day", - "2044-08-24": "Eid ul-Fitr* (*estimated)", - "2044-08-25": "Eid ul-Fitr* (*estimated)", + "2044-08-24": "Eid ul-Fitr (estimated)", + "2044-08-25": "Eid ul-Fitr (estimated)", "2044-10-02": "Gandhi Jayanti", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-30": "Day of Ashura* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-30": "Day of Ashura (estimated)", "2044-12-25": "Christmas Day", "2045-01-14": "Makar Sankranti / Pongal", "2045-01-26": "Republic Day", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-04-02": "Palm Sunday", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", @@ -1849,15 +1849,15 @@ "2045-05-01": "Labour Day", "2045-05-09": "Rabindra Jayanti", "2045-05-28": "Feast of Pentecost", - "2045-08-14": "Eid ul-Fitr* (*estimated)", - "2045-08-15": "Eid ul-Fitr* (*estimated); Independence Day", + "2045-08-14": "Eid ul-Fitr (estimated)", + "2045-08-15": "Eid ul-Fitr (estimated); Independence Day", "2045-10-02": "Gandhi Jayanti", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-11-19": "Day of Ashura* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-11-19": "Day of Ashura (estimated)", "2045-12-25": "Christmas Day", "2046-01-14": "Makar Sankranti / Pongal", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-01-26": "Republic Day", "2046-03-18": "Palm Sunday", "2046-03-23": "Good Friday", @@ -1867,15 +1867,15 @@ "2046-05-01": "Labour Day", "2046-05-09": "Rabindra Jayanti", "2046-05-13": "Feast of Pentecost", - "2046-08-03": "Eid ul-Fitr* (*estimated)", - "2046-08-04": "Eid ul-Fitr* (*estimated)", + "2046-08-03": "Eid ul-Fitr (estimated)", + "2046-08-04": "Eid ul-Fitr (estimated)", "2046-08-15": "Independence Day", "2046-10-02": "Gandhi Jayanti", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-11-09": "Day of Ashura* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-11-09": "Day of Ashura (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-01-14": "Makar Sankranti / Pongal", "2047-01-26": "Republic Day", "2047-04-07": "Palm Sunday", @@ -1885,15 +1885,15 @@ "2047-05-01": "Labour Day", "2047-05-09": "Rabindra Jayanti", "2047-06-02": "Feast of Pentecost", - "2047-07-24": "Eid ul-Fitr* (*estimated)", - "2047-07-25": "Eid ul-Fitr* (*estimated)", + "2047-07-24": "Eid ul-Fitr (estimated)", + "2047-07-25": "Eid ul-Fitr (estimated)", "2047-08-15": "Independence Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", "2047-10-02": "Gandhi Jayanti", - "2047-10-29": "Day of Ashura* (*estimated)", + "2047-10-29": "Day of Ashura (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-14": "Makar Sankranti / Pongal", "2048-01-26": "Republic Day", "2048-03-29": "Palm Sunday", @@ -1904,14 +1904,14 @@ "2048-05-01": "Labour Day", "2048-05-09": "Rabindra Jayanti", "2048-05-24": "Feast of Pentecost", - "2048-07-12": "Eid ul-Fitr* (*estimated)", - "2048-07-13": "Eid ul-Fitr* (*estimated)", + "2048-07-12": "Eid ul-Fitr (estimated)", + "2048-07-13": "Eid ul-Fitr (estimated)", "2048-08-15": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", "2048-10-02": "Gandhi Jayanti", - "2048-10-18": "Day of Ashura* (*estimated)", - "2048-12-18": "Mawlid* (*estimated)", + "2048-10-18": "Day of Ashura (estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-14": "Makar Sankranti / Pongal", "2049-01-26": "Republic Day", @@ -1923,14 +1923,14 @@ "2049-05-01": "Labour Day", "2049-05-09": "Rabindra Jayanti", "2049-06-06": "Feast of Pentecost", - "2049-07-01": "Eid ul-Fitr* (*estimated)", - "2049-07-02": "Eid ul-Fitr* (*estimated)", + "2049-07-01": "Eid ul-Fitr (estimated)", + "2049-07-02": "Eid ul-Fitr (estimated)", "2049-08-15": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", "2049-10-02": "Gandhi Jayanti", - "2049-10-07": "Day of Ashura* (*estimated)", - "2049-12-07": "Mawlid* (*estimated)", + "2049-10-07": "Day of Ashura (estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-14": "Makar Sankranti / Pongal", "2050-01-26": "Republic Day", @@ -1942,13 +1942,13 @@ "2050-05-01": "Labour Day", "2050-05-09": "Rabindra Jayanti", "2050-05-29": "Feast of Pentecost", - "2050-06-20": "Eid ul-Fitr* (*estimated)", - "2050-06-21": "Eid ul-Fitr* (*estimated)", + "2050-06-20": "Eid ul-Fitr (estimated)", + "2050-06-21": "Eid ul-Fitr (estimated)", "2050-08-15": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-26": "Day of Ashura* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-26": "Day of Ashura (estimated)", "2050-10-02": "Gandhi Jayanti", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/IR_COMMON.json b/snapshots/countries/IR_COMMON.json index d556465c1..95b42258b 100644 --- a/snapshots/countries/IR_COMMON.json +++ b/snapshots/countries/IR_COMMON.json @@ -1,9 +1,9 @@ { - "1980-01-08": "Arbaeen* (*estimated)", - "1980-01-16": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1980-01-18": "Martyrdom of Ali al-Rida* (*estimated)", - "1980-01-26": "Martyrdom of Hasan al-Askari* (*estimated)", - "1980-02-04": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1980-01-08": "Arbaeen (estimated)", + "1980-01-16": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1980-01-18": "Martyrdom of Ali al-Rida (estimated)", + "1980-01-26": "Martyrdom of Hasan al-Askari (estimated)", + "1980-02-04": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "1980-02-11": "Islamic Revolution Day", "1980-03-19": "Iranian Oil Industry Nationalization Day", "1980-03-21": "Persian New Year", @@ -12,25 +12,25 @@ "1980-03-24": "Persian New Year", "1980-04-01": "Islamic Republic Day", "1980-04-02": "Nature's Day", - "1980-04-18": "Martyrdom of Fatima* (*estimated)", - "1980-05-27": "Birthday of Ali* (*estimated)", + "1980-04-18": "Martyrdom of Fatima (estimated)", + "1980-05-27": "Birthday of Ali (estimated)", "1980-06-04": "Death of Khomeini", "1980-06-05": "Khordad National Uprising", - "1980-06-10": "Ascension of Muhammad* (*estimated)", - "1980-06-28": "Birthday of Mahdi* (*estimated)", - "1980-08-02": "Martyrdom of Ali* (*estimated)", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr* (*estimated)", - "1980-09-05": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-27": "Eid al-Ghadeer* (*estimated)", - "1980-11-17": "Tasua* (*estimated)", - "1980-11-18": "Ashura* (*estimated)", - "1980-12-27": "Arbaeen* (*estimated)", - "1981-01-04": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1981-01-06": "Martyrdom of Ali al-Rida* (*estimated)", - "1981-01-14": "Martyrdom of Hasan al-Askari* (*estimated)", - "1981-01-23": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1980-06-10": "Ascension of Muhammad (estimated)", + "1980-06-28": "Birthday of Mahdi (estimated)", + "1980-08-02": "Martyrdom of Ali (estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (estimated)", + "1980-09-05": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-27": "Eid al-Ghadeer (estimated)", + "1980-11-17": "Tasua (estimated)", + "1980-11-18": "Ashura (estimated)", + "1980-12-27": "Arbaeen (estimated)", + "1981-01-04": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1981-01-06": "Martyrdom of Ali al-Rida (estimated)", + "1981-01-14": "Martyrdom of Hasan al-Askari (estimated)", + "1981-01-23": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "1981-02-11": "Islamic Revolution Day", "1981-03-20": "Iranian Oil Industry Nationalization Day", "1981-03-21": "Persian New Year", @@ -39,54 +39,54 @@ "1981-03-24": "Persian New Year", "1981-04-01": "Islamic Republic Day", "1981-04-02": "Nature's Day", - "1981-04-07": "Martyrdom of Fatima* (*estimated)", - "1981-05-17": "Birthday of Ali* (*estimated)", - "1981-05-31": "Ascension of Muhammad* (*estimated)", + "1981-04-07": "Martyrdom of Fatima (estimated)", + "1981-05-17": "Birthday of Ali (estimated)", + "1981-05-31": "Ascension of Muhammad (estimated)", "1981-06-04": "Death of Khomeini", "1981-06-05": "Khordad National Uprising", - "1981-06-17": "Birthday of Mahdi* (*estimated)", - "1981-07-22": "Martyrdom of Ali* (*estimated)", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr* (*estimated)", - "1981-08-25": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-16": "Eid al-Ghadeer* (*estimated)", - "1981-11-05": "Tasua* (*estimated)", - "1981-11-06": "Ashura* (*estimated)", - "1981-12-16": "Arbaeen* (*estimated)", - "1981-12-24": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1981-12-26": "Martyrdom of Ali al-Rida* (*estimated)", - "1982-01-03": "Martyrdom of Hasan al-Askari* (*estimated)", - "1982-01-12": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1981-06-17": "Birthday of Mahdi (estimated)", + "1981-07-22": "Martyrdom of Ali (estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (estimated)", + "1981-08-25": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-16": "Eid al-Ghadeer (estimated)", + "1981-11-05": "Tasua (estimated)", + "1981-11-06": "Ashura (estimated)", + "1981-12-16": "Arbaeen (estimated)", + "1981-12-24": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1981-12-26": "Martyrdom of Ali al-Rida (estimated)", + "1982-01-03": "Martyrdom of Hasan al-Askari (estimated)", + "1982-01-12": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "1982-02-11": "Islamic Revolution Day", "1982-03-20": "Iranian Oil Industry Nationalization Day", "1982-03-21": "Persian New Year", "1982-03-22": "Persian New Year", "1982-03-23": "Persian New Year", "1982-03-24": "Persian New Year", - "1982-03-28": "Martyrdom of Fatima* (*estimated)", + "1982-03-28": "Martyrdom of Fatima (estimated)", "1982-04-01": "Islamic Republic Day", "1982-04-02": "Nature's Day", - "1982-05-06": "Birthday of Ali* (*estimated)", - "1982-05-20": "Ascension of Muhammad* (*estimated)", + "1982-05-06": "Birthday of Ali (estimated)", + "1982-05-20": "Ascension of Muhammad (estimated)", "1982-06-04": "Death of Khomeini", "1982-06-05": "Khordad National Uprising", - "1982-06-07": "Birthday of Mahdi* (*estimated)", - "1982-07-12": "Martyrdom of Ali* (*estimated)", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr* (*estimated)", - "1982-08-14": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-10-05": "Eid al-Ghadeer* (*estimated)", - "1982-10-26": "Tasua* (*estimated)", - "1982-10-27": "Ashura* (*estimated)", - "1982-12-05": "Arbaeen* (*estimated)", - "1982-12-13": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1982-12-15": "Martyrdom of Ali al-Rida* (*estimated)", - "1982-12-23": "Martyrdom of Hasan al-Askari* (*estimated)", - "1983-01-01": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1982-06-07": "Birthday of Mahdi (estimated)", + "1982-07-12": "Martyrdom of Ali (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (estimated)", + "1982-08-14": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-10-05": "Eid al-Ghadeer (estimated)", + "1982-10-26": "Tasua (estimated)", + "1982-10-27": "Ashura (estimated)", + "1982-12-05": "Arbaeen (estimated)", + "1982-12-13": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1982-12-15": "Martyrdom of Ali al-Rida (estimated)", + "1982-12-23": "Martyrdom of Hasan al-Askari (estimated)", + "1983-01-01": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "1983-02-11": "Islamic Revolution Day", - "1983-03-17": "Martyrdom of Fatima* (*estimated)", + "1983-03-17": "Martyrdom of Fatima (estimated)", "1983-03-20": "Iranian Oil Industry Nationalization Day", "1983-03-21": "Persian New Year", "1983-03-22": "Persian New Year", @@ -94,26 +94,26 @@ "1983-03-24": "Persian New Year", "1983-04-01": "Islamic Republic Day", "1983-04-02": "Nature's Day", - "1983-04-26": "Birthday of Ali* (*estimated)", - "1983-05-10": "Ascension of Muhammad* (*estimated)", - "1983-05-27": "Birthday of Mahdi* (*estimated)", + "1983-04-26": "Birthday of Ali (estimated)", + "1983-05-10": "Ascension of Muhammad (estimated)", + "1983-05-27": "Birthday of Mahdi (estimated)", "1983-06-04": "Death of Khomeini", "1983-06-05": "Khordad National Uprising", - "1983-07-02": "Martyrdom of Ali* (*estimated)", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr* (*estimated)", - "1983-08-04": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-25": "Eid al-Ghadeer* (*estimated)", - "1983-10-15": "Tasua* (*estimated)", - "1983-10-16": "Ashura* (*estimated)", - "1983-11-24": "Arbaeen* (*estimated)", - "1983-12-02": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1983-12-04": "Martyrdom of Ali al-Rida* (*estimated)", - "1983-12-12": "Martyrdom of Hasan al-Askari* (*estimated)", - "1983-12-21": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1983-07-02": "Martyrdom of Ali (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (estimated)", + "1983-08-04": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-25": "Eid al-Ghadeer (estimated)", + "1983-10-15": "Tasua (estimated)", + "1983-10-16": "Ashura (estimated)", + "1983-11-24": "Arbaeen (estimated)", + "1983-12-02": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1983-12-04": "Martyrdom of Ali al-Rida (estimated)", + "1983-12-12": "Martyrdom of Hasan al-Askari (estimated)", + "1983-12-21": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "1984-02-11": "Islamic Revolution Day", - "1984-03-05": "Martyrdom of Fatima* (*estimated)", + "1984-03-05": "Martyrdom of Fatima (estimated)", "1984-03-19": "Iranian Oil Industry Nationalization Day", "1984-03-21": "Persian New Year", "1984-03-22": "Persian New Year", @@ -121,26 +121,26 @@ "1984-03-24": "Persian New Year", "1984-04-01": "Islamic Republic Day", "1984-04-02": "Nature's Day", - "1984-04-14": "Birthday of Ali* (*estimated)", - "1984-04-28": "Ascension of Muhammad* (*estimated)", - "1984-05-16": "Birthday of Mahdi* (*estimated)", + "1984-04-14": "Birthday of Ali (estimated)", + "1984-04-28": "Ascension of Muhammad (estimated)", + "1984-05-16": "Birthday of Mahdi (estimated)", "1984-06-04": "Death of Khomeini", "1984-06-05": "Khordad National Uprising", - "1984-06-20": "Martyrdom of Ali* (*estimated)", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr* (*estimated)", - "1984-07-24": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-13": "Eid al-Ghadeer* (*estimated)", - "1984-10-04": "Tasua* (*estimated)", - "1984-10-05": "Ashura* (*estimated)", - "1984-11-13": "Arbaeen* (*estimated)", - "1984-11-21": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1984-11-22": "Martyrdom of Ali al-Rida* (*estimated)", - "1984-11-30": "Martyrdom of Hasan al-Askari* (*estimated)", - "1984-12-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1984-06-20": "Martyrdom of Ali (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (estimated)", + "1984-07-24": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-13": "Eid al-Ghadeer (estimated)", + "1984-10-04": "Tasua (estimated)", + "1984-10-05": "Ashura (estimated)", + "1984-11-13": "Arbaeen (estimated)", + "1984-11-21": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1984-11-22": "Martyrdom of Ali al-Rida (estimated)", + "1984-11-30": "Martyrdom of Hasan al-Askari (estimated)", + "1984-12-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "1985-02-11": "Islamic Revolution Day", - "1985-02-22": "Martyrdom of Fatima* (*estimated)", + "1985-02-22": "Martyrdom of Fatima (estimated)", "1985-03-20": "Iranian Oil Industry Nationalization Day", "1985-03-21": "Persian New Year", "1985-03-22": "Persian New Year", @@ -148,134 +148,134 @@ "1985-03-24": "Persian New Year", "1985-04-01": "Islamic Republic Day", "1985-04-02": "Nature's Day", - "1985-04-03": "Birthday of Ali* (*estimated)", - "1985-04-17": "Ascension of Muhammad* (*estimated)", - "1985-05-05": "Birthday of Mahdi* (*estimated)", + "1985-04-03": "Birthday of Ali (estimated)", + "1985-04-17": "Ascension of Muhammad (estimated)", + "1985-05-05": "Birthday of Mahdi (estimated)", "1985-06-04": "Death of Khomeini", "1985-06-05": "Khordad National Uprising", - "1985-06-09": "Martyrdom of Ali* (*estimated)", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr* (*estimated)", - "1985-07-13": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-09-03": "Eid al-Ghadeer* (*estimated)", - "1985-09-23": "Tasua* (*estimated)", - "1985-09-24": "Ashura* (*estimated)", - "1985-11-03": "Arbaeen* (*estimated)", - "1985-11-11": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1985-11-12": "Martyrdom of Ali al-Rida* (*estimated)", - "1985-11-20": "Martyrdom of Hasan al-Askari* (*estimated)", - "1985-11-29": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "1985-06-09": "Martyrdom of Ali (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (estimated)", + "1985-07-13": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-09-03": "Eid al-Ghadeer (estimated)", + "1985-09-23": "Tasua (estimated)", + "1985-09-24": "Ashura (estimated)", + "1985-11-03": "Arbaeen (estimated)", + "1985-11-11": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1985-11-12": "Martyrdom of Ali al-Rida (estimated)", + "1985-11-20": "Martyrdom of Hasan al-Askari (estimated)", + "1985-11-29": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "1986-02-11": "Islamic Revolution Day", - "1986-02-12": "Martyrdom of Fatima* (*estimated)", + "1986-02-12": "Martyrdom of Fatima (estimated)", "1986-03-20": "Iranian Oil Industry Nationalization Day", "1986-03-21": "Persian New Year", "1986-03-22": "Persian New Year", - "1986-03-23": "Birthday of Ali* (*estimated); Persian New Year", + "1986-03-23": "Birthday of Ali (estimated); Persian New Year", "1986-03-24": "Persian New Year", "1986-04-01": "Islamic Republic Day", "1986-04-02": "Nature's Day", - "1986-04-06": "Ascension of Muhammad* (*estimated)", - "1986-04-24": "Birthday of Mahdi* (*estimated)", - "1986-05-29": "Martyrdom of Ali* (*estimated)", + "1986-04-06": "Ascension of Muhammad (estimated)", + "1986-04-24": "Birthday of Mahdi (estimated)", + "1986-05-29": "Martyrdom of Ali (estimated)", "1986-06-04": "Death of Khomeini", "1986-06-05": "Khordad National Uprising", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr* (*estimated)", - "1986-07-02": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-23": "Eid al-Ghadeer* (*estimated)", - "1986-09-13": "Tasua* (*estimated)", - "1986-09-14": "Ashura* (*estimated)", - "1986-10-23": "Arbaeen* (*estimated)", - "1986-10-31": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1986-11-02": "Martyrdom of Ali al-Rida* (*estimated)", - "1986-11-10": "Martyrdom of Hasan al-Askari* (*estimated)", - "1986-11-19": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1987-02-01": "Martyrdom of Fatima* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (estimated)", + "1986-07-02": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-23": "Eid al-Ghadeer (estimated)", + "1986-09-13": "Tasua (estimated)", + "1986-09-14": "Ashura (estimated)", + "1986-10-23": "Arbaeen (estimated)", + "1986-10-31": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1986-11-02": "Martyrdom of Ali al-Rida (estimated)", + "1986-11-10": "Martyrdom of Hasan al-Askari (estimated)", + "1986-11-19": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1987-02-01": "Martyrdom of Fatima (estimated)", "1987-02-11": "Islamic Revolution Day", - "1987-03-13": "Birthday of Ali* (*estimated)", + "1987-03-13": "Birthday of Ali (estimated)", "1987-03-20": "Iranian Oil Industry Nationalization Day", "1987-03-21": "Persian New Year", "1987-03-22": "Persian New Year", "1987-03-23": "Persian New Year", "1987-03-24": "Persian New Year", - "1987-03-27": "Ascension of Muhammad* (*estimated)", + "1987-03-27": "Ascension of Muhammad (estimated)", "1987-04-01": "Islamic Republic Day", "1987-04-02": "Nature's Day", - "1987-04-13": "Birthday of Mahdi* (*estimated)", - "1987-05-19": "Martyrdom of Ali* (*estimated)", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr* (*estimated)", + "1987-04-13": "Birthday of Mahdi (estimated)", + "1987-05-19": "Martyrdom of Ali (estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (estimated)", "1987-06-04": "Death of Khomeini", "1987-06-05": "Khordad National Uprising", - "1987-06-21": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-12": "Eid al-Ghadeer* (*estimated)", - "1987-09-02": "Tasua* (*estimated)", - "1987-09-03": "Ashura* (*estimated)", - "1987-10-13": "Arbaeen* (*estimated)", - "1987-10-21": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1987-10-22": "Martyrdom of Ali al-Rida* (*estimated)", - "1987-10-30": "Martyrdom of Hasan al-Askari* (*estimated)", - "1987-11-08": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1988-01-22": "Martyrdom of Fatima* (*estimated)", + "1987-06-21": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-12": "Eid al-Ghadeer (estimated)", + "1987-09-02": "Tasua (estimated)", + "1987-09-03": "Ashura (estimated)", + "1987-10-13": "Arbaeen (estimated)", + "1987-10-21": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1987-10-22": "Martyrdom of Ali al-Rida (estimated)", + "1987-10-30": "Martyrdom of Hasan al-Askari (estimated)", + "1987-11-08": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1988-01-22": "Martyrdom of Fatima (estimated)", "1988-02-11": "Islamic Revolution Day", - "1988-03-01": "Birthday of Ali* (*estimated)", - "1988-03-15": "Ascension of Muhammad* (*estimated)", + "1988-03-01": "Birthday of Ali (estimated)", + "1988-03-15": "Ascension of Muhammad (estimated)", "1988-03-19": "Iranian Oil Industry Nationalization Day", "1988-03-21": "Persian New Year", "1988-03-22": "Persian New Year", "1988-03-23": "Persian New Year", "1988-03-24": "Persian New Year", "1988-04-01": "Islamic Republic Day", - "1988-04-02": "Birthday of Mahdi* (*estimated); Nature's Day", - "1988-05-07": "Martyrdom of Ali* (*estimated)", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr* (*estimated)", + "1988-04-02": "Birthday of Mahdi (estimated); Nature's Day", + "1988-05-07": "Martyrdom of Ali (estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (estimated)", "1988-06-04": "Death of Khomeini", "1988-06-05": "Khordad National Uprising", - "1988-06-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-31": "Eid al-Ghadeer* (*estimated)", - "1988-08-21": "Tasua* (*estimated)", - "1988-08-22": "Ashura* (*estimated)", - "1988-10-01": "Arbaeen* (*estimated)", - "1988-10-09": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1988-10-10": "Martyrdom of Ali al-Rida* (*estimated)", - "1988-10-18": "Martyrdom of Hasan al-Askari* (*estimated)", - "1988-10-27": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1989-01-10": "Martyrdom of Fatima* (*estimated)", + "1988-06-09": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-31": "Eid al-Ghadeer (estimated)", + "1988-08-21": "Tasua (estimated)", + "1988-08-22": "Ashura (estimated)", + "1988-10-01": "Arbaeen (estimated)", + "1988-10-09": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1988-10-10": "Martyrdom of Ali al-Rida (estimated)", + "1988-10-18": "Martyrdom of Hasan al-Askari (estimated)", + "1988-10-27": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1989-01-10": "Martyrdom of Fatima (estimated)", "1989-02-11": "Islamic Revolution Day", - "1989-02-19": "Birthday of Ali* (*estimated)", - "1989-03-05": "Ascension of Muhammad* (*estimated)", + "1989-02-19": "Birthday of Ali (estimated)", + "1989-03-05": "Ascension of Muhammad (estimated)", "1989-03-20": "Iranian Oil Industry Nationalization Day", "1989-03-21": "Persian New Year", - "1989-03-22": "Birthday of Mahdi* (*estimated); Persian New Year", + "1989-03-22": "Birthday of Mahdi (estimated); Persian New Year", "1989-03-23": "Persian New Year", "1989-03-24": "Persian New Year", "1989-04-01": "Islamic Republic Day", "1989-04-02": "Nature's Day", - "1989-04-27": "Martyrdom of Ali* (*estimated)", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr* (*estimated)", - "1989-05-30": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1989-04-27": "Martyrdom of Ali (estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (estimated)", + "1989-05-30": "Martyrdom of Ja'far al-Sadiq (estimated)", "1989-06-04": "Death of Khomeini", "1989-06-05": "Khordad National Uprising", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-21": "Eid al-Ghadeer* (*estimated)", - "1989-08-10": "Tasua* (*estimated)", - "1989-08-11": "Ashura* (*estimated)", - "1989-09-20": "Arbaeen* (*estimated)", - "1989-09-28": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1989-09-29": "Martyrdom of Ali al-Rida* (*estimated)", - "1989-10-07": "Martyrdom of Hasan al-Askari* (*estimated)", - "1989-10-16": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1989-12-31": "Martyrdom of Fatima* (*estimated)", - "1990-02-08": "Birthday of Ali* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-21": "Eid al-Ghadeer (estimated)", + "1989-08-10": "Tasua (estimated)", + "1989-08-11": "Ashura (estimated)", + "1989-09-20": "Arbaeen (estimated)", + "1989-09-28": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1989-09-29": "Martyrdom of Ali al-Rida (estimated)", + "1989-10-07": "Martyrdom of Hasan al-Askari (estimated)", + "1989-10-16": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1989-12-31": "Martyrdom of Fatima (estimated)", + "1990-02-08": "Birthday of Ali (estimated)", "1990-02-11": "Islamic Revolution Day", - "1990-02-22": "Ascension of Muhammad* (*estimated)", - "1990-03-12": "Birthday of Mahdi* (*estimated)", + "1990-02-22": "Ascension of Muhammad (estimated)", + "1990-03-12": "Birthday of Mahdi (estimated)", "1990-03-20": "Iranian Oil Industry Nationalization Day", "1990-03-21": "Persian New Year", "1990-03-22": "Persian New Year", @@ -283,25 +283,25 @@ "1990-03-24": "Persian New Year", "1990-04-01": "Islamic Republic Day", "1990-04-02": "Nature's Day", - "1990-04-16": "Martyrdom of Ali* (*estimated)", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr* (*estimated)", - "1990-05-20": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1990-04-16": "Martyrdom of Ali (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (estimated)", + "1990-05-20": "Martyrdom of Ja'far al-Sadiq (estimated)", "1990-06-04": "Death of Khomeini", "1990-06-05": "Khordad National Uprising", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-10": "Eid al-Ghadeer* (*estimated)", - "1990-07-31": "Tasua* (*estimated)", - "1990-08-01": "Ashura* (*estimated)", - "1990-09-09": "Arbaeen* (*estimated)", - "1990-09-17": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1990-09-19": "Martyrdom of Ali al-Rida* (*estimated)", - "1990-09-27": "Martyrdom of Hasan al-Askari* (*estimated)", - "1990-10-06": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1990-12-20": "Martyrdom of Fatima* (*estimated)", - "1991-01-28": "Birthday of Ali* (*estimated)", - "1991-02-11": "Ascension of Muhammad* (*estimated); Islamic Revolution Day", - "1991-03-01": "Birthday of Mahdi* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-10": "Eid al-Ghadeer (estimated)", + "1990-07-31": "Tasua (estimated)", + "1990-08-01": "Ashura (estimated)", + "1990-09-09": "Arbaeen (estimated)", + "1990-09-17": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1990-09-19": "Martyrdom of Ali al-Rida (estimated)", + "1990-09-27": "Martyrdom of Hasan al-Askari (estimated)", + "1990-10-06": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1990-12-20": "Martyrdom of Fatima (estimated)", + "1991-01-28": "Birthday of Ali (estimated)", + "1991-02-11": "Ascension of Muhammad (estimated); Islamic Revolution Day", + "1991-03-01": "Birthday of Mahdi (estimated)", "1991-03-20": "Iranian Oil Industry Nationalization Day", "1991-03-21": "Persian New Year", "1991-03-22": "Persian New Year", @@ -309,82 +309,82 @@ "1991-03-24": "Persian New Year", "1991-04-01": "Islamic Republic Day", "1991-04-02": "Nature's Day", - "1991-04-06": "Martyrdom of Ali* (*estimated)", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr* (*estimated)", - "1991-05-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1991-04-06": "Martyrdom of Ali (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (estimated)", + "1991-05-09": "Martyrdom of Ja'far al-Sadiq (estimated)", "1991-06-04": "Death of Khomeini", "1991-06-05": "Khordad National Uprising", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-30": "Eid al-Ghadeer* (*estimated)", - "1991-07-20": "Tasua* (*estimated)", - "1991-07-21": "Ashura* (*estimated)", - "1991-08-30": "Arbaeen* (*estimated)", - "1991-09-07": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1991-09-08": "Martyrdom of Ali al-Rida* (*estimated)", - "1991-09-16": "Martyrdom of Hasan al-Askari* (*estimated)", - "1991-09-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1991-12-09": "Martyrdom of Fatima* (*estimated)", - "1992-01-17": "Birthday of Ali* (*estimated)", - "1992-01-31": "Ascension of Muhammad* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-30": "Eid al-Ghadeer (estimated)", + "1991-07-20": "Tasua (estimated)", + "1991-07-21": "Ashura (estimated)", + "1991-08-30": "Arbaeen (estimated)", + "1991-09-07": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1991-09-08": "Martyrdom of Ali al-Rida (estimated)", + "1991-09-16": "Martyrdom of Hasan al-Askari (estimated)", + "1991-09-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1991-12-09": "Martyrdom of Fatima (estimated)", + "1992-01-17": "Birthday of Ali (estimated)", + "1992-01-31": "Ascension of Muhammad (estimated)", "1992-02-11": "Islamic Revolution Day", - "1992-02-18": "Birthday of Mahdi* (*estimated)", + "1992-02-18": "Birthday of Mahdi (estimated)", "1992-03-19": "Iranian Oil Industry Nationalization Day", "1992-03-21": "Persian New Year", "1992-03-22": "Persian New Year", "1992-03-23": "Persian New Year", "1992-03-24": "Persian New Year", - "1992-03-25": "Martyrdom of Ali* (*estimated)", + "1992-03-25": "Martyrdom of Ali (estimated)", "1992-04-01": "Islamic Republic Day", "1992-04-02": "Nature's Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr* (*estimated)", - "1992-04-28": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (estimated)", + "1992-04-28": "Martyrdom of Ja'far al-Sadiq (estimated)", "1992-06-04": "Death of Khomeini", "1992-06-05": "Khordad National Uprising", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-19": "Eid al-Ghadeer* (*estimated)", - "1992-07-09": "Tasua* (*estimated)", - "1992-07-10": "Ashura* (*estimated)", - "1992-08-18": "Arbaeen* (*estimated)", - "1992-08-26": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1992-08-28": "Martyrdom of Ali al-Rida* (*estimated)", - "1992-09-05": "Martyrdom of Hasan al-Askari* (*estimated)", - "1992-09-14": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1992-11-27": "Martyrdom of Fatima* (*estimated)", - "1993-01-06": "Birthday of Ali* (*estimated)", - "1993-01-20": "Ascension of Muhammad* (*estimated)", - "1993-02-06": "Birthday of Mahdi* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-19": "Eid al-Ghadeer (estimated)", + "1992-07-09": "Tasua (estimated)", + "1992-07-10": "Ashura (estimated)", + "1992-08-18": "Arbaeen (estimated)", + "1992-08-26": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1992-08-28": "Martyrdom of Ali al-Rida (estimated)", + "1992-09-05": "Martyrdom of Hasan al-Askari (estimated)", + "1992-09-14": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1992-11-27": "Martyrdom of Fatima (estimated)", + "1993-01-06": "Birthday of Ali (estimated)", + "1993-01-20": "Ascension of Muhammad (estimated)", + "1993-02-06": "Birthday of Mahdi (estimated)", "1993-02-11": "Islamic Revolution Day", - "1993-03-14": "Martyrdom of Ali* (*estimated)", + "1993-03-14": "Martyrdom of Ali (estimated)", "1993-03-20": "Iranian Oil Industry Nationalization Day", "1993-03-21": "Persian New Year", "1993-03-22": "Persian New Year", "1993-03-23": "Persian New Year", - "1993-03-24": "Eid al-Fitr* (*estimated); Persian New Year", - "1993-03-25": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated); Persian New Year", + "1993-03-25": "Eid al-Fitr (estimated)", "1993-04-01": "Islamic Republic Day", "1993-04-02": "Nature's Day", - "1993-04-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-04-17": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", "1993-06-04": "Death of Khomeini", "1993-06-05": "Khordad National Uprising", - "1993-06-08": "Eid al-Ghadeer* (*estimated)", - "1993-06-29": "Tasua* (*estimated)", - "1993-06-30": "Ashura* (*estimated)", - "1993-08-08": "Arbaeen* (*estimated)", - "1993-08-16": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1993-08-17": "Martyrdom of Ali al-Rida* (*estimated)", - "1993-08-25": "Martyrdom of Hasan al-Askari* (*estimated)", - "1993-09-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1993-11-16": "Martyrdom of Fatima* (*estimated)", - "1993-12-26": "Birthday of Ali* (*estimated)", - "1994-01-09": "Ascension of Muhammad* (*estimated)", - "1994-01-26": "Birthday of Mahdi* (*estimated)", + "1993-06-08": "Eid al-Ghadeer (estimated)", + "1993-06-29": "Tasua (estimated)", + "1993-06-30": "Ashura (estimated)", + "1993-08-08": "Arbaeen (estimated)", + "1993-08-16": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1993-08-17": "Martyrdom of Ali al-Rida (estimated)", + "1993-08-25": "Martyrdom of Hasan al-Askari (estimated)", + "1993-09-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1993-11-16": "Martyrdom of Fatima (estimated)", + "1993-12-26": "Birthday of Ali (estimated)", + "1994-01-09": "Ascension of Muhammad (estimated)", + "1994-01-26": "Birthday of Mahdi (estimated)", "1994-02-11": "Islamic Revolution Day", - "1994-03-03": "Martyrdom of Ali* (*estimated)", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr* (*estimated)", + "1994-03-03": "Martyrdom of Ali (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (estimated)", "1994-03-20": "Iranian Oil Industry Nationalization Day", "1994-03-21": "Persian New Year", "1994-03-22": "Persian New Year", @@ -392,54 +392,54 @@ "1994-03-24": "Persian New Year", "1994-04-01": "Islamic Republic Day", "1994-04-02": "Nature's Day", - "1994-04-06": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-28": "Eid al-Ghadeer* (*estimated)", + "1994-04-06": "Martyrdom of Ja'far al-Sadiq (estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-28": "Eid al-Ghadeer (estimated)", "1994-06-04": "Death of Khomeini", "1994-06-05": "Khordad National Uprising", - "1994-06-18": "Tasua* (*estimated)", - "1994-06-19": "Ashura* (*estimated)", - "1994-07-28": "Arbaeen* (*estimated)", - "1994-08-05": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1994-08-07": "Martyrdom of Ali al-Rida* (*estimated)", - "1994-08-15": "Martyrdom of Hasan al-Askari* (*estimated)", - "1994-08-24": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1994-11-06": "Martyrdom of Fatima* (*estimated)", - "1994-12-15": "Birthday of Ali* (*estimated)", - "1994-12-29": "Ascension of Muhammad* (*estimated)", - "1995-01-16": "Birthday of Mahdi* (*estimated)", + "1994-06-18": "Tasua (estimated)", + "1994-06-19": "Ashura (estimated)", + "1994-07-28": "Arbaeen (estimated)", + "1994-08-05": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1994-08-07": "Martyrdom of Ali al-Rida (estimated)", + "1994-08-15": "Martyrdom of Hasan al-Askari (estimated)", + "1994-08-24": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1994-11-06": "Martyrdom of Fatima (estimated)", + "1994-12-15": "Birthday of Ali (estimated)", + "1994-12-29": "Ascension of Muhammad (estimated)", + "1995-01-16": "Birthday of Mahdi (estimated)", "1995-02-11": "Islamic Revolution Day", - "1995-02-20": "Martyrdom of Ali* (*estimated)", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr* (*estimated)", + "1995-02-20": "Martyrdom of Ali (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (estimated)", "1995-03-20": "Iranian Oil Industry Nationalization Day", "1995-03-21": "Persian New Year", "1995-03-22": "Persian New Year", "1995-03-23": "Persian New Year", "1995-03-24": "Persian New Year", - "1995-03-26": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1995-03-26": "Martyrdom of Ja'far al-Sadiq (estimated)", "1995-04-01": "Islamic Republic Day", "1995-04-02": "Nature's Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-17": "Eid al-Ghadeer* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-17": "Eid al-Ghadeer (estimated)", "1995-06-04": "Death of Khomeini", "1995-06-05": "Khordad National Uprising", - "1995-06-07": "Tasua* (*estimated)", - "1995-06-08": "Ashura* (*estimated)", - "1995-07-18": "Arbaeen* (*estimated)", - "1995-07-26": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1995-07-27": "Martyrdom of Ali al-Rida* (*estimated)", - "1995-08-04": "Martyrdom of Hasan al-Askari* (*estimated)", - "1995-08-13": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1995-10-27": "Martyrdom of Fatima* (*estimated)", - "1995-12-05": "Birthday of Ali* (*estimated)", - "1995-12-19": "Ascension of Muhammad* (*estimated)", - "1996-01-06": "Birthday of Mahdi* (*estimated)", - "1996-02-10": "Martyrdom of Ali* (*estimated)", + "1995-06-07": "Tasua (estimated)", + "1995-06-08": "Ashura (estimated)", + "1995-07-18": "Arbaeen (estimated)", + "1995-07-26": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1995-07-27": "Martyrdom of Ali al-Rida (estimated)", + "1995-08-04": "Martyrdom of Hasan al-Askari (estimated)", + "1995-08-13": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1995-10-27": "Martyrdom of Fatima (estimated)", + "1995-12-05": "Birthday of Ali (estimated)", + "1995-12-19": "Ascension of Muhammad (estimated)", + "1996-01-06": "Birthday of Mahdi (estimated)", + "1996-02-10": "Martyrdom of Ali (estimated)", "1996-02-11": "Islamic Revolution Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr* (*estimated)", - "1996-03-14": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr (estimated)", + "1996-03-14": "Martyrdom of Ja'far al-Sadiq (estimated)", "1996-03-19": "Iranian Oil Industry Nationalization Day", "1996-03-20": "Persian New Year", "1996-03-21": "Persian New Year", @@ -447,26 +447,26 @@ "1996-03-23": "Persian New Year", "1996-03-31": "Islamic Republic Day", "1996-04-01": "Nature's Day", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-05-05": "Eid al-Ghadeer* (*estimated)", - "1996-05-26": "Tasua* (*estimated)", - "1996-05-27": "Ashura* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-05": "Eid al-Ghadeer (estimated)", + "1996-05-26": "Tasua (estimated)", + "1996-05-27": "Ashura (estimated)", "1996-06-03": "Death of Khomeini", "1996-06-04": "Khordad National Uprising", - "1996-07-06": "Arbaeen* (*estimated)", - "1996-07-14": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1996-07-15": "Martyrdom of Ali al-Rida* (*estimated)", - "1996-07-23": "Martyrdom of Hasan al-Askari* (*estimated)", - "1996-08-01": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1996-10-15": "Martyrdom of Fatima* (*estimated)", - "1996-11-24": "Birthday of Ali* (*estimated)", - "1996-12-08": "Ascension of Muhammad* (*estimated)", - "1996-12-25": "Birthday of Mahdi* (*estimated)", - "1997-01-30": "Martyrdom of Ali* (*estimated)", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr* (*estimated)", + "1996-07-06": "Arbaeen (estimated)", + "1996-07-14": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1996-07-15": "Martyrdom of Ali al-Rida (estimated)", + "1996-07-23": "Martyrdom of Hasan al-Askari (estimated)", + "1996-08-01": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1996-10-15": "Martyrdom of Fatima (estimated)", + "1996-11-24": "Birthday of Ali (estimated)", + "1996-12-08": "Ascension of Muhammad (estimated)", + "1996-12-25": "Birthday of Mahdi (estimated)", + "1997-01-30": "Martyrdom of Ali (estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (estimated)", "1997-02-10": "Islamic Revolution Day", - "1997-03-04": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1997-03-04": "Martyrdom of Ja'far al-Sadiq (estimated)", "1997-03-19": "Iranian Oil Industry Nationalization Day", "1997-03-21": "Persian New Year", "1997-03-22": "Persian New Year", @@ -474,26 +474,26 @@ "1997-03-24": "Persian New Year", "1997-04-01": "Islamic Republic Day", "1997-04-02": "Nature's Day", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-25": "Eid al-Ghadeer* (*estimated)", - "1997-05-15": "Tasua* (*estimated)", - "1997-05-16": "Ashura* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-25": "Eid al-Ghadeer (estimated)", + "1997-05-15": "Tasua (estimated)", + "1997-05-16": "Ashura (estimated)", "1997-06-04": "Death of Khomeini", "1997-06-05": "Khordad National Uprising", - "1997-06-25": "Arbaeen* (*estimated)", - "1997-07-03": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1997-07-04": "Martyrdom of Ali al-Rida* (*estimated)", - "1997-07-12": "Martyrdom of Hasan al-Askari* (*estimated)", - "1997-07-21": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1997-10-04": "Martyrdom of Fatima* (*estimated)", - "1997-11-13": "Birthday of Ali* (*estimated)", - "1997-11-27": "Ascension of Muhammad* (*estimated)", - "1997-12-15": "Birthday of Mahdi* (*estimated)", - "1998-01-19": "Martyrdom of Ali* (*estimated)", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr* (*estimated)", + "1997-06-25": "Arbaeen (estimated)", + "1997-07-03": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1997-07-04": "Martyrdom of Ali al-Rida (estimated)", + "1997-07-12": "Martyrdom of Hasan al-Askari (estimated)", + "1997-07-21": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1997-10-04": "Martyrdom of Fatima (estimated)", + "1997-11-13": "Birthday of Ali (estimated)", + "1997-11-27": "Ascension of Muhammad (estimated)", + "1997-12-15": "Birthday of Mahdi (estimated)", + "1998-01-19": "Martyrdom of Ali (estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (estimated)", "1998-02-11": "Islamic Revolution Day", - "1998-02-22": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1998-02-22": "Martyrdom of Ja'far al-Sadiq (estimated)", "1998-03-20": "Iranian Oil Industry Nationalization Day", "1998-03-21": "Persian New Year", "1998-03-22": "Persian New Year", @@ -501,80 +501,80 @@ "1998-03-24": "Persian New Year", "1998-04-01": "Islamic Republic Day", "1998-04-02": "Nature's Day", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-15": "Eid al-Ghadeer* (*estimated)", - "1998-05-05": "Tasua* (*estimated)", - "1998-05-06": "Ashura* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-15": "Eid al-Ghadeer (estimated)", + "1998-05-05": "Tasua (estimated)", + "1998-05-06": "Ashura (estimated)", "1998-06-04": "Death of Khomeini", "1998-06-05": "Khordad National Uprising", - "1998-06-14": "Arbaeen* (*estimated)", - "1998-06-22": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1998-06-24": "Martyrdom of Ali al-Rida* (*estimated)", - "1998-07-02": "Martyrdom of Hasan al-Askari* (*estimated)", - "1998-07-11": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1998-09-23": "Martyrdom of Fatima* (*estimated)", - "1998-11-02": "Birthday of Ali* (*estimated)", - "1998-11-16": "Ascension of Muhammad* (*estimated)", - "1998-12-04": "Birthday of Mahdi* (*estimated)", - "1999-01-08": "Martyrdom of Ali* (*estimated)", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr* (*estimated)", - "1999-02-11": "Islamic Revolution Day; Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1998-06-14": "Arbaeen (estimated)", + "1998-06-22": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1998-06-24": "Martyrdom of Ali al-Rida (estimated)", + "1998-07-02": "Martyrdom of Hasan al-Askari (estimated)", + "1998-07-11": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1998-09-23": "Martyrdom of Fatima (estimated)", + "1998-11-02": "Birthday of Ali (estimated)", + "1998-11-16": "Ascension of Muhammad (estimated)", + "1998-12-04": "Birthday of Mahdi (estimated)", + "1999-01-08": "Martyrdom of Ali (estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (estimated)", + "1999-02-11": "Islamic Revolution Day; Martyrdom of Ja'far al-Sadiq (estimated)", "1999-03-20": "Iranian Oil Industry Nationalization Day", "1999-03-21": "Persian New Year", "1999-03-22": "Persian New Year", "1999-03-23": "Persian New Year", "1999-03-24": "Persian New Year", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-01": "Islamic Republic Day", "1999-04-02": "Nature's Day", - "1999-04-04": "Eid al-Ghadeer* (*estimated)", - "1999-04-25": "Tasua* (*estimated)", - "1999-04-26": "Ashura* (*estimated)", - "1999-06-04": "Arbaeen* (*estimated); Death of Khomeini", + "1999-04-04": "Eid al-Ghadeer (estimated)", + "1999-04-25": "Tasua (estimated)", + "1999-04-26": "Ashura (estimated)", + "1999-06-04": "Arbaeen (estimated); Death of Khomeini", "1999-06-05": "Khordad National Uprising", - "1999-06-12": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "1999-06-14": "Martyrdom of Ali al-Rida* (*estimated)", - "1999-06-22": "Martyrdom of Hasan al-Askari* (*estimated)", - "1999-07-01": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "1999-09-13": "Martyrdom of Fatima* (*estimated)", - "1999-10-22": "Birthday of Ali* (*estimated)", - "1999-11-05": "Ascension of Muhammad* (*estimated)", - "1999-11-23": "Birthday of Mahdi* (*estimated)", - "1999-12-29": "Martyrdom of Ali* (*estimated)", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr* (*estimated)", - "2000-02-01": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "1999-06-12": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "1999-06-14": "Martyrdom of Ali al-Rida (estimated)", + "1999-06-22": "Martyrdom of Hasan al-Askari (estimated)", + "1999-07-01": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "1999-09-13": "Martyrdom of Fatima (estimated)", + "1999-10-22": "Birthday of Ali (estimated)", + "1999-11-05": "Ascension of Muhammad (estimated)", + "1999-11-23": "Birthday of Mahdi (estimated)", + "1999-12-29": "Martyrdom of Ali (estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (estimated)", + "2000-02-01": "Martyrdom of Ja'far al-Sadiq (estimated)", "2000-02-11": "Islamic Revolution Day", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-03-19": "Iranian Oil Industry Nationalization Day", "2000-03-20": "Persian New Year", "2000-03-21": "Persian New Year", "2000-03-22": "Persian New Year", "2000-03-23": "Persian New Year", - "2000-03-24": "Eid al-Ghadeer* (*estimated)", + "2000-03-24": "Eid al-Ghadeer (estimated)", "2000-03-31": "Islamic Republic Day", "2000-04-01": "Nature's Day", - "2000-04-14": "Tasua* (*estimated)", - "2000-04-15": "Ashura* (*estimated)", - "2000-05-24": "Arbaeen* (*estimated)", - "2000-06-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2000-06-02": "Martyrdom of Ali al-Rida* (*estimated)", + "2000-04-14": "Tasua (estimated)", + "2000-04-15": "Ashura (estimated)", + "2000-05-24": "Arbaeen (estimated)", + "2000-06-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2000-06-02": "Martyrdom of Ali al-Rida (estimated)", "2000-06-03": "Death of Khomeini", "2000-06-04": "Khordad National Uprising", - "2000-06-10": "Martyrdom of Hasan al-Askari* (*estimated)", - "2000-06-19": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2000-09-01": "Martyrdom of Fatima* (*estimated)", - "2000-10-10": "Birthday of Ali* (*estimated)", - "2000-10-24": "Ascension of Muhammad* (*estimated)", - "2000-11-11": "Birthday of Mahdi* (*estimated)", - "2000-12-17": "Martyrdom of Ali* (*estimated)", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr* (*estimated)", - "2001-01-20": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2000-06-10": "Martyrdom of Hasan al-Askari (estimated)", + "2000-06-19": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2000-09-01": "Martyrdom of Fatima (estimated)", + "2000-10-10": "Birthday of Ali (estimated)", + "2000-10-24": "Ascension of Muhammad (estimated)", + "2000-11-11": "Birthday of Mahdi (estimated)", + "2000-12-17": "Martyrdom of Ali (estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (estimated)", + "2001-01-20": "Martyrdom of Ja'far al-Sadiq (estimated)", "2001-02-10": "Islamic Revolution Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-13": "Eid al-Ghadeer* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-13": "Eid al-Ghadeer (estimated)", "2001-03-19": "Iranian Oil Industry Nationalization Day", "2001-03-21": "Persian New Year", "2001-03-22": "Persian New Year", @@ -582,52 +582,52 @@ "2001-03-24": "Persian New Year", "2001-04-01": "Islamic Republic Day", "2001-04-02": "Nature's Day", - "2001-04-03": "Tasua* (*estimated)", - "2001-04-04": "Ashura* (*estimated)", - "2001-05-14": "Arbaeen* (*estimated)", - "2001-05-22": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2001-05-23": "Martyrdom of Ali al-Rida* (*estimated)", - "2001-05-31": "Martyrdom of Hasan al-Askari* (*estimated)", + "2001-04-03": "Tasua (estimated)", + "2001-04-04": "Ashura (estimated)", + "2001-05-14": "Arbaeen (estimated)", + "2001-05-22": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2001-05-23": "Martyrdom of Ali al-Rida (estimated)", + "2001-05-31": "Martyrdom of Hasan al-Askari (estimated)", "2001-06-04": "Death of Khomeini", "2001-06-05": "Khordad National Uprising", - "2001-06-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2001-08-22": "Martyrdom of Fatima* (*estimated)", - "2001-09-30": "Birthday of Ali* (*estimated)", - "2001-10-14": "Ascension of Muhammad* (*estimated)", - "2001-10-31": "Birthday of Mahdi* (*estimated)", - "2001-12-06": "Martyrdom of Ali* (*estimated)", - "2001-12-16": "Eid al-Fitr* (*estimated)", - "2001-12-17": "Eid al-Fitr* (*estimated)", - "2002-01-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2001-06-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2001-08-22": "Martyrdom of Fatima (estimated)", + "2001-09-30": "Birthday of Ali (estimated)", + "2001-10-14": "Ascension of Muhammad (estimated)", + "2001-10-31": "Birthday of Mahdi (estimated)", + "2001-12-06": "Martyrdom of Ali (estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2001-12-17": "Eid al-Fitr (estimated)", + "2002-01-09": "Martyrdom of Ja'far al-Sadiq (estimated)", "2002-02-11": "Islamic Revolution Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-03-02": "Eid al-Ghadeer* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-03-02": "Eid al-Ghadeer (estimated)", "2002-03-20": "Iranian Oil Industry Nationalization Day", "2002-03-21": "Persian New Year", "2002-03-22": "Persian New Year", - "2002-03-23": "Persian New Year; Tasua* (*estimated)", - "2002-03-24": "Ashura* (*estimated); Persian New Year", + "2002-03-23": "Persian New Year; Tasua (estimated)", + "2002-03-24": "Ashura (estimated); Persian New Year", "2002-04-01": "Islamic Republic Day", "2002-04-02": "Nature's Day", - "2002-05-03": "Arbaeen* (*estimated)", - "2002-05-11": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2002-05-12": "Martyrdom of Ali al-Rida* (*estimated)", - "2002-05-20": "Martyrdom of Hasan al-Askari* (*estimated)", - "2002-05-29": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2002-05-03": "Arbaeen (estimated)", + "2002-05-11": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2002-05-12": "Martyrdom of Ali al-Rida (estimated)", + "2002-05-20": "Martyrdom of Hasan al-Askari (estimated)", + "2002-05-29": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2002-06-04": "Death of Khomeini", "2002-06-05": "Khordad National Uprising", - "2002-08-12": "Martyrdom of Fatima* (*estimated)", - "2002-09-20": "Birthday of Ali* (*estimated)", - "2002-10-04": "Ascension of Muhammad* (*estimated)", - "2002-10-21": "Birthday of Mahdi* (*estimated)", - "2002-11-26": "Martyrdom of Ali* (*estimated)", - "2002-12-05": "Eid al-Fitr* (*estimated)", - "2002-12-06": "Eid al-Fitr* (*estimated)", - "2002-12-29": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2003-02-11": "Eid al-Adha* (*estimated); Islamic Revolution Day", - "2003-02-19": "Eid al-Ghadeer* (*estimated)", - "2003-03-12": "Tasua* (*estimated)", - "2003-03-13": "Ashura* (*estimated)", + "2002-08-12": "Martyrdom of Fatima (estimated)", + "2002-09-20": "Birthday of Ali (estimated)", + "2002-10-04": "Ascension of Muhammad (estimated)", + "2002-10-21": "Birthday of Mahdi (estimated)", + "2002-11-26": "Martyrdom of Ali (estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", + "2002-12-06": "Eid al-Fitr (estimated)", + "2002-12-29": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2003-02-11": "Eid al-Adha (estimated); Islamic Revolution Day", + "2003-02-19": "Eid al-Ghadeer (estimated)", + "2003-03-12": "Tasua (estimated)", + "2003-03-13": "Ashura (estimated)", "2003-03-20": "Iranian Oil Industry Nationalization Day", "2003-03-21": "Persian New Year", "2003-03-22": "Persian New Year", @@ -635,26 +635,26 @@ "2003-03-24": "Persian New Year", "2003-04-01": "Islamic Republic Day", "2003-04-02": "Nature's Day", - "2003-04-22": "Arbaeen* (*estimated)", - "2003-04-30": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2003-05-01": "Martyrdom of Ali al-Rida* (*estimated)", - "2003-05-09": "Martyrdom of Hasan al-Askari* (*estimated)", - "2003-05-18": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2003-04-22": "Arbaeen (estimated)", + "2003-04-30": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2003-05-01": "Martyrdom of Ali al-Rida (estimated)", + "2003-05-09": "Martyrdom of Hasan al-Askari (estimated)", + "2003-05-18": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2003-06-04": "Death of Khomeini", "2003-06-05": "Khordad National Uprising", - "2003-08-01": "Martyrdom of Fatima* (*estimated)", - "2003-09-10": "Birthday of Ali* (*estimated)", - "2003-09-24": "Ascension of Muhammad* (*estimated)", - "2003-10-11": "Birthday of Mahdi* (*estimated)", - "2003-11-15": "Martyrdom of Ali* (*estimated)", - "2003-11-25": "Eid al-Fitr* (*estimated)", - "2003-11-26": "Eid al-Fitr* (*estimated)", - "2003-12-19": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-09": "Eid al-Ghadeer* (*estimated)", + "2003-08-01": "Martyrdom of Fatima (estimated)", + "2003-09-10": "Birthday of Ali (estimated)", + "2003-09-24": "Ascension of Muhammad (estimated)", + "2003-10-11": "Birthday of Mahdi (estimated)", + "2003-11-15": "Martyrdom of Ali (estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", + "2003-11-26": "Eid al-Fitr (estimated)", + "2003-12-19": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-09": "Eid al-Ghadeer (estimated)", "2004-02-11": "Islamic Revolution Day", - "2004-02-29": "Tasua* (*estimated)", - "2004-03-01": "Ashura* (*estimated)", + "2004-02-29": "Tasua (estimated)", + "2004-03-01": "Ashura (estimated)", "2004-03-19": "Iranian Oil Industry Nationalization Day", "2004-03-20": "Persian New Year", "2004-03-21": "Persian New Year", @@ -662,138 +662,138 @@ "2004-03-23": "Persian New Year", "2004-03-31": "Islamic Republic Day", "2004-04-01": "Nature's Day", - "2004-04-10": "Arbaeen* (*estimated)", - "2004-04-18": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2004-04-19": "Martyrdom of Ali al-Rida* (*estimated)", - "2004-04-27": "Martyrdom of Hasan al-Askari* (*estimated)", - "2004-05-06": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2004-04-10": "Arbaeen (estimated)", + "2004-04-18": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2004-04-19": "Martyrdom of Ali al-Rida (estimated)", + "2004-04-27": "Martyrdom of Hasan al-Askari (estimated)", + "2004-05-06": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2004-06-03": "Death of Khomeini", "2004-06-04": "Khordad National Uprising", - "2004-07-20": "Martyrdom of Fatima* (*estimated)", - "2004-08-29": "Birthday of Ali* (*estimated)", - "2004-09-12": "Ascension of Muhammad* (*estimated)", - "2004-09-29": "Birthday of Mahdi* (*estimated)", - "2004-11-04": "Martyrdom of Ali* (*estimated)", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr* (*estimated)", - "2004-12-08": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-29": "Eid al-Ghadeer* (*estimated)", + "2004-07-20": "Martyrdom of Fatima (estimated)", + "2004-08-29": "Birthday of Ali (estimated)", + "2004-09-12": "Ascension of Muhammad (estimated)", + "2004-09-29": "Birthday of Mahdi (estimated)", + "2004-11-04": "Martyrdom of Ali (estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr (estimated)", + "2004-12-08": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-29": "Eid al-Ghadeer (estimated)", "2005-02-10": "Islamic Revolution Day", - "2005-02-18": "Tasua* (*estimated)", - "2005-02-19": "Ashura* (*estimated)", + "2005-02-18": "Tasua (estimated)", + "2005-02-19": "Ashura (estimated)", "2005-03-19": "Iranian Oil Industry Nationalization Day", "2005-03-21": "Persian New Year", "2005-03-22": "Persian New Year", "2005-03-23": "Persian New Year", "2005-03-24": "Persian New Year", - "2005-03-30": "Arbaeen* (*estimated)", + "2005-03-30": "Arbaeen (estimated)", "2005-04-01": "Islamic Republic Day", "2005-04-02": "Nature's Day", - "2005-04-07": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2005-04-09": "Martyrdom of Ali al-Rida* (*estimated)", - "2005-04-17": "Martyrdom of Hasan al-Askari* (*estimated)", - "2005-04-26": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2005-04-07": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2005-04-09": "Martyrdom of Ali al-Rida (estimated)", + "2005-04-17": "Martyrdom of Hasan al-Askari (estimated)", + "2005-04-26": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2005-06-04": "Death of Khomeini", "2005-06-05": "Khordad National Uprising", - "2005-07-09": "Martyrdom of Fatima* (*estimated)", - "2005-08-18": "Birthday of Ali* (*estimated)", - "2005-09-01": "Ascension of Muhammad* (*estimated)", - "2005-09-19": "Birthday of Mahdi* (*estimated)", - "2005-10-24": "Martyrdom of Ali* (*estimated)", - "2005-11-03": "Eid al-Fitr* (*estimated)", - "2005-11-04": "Eid al-Fitr* (*estimated)", - "2005-11-27": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-18": "Eid al-Ghadeer* (*estimated)", - "2006-02-08": "Tasua* (*estimated)", - "2006-02-09": "Ashura* (*estimated)", + "2005-07-09": "Martyrdom of Fatima (estimated)", + "2005-08-18": "Birthday of Ali (estimated)", + "2005-09-01": "Ascension of Muhammad (estimated)", + "2005-09-19": "Birthday of Mahdi (estimated)", + "2005-10-24": "Martyrdom of Ali (estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", + "2005-11-04": "Eid al-Fitr (estimated)", + "2005-11-27": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-18": "Eid al-Ghadeer (estimated)", + "2006-02-08": "Tasua (estimated)", + "2006-02-09": "Ashura (estimated)", "2006-02-11": "Islamic Revolution Day", - "2006-03-20": "Arbaeen* (*estimated); Iranian Oil Industry Nationalization Day", + "2006-03-20": "Arbaeen (estimated); Iranian Oil Industry Nationalization Day", "2006-03-21": "Persian New Year", "2006-03-22": "Persian New Year", "2006-03-23": "Persian New Year", "2006-03-24": "Persian New Year", - "2006-03-28": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2006-03-29": "Martyrdom of Ali al-Rida* (*estimated)", + "2006-03-28": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2006-03-29": "Martyrdom of Ali al-Rida (estimated)", "2006-04-01": "Islamic Republic Day", "2006-04-02": "Nature's Day", - "2006-04-06": "Martyrdom of Hasan al-Askari* (*estimated)", - "2006-04-15": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2006-04-06": "Martyrdom of Hasan al-Askari (estimated)", + "2006-04-15": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2006-06-04": "Death of Khomeini", "2006-06-05": "Khordad National Uprising", - "2006-06-29": "Martyrdom of Fatima* (*estimated)", - "2006-08-07": "Birthday of Ali* (*estimated)", - "2006-08-21": "Ascension of Muhammad* (*estimated)", - "2006-09-08": "Birthday of Mahdi* (*estimated)", - "2006-10-14": "Martyrdom of Ali* (*estimated)", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-10-24": "Eid al-Fitr* (*estimated)", - "2006-11-16": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-08": "Eid al-Ghadeer* (*estimated)", - "2007-01-28": "Tasua* (*estimated)", - "2007-01-29": "Ashura* (*estimated)", + "2006-06-29": "Martyrdom of Fatima (estimated)", + "2006-08-07": "Birthday of Ali (estimated)", + "2006-08-21": "Ascension of Muhammad (estimated)", + "2006-09-08": "Birthday of Mahdi (estimated)", + "2006-10-14": "Martyrdom of Ali (estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-10-24": "Eid al-Fitr (estimated)", + "2006-11-16": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-08": "Eid al-Ghadeer (estimated)", + "2007-01-28": "Tasua (estimated)", + "2007-01-29": "Ashura (estimated)", "2007-02-11": "Islamic Revolution Day", - "2007-03-10": "Arbaeen* (*estimated)", - "2007-03-18": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2007-03-19": "Martyrdom of Ali al-Rida* (*estimated)", + "2007-03-10": "Arbaeen (estimated)", + "2007-03-18": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2007-03-19": "Martyrdom of Ali al-Rida (estimated)", "2007-03-20": "Iranian Oil Industry Nationalization Day", "2007-03-21": "Persian New Year", "2007-03-22": "Persian New Year", "2007-03-23": "Persian New Year", "2007-03-24": "Persian New Year", - "2007-03-27": "Martyrdom of Hasan al-Askari* (*estimated)", + "2007-03-27": "Martyrdom of Hasan al-Askari (estimated)", "2007-04-01": "Islamic Republic Day", "2007-04-02": "Nature's Day", - "2007-04-05": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2007-04-05": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2007-06-04": "Death of Khomeini", "2007-06-05": "Khordad National Uprising", - "2007-06-18": "Martyrdom of Fatima* (*estimated)", - "2007-07-27": "Birthday of Ali* (*estimated)", - "2007-08-10": "Ascension of Muhammad* (*estimated)", - "2007-08-28": "Birthday of Mahdi* (*estimated)", - "2007-10-03": "Martyrdom of Ali* (*estimated)", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-14": "Eid al-Fitr* (*estimated)", - "2007-11-06": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-28": "Eid al-Ghadeer* (*estimated)", - "2008-01-18": "Tasua* (*estimated)", - "2008-01-19": "Ashura* (*estimated)", + "2007-06-18": "Martyrdom of Fatima (estimated)", + "2007-07-27": "Birthday of Ali (estimated)", + "2007-08-10": "Ascension of Muhammad (estimated)", + "2007-08-28": "Birthday of Mahdi (estimated)", + "2007-10-03": "Martyrdom of Ali (estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-14": "Eid al-Fitr (estimated)", + "2007-11-06": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-28": "Eid al-Ghadeer (estimated)", + "2008-01-18": "Tasua (estimated)", + "2008-01-19": "Ashura (estimated)", "2008-02-11": "Islamic Revolution Day", - "2008-02-27": "Arbaeen* (*estimated)", - "2008-03-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2008-03-08": "Martyrdom of Ali al-Rida* (*estimated)", - "2008-03-16": "Martyrdom of Hasan al-Askari* (*estimated)", + "2008-02-27": "Arbaeen (estimated)", + "2008-03-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2008-03-08": "Martyrdom of Ali al-Rida (estimated)", + "2008-03-16": "Martyrdom of Hasan al-Askari (estimated)", "2008-03-19": "Iranian Oil Industry Nationalization Day", "2008-03-20": "Persian New Year", "2008-03-21": "Persian New Year", "2008-03-22": "Persian New Year", "2008-03-23": "Persian New Year", - "2008-03-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2008-03-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2008-03-31": "Islamic Republic Day", "2008-04-01": "Nature's Day", "2008-06-03": "Death of Khomeini", "2008-06-04": "Khordad National Uprising", - "2008-06-07": "Martyrdom of Fatima* (*estimated)", - "2008-07-16": "Birthday of Ali* (*estimated)", - "2008-07-30": "Ascension of Muhammad* (*estimated)", - "2008-08-16": "Birthday of Mahdi* (*estimated)", - "2008-09-21": "Martyrdom of Ali* (*estimated)", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-10-02": "Eid al-Fitr* (*estimated)", - "2008-10-25": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-16": "Eid al-Ghadeer* (*estimated)", - "2009-01-06": "Tasua* (*estimated)", - "2009-01-07": "Ashura* (*estimated)", + "2008-06-07": "Martyrdom of Fatima (estimated)", + "2008-07-16": "Birthday of Ali (estimated)", + "2008-07-30": "Ascension of Muhammad (estimated)", + "2008-08-16": "Birthday of Mahdi (estimated)", + "2008-09-21": "Martyrdom of Ali (estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-10-02": "Eid al-Fitr (estimated)", + "2008-10-25": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-16": "Eid al-Ghadeer (estimated)", + "2009-01-06": "Tasua (estimated)", + "2009-01-07": "Ashura (estimated)", "2009-02-10": "Islamic Revolution Day", - "2009-02-15": "Arbaeen* (*estimated)", - "2009-02-23": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2009-02-25": "Martyrdom of Ali al-Rida* (*estimated)", - "2009-03-05": "Martyrdom of Hasan al-Askari* (*estimated)", - "2009-03-14": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2009-02-15": "Arbaeen (estimated)", + "2009-02-23": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2009-02-25": "Martyrdom of Ali al-Rida (estimated)", + "2009-03-05": "Martyrdom of Hasan al-Askari (estimated)", + "2009-03-14": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2009-03-19": "Iranian Oil Industry Nationalization Day", "2009-03-21": "Persian New Year", "2009-03-22": "Persian New Year", @@ -801,26 +801,26 @@ "2009-03-24": "Persian New Year", "2009-04-01": "Islamic Republic Day", "2009-04-02": "Nature's Day", - "2009-05-27": "Martyrdom of Fatima* (*estimated)", + "2009-05-27": "Martyrdom of Fatima (estimated)", "2009-06-04": "Death of Khomeini", "2009-06-05": "Khordad National Uprising", - "2009-07-06": "Birthday of Ali* (*estimated)", - "2009-07-20": "Ascension of Muhammad* (*estimated)", - "2009-08-06": "Birthday of Mahdi* (*estimated)", - "2009-09-11": "Martyrdom of Ali* (*estimated)", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr* (*estimated)", - "2009-10-14": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-12-05": "Eid al-Ghadeer* (*estimated)", - "2009-12-26": "Tasua* (*estimated)", - "2009-12-27": "Ashura* (*estimated)", - "2010-02-04": "Arbaeen* (*estimated)", + "2009-07-06": "Birthday of Ali (estimated)", + "2009-07-20": "Ascension of Muhammad (estimated)", + "2009-08-06": "Birthday of Mahdi (estimated)", + "2009-09-11": "Martyrdom of Ali (estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr (estimated)", + "2009-10-14": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-12-05": "Eid al-Ghadeer (estimated)", + "2009-12-26": "Tasua (estimated)", + "2009-12-27": "Ashura (estimated)", + "2010-02-04": "Arbaeen (estimated)", "2010-02-11": "Islamic Revolution Day", - "2010-02-12": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2010-02-14": "Martyrdom of Ali al-Rida* (*estimated)", - "2010-02-22": "Martyrdom of Hasan al-Askari* (*estimated)", - "2010-03-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2010-02-12": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2010-02-14": "Martyrdom of Ali al-Rida (estimated)", + "2010-02-22": "Martyrdom of Hasan al-Askari (estimated)", + "2010-03-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2010-03-20": "Iranian Oil Industry Nationalization Day", "2010-03-21": "Persian New Year", "2010-03-22": "Persian New Year", @@ -828,25 +828,25 @@ "2010-03-24": "Persian New Year", "2010-04-01": "Islamic Republic Day", "2010-04-02": "Nature's Day", - "2010-05-17": "Martyrdom of Fatima* (*estimated)", + "2010-05-17": "Martyrdom of Fatima (estimated)", "2010-06-04": "Death of Khomeini", "2010-06-05": "Khordad National Uprising", - "2010-06-25": "Birthday of Ali* (*estimated)", - "2010-07-09": "Ascension of Muhammad* (*estimated)", - "2010-07-27": "Birthday of Mahdi* (*estimated)", - "2010-08-31": "Martyrdom of Ali* (*estimated)", - "2010-09-10": "Eid al-Fitr* (*estimated)", - "2010-09-11": "Eid al-Fitr* (*estimated)", - "2010-10-04": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-24": "Eid al-Ghadeer* (*estimated)", - "2010-12-15": "Tasua* (*estimated)", - "2010-12-16": "Ashura* (*estimated)", - "2011-01-24": "Arbaeen* (*estimated)", - "2011-02-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2011-02-03": "Martyrdom of Ali al-Rida* (*estimated)", - "2011-02-11": "Islamic Revolution Day; Martyrdom of Hasan al-Askari* (*estimated)", - "2011-02-20": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2010-06-25": "Birthday of Ali (estimated)", + "2010-07-09": "Ascension of Muhammad (estimated)", + "2010-07-27": "Birthday of Mahdi (estimated)", + "2010-08-31": "Martyrdom of Ali (estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", + "2010-09-11": "Eid al-Fitr (estimated)", + "2010-10-04": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-24": "Eid al-Ghadeer (estimated)", + "2010-12-15": "Tasua (estimated)", + "2010-12-16": "Ashura (estimated)", + "2011-01-24": "Arbaeen (estimated)", + "2011-02-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2011-02-03": "Martyrdom of Ali al-Rida (estimated)", + "2011-02-11": "Islamic Revolution Day; Martyrdom of Hasan al-Askari (estimated)", + "2011-02-20": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2011-03-20": "Iranian Oil Industry Nationalization Day", "2011-03-21": "Persian New Year", "2011-03-22": "Persian New Year", @@ -854,25 +854,25 @@ "2011-03-24": "Persian New Year", "2011-04-01": "Islamic Republic Day", "2011-04-02": "Nature's Day", - "2011-05-06": "Martyrdom of Fatima* (*estimated)", + "2011-05-06": "Martyrdom of Fatima (estimated)", "2011-06-04": "Death of Khomeini", "2011-06-05": "Khordad National Uprising", - "2011-06-15": "Birthday of Ali* (*estimated)", - "2011-06-29": "Ascension of Muhammad* (*estimated)", - "2011-07-16": "Birthday of Mahdi* (*estimated)", - "2011-08-21": "Martyrdom of Ali* (*estimated)", - "2011-08-30": "Eid al-Fitr* (*estimated)", - "2011-08-31": "Eid al-Fitr* (*estimated)", - "2011-09-23": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-14": "Eid al-Ghadeer* (*estimated)", - "2011-12-04": "Tasua* (*estimated)", - "2011-12-05": "Ashura* (*estimated)", - "2012-01-14": "Arbaeen* (*estimated)", - "2012-01-22": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2012-01-23": "Martyrdom of Ali al-Rida* (*estimated)", - "2012-01-31": "Martyrdom of Hasan al-Askari* (*estimated)", - "2012-02-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2011-06-15": "Birthday of Ali (estimated)", + "2011-06-29": "Ascension of Muhammad (estimated)", + "2011-07-16": "Birthday of Mahdi (estimated)", + "2011-08-21": "Martyrdom of Ali (estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", + "2011-08-31": "Eid al-Fitr (estimated)", + "2011-09-23": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-14": "Eid al-Ghadeer (estimated)", + "2011-12-04": "Tasua (estimated)", + "2011-12-05": "Ashura (estimated)", + "2012-01-14": "Arbaeen (estimated)", + "2012-01-22": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2012-01-23": "Martyrdom of Ali al-Rida (estimated)", + "2012-01-31": "Martyrdom of Hasan al-Askari (estimated)", + "2012-02-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2012-02-11": "Islamic Revolution Day", "2012-03-19": "Iranian Oil Industry Nationalization Day", "2012-03-20": "Persian New Year", @@ -881,24 +881,24 @@ "2012-03-23": "Persian New Year", "2012-03-31": "Islamic Republic Day", "2012-04-01": "Nature's Day", - "2012-04-24": "Martyrdom of Fatima* (*estimated)", - "2012-06-03": "Birthday of Ali* (*estimated); Death of Khomeini", + "2012-04-24": "Martyrdom of Fatima (estimated)", + "2012-06-03": "Birthday of Ali (estimated); Death of Khomeini", "2012-06-04": "Khordad National Uprising", - "2012-06-17": "Ascension of Muhammad* (*estimated)", - "2012-07-05": "Birthday of Mahdi* (*estimated)", - "2012-08-09": "Martyrdom of Ali* (*estimated)", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr* (*estimated)", - "2012-09-12": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-11-03": "Eid al-Ghadeer* (*estimated)", - "2012-11-23": "Tasua* (*estimated)", - "2012-11-24": "Ashura* (*estimated)", - "2013-01-02": "Arbaeen* (*estimated)", - "2013-01-10": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2013-01-12": "Martyrdom of Ali al-Rida* (*estimated)", - "2013-01-20": "Martyrdom of Hasan al-Askari* (*estimated)", - "2013-01-29": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2012-06-17": "Ascension of Muhammad (estimated)", + "2012-07-05": "Birthday of Mahdi (estimated)", + "2012-08-09": "Martyrdom of Ali (estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr (estimated)", + "2012-09-12": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-11-03": "Eid al-Ghadeer (estimated)", + "2012-11-23": "Tasua (estimated)", + "2012-11-24": "Ashura (estimated)", + "2013-01-02": "Arbaeen (estimated)", + "2013-01-10": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2013-01-12": "Martyrdom of Ali al-Rida (estimated)", + "2013-01-20": "Martyrdom of Hasan al-Askari (estimated)", + "2013-01-29": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2013-02-10": "Islamic Revolution Day", "2013-03-19": "Iranian Oil Industry Nationalization Day", "2013-03-21": "Persian New Year", @@ -907,25 +907,25 @@ "2013-03-24": "Persian New Year", "2013-04-01": "Islamic Republic Day", "2013-04-02": "Nature's Day", - "2013-04-13": "Martyrdom of Fatima* (*estimated)", - "2013-05-23": "Birthday of Ali* (*estimated)", + "2013-04-13": "Martyrdom of Fatima (estimated)", + "2013-05-23": "Birthday of Ali (estimated)", "2013-06-04": "Death of Khomeini", "2013-06-05": "Khordad National Uprising", - "2013-06-06": "Ascension of Muhammad* (*estimated)", - "2013-06-24": "Birthday of Mahdi* (*estimated)", - "2013-07-29": "Martyrdom of Ali* (*estimated)", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-08-09": "Eid al-Fitr* (*estimated)", - "2013-09-01": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-23": "Eid al-Ghadeer* (*estimated)", - "2013-11-12": "Tasua* (*estimated)", - "2013-11-13": "Ashura* (*estimated)", - "2013-12-23": "Arbaeen* (*estimated)", - "2013-12-31": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2014-01-01": "Martyrdom of Ali al-Rida* (*estimated)", - "2014-01-09": "Martyrdom of Hasan al-Askari* (*estimated)", - "2014-01-18": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2013-06-06": "Ascension of Muhammad (estimated)", + "2013-06-24": "Birthday of Mahdi (estimated)", + "2013-07-29": "Martyrdom of Ali (estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-08-09": "Eid al-Fitr (estimated)", + "2013-09-01": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-23": "Eid al-Ghadeer (estimated)", + "2013-11-12": "Tasua (estimated)", + "2013-11-13": "Ashura (estimated)", + "2013-12-23": "Arbaeen (estimated)", + "2013-12-31": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2014-01-01": "Martyrdom of Ali al-Rida (estimated)", + "2014-01-09": "Martyrdom of Hasan al-Askari (estimated)", + "2014-01-18": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2014-02-11": "Islamic Revolution Day", "2014-03-20": "Iranian Oil Industry Nationalization Day", "2014-03-21": "Persian New Year", @@ -934,53 +934,53 @@ "2014-03-24": "Persian New Year", "2014-04-01": "Islamic Republic Day", "2014-04-02": "Nature's Day", - "2014-04-03": "Martyrdom of Fatima* (*estimated)", - "2014-05-12": "Birthday of Ali* (*estimated)", - "2014-05-26": "Ascension of Muhammad* (*estimated)", + "2014-04-03": "Martyrdom of Fatima (estimated)", + "2014-05-12": "Birthday of Ali (estimated)", + "2014-05-26": "Ascension of Muhammad (estimated)", "2014-06-04": "Death of Khomeini", "2014-06-05": "Khordad National Uprising", - "2014-06-13": "Birthday of Mahdi* (*estimated)", - "2014-07-18": "Martyrdom of Ali* (*estimated)", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-07-29": "Eid al-Fitr* (*estimated)", - "2014-08-21": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-12": "Eid al-Ghadeer* (*estimated)", - "2014-11-02": "Tasua* (*estimated)", - "2014-11-03": "Ashura* (*estimated)", - "2014-12-12": "Arbaeen* (*estimated)", - "2014-12-20": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2014-12-22": "Martyrdom of Ali al-Rida* (*estimated)", - "2014-12-30": "Martyrdom of Hasan al-Askari* (*estimated)", - "2015-01-08": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2014-06-13": "Birthday of Mahdi (estimated)", + "2014-07-18": "Martyrdom of Ali (estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-07-29": "Eid al-Fitr (estimated)", + "2014-08-21": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-12": "Eid al-Ghadeer (estimated)", + "2014-11-02": "Tasua (estimated)", + "2014-11-03": "Ashura (estimated)", + "2014-12-12": "Arbaeen (estimated)", + "2014-12-20": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2014-12-22": "Martyrdom of Ali al-Rida (estimated)", + "2014-12-30": "Martyrdom of Hasan al-Askari (estimated)", + "2015-01-08": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2015-02-11": "Islamic Revolution Day", "2015-03-20": "Iranian Oil Industry Nationalization Day", "2015-03-21": "Persian New Year", "2015-03-22": "Persian New Year", - "2015-03-23": "Martyrdom of Fatima* (*estimated); Persian New Year", + "2015-03-23": "Martyrdom of Fatima (estimated); Persian New Year", "2015-03-24": "Persian New Year", "2015-04-01": "Islamic Republic Day", "2015-04-02": "Nature's Day", - "2015-05-02": "Birthday of Ali* (*estimated)", - "2015-05-16": "Ascension of Muhammad* (*estimated)", - "2015-06-02": "Birthday of Mahdi* (*estimated)", + "2015-05-02": "Birthday of Ali (estimated)", + "2015-05-16": "Ascension of Muhammad (estimated)", + "2015-06-02": "Birthday of Mahdi (estimated)", "2015-06-04": "Death of Khomeini", "2015-06-05": "Khordad National Uprising", - "2015-07-08": "Martyrdom of Ali* (*estimated)", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-07-18": "Eid al-Fitr* (*estimated)", - "2015-08-10": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-10-01": "Eid al-Ghadeer* (*estimated)", - "2015-10-22": "Tasua* (*estimated)", - "2015-10-23": "Ashura* (*estimated)", - "2015-12-02": "Arbaeen* (*estimated)", - "2015-12-10": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2015-12-11": "Martyrdom of Ali al-Rida* (*estimated)", - "2015-12-19": "Martyrdom of Hasan al-Askari* (*estimated)", - "2015-12-28": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2015-07-08": "Martyrdom of Ali (estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-07-18": "Eid al-Fitr (estimated)", + "2015-08-10": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-10-01": "Eid al-Ghadeer (estimated)", + "2015-10-22": "Tasua (estimated)", + "2015-10-23": "Ashura (estimated)", + "2015-12-02": "Arbaeen (estimated)", + "2015-12-10": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2015-12-11": "Martyrdom of Ali al-Rida (estimated)", + "2015-12-19": "Martyrdom of Hasan al-Askari (estimated)", + "2015-12-28": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2016-02-11": "Islamic Revolution Day", - "2016-03-12": "Martyrdom of Fatima* (*estimated)", + "2016-03-12": "Martyrdom of Fatima (estimated)", "2016-03-19": "Iranian Oil Industry Nationalization Day", "2016-03-20": "Persian New Year", "2016-03-21": "Persian New Year", @@ -988,26 +988,26 @@ "2016-03-23": "Persian New Year", "2016-03-31": "Islamic Republic Day", "2016-04-01": "Nature's Day", - "2016-04-20": "Birthday of Ali* (*estimated)", - "2016-05-04": "Ascension of Muhammad* (*estimated)", - "2016-05-22": "Birthday of Mahdi* (*estimated)", + "2016-04-20": "Birthday of Ali (estimated)", + "2016-05-04": "Ascension of Muhammad (estimated)", + "2016-05-22": "Birthday of Mahdi (estimated)", "2016-06-03": "Death of Khomeini", "2016-06-04": "Khordad National Uprising", - "2016-06-26": "Martyrdom of Ali* (*estimated)", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-07-07": "Eid al-Fitr* (*estimated)", - "2016-07-30": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-19": "Eid al-Ghadeer* (*estimated)", - "2016-10-10": "Tasua* (*estimated)", - "2016-10-11": "Ashura* (*estimated)", - "2016-11-20": "Arbaeen* (*estimated)", - "2016-11-28": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2016-11-29": "Martyrdom of Ali al-Rida* (*estimated)", - "2016-12-07": "Martyrdom of Hasan al-Askari* (*estimated)", - "2016-12-16": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2016-06-26": "Martyrdom of Ali (estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-07-07": "Eid al-Fitr (estimated)", + "2016-07-30": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-19": "Eid al-Ghadeer (estimated)", + "2016-10-10": "Tasua (estimated)", + "2016-10-11": "Ashura (estimated)", + "2016-11-20": "Arbaeen (estimated)", + "2016-11-28": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2016-11-29": "Martyrdom of Ali al-Rida (estimated)", + "2016-12-07": "Martyrdom of Hasan al-Askari (estimated)", + "2016-12-16": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2017-02-10": "Islamic Revolution Day", - "2017-03-02": "Martyrdom of Fatima* (*estimated)", + "2017-03-02": "Martyrdom of Fatima (estimated)", "2017-03-19": "Iranian Oil Industry Nationalization Day", "2017-03-21": "Persian New Year", "2017-03-22": "Persian New Year", @@ -1015,132 +1015,132 @@ "2017-03-24": "Persian New Year", "2017-04-01": "Islamic Republic Day", "2017-04-02": "Nature's Day", - "2017-04-10": "Birthday of Ali* (*estimated)", - "2017-04-24": "Ascension of Muhammad* (*estimated)", - "2017-05-11": "Birthday of Mahdi* (*estimated)", + "2017-04-10": "Birthday of Ali (estimated)", + "2017-04-24": "Ascension of Muhammad (estimated)", + "2017-05-11": "Birthday of Mahdi (estimated)", "2017-06-04": "Death of Khomeini", "2017-06-05": "Khordad National Uprising", - "2017-06-16": "Martyrdom of Ali* (*estimated)", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-06-26": "Eid al-Fitr* (*estimated)", - "2017-07-19": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-09": "Eid al-Ghadeer* (*estimated)", - "2017-09-29": "Tasua* (*estimated)", - "2017-09-30": "Ashura* (*estimated)", - "2017-11-09": "Arbaeen* (*estimated)", - "2017-11-17": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2017-11-18": "Martyrdom of Ali al-Rida* (*estimated)", - "2017-11-26": "Martyrdom of Hasan al-Askari* (*estimated)", - "2017-12-05": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2017-06-16": "Martyrdom of Ali (estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-06-26": "Eid al-Fitr (estimated)", + "2017-07-19": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-09": "Eid al-Ghadeer (estimated)", + "2017-09-29": "Tasua (estimated)", + "2017-09-30": "Ashura (estimated)", + "2017-11-09": "Arbaeen (estimated)", + "2017-11-17": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2017-11-18": "Martyrdom of Ali al-Rida (estimated)", + "2017-11-26": "Martyrdom of Hasan al-Askari (estimated)", + "2017-12-05": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2018-02-11": "Islamic Revolution Day", - "2018-02-19": "Martyrdom of Fatima* (*estimated)", + "2018-02-19": "Martyrdom of Fatima (estimated)", "2018-03-20": "Iranian Oil Industry Nationalization Day", "2018-03-21": "Persian New Year", "2018-03-22": "Persian New Year", "2018-03-23": "Persian New Year", "2018-03-24": "Persian New Year", - "2018-03-30": "Birthday of Ali* (*estimated)", + "2018-03-30": "Birthday of Ali (estimated)", "2018-04-01": "Islamic Republic Day", "2018-04-02": "Nature's Day", - "2018-04-13": "Ascension of Muhammad* (*estimated)", - "2018-05-01": "Birthday of Mahdi* (*estimated)", + "2018-04-13": "Ascension of Muhammad (estimated)", + "2018-05-01": "Birthday of Mahdi (estimated)", "2018-06-04": "Death of Khomeini", - "2018-06-05": "Khordad National Uprising; Martyrdom of Ali* (*estimated)", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-06-16": "Eid al-Fitr* (*estimated)", - "2018-07-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-29": "Eid al-Ghadeer* (*estimated)", - "2018-09-19": "Tasua* (*estimated)", - "2018-09-20": "Ashura* (*estimated)", - "2018-10-29": "Arbaeen* (*estimated)", - "2018-11-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2018-11-08": "Martyrdom of Ali al-Rida* (*estimated)", - "2018-11-16": "Martyrdom of Hasan al-Askari* (*estimated)", - "2018-11-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2019-02-08": "Martyrdom of Fatima* (*estimated)", + "2018-06-05": "Khordad National Uprising; Martyrdom of Ali (estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-06-16": "Eid al-Fitr (estimated)", + "2018-07-09": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-29": "Eid al-Ghadeer (estimated)", + "2018-09-19": "Tasua (estimated)", + "2018-09-20": "Ashura (estimated)", + "2018-10-29": "Arbaeen (estimated)", + "2018-11-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2018-11-08": "Martyrdom of Ali al-Rida (estimated)", + "2018-11-16": "Martyrdom of Hasan al-Askari (estimated)", + "2018-11-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2019-02-08": "Martyrdom of Fatima (estimated)", "2019-02-11": "Islamic Revolution Day", - "2019-03-20": "Birthday of Ali* (*estimated); Iranian Oil Industry Nationalization Day", + "2019-03-20": "Birthday of Ali (estimated); Iranian Oil Industry Nationalization Day", "2019-03-21": "Persian New Year", "2019-03-22": "Persian New Year", "2019-03-23": "Persian New Year", "2019-03-24": "Persian New Year", "2019-04-01": "Islamic Republic Day", "2019-04-02": "Nature's Day", - "2019-04-03": "Ascension of Muhammad* (*estimated)", - "2019-04-20": "Birthday of Mahdi* (*estimated)", - "2019-05-26": "Martyrdom of Ali* (*estimated)", - "2019-06-04": "Death of Khomeini; Eid al-Fitr* (*estimated)", - "2019-06-05": "Eid al-Fitr* (*estimated); Khordad National Uprising", - "2019-06-28": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-19": "Eid al-Ghadeer* (*estimated)", - "2019-09-08": "Tasua* (*estimated)", - "2019-09-09": "Ashura* (*estimated)", - "2019-10-19": "Arbaeen* (*estimated)", - "2019-10-27": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2019-10-28": "Martyrdom of Ali al-Rida* (*estimated)", - "2019-11-05": "Martyrdom of Hasan al-Askari* (*estimated)", - "2019-11-14": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2020-01-28": "Martyrdom of Fatima* (*estimated)", + "2019-04-03": "Ascension of Muhammad (estimated)", + "2019-04-20": "Birthday of Mahdi (estimated)", + "2019-05-26": "Martyrdom of Ali (estimated)", + "2019-06-04": "Death of Khomeini; Eid al-Fitr (estimated)", + "2019-06-05": "Eid al-Fitr (estimated); Khordad National Uprising", + "2019-06-28": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-19": "Eid al-Ghadeer (estimated)", + "2019-09-08": "Tasua (estimated)", + "2019-09-09": "Ashura (estimated)", + "2019-10-19": "Arbaeen (estimated)", + "2019-10-27": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2019-10-28": "Martyrdom of Ali al-Rida (estimated)", + "2019-11-05": "Martyrdom of Hasan al-Askari (estimated)", + "2019-11-14": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2020-01-28": "Martyrdom of Fatima (estimated)", "2020-02-11": "Islamic Revolution Day", - "2020-03-08": "Birthday of Ali* (*estimated)", + "2020-03-08": "Birthday of Ali (estimated)", "2020-03-19": "Iranian Oil Industry Nationalization Day", "2020-03-20": "Persian New Year", "2020-03-21": "Persian New Year", - "2020-03-22": "Ascension of Muhammad* (*estimated); Persian New Year", + "2020-03-22": "Ascension of Muhammad (estimated); Persian New Year", "2020-03-23": "Persian New Year", "2020-03-31": "Islamic Republic Day", "2020-04-01": "Nature's Day", - "2020-04-08": "Birthday of Mahdi* (*estimated)", - "2020-05-14": "Martyrdom of Ali* (*estimated)", - "2020-05-24": "Eid al-Fitr* (*estimated)", - "2020-05-25": "Eid al-Fitr* (*estimated)", + "2020-04-08": "Birthday of Mahdi (estimated)", + "2020-05-14": "Martyrdom of Ali (estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", + "2020-05-25": "Eid al-Fitr (estimated)", "2020-06-03": "Death of Khomeini", "2020-06-04": "Khordad National Uprising", - "2020-06-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-08": "Eid al-Ghadeer* (*estimated)", - "2020-08-28": "Tasua* (*estimated)", - "2020-08-29": "Ashura* (*estimated)", - "2020-10-07": "Arbaeen* (*estimated)", - "2020-10-15": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2020-10-17": "Martyrdom of Ali al-Rida* (*estimated)", - "2020-10-25": "Martyrdom of Hasan al-Askari* (*estimated)", - "2020-11-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2021-01-16": "Martyrdom of Fatima* (*estimated)", + "2020-06-17": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-08": "Eid al-Ghadeer (estimated)", + "2020-08-28": "Tasua (estimated)", + "2020-08-29": "Ashura (estimated)", + "2020-10-07": "Arbaeen (estimated)", + "2020-10-15": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2020-10-17": "Martyrdom of Ali al-Rida (estimated)", + "2020-10-25": "Martyrdom of Hasan al-Askari (estimated)", + "2020-11-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2021-01-16": "Martyrdom of Fatima (estimated)", "2021-02-10": "Islamic Revolution Day", - "2021-02-25": "Birthday of Ali* (*estimated)", - "2021-03-11": "Ascension of Muhammad* (*estimated)", + "2021-02-25": "Birthday of Ali (estimated)", + "2021-03-11": "Ascension of Muhammad (estimated)", "2021-03-19": "Iranian Oil Industry Nationalization Day", "2021-03-21": "Persian New Year", "2021-03-22": "Persian New Year", "2021-03-23": "Persian New Year", "2021-03-24": "Persian New Year", - "2021-03-28": "Birthday of Mahdi* (*estimated)", + "2021-03-28": "Birthday of Mahdi (estimated)", "2021-04-01": "Islamic Republic Day", "2021-04-02": "Nature's Day", - "2021-05-03": "Martyrdom of Ali* (*estimated)", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-05-14": "Eid al-Fitr* (*estimated)", + "2021-05-03": "Martyrdom of Ali (estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-05-14": "Eid al-Fitr (estimated)", "2021-06-04": "Death of Khomeini", "2021-06-05": "Khordad National Uprising", - "2021-06-06": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-28": "Eid al-Ghadeer* (*estimated)", - "2021-08-17": "Tasua* (*estimated)", - "2021-08-18": "Ashura* (*estimated)", - "2021-09-27": "Arbaeen* (*estimated)", - "2021-10-05": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2021-10-06": "Martyrdom of Ali al-Rida* (*estimated)", - "2021-10-14": "Martyrdom of Hasan al-Askari* (*estimated)", - "2021-10-23": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2022-01-06": "Martyrdom of Fatima* (*estimated)", + "2021-06-06": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-28": "Eid al-Ghadeer (estimated)", + "2021-08-17": "Tasua (estimated)", + "2021-08-18": "Ashura (estimated)", + "2021-09-27": "Arbaeen (estimated)", + "2021-10-05": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2021-10-06": "Martyrdom of Ali al-Rida (estimated)", + "2021-10-14": "Martyrdom of Hasan al-Askari (estimated)", + "2021-10-23": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2022-01-06": "Martyrdom of Fatima (estimated)", "2022-02-11": "Islamic Revolution Day", - "2022-02-14": "Birthday of Ali* (*estimated)", - "2022-02-28": "Ascension of Muhammad* (*estimated)", - "2022-03-18": "Birthday of Mahdi* (*estimated)", + "2022-02-14": "Birthday of Ali (estimated)", + "2022-02-28": "Ascension of Muhammad (estimated)", + "2022-03-18": "Birthday of Mahdi (estimated)", "2022-03-20": "Iranian Oil Industry Nationalization Day", "2022-03-21": "Persian New Year", "2022-03-22": "Persian New Year", @@ -1148,26 +1148,26 @@ "2022-03-24": "Persian New Year", "2022-04-01": "Islamic Republic Day", "2022-04-02": "Nature's Day", - "2022-04-22": "Martyrdom of Ali* (*estimated)", - "2022-05-02": "Eid al-Fitr* (*estimated)", - "2022-05-03": "Eid al-Fitr* (*estimated)", - "2022-05-26": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2022-04-22": "Martyrdom of Ali (estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", + "2022-05-03": "Eid al-Fitr (estimated)", + "2022-05-26": "Martyrdom of Ja'far al-Sadiq (estimated)", "2022-06-04": "Death of Khomeini", "2022-06-05": "Khordad National Uprising", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-17": "Eid al-Ghadeer* (*estimated)", - "2022-08-07": "Tasua* (*estimated)", - "2022-08-08": "Ashura* (*estimated)", - "2022-09-16": "Arbaeen* (*estimated)", - "2022-09-24": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2022-09-26": "Martyrdom of Ali al-Rida* (*estimated)", - "2022-10-04": "Martyrdom of Hasan al-Askari* (*estimated)", - "2022-10-13": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2022-12-27": "Martyrdom of Fatima* (*estimated)", - "2023-02-04": "Birthday of Ali* (*estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-17": "Eid al-Ghadeer (estimated)", + "2022-08-07": "Tasua (estimated)", + "2022-08-08": "Ashura (estimated)", + "2022-09-16": "Arbaeen (estimated)", + "2022-09-24": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2022-09-26": "Martyrdom of Ali al-Rida (estimated)", + "2022-10-04": "Martyrdom of Hasan al-Askari (estimated)", + "2022-10-13": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2022-12-27": "Martyrdom of Fatima (estimated)", + "2023-02-04": "Birthday of Ali (estimated)", "2023-02-11": "Islamic Revolution Day", - "2023-02-18": "Ascension of Muhammad* (*estimated)", - "2023-03-07": "Birthday of Mahdi* (*estimated)", + "2023-02-18": "Ascension of Muhammad (estimated)", + "2023-03-07": "Birthday of Mahdi (estimated)", "2023-03-20": "Iranian Oil Industry Nationalization Day", "2023-03-21": "Persian New Year", "2023-03-22": "Persian New Year", @@ -1175,157 +1175,157 @@ "2023-03-24": "Persian New Year", "2023-04-01": "Islamic Republic Day", "2023-04-02": "Nature's Day", - "2023-04-12": "Martyrdom of Ali* (*estimated)", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-22": "Eid al-Fitr* (*estimated)", - "2023-05-15": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2023-04-12": "Martyrdom of Ali (estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", + "2023-04-22": "Eid al-Fitr (estimated)", + "2023-05-15": "Martyrdom of Ja'far al-Sadiq (estimated)", "2023-06-04": "Death of Khomeini", "2023-06-05": "Khordad National Uprising", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-07-06": "Eid al-Ghadeer* (*estimated)", - "2023-07-27": "Tasua* (*estimated)", - "2023-07-28": "Ashura* (*estimated)", - "2023-09-05": "Arbaeen* (*estimated)", - "2023-09-13": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2023-09-15": "Martyrdom of Ali al-Rida* (*estimated)", - "2023-09-23": "Martyrdom of Hasan al-Askari* (*estimated)", - "2023-10-02": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2023-12-16": "Martyrdom of Fatima* (*estimated)", - "2024-01-25": "Birthday of Ali* (*estimated)", - "2024-02-08": "Ascension of Muhammad* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-07-06": "Eid al-Ghadeer (estimated)", + "2023-07-27": "Tasua (estimated)", + "2023-07-28": "Ashura (estimated)", + "2023-09-05": "Arbaeen (estimated)", + "2023-09-13": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2023-09-15": "Martyrdom of Ali al-Rida (estimated)", + "2023-09-23": "Martyrdom of Hasan al-Askari (estimated)", + "2023-10-02": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2023-12-16": "Martyrdom of Fatima (estimated)", + "2024-01-25": "Birthday of Ali (estimated)", + "2024-02-08": "Ascension of Muhammad (estimated)", "2024-02-11": "Islamic Revolution Day", - "2024-02-25": "Birthday of Mahdi* (*estimated)", + "2024-02-25": "Birthday of Mahdi (estimated)", "2024-03-19": "Iranian Oil Industry Nationalization Day", "2024-03-20": "Persian New Year", "2024-03-21": "Persian New Year", "2024-03-22": "Persian New Year", "2024-03-23": "Persian New Year", - "2024-03-31": "Islamic Republic Day; Martyrdom of Ali* (*estimated)", + "2024-03-31": "Islamic Republic Day; Martyrdom of Ali (estimated)", "2024-04-01": "Nature's Day", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr* (*estimated)", - "2024-05-04": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr (estimated)", + "2024-05-04": "Martyrdom of Ja'far al-Sadiq (estimated)", "2024-06-03": "Death of Khomeini", "2024-06-04": "Khordad National Uprising", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-24": "Eid al-Ghadeer* (*estimated)", - "2024-07-15": "Tasua* (*estimated)", - "2024-07-16": "Ashura* (*estimated)", - "2024-08-24": "Arbaeen* (*estimated)", - "2024-09-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2024-09-03": "Martyrdom of Ali al-Rida* (*estimated)", - "2024-09-11": "Martyrdom of Hasan al-Askari* (*estimated)", - "2024-09-20": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2024-12-04": "Martyrdom of Fatima* (*estimated)", - "2025-01-13": "Birthday of Ali* (*estimated)", - "2025-01-27": "Ascension of Muhammad* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-24": "Eid al-Ghadeer (estimated)", + "2024-07-15": "Tasua (estimated)", + "2024-07-16": "Ashura (estimated)", + "2024-08-24": "Arbaeen (estimated)", + "2024-09-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2024-09-03": "Martyrdom of Ali al-Rida (estimated)", + "2024-09-11": "Martyrdom of Hasan al-Askari (estimated)", + "2024-09-20": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2024-12-04": "Martyrdom of Fatima (estimated)", + "2025-01-13": "Birthday of Ali (estimated)", + "2025-01-27": "Ascension of Muhammad (estimated)", "2025-02-10": "Islamic Revolution Day", - "2025-02-14": "Birthday of Mahdi* (*estimated)", + "2025-02-14": "Birthday of Mahdi (estimated)", "2025-03-19": "Iranian Oil Industry Nationalization Day", - "2025-03-21": "Martyrdom of Ali* (*estimated); Persian New Year", + "2025-03-21": "Martyrdom of Ali (estimated); Persian New Year", "2025-03-22": "Persian New Year", "2025-03-23": "Persian New Year", "2025-03-24": "Persian New Year", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated)", "2025-04-01": "Islamic Republic Day", "2025-04-02": "Nature's Day", - "2025-04-23": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2025-04-23": "Martyrdom of Ja'far al-Sadiq (estimated)", "2025-06-04": "Death of Khomeini", "2025-06-05": "Khordad National Uprising", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-14": "Eid al-Ghadeer* (*estimated)", - "2025-07-04": "Tasua* (*estimated)", - "2025-07-05": "Ashura* (*estimated)", - "2025-08-14": "Arbaeen* (*estimated)", - "2025-08-22": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2025-08-23": "Martyrdom of Ali al-Rida* (*estimated)", - "2025-08-31": "Martyrdom of Hasan al-Askari* (*estimated)", - "2025-09-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2025-11-24": "Martyrdom of Fatima* (*estimated)", - "2026-01-02": "Birthday of Ali* (*estimated)", - "2026-01-16": "Ascension of Muhammad* (*estimated)", - "2026-02-03": "Birthday of Mahdi* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-14": "Eid al-Ghadeer (estimated)", + "2025-07-04": "Tasua (estimated)", + "2025-07-05": "Ashura (estimated)", + "2025-08-14": "Arbaeen (estimated)", + "2025-08-22": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2025-08-23": "Martyrdom of Ali al-Rida (estimated)", + "2025-08-31": "Martyrdom of Hasan al-Askari (estimated)", + "2025-09-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2025-11-24": "Martyrdom of Fatima (estimated)", + "2026-01-02": "Birthday of Ali (estimated)", + "2026-01-16": "Ascension of Muhammad (estimated)", + "2026-02-03": "Birthday of Mahdi (estimated)", "2026-02-11": "Islamic Revolution Day", - "2026-03-10": "Martyrdom of Ali* (*estimated)", - "2026-03-20": "Eid al-Fitr* (*estimated); Iranian Oil Industry Nationalization Day", - "2026-03-21": "Eid al-Fitr* (*estimated); Persian New Year", + "2026-03-10": "Martyrdom of Ali (estimated)", + "2026-03-20": "Eid al-Fitr (estimated); Iranian Oil Industry Nationalization Day", + "2026-03-21": "Eid al-Fitr (estimated); Persian New Year", "2026-03-22": "Persian New Year", "2026-03-23": "Persian New Year", "2026-03-24": "Persian New Year", "2026-04-01": "Islamic Republic Day", "2026-04-02": "Nature's Day", - "2026-04-13": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-06-04": "Death of Khomeini; Eid al-Ghadeer* (*estimated)", + "2026-04-13": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-06-04": "Death of Khomeini; Eid al-Ghadeer (estimated)", "2026-06-05": "Khordad National Uprising", - "2026-06-24": "Tasua* (*estimated)", - "2026-06-25": "Ashura* (*estimated)", - "2026-08-03": "Arbaeen* (*estimated)", - "2026-08-11": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2026-08-13": "Martyrdom of Ali al-Rida* (*estimated)", - "2026-08-21": "Martyrdom of Hasan al-Askari* (*estimated)", - "2026-08-30": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2026-11-13": "Martyrdom of Fatima* (*estimated)", - "2026-12-22": "Birthday of Ali* (*estimated)", - "2027-01-05": "Ascension of Muhammad* (*estimated)", - "2027-01-23": "Birthday of Mahdi* (*estimated)", + "2026-06-24": "Tasua (estimated)", + "2026-06-25": "Ashura (estimated)", + "2026-08-03": "Arbaeen (estimated)", + "2026-08-11": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2026-08-13": "Martyrdom of Ali al-Rida (estimated)", + "2026-08-21": "Martyrdom of Hasan al-Askari (estimated)", + "2026-08-30": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2026-11-13": "Martyrdom of Fatima (estimated)", + "2026-12-22": "Birthday of Ali (estimated)", + "2027-01-05": "Ascension of Muhammad (estimated)", + "2027-01-23": "Birthday of Mahdi (estimated)", "2027-02-11": "Islamic Revolution Day", - "2027-02-28": "Martyrdom of Ali* (*estimated)", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr* (*estimated)", + "2027-02-28": "Martyrdom of Ali (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (estimated)", "2027-03-20": "Iranian Oil Industry Nationalization Day", "2027-03-21": "Persian New Year", "2027-03-22": "Persian New Year", "2027-03-23": "Persian New Year", "2027-03-24": "Persian New Year", "2027-04-01": "Islamic Republic Day", - "2027-04-02": "Martyrdom of Ja'far al-Sadiq* (*estimated); Nature's Day", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-24": "Eid al-Ghadeer* (*estimated)", + "2027-04-02": "Martyrdom of Ja'far al-Sadiq (estimated); Nature's Day", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-24": "Eid al-Ghadeer (estimated)", "2027-06-04": "Death of Khomeini", "2027-06-05": "Khordad National Uprising", - "2027-06-14": "Tasua* (*estimated)", - "2027-06-15": "Ashura* (*estimated)", - "2027-07-24": "Arbaeen* (*estimated)", - "2027-08-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2027-08-02": "Martyrdom of Ali al-Rida* (*estimated)", - "2027-08-10": "Martyrdom of Hasan al-Askari* (*estimated)", - "2027-08-19": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2027-11-02": "Martyrdom of Fatima* (*estimated)", - "2027-12-11": "Birthday of Ali* (*estimated)", - "2027-12-25": "Ascension of Muhammad* (*estimated)", - "2028-01-12": "Birthday of Mahdi* (*estimated)", + "2027-06-14": "Tasua (estimated)", + "2027-06-15": "Ashura (estimated)", + "2027-07-24": "Arbaeen (estimated)", + "2027-08-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2027-08-02": "Martyrdom of Ali al-Rida (estimated)", + "2027-08-10": "Martyrdom of Hasan al-Askari (estimated)", + "2027-08-19": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2027-11-02": "Martyrdom of Fatima (estimated)", + "2027-12-11": "Birthday of Ali (estimated)", + "2027-12-25": "Ascension of Muhammad (estimated)", + "2028-01-12": "Birthday of Mahdi (estimated)", "2028-02-11": "Islamic Revolution Day", - "2028-02-17": "Martyrdom of Ali* (*estimated)", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr* (*estimated)", + "2028-02-17": "Martyrdom of Ali (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (estimated)", "2028-03-19": "Iranian Oil Industry Nationalization Day", "2028-03-20": "Persian New Year", - "2028-03-21": "Martyrdom of Ja'far al-Sadiq* (*estimated); Persian New Year", + "2028-03-21": "Martyrdom of Ja'far al-Sadiq (estimated); Persian New Year", "2028-03-22": "Persian New Year", "2028-03-23": "Persian New Year", "2028-03-31": "Islamic Republic Day", "2028-04-01": "Nature's Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-13": "Eid al-Ghadeer* (*estimated)", - "2028-06-02": "Tasua* (*estimated)", - "2028-06-03": "Ashura* (*estimated); Death of Khomeini", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-13": "Eid al-Ghadeer (estimated)", + "2028-06-02": "Tasua (estimated)", + "2028-06-03": "Ashura (estimated); Death of Khomeini", "2028-06-04": "Khordad National Uprising", - "2028-07-13": "Arbaeen* (*estimated)", - "2028-07-21": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2028-07-22": "Martyrdom of Ali al-Rida* (*estimated)", - "2028-07-30": "Martyrdom of Hasan al-Askari* (*estimated)", - "2028-08-08": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2028-10-21": "Martyrdom of Fatima* (*estimated)", - "2028-11-30": "Birthday of Ali* (*estimated)", - "2028-12-14": "Ascension of Muhammad* (*estimated)", - "2028-12-31": "Birthday of Mahdi* (*estimated)", - "2029-02-05": "Martyrdom of Ali* (*estimated)", + "2028-07-13": "Arbaeen (estimated)", + "2028-07-21": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2028-07-22": "Martyrdom of Ali al-Rida (estimated)", + "2028-07-30": "Martyrdom of Hasan al-Askari (estimated)", + "2028-08-08": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2028-10-21": "Martyrdom of Fatima (estimated)", + "2028-11-30": "Birthday of Ali (estimated)", + "2028-12-14": "Ascension of Muhammad (estimated)", + "2028-12-31": "Birthday of Mahdi (estimated)", + "2029-02-05": "Martyrdom of Ali (estimated)", "2029-02-10": "Islamic Revolution Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr* (*estimated)", - "2029-03-10": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (estimated)", + "2029-03-10": "Martyrdom of Ja'far al-Sadiq (estimated)", "2029-03-19": "Iranian Oil Industry Nationalization Day", "2029-03-20": "Persian New Year", "2029-03-21": "Persian New Year", @@ -1333,26 +1333,26 @@ "2029-03-23": "Persian New Year", "2029-03-31": "Islamic Republic Day", "2029-04-01": "Nature's Day", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-05-02": "Eid al-Ghadeer* (*estimated)", - "2029-05-22": "Tasua* (*estimated)", - "2029-05-23": "Ashura* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-02": "Eid al-Ghadeer (estimated)", + "2029-05-22": "Tasua (estimated)", + "2029-05-23": "Ashura (estimated)", "2029-06-03": "Death of Khomeini", "2029-06-04": "Khordad National Uprising", - "2029-07-02": "Arbaeen* (*estimated)", - "2029-07-10": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2029-07-12": "Martyrdom of Ali al-Rida* (*estimated)", - "2029-07-20": "Martyrdom of Hasan al-Askari* (*estimated)", - "2029-07-29": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2029-10-11": "Martyrdom of Fatima* (*estimated)", - "2029-11-19": "Birthday of Ali* (*estimated)", - "2029-12-03": "Ascension of Muhammad* (*estimated)", - "2029-12-21": "Birthday of Mahdi* (*estimated)", - "2030-01-25": "Martyrdom of Ali* (*estimated)", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr* (*estimated)", + "2029-07-02": "Arbaeen (estimated)", + "2029-07-10": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2029-07-12": "Martyrdom of Ali al-Rida (estimated)", + "2029-07-20": "Martyrdom of Hasan al-Askari (estimated)", + "2029-07-29": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2029-10-11": "Martyrdom of Fatima (estimated)", + "2029-11-19": "Birthday of Ali (estimated)", + "2029-12-03": "Ascension of Muhammad (estimated)", + "2029-12-21": "Birthday of Mahdi (estimated)", + "2030-01-25": "Martyrdom of Ali (estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (estimated)", "2030-02-10": "Islamic Revolution Day", - "2030-02-28": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2030-02-28": "Martyrdom of Ja'far al-Sadiq (estimated)", "2030-03-19": "Iranian Oil Industry Nationalization Day", "2030-03-21": "Persian New Year", "2030-03-22": "Persian New Year", @@ -1360,160 +1360,160 @@ "2030-03-24": "Persian New Year", "2030-04-01": "Islamic Republic Day", "2030-04-02": "Nature's Day", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-21": "Eid al-Ghadeer* (*estimated)", - "2030-05-11": "Tasua* (*estimated)", - "2030-05-12": "Ashura* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-21": "Eid al-Ghadeer (estimated)", + "2030-05-11": "Tasua (estimated)", + "2030-05-12": "Ashura (estimated)", "2030-06-04": "Death of Khomeini", "2030-06-05": "Khordad National Uprising", - "2030-06-21": "Arbaeen* (*estimated)", - "2030-06-29": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2030-07-01": "Martyrdom of Ali al-Rida* (*estimated)", - "2030-07-09": "Martyrdom of Hasan al-Askari* (*estimated)", - "2030-07-18": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2030-10-01": "Martyrdom of Fatima* (*estimated)", - "2030-11-09": "Birthday of Ali* (*estimated)", - "2030-11-23": "Ascension of Muhammad* (*estimated)", - "2030-12-10": "Birthday of Mahdi* (*estimated)", - "2031-01-15": "Martyrdom of Ali* (*estimated)", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr* (*estimated)", + "2030-06-21": "Arbaeen (estimated)", + "2030-06-29": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2030-07-01": "Martyrdom of Ali al-Rida (estimated)", + "2030-07-09": "Martyrdom of Hasan al-Askari (estimated)", + "2030-07-18": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2030-10-01": "Martyrdom of Fatima (estimated)", + "2030-11-09": "Birthday of Ali (estimated)", + "2030-11-23": "Ascension of Muhammad (estimated)", + "2030-12-10": "Birthday of Mahdi (estimated)", + "2031-01-15": "Martyrdom of Ali (estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (estimated)", "2031-02-11": "Islamic Revolution Day", - "2031-02-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2031-02-17": "Martyrdom of Ja'far al-Sadiq (estimated)", "2031-03-20": "Iranian Oil Industry Nationalization Day", "2031-03-21": "Persian New Year", "2031-03-22": "Persian New Year", "2031-03-23": "Persian New Year", "2031-03-24": "Persian New Year", "2031-04-01": "Islamic Republic Day", - "2031-04-02": "Eid al-Adha* (*estimated); Nature's Day", - "2031-04-10": "Eid al-Ghadeer* (*estimated)", - "2031-05-01": "Tasua* (*estimated)", - "2031-05-02": "Ashura* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated); Nature's Day", + "2031-04-10": "Eid al-Ghadeer (estimated)", + "2031-05-01": "Tasua (estimated)", + "2031-05-02": "Ashura (estimated)", "2031-06-04": "Death of Khomeini", "2031-06-05": "Khordad National Uprising", - "2031-06-10": "Arbaeen* (*estimated)", - "2031-06-18": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2031-06-20": "Martyrdom of Ali al-Rida* (*estimated)", - "2031-06-28": "Martyrdom of Hasan al-Askari* (*estimated)", - "2031-07-07": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2031-09-20": "Martyrdom of Fatima* (*estimated)", - "2031-10-29": "Birthday of Ali* (*estimated)", - "2031-11-12": "Ascension of Muhammad* (*estimated)", - "2031-11-30": "Birthday of Mahdi* (*estimated)", - "2032-01-04": "Martyrdom of Ali* (*estimated)", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr* (*estimated)", - "2032-02-07": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2031-06-10": "Arbaeen (estimated)", + "2031-06-18": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2031-06-20": "Martyrdom of Ali al-Rida (estimated)", + "2031-06-28": "Martyrdom of Hasan al-Askari (estimated)", + "2031-07-07": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2031-09-20": "Martyrdom of Fatima (estimated)", + "2031-10-29": "Birthday of Ali (estimated)", + "2031-11-12": "Ascension of Muhammad (estimated)", + "2031-11-30": "Birthday of Mahdi (estimated)", + "2032-01-04": "Martyrdom of Ali (estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (estimated)", + "2032-02-07": "Martyrdom of Ja'far al-Sadiq (estimated)", "2032-02-11": "Islamic Revolution Day", "2032-03-19": "Iranian Oil Industry Nationalization Day", "2032-03-20": "Persian New Year", "2032-03-21": "Persian New Year", - "2032-03-22": "Eid al-Adha* (*estimated); Persian New Year", + "2032-03-22": "Eid al-Adha (estimated); Persian New Year", "2032-03-23": "Persian New Year", - "2032-03-30": "Eid al-Ghadeer* (*estimated)", + "2032-03-30": "Eid al-Ghadeer (estimated)", "2032-03-31": "Islamic Republic Day", "2032-04-01": "Nature's Day", - "2032-04-19": "Tasua* (*estimated)", - "2032-04-20": "Ashura* (*estimated)", - "2032-05-29": "Arbaeen* (*estimated)", + "2032-04-19": "Tasua (estimated)", + "2032-04-20": "Ashura (estimated)", + "2032-05-29": "Arbaeen (estimated)", "2032-06-03": "Death of Khomeini", "2032-06-04": "Khordad National Uprising", - "2032-06-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2032-06-08": "Martyrdom of Ali al-Rida* (*estimated)", - "2032-06-16": "Martyrdom of Hasan al-Askari* (*estimated)", - "2032-06-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2032-09-08": "Martyrdom of Fatima* (*estimated)", - "2032-10-18": "Birthday of Ali* (*estimated)", - "2032-11-01": "Ascension of Muhammad* (*estimated)", - "2032-11-18": "Birthday of Mahdi* (*estimated)", - "2032-12-24": "Martyrdom of Ali* (*estimated)", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr* (*estimated)", - "2033-01-26": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2032-06-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2032-06-08": "Martyrdom of Ali al-Rida (estimated)", + "2032-06-16": "Martyrdom of Hasan al-Askari (estimated)", + "2032-06-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2032-09-08": "Martyrdom of Fatima (estimated)", + "2032-10-18": "Birthday of Ali (estimated)", + "2032-11-01": "Ascension of Muhammad (estimated)", + "2032-11-18": "Birthday of Mahdi (estimated)", + "2032-12-24": "Martyrdom of Ali (estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (estimated)", + "2033-01-26": "Martyrdom of Ja'far al-Sadiq (estimated)", "2033-02-10": "Islamic Revolution Day", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-19": "Eid al-Ghadeer* (*estimated); Iranian Oil Industry Nationalization Day", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-19": "Eid al-Ghadeer (estimated); Iranian Oil Industry Nationalization Day", "2033-03-20": "Persian New Year", "2033-03-21": "Persian New Year", "2033-03-22": "Persian New Year", "2033-03-23": "Persian New Year", "2033-03-31": "Islamic Republic Day", "2033-04-01": "Nature's Day", - "2033-04-09": "Tasua* (*estimated)", - "2033-04-10": "Ashura* (*estimated)", - "2033-05-19": "Arbaeen* (*estimated)", - "2033-05-27": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2033-05-28": "Martyrdom of Ali al-Rida* (*estimated)", + "2033-04-09": "Tasua (estimated)", + "2033-04-10": "Ashura (estimated)", + "2033-05-19": "Arbaeen (estimated)", + "2033-05-27": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2033-05-28": "Martyrdom of Ali al-Rida (estimated)", "2033-06-03": "Death of Khomeini", "2033-06-04": "Khordad National Uprising", - "2033-06-05": "Martyrdom of Hasan al-Askari* (*estimated)", - "2033-06-14": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", - "2033-08-28": "Martyrdom of Fatima* (*estimated)", - "2033-10-07": "Birthday of Ali* (*estimated)", - "2033-10-21": "Ascension of Muhammad* (*estimated)", - "2033-11-07": "Birthday of Mahdi* (*estimated)", - "2033-12-13": "Martyrdom of Ali* (*estimated)", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr* (*estimated)", - "2034-01-16": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2033-06-05": "Martyrdom of Hasan al-Askari (estimated)", + "2033-06-14": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", + "2033-08-28": "Martyrdom of Fatima (estimated)", + "2033-10-07": "Birthday of Ali (estimated)", + "2033-10-21": "Ascension of Muhammad (estimated)", + "2033-11-07": "Birthday of Mahdi (estimated)", + "2033-12-13": "Martyrdom of Ali (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (estimated)", + "2034-01-16": "Martyrdom of Ja'far al-Sadiq (estimated)", "2034-02-10": "Islamic Revolution Day", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-09": "Eid al-Ghadeer* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-09": "Eid al-Ghadeer (estimated)", "2034-03-19": "Iranian Oil Industry Nationalization Day", "2034-03-21": "Persian New Year", "2034-03-22": "Persian New Year", "2034-03-23": "Persian New Year", "2034-03-24": "Persian New Year", - "2034-03-29": "Tasua* (*estimated)", - "2034-03-30": "Ashura* (*estimated)", + "2034-03-29": "Tasua (estimated)", + "2034-03-30": "Ashura (estimated)", "2034-04-01": "Islamic Republic Day", "2034-04-02": "Nature's Day", - "2034-05-09": "Arbaeen* (*estimated)", - "2034-05-17": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2034-05-18": "Martyrdom of Ali al-Rida* (*estimated)", - "2034-05-26": "Martyrdom of Hasan al-Askari* (*estimated)", - "2034-06-04": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated); Death of Khomeini", + "2034-05-09": "Arbaeen (estimated)", + "2034-05-17": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2034-05-18": "Martyrdom of Ali al-Rida (estimated)", + "2034-05-26": "Martyrdom of Hasan al-Askari (estimated)", + "2034-06-04": "Birthday of Muhammad and Ja'far al-Sadiq (estimated); Death of Khomeini", "2034-06-05": "Khordad National Uprising", - "2034-08-17": "Martyrdom of Fatima* (*estimated)", - "2034-09-26": "Birthday of Ali* (*estimated)", - "2034-10-10": "Ascension of Muhammad* (*estimated)", - "2034-10-27": "Birthday of Mahdi* (*estimated)", - "2034-12-02": "Martyrdom of Ali* (*estimated)", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr* (*estimated)", - "2035-01-05": "Martyrdom of Ja'far al-Sadiq* (*estimated)", + "2034-08-17": "Martyrdom of Fatima (estimated)", + "2034-09-26": "Birthday of Ali (estimated)", + "2034-10-10": "Ascension of Muhammad (estimated)", + "2034-10-27": "Birthday of Mahdi (estimated)", + "2034-12-02": "Martyrdom of Ali (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (estimated)", + "2035-01-05": "Martyrdom of Ja'far al-Sadiq (estimated)", "2035-02-11": "Islamic Revolution Day", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-26": "Eid al-Ghadeer* (*estimated)", - "2035-03-19": "Tasua* (*estimated)", - "2035-03-20": "Ashura* (*estimated); Iranian Oil Industry Nationalization Day", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-26": "Eid al-Ghadeer (estimated)", + "2035-03-19": "Tasua (estimated)", + "2035-03-20": "Ashura (estimated); Iranian Oil Industry Nationalization Day", "2035-03-21": "Persian New Year", "2035-03-22": "Persian New Year", "2035-03-23": "Persian New Year", "2035-03-24": "Persian New Year", "2035-04-01": "Islamic Republic Day", "2035-04-02": "Nature's Day", - "2035-04-28": "Arbaeen* (*estimated)", - "2035-05-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2035-05-08": "Martyrdom of Ali al-Rida* (*estimated)", - "2035-05-16": "Martyrdom of Hasan al-Askari* (*estimated)", - "2035-05-25": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2035-04-28": "Arbaeen (estimated)", + "2035-05-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2035-05-08": "Martyrdom of Ali al-Rida (estimated)", + "2035-05-16": "Martyrdom of Hasan al-Askari (estimated)", + "2035-05-25": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2035-06-04": "Death of Khomeini", "2035-06-05": "Khordad National Uprising", - "2035-08-07": "Martyrdom of Fatima* (*estimated)", - "2035-09-15": "Birthday of Ali* (*estimated)", - "2035-09-29": "Ascension of Muhammad* (*estimated)", - "2035-10-16": "Birthday of Mahdi* (*estimated)", - "2035-11-21": "Martyrdom of Ali* (*estimated)", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr* (*estimated)", - "2035-12-25": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2035-08-07": "Martyrdom of Fatima (estimated)", + "2035-09-15": "Birthday of Ali (estimated)", + "2035-09-29": "Ascension of Muhammad (estimated)", + "2035-10-16": "Birthday of Mahdi (estimated)", + "2035-11-21": "Martyrdom of Ali (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (estimated)", + "2035-12-25": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-02-11": "Islamic Revolution Day", - "2036-02-15": "Eid al-Ghadeer* (*estimated)", - "2036-03-07": "Tasua* (*estimated)", - "2036-03-08": "Ashura* (*estimated)", + "2036-02-15": "Eid al-Ghadeer (estimated)", + "2036-03-07": "Tasua (estimated)", + "2036-03-08": "Ashura (estimated)", "2036-03-19": "Iranian Oil Industry Nationalization Day", "2036-03-20": "Persian New Year", "2036-03-21": "Persian New Year", @@ -1521,26 +1521,26 @@ "2036-03-23": "Persian New Year", "2036-03-31": "Islamic Republic Day", "2036-04-01": "Nature's Day", - "2036-04-17": "Arbaeen* (*estimated)", - "2036-04-25": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2036-04-26": "Martyrdom of Ali al-Rida* (*estimated)", - "2036-05-04": "Martyrdom of Hasan al-Askari* (*estimated)", - "2036-05-13": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2036-04-17": "Arbaeen (estimated)", + "2036-04-25": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2036-04-26": "Martyrdom of Ali al-Rida (estimated)", + "2036-05-04": "Martyrdom of Hasan al-Askari (estimated)", + "2036-05-13": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2036-06-03": "Death of Khomeini", "2036-06-04": "Khordad National Uprising", - "2036-07-26": "Martyrdom of Fatima* (*estimated)", - "2036-09-04": "Birthday of Ali* (*estimated)", - "2036-09-18": "Ascension of Muhammad* (*estimated)", - "2036-10-05": "Birthday of Mahdi* (*estimated)", - "2036-11-09": "Martyrdom of Ali* (*estimated)", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr* (*estimated)", - "2036-12-13": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-02-03": "Eid al-Ghadeer* (*estimated)", + "2036-07-26": "Martyrdom of Fatima (estimated)", + "2036-09-04": "Birthday of Ali (estimated)", + "2036-09-18": "Ascension of Muhammad (estimated)", + "2036-10-05": "Birthday of Mahdi (estimated)", + "2036-11-09": "Martyrdom of Ali (estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (estimated)", + "2036-12-13": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-02-03": "Eid al-Ghadeer (estimated)", "2037-02-10": "Islamic Revolution Day", - "2037-02-24": "Tasua* (*estimated)", - "2037-02-25": "Ashura* (*estimated)", + "2037-02-24": "Tasua (estimated)", + "2037-02-25": "Ashura (estimated)", "2037-03-19": "Iranian Oil Industry Nationalization Day", "2037-03-20": "Persian New Year", "2037-03-21": "Persian New Year", @@ -1548,135 +1548,135 @@ "2037-03-23": "Persian New Year", "2037-03-31": "Islamic Republic Day", "2037-04-01": "Nature's Day", - "2037-04-06": "Arbaeen* (*estimated)", - "2037-04-14": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2037-04-16": "Martyrdom of Ali al-Rida* (*estimated)", - "2037-04-24": "Martyrdom of Hasan al-Askari* (*estimated)", - "2037-05-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2037-04-06": "Arbaeen (estimated)", + "2037-04-14": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2037-04-16": "Martyrdom of Ali al-Rida (estimated)", + "2037-04-24": "Martyrdom of Hasan al-Askari (estimated)", + "2037-05-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2037-06-03": "Death of Khomeini", "2037-06-04": "Khordad National Uprising", - "2037-07-16": "Martyrdom of Fatima* (*estimated)", - "2037-08-24": "Birthday of Ali* (*estimated)", - "2037-09-07": "Ascension of Muhammad* (*estimated)", - "2037-09-25": "Birthday of Mahdi* (*estimated)", - "2037-10-30": "Martyrdom of Ali* (*estimated)", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr* (*estimated)", - "2037-12-02": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-24": "Eid al-Ghadeer* (*estimated)", + "2037-07-16": "Martyrdom of Fatima (estimated)", + "2037-08-24": "Birthday of Ali (estimated)", + "2037-09-07": "Ascension of Muhammad (estimated)", + "2037-09-25": "Birthday of Mahdi (estimated)", + "2037-10-30": "Martyrdom of Ali (estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated)", + "2037-12-02": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-24": "Eid al-Ghadeer (estimated)", "2038-02-10": "Islamic Revolution Day", - "2038-02-13": "Tasua* (*estimated)", - "2038-02-14": "Ashura* (*estimated)", + "2038-02-13": "Tasua (estimated)", + "2038-02-14": "Ashura (estimated)", "2038-03-19": "Iranian Oil Industry Nationalization Day", "2038-03-21": "Persian New Year", "2038-03-22": "Persian New Year", "2038-03-23": "Persian New Year", "2038-03-24": "Persian New Year", - "2038-03-26": "Arbaeen* (*estimated)", + "2038-03-26": "Arbaeen (estimated)", "2038-04-01": "Islamic Republic Day", "2038-04-02": "Nature's Day", - "2038-04-03": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2038-04-05": "Martyrdom of Ali al-Rida* (*estimated)", - "2038-04-13": "Martyrdom of Hasan al-Askari* (*estimated)", - "2038-04-22": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2038-04-03": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2038-04-05": "Martyrdom of Ali al-Rida (estimated)", + "2038-04-13": "Martyrdom of Hasan al-Askari (estimated)", + "2038-04-22": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2038-06-04": "Death of Khomeini", "2038-06-05": "Khordad National Uprising", - "2038-07-05": "Martyrdom of Fatima* (*estimated)", - "2038-08-14": "Birthday of Ali* (*estimated)", - "2038-08-28": "Ascension of Muhammad* (*estimated)", - "2038-09-14": "Birthday of Mahdi* (*estimated)", - "2038-10-20": "Martyrdom of Ali* (*estimated)", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr* (*estimated)", - "2038-11-22": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-13": "Eid al-Ghadeer* (*estimated)", - "2039-02-03": "Tasua* (*estimated)", - "2039-02-04": "Ashura* (*estimated)", + "2038-07-05": "Martyrdom of Fatima (estimated)", + "2038-08-14": "Birthday of Ali (estimated)", + "2038-08-28": "Ascension of Muhammad (estimated)", + "2038-09-14": "Birthday of Mahdi (estimated)", + "2038-10-20": "Martyrdom of Ali (estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (estimated)", + "2038-11-22": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-13": "Eid al-Ghadeer (estimated)", + "2039-02-03": "Tasua (estimated)", + "2039-02-04": "Ashura (estimated)", "2039-02-11": "Islamic Revolution Day", - "2039-03-15": "Arbaeen* (*estimated)", + "2039-03-15": "Arbaeen (estimated)", "2039-03-20": "Iranian Oil Industry Nationalization Day", "2039-03-21": "Persian New Year", "2039-03-22": "Persian New Year", - "2039-03-23": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated); Persian New Year", + "2039-03-23": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated); Persian New Year", "2039-03-24": "Persian New Year", - "2039-03-25": "Martyrdom of Ali al-Rida* (*estimated)", + "2039-03-25": "Martyrdom of Ali al-Rida (estimated)", "2039-04-01": "Islamic Republic Day", - "2039-04-02": "Martyrdom of Hasan al-Askari* (*estimated); Nature's Day", - "2039-04-11": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2039-04-02": "Martyrdom of Hasan al-Askari (estimated); Nature's Day", + "2039-04-11": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2039-06-04": "Death of Khomeini", "2039-06-05": "Khordad National Uprising", - "2039-06-25": "Martyrdom of Fatima* (*estimated)", - "2039-08-03": "Birthday of Ali* (*estimated)", - "2039-08-17": "Ascension of Muhammad* (*estimated)", - "2039-09-04": "Birthday of Mahdi* (*estimated)", - "2039-10-09": "Martyrdom of Ali* (*estimated)", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr* (*estimated)", - "2039-11-12": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2040-01-03": "Eid al-Ghadeer* (*estimated)", - "2040-01-23": "Tasua* (*estimated)", - "2040-01-24": "Ashura* (*estimated)", + "2039-06-25": "Martyrdom of Fatima (estimated)", + "2039-08-03": "Birthday of Ali (estimated)", + "2039-08-17": "Ascension of Muhammad (estimated)", + "2039-09-04": "Birthday of Mahdi (estimated)", + "2039-10-09": "Martyrdom of Ali (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (estimated)", + "2039-11-12": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2040-01-03": "Eid al-Ghadeer (estimated)", + "2040-01-23": "Tasua (estimated)", + "2040-01-24": "Ashura (estimated)", "2040-02-11": "Islamic Revolution Day", - "2040-03-04": "Arbaeen* (*estimated)", - "2040-03-12": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2040-03-13": "Martyrdom of Ali al-Rida* (*estimated)", + "2040-03-04": "Arbaeen (estimated)", + "2040-03-12": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2040-03-13": "Martyrdom of Ali al-Rida (estimated)", "2040-03-19": "Iranian Oil Industry Nationalization Day", "2040-03-20": "Persian New Year", - "2040-03-21": "Martyrdom of Hasan al-Askari* (*estimated); Persian New Year", + "2040-03-21": "Martyrdom of Hasan al-Askari (estimated); Persian New Year", "2040-03-22": "Persian New Year", "2040-03-23": "Persian New Year", - "2040-03-30": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2040-03-30": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2040-03-31": "Islamic Republic Day", "2040-04-01": "Nature's Day", "2040-06-03": "Death of Khomeini", "2040-06-04": "Khordad National Uprising", - "2040-06-13": "Martyrdom of Fatima* (*estimated)", - "2040-07-22": "Birthday of Ali* (*estimated)", - "2040-08-05": "Ascension of Muhammad* (*estimated)", - "2040-08-23": "Birthday of Mahdi* (*estimated)", - "2040-09-27": "Martyrdom of Ali* (*estimated)", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated)", - "2040-10-31": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-22": "Eid al-Ghadeer* (*estimated)", - "2041-01-12": "Tasua* (*estimated)", - "2041-01-13": "Ashura* (*estimated)", + "2040-06-13": "Martyrdom of Fatima (estimated)", + "2040-07-22": "Birthday of Ali (estimated)", + "2040-08-05": "Ascension of Muhammad (estimated)", + "2040-08-23": "Birthday of Mahdi (estimated)", + "2040-09-27": "Martyrdom of Ali (estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated)", + "2040-10-31": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-22": "Eid al-Ghadeer (estimated)", + "2041-01-12": "Tasua (estimated)", + "2041-01-13": "Ashura (estimated)", "2041-02-10": "Islamic Revolution Day", - "2041-02-21": "Arbaeen* (*estimated)", - "2041-03-01": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2041-03-03": "Martyrdom of Ali al-Rida* (*estimated)", - "2041-03-11": "Martyrdom of Hasan al-Askari* (*estimated)", + "2041-02-21": "Arbaeen (estimated)", + "2041-03-01": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2041-03-03": "Martyrdom of Ali al-Rida (estimated)", + "2041-03-11": "Martyrdom of Hasan al-Askari (estimated)", "2041-03-19": "Iranian Oil Industry Nationalization Day", - "2041-03-20": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated); Persian New Year", + "2041-03-20": "Birthday of Muhammad and Ja'far al-Sadiq (estimated); Persian New Year", "2041-03-21": "Persian New Year", "2041-03-22": "Persian New Year", "2041-03-23": "Persian New Year", "2041-03-31": "Islamic Republic Day", "2041-04-01": "Nature's Day", - "2041-06-02": "Martyrdom of Fatima* (*estimated)", + "2041-06-02": "Martyrdom of Fatima (estimated)", "2041-06-03": "Death of Khomeini", "2041-06-04": "Khordad National Uprising", - "2041-07-11": "Birthday of Ali* (*estimated)", - "2041-07-25": "Ascension of Muhammad* (*estimated)", - "2041-08-12": "Birthday of Mahdi* (*estimated)", - "2041-09-17": "Martyrdom of Ali* (*estimated)", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr* (*estimated)", - "2041-10-20": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-12": "Eid al-Ghadeer* (*estimated)", - "2042-01-01": "Tasua* (*estimated)", - "2042-01-02": "Ashura* (*estimated)", + "2041-07-11": "Birthday of Ali (estimated)", + "2041-07-25": "Ascension of Muhammad (estimated)", + "2041-08-12": "Birthday of Mahdi (estimated)", + "2041-09-17": "Martyrdom of Ali (estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (estimated)", + "2041-10-20": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-12": "Eid al-Ghadeer (estimated)", + "2042-01-01": "Tasua (estimated)", + "2042-01-02": "Ashura (estimated)", "2042-02-10": "Islamic Revolution Day", - "2042-02-11": "Arbaeen* (*estimated)", - "2042-02-19": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2042-02-20": "Martyrdom of Ali al-Rida* (*estimated)", - "2042-02-28": "Martyrdom of Hasan al-Askari* (*estimated)", - "2042-03-09": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2042-02-11": "Arbaeen (estimated)", + "2042-02-19": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2042-02-20": "Martyrdom of Ali al-Rida (estimated)", + "2042-02-28": "Martyrdom of Hasan al-Askari (estimated)", + "2042-03-09": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2042-03-19": "Iranian Oil Industry Nationalization Day", "2042-03-21": "Persian New Year", "2042-03-22": "Persian New Year", @@ -1684,26 +1684,26 @@ "2042-03-24": "Persian New Year", "2042-04-01": "Islamic Republic Day", "2042-04-02": "Nature's Day", - "2042-05-22": "Martyrdom of Fatima* (*estimated)", + "2042-05-22": "Martyrdom of Fatima (estimated)", "2042-06-04": "Death of Khomeini", "2042-06-05": "Khordad National Uprising", - "2042-07-01": "Birthday of Ali* (*estimated)", - "2042-07-15": "Ascension of Muhammad* (*estimated)", - "2042-08-01": "Birthday of Mahdi* (*estimated)", - "2042-09-06": "Martyrdom of Ali* (*estimated)", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr* (*estimated)", - "2042-10-09": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-12-01": "Eid al-Ghadeer* (*estimated)", - "2042-12-22": "Tasua* (*estimated)", - "2042-12-23": "Ashura* (*estimated)", - "2043-01-31": "Arbaeen* (*estimated)", - "2043-02-08": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2043-02-10": "Martyrdom of Ali al-Rida* (*estimated)", + "2042-07-01": "Birthday of Ali (estimated)", + "2042-07-15": "Ascension of Muhammad (estimated)", + "2042-08-01": "Birthday of Mahdi (estimated)", + "2042-09-06": "Martyrdom of Ali (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (estimated)", + "2042-10-09": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-12-01": "Eid al-Ghadeer (estimated)", + "2042-12-22": "Tasua (estimated)", + "2042-12-23": "Ashura (estimated)", + "2043-01-31": "Arbaeen (estimated)", + "2043-02-08": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2043-02-10": "Martyrdom of Ali al-Rida (estimated)", "2043-02-11": "Islamic Revolution Day", - "2043-02-18": "Martyrdom of Hasan al-Askari* (*estimated)", - "2043-02-27": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2043-02-18": "Martyrdom of Hasan al-Askari (estimated)", + "2043-02-27": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2043-03-20": "Iranian Oil Industry Nationalization Day", "2043-03-21": "Persian New Year", "2043-03-22": "Persian New Year", @@ -1711,26 +1711,26 @@ "2043-03-24": "Persian New Year", "2043-04-01": "Islamic Republic Day", "2043-04-02": "Nature's Day", - "2043-05-12": "Martyrdom of Fatima* (*estimated)", + "2043-05-12": "Martyrdom of Fatima (estimated)", "2043-06-04": "Death of Khomeini", "2043-06-05": "Khordad National Uprising", - "2043-06-20": "Birthday of Ali* (*estimated)", - "2043-07-04": "Ascension of Muhammad* (*estimated)", - "2043-07-22": "Birthday of Mahdi* (*estimated)", - "2043-08-26": "Martyrdom of Ali* (*estimated)", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr* (*estimated)", - "2043-09-28": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-20": "Eid al-Ghadeer* (*estimated)", - "2043-12-11": "Tasua* (*estimated)", - "2043-12-12": "Ashura* (*estimated)", - "2044-01-21": "Arbaeen* (*estimated)", - "2044-01-29": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2044-01-30": "Martyrdom of Ali al-Rida* (*estimated)", - "2044-02-07": "Martyrdom of Hasan al-Askari* (*estimated)", + "2043-06-20": "Birthday of Ali (estimated)", + "2043-07-04": "Ascension of Muhammad (estimated)", + "2043-07-22": "Birthday of Mahdi (estimated)", + "2043-08-26": "Martyrdom of Ali (estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (estimated)", + "2043-09-28": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-20": "Eid al-Ghadeer (estimated)", + "2043-12-11": "Tasua (estimated)", + "2043-12-12": "Ashura (estimated)", + "2044-01-21": "Arbaeen (estimated)", + "2044-01-29": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2044-01-30": "Martyrdom of Ali al-Rida (estimated)", + "2044-02-07": "Martyrdom of Hasan al-Askari (estimated)", "2044-02-11": "Islamic Revolution Day", - "2044-02-16": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2044-02-16": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2044-03-19": "Iranian Oil Industry Nationalization Day", "2044-03-20": "Persian New Year", "2044-03-21": "Persian New Year", @@ -1738,25 +1738,25 @@ "2044-03-23": "Persian New Year", "2044-03-31": "Islamic Republic Day", "2044-04-01": "Nature's Day", - "2044-05-01": "Martyrdom of Fatima* (*estimated)", + "2044-05-01": "Martyrdom of Fatima (estimated)", "2044-06-03": "Death of Khomeini", "2044-06-04": "Khordad National Uprising", - "2044-06-09": "Birthday of Ali* (*estimated)", - "2044-06-23": "Ascension of Muhammad* (*estimated)", - "2044-07-10": "Birthday of Mahdi* (*estimated)", - "2044-08-15": "Martyrdom of Ali* (*estimated)", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr* (*estimated)", - "2044-09-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-08": "Eid al-Ghadeer* (*estimated)", - "2044-11-29": "Tasua* (*estimated)", - "2044-11-30": "Ashura* (*estimated)", - "2045-01-09": "Arbaeen* (*estimated)", - "2045-01-17": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2045-01-18": "Martyrdom of Ali al-Rida* (*estimated)", - "2045-01-26": "Martyrdom of Hasan al-Askari* (*estimated)", - "2045-02-04": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2044-06-09": "Birthday of Ali (estimated)", + "2044-06-23": "Ascension of Muhammad (estimated)", + "2044-07-10": "Birthday of Mahdi (estimated)", + "2044-08-15": "Martyrdom of Ali (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (estimated)", + "2044-09-17": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-08": "Eid al-Ghadeer (estimated)", + "2044-11-29": "Tasua (estimated)", + "2044-11-30": "Ashura (estimated)", + "2045-01-09": "Arbaeen (estimated)", + "2045-01-17": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2045-01-18": "Martyrdom of Ali al-Rida (estimated)", + "2045-01-26": "Martyrdom of Hasan al-Askari (estimated)", + "2045-02-04": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2045-02-10": "Islamic Revolution Day", "2045-03-19": "Iranian Oil Industry Nationalization Day", "2045-03-20": "Persian New Year", @@ -1765,25 +1765,25 @@ "2045-03-23": "Persian New Year", "2045-03-31": "Islamic Republic Day", "2045-04-01": "Nature's Day", - "2045-04-20": "Martyrdom of Fatima* (*estimated)", - "2045-05-30": "Birthday of Ali* (*estimated)", + "2045-04-20": "Martyrdom of Fatima (estimated)", + "2045-05-30": "Birthday of Ali (estimated)", "2045-06-03": "Death of Khomeini", "2045-06-04": "Khordad National Uprising", - "2045-06-13": "Ascension of Muhammad* (*estimated)", - "2045-06-30": "Birthday of Mahdi* (*estimated)", - "2045-08-04": "Martyrdom of Ali* (*estimated)", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr* (*estimated)", - "2045-09-07": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-29": "Eid al-Ghadeer* (*estimated)", - "2045-11-18": "Tasua* (*estimated)", - "2045-11-19": "Ashura* (*estimated)", - "2045-12-29": "Arbaeen* (*estimated)", - "2046-01-06": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2046-01-07": "Martyrdom of Ali al-Rida* (*estimated)", - "2046-01-15": "Martyrdom of Hasan al-Askari* (*estimated)", - "2046-01-24": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2045-06-13": "Ascension of Muhammad (estimated)", + "2045-06-30": "Birthday of Mahdi (estimated)", + "2045-08-04": "Martyrdom of Ali (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (estimated)", + "2045-09-07": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-29": "Eid al-Ghadeer (estimated)", + "2045-11-18": "Tasua (estimated)", + "2045-11-19": "Ashura (estimated)", + "2045-12-29": "Arbaeen (estimated)", + "2046-01-06": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2046-01-07": "Martyrdom of Ali al-Rida (estimated)", + "2046-01-15": "Martyrdom of Hasan al-Askari (estimated)", + "2046-01-24": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2046-02-10": "Islamic Revolution Day", "2046-03-19": "Iranian Oil Industry Nationalization Day", "2046-03-21": "Persian New Year", @@ -1792,54 +1792,54 @@ "2046-03-24": "Persian New Year", "2046-04-01": "Islamic Republic Day", "2046-04-02": "Nature's Day", - "2046-04-09": "Martyrdom of Fatima* (*estimated)", - "2046-05-19": "Birthday of Ali* (*estimated)", - "2046-06-02": "Ascension of Muhammad* (*estimated)", + "2046-04-09": "Martyrdom of Fatima (estimated)", + "2046-05-19": "Birthday of Ali (estimated)", + "2046-06-02": "Ascension of Muhammad (estimated)", "2046-06-04": "Death of Khomeini", "2046-06-05": "Khordad National Uprising", - "2046-06-19": "Birthday of Mahdi* (*estimated)", - "2046-07-25": "Martyrdom of Ali* (*estimated)", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr* (*estimated)", - "2046-08-27": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-18": "Eid al-Ghadeer* (*estimated)", - "2046-11-08": "Tasua* (*estimated)", - "2046-11-09": "Ashura* (*estimated)", - "2046-12-18": "Arbaeen* (*estimated)", - "2046-12-26": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2046-12-27": "Martyrdom of Ali al-Rida* (*estimated)", - "2047-01-04": "Martyrdom of Hasan al-Askari* (*estimated)", - "2047-01-13": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2046-06-19": "Birthday of Mahdi (estimated)", + "2046-07-25": "Martyrdom of Ali (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (estimated)", + "2046-08-27": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-18": "Eid al-Ghadeer (estimated)", + "2046-11-08": "Tasua (estimated)", + "2046-11-09": "Ashura (estimated)", + "2046-12-18": "Arbaeen (estimated)", + "2046-12-26": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2046-12-27": "Martyrdom of Ali al-Rida (estimated)", + "2047-01-04": "Martyrdom of Hasan al-Askari (estimated)", + "2047-01-13": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2047-02-11": "Islamic Revolution Day", "2047-03-20": "Iranian Oil Industry Nationalization Day", "2047-03-21": "Persian New Year", "2047-03-22": "Persian New Year", "2047-03-23": "Persian New Year", "2047-03-24": "Persian New Year", - "2047-03-29": "Martyrdom of Fatima* (*estimated)", + "2047-03-29": "Martyrdom of Fatima (estimated)", "2047-04-01": "Islamic Republic Day", "2047-04-02": "Nature's Day", - "2047-05-08": "Birthday of Ali* (*estimated)", - "2047-05-22": "Ascension of Muhammad* (*estimated)", + "2047-05-08": "Birthday of Ali (estimated)", + "2047-05-22": "Ascension of Muhammad (estimated)", "2047-06-04": "Death of Khomeini", "2047-06-05": "Khordad National Uprising", - "2047-06-09": "Birthday of Mahdi* (*estimated)", - "2047-07-14": "Martyrdom of Ali* (*estimated)", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr* (*estimated)", - "2047-08-17": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-08": "Eid al-Ghadeer* (*estimated)", - "2047-10-28": "Tasua* (*estimated)", - "2047-10-29": "Ashura* (*estimated)", - "2047-12-08": "Arbaeen* (*estimated)", - "2047-12-16": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2047-12-17": "Martyrdom of Ali al-Rida* (*estimated)", - "2047-12-25": "Martyrdom of Hasan al-Askari* (*estimated)", - "2048-01-03": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2047-06-09": "Birthday of Mahdi (estimated)", + "2047-07-14": "Martyrdom of Ali (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (estimated)", + "2047-08-17": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-08": "Eid al-Ghadeer (estimated)", + "2047-10-28": "Tasua (estimated)", + "2047-10-29": "Ashura (estimated)", + "2047-12-08": "Arbaeen (estimated)", + "2047-12-16": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2047-12-17": "Martyrdom of Ali al-Rida (estimated)", + "2047-12-25": "Martyrdom of Hasan al-Askari (estimated)", + "2048-01-03": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2048-02-11": "Islamic Revolution Day", - "2048-03-18": "Martyrdom of Fatima* (*estimated)", + "2048-03-18": "Martyrdom of Fatima (estimated)", "2048-03-19": "Iranian Oil Industry Nationalization Day", "2048-03-20": "Persian New Year", "2048-03-21": "Persian New Year", @@ -1847,26 +1847,26 @@ "2048-03-23": "Persian New Year", "2048-03-31": "Islamic Republic Day", "2048-04-01": "Nature's Day", - "2048-04-26": "Birthday of Ali* (*estimated)", - "2048-05-10": "Ascension of Muhammad* (*estimated)", - "2048-05-28": "Birthday of Mahdi* (*estimated)", + "2048-04-26": "Birthday of Ali (estimated)", + "2048-05-10": "Ascension of Muhammad (estimated)", + "2048-05-28": "Birthday of Mahdi (estimated)", "2048-06-03": "Death of Khomeini", "2048-06-04": "Khordad National Uprising", - "2048-07-02": "Martyrdom of Ali* (*estimated)", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated)", - "2048-08-05": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-27": "Eid al-Ghadeer* (*estimated)", - "2048-10-17": "Tasua* (*estimated)", - "2048-10-18": "Ashura* (*estimated)", - "2048-11-26": "Arbaeen* (*estimated)", - "2048-12-04": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2048-12-06": "Martyrdom of Ali al-Rida* (*estimated)", - "2048-12-14": "Martyrdom of Hasan al-Askari* (*estimated)", - "2048-12-23": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2048-07-02": "Martyrdom of Ali (estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated)", + "2048-08-05": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-27": "Eid al-Ghadeer (estimated)", + "2048-10-17": "Tasua (estimated)", + "2048-10-18": "Ashura (estimated)", + "2048-11-26": "Arbaeen (estimated)", + "2048-12-04": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2048-12-06": "Martyrdom of Ali al-Rida (estimated)", + "2048-12-14": "Martyrdom of Hasan al-Askari (estimated)", + "2048-12-23": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2049-02-10": "Islamic Revolution Day", - "2049-03-07": "Martyrdom of Fatima* (*estimated)", + "2049-03-07": "Martyrdom of Fatima (estimated)", "2049-03-19": "Iranian Oil Industry Nationalization Day", "2049-03-20": "Persian New Year", "2049-03-21": "Persian New Year", @@ -1874,26 +1874,26 @@ "2049-03-23": "Persian New Year", "2049-03-31": "Islamic Republic Day", "2049-04-01": "Nature's Day", - "2049-04-15": "Birthday of Ali* (*estimated)", - "2049-04-29": "Ascension of Muhammad* (*estimated)", - "2049-05-17": "Birthday of Mahdi* (*estimated)", + "2049-04-15": "Birthday of Ali (estimated)", + "2049-04-29": "Ascension of Muhammad (estimated)", + "2049-05-17": "Birthday of Mahdi (estimated)", "2049-06-03": "Death of Khomeini", "2049-06-04": "Khordad National Uprising", - "2049-06-22": "Martyrdom of Ali* (*estimated)", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr* (*estimated)", - "2049-07-25": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-16": "Eid al-Ghadeer* (*estimated)", - "2049-10-06": "Tasua* (*estimated)", - "2049-10-07": "Ashura* (*estimated)", - "2049-11-16": "Arbaeen* (*estimated)", - "2049-11-24": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2049-11-25": "Martyrdom of Ali al-Rida* (*estimated)", - "2049-12-03": "Martyrdom of Hasan al-Askari* (*estimated)", - "2049-12-12": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)", + "2049-06-22": "Martyrdom of Ali (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (estimated)", + "2049-07-25": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-16": "Eid al-Ghadeer (estimated)", + "2049-10-06": "Tasua (estimated)", + "2049-10-07": "Ashura (estimated)", + "2049-11-16": "Arbaeen (estimated)", + "2049-11-24": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2049-11-25": "Martyrdom of Ali al-Rida (estimated)", + "2049-12-03": "Martyrdom of Hasan al-Askari (estimated)", + "2049-12-12": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)", "2050-02-10": "Islamic Revolution Day", - "2050-02-25": "Martyrdom of Fatima* (*estimated)", + "2050-02-25": "Martyrdom of Fatima (estimated)", "2050-03-19": "Iranian Oil Industry Nationalization Day", "2050-03-21": "Persian New Year", "2050-03-22": "Persian New Year", @@ -1901,22 +1901,22 @@ "2050-03-24": "Persian New Year", "2050-04-01": "Islamic Republic Day", "2050-04-02": "Nature's Day", - "2050-04-05": "Birthday of Ali* (*estimated)", - "2050-04-19": "Ascension of Muhammad* (*estimated)", - "2050-05-06": "Birthday of Mahdi* (*estimated)", + "2050-04-05": "Birthday of Ali (estimated)", + "2050-04-19": "Ascension of Muhammad (estimated)", + "2050-05-06": "Birthday of Mahdi (estimated)", "2050-06-04": "Death of Khomeini", "2050-06-05": "Khordad National Uprising", - "2050-06-11": "Martyrdom of Ali* (*estimated)", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr* (*estimated)", - "2050-07-14": "Martyrdom of Ja'far al-Sadiq* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-09-05": "Eid al-Ghadeer* (*estimated)", - "2050-09-25": "Tasua* (*estimated)", - "2050-09-26": "Ashura* (*estimated)", - "2050-11-05": "Arbaeen* (*estimated)", - "2050-11-13": "Demise of Prophet Muhammad and Hasan ibn Ali* (*estimated)", - "2050-11-14": "Martyrdom of Ali al-Rida* (*estimated)", - "2050-11-22": "Martyrdom of Hasan al-Askari* (*estimated)", - "2050-12-01": "Birthday of Muhammad and Ja'far al-Sadiq* (*estimated)" + "2050-06-11": "Martyrdom of Ali (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (estimated)", + "2050-07-14": "Martyrdom of Ja'far al-Sadiq (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-09-05": "Eid al-Ghadeer (estimated)", + "2050-09-25": "Tasua (estimated)", + "2050-09-26": "Ashura (estimated)", + "2050-11-05": "Arbaeen (estimated)", + "2050-11-13": "Demise of Prophet Muhammad and Hasan ibn Ali (estimated)", + "2050-11-14": "Martyrdom of Ali al-Rida (estimated)", + "2050-11-22": "Martyrdom of Hasan al-Askari (estimated)", + "2050-12-01": "Birthday of Muhammad and Ja'far al-Sadiq (estimated)" } diff --git a/snapshots/countries/KG_COMMON.json b/snapshots/countries/KG_COMMON.json index f5d063602..3cc020f7b 100644 --- a/snapshots/countries/KG_COMMON.json +++ b/snapshots/countries/KG_COMMON.json @@ -7,10 +7,10 @@ "1950-05-01": "International Workers' Day", "1950-05-05": "Constitution Day", "1950-05-09": "Victory Day", - "1950-07-16": "Orozo Ait* (*estimated)", - "1950-07-17": "Orozo Ait* (*estimated)", + "1950-07-16": "Orozo Ait (estimated)", + "1950-07-17": "Orozo Ait (estimated)", "1950-08-31": "Independence Day", - "1950-09-23": "Kurman Ait* (*estimated)", + "1950-09-23": "Kurman Ait (estimated)", "1950-11-07": "Days of History and Commemoration of Ancestors", "1950-11-08": "Days of History and Commemoration of Ancestors", "1950-12-31": "New Year's Eve", @@ -22,10 +22,10 @@ "1951-05-01": "International Workers' Day", "1951-05-05": "Constitution Day", "1951-05-09": "Victory Day", - "1951-07-06": "Orozo Ait* (*estimated)", - "1951-07-07": "Orozo Ait* (*estimated)", + "1951-07-06": "Orozo Ait (estimated)", + "1951-07-07": "Orozo Ait (estimated)", "1951-08-31": "Independence Day", - "1951-09-12": "Kurman Ait* (*estimated)", + "1951-09-12": "Kurman Ait (estimated)", "1951-11-07": "Days of History and Commemoration of Ancestors", "1951-11-08": "Days of History and Commemoration of Ancestors", "1951-12-31": "New Year's Eve", @@ -37,9 +37,9 @@ "1952-05-01": "International Workers' Day", "1952-05-05": "Constitution Day", "1952-05-09": "Victory Day", - "1952-06-23": "Orozo Ait* (*estimated)", - "1952-06-24": "Orozo Ait* (*estimated)", - "1952-08-31": "Independence Day; Kurman Ait* (*estimated)", + "1952-06-23": "Orozo Ait (estimated)", + "1952-06-24": "Orozo Ait (estimated)", + "1952-08-31": "Independence Day; Kurman Ait (estimated)", "1952-11-07": "Days of History and Commemoration of Ancestors", "1952-11-08": "Days of History and Commemoration of Ancestors", "1952-12-31": "New Year's Eve", @@ -51,9 +51,9 @@ "1953-05-01": "International Workers' Day", "1953-05-05": "Constitution Day", "1953-05-09": "Victory Day", - "1953-06-13": "Orozo Ait* (*estimated)", - "1953-06-14": "Orozo Ait* (*estimated)", - "1953-08-20": "Kurman Ait* (*estimated)", + "1953-06-13": "Orozo Ait (estimated)", + "1953-06-14": "Orozo Ait (estimated)", + "1953-08-20": "Kurman Ait (estimated)", "1953-08-31": "Independence Day", "1953-11-07": "Days of History and Commemoration of Ancestors", "1953-11-08": "Days of History and Commemoration of Ancestors", @@ -66,9 +66,9 @@ "1954-05-01": "International Workers' Day", "1954-05-05": "Constitution Day", "1954-05-09": "Victory Day", - "1954-06-02": "Orozo Ait* (*estimated)", - "1954-06-03": "Orozo Ait* (*estimated)", - "1954-08-09": "Kurman Ait* (*estimated)", + "1954-06-02": "Orozo Ait (estimated)", + "1954-06-03": "Orozo Ait (estimated)", + "1954-08-09": "Kurman Ait (estimated)", "1954-08-31": "Independence Day", "1954-11-07": "Days of History and Commemoration of Ancestors", "1954-11-08": "Days of History and Commemoration of Ancestors", @@ -81,9 +81,9 @@ "1955-05-01": "International Workers' Day", "1955-05-05": "Constitution Day", "1955-05-09": "Victory Day", - "1955-05-23": "Orozo Ait* (*estimated)", - "1955-05-24": "Orozo Ait* (*estimated)", - "1955-07-30": "Kurman Ait* (*estimated)", + "1955-05-23": "Orozo Ait (estimated)", + "1955-05-24": "Orozo Ait (estimated)", + "1955-07-30": "Kurman Ait (estimated)", "1955-08-31": "Independence Day", "1955-11-07": "Days of History and Commemoration of Ancestors", "1955-11-08": "Days of History and Commemoration of Ancestors", @@ -96,9 +96,9 @@ "1956-05-01": "International Workers' Day", "1956-05-05": "Constitution Day", "1956-05-09": "Victory Day", - "1956-05-11": "Orozo Ait* (*estimated)", - "1956-05-12": "Orozo Ait* (*estimated)", - "1956-07-19": "Kurman Ait* (*estimated)", + "1956-05-11": "Orozo Ait (estimated)", + "1956-05-12": "Orozo Ait (estimated)", + "1956-07-19": "Kurman Ait (estimated)", "1956-08-31": "Independence Day", "1956-11-07": "Days of History and Commemoration of Ancestors", "1956-11-08": "Days of History and Commemoration of Ancestors", @@ -108,11 +108,11 @@ "1957-02-23": "Fatherland Defender's Day", "1957-03-08": "International Women's Day", "1957-03-21": "Nooruz Mairamy", - "1957-05-01": "International Workers' Day; Orozo Ait* (*estimated)", - "1957-05-02": "Orozo Ait* (*estimated)", + "1957-05-01": "International Workers' Day; Orozo Ait (estimated)", + "1957-05-02": "Orozo Ait (estimated)", "1957-05-05": "Constitution Day", "1957-05-09": "Victory Day", - "1957-07-08": "Kurman Ait* (*estimated)", + "1957-07-08": "Kurman Ait (estimated)", "1957-08-31": "Independence Day", "1957-11-07": "Days of History and Commemoration of Ancestors", "1957-11-08": "Days of History and Commemoration of Ancestors", @@ -122,12 +122,12 @@ "1958-02-23": "Fatherland Defender's Day", "1958-03-08": "International Women's Day", "1958-03-21": "Nooruz Mairamy", - "1958-04-20": "Orozo Ait* (*estimated)", - "1958-04-21": "Orozo Ait* (*estimated)", + "1958-04-20": "Orozo Ait (estimated)", + "1958-04-21": "Orozo Ait (estimated)", "1958-05-01": "International Workers' Day", "1958-05-05": "Constitution Day", "1958-05-09": "Victory Day", - "1958-06-27": "Kurman Ait* (*estimated)", + "1958-06-27": "Kurman Ait (estimated)", "1958-08-31": "Independence Day", "1958-11-07": "Days of History and Commemoration of Ancestors", "1958-11-08": "Days of History and Commemoration of Ancestors", @@ -137,12 +137,12 @@ "1959-02-23": "Fatherland Defender's Day", "1959-03-08": "International Women's Day", "1959-03-21": "Nooruz Mairamy", - "1959-04-10": "Orozo Ait* (*estimated)", - "1959-04-11": "Orozo Ait* (*estimated)", + "1959-04-10": "Orozo Ait (estimated)", + "1959-04-11": "Orozo Ait (estimated)", "1959-05-01": "International Workers' Day", "1959-05-05": "Constitution Day", "1959-05-09": "Victory Day", - "1959-06-17": "Kurman Ait* (*estimated)", + "1959-06-17": "Kurman Ait (estimated)", "1959-08-31": "Independence Day", "1959-11-07": "Days of History and Commemoration of Ancestors", "1959-11-08": "Days of History and Commemoration of Ancestors", @@ -152,12 +152,12 @@ "1960-02-23": "Fatherland Defender's Day", "1960-03-08": "International Women's Day", "1960-03-21": "Nooruz Mairamy", - "1960-03-28": "Orozo Ait* (*estimated)", - "1960-03-29": "Orozo Ait* (*estimated)", + "1960-03-28": "Orozo Ait (estimated)", + "1960-03-29": "Orozo Ait (estimated)", "1960-05-01": "International Workers' Day", "1960-05-05": "Constitution Day", "1960-05-09": "Victory Day", - "1960-06-04": "Kurman Ait* (*estimated)", + "1960-06-04": "Kurman Ait (estimated)", "1960-08-31": "Independence Day", "1960-11-07": "Days of History and Commemoration of Ancestors", "1960-11-08": "Days of History and Commemoration of Ancestors", @@ -166,13 +166,13 @@ "1961-01-07": "Christmas Day", "1961-02-23": "Fatherland Defender's Day", "1961-03-08": "International Women's Day", - "1961-03-18": "Orozo Ait* (*estimated)", - "1961-03-19": "Orozo Ait* (*estimated)", + "1961-03-18": "Orozo Ait (estimated)", + "1961-03-19": "Orozo Ait (estimated)", "1961-03-21": "Nooruz Mairamy", "1961-05-01": "International Workers' Day", "1961-05-05": "Constitution Day", "1961-05-09": "Victory Day", - "1961-05-25": "Kurman Ait* (*estimated)", + "1961-05-25": "Kurman Ait (estimated)", "1961-08-31": "Independence Day", "1961-11-07": "Days of History and Commemoration of Ancestors", "1961-11-08": "Days of History and Commemoration of Ancestors", @@ -180,13 +180,13 @@ "1962-01-01": "New Year's Day", "1962-01-07": "Christmas Day", "1962-02-23": "Fatherland Defender's Day", - "1962-03-07": "Orozo Ait* (*estimated)", - "1962-03-08": "International Women's Day; Orozo Ait* (*estimated)", + "1962-03-07": "Orozo Ait (estimated)", + "1962-03-08": "International Women's Day; Orozo Ait (estimated)", "1962-03-21": "Nooruz Mairamy", "1962-05-01": "International Workers' Day", "1962-05-05": "Constitution Day", "1962-05-09": "Victory Day", - "1962-05-14": "Kurman Ait* (*estimated)", + "1962-05-14": "Kurman Ait (estimated)", "1962-08-31": "Independence Day", "1962-11-07": "Days of History and Commemoration of Ancestors", "1962-11-08": "Days of History and Commemoration of Ancestors", @@ -194,12 +194,12 @@ "1963-01-01": "New Year's Day", "1963-01-07": "Christmas Day", "1963-02-23": "Fatherland Defender's Day", - "1963-02-24": "Orozo Ait* (*estimated)", - "1963-02-25": "Orozo Ait* (*estimated)", + "1963-02-24": "Orozo Ait (estimated)", + "1963-02-25": "Orozo Ait (estimated)", "1963-03-08": "International Women's Day", "1963-03-21": "Nooruz Mairamy", "1963-05-01": "International Workers' Day", - "1963-05-03": "Kurman Ait* (*estimated)", + "1963-05-03": "Kurman Ait (estimated)", "1963-05-05": "Constitution Day", "1963-05-09": "Victory Day", "1963-08-31": "Independence Day", @@ -208,12 +208,12 @@ "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", "1964-01-07": "Christmas Day", - "1964-02-14": "Orozo Ait* (*estimated)", - "1964-02-15": "Orozo Ait* (*estimated)", + "1964-02-14": "Orozo Ait (estimated)", + "1964-02-15": "Orozo Ait (estimated)", "1964-02-23": "Fatherland Defender's Day", "1964-03-08": "International Women's Day", "1964-03-21": "Nooruz Mairamy", - "1964-04-22": "Kurman Ait* (*estimated)", + "1964-04-22": "Kurman Ait (estimated)", "1964-05-01": "International Workers' Day", "1964-05-05": "Constitution Day", "1964-05-09": "Victory Day", @@ -223,12 +223,12 @@ "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", "1965-01-07": "Christmas Day", - "1965-02-02": "Orozo Ait* (*estimated)", - "1965-02-03": "Orozo Ait* (*estimated)", + "1965-02-02": "Orozo Ait (estimated)", + "1965-02-03": "Orozo Ait (estimated)", "1965-02-23": "Fatherland Defender's Day", "1965-03-08": "International Women's Day", "1965-03-21": "Nooruz Mairamy", - "1965-04-11": "Kurman Ait* (*estimated)", + "1965-04-11": "Kurman Ait (estimated)", "1965-05-01": "International Workers' Day", "1965-05-05": "Constitution Day", "1965-05-09": "Victory Day", @@ -238,12 +238,12 @@ "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", "1966-01-07": "Christmas Day", - "1966-01-22": "Orozo Ait* (*estimated)", - "1966-01-23": "Orozo Ait* (*estimated)", + "1966-01-22": "Orozo Ait (estimated)", + "1966-01-23": "Orozo Ait (estimated)", "1966-02-23": "Fatherland Defender's Day", "1966-03-08": "International Women's Day", "1966-03-21": "Nooruz Mairamy", - "1966-04-01": "Kurman Ait* (*estimated)", + "1966-04-01": "Kurman Ait (estimated)", "1966-05-01": "International Workers' Day", "1966-05-05": "Constitution Day", "1966-05-09": "Victory Day", @@ -253,11 +253,11 @@ "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", "1967-01-07": "Christmas Day", - "1967-01-12": "Orozo Ait* (*estimated)", - "1967-01-13": "Orozo Ait* (*estimated)", + "1967-01-12": "Orozo Ait (estimated)", + "1967-01-13": "Orozo Ait (estimated)", "1967-02-23": "Fatherland Defender's Day", "1967-03-08": "International Women's Day", - "1967-03-21": "Kurman Ait* (*estimated); Nooruz Mairamy", + "1967-03-21": "Kurman Ait (estimated); Nooruz Mairamy", "1967-05-01": "International Workers' Day", "1967-05-05": "Constitution Day", "1967-05-09": "Victory Day", @@ -265,12 +265,12 @@ "1967-11-07": "Days of History and Commemoration of Ancestors", "1967-11-08": "Days of History and Commemoration of Ancestors", "1967-12-31": "New Year's Eve", - "1968-01-01": "New Year's Day; Orozo Ait* (*estimated)", - "1968-01-02": "Orozo Ait* (*estimated)", + "1968-01-01": "New Year's Day; Orozo Ait (estimated)", + "1968-01-02": "Orozo Ait (estimated)", "1968-01-07": "Christmas Day", "1968-02-23": "Fatherland Defender's Day", "1968-03-08": "International Women's Day", - "1968-03-09": "Kurman Ait* (*estimated)", + "1968-03-09": "Kurman Ait (estimated)", "1968-03-21": "Nooruz Mairamy", "1968-05-01": "International Workers' Day", "1968-05-05": "Constitution Day", @@ -278,13 +278,13 @@ "1968-08-31": "Independence Day", "1968-11-07": "Days of History and Commemoration of Ancestors", "1968-11-08": "Days of History and Commemoration of Ancestors", - "1968-12-21": "Orozo Ait* (*estimated)", - "1968-12-22": "Orozo Ait* (*estimated)", + "1968-12-21": "Orozo Ait (estimated)", + "1968-12-22": "Orozo Ait (estimated)", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", "1969-01-07": "Christmas Day", "1969-02-23": "Fatherland Defender's Day", - "1969-02-27": "Kurman Ait* (*estimated)", + "1969-02-27": "Kurman Ait (estimated)", "1969-03-08": "International Women's Day", "1969-03-21": "Nooruz Mairamy", "1969-05-01": "International Workers' Day", @@ -293,12 +293,12 @@ "1969-08-31": "Independence Day", "1969-11-07": "Days of History and Commemoration of Ancestors", "1969-11-08": "Days of History and Commemoration of Ancestors", - "1969-12-10": "Orozo Ait* (*estimated)", - "1969-12-11": "Orozo Ait* (*estimated)", + "1969-12-10": "Orozo Ait (estimated)", + "1969-12-11": "Orozo Ait (estimated)", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", "1970-01-07": "Christmas Day", - "1970-02-16": "Kurman Ait* (*estimated)", + "1970-02-16": "Kurman Ait (estimated)", "1970-02-23": "Fatherland Defender's Day", "1970-03-08": "International Women's Day", "1970-03-21": "Nooruz Mairamy", @@ -308,12 +308,12 @@ "1970-08-31": "Independence Day", "1970-11-07": "Days of History and Commemoration of Ancestors", "1970-11-08": "Days of History and Commemoration of Ancestors", - "1970-11-30": "Orozo Ait* (*estimated)", - "1970-12-01": "Orozo Ait* (*estimated)", + "1970-11-30": "Orozo Ait (estimated)", + "1970-12-01": "Orozo Ait (estimated)", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", "1971-01-07": "Christmas Day", - "1971-02-06": "Kurman Ait* (*estimated)", + "1971-02-06": "Kurman Ait (estimated)", "1971-02-23": "Fatherland Defender's Day", "1971-03-08": "International Women's Day", "1971-03-21": "Nooruz Mairamy", @@ -323,12 +323,12 @@ "1971-08-31": "Independence Day", "1971-11-07": "Days of History and Commemoration of Ancestors", "1971-11-08": "Days of History and Commemoration of Ancestors", - "1971-11-19": "Orozo Ait* (*estimated)", - "1971-11-20": "Orozo Ait* (*estimated)", + "1971-11-19": "Orozo Ait (estimated)", + "1971-11-20": "Orozo Ait (estimated)", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", "1972-01-07": "Christmas Day", - "1972-01-26": "Kurman Ait* (*estimated)", + "1972-01-26": "Kurman Ait (estimated)", "1972-02-23": "Fatherland Defender's Day", "1972-03-08": "International Women's Day", "1972-03-21": "Nooruz Mairamy", @@ -336,12 +336,12 @@ "1972-05-05": "Constitution Day", "1972-05-09": "Victory Day", "1972-08-31": "Independence Day", - "1972-11-07": "Days of History and Commemoration of Ancestors; Orozo Ait* (*estimated)", - "1972-11-08": "Days of History and Commemoration of Ancestors; Orozo Ait* (*estimated)", + "1972-11-07": "Days of History and Commemoration of Ancestors; Orozo Ait (estimated)", + "1972-11-08": "Days of History and Commemoration of Ancestors; Orozo Ait (estimated)", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", "1973-01-07": "Christmas Day", - "1973-01-14": "Kurman Ait* (*estimated)", + "1973-01-14": "Kurman Ait (estimated)", "1973-02-23": "Fatherland Defender's Day", "1973-03-08": "International Women's Day", "1973-03-21": "Nooruz Mairamy", @@ -349,13 +349,13 @@ "1973-05-05": "Constitution Day", "1973-05-09": "Victory Day", "1973-08-31": "Independence Day", - "1973-10-27": "Orozo Ait* (*estimated)", - "1973-10-28": "Orozo Ait* (*estimated)", + "1973-10-27": "Orozo Ait (estimated)", + "1973-10-28": "Orozo Ait (estimated)", "1973-11-07": "Days of History and Commemoration of Ancestors", "1973-11-08": "Days of History and Commemoration of Ancestors", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", - "1974-01-03": "Kurman Ait* (*estimated)", + "1974-01-03": "Kurman Ait (estimated)", "1974-01-07": "Christmas Day", "1974-02-23": "Fatherland Defender's Day", "1974-03-08": "International Women's Day", @@ -364,11 +364,11 @@ "1974-05-05": "Constitution Day", "1974-05-09": "Victory Day", "1974-08-31": "Independence Day", - "1974-10-16": "Orozo Ait* (*estimated)", - "1974-10-17": "Orozo Ait* (*estimated)", + "1974-10-16": "Orozo Ait (estimated)", + "1974-10-17": "Orozo Ait (estimated)", "1974-11-07": "Days of History and Commemoration of Ancestors", "1974-11-08": "Days of History and Commemoration of Ancestors", - "1974-12-24": "Kurman Ait* (*estimated)", + "1974-12-24": "Kurman Ait (estimated)", "1974-12-31": "New Year's Eve", "1975-01-01": "New Year's Day", "1975-01-07": "Christmas Day", @@ -379,11 +379,11 @@ "1975-05-05": "Constitution Day", "1975-05-09": "Victory Day", "1975-08-31": "Independence Day", - "1975-10-06": "Orozo Ait* (*estimated)", - "1975-10-07": "Orozo Ait* (*estimated)", + "1975-10-06": "Orozo Ait (estimated)", + "1975-10-07": "Orozo Ait (estimated)", "1975-11-07": "Days of History and Commemoration of Ancestors", "1975-11-08": "Days of History and Commemoration of Ancestors", - "1975-12-13": "Kurman Ait* (*estimated)", + "1975-12-13": "Kurman Ait (estimated)", "1975-12-31": "New Year's Eve", "1976-01-01": "New Year's Day", "1976-01-07": "Christmas Day", @@ -394,11 +394,11 @@ "1976-05-05": "Constitution Day", "1976-05-09": "Victory Day", "1976-08-31": "Independence Day", - "1976-09-24": "Orozo Ait* (*estimated)", - "1976-09-25": "Orozo Ait* (*estimated)", + "1976-09-24": "Orozo Ait (estimated)", + "1976-09-25": "Orozo Ait (estimated)", "1976-11-07": "Days of History and Commemoration of Ancestors", "1976-11-08": "Days of History and Commemoration of Ancestors", - "1976-12-01": "Kurman Ait* (*estimated)", + "1976-12-01": "Kurman Ait (estimated)", "1976-12-31": "New Year's Eve", "1977-01-01": "New Year's Day", "1977-01-07": "Christmas Day", @@ -409,11 +409,11 @@ "1977-05-05": "Constitution Day", "1977-05-09": "Victory Day", "1977-08-31": "Independence Day", - "1977-09-14": "Orozo Ait* (*estimated)", - "1977-09-15": "Orozo Ait* (*estimated)", + "1977-09-14": "Orozo Ait (estimated)", + "1977-09-15": "Orozo Ait (estimated)", "1977-11-07": "Days of History and Commemoration of Ancestors", "1977-11-08": "Days of History and Commemoration of Ancestors", - "1977-11-21": "Kurman Ait* (*estimated)", + "1977-11-21": "Kurman Ait (estimated)", "1977-12-31": "New Year's Eve", "1978-01-01": "New Year's Day", "1978-01-07": "Christmas Day", @@ -424,11 +424,11 @@ "1978-05-05": "Constitution Day", "1978-05-09": "Victory Day", "1978-08-31": "Independence Day", - "1978-09-03": "Orozo Ait* (*estimated)", - "1978-09-04": "Orozo Ait* (*estimated)", + "1978-09-03": "Orozo Ait (estimated)", + "1978-09-04": "Orozo Ait (estimated)", "1978-11-07": "Days of History and Commemoration of Ancestors", "1978-11-08": "Days of History and Commemoration of Ancestors", - "1978-11-10": "Kurman Ait* (*estimated)", + "1978-11-10": "Kurman Ait (estimated)", "1978-12-31": "New Year's Eve", "1979-01-01": "New Year's Day", "1979-01-07": "Christmas Day", @@ -438,10 +438,10 @@ "1979-05-01": "International Workers' Day", "1979-05-05": "Constitution Day", "1979-05-09": "Victory Day", - "1979-08-23": "Orozo Ait* (*estimated)", - "1979-08-24": "Orozo Ait* (*estimated)", + "1979-08-23": "Orozo Ait (estimated)", + "1979-08-24": "Orozo Ait (estimated)", "1979-08-31": "Independence Day", - "1979-10-31": "Kurman Ait* (*estimated)", + "1979-10-31": "Kurman Ait (estimated)", "1979-11-07": "Days of History and Commemoration of Ancestors", "1979-11-08": "Days of History and Commemoration of Ancestors", "1979-12-31": "New Year's Eve", @@ -453,10 +453,10 @@ "1980-05-01": "International Workers' Day", "1980-05-05": "Constitution Day", "1980-05-09": "Victory Day", - "1980-08-12": "Orozo Ait* (*estimated)", - "1980-08-13": "Orozo Ait* (*estimated)", + "1980-08-12": "Orozo Ait (estimated)", + "1980-08-13": "Orozo Ait (estimated)", "1980-08-31": "Independence Day", - "1980-10-19": "Kurman Ait* (*estimated)", + "1980-10-19": "Kurman Ait (estimated)", "1980-11-07": "Days of History and Commemoration of Ancestors", "1980-11-08": "Days of History and Commemoration of Ancestors", "1980-12-31": "New Year's Eve", @@ -468,10 +468,10 @@ "1981-05-01": "International Workers' Day", "1981-05-05": "Constitution Day", "1981-05-09": "Victory Day", - "1981-08-01": "Orozo Ait* (*estimated)", - "1981-08-02": "Orozo Ait* (*estimated)", + "1981-08-01": "Orozo Ait (estimated)", + "1981-08-02": "Orozo Ait (estimated)", "1981-08-31": "Independence Day", - "1981-10-08": "Kurman Ait* (*estimated)", + "1981-10-08": "Kurman Ait (estimated)", "1981-11-07": "Days of History and Commemoration of Ancestors", "1981-11-08": "Days of History and Commemoration of Ancestors", "1981-12-31": "New Year's Eve", @@ -483,10 +483,10 @@ "1982-05-01": "International Workers' Day", "1982-05-05": "Constitution Day", "1982-05-09": "Victory Day", - "1982-07-21": "Orozo Ait* (*estimated)", - "1982-07-22": "Orozo Ait* (*estimated)", + "1982-07-21": "Orozo Ait (estimated)", + "1982-07-22": "Orozo Ait (estimated)", "1982-08-31": "Independence Day", - "1982-09-27": "Kurman Ait* (*estimated)", + "1982-09-27": "Kurman Ait (estimated)", "1982-11-07": "Days of History and Commemoration of Ancestors", "1982-11-08": "Days of History and Commemoration of Ancestors", "1982-12-31": "New Year's Eve", @@ -498,10 +498,10 @@ "1983-05-01": "International Workers' Day", "1983-05-05": "Constitution Day", "1983-05-09": "Victory Day", - "1983-07-11": "Orozo Ait* (*estimated)", - "1983-07-12": "Orozo Ait* (*estimated)", + "1983-07-11": "Orozo Ait (estimated)", + "1983-07-12": "Orozo Ait (estimated)", "1983-08-31": "Independence Day", - "1983-09-17": "Kurman Ait* (*estimated)", + "1983-09-17": "Kurman Ait (estimated)", "1983-11-07": "Days of History and Commemoration of Ancestors", "1983-11-08": "Days of History and Commemoration of Ancestors", "1983-12-31": "New Year's Eve", @@ -513,10 +513,10 @@ "1984-05-01": "International Workers' Day", "1984-05-05": "Constitution Day", "1984-05-09": "Victory Day", - "1984-06-30": "Orozo Ait* (*estimated)", - "1984-07-01": "Orozo Ait* (*estimated)", + "1984-06-30": "Orozo Ait (estimated)", + "1984-07-01": "Orozo Ait (estimated)", "1984-08-31": "Independence Day", - "1984-09-05": "Kurman Ait* (*estimated)", + "1984-09-05": "Kurman Ait (estimated)", "1984-11-07": "Days of History and Commemoration of Ancestors", "1984-11-08": "Days of History and Commemoration of Ancestors", "1984-12-31": "New Year's Eve", @@ -528,9 +528,9 @@ "1985-05-01": "International Workers' Day", "1985-05-05": "Constitution Day", "1985-05-09": "Victory Day", - "1985-06-19": "Orozo Ait* (*estimated)", - "1985-06-20": "Orozo Ait* (*estimated)", - "1985-08-26": "Kurman Ait* (*estimated)", + "1985-06-19": "Orozo Ait (estimated)", + "1985-06-20": "Orozo Ait (estimated)", + "1985-08-26": "Kurman Ait (estimated)", "1985-08-31": "Independence Day", "1985-11-07": "Days of History and Commemoration of Ancestors", "1985-11-08": "Days of History and Commemoration of Ancestors", @@ -543,9 +543,9 @@ "1986-05-01": "International Workers' Day", "1986-05-05": "Constitution Day", "1986-05-09": "Victory Day", - "1986-06-08": "Orozo Ait* (*estimated)", - "1986-06-09": "Orozo Ait* (*estimated)", - "1986-08-15": "Kurman Ait* (*estimated)", + "1986-06-08": "Orozo Ait (estimated)", + "1986-06-09": "Orozo Ait (estimated)", + "1986-08-15": "Kurman Ait (estimated)", "1986-08-31": "Independence Day", "1986-11-07": "Days of History and Commemoration of Ancestors", "1986-11-08": "Days of History and Commemoration of Ancestors", @@ -558,9 +558,9 @@ "1987-05-01": "International Workers' Day", "1987-05-05": "Constitution Day", "1987-05-09": "Victory Day", - "1987-05-28": "Orozo Ait* (*estimated)", - "1987-05-29": "Orozo Ait* (*estimated)", - "1987-08-04": "Kurman Ait* (*estimated)", + "1987-05-28": "Orozo Ait (estimated)", + "1987-05-29": "Orozo Ait (estimated)", + "1987-08-04": "Kurman Ait (estimated)", "1987-08-31": "Independence Day", "1987-11-07": "Days of History and Commemoration of Ancestors", "1987-11-08": "Days of History and Commemoration of Ancestors", @@ -573,9 +573,9 @@ "1988-05-01": "International Workers' Day", "1988-05-05": "Constitution Day", "1988-05-09": "Victory Day", - "1988-05-16": "Orozo Ait* (*estimated)", - "1988-05-17": "Orozo Ait* (*estimated)", - "1988-07-23": "Kurman Ait* (*estimated)", + "1988-05-16": "Orozo Ait (estimated)", + "1988-05-17": "Orozo Ait (estimated)", + "1988-07-23": "Kurman Ait (estimated)", "1988-08-31": "Independence Day", "1988-11-07": "Days of History and Commemoration of Ancestors", "1988-11-08": "Days of History and Commemoration of Ancestors", @@ -587,10 +587,10 @@ "1989-03-21": "Nooruz Mairamy", "1989-05-01": "International Workers' Day", "1989-05-05": "Constitution Day", - "1989-05-06": "Orozo Ait* (*estimated)", - "1989-05-07": "Orozo Ait* (*estimated)", + "1989-05-06": "Orozo Ait (estimated)", + "1989-05-07": "Orozo Ait (estimated)", "1989-05-09": "Victory Day", - "1989-07-13": "Kurman Ait* (*estimated)", + "1989-07-13": "Kurman Ait (estimated)", "1989-08-31": "Independence Day", "1989-11-07": "Days of History and Commemoration of Ancestors", "1989-11-08": "Days of History and Commemoration of Ancestors", @@ -600,12 +600,12 @@ "1990-02-23": "Fatherland Defender's Day", "1990-03-08": "International Women's Day", "1990-03-21": "Nooruz Mairamy", - "1990-04-26": "Orozo Ait* (*estimated)", - "1990-04-27": "Orozo Ait* (*estimated)", + "1990-04-26": "Orozo Ait (estimated)", + "1990-04-27": "Orozo Ait (estimated)", "1990-05-01": "International Workers' Day", "1990-05-05": "Constitution Day", "1990-05-09": "Victory Day", - "1990-07-02": "Kurman Ait* (*estimated)", + "1990-07-02": "Kurman Ait (estimated)", "1990-08-31": "Independence Day", "1990-11-07": "Days of History and Commemoration of Ancestors", "1990-11-08": "Days of History and Commemoration of Ancestors", @@ -615,12 +615,12 @@ "1991-02-23": "Fatherland Defender's Day", "1991-03-08": "International Women's Day", "1991-03-21": "Nooruz Mairamy", - "1991-04-15": "Orozo Ait* (*estimated)", - "1991-04-16": "Orozo Ait* (*estimated)", + "1991-04-15": "Orozo Ait (estimated)", + "1991-04-16": "Orozo Ait (estimated)", "1991-05-01": "International Workers' Day", "1991-05-05": "Constitution Day", "1991-05-09": "Victory Day", - "1991-06-22": "Kurman Ait* (*estimated)", + "1991-06-22": "Kurman Ait (estimated)", "1991-08-31": "Independence Day", "1991-11-07": "Days of History and Commemoration of Ancestors", "1991-11-08": "Days of History and Commemoration of Ancestors", @@ -630,12 +630,12 @@ "1992-02-23": "Fatherland Defender's Day", "1992-03-08": "International Women's Day", "1992-03-21": "Nooruz Mairamy", - "1992-04-04": "Orozo Ait* (*estimated)", - "1992-04-05": "Orozo Ait* (*estimated)", + "1992-04-04": "Orozo Ait (estimated)", + "1992-04-05": "Orozo Ait (estimated)", "1992-05-01": "International Workers' Day", "1992-05-05": "Constitution Day", "1992-05-09": "Victory Day", - "1992-06-11": "Kurman Ait* (*estimated)", + "1992-06-11": "Kurman Ait (estimated)", "1992-08-31": "Independence Day", "1992-11-07": "Days of History and Commemoration of Ancestors", "1992-11-08": "Days of History and Commemoration of Ancestors", @@ -645,12 +645,12 @@ "1993-02-23": "Fatherland Defender's Day", "1993-03-08": "International Women's Day", "1993-03-21": "Nooruz Mairamy", - "1993-03-24": "Orozo Ait* (*estimated)", - "1993-03-25": "Orozo Ait* (*estimated)", + "1993-03-24": "Orozo Ait (estimated)", + "1993-03-25": "Orozo Ait (estimated)", "1993-05-01": "International Workers' Day", "1993-05-05": "Constitution Day", "1993-05-09": "Victory Day", - "1993-05-31": "Kurman Ait* (*estimated)", + "1993-05-31": "Kurman Ait (estimated)", "1993-08-31": "Independence Day", "1993-11-07": "Days of History and Commemoration of Ancestors", "1993-11-08": "Days of History and Commemoration of Ancestors", @@ -659,13 +659,13 @@ "1994-01-07": "Christmas Day", "1994-02-23": "Fatherland Defender's Day", "1994-03-08": "International Women's Day", - "1994-03-13": "Orozo Ait* (*estimated)", - "1994-03-14": "Orozo Ait* (*estimated)", + "1994-03-13": "Orozo Ait (estimated)", + "1994-03-14": "Orozo Ait (estimated)", "1994-03-21": "Nooruz Mairamy", "1994-05-01": "International Workers' Day", "1994-05-05": "Constitution Day", "1994-05-09": "Victory Day", - "1994-05-20": "Kurman Ait* (*estimated)", + "1994-05-20": "Kurman Ait (estimated)", "1994-08-31": "Independence Day", "1994-11-07": "Days of History and Commemoration of Ancestors", "1994-11-08": "Days of History and Commemoration of Ancestors", @@ -673,25 +673,25 @@ "1995-01-01": "New Year's Day", "1995-01-07": "Christmas Day", "1995-02-23": "Fatherland Defender's Day", - "1995-03-02": "Orozo Ait* (*estimated)", - "1995-03-03": "Orozo Ait* (*estimated)", + "1995-03-02": "Orozo Ait (estimated)", + "1995-03-03": "Orozo Ait (estimated)", "1995-03-08": "International Women's Day", "1995-03-21": "Nooruz Mairamy", "1995-05-01": "International Workers' Day", "1995-05-05": "Constitution Day", - "1995-05-09": "Kurman Ait* (*estimated); Victory Day", + "1995-05-09": "Kurman Ait (estimated); Victory Day", "1995-08-31": "Independence Day", "1995-11-07": "Days of History and Commemoration of Ancestors", "1995-11-08": "Days of History and Commemoration of Ancestors", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", "1996-01-07": "Christmas Day", - "1996-02-19": "Orozo Ait* (*estimated)", - "1996-02-20": "Orozo Ait* (*estimated)", + "1996-02-19": "Orozo Ait (estimated)", + "1996-02-20": "Orozo Ait (estimated)", "1996-02-23": "Fatherland Defender's Day", "1996-03-08": "International Women's Day", "1996-03-21": "Nooruz Mairamy", - "1996-04-27": "Kurman Ait* (*estimated)", + "1996-04-27": "Kurman Ait (estimated)", "1996-05-01": "International Workers' Day", "1996-05-05": "Constitution Day", "1996-05-09": "Victory Day", @@ -701,12 +701,12 @@ "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", "1997-01-07": "Christmas Day", - "1997-02-08": "Orozo Ait* (*estimated)", - "1997-02-09": "Orozo Ait* (*estimated)", + "1997-02-08": "Orozo Ait (estimated)", + "1997-02-09": "Orozo Ait (estimated)", "1997-02-23": "Fatherland Defender's Day", "1997-03-08": "International Women's Day", "1997-03-21": "Nooruz Mairamy", - "1997-04-17": "Kurman Ait* (*estimated)", + "1997-04-17": "Kurman Ait (estimated)", "1997-05-01": "International Workers' Day", "1997-05-05": "Constitution Day", "1997-05-09": "Victory Day", @@ -716,12 +716,12 @@ "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", "1998-01-07": "Christmas Day", - "1998-01-29": "Orozo Ait* (*estimated)", - "1998-01-30": "Orozo Ait* (*estimated)", + "1998-01-29": "Orozo Ait (estimated)", + "1998-01-30": "Orozo Ait (estimated)", "1998-02-23": "Fatherland Defender's Day", "1998-03-08": "International Women's Day", "1998-03-21": "Nooruz Mairamy", - "1998-04-07": "Kurman Ait* (*estimated)", + "1998-04-07": "Kurman Ait (estimated)", "1998-05-01": "International Workers' Day", "1998-05-05": "Constitution Day", "1998-05-09": "Victory Day", @@ -731,12 +731,12 @@ "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", "1999-01-07": "Christmas Day", - "1999-01-18": "Orozo Ait* (*estimated)", - "1999-01-19": "Orozo Ait* (*estimated)", + "1999-01-18": "Orozo Ait (estimated)", + "1999-01-19": "Orozo Ait (estimated)", "1999-02-23": "Fatherland Defender's Day", "1999-03-08": "International Women's Day", "1999-03-21": "Nooruz Mairamy", - "1999-03-27": "Kurman Ait* (*estimated)", + "1999-03-27": "Kurman Ait (estimated)", "1999-05-01": "International Workers' Day", "1999-05-05": "Constitution Day", "1999-05-09": "Victory Day", @@ -746,11 +746,11 @@ "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", "2000-01-07": "Christmas Day", - "2000-01-08": "Orozo Ait* (*estimated)", - "2000-01-09": "Orozo Ait* (*estimated)", + "2000-01-08": "Orozo Ait (estimated)", + "2000-01-09": "Orozo Ait (estimated)", "2000-02-23": "Fatherland Defender's Day", "2000-03-08": "International Women's Day", - "2000-03-16": "Kurman Ait* (*estimated)", + "2000-03-16": "Kurman Ait (estimated)", "2000-03-21": "Nooruz Mairamy", "2000-05-01": "International Workers' Day", "2000-05-05": "Constitution Day", @@ -758,13 +758,13 @@ "2000-08-31": "Independence Day", "2000-11-07": "Days of History and Commemoration of Ancestors", "2000-11-08": "Days of History and Commemoration of Ancestors", - "2000-12-27": "Orozo Ait* (*estimated)", - "2000-12-28": "Orozo Ait* (*estimated)", + "2000-12-27": "Orozo Ait (estimated)", + "2000-12-28": "Orozo Ait (estimated)", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", "2001-01-07": "Christmas Day", "2001-02-23": "Fatherland Defender's Day", - "2001-03-05": "Kurman Ait* (*estimated)", + "2001-03-05": "Kurman Ait (estimated)", "2001-03-08": "International Women's Day", "2001-03-21": "Nooruz Mairamy", "2001-05-01": "International Workers' Day", @@ -773,12 +773,12 @@ "2001-08-31": "Independence Day", "2001-11-07": "Days of History and Commemoration of Ancestors", "2001-11-08": "Days of History and Commemoration of Ancestors", - "2001-12-16": "Orozo Ait* (*estimated)", - "2001-12-17": "Orozo Ait* (*estimated)", + "2001-12-16": "Orozo Ait (estimated)", + "2001-12-17": "Orozo Ait (estimated)", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", "2002-01-07": "Christmas Day", - "2002-02-22": "Kurman Ait* (*estimated)", + "2002-02-22": "Kurman Ait (estimated)", "2002-02-23": "Fatherland Defender's Day", "2002-03-08": "International Women's Day", "2002-03-21": "Nooruz Mairamy", @@ -788,12 +788,12 @@ "2002-08-31": "Independence Day", "2002-11-07": "Days of History and Commemoration of Ancestors", "2002-11-08": "Days of History and Commemoration of Ancestors", - "2002-12-05": "Orozo Ait* (*estimated)", - "2002-12-06": "Orozo Ait* (*estimated)", + "2002-12-05": "Orozo Ait (estimated)", + "2002-12-06": "Orozo Ait (estimated)", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", "2003-01-07": "Christmas Day", - "2003-02-11": "Kurman Ait* (*estimated)", + "2003-02-11": "Kurman Ait (estimated)", "2003-02-23": "Fatherland Defender's Day", "2003-03-08": "International Women's Day", "2003-03-21": "Nooruz Mairamy", @@ -803,12 +803,12 @@ "2003-08-31": "Independence Day", "2003-11-07": "Days of History and Commemoration of Ancestors", "2003-11-08": "Days of History and Commemoration of Ancestors", - "2003-11-25": "Orozo Ait* (*estimated)", - "2003-11-26": "Orozo Ait* (*estimated)", + "2003-11-25": "Orozo Ait (estimated)", + "2003-11-26": "Orozo Ait (estimated)", "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", "2004-01-07": "Christmas Day", - "2004-02-01": "Kurman Ait* (*estimated)", + "2004-02-01": "Kurman Ait (estimated)", "2004-02-23": "Fatherland Defender's Day", "2004-03-08": "International Women's Day", "2004-03-21": "Nooruz Mairamy", @@ -818,12 +818,12 @@ "2004-08-31": "Independence Day", "2004-11-07": "Days of History and Commemoration of Ancestors", "2004-11-08": "Days of History and Commemoration of Ancestors", - "2004-11-14": "Orozo Ait* (*estimated)", - "2004-11-15": "Orozo Ait* (*estimated)", + "2004-11-14": "Orozo Ait (estimated)", + "2004-11-15": "Orozo Ait (estimated)", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", "2005-01-07": "Christmas Day", - "2005-01-21": "Kurman Ait* (*estimated)", + "2005-01-21": "Kurman Ait (estimated)", "2005-02-23": "Fatherland Defender's Day", "2005-03-08": "International Women's Day", "2005-03-21": "Nooruz Mairamy", @@ -831,14 +831,14 @@ "2005-05-05": "Constitution Day", "2005-05-09": "Victory Day", "2005-08-31": "Independence Day", - "2005-11-03": "Orozo Ait* (*estimated)", - "2005-11-04": "Orozo Ait* (*estimated)", + "2005-11-03": "Orozo Ait (estimated)", + "2005-11-04": "Orozo Ait (estimated)", "2005-11-07": "Days of History and Commemoration of Ancestors", "2005-11-08": "Days of History and Commemoration of Ancestors", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", "2006-01-07": "Christmas Day", - "2006-01-10": "Kurman Ait* (*estimated)", + "2006-01-10": "Kurman Ait (estimated)", "2006-02-23": "Fatherland Defender's Day", "2006-03-08": "International Women's Day", "2006-03-21": "Nooruz Mairamy", @@ -846,11 +846,11 @@ "2006-05-05": "Constitution Day", "2006-05-09": "Victory Day", "2006-08-31": "Independence Day", - "2006-10-23": "Orozo Ait* (*estimated)", - "2006-10-24": "Orozo Ait* (*estimated)", + "2006-10-23": "Orozo Ait (estimated)", + "2006-10-24": "Orozo Ait (estimated)", "2006-11-07": "Days of History and Commemoration of Ancestors", "2006-11-08": "Days of History and Commemoration of Ancestors", - "2006-12-31": "Kurman Ait* (*estimated); New Year's Eve", + "2006-12-31": "Kurman Ait (estimated); New Year's Eve", "2007-01-01": "New Year's Day", "2007-01-07": "Christmas Day", "2007-02-23": "Fatherland Defender's Day", @@ -860,11 +860,11 @@ "2007-05-05": "Constitution Day", "2007-05-09": "Victory Day", "2007-08-31": "Independence Day", - "2007-10-13": "Orozo Ait* (*estimated)", - "2007-10-14": "Orozo Ait* (*estimated)", + "2007-10-13": "Orozo Ait (estimated)", + "2007-10-14": "Orozo Ait (estimated)", "2007-11-07": "Days of History and Commemoration of Ancestors", "2007-11-08": "Days of History and Commemoration of Ancestors", - "2007-12-20": "Kurman Ait* (*estimated)", + "2007-12-20": "Kurman Ait (estimated)", "2007-12-31": "New Year's Eve", "2008-01-01": "New Year's Day", "2008-01-07": "Christmas Day", @@ -875,11 +875,11 @@ "2008-05-05": "Constitution Day", "2008-05-09": "Victory Day", "2008-08-31": "Independence Day", - "2008-10-01": "Orozo Ait* (*estimated)", - "2008-10-02": "Orozo Ait* (*estimated)", + "2008-10-01": "Orozo Ait (estimated)", + "2008-10-02": "Orozo Ait (estimated)", "2008-11-07": "Days of History and Commemoration of Ancestors", "2008-11-08": "Days of History and Commemoration of Ancestors", - "2008-12-08": "Kurman Ait* (*estimated)", + "2008-12-08": "Kurman Ait (estimated)", "2008-12-31": "New Year's Eve", "2009-01-01": "New Year's Day", "2009-01-07": "Christmas Day", @@ -890,11 +890,11 @@ "2009-05-05": "Constitution Day", "2009-05-09": "Victory Day", "2009-08-31": "Independence Day", - "2009-09-20": "Orozo Ait* (*estimated)", - "2009-09-21": "Orozo Ait* (*estimated)", + "2009-09-20": "Orozo Ait (estimated)", + "2009-09-21": "Orozo Ait (estimated)", "2009-11-07": "Days of History and Commemoration of Ancestors", "2009-11-08": "Days of History and Commemoration of Ancestors", - "2009-11-27": "Kurman Ait* (*estimated)", + "2009-11-27": "Kurman Ait (estimated)", "2009-12-31": "New Year's Eve", "2010-01-01": "New Year's Day", "2010-01-07": "Christmas Day", @@ -905,11 +905,11 @@ "2010-05-05": "Constitution Day", "2010-05-09": "Victory Day", "2010-08-31": "Independence Day", - "2010-09-10": "Orozo Ait* (*estimated)", - "2010-09-11": "Orozo Ait* (*estimated)", + "2010-09-10": "Orozo Ait (estimated)", + "2010-09-11": "Orozo Ait (estimated)", "2010-11-07": "Days of History and Commemoration of Ancestors", "2010-11-08": "Days of History and Commemoration of Ancestors", - "2010-11-16": "Kurman Ait* (*estimated)", + "2010-11-16": "Kurman Ait (estimated)", "2010-12-31": "New Year's Eve", "2011-01-01": "New Year's Day", "2011-01-07": "Christmas Day", @@ -919,9 +919,9 @@ "2011-05-01": "International Workers' Day", "2011-05-05": "Constitution Day", "2011-05-09": "Victory Day", - "2011-08-30": "Orozo Ait* (*estimated)", - "2011-08-31": "Independence Day; Orozo Ait* (*estimated)", - "2011-11-06": "Kurman Ait* (*estimated)", + "2011-08-30": "Orozo Ait (estimated)", + "2011-08-31": "Independence Day; Orozo Ait (estimated)", + "2011-11-06": "Kurman Ait (estimated)", "2011-11-07": "Days of History and Commemoration of Ancestors", "2011-11-08": "Days of History and Commemoration of Ancestors", "2011-12-31": "New Year's Eve", @@ -933,10 +933,10 @@ "2012-05-01": "International Workers' Day", "2012-05-05": "Constitution Day", "2012-05-09": "Victory Day", - "2012-08-19": "Orozo Ait* (*estimated)", - "2012-08-20": "Orozo Ait* (*estimated)", + "2012-08-19": "Orozo Ait (estimated)", + "2012-08-20": "Orozo Ait (estimated)", "2012-08-31": "Independence Day", - "2012-10-26": "Kurman Ait* (*estimated)", + "2012-10-26": "Kurman Ait (estimated)", "2012-11-07": "Days of History and Commemoration of Ancestors", "2012-11-08": "Days of History and Commemoration of Ancestors", "2012-12-31": "New Year's Eve", @@ -948,10 +948,10 @@ "2013-05-01": "International Workers' Day", "2013-05-05": "Constitution Day", "2013-05-09": "Victory Day", - "2013-08-08": "Orozo Ait* (*estimated)", - "2013-08-09": "Orozo Ait* (*estimated)", + "2013-08-08": "Orozo Ait (estimated)", + "2013-08-09": "Orozo Ait (estimated)", "2013-08-31": "Independence Day", - "2013-10-15": "Kurman Ait* (*estimated)", + "2013-10-15": "Kurman Ait (estimated)", "2013-11-07": "Days of History and Commemoration of Ancestors", "2013-11-08": "Days of History and Commemoration of Ancestors", "2013-12-31": "New Year's Eve", @@ -963,10 +963,10 @@ "2014-05-01": "International Workers' Day", "2014-05-05": "Constitution Day", "2014-05-09": "Victory Day", - "2014-07-28": "Orozo Ait* (*estimated)", - "2014-07-29": "Orozo Ait* (*estimated)", + "2014-07-28": "Orozo Ait (estimated)", + "2014-07-29": "Orozo Ait (estimated)", "2014-08-31": "Independence Day", - "2014-10-04": "Kurman Ait* (*estimated)", + "2014-10-04": "Kurman Ait (estimated)", "2014-11-07": "Days of History and Commemoration of Ancestors", "2014-11-08": "Days of History and Commemoration of Ancestors", "2014-12-31": "New Year's Eve", @@ -978,10 +978,10 @@ "2015-05-01": "International Workers' Day", "2015-05-05": "Constitution Day", "2015-05-09": "Victory Day", - "2015-07-17": "Orozo Ait* (*estimated)", - "2015-07-18": "Orozo Ait* (*estimated)", + "2015-07-17": "Orozo Ait (estimated)", + "2015-07-18": "Orozo Ait (estimated)", "2015-08-31": "Independence Day", - "2015-09-23": "Kurman Ait* (*estimated)", + "2015-09-23": "Kurman Ait (estimated)", "2015-11-07": "Days of History and Commemoration of Ancestors", "2015-11-08": "Days of History and Commemoration of Ancestors", "2015-12-31": "New Year's Eve", @@ -994,10 +994,10 @@ "2016-05-01": "International Workers' Day", "2016-05-05": "Constitution Day", "2016-05-09": "Victory Day", - "2016-07-06": "Orozo Ait* (*estimated)", - "2016-07-07": "Orozo Ait* (*estimated)", + "2016-07-06": "Orozo Ait (estimated)", + "2016-07-07": "Orozo Ait (estimated)", "2016-08-31": "Independence Day", - "2016-09-11": "Kurman Ait* (*estimated)", + "2016-09-11": "Kurman Ait (estimated)", "2016-11-07": "Days of History and Commemoration of Ancestors", "2016-11-08": "Days of History and Commemoration of Ancestors", "2016-12-31": "New Year's Eve", @@ -1010,10 +1010,10 @@ "2017-05-01": "International Workers' Day", "2017-05-05": "Constitution Day", "2017-05-09": "Victory Day", - "2017-06-25": "Orozo Ait* (*estimated)", - "2017-06-26": "Orozo Ait* (*estimated)", + "2017-06-25": "Orozo Ait (estimated)", + "2017-06-26": "Orozo Ait (estimated)", "2017-08-31": "Independence Day", - "2017-09-01": "Kurman Ait* (*estimated)", + "2017-09-01": "Kurman Ait (estimated)", "2017-11-07": "Days of History and Commemoration of Ancestors", "2017-11-08": "Days of History and Commemoration of Ancestors", "2017-12-31": "New Year's Eve", @@ -1026,9 +1026,9 @@ "2018-05-01": "International Workers' Day", "2018-05-05": "Constitution Day", "2018-05-09": "Victory Day", - "2018-06-15": "Orozo Ait* (*estimated)", - "2018-06-16": "Orozo Ait* (*estimated)", - "2018-08-21": "Kurman Ait* (*estimated)", + "2018-06-15": "Orozo Ait (estimated)", + "2018-06-16": "Orozo Ait (estimated)", + "2018-08-21": "Kurman Ait (estimated)", "2018-08-31": "Independence Day", "2018-11-07": "Days of History and Commemoration of Ancestors", "2018-11-08": "Days of History and Commemoration of Ancestors", @@ -1042,9 +1042,9 @@ "2019-05-01": "International Workers' Day", "2019-05-05": "Constitution Day", "2019-05-09": "Victory Day", - "2019-06-04": "Orozo Ait* (*estimated)", - "2019-06-05": "Orozo Ait* (*estimated)", - "2019-08-11": "Kurman Ait* (*estimated)", + "2019-06-04": "Orozo Ait (estimated)", + "2019-06-05": "Orozo Ait (estimated)", + "2019-08-11": "Kurman Ait (estimated)", "2019-08-31": "Independence Day", "2019-11-07": "Days of History and Commemoration of Ancestors", "2019-11-08": "Days of History and Commemoration of Ancestors", @@ -1058,9 +1058,9 @@ "2020-05-01": "International Workers' Day", "2020-05-05": "Constitution Day", "2020-05-09": "Victory Day", - "2020-05-24": "Orozo Ait* (*estimated)", - "2020-05-25": "Orozo Ait* (*estimated)", - "2020-07-31": "Kurman Ait* (*estimated)", + "2020-05-24": "Orozo Ait (estimated)", + "2020-05-25": "Orozo Ait (estimated)", + "2020-07-31": "Kurman Ait (estimated)", "2020-08-31": "Independence Day", "2020-11-07": "Days of History and Commemoration of Ancestors", "2020-11-08": "Days of History and Commemoration of Ancestors", @@ -1074,9 +1074,9 @@ "2021-05-01": "International Workers' Day", "2021-05-05": "Constitution Day", "2021-05-09": "Victory Day", - "2021-05-13": "Orozo Ait* (*estimated)", - "2021-05-14": "Orozo Ait* (*estimated)", - "2021-07-20": "Kurman Ait* (*estimated)", + "2021-05-13": "Orozo Ait (estimated)", + "2021-05-14": "Orozo Ait (estimated)", + "2021-07-20": "Kurman Ait (estimated)", "2021-08-31": "Independence Day", "2021-11-07": "Days of History and Commemoration of Ancestors", "2021-11-08": "Days of History and Commemoration of Ancestors", @@ -1088,11 +1088,11 @@ "2022-03-21": "Nooruz Mairamy", "2022-04-07": "Day of the People's April Revolution", "2022-05-01": "International Workers' Day", - "2022-05-02": "Orozo Ait* (*estimated)", - "2022-05-03": "Orozo Ait* (*estimated)", + "2022-05-02": "Orozo Ait (estimated)", + "2022-05-03": "Orozo Ait (estimated)", "2022-05-05": "Constitution Day", "2022-05-09": "Victory Day", - "2022-07-09": "Kurman Ait* (*estimated)", + "2022-07-09": "Kurman Ait (estimated)", "2022-08-31": "Independence Day", "2022-11-07": "Days of History and Commemoration of Ancestors", "2022-11-08": "Days of History and Commemoration of Ancestors", @@ -1103,12 +1103,12 @@ "2023-03-08": "International Women's Day", "2023-03-21": "Nooruz Mairamy", "2023-04-07": "Day of the People's April Revolution", - "2023-04-21": "Orozo Ait* (*estimated)", - "2023-04-22": "Orozo Ait* (*estimated)", + "2023-04-21": "Orozo Ait (estimated)", + "2023-04-22": "Orozo Ait (estimated)", "2023-05-01": "International Workers' Day", "2023-05-05": "Constitution Day", "2023-05-09": "Victory Day", - "2023-06-28": "Kurman Ait* (*estimated)", + "2023-06-28": "Kurman Ait (estimated)", "2023-08-31": "Independence Day", "2023-11-07": "Days of History and Commemoration of Ancestors", "2023-11-08": "Days of History and Commemoration of Ancestors", @@ -1119,12 +1119,12 @@ "2024-03-08": "International Women's Day", "2024-03-21": "Nooruz Mairamy", "2024-04-07": "Day of the People's April Revolution", - "2024-04-10": "Orozo Ait* (*estimated)", - "2024-04-11": "Orozo Ait* (*estimated)", + "2024-04-10": "Orozo Ait (estimated)", + "2024-04-11": "Orozo Ait (estimated)", "2024-05-01": "International Workers' Day", "2024-05-05": "Constitution Day", "2024-05-09": "Victory Day", - "2024-06-16": "Kurman Ait* (*estimated)", + "2024-06-16": "Kurman Ait (estimated)", "2024-08-31": "Independence Day", "2024-11-07": "Days of History and Commemoration of Ancestors", "2024-11-08": "Days of History and Commemoration of Ancestors", @@ -1134,13 +1134,13 @@ "2025-02-23": "Fatherland Defender's Day", "2025-03-08": "International Women's Day", "2025-03-21": "Nooruz Mairamy", - "2025-03-30": "Orozo Ait* (*estimated)", - "2025-03-31": "Orozo Ait* (*estimated)", + "2025-03-30": "Orozo Ait (estimated)", + "2025-03-31": "Orozo Ait (estimated)", "2025-04-07": "Day of the People's April Revolution", "2025-05-01": "International Workers' Day", "2025-05-05": "Constitution Day", "2025-05-09": "Victory Day", - "2025-06-06": "Kurman Ait* (*estimated)", + "2025-06-06": "Kurman Ait (estimated)", "2025-08-31": "Independence Day", "2025-11-07": "Days of History and Commemoration of Ancestors", "2025-11-08": "Days of History and Commemoration of Ancestors", @@ -1149,13 +1149,13 @@ "2026-01-07": "Christmas Day", "2026-02-23": "Fatherland Defender's Day", "2026-03-08": "International Women's Day", - "2026-03-20": "Orozo Ait* (*estimated)", - "2026-03-21": "Nooruz Mairamy; Orozo Ait* (*estimated)", + "2026-03-20": "Orozo Ait (estimated)", + "2026-03-21": "Nooruz Mairamy; Orozo Ait (estimated)", "2026-04-07": "Day of the People's April Revolution", "2026-05-01": "International Workers' Day", "2026-05-05": "Constitution Day", "2026-05-09": "Victory Day", - "2026-05-27": "Kurman Ait* (*estimated)", + "2026-05-27": "Kurman Ait (estimated)", "2026-08-31": "Independence Day", "2026-11-07": "Days of History and Commemoration of Ancestors", "2026-11-08": "Days of History and Commemoration of Ancestors", @@ -1164,14 +1164,14 @@ "2027-01-07": "Christmas Day", "2027-02-23": "Fatherland Defender's Day", "2027-03-08": "International Women's Day", - "2027-03-09": "Orozo Ait* (*estimated)", - "2027-03-10": "Orozo Ait* (*estimated)", + "2027-03-09": "Orozo Ait (estimated)", + "2027-03-10": "Orozo Ait (estimated)", "2027-03-21": "Nooruz Mairamy", "2027-04-07": "Day of the People's April Revolution", "2027-05-01": "International Workers' Day", "2027-05-05": "Constitution Day", "2027-05-09": "Victory Day", - "2027-05-16": "Kurman Ait* (*estimated)", + "2027-05-16": "Kurman Ait (estimated)", "2027-08-31": "Independence Day", "2027-11-07": "Days of History and Commemoration of Ancestors", "2027-11-08": "Days of History and Commemoration of Ancestors", @@ -1179,13 +1179,13 @@ "2028-01-01": "New Year's Day", "2028-01-07": "Christmas Day", "2028-02-23": "Fatherland Defender's Day", - "2028-02-26": "Orozo Ait* (*estimated)", - "2028-02-27": "Orozo Ait* (*estimated)", + "2028-02-26": "Orozo Ait (estimated)", + "2028-02-27": "Orozo Ait (estimated)", "2028-03-08": "International Women's Day", "2028-03-21": "Nooruz Mairamy", "2028-04-07": "Day of the People's April Revolution", "2028-05-01": "International Workers' Day", - "2028-05-05": "Constitution Day; Kurman Ait* (*estimated)", + "2028-05-05": "Constitution Day; Kurman Ait (estimated)", "2028-05-09": "Victory Day", "2028-08-31": "Independence Day", "2028-11-07": "Days of History and Commemoration of Ancestors", @@ -1193,13 +1193,13 @@ "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", "2029-01-07": "Christmas Day", - "2029-02-14": "Orozo Ait* (*estimated)", - "2029-02-15": "Orozo Ait* (*estimated)", + "2029-02-14": "Orozo Ait (estimated)", + "2029-02-15": "Orozo Ait (estimated)", "2029-02-23": "Fatherland Defender's Day", "2029-03-08": "International Women's Day", "2029-03-21": "Nooruz Mairamy", "2029-04-07": "Day of the People's April Revolution", - "2029-04-24": "Kurman Ait* (*estimated)", + "2029-04-24": "Kurman Ait (estimated)", "2029-05-01": "International Workers' Day", "2029-05-05": "Constitution Day", "2029-05-09": "Victory Day", @@ -1209,13 +1209,13 @@ "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", "2030-01-07": "Christmas Day", - "2030-02-04": "Orozo Ait* (*estimated)", - "2030-02-05": "Orozo Ait* (*estimated)", + "2030-02-04": "Orozo Ait (estimated)", + "2030-02-05": "Orozo Ait (estimated)", "2030-02-23": "Fatherland Defender's Day", "2030-03-08": "International Women's Day", "2030-03-21": "Nooruz Mairamy", "2030-04-07": "Day of the People's April Revolution", - "2030-04-13": "Kurman Ait* (*estimated)", + "2030-04-13": "Kurman Ait (estimated)", "2030-05-01": "International Workers' Day", "2030-05-05": "Constitution Day", "2030-05-09": "Victory Day", @@ -1225,12 +1225,12 @@ "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", "2031-01-07": "Christmas Day", - "2031-01-24": "Orozo Ait* (*estimated)", - "2031-01-25": "Orozo Ait* (*estimated)", + "2031-01-24": "Orozo Ait (estimated)", + "2031-01-25": "Orozo Ait (estimated)", "2031-02-23": "Fatherland Defender's Day", "2031-03-08": "International Women's Day", "2031-03-21": "Nooruz Mairamy", - "2031-04-02": "Kurman Ait* (*estimated)", + "2031-04-02": "Kurman Ait (estimated)", "2031-04-07": "Day of the People's April Revolution", "2031-05-01": "International Workers' Day", "2031-05-05": "Constitution Day", @@ -1241,12 +1241,12 @@ "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", "2032-01-07": "Christmas Day", - "2032-01-14": "Orozo Ait* (*estimated)", - "2032-01-15": "Orozo Ait* (*estimated)", + "2032-01-14": "Orozo Ait (estimated)", + "2032-01-15": "Orozo Ait (estimated)", "2032-02-23": "Fatherland Defender's Day", "2032-03-08": "International Women's Day", "2032-03-21": "Nooruz Mairamy", - "2032-03-22": "Kurman Ait* (*estimated)", + "2032-03-22": "Kurman Ait (estimated)", "2032-04-07": "Day of the People's April Revolution", "2032-05-01": "International Workers' Day", "2032-05-05": "Constitution Day", @@ -1256,12 +1256,12 @@ "2032-11-08": "Days of History and Commemoration of Ancestors", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", - "2033-01-02": "Orozo Ait* (*estimated)", - "2033-01-03": "Orozo Ait* (*estimated)", + "2033-01-02": "Orozo Ait (estimated)", + "2033-01-03": "Orozo Ait (estimated)", "2033-01-07": "Christmas Day", "2033-02-23": "Fatherland Defender's Day", "2033-03-08": "International Women's Day", - "2033-03-11": "Kurman Ait* (*estimated)", + "2033-03-11": "Kurman Ait (estimated)", "2033-03-21": "Nooruz Mairamy", "2033-04-07": "Day of the People's April Revolution", "2033-05-01": "International Workers' Day", @@ -1270,13 +1270,13 @@ "2033-08-31": "Independence Day", "2033-11-07": "Days of History and Commemoration of Ancestors", "2033-11-08": "Days of History and Commemoration of Ancestors", - "2033-12-23": "Orozo Ait* (*estimated)", - "2033-12-24": "Orozo Ait* (*estimated)", + "2033-12-23": "Orozo Ait (estimated)", + "2033-12-24": "Orozo Ait (estimated)", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", "2034-01-07": "Christmas Day", "2034-02-23": "Fatherland Defender's Day", - "2034-03-01": "Kurman Ait* (*estimated)", + "2034-03-01": "Kurman Ait (estimated)", "2034-03-08": "International Women's Day", "2034-03-21": "Nooruz Mairamy", "2034-04-07": "Day of the People's April Revolution", @@ -1286,12 +1286,12 @@ "2034-08-31": "Independence Day", "2034-11-07": "Days of History and Commemoration of Ancestors", "2034-11-08": "Days of History and Commemoration of Ancestors", - "2034-12-12": "Orozo Ait* (*estimated)", - "2034-12-13": "Orozo Ait* (*estimated)", + "2034-12-12": "Orozo Ait (estimated)", + "2034-12-13": "Orozo Ait (estimated)", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", "2035-01-07": "Christmas Day", - "2035-02-18": "Kurman Ait* (*estimated)", + "2035-02-18": "Kurman Ait (estimated)", "2035-02-23": "Fatherland Defender's Day", "2035-03-08": "International Women's Day", "2035-03-21": "Nooruz Mairamy", @@ -1302,12 +1302,12 @@ "2035-08-31": "Independence Day", "2035-11-07": "Days of History and Commemoration of Ancestors", "2035-11-08": "Days of History and Commemoration of Ancestors", - "2035-12-01": "Orozo Ait* (*estimated)", - "2035-12-02": "Orozo Ait* (*estimated)", + "2035-12-01": "Orozo Ait (estimated)", + "2035-12-02": "Orozo Ait (estimated)", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", "2036-01-07": "Christmas Day", - "2036-02-07": "Kurman Ait* (*estimated)", + "2036-02-07": "Kurman Ait (estimated)", "2036-02-23": "Fatherland Defender's Day", "2036-03-08": "International Women's Day", "2036-03-21": "Nooruz Mairamy", @@ -1318,12 +1318,12 @@ "2036-08-31": "Independence Day", "2036-11-07": "Days of History and Commemoration of Ancestors", "2036-11-08": "Days of History and Commemoration of Ancestors", - "2036-11-19": "Orozo Ait* (*estimated)", - "2036-11-20": "Orozo Ait* (*estimated)", + "2036-11-19": "Orozo Ait (estimated)", + "2036-11-20": "Orozo Ait (estimated)", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", "2037-01-07": "Christmas Day", - "2037-01-26": "Kurman Ait* (*estimated)", + "2037-01-26": "Kurman Ait (estimated)", "2037-02-23": "Fatherland Defender's Day", "2037-03-08": "International Women's Day", "2037-03-21": "Nooruz Mairamy", @@ -1333,12 +1333,12 @@ "2037-05-09": "Victory Day", "2037-08-31": "Independence Day", "2037-11-07": "Days of History and Commemoration of Ancestors", - "2037-11-08": "Days of History and Commemoration of Ancestors; Orozo Ait* (*estimated)", - "2037-11-09": "Orozo Ait* (*estimated)", + "2037-11-08": "Days of History and Commemoration of Ancestors; Orozo Ait (estimated)", + "2037-11-09": "Orozo Ait (estimated)", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", "2038-01-07": "Christmas Day", - "2038-01-16": "Kurman Ait* (*estimated)", + "2038-01-16": "Kurman Ait (estimated)", "2038-02-23": "Fatherland Defender's Day", "2038-03-08": "International Women's Day", "2038-03-21": "Nooruz Mairamy", @@ -1347,13 +1347,13 @@ "2038-05-05": "Constitution Day", "2038-05-09": "Victory Day", "2038-08-31": "Independence Day", - "2038-10-29": "Orozo Ait* (*estimated)", - "2038-10-30": "Orozo Ait* (*estimated)", + "2038-10-29": "Orozo Ait (estimated)", + "2038-10-30": "Orozo Ait (estimated)", "2038-11-07": "Days of History and Commemoration of Ancestors", "2038-11-08": "Days of History and Commemoration of Ancestors", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", - "2039-01-05": "Kurman Ait* (*estimated)", + "2039-01-05": "Kurman Ait (estimated)", "2039-01-07": "Christmas Day", "2039-02-23": "Fatherland Defender's Day", "2039-03-08": "International Women's Day", @@ -1363,11 +1363,11 @@ "2039-05-05": "Constitution Day", "2039-05-09": "Victory Day", "2039-08-31": "Independence Day", - "2039-10-19": "Orozo Ait* (*estimated)", - "2039-10-20": "Orozo Ait* (*estimated)", + "2039-10-19": "Orozo Ait (estimated)", + "2039-10-20": "Orozo Ait (estimated)", "2039-11-07": "Days of History and Commemoration of Ancestors", "2039-11-08": "Days of History and Commemoration of Ancestors", - "2039-12-26": "Kurman Ait* (*estimated)", + "2039-12-26": "Kurman Ait (estimated)", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", "2040-01-07": "Christmas Day", @@ -1379,11 +1379,11 @@ "2040-05-05": "Constitution Day", "2040-05-09": "Victory Day", "2040-08-31": "Independence Day", - "2040-10-07": "Orozo Ait* (*estimated)", - "2040-10-08": "Orozo Ait* (*estimated)", + "2040-10-07": "Orozo Ait (estimated)", + "2040-10-08": "Orozo Ait (estimated)", "2040-11-07": "Days of History and Commemoration of Ancestors", "2040-11-08": "Days of History and Commemoration of Ancestors", - "2040-12-14": "Kurman Ait* (*estimated)", + "2040-12-14": "Kurman Ait (estimated)", "2040-12-31": "New Year's Eve", "2041-01-01": "New Year's Day", "2041-01-07": "Christmas Day", @@ -1395,11 +1395,11 @@ "2041-05-05": "Constitution Day", "2041-05-09": "Victory Day", "2041-08-31": "Independence Day", - "2041-09-26": "Orozo Ait* (*estimated)", - "2041-09-27": "Orozo Ait* (*estimated)", + "2041-09-26": "Orozo Ait (estimated)", + "2041-09-27": "Orozo Ait (estimated)", "2041-11-07": "Days of History and Commemoration of Ancestors", "2041-11-08": "Days of History and Commemoration of Ancestors", - "2041-12-04": "Kurman Ait* (*estimated)", + "2041-12-04": "Kurman Ait (estimated)", "2041-12-31": "New Year's Eve", "2042-01-01": "New Year's Day", "2042-01-07": "Christmas Day", @@ -1411,11 +1411,11 @@ "2042-05-05": "Constitution Day", "2042-05-09": "Victory Day", "2042-08-31": "Independence Day", - "2042-09-15": "Orozo Ait* (*estimated)", - "2042-09-16": "Orozo Ait* (*estimated)", + "2042-09-15": "Orozo Ait (estimated)", + "2042-09-16": "Orozo Ait (estimated)", "2042-11-07": "Days of History and Commemoration of Ancestors", "2042-11-08": "Days of History and Commemoration of Ancestors", - "2042-11-23": "Kurman Ait* (*estimated)", + "2042-11-23": "Kurman Ait (estimated)", "2042-12-31": "New Year's Eve", "2043-01-01": "New Year's Day", "2043-01-07": "Christmas Day", @@ -1427,11 +1427,11 @@ "2043-05-05": "Constitution Day", "2043-05-09": "Victory Day", "2043-08-31": "Independence Day", - "2043-09-04": "Orozo Ait* (*estimated)", - "2043-09-05": "Orozo Ait* (*estimated)", + "2043-09-04": "Orozo Ait (estimated)", + "2043-09-05": "Orozo Ait (estimated)", "2043-11-07": "Days of History and Commemoration of Ancestors", "2043-11-08": "Days of History and Commemoration of Ancestors", - "2043-11-12": "Kurman Ait* (*estimated)", + "2043-11-12": "Kurman Ait (estimated)", "2043-12-31": "New Year's Eve", "2044-01-01": "New Year's Day", "2044-01-07": "Christmas Day", @@ -1442,10 +1442,10 @@ "2044-05-01": "International Workers' Day", "2044-05-05": "Constitution Day", "2044-05-09": "Victory Day", - "2044-08-24": "Orozo Ait* (*estimated)", - "2044-08-25": "Orozo Ait* (*estimated)", + "2044-08-24": "Orozo Ait (estimated)", + "2044-08-25": "Orozo Ait (estimated)", "2044-08-31": "Independence Day", - "2044-10-31": "Kurman Ait* (*estimated)", + "2044-10-31": "Kurman Ait (estimated)", "2044-11-07": "Days of History and Commemoration of Ancestors", "2044-11-08": "Days of History and Commemoration of Ancestors", "2044-12-31": "New Year's Eve", @@ -1458,10 +1458,10 @@ "2045-05-01": "International Workers' Day", "2045-05-05": "Constitution Day", "2045-05-09": "Victory Day", - "2045-08-14": "Orozo Ait* (*estimated)", - "2045-08-15": "Orozo Ait* (*estimated)", + "2045-08-14": "Orozo Ait (estimated)", + "2045-08-15": "Orozo Ait (estimated)", "2045-08-31": "Independence Day", - "2045-10-21": "Kurman Ait* (*estimated)", + "2045-10-21": "Kurman Ait (estimated)", "2045-11-07": "Days of History and Commemoration of Ancestors", "2045-11-08": "Days of History and Commemoration of Ancestors", "2045-12-31": "New Year's Eve", @@ -1474,10 +1474,10 @@ "2046-05-01": "International Workers' Day", "2046-05-05": "Constitution Day", "2046-05-09": "Victory Day", - "2046-08-03": "Orozo Ait* (*estimated)", - "2046-08-04": "Orozo Ait* (*estimated)", + "2046-08-03": "Orozo Ait (estimated)", + "2046-08-04": "Orozo Ait (estimated)", "2046-08-31": "Independence Day", - "2046-10-10": "Kurman Ait* (*estimated)", + "2046-10-10": "Kurman Ait (estimated)", "2046-11-07": "Days of History and Commemoration of Ancestors", "2046-11-08": "Days of History and Commemoration of Ancestors", "2046-12-31": "New Year's Eve", @@ -1490,10 +1490,10 @@ "2047-05-01": "International Workers' Day", "2047-05-05": "Constitution Day", "2047-05-09": "Victory Day", - "2047-07-24": "Orozo Ait* (*estimated)", - "2047-07-25": "Orozo Ait* (*estimated)", + "2047-07-24": "Orozo Ait (estimated)", + "2047-07-25": "Orozo Ait (estimated)", "2047-08-31": "Independence Day", - "2047-09-30": "Kurman Ait* (*estimated)", + "2047-09-30": "Kurman Ait (estimated)", "2047-11-07": "Days of History and Commemoration of Ancestors", "2047-11-08": "Days of History and Commemoration of Ancestors", "2047-12-31": "New Year's Eve", @@ -1506,10 +1506,10 @@ "2048-05-01": "International Workers' Day", "2048-05-05": "Constitution Day", "2048-05-09": "Victory Day", - "2048-07-12": "Orozo Ait* (*estimated)", - "2048-07-13": "Orozo Ait* (*estimated)", + "2048-07-12": "Orozo Ait (estimated)", + "2048-07-13": "Orozo Ait (estimated)", "2048-08-31": "Independence Day", - "2048-09-19": "Kurman Ait* (*estimated)", + "2048-09-19": "Kurman Ait (estimated)", "2048-11-07": "Days of History and Commemoration of Ancestors", "2048-11-08": "Days of History and Commemoration of Ancestors", "2048-12-31": "New Year's Eve", @@ -1522,10 +1522,10 @@ "2049-05-01": "International Workers' Day", "2049-05-05": "Constitution Day", "2049-05-09": "Victory Day", - "2049-07-01": "Orozo Ait* (*estimated)", - "2049-07-02": "Orozo Ait* (*estimated)", + "2049-07-01": "Orozo Ait (estimated)", + "2049-07-02": "Orozo Ait (estimated)", "2049-08-31": "Independence Day", - "2049-09-08": "Kurman Ait* (*estimated)", + "2049-09-08": "Kurman Ait (estimated)", "2049-11-07": "Days of History and Commemoration of Ancestors", "2049-11-08": "Days of History and Commemoration of Ancestors", "2049-12-31": "New Year's Eve", @@ -1538,9 +1538,9 @@ "2050-05-01": "International Workers' Day", "2050-05-05": "Constitution Day", "2050-05-09": "Victory Day", - "2050-06-20": "Orozo Ait* (*estimated)", - "2050-06-21": "Orozo Ait* (*estimated)", - "2050-08-28": "Kurman Ait* (*estimated)", + "2050-06-20": "Orozo Ait (estimated)", + "2050-06-21": "Orozo Ait (estimated)", + "2050-08-28": "Kurman Ait (estimated)", "2050-08-31": "Independence Day", "2050-11-07": "Days of History and Commemoration of Ancestors", "2050-11-08": "Days of History and Commemoration of Ancestors", diff --git a/snapshots/countries/KZ_COMMON.json b/snapshots/countries/KZ_COMMON.json index 540260708..574f1b534 100644 --- a/snapshots/countries/KZ_COMMON.json +++ b/snapshots/countries/KZ_COMMON.json @@ -133,7 +133,7 @@ "2006-01-02": "New Year", "2006-01-03": "New Year (Observed)", "2006-01-07": "Orthodox Christmas", - "2006-01-10": "Kurban Ait* (*estimated)", + "2006-01-10": "Kurban Ait (estimated)", "2006-03-08": "International Women's Day", "2006-03-22": "Nauryz holiday", "2006-05-01": "Kazakhstan People Solidarity Holiday", @@ -144,7 +144,7 @@ "2006-12-17": "Kazakhstan Independence Day", "2006-12-18": "Kazakhstan Independence Day (Observed)", "2006-12-19": "Kazakhstan Independence Day (Observed)", - "2006-12-31": "Kurban Ait* (*estimated)", + "2006-12-31": "Kurban Ait (estimated)", "2007-01-01": "New Year", "2007-01-02": "New Year", "2007-01-07": "Orthodox Christmas", @@ -157,7 +157,7 @@ "2007-12-16": "Kazakhstan Independence Day", "2007-12-17": "Kazakhstan Independence Day", "2007-12-18": "Kazakhstan Independence Day (Observed)", - "2007-12-20": "Kurban Ait* (*estimated)", + "2007-12-20": "Kurban Ait (estimated)", "2008-01-01": "New Year", "2008-01-02": "New Year", "2008-01-07": "Orthodox Christmas", @@ -171,7 +171,7 @@ "2008-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", "2008-10-25": "Republic Day", "2008-10-27": "Republic Day (Observed)", - "2008-12-08": "Kurban Ait* (*estimated)", + "2008-12-08": "Kurban Ait (estimated)", "2008-12-16": "Kazakhstan Independence Day", "2008-12-17": "Kazakhstan Independence Day", "2009-01-01": "New Year", @@ -187,7 +187,7 @@ "2009-07-06": "Capital Day", "2009-08-30": "Constitution Day of the Republic of Kazakhstan", "2009-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", - "2009-11-27": "Kurban Ait* (*estimated)", + "2009-11-27": "Kurban Ait (estimated)", "2009-12-16": "Kazakhstan Independence Day", "2009-12-17": "Kazakhstan Independence Day", "2010-01-01": "New Year", @@ -205,7 +205,7 @@ "2010-05-10": "Victory Day (Observed)", "2010-07-06": "Capital Day", "2010-08-30": "Constitution Day of the Republic of Kazakhstan", - "2010-11-16": "Kurban Ait* (*estimated)", + "2010-11-16": "Kurban Ait (estimated)", "2010-12-16": "Kazakhstan Independence Day", "2010-12-17": "Kazakhstan Independence Day", "2011-01-01": "New Year", @@ -222,7 +222,7 @@ "2011-05-09": "Victory Day", "2011-07-06": "Capital Day", "2011-08-30": "Constitution Day of the Republic of Kazakhstan", - "2011-11-06": "Kurban Ait* (*estimated)", + "2011-11-06": "Kurban Ait (estimated)", "2011-12-16": "Kazakhstan Independence Day", "2011-12-17": "Kazakhstan Independence Day", "2011-12-19": "Kazakhstan Independence Day (Observed)", @@ -238,7 +238,7 @@ "2012-05-09": "Victory Day", "2012-07-06": "Capital Day", "2012-08-30": "Constitution Day of the Republic of Kazakhstan", - "2012-10-26": "Kurban Ait* (*estimated)", + "2012-10-26": "Kurban Ait (estimated)", "2012-12-01": "First President Day", "2012-12-03": "First President Day (Observed)", "2012-12-16": "Kazakhstan Independence Day", @@ -258,7 +258,7 @@ "2013-07-06": "Capital Day", "2013-07-08": "Capital Day (Observed)", "2013-08-30": "Constitution Day of the Republic of Kazakhstan", - "2013-10-15": "Kurban Ait* (*estimated)", + "2013-10-15": "Kurban Ait (estimated)", "2013-12-01": "First President Day", "2013-12-02": "First President Day (Observed)", "2013-12-16": "Kazakhstan Independence Day", @@ -280,7 +280,7 @@ "2014-07-07": "Capital Day (Observed)", "2014-08-30": "Constitution Day of the Republic of Kazakhstan", "2014-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", - "2014-10-04": "Kurban Ait* (*estimated)", + "2014-10-04": "Kurban Ait (estimated)", "2014-12-01": "First President Day", "2014-12-16": "Kazakhstan Independence Day", "2014-12-17": "Kazakhstan Independence Day", @@ -301,7 +301,7 @@ "2015-07-06": "Capital Day", "2015-08-30": "Constitution Day of the Republic of Kazakhstan", "2015-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", - "2015-09-23": "Kurban Ait* (*estimated)", + "2015-09-23": "Kurban Ait (estimated)", "2015-12-01": "First President Day", "2015-12-16": "Kazakhstan Independence Day", "2015-12-17": "Kazakhstan Independence Day", @@ -320,7 +320,7 @@ "2016-05-10": "Defender of the Fatherland Day (Observed)", "2016-07-06": "Capital Day", "2016-08-30": "Constitution Day of the Republic of Kazakhstan", - "2016-09-11": "Kurban Ait* (*estimated)", + "2016-09-11": "Kurban Ait (estimated)", "2016-12-01": "First President Day", "2016-12-16": "Kazakhstan Independence Day", "2016-12-17": "Kazakhstan Independence Day", @@ -339,7 +339,7 @@ "2017-05-09": "Victory Day", "2017-07-06": "Capital Day", "2017-08-30": "Constitution Day of the Republic of Kazakhstan", - "2017-09-01": "Kurban Ait* (*estimated)", + "2017-09-01": "Kurban Ait (estimated)", "2017-12-01": "First President Day", "2017-12-16": "Kazakhstan Independence Day", "2017-12-17": "Kazakhstan Independence Day", @@ -356,7 +356,7 @@ "2018-05-07": "Defender of the Fatherland Day", "2018-05-09": "Victory Day", "2018-07-06": "Capital Day", - "2018-08-21": "Kurban Ait* (*estimated)", + "2018-08-21": "Kurban Ait (estimated)", "2018-08-30": "Constitution Day of the Republic of Kazakhstan", "2018-12-01": "First President Day", "2018-12-03": "First President Day (Observed)", @@ -376,7 +376,7 @@ "2019-05-09": "Victory Day", "2019-07-06": "Capital Day", "2019-07-08": "Capital Day (Observed)", - "2019-08-11": "Kurban Ait* (*estimated)", + "2019-08-11": "Kurban Ait (estimated)", "2019-08-30": "Constitution Day of the Republic of Kazakhstan", "2019-12-01": "First President Day", "2019-12-02": "First President Day (Observed)", @@ -397,7 +397,7 @@ "2020-05-09": "Victory Day", "2020-05-11": "Victory Day (Observed)", "2020-07-06": "Capital Day", - "2020-07-31": "Kurban Ait* (*estimated)", + "2020-07-31": "Kurban Ait (estimated)", "2020-08-30": "Constitution Day of the Republic of Kazakhstan", "2020-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", "2020-12-01": "First President Day", @@ -418,7 +418,7 @@ "2021-05-09": "Victory Day", "2021-05-10": "Victory Day (Observed)", "2021-07-06": "Capital Day", - "2021-07-20": "Kurban Ait* (*estimated)", + "2021-07-20": "Kurban Ait (estimated)", "2021-08-30": "Constitution Day of the Republic of Kazakhstan", "2021-12-01": "First President Day", "2021-12-16": "Kazakhstan Independence Day", @@ -438,7 +438,7 @@ "2022-05-09": "Victory Day", "2022-05-10": "Defender of the Fatherland Day (Observed)", "2022-07-06": "Capital Day", - "2022-07-09": "Kurban Ait* (*estimated)", + "2022-07-09": "Kurban Ait (estimated)", "2022-08-30": "Constitution Day of the Republic of Kazakhstan", "2022-10-25": "Republic Day", "2022-12-16": "Kazakhstan Independence Day", @@ -454,7 +454,7 @@ "2023-05-07": "Defender of the Fatherland Day", "2023-05-08": "Defender of the Fatherland Day (Observed)", "2023-05-09": "Victory Day", - "2023-06-28": "Kurban Ait* (*estimated)", + "2023-06-28": "Kurban Ait (estimated)", "2023-07-06": "Capital Day", "2023-08-30": "Constitution Day of the Republic of Kazakhstan", "2023-10-25": "Republic Day", @@ -471,7 +471,7 @@ "2024-05-01": "Kazakhstan People Solidarity Holiday", "2024-05-07": "Defender of the Fatherland Day", "2024-05-09": "Victory Day", - "2024-06-16": "Kurban Ait* (*estimated)", + "2024-06-16": "Kurban Ait (estimated)", "2024-07-06": "Capital Day", "2024-07-08": "Capital Day (Observed)", "2024-08-30": "Constitution Day of the Republic of Kazakhstan", @@ -490,7 +490,7 @@ "2025-05-01": "Kazakhstan People Solidarity Holiday", "2025-05-07": "Defender of the Fatherland Day", "2025-05-09": "Victory Day", - "2025-06-06": "Kurban Ait* (*estimated)", + "2025-06-06": "Kurban Ait (estimated)", "2025-07-06": "Capital Day", "2025-07-07": "Capital Day (Observed)", "2025-08-30": "Constitution Day of the Republic of Kazakhstan", @@ -512,7 +512,7 @@ "2026-05-07": "Defender of the Fatherland Day", "2026-05-09": "Victory Day", "2026-05-11": "Victory Day (Observed)", - "2026-05-27": "Kurban Ait* (*estimated)", + "2026-05-27": "Kurban Ait (estimated)", "2026-07-06": "Capital Day", "2026-08-30": "Constitution Day of the Republic of Kazakhstan", "2026-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", @@ -533,7 +533,7 @@ "2027-05-07": "Defender of the Fatherland Day", "2027-05-09": "Victory Day", "2027-05-10": "Victory Day (Observed)", - "2027-05-16": "Kurban Ait* (*estimated)", + "2027-05-16": "Kurban Ait (estimated)", "2027-07-06": "Capital Day", "2027-08-30": "Constitution Day of the Republic of Kazakhstan", "2027-10-25": "Republic Day", @@ -548,7 +548,7 @@ "2028-03-22": "Nauryz holiday", "2028-03-23": "Nauryz holiday", "2028-05-01": "Kazakhstan People Solidarity Holiday", - "2028-05-05": "Kurban Ait* (*estimated)", + "2028-05-05": "Kurban Ait (estimated)", "2028-05-07": "Defender of the Fatherland Day", "2028-05-08": "Defender of the Fatherland Day (Observed)", "2028-05-09": "Victory Day", @@ -564,7 +564,7 @@ "2029-03-21": "Nauryz holiday", "2029-03-22": "Nauryz holiday", "2029-03-23": "Nauryz holiday", - "2029-04-24": "Kurban Ait* (*estimated)", + "2029-04-24": "Kurban Ait (estimated)", "2029-05-01": "Kazakhstan People Solidarity Holiday", "2029-05-07": "Defender of the Fatherland Day", "2029-05-09": "Victory Day", @@ -581,7 +581,7 @@ "2030-03-22": "Nauryz holiday", "2030-03-23": "Nauryz holiday", "2030-03-25": "Nauryz holiday (Observed)", - "2030-04-13": "Kurban Ait* (*estimated)", + "2030-04-13": "Kurban Ait (estimated)", "2030-05-01": "Kazakhstan People Solidarity Holiday", "2030-05-07": "Defender of the Fatherland Day", "2030-05-09": "Victory Day", @@ -600,7 +600,7 @@ "2031-03-23": "Nauryz holiday", "2031-03-24": "Nauryz holiday (Observed)", "2031-03-25": "Nauryz holiday (Observed)", - "2031-04-02": "Kurban Ait* (*estimated)", + "2031-04-02": "Kurban Ait (estimated)", "2031-05-01": "Kazakhstan People Solidarity Holiday", "2031-05-07": "Defender of the Fatherland Day", "2031-05-09": "Victory Day", @@ -616,7 +616,7 @@ "2032-01-07": "Orthodox Christmas", "2032-03-08": "International Women's Day", "2032-03-21": "Nauryz holiday", - "2032-03-22": "Kurban Ait* (*estimated); Nauryz holiday", + "2032-03-22": "Kurban Ait (estimated); Nauryz holiday", "2032-03-23": "Nauryz holiday", "2032-03-24": "Nauryz holiday (Observed)", "2032-05-01": "Kazakhstan People Solidarity Holiday", @@ -634,7 +634,7 @@ "2033-01-04": "New Year (Observed)", "2033-01-07": "Orthodox Christmas", "2033-03-08": "International Women's Day", - "2033-03-11": "Kurban Ait* (*estimated)", + "2033-03-11": "Kurban Ait (estimated)", "2033-03-21": "Nauryz holiday", "2033-03-22": "Nauryz holiday", "2033-03-23": "Nauryz holiday", @@ -651,7 +651,7 @@ "2034-01-02": "New Year", "2034-01-03": "New Year (Observed)", "2034-01-07": "Orthodox Christmas", - "2034-03-01": "Kurban Ait* (*estimated)", + "2034-03-01": "Kurban Ait (estimated)", "2034-03-08": "International Women's Day", "2034-03-21": "Nauryz holiday", "2034-03-22": "Nauryz holiday", @@ -668,7 +668,7 @@ "2035-01-01": "New Year", "2035-01-02": "New Year", "2035-01-07": "Orthodox Christmas", - "2035-02-18": "Kurban Ait* (*estimated)", + "2035-02-18": "Kurban Ait (estimated)", "2035-03-08": "International Women's Day", "2035-03-21": "Nauryz holiday", "2035-03-22": "Nauryz holiday", @@ -684,7 +684,7 @@ "2036-01-01": "New Year", "2036-01-02": "New Year", "2036-01-07": "Orthodox Christmas", - "2036-02-07": "Kurban Ait* (*estimated)", + "2036-02-07": "Kurban Ait (estimated)", "2036-03-08": "International Women's Day", "2036-03-10": "International Women's Day (Observed)", "2036-03-21": "Nauryz holiday", @@ -705,7 +705,7 @@ "2037-01-01": "New Year", "2037-01-02": "New Year", "2037-01-07": "Orthodox Christmas", - "2037-01-26": "Kurban Ait* (*estimated)", + "2037-01-26": "Kurban Ait (estimated)", "2037-03-08": "International Women's Day", "2037-03-09": "International Women's Day (Observed)", "2037-03-21": "Nauryz holiday", @@ -727,7 +727,7 @@ "2038-01-02": "New Year", "2038-01-04": "New Year (Observed)", "2038-01-07": "Orthodox Christmas", - "2038-01-16": "Kurban Ait* (*estimated)", + "2038-01-16": "Kurban Ait (estimated)", "2038-03-08": "International Women's Day", "2038-03-21": "Nauryz holiday", "2038-03-22": "Nauryz holiday", @@ -746,7 +746,7 @@ "2039-01-02": "New Year", "2039-01-03": "New Year (Observed)", "2039-01-04": "New Year (Observed)", - "2039-01-05": "Kurban Ait* (*estimated)", + "2039-01-05": "Kurban Ait (estimated)", "2039-01-07": "Orthodox Christmas", "2039-03-08": "International Women's Day", "2039-03-21": "Nauryz holiday", @@ -761,7 +761,7 @@ "2039-08-30": "Constitution Day of the Republic of Kazakhstan", "2039-10-25": "Republic Day", "2039-12-16": "Kazakhstan Independence Day", - "2039-12-26": "Kurban Ait* (*estimated)", + "2039-12-26": "Kurban Ait (estimated)", "2040-01-01": "New Year", "2040-01-02": "New Year", "2040-01-03": "New Year (Observed)", @@ -776,7 +776,7 @@ "2040-07-06": "Capital Day", "2040-08-30": "Constitution Day of the Republic of Kazakhstan", "2040-10-25": "Republic Day", - "2040-12-14": "Kurban Ait* (*estimated)", + "2040-12-14": "Kurban Ait (estimated)", "2040-12-16": "Kazakhstan Independence Day", "2040-12-17": "Kazakhstan Independence Day (Observed)", "2041-01-01": "New Year", @@ -794,7 +794,7 @@ "2041-07-08": "Capital Day (Observed)", "2041-08-30": "Constitution Day of the Republic of Kazakhstan", "2041-10-25": "Republic Day", - "2041-12-04": "Kurban Ait* (*estimated)", + "2041-12-04": "Kurban Ait (estimated)", "2041-12-16": "Kazakhstan Independence Day", "2042-01-01": "New Year", "2042-01-02": "New Year", @@ -815,7 +815,7 @@ "2042-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", "2042-10-25": "Republic Day", "2042-10-27": "Republic Day (Observed)", - "2042-11-23": "Kurban Ait* (*estimated)", + "2042-11-23": "Kurban Ait (estimated)", "2042-12-16": "Kazakhstan Independence Day", "2043-01-01": "New Year", "2043-01-02": "New Year", @@ -836,7 +836,7 @@ "2043-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", "2043-10-25": "Republic Day", "2043-10-26": "Republic Day (Observed)", - "2043-11-12": "Kurban Ait* (*estimated)", + "2043-11-12": "Kurban Ait (estimated)", "2043-12-16": "Kazakhstan Independence Day", "2044-01-01": "New Year", "2044-01-02": "New Year", @@ -854,7 +854,7 @@ "2044-07-06": "Capital Day", "2044-08-30": "Constitution Day of the Republic of Kazakhstan", "2044-10-25": "Republic Day", - "2044-10-31": "Kurban Ait* (*estimated)", + "2044-10-31": "Kurban Ait (estimated)", "2044-12-16": "Kazakhstan Independence Day", "2045-01-01": "New Year", "2045-01-02": "New Year", @@ -870,7 +870,7 @@ "2045-05-09": "Victory Day", "2045-07-06": "Capital Day", "2045-08-30": "Constitution Day of the Republic of Kazakhstan", - "2045-10-21": "Kurban Ait* (*estimated)", + "2045-10-21": "Kurban Ait (estimated)", "2045-10-25": "Republic Day", "2045-12-16": "Kazakhstan Independence Day", "2045-12-18": "Kazakhstan Independence Day (Observed)", @@ -886,7 +886,7 @@ "2046-05-09": "Victory Day", "2046-07-06": "Capital Day", "2046-08-30": "Constitution Day of the Republic of Kazakhstan", - "2046-10-10": "Kurban Ait* (*estimated)", + "2046-10-10": "Kurban Ait (estimated)", "2046-10-25": "Republic Day", "2046-12-16": "Kazakhstan Independence Day", "2046-12-17": "Kazakhstan Independence Day (Observed)", @@ -904,7 +904,7 @@ "2047-07-06": "Capital Day", "2047-07-08": "Capital Day (Observed)", "2047-08-30": "Constitution Day of the Republic of Kazakhstan", - "2047-09-30": "Kurban Ait* (*estimated)", + "2047-09-30": "Kurban Ait (estimated)", "2047-10-25": "Republic Day", "2047-12-16": "Kazakhstan Independence Day", "2048-01-01": "New Year", @@ -924,7 +924,7 @@ "2048-07-06": "Capital Day", "2048-08-30": "Constitution Day of the Republic of Kazakhstan", "2048-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", - "2048-09-19": "Kurban Ait* (*estimated)", + "2048-09-19": "Kurban Ait (estimated)", "2048-10-25": "Republic Day", "2048-10-26": "Republic Day (Observed)", "2048-12-16": "Kazakhstan Independence Day", @@ -944,7 +944,7 @@ "2049-05-10": "Victory Day (Observed)", "2049-07-06": "Capital Day", "2049-08-30": "Constitution Day of the Republic of Kazakhstan", - "2049-09-08": "Kurban Ait* (*estimated)", + "2049-09-08": "Kurban Ait (estimated)", "2049-10-25": "Republic Day", "2049-12-16": "Kazakhstan Independence Day", "2050-01-01": "New Year", @@ -962,7 +962,7 @@ "2050-05-09": "Victory Day", "2050-05-10": "Defender of the Fatherland Day (Observed)", "2050-07-06": "Capital Day", - "2050-08-28": "Kurban Ait* (*estimated)", + "2050-08-28": "Kurban Ait (estimated)", "2050-08-30": "Constitution Day of the Republic of Kazakhstan", "2050-10-25": "Republic Day", "2050-12-16": "Kazakhstan Independence Day" diff --git a/snapshots/countries/MA_COMMON.json b/snapshots/countries/MA_COMMON.json index 0e715518b..c9865701a 100644 --- a/snapshots/countries/MA_COMMON.json +++ b/snapshots/countries/MA_COMMON.json @@ -1,743 +1,743 @@ { - "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", - "1950-01-02": "Prophet's Birthday* (*estimated)", + "1950-01-01": "New Year's Day; Prophet's Birthday (estimated)", + "1950-01-02": "Prophet's Birthday (estimated)", "1950-01-11": "Proclamation of Independence Day", "1950-05-01": "Labor Day", "1950-07-09": "Youth Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr (estimated)", "1950-08-14": "Oued Ed-Dahab Day", "1950-08-20": "Revolution Day", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", - "1950-10-13": "Islamic New Year* (*estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", + "1950-10-13": "Islamic New Year (estimated)", "1950-11-18": "Throne Day", - "1950-12-22": "Prophet's Birthday* (*estimated)", - "1950-12-23": "Prophet's Birthday* (*estimated)", + "1950-12-22": "Prophet's Birthday (estimated)", + "1950-12-23": "Prophet's Birthday (estimated)", "1951-01-01": "New Year's Day", "1951-01-11": "Proclamation of Independence Day", "1951-05-01": "Labor Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-07-07": "Eid al-Fitr* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Eid al-Fitr (estimated)", "1951-07-09": "Youth Day", "1951-08-14": "Oued Ed-Dahab Day", "1951-08-20": "Revolution Day", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", - "1951-10-02": "Islamic New Year* (*estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", + "1951-10-02": "Islamic New Year (estimated)", "1951-11-18": "Throne Day", - "1951-12-11": "Prophet's Birthday* (*estimated)", - "1951-12-12": "Prophet's Birthday* (*estimated)", + "1951-12-11": "Prophet's Birthday (estimated)", + "1951-12-12": "Prophet's Birthday (estimated)", "1952-01-01": "New Year's Day", "1952-01-11": "Proclamation of Independence Day", "1952-05-01": "Labor Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-06-24": "Eid al-Fitr* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (estimated)", "1952-07-09": "Youth Day", "1952-08-14": "Oued Ed-Dahab Day", "1952-08-20": "Revolution Day", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-21": "Islamic New Year* (*estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-21": "Islamic New Year (estimated)", "1952-11-18": "Throne Day", - "1952-11-30": "Prophet's Birthday* (*estimated)", - "1952-12-01": "Prophet's Birthday* (*estimated)", + "1952-11-30": "Prophet's Birthday (estimated)", + "1952-12-01": "Prophet's Birthday (estimated)", "1953-01-01": "New Year's Day", "1953-01-11": "Proclamation of Independence Day", "1953-05-01": "Labor Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (estimated)", "1953-07-09": "Youth Day", "1953-08-14": "Oued Ed-Dahab Day", - "1953-08-20": "Eid al-Adha* (*estimated); Revolution Day", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-09-10": "Islamic New Year* (*estimated)", + "1953-08-20": "Eid al-Adha (estimated); Revolution Day", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-09-10": "Islamic New Year (estimated)", "1953-11-18": "Throne Day", - "1953-11-19": "Prophet's Birthday* (*estimated)", - "1953-11-20": "Prophet's Birthday* (*estimated)", + "1953-11-19": "Prophet's Birthday (estimated)", + "1953-11-20": "Prophet's Birthday (estimated)", "1954-01-01": "New Year's Day", "1954-01-11": "Proclamation of Independence Day", "1954-05-01": "Labor Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (estimated)", "1954-07-09": "Youth Day", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", "1954-08-14": "Oued Ed-Dahab Day", "1954-08-20": "Revolution Day", - "1954-08-30": "Islamic New Year* (*estimated)", - "1954-11-08": "Prophet's Birthday* (*estimated)", - "1954-11-09": "Prophet's Birthday* (*estimated)", + "1954-08-30": "Islamic New Year (estimated)", + "1954-11-08": "Prophet's Birthday (estimated)", + "1954-11-09": "Prophet's Birthday (estimated)", "1954-11-18": "Throne Day", "1955-01-01": "New Year's Day", "1955-01-11": "Proclamation of Independence Day", "1955-05-01": "Labor Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (estimated)", "1955-07-09": "Youth Day", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", "1955-08-14": "Oued Ed-Dahab Day", - "1955-08-20": "Islamic New Year* (*estimated); Revolution Day", - "1955-10-29": "Prophet's Birthday* (*estimated)", - "1955-10-30": "Prophet's Birthday* (*estimated)", + "1955-08-20": "Islamic New Year (estimated); Revolution Day", + "1955-10-29": "Prophet's Birthday (estimated)", + "1955-10-30": "Prophet's Birthday (estimated)", "1955-11-18": "Throne Day", "1956-01-01": "New Year's Day", "1956-01-11": "Proclamation of Independence Day", "1956-05-01": "Labor Day", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (estimated)", "1956-07-09": "Youth Day", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", - "1956-08-08": "Islamic New Year* (*estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", + "1956-08-08": "Islamic New Year (estimated)", "1956-08-14": "Oued Ed-Dahab Day", "1956-08-20": "Revolution Day", - "1956-10-17": "Prophet's Birthday* (*estimated)", - "1956-10-18": "Prophet's Birthday* (*estimated)", + "1956-10-17": "Prophet's Birthday (estimated)", + "1956-10-18": "Prophet's Birthday (estimated)", "1956-11-18": "Throne Day", "1957-01-01": "New Year's Day", "1957-01-11": "Proclamation of Independence Day", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", - "1957-05-02": "Eid al-Fitr* (*estimated)", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated); Youth Day", - "1957-07-28": "Islamic New Year* (*estimated)", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", + "1957-05-02": "Eid al-Fitr (estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated); Youth Day", + "1957-07-28": "Islamic New Year (estimated)", "1957-08-14": "Oued Ed-Dahab Day", "1957-08-20": "Revolution Day", - "1957-10-06": "Prophet's Birthday* (*estimated)", - "1957-10-07": "Prophet's Birthday* (*estimated)", + "1957-10-06": "Prophet's Birthday (estimated)", + "1957-10-07": "Prophet's Birthday (estimated)", "1957-11-18": "Independence Day; Throne Day", "1958-01-01": "New Year's Day", "1958-01-11": "Proclamation of Independence Day", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (estimated)", "1958-05-01": "Labor Day", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", "1958-07-09": "Youth Day", - "1958-07-18": "Islamic New Year* (*estimated)", + "1958-07-18": "Islamic New Year (estimated)", "1958-08-14": "Oued Ed-Dahab Day", "1958-08-20": "Revolution Day", - "1958-09-26": "Prophet's Birthday* (*estimated)", - "1958-09-27": "Prophet's Birthday* (*estimated)", + "1958-09-26": "Prophet's Birthday (estimated)", + "1958-09-27": "Prophet's Birthday (estimated)", "1958-11-18": "Independence Day; Throne Day", "1959-01-01": "New Year's Day", "1959-01-11": "Proclamation of Independence Day", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (estimated)", "1959-05-01": "Labor Day", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-07-07": "Islamic New Year* (*estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-07-07": "Islamic New Year (estimated)", "1959-07-09": "Youth Day", "1959-08-14": "Oued Ed-Dahab Day", "1959-08-20": "Revolution Day", - "1959-09-15": "Prophet's Birthday* (*estimated)", - "1959-09-16": "Prophet's Birthday* (*estimated)", + "1959-09-15": "Prophet's Birthday (estimated)", + "1959-09-16": "Prophet's Birthday (estimated)", "1959-11-18": "Independence Day; Throne Day", "1960-01-01": "New Year's Day", "1960-01-11": "Proclamation of Independence Day", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (estimated)", "1960-05-01": "Labor Day", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated)", - "1960-06-25": "Islamic New Year* (*estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated)", + "1960-06-25": "Islamic New Year (estimated)", "1960-07-09": "Youth Day", "1960-08-14": "Oued Ed-Dahab Day", "1960-08-20": "Revolution Day", - "1960-09-03": "Prophet's Birthday* (*estimated)", - "1960-09-04": "Prophet's Birthday* (*estimated)", + "1960-09-03": "Prophet's Birthday (estimated)", + "1960-09-04": "Prophet's Birthday (estimated)", "1960-11-18": "Independence Day; Throne Day", "1961-01-01": "New Year's Day", "1961-01-11": "Proclamation of Independence Day", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (estimated)", "1961-05-01": "Labor Day", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-06-14": "Islamic New Year* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-06-14": "Islamic New Year (estimated)", "1961-07-09": "Youth Day", "1961-08-14": "Oued Ed-Dahab Day", "1961-08-20": "Revolution Day", - "1961-08-23": "Prophet's Birthday* (*estimated)", - "1961-08-24": "Prophet's Birthday* (*estimated)", + "1961-08-23": "Prophet's Birthday (estimated)", + "1961-08-24": "Prophet's Birthday (estimated)", "1961-11-18": "Independence Day; Throne Day", "1962-01-01": "New Year's Day", "1962-01-11": "Proclamation of Independence Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (estimated)", "1962-05-01": "Labor Day", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", - "1962-06-03": "Islamic New Year* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", + "1962-06-03": "Islamic New Year (estimated)", "1962-07-09": "Youth Day", - "1962-08-12": "Prophet's Birthday* (*estimated)", - "1962-08-13": "Prophet's Birthday* (*estimated)", + "1962-08-12": "Prophet's Birthday (estimated)", + "1962-08-13": "Prophet's Birthday (estimated)", "1962-08-14": "Oued Ed-Dahab Day", "1962-08-20": "Revolution Day", "1962-11-18": "Independence Day; Throne Day", "1963-01-01": "New Year's Day", "1963-01-11": "Proclamation of Independence Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (estimated)", "1963-03-03": "Throne Day", "1963-05-01": "Labor Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-05-24": "Islamic New Year* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-05-24": "Islamic New Year (estimated)", "1963-07-09": "Youth Day", - "1963-08-02": "Prophet's Birthday* (*estimated)", - "1963-08-03": "Prophet's Birthday* (*estimated)", + "1963-08-02": "Prophet's Birthday (estimated)", + "1963-08-03": "Prophet's Birthday (estimated)", "1963-08-14": "Oued Ed-Dahab Day", "1963-08-20": "Revolution Day", "1963-11-18": "Independence Day", "1964-01-01": "New Year's Day", "1964-01-11": "Proclamation of Independence Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (estimated)", "1964-03-03": "Throne Day", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", "1964-05-01": "Labor Day", - "1964-05-12": "Islamic New Year* (*estimated)", + "1964-05-12": "Islamic New Year (estimated)", "1964-07-09": "Youth Day", - "1964-07-21": "Prophet's Birthday* (*estimated)", - "1964-07-22": "Prophet's Birthday* (*estimated)", + "1964-07-21": "Prophet's Birthday (estimated)", + "1964-07-22": "Prophet's Birthday (estimated)", "1964-08-14": "Oued Ed-Dahab Day", "1964-08-20": "Revolution Day", "1964-11-18": "Independence Day", "1965-01-01": "New Year's Day", "1965-01-11": "Proclamation of Independence Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-02-03": "Eid al-Fitr* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-02-03": "Eid al-Fitr (estimated)", "1965-03-03": "Throne Day", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha* (*estimated)", - "1965-05-01": "Islamic New Year* (*estimated); Labor Day", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (estimated)", + "1965-05-01": "Islamic New Year (estimated); Labor Day", "1965-07-09": "Youth Day", - "1965-07-10": "Prophet's Birthday* (*estimated)", - "1965-07-11": "Prophet's Birthday* (*estimated)", + "1965-07-10": "Prophet's Birthday (estimated)", + "1965-07-11": "Prophet's Birthday (estimated)", "1965-08-14": "Oued Ed-Dahab Day", "1965-08-20": "Revolution Day", "1965-11-18": "Independence Day", "1966-01-01": "New Year's Day", "1966-01-11": "Proclamation of Independence Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (estimated)", "1966-03-03": "Throne Day", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", - "1966-04-21": "Islamic New Year* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", + "1966-04-21": "Islamic New Year (estimated)", "1966-05-01": "Labor Day", - "1966-07-01": "Prophet's Birthday* (*estimated)", - "1966-07-02": "Prophet's Birthday* (*estimated)", + "1966-07-01": "Prophet's Birthday (estimated)", + "1966-07-02": "Prophet's Birthday (estimated)", "1966-07-09": "Youth Day", "1966-08-14": "Oued Ed-Dahab Day", "1966-08-20": "Revolution Day", "1966-11-18": "Independence Day", "1967-01-01": "New Year's Day", "1967-01-11": "Proclamation of Independence Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (estimated)", "1967-03-03": "Throne Day", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", - "1967-04-11": "Islamic New Year* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", + "1967-04-11": "Islamic New Year (estimated)", "1967-05-01": "Labor Day", - "1967-06-19": "Prophet's Birthday* (*estimated)", - "1967-06-20": "Prophet's Birthday* (*estimated)", + "1967-06-19": "Prophet's Birthday (estimated)", + "1967-06-20": "Prophet's Birthday (estimated)", "1967-07-09": "Youth Day", "1967-08-14": "Oued Ed-Dahab Day", "1967-08-20": "Revolution Day", "1967-11-18": "Independence Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr* (*estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (estimated)", "1968-01-11": "Proclamation of Independence Day", "1968-03-03": "Throne Day", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", - "1968-03-30": "Islamic New Year* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", + "1968-03-30": "Islamic New Year (estimated)", "1968-05-01": "Labor Day", - "1968-06-08": "Prophet's Birthday* (*estimated)", - "1968-06-09": "Prophet's Birthday* (*estimated)", + "1968-06-08": "Prophet's Birthday (estimated)", + "1968-06-09": "Prophet's Birthday (estimated)", "1968-07-09": "Youth Day", "1968-08-14": "Oued Ed-Dahab Day", "1968-08-20": "Revolution Day", "1968-11-18": "Independence Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (estimated)", "1969-01-01": "New Year's Day", "1969-01-11": "Proclamation of Independence Day", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", "1969-03-03": "Throne Day", - "1969-03-19": "Islamic New Year* (*estimated)", + "1969-03-19": "Islamic New Year (estimated)", "1969-05-01": "Labor Day", - "1969-05-28": "Prophet's Birthday* (*estimated)", - "1969-05-29": "Prophet's Birthday* (*estimated)", + "1969-05-28": "Prophet's Birthday (estimated)", + "1969-05-29": "Prophet's Birthday (estimated)", "1969-07-09": "Youth Day", "1969-08-14": "Oued Ed-Dahab Day", "1969-08-20": "Revolution Day", "1969-11-18": "Independence Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (estimated)", "1970-01-01": "New Year's Day", "1970-01-11": "Proclamation of Independence Day", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", "1970-03-03": "Throne Day", - "1970-03-09": "Islamic New Year* (*estimated)", + "1970-03-09": "Islamic New Year (estimated)", "1970-05-01": "Labor Day", - "1970-05-18": "Prophet's Birthday* (*estimated)", - "1970-05-19": "Prophet's Birthday* (*estimated)", + "1970-05-18": "Prophet's Birthday (estimated)", + "1970-05-19": "Prophet's Birthday (estimated)", "1970-07-09": "Youth Day", "1970-08-14": "Oued Ed-Dahab Day", "1970-08-20": "Revolution Day", "1970-11-18": "Independence Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (estimated)", "1971-01-01": "New Year's Day", "1971-01-11": "Proclamation of Independence Day", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-02-26": "Islamic New Year* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-02-26": "Islamic New Year (estimated)", "1971-03-03": "Throne Day", "1971-05-01": "Labor Day", - "1971-05-07": "Prophet's Birthday* (*estimated)", - "1971-05-08": "Prophet's Birthday* (*estimated)", + "1971-05-07": "Prophet's Birthday (estimated)", + "1971-05-08": "Prophet's Birthday (estimated)", "1971-07-09": "Youth Day", "1971-08-14": "Oued Ed-Dahab Day", "1971-08-20": "Revolution Day", "1971-11-18": "Independence Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (estimated)", "1972-01-01": "New Year's Day", "1972-01-11": "Proclamation of Independence Day", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-02-16": "Islamic New Year* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-02-16": "Islamic New Year (estimated)", "1972-03-03": "Throne Day", - "1972-04-25": "Prophet's Birthday* (*estimated)", - "1972-04-26": "Prophet's Birthday* (*estimated)", + "1972-04-25": "Prophet's Birthday (estimated)", + "1972-04-26": "Prophet's Birthday (estimated)", "1972-05-01": "Labor Day", "1972-07-09": "Youth Day", "1972-08-14": "Oued Ed-Dahab Day", "1972-08-20": "Revolution Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (estimated)", "1972-11-18": "Independence Day", "1973-01-01": "New Year's Day", "1973-01-11": "Proclamation of Independence Day", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha* (*estimated)", - "1973-02-04": "Islamic New Year* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (estimated)", + "1973-02-04": "Islamic New Year (estimated)", "1973-03-03": "Throne Day", - "1973-04-15": "Prophet's Birthday* (*estimated)", - "1973-04-16": "Prophet's Birthday* (*estimated)", + "1973-04-15": "Prophet's Birthday (estimated)", + "1973-04-16": "Prophet's Birthday (estimated)", "1973-05-01": "Labor Day", "1973-07-09": "Youth Day", "1973-08-14": "Oued Ed-Dahab Day", "1973-08-20": "Revolution Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (estimated)", "1973-11-18": "Independence Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", "1974-01-11": "Proclamation of Independence Day", - "1974-01-24": "Islamic New Year* (*estimated)", + "1974-01-24": "Islamic New Year (estimated)", "1974-03-03": "Throne Day", - "1974-04-04": "Prophet's Birthday* (*estimated)", - "1974-04-05": "Prophet's Birthday* (*estimated)", + "1974-04-04": "Prophet's Birthday (estimated)", + "1974-04-05": "Prophet's Birthday (estimated)", "1974-05-01": "Labor Day", "1974-07-09": "Youth Day", "1974-08-14": "Oued Ed-Dahab Day", "1974-08-20": "Revolution Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (estimated)", "1974-11-18": "Independence Day", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Eid al-Adha (estimated)", "1975-01-01": "New Year's Day", "1975-01-11": "Proclamation of Independence Day", - "1975-01-13": "Islamic New Year* (*estimated)", + "1975-01-13": "Islamic New Year (estimated)", "1975-03-03": "Throne Day", - "1975-03-24": "Prophet's Birthday* (*estimated)", - "1975-03-25": "Prophet's Birthday* (*estimated)", + "1975-03-24": "Prophet's Birthday (estimated)", + "1975-03-25": "Prophet's Birthday (estimated)", "1975-05-01": "Labor Day", "1975-07-09": "Youth Day", "1975-08-14": "Oued Ed-Dahab Day", "1975-08-20": "Revolution Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (estimated)", "1975-11-18": "Independence Day", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", "1976-01-01": "New Year's Day", - "1976-01-02": "Islamic New Year* (*estimated)", + "1976-01-02": "Islamic New Year (estimated)", "1976-01-11": "Proclamation of Independence Day", "1976-03-03": "Throne Day", - "1976-03-12": "Prophet's Birthday* (*estimated)", - "1976-03-13": "Prophet's Birthday* (*estimated)", + "1976-03-12": "Prophet's Birthday (estimated)", + "1976-03-13": "Prophet's Birthday (estimated)", "1976-05-01": "Labor Day", "1976-07-09": "Youth Day", "1976-08-14": "Oued Ed-Dahab Day", "1976-08-20": "Revolution Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (estimated)", "1976-11-06": "Green March", "1976-11-18": "Independence Day", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", - "1976-12-22": "Islamic New Year* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", + "1976-12-22": "Islamic New Year (estimated)", "1977-01-01": "New Year's Day", "1977-01-11": "Proclamation of Independence Day", - "1977-03-02": "Prophet's Birthday* (*estimated)", - "1977-03-03": "Prophet's Birthday* (*estimated); Throne Day", + "1977-03-02": "Prophet's Birthday (estimated)", + "1977-03-03": "Prophet's Birthday (estimated); Throne Day", "1977-05-01": "Labor Day", "1977-07-09": "Youth Day", "1977-08-14": "Oued Ed-Dahab Day", "1977-08-20": "Revolution Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (estimated)", "1977-11-06": "Green March", "1977-11-18": "Independence Day", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-12-11": "Islamic New Year* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-12-11": "Islamic New Year (estimated)", "1978-01-01": "New Year's Day", "1978-01-11": "Proclamation of Independence Day", - "1978-02-19": "Prophet's Birthday* (*estimated)", - "1978-02-20": "Prophet's Birthday* (*estimated)", + "1978-02-19": "Prophet's Birthday (estimated)", + "1978-02-20": "Prophet's Birthday (estimated)", "1978-03-03": "Throne Day", "1978-05-01": "Labor Day", "1978-07-09": "Youth Day", "1978-08-14": "Oued Ed-Dahab Day", "1978-08-20": "Revolution Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (estimated)", "1978-11-06": "Green March", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated)", "1978-11-18": "Independence Day", - "1978-12-01": "Islamic New Year* (*estimated)", + "1978-12-01": "Islamic New Year (estimated)", "1979-01-01": "New Year's Day", "1979-01-11": "Proclamation of Independence Day", - "1979-02-09": "Prophet's Birthday* (*estimated)", - "1979-02-10": "Prophet's Birthday* (*estimated)", + "1979-02-09": "Prophet's Birthday (estimated)", + "1979-02-10": "Prophet's Birthday (estimated)", "1979-03-03": "Throne Day", "1979-05-01": "Labor Day", "1979-07-09": "Youth Day", "1979-08-14": "Oued Ed-Dahab Day", "1979-08-20": "Revolution Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", "1979-11-06": "Green March", "1979-11-18": "Independence Day", - "1979-11-20": "Islamic New Year* (*estimated)", + "1979-11-20": "Islamic New Year (estimated)", "1980-01-01": "New Year's Day", "1980-01-11": "Proclamation of Independence Day", - "1980-01-30": "Prophet's Birthday* (*estimated)", - "1980-01-31": "Prophet's Birthday* (*estimated)", + "1980-01-30": "Prophet's Birthday (estimated)", + "1980-01-31": "Prophet's Birthday (estimated)", "1980-03-03": "Throne Day", "1980-05-01": "Labor Day", "1980-07-09": "Youth Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (estimated)", "1980-08-14": "Oued Ed-Dahab Day", "1980-08-20": "Revolution Day", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", "1980-11-06": "Green March", - "1980-11-09": "Islamic New Year* (*estimated)", + "1980-11-09": "Islamic New Year (estimated)", "1980-11-18": "Independence Day", "1981-01-01": "New Year's Day", "1981-01-11": "Proclamation of Independence Day", - "1981-01-18": "Prophet's Birthday* (*estimated)", - "1981-01-19": "Prophet's Birthday* (*estimated)", + "1981-01-18": "Prophet's Birthday (estimated)", + "1981-01-19": "Prophet's Birthday (estimated)", "1981-03-03": "Throne Day", "1981-05-01": "Labor Day", "1981-07-09": "Youth Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (estimated)", "1981-08-14": "Oued Ed-Dahab Day", "1981-08-20": "Revolution Day", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-10-28": "Islamic New Year* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-10-28": "Islamic New Year (estimated)", "1981-11-06": "Green March", "1981-11-18": "Independence Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Prophet's Birthday* (*estimated)", - "1982-01-08": "Prophet's Birthday* (*estimated)", + "1982-01-07": "Prophet's Birthday (estimated)", + "1982-01-08": "Prophet's Birthday (estimated)", "1982-01-11": "Proclamation of Independence Day", "1982-03-03": "Throne Day", "1982-05-01": "Labor Day", "1982-07-09": "Youth Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (estimated)", "1982-08-14": "Oued Ed-Dahab Day", "1982-08-20": "Revolution Day", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", - "1982-10-18": "Islamic New Year* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", + "1982-10-18": "Islamic New Year (estimated)", "1982-11-06": "Green March", "1982-11-18": "Independence Day", - "1982-12-27": "Prophet's Birthday* (*estimated)", - "1982-12-28": "Prophet's Birthday* (*estimated)", + "1982-12-27": "Prophet's Birthday (estimated)", + "1982-12-28": "Prophet's Birthday (estimated)", "1983-01-01": "New Year's Day", "1983-01-11": "Proclamation of Independence Day", "1983-03-03": "Throne Day", "1983-05-01": "Labor Day", "1983-07-09": "Youth Day", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (estimated)", "1983-08-14": "Oued Ed-Dahab Day", "1983-08-20": "Revolution Day", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", - "1983-10-07": "Islamic New Year* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", + "1983-10-07": "Islamic New Year (estimated)", "1983-11-06": "Green March", "1983-11-18": "Independence Day", - "1983-12-16": "Prophet's Birthday* (*estimated)", - "1983-12-17": "Prophet's Birthday* (*estimated)", + "1983-12-16": "Prophet's Birthday (estimated)", + "1983-12-17": "Prophet's Birthday (estimated)", "1984-01-01": "New Year's Day", "1984-01-11": "Proclamation of Independence Day", "1984-03-03": "Throne Day", "1984-05-01": "Labor Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (estimated)", "1984-07-09": "Youth Day", "1984-08-14": "Oued Ed-Dahab Day", "1984-08-20": "Revolution Day", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", + "1984-09-26": "Islamic New Year (estimated)", "1984-11-06": "Green March", "1984-11-18": "Independence Day", - "1984-12-04": "Prophet's Birthday* (*estimated)", - "1984-12-05": "Prophet's Birthday* (*estimated)", + "1984-12-04": "Prophet's Birthday (estimated)", + "1984-12-05": "Prophet's Birthday (estimated)", "1985-01-01": "New Year's Day", "1985-01-11": "Proclamation of Independence Day", "1985-03-03": "Throne Day", "1985-05-01": "Labor Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (estimated)", "1985-07-09": "Youth Day", "1985-08-14": "Oued Ed-Dahab Day", "1985-08-20": "Revolution Day", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-09-15": "Islamic New Year (estimated)", "1985-11-06": "Green March", "1985-11-18": "Independence Day", - "1985-11-24": "Prophet's Birthday* (*estimated)", - "1985-11-25": "Prophet's Birthday* (*estimated)", + "1985-11-24": "Prophet's Birthday (estimated)", + "1985-11-25": "Prophet's Birthday (estimated)", "1986-01-01": "New Year's Day", "1986-01-11": "Proclamation of Independence Day", "1986-03-03": "Throne Day", "1986-05-01": "Labor Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (estimated)", "1986-07-09": "Youth Day", "1986-08-14": "Oued Ed-Dahab Day", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha* (*estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (estimated)", "1986-08-20": "Revolution Day", - "1986-09-05": "Islamic New Year* (*estimated)", + "1986-09-05": "Islamic New Year (estimated)", "1986-11-06": "Green March", - "1986-11-14": "Prophet's Birthday* (*estimated)", - "1986-11-15": "Prophet's Birthday* (*estimated)", + "1986-11-14": "Prophet's Birthday (estimated)", + "1986-11-15": "Prophet's Birthday (estimated)", "1986-11-18": "Independence Day", "1987-01-01": "New Year's Day", "1987-01-11": "Proclamation of Independence Day", "1987-03-03": "Throne Day", "1987-05-01": "Labor Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (estimated)", "1987-07-09": "Youth Day", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", "1987-08-14": "Oued Ed-Dahab Day", "1987-08-20": "Revolution Day", - "1987-08-25": "Islamic New Year* (*estimated)", - "1987-11-03": "Prophet's Birthday* (*estimated)", - "1987-11-04": "Prophet's Birthday* (*estimated)", + "1987-08-25": "Islamic New Year (estimated)", + "1987-11-03": "Prophet's Birthday (estimated)", + "1987-11-04": "Prophet's Birthday (estimated)", "1987-11-06": "Green March", "1987-11-18": "Independence Day", "1988-01-01": "New Year's Day", "1988-01-11": "Proclamation of Independence Day", "1988-03-03": "Throne Day", "1988-05-01": "Labor Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (estimated)", "1988-07-09": "Youth Day", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", - "1988-08-13": "Islamic New Year* (*estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", + "1988-08-13": "Islamic New Year (estimated)", "1988-08-14": "Oued Ed-Dahab Day", "1988-08-20": "Revolution Day", - "1988-10-22": "Prophet's Birthday* (*estimated)", - "1988-10-23": "Prophet's Birthday* (*estimated)", + "1988-10-22": "Prophet's Birthday (estimated)", + "1988-10-23": "Prophet's Birthday (estimated)", "1988-11-06": "Green March", "1988-11-18": "Independence Day", "1989-01-01": "New Year's Day", "1989-01-11": "Proclamation of Independence Day", "1989-03-03": "Throne Day", "1989-05-01": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (estimated)", "1989-07-09": "Youth Day", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-08-02": "Islamic New Year* (*estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-08-02": "Islamic New Year (estimated)", "1989-08-14": "Oued Ed-Dahab Day", "1989-08-20": "Revolution Day", - "1989-10-11": "Prophet's Birthday* (*estimated)", - "1989-10-12": "Prophet's Birthday* (*estimated)", + "1989-10-11": "Prophet's Birthday (estimated)", + "1989-10-12": "Prophet's Birthday (estimated)", "1989-11-06": "Green March", "1989-11-18": "Independence Day", "1990-01-01": "New Year's Day", "1990-01-11": "Proclamation of Independence Day", "1990-03-03": "Throne Day", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (estimated)", "1990-05-01": "Labor Day", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", "1990-07-09": "Youth Day", - "1990-07-23": "Islamic New Year* (*estimated)", + "1990-07-23": "Islamic New Year (estimated)", "1990-08-14": "Oued Ed-Dahab Day", "1990-08-20": "Revolution Day", - "1990-10-01": "Prophet's Birthday* (*estimated)", - "1990-10-02": "Prophet's Birthday* (*estimated)", + "1990-10-01": "Prophet's Birthday (estimated)", + "1990-10-02": "Prophet's Birthday (estimated)", "1990-11-06": "Green March", "1990-11-18": "Independence Day", "1991-01-01": "New Year's Day", "1991-01-11": "Proclamation of Independence Day", "1991-03-03": "Throne Day", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (estimated)", "1991-05-01": "Labor Day", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", "1991-07-09": "Youth Day", - "1991-07-12": "Islamic New Year* (*estimated)", + "1991-07-12": "Islamic New Year (estimated)", "1991-08-14": "Oued Ed-Dahab Day", "1991-08-20": "Revolution Day", - "1991-09-20": "Prophet's Birthday* (*estimated)", - "1991-09-21": "Prophet's Birthday* (*estimated)", + "1991-09-20": "Prophet's Birthday (estimated)", + "1991-09-21": "Prophet's Birthday (estimated)", "1991-11-06": "Green March", "1991-11-18": "Independence Day", "1992-01-01": "New Year's Day", "1992-01-11": "Proclamation of Independence Day", "1992-03-03": "Throne Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (estimated)", "1992-05-01": "Labor Day", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-07-01": "Islamic New Year* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-07-01": "Islamic New Year (estimated)", "1992-07-09": "Youth Day", "1992-08-14": "Oued Ed-Dahab Day", "1992-08-20": "Revolution Day", - "1992-09-09": "Prophet's Birthday* (*estimated)", - "1992-09-10": "Prophet's Birthday* (*estimated)", + "1992-09-09": "Prophet's Birthday (estimated)", + "1992-09-10": "Prophet's Birthday (estimated)", "1992-11-06": "Green March", "1992-11-18": "Independence Day", "1993-01-01": "New Year's Day", "1993-01-11": "Proclamation of Independence Day", "1993-03-03": "Throne Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (estimated)", "1993-05-01": "Labor Day", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-21": "Islamic New Year (estimated)", "1993-07-09": "Youth Day", "1993-08-14": "Oued Ed-Dahab Day", "1993-08-20": "Revolution Day", - "1993-08-29": "Prophet's Birthday* (*estimated)", - "1993-08-30": "Prophet's Birthday* (*estimated)", + "1993-08-29": "Prophet's Birthday (estimated)", + "1993-08-30": "Prophet's Birthday (estimated)", "1993-11-06": "Green March", "1993-11-18": "Independence Day", "1994-01-01": "New Year's Day", "1994-01-11": "Proclamation of Independence Day", "1994-03-03": "Throne Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (estimated)", "1994-05-01": "Labor Day", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", - "1994-06-10": "Islamic New Year* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", + "1994-06-10": "Islamic New Year (estimated)", "1994-07-09": "Youth Day", "1994-08-14": "Oued Ed-Dahab Day", - "1994-08-19": "Prophet's Birthday* (*estimated)", - "1994-08-20": "Prophet's Birthday* (*estimated); Revolution Day", + "1994-08-19": "Prophet's Birthday (estimated)", + "1994-08-20": "Prophet's Birthday (estimated); Revolution Day", "1994-11-06": "Green March", "1994-11-18": "Independence Day", "1995-01-01": "New Year's Day", "1995-01-11": "Proclamation of Independence Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr* (*estimated); Throne Day", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (estimated); Throne Day", "1995-05-01": "Labor Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", - "1995-05-30": "Islamic New Year* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", + "1995-05-30": "Islamic New Year (estimated)", "1995-07-09": "Youth Day", - "1995-08-08": "Prophet's Birthday* (*estimated)", - "1995-08-09": "Prophet's Birthday* (*estimated)", + "1995-08-08": "Prophet's Birthday (estimated)", + "1995-08-09": "Prophet's Birthday (estimated)", "1995-08-14": "Oued Ed-Dahab Day", "1995-08-20": "Revolution Day", "1995-11-06": "Green March", "1995-11-18": "Independence Day", "1996-01-01": "New Year's Day", "1996-01-11": "Proclamation of Independence Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr (estimated)", "1996-03-03": "Throne Day", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", "1996-05-01": "Labor Day", - "1996-05-18": "Islamic New Year* (*estimated)", + "1996-05-18": "Islamic New Year (estimated)", "1996-07-09": "Youth Day", - "1996-07-27": "Prophet's Birthday* (*estimated)", - "1996-07-28": "Prophet's Birthday* (*estimated)", + "1996-07-27": "Prophet's Birthday (estimated)", + "1996-07-28": "Prophet's Birthday (estimated)", "1996-08-14": "Oued Ed-Dahab Day", "1996-08-20": "Revolution Day", "1996-11-06": "Green March", "1996-11-18": "Independence Day", "1997-01-01": "New Year's Day", "1997-01-11": "Proclamation of Independence Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (estimated)", "1997-03-03": "Throne Day", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", "1997-05-01": "Labor Day", - "1997-05-07": "Islamic New Year* (*estimated)", + "1997-05-07": "Islamic New Year (estimated)", "1997-07-09": "Youth Day", - "1997-07-16": "Prophet's Birthday* (*estimated)", - "1997-07-17": "Prophet's Birthday* (*estimated)", + "1997-07-16": "Prophet's Birthday (estimated)", + "1997-07-17": "Prophet's Birthday (estimated)", "1997-08-14": "Oued Ed-Dahab Day", "1997-08-20": "Revolution Day", "1997-11-06": "Green March", "1997-11-18": "Independence Day", "1998-01-01": "New Year's Day", "1998-01-11": "Proclamation of Independence Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (estimated)", "1998-03-03": "Throne Day", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", - "1998-04-27": "Islamic New Year* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", "1998-05-01": "Labor Day", - "1998-07-06": "Prophet's Birthday* (*estimated)", - "1998-07-07": "Prophet's Birthday* (*estimated)", + "1998-07-06": "Prophet's Birthday (estimated)", + "1998-07-07": "Prophet's Birthday (estimated)", "1998-07-09": "Youth Day", "1998-08-14": "Oued Ed-Dahab Day", "1998-08-20": "Revolution Day", @@ -745,466 +745,466 @@ "1998-11-18": "Independence Day", "1999-01-01": "New Year's Day", "1999-01-11": "Proclamation of Independence Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (estimated)", "1999-03-03": "Throne Day", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated)", - "1999-04-17": "Islamic New Year* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", "1999-05-01": "Labor Day", - "1999-06-26": "Prophet's Birthday* (*estimated)", - "1999-06-27": "Prophet's Birthday* (*estimated)", + "1999-06-26": "Prophet's Birthday (estimated)", + "1999-06-27": "Prophet's Birthday (estimated)", "1999-07-09": "Youth Day", "1999-08-14": "Oued Ed-Dahab Day", "1999-08-20": "Revolution Day", "1999-11-06": "Green March", "1999-11-18": "Independence Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (estimated)", "2000-01-11": "Proclamation of Independence Day", "2000-03-03": "Throne Day", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-04-06": "Islamic New Year* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", "2000-05-01": "Labor Day", - "2000-06-14": "Prophet's Birthday* (*estimated)", - "2000-06-15": "Prophet's Birthday* (*estimated)", + "2000-06-14": "Prophet's Birthday (estimated)", + "2000-06-15": "Prophet's Birthday (estimated)", "2000-07-09": "Youth Day", "2000-08-14": "Oued Ed-Dahab Day", "2000-08-20": "Revolution Day", "2000-11-06": "Green March", "2000-11-18": "Independence Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-11": "Proclamation of Independence Day", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", - "2001-03-26": "Islamic New Year* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", + "2001-03-26": "Islamic New Year (estimated)", "2001-05-01": "Labor Day", - "2001-06-04": "Prophet's Birthday* (*estimated)", - "2001-06-05": "Prophet's Birthday* (*estimated)", + "2001-06-04": "Prophet's Birthday (estimated)", + "2001-06-05": "Prophet's Birthday (estimated)", "2001-07-30": "Throne Day", "2001-08-14": "Oued Ed-Dahab Day", "2001-08-20": "Revolution Day", "2001-08-21": "Youth Day", "2001-11-06": "Green March", "2001-11-18": "Independence Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", - "2001-12-17": "Eid al-Fitr* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2001-12-17": "Eid al-Fitr (estimated)", "2002-01-01": "New Year's Day", "2002-01-11": "Proclamation of Independence Day", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-03-15": "Islamic New Year* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-03-15": "Islamic New Year (estimated)", "2002-05-01": "Labor Day", - "2002-05-24": "Prophet's Birthday* (*estimated)", - "2002-05-25": "Prophet's Birthday* (*estimated)", + "2002-05-24": "Prophet's Birthday (estimated)", + "2002-05-25": "Prophet's Birthday (estimated)", "2002-07-30": "Throne Day", "2002-08-14": "Oued Ed-Dahab Day", "2002-08-20": "Revolution Day", "2002-08-21": "Youth Day", "2002-11-06": "Green March", "2002-11-18": "Independence Day", - "2002-12-05": "Eid al-Fitr* (*estimated)", - "2002-12-06": "Eid al-Fitr* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", + "2002-12-06": "Eid al-Fitr (estimated)", "2003-01-01": "New Year's Day", "2003-01-11": "Proclamation of Independence Day", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-03-04": "Islamic New Year* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-03-04": "Islamic New Year (estimated)", "2003-05-01": "Labor Day", - "2003-05-13": "Prophet's Birthday* (*estimated)", - "2003-05-14": "Prophet's Birthday* (*estimated)", + "2003-05-13": "Prophet's Birthday (estimated)", + "2003-05-14": "Prophet's Birthday (estimated)", "2003-07-30": "Throne Day", "2003-08-14": "Oued Ed-Dahab Day", "2003-08-20": "Revolution Day", "2003-08-21": "Youth Day", "2003-11-06": "Green March", "2003-11-18": "Independence Day", - "2003-11-25": "Eid al-Fitr* (*estimated)", - "2003-11-26": "Eid al-Fitr* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", + "2003-11-26": "Eid al-Fitr (estimated)", "2004-01-01": "New Year's Day", "2004-01-11": "Proclamation of Independence Day", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-02-21": "Islamic New Year* (*estimated)", - "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", - "2004-05-02": "Prophet's Birthday* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-02-21": "Islamic New Year (estimated)", + "2004-05-01": "Labor Day; Prophet's Birthday (estimated)", + "2004-05-02": "Prophet's Birthday (estimated)", "2004-07-30": "Throne Day", "2004-08-14": "Oued Ed-Dahab Day", "2004-08-20": "Revolution Day", "2004-08-21": "Youth Day", "2004-11-06": "Green March", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr (estimated)", "2004-11-18": "Independence Day", "2005-01-01": "New Year's Day", "2005-01-11": "Proclamation of Independence Day", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", - "2005-02-10": "Islamic New Year* (*estimated)", - "2005-04-21": "Prophet's Birthday* (*estimated)", - "2005-04-22": "Prophet's Birthday* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", + "2005-02-10": "Islamic New Year (estimated)", + "2005-04-21": "Prophet's Birthday (estimated)", + "2005-04-22": "Prophet's Birthday (estimated)", "2005-05-01": "Labor Day", "2005-07-30": "Throne Day", "2005-08-14": "Oued Ed-Dahab Day", "2005-08-20": "Revolution Day", "2005-08-21": "Youth Day", - "2005-11-03": "Eid al-Fitr* (*estimated)", - "2005-11-04": "Eid al-Fitr* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", + "2005-11-04": "Eid al-Fitr (estimated)", "2005-11-06": "Green March", "2005-11-18": "Independence Day", "2006-01-01": "New Year's Day", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated); Proclamation of Independence Day", - "2006-01-31": "Islamic New Year* (*estimated)", - "2006-04-10": "Prophet's Birthday* (*estimated)", - "2006-04-11": "Prophet's Birthday* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated); Proclamation of Independence Day", + "2006-01-31": "Islamic New Year (estimated)", + "2006-04-10": "Prophet's Birthday (estimated)", + "2006-04-11": "Prophet's Birthday (estimated)", "2006-05-01": "Labor Day", "2006-07-30": "Throne Day", "2006-08-14": "Oued Ed-Dahab Day", "2006-08-20": "Revolution Day", "2006-08-21": "Youth Day", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-10-24": "Eid al-Fitr* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-10-24": "Eid al-Fitr (estimated)", "2006-11-06": "Green March", "2006-11-18": "Independence Day", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated); New Year's Day", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated); New Year's Day", "2007-01-11": "Proclamation of Independence Day", - "2007-01-20": "Islamic New Year* (*estimated)", - "2007-03-31": "Prophet's Birthday* (*estimated)", - "2007-04-01": "Prophet's Birthday* (*estimated)", + "2007-01-20": "Islamic New Year (estimated)", + "2007-03-31": "Prophet's Birthday (estimated)", + "2007-04-01": "Prophet's Birthday (estimated)", "2007-05-01": "Labor Day", "2007-07-30": "Throne Day", "2007-08-14": "Oued Ed-Dahab Day", "2007-08-20": "Revolution Day", "2007-08-21": "Youth Day", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-14": "Eid al-Fitr* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-14": "Eid al-Fitr (estimated)", "2007-11-06": "Green March", "2007-11-18": "Independence Day", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", "2008-01-01": "New Year's Day", - "2008-01-10": "Islamic New Year* (*estimated)", + "2008-01-10": "Islamic New Year (estimated)", "2008-01-11": "Proclamation of Independence Day", - "2008-03-20": "Prophet's Birthday* (*estimated)", - "2008-03-21": "Prophet's Birthday* (*estimated)", + "2008-03-20": "Prophet's Birthday (estimated)", + "2008-03-21": "Prophet's Birthday (estimated)", "2008-05-01": "Labor Day", "2008-07-30": "Throne Day", "2008-08-14": "Oued Ed-Dahab Day", "2008-08-20": "Revolution Day", "2008-08-21": "Youth Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-10-02": "Eid al-Fitr* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-10-02": "Eid al-Fitr (estimated)", "2008-11-06": "Green March", "2008-11-18": "Independence Day", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", - "2008-12-29": "Islamic New Year* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", + "2008-12-29": "Islamic New Year (estimated)", "2009-01-01": "New Year's Day", "2009-01-11": "Proclamation of Independence Day", - "2009-03-09": "Prophet's Birthday* (*estimated)", - "2009-03-10": "Prophet's Birthday* (*estimated)", + "2009-03-09": "Prophet's Birthday (estimated)", + "2009-03-10": "Prophet's Birthday (estimated)", "2009-05-01": "Labor Day", "2009-07-30": "Throne Day", "2009-08-14": "Oued Ed-Dahab Day", "2009-08-20": "Revolution Day", "2009-08-21": "Youth Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr (estimated)", "2009-11-06": "Green March", "2009-11-18": "Independence Day", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", - "2009-12-18": "Islamic New Year* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", + "2009-12-18": "Islamic New Year (estimated)", "2010-01-01": "New Year's Day", "2010-01-11": "Proclamation of Independence Day", - "2010-02-26": "Prophet's Birthday* (*estimated)", - "2010-02-27": "Prophet's Birthday* (*estimated)", + "2010-02-26": "Prophet's Birthday (estimated)", + "2010-02-27": "Prophet's Birthday (estimated)", "2010-05-01": "Labor Day", "2010-07-30": "Throne Day", "2010-08-14": "Oued Ed-Dahab Day", "2010-08-20": "Revolution Day", "2010-08-21": "Youth Day", - "2010-09-10": "Eid al-Fitr* (*estimated)", - "2010-09-11": "Eid al-Fitr* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", + "2010-09-11": "Eid al-Fitr (estimated)", "2010-11-06": "Green March", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", "2010-11-18": "Independence Day", - "2010-12-07": "Islamic New Year* (*estimated)", + "2010-12-07": "Islamic New Year (estimated)", "2011-01-01": "New Year's Day", "2011-01-11": "Proclamation of Independence Day", - "2011-02-15": "Prophet's Birthday* (*estimated)", - "2011-02-16": "Prophet's Birthday* (*estimated)", + "2011-02-15": "Prophet's Birthday (estimated)", + "2011-02-16": "Prophet's Birthday (estimated)", "2011-05-01": "Labor Day", "2011-07-30": "Throne Day", "2011-08-14": "Oued Ed-Dahab Day", "2011-08-20": "Revolution Day", "2011-08-21": "Youth Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", - "2011-08-31": "Eid al-Fitr* (*estimated)", - "2011-11-06": "Eid al-Adha* (*estimated); Green March", - "2011-11-07": "Eid al-Adha* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", + "2011-08-31": "Eid al-Fitr (estimated)", + "2011-11-06": "Eid al-Adha (estimated); Green March", + "2011-11-07": "Eid al-Adha (estimated)", "2011-11-18": "Independence Day", - "2011-11-26": "Islamic New Year* (*estimated)", + "2011-11-26": "Islamic New Year (estimated)", "2012-01-01": "New Year's Day", "2012-01-11": "Proclamation of Independence Day", - "2012-02-04": "Prophet's Birthday* (*estimated)", - "2012-02-05": "Prophet's Birthday* (*estimated)", + "2012-02-04": "Prophet's Birthday (estimated)", + "2012-02-05": "Prophet's Birthday (estimated)", "2012-05-01": "Labor Day", "2012-07-30": "Throne Day", "2012-08-14": "Oued Ed-Dahab Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr* (*estimated); Revolution Day", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr (estimated); Revolution Day", "2012-08-21": "Youth Day", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", "2012-11-06": "Green March", - "2012-11-15": "Islamic New Year* (*estimated)", + "2012-11-15": "Islamic New Year (estimated)", "2012-11-18": "Independence Day", "2013-01-01": "New Year's Day", "2013-01-11": "Proclamation of Independence Day", - "2013-01-24": "Prophet's Birthday* (*estimated)", - "2013-01-25": "Prophet's Birthday* (*estimated)", + "2013-01-24": "Prophet's Birthday (estimated)", + "2013-01-25": "Prophet's Birthday (estimated)", "2013-05-01": "Labor Day", "2013-07-30": "Throne Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-08-09": "Eid al-Fitr* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-08-09": "Eid al-Fitr (estimated)", "2013-08-14": "Oued Ed-Dahab Day", "2013-08-20": "Revolution Day", "2013-08-21": "Youth Day", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", - "2013-11-04": "Islamic New Year* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", + "2013-11-04": "Islamic New Year (estimated)", "2013-11-06": "Green March", "2013-11-18": "Independence Day", "2014-01-01": "New Year's Day", "2014-01-11": "Proclamation of Independence Day", - "2014-01-13": "Prophet's Birthday* (*estimated)", - "2014-01-14": "Prophet's Birthday* (*estimated)", + "2014-01-13": "Prophet's Birthday (estimated)", + "2014-01-14": "Prophet's Birthday (estimated)", "2014-05-01": "Labor Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-07-29": "Eid al-Fitr* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-07-29": "Eid al-Fitr (estimated)", "2014-07-30": "Throne Day", "2014-08-14": "Oued Ed-Dahab Day", "2014-08-20": "Revolution Day", "2014-08-21": "Youth Day", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", - "2014-10-25": "Islamic New Year* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", + "2014-10-25": "Islamic New Year (estimated)", "2014-11-06": "Green March", "2014-11-18": "Independence Day", "2015-01-01": "New Year's Day", - "2015-01-03": "Prophet's Birthday* (*estimated)", - "2015-01-04": "Prophet's Birthday* (*estimated)", + "2015-01-03": "Prophet's Birthday (estimated)", + "2015-01-04": "Prophet's Birthday (estimated)", "2015-01-11": "Proclamation of Independence Day", "2015-05-01": "Labor Day", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-07-18": "Eid al-Fitr* (*estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-07-18": "Eid al-Fitr (estimated)", "2015-07-30": "Throne Day", "2015-08-14": "Oued Ed-Dahab Day", "2015-08-20": "Revolution Day", "2015-08-21": "Youth Day", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", - "2015-10-14": "Islamic New Year* (*estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", + "2015-10-14": "Islamic New Year (estimated)", "2015-11-06": "Green March", "2015-11-18": "Independence Day", - "2015-12-23": "Prophet's Birthday* (*estimated)", - "2015-12-24": "Prophet's Birthday* (*estimated)", + "2015-12-23": "Prophet's Birthday (estimated)", + "2015-12-24": "Prophet's Birthday (estimated)", "2016-01-01": "New Year's Day", "2016-01-11": "Proclamation of Independence Day", "2016-05-01": "Labor Day", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-07-07": "Eid al-Fitr* (*estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-07-07": "Eid al-Fitr (estimated)", "2016-07-30": "Throne Day", "2016-08-14": "Oued Ed-Dahab Day", "2016-08-20": "Revolution Day", "2016-08-21": "Youth Day", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", - "2016-10-02": "Islamic New Year* (*estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", + "2016-10-02": "Islamic New Year (estimated)", "2016-11-06": "Green March", "2016-11-18": "Independence Day", - "2016-12-11": "Prophet's Birthday* (*estimated)", - "2016-12-12": "Prophet's Birthday* (*estimated)", + "2016-12-11": "Prophet's Birthday (estimated)", + "2016-12-12": "Prophet's Birthday (estimated)", "2017-01-01": "New Year's Day", "2017-01-11": "Proclamation of Independence Day", "2017-05-01": "Labor Day", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-06-26": "Eid al-Fitr* (*estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-06-26": "Eid al-Fitr (estimated)", "2017-07-30": "Throne Day", "2017-08-14": "Oued Ed-Dahab Day", "2017-08-20": "Revolution Day", "2017-08-21": "Youth Day", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-21": "Islamic New Year* (*estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-21": "Islamic New Year (estimated)", "2017-11-06": "Green March", "2017-11-18": "Independence Day", - "2017-11-30": "Prophet's Birthday* (*estimated)", - "2017-12-01": "Prophet's Birthday* (*estimated)", + "2017-11-30": "Prophet's Birthday (estimated)", + "2017-12-01": "Prophet's Birthday (estimated)", "2018-01-01": "New Year's Day", "2018-01-11": "Proclamation of Independence Day", "2018-05-01": "Labor Day", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-06-16": "Eid al-Fitr* (*estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-06-16": "Eid al-Fitr (estimated)", "2018-07-30": "Throne Day", "2018-08-14": "Oued Ed-Dahab Day", "2018-08-20": "Revolution Day", - "2018-08-21": "Eid al-Adha* (*estimated); Youth Day", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-09-11": "Islamic New Year* (*estimated)", + "2018-08-21": "Eid al-Adha (estimated); Youth Day", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-09-11": "Islamic New Year (estimated)", "2018-11-06": "Green March", "2018-11-18": "Independence Day", - "2018-11-20": "Prophet's Birthday* (*estimated)", - "2018-11-21": "Prophet's Birthday* (*estimated)", + "2018-11-20": "Prophet's Birthday (estimated)", + "2018-11-21": "Prophet's Birthday (estimated)", "2019-01-01": "New Year's Day", "2019-01-11": "Proclamation of Independence Day", "2019-05-01": "Labor Day", - "2019-06-04": "Eid al-Fitr* (*estimated)", - "2019-06-05": "Eid al-Fitr* (*estimated)", + "2019-06-04": "Eid al-Fitr (estimated)", + "2019-06-05": "Eid al-Fitr (estimated)", "2019-07-30": "Throne Day", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", "2019-08-14": "Oued Ed-Dahab Day", "2019-08-20": "Revolution Day", "2019-08-21": "Youth Day", - "2019-08-31": "Islamic New Year* (*estimated)", + "2019-08-31": "Islamic New Year (estimated)", "2019-11-06": "Green March", - "2019-11-09": "Prophet's Birthday* (*estimated)", - "2019-11-10": "Prophet's Birthday* (*estimated)", + "2019-11-09": "Prophet's Birthday (estimated)", + "2019-11-10": "Prophet's Birthday (estimated)", "2019-11-18": "Independence Day", "2020-01-01": "New Year's Day", "2020-01-11": "Proclamation of Independence Day", "2020-05-01": "Labor Day", - "2020-05-24": "Eid al-Fitr* (*estimated)", - "2020-05-25": "Eid al-Fitr* (*estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", + "2020-05-25": "Eid al-Fitr (estimated)", "2020-07-30": "Throne Day", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", "2020-08-14": "Oued Ed-Dahab Day", - "2020-08-20": "Islamic New Year* (*estimated); Revolution Day", + "2020-08-20": "Islamic New Year (estimated); Revolution Day", "2020-08-21": "Youth Day", - "2020-10-29": "Prophet's Birthday* (*estimated)", - "2020-10-30": "Prophet's Birthday* (*estimated)", + "2020-10-29": "Prophet's Birthday (estimated)", + "2020-10-30": "Prophet's Birthday (estimated)", "2020-11-06": "Green March", "2020-11-18": "Independence Day", "2021-01-01": "New Year's Day", "2021-01-11": "Proclamation of Independence Day", "2021-05-01": "Labor Day", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-05-14": "Eid al-Fitr* (*estimated)", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-05-14": "Eid al-Fitr (estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", "2021-07-30": "Throne Day", - "2021-08-09": "Islamic New Year* (*estimated)", + "2021-08-09": "Islamic New Year (estimated)", "2021-08-14": "Oued Ed-Dahab Day", "2021-08-20": "Revolution Day", "2021-08-21": "Youth Day", - "2021-10-18": "Prophet's Birthday* (*estimated)", - "2021-10-19": "Prophet's Birthday* (*estimated)", + "2021-10-18": "Prophet's Birthday (estimated)", + "2021-10-19": "Prophet's Birthday (estimated)", "2021-11-06": "Green March", "2021-11-18": "Independence Day", "2022-01-01": "New Year's Day", "2022-01-11": "Proclamation of Independence Day", "2022-05-01": "Labor Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", - "2022-05-03": "Eid al-Fitr* (*estimated)", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-07-30": "Islamic New Year* (*estimated); Throne Day", + "2022-05-02": "Eid al-Fitr (estimated)", + "2022-05-03": "Eid al-Fitr (estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-07-30": "Islamic New Year (estimated); Throne Day", "2022-08-14": "Oued Ed-Dahab Day", "2022-08-20": "Revolution Day", "2022-08-21": "Youth Day", - "2022-10-08": "Prophet's Birthday* (*estimated)", - "2022-10-09": "Prophet's Birthday* (*estimated)", + "2022-10-08": "Prophet's Birthday (estimated)", + "2022-10-09": "Prophet's Birthday (estimated)", "2022-11-06": "Green March", "2022-11-18": "Independence Day", "2023-01-01": "New Year's Day", "2023-01-11": "Proclamation of Independence Day", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-22": "Eid al-Fitr* (*estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", + "2023-04-22": "Eid al-Fitr (estimated)", "2023-05-01": "Labor Day", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-07-19": "Islamic New Year* (*estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-07-19": "Islamic New Year (estimated)", "2023-07-30": "Throne Day", "2023-08-14": "Oued Ed-Dahab Day", "2023-08-20": "Revolution Day", "2023-08-21": "Youth Day", - "2023-09-27": "Prophet's Birthday* (*estimated)", - "2023-09-28": "Prophet's Birthday* (*estimated)", + "2023-09-27": "Prophet's Birthday (estimated)", + "2023-09-28": "Prophet's Birthday (estimated)", "2023-11-06": "Green March", "2023-11-18": "Independence Day", "2024-01-01": "New Year's Day", "2024-01-11": "Proclamation of Independence Day", "2024-01-13": "Amazigh New Year", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr (estimated)", "2024-05-01": "Labor Day", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-07-07": "Islamic New Year* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-07-07": "Islamic New Year (estimated)", "2024-07-30": "Throne Day", "2024-08-14": "Oued Ed-Dahab Day", "2024-08-20": "Revolution Day", "2024-08-21": "Youth Day", - "2024-09-15": "Prophet's Birthday* (*estimated)", - "2024-09-16": "Prophet's Birthday* (*estimated)", + "2024-09-15": "Prophet's Birthday (estimated)", + "2024-09-16": "Prophet's Birthday (estimated)", "2024-11-06": "Green March", "2024-11-18": "Independence Day", "2025-01-01": "New Year's Day", "2025-01-11": "Proclamation of Independence Day", "2025-01-13": "Amazigh New Year", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated)", "2025-05-01": "Labor Day", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", - "2025-06-26": "Islamic New Year* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", "2025-07-30": "Throne Day", "2025-08-14": "Oued Ed-Dahab Day", "2025-08-20": "Revolution Day", "2025-08-21": "Youth Day", - "2025-09-04": "Prophet's Birthday* (*estimated)", - "2025-09-05": "Prophet's Birthday* (*estimated)", + "2025-09-04": "Prophet's Birthday (estimated)", + "2025-09-05": "Prophet's Birthday (estimated)", "2025-11-06": "Green March", "2025-11-18": "Independence Day", "2026-01-01": "New Year's Day", "2026-01-11": "Proclamation of Independence Day", "2026-01-13": "Amazigh New Year", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (estimated)", "2026-05-01": "Labor Day", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-06-16": "Islamic New Year* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-06-16": "Islamic New Year (estimated)", "2026-07-30": "Throne Day", "2026-08-14": "Oued Ed-Dahab Day", "2026-08-20": "Revolution Day", "2026-08-21": "Youth Day", - "2026-08-25": "Prophet's Birthday* (*estimated)", - "2026-08-26": "Prophet's Birthday* (*estimated)", + "2026-08-25": "Prophet's Birthday (estimated)", + "2026-08-26": "Prophet's Birthday (estimated)", "2026-11-06": "Green March", "2026-11-18": "Independence Day", "2027-01-01": "New Year's Day", "2027-01-11": "Proclamation of Independence Day", "2027-01-13": "Amazigh New Year", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (estimated)", "2027-05-01": "Labor Day", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-06-06": "Islamic New Year* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-06-06": "Islamic New Year (estimated)", "2027-07-30": "Throne Day", - "2027-08-14": "Oued Ed-Dahab Day; Prophet's Birthday* (*estimated)", - "2027-08-15": "Prophet's Birthday* (*estimated)", + "2027-08-14": "Oued Ed-Dahab Day; Prophet's Birthday (estimated)", + "2027-08-15": "Prophet's Birthday (estimated)", "2027-08-20": "Revolution Day", "2027-08-21": "Youth Day", "2027-11-06": "Green March", @@ -1212,15 +1212,15 @@ "2028-01-01": "New Year's Day", "2028-01-11": "Proclamation of Independence Day", "2028-01-13": "Amazigh New Year", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (estimated)", "2028-05-01": "Labor Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-05-25": "Islamic New Year* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-05-25": "Islamic New Year (estimated)", "2028-07-30": "Throne Day", - "2028-08-03": "Prophet's Birthday* (*estimated)", - "2028-08-04": "Prophet's Birthday* (*estimated)", + "2028-08-03": "Prophet's Birthday (estimated)", + "2028-08-04": "Prophet's Birthday (estimated)", "2028-08-14": "Oued Ed-Dahab Day", "2028-08-20": "Revolution Day", "2028-08-21": "Youth Day", @@ -1229,14 +1229,14 @@ "2029-01-01": "New Year's Day", "2029-01-11": "Proclamation of Independence Day", "2029-01-13": "Amazigh New Year", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr* (*estimated)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", - "2029-05-14": "Islamic New Year* (*estimated)", - "2029-07-24": "Prophet's Birthday* (*estimated)", - "2029-07-25": "Prophet's Birthday* (*estimated)", + "2029-05-14": "Islamic New Year (estimated)", + "2029-07-24": "Prophet's Birthday (estimated)", + "2029-07-25": "Prophet's Birthday (estimated)", "2029-07-30": "Throne Day", "2029-08-14": "Oued Ed-Dahab Day", "2029-08-20": "Revolution Day", @@ -1246,14 +1246,14 @@ "2030-01-01": "New Year's Day", "2030-01-11": "Proclamation of Independence Day", "2030-01-13": "Amazigh New Year", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated)", "2030-05-01": "Labor Day", - "2030-05-03": "Islamic New Year* (*estimated)", - "2030-07-13": "Prophet's Birthday* (*estimated)", - "2030-07-14": "Prophet's Birthday* (*estimated)", + "2030-05-03": "Islamic New Year (estimated)", + "2030-07-13": "Prophet's Birthday (estimated)", + "2030-07-14": "Prophet's Birthday (estimated)", "2030-07-30": "Throne Day", "2030-08-14": "Oued Ed-Dahab Day", "2030-08-20": "Revolution Day", @@ -1263,14 +1263,14 @@ "2031-01-01": "New Year's Day", "2031-01-11": "Proclamation of Independence Day", "2031-01-13": "Amazigh New Year", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", - "2031-04-23": "Islamic New Year* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", "2031-05-01": "Labor Day", - "2031-07-02": "Prophet's Birthday* (*estimated)", - "2031-07-03": "Prophet's Birthday* (*estimated)", + "2031-07-02": "Prophet's Birthday (estimated)", + "2031-07-03": "Prophet's Birthday (estimated)", "2031-07-30": "Throne Day", "2031-08-14": "Oued Ed-Dahab Day", "2031-08-20": "Revolution Day", @@ -1280,14 +1280,14 @@ "2032-01-01": "New Year's Day", "2032-01-11": "Proclamation of Independence Day", "2032-01-13": "Amazigh New Year", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", - "2032-04-11": "Islamic New Year* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", "2032-05-01": "Labor Day", - "2032-06-20": "Prophet's Birthday* (*estimated)", - "2032-06-21": "Prophet's Birthday* (*estimated)", + "2032-06-20": "Prophet's Birthday (estimated)", + "2032-06-21": "Prophet's Birthday (estimated)", "2032-07-30": "Throne Day", "2032-08-14": "Oued Ed-Dahab Day", "2032-08-20": "Revolution Day", @@ -1295,315 +1295,315 @@ "2032-11-06": "Green March", "2032-11-18": "Independence Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (estimated)", "2033-01-11": "Proclamation of Independence Day", "2033-01-13": "Amazigh New Year", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-04-01": "Islamic New Year* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", "2033-05-01": "Labor Day", - "2033-06-09": "Prophet's Birthday* (*estimated)", - "2033-06-10": "Prophet's Birthday* (*estimated)", + "2033-06-09": "Prophet's Birthday (estimated)", + "2033-06-10": "Prophet's Birthday (estimated)", "2033-07-30": "Throne Day", "2033-08-14": "Oued Ed-Dahab Day", "2033-08-20": "Revolution Day", "2033-08-21": "Youth Day", "2033-11-06": "Green March", "2033-11-18": "Independence Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (estimated)", "2034-01-01": "New Year's Day", "2034-01-11": "Proclamation of Independence Day", "2034-01-13": "Amazigh New Year", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-21": "Islamic New Year* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", "2034-05-01": "Labor Day", - "2034-05-30": "Prophet's Birthday* (*estimated)", - "2034-05-31": "Prophet's Birthday* (*estimated)", + "2034-05-30": "Prophet's Birthday (estimated)", + "2034-05-31": "Prophet's Birthday (estimated)", "2034-07-30": "Throne Day", "2034-08-14": "Oued Ed-Dahab Day", "2034-08-20": "Revolution Day", "2034-08-21": "Youth Day", "2034-11-06": "Green March", "2034-11-18": "Independence Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (estimated)", "2035-01-01": "New Year's Day", "2035-01-11": "Proclamation of Independence Day", "2035-01-13": "Amazigh New Year", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", - "2035-03-11": "Islamic New Year* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", + "2035-03-11": "Islamic New Year (estimated)", "2035-05-01": "Labor Day", - "2035-05-20": "Prophet's Birthday* (*estimated)", - "2035-05-21": "Prophet's Birthday* (*estimated)", + "2035-05-20": "Prophet's Birthday (estimated)", + "2035-05-21": "Prophet's Birthday (estimated)", "2035-07-30": "Throne Day", "2035-08-14": "Oued Ed-Dahab Day", "2035-08-20": "Revolution Day", "2035-08-21": "Youth Day", "2035-11-06": "Green March", "2035-11-18": "Independence Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (estimated)", "2036-01-01": "New Year's Day", "2036-01-11": "Proclamation of Independence Day", "2036-01-13": "Amazigh New Year", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-02-28": "Islamic New Year* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", "2036-05-01": "Labor Day", - "2036-05-08": "Prophet's Birthday* (*estimated)", - "2036-05-09": "Prophet's Birthday* (*estimated)", + "2036-05-08": "Prophet's Birthday (estimated)", + "2036-05-09": "Prophet's Birthday (estimated)", "2036-07-30": "Throne Day", "2036-08-14": "Oued Ed-Dahab Day", "2036-08-20": "Revolution Day", "2036-08-21": "Youth Day", "2036-11-06": "Green March", "2036-11-18": "Independence Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (estimated)", "2037-01-01": "New Year's Day", "2037-01-11": "Proclamation of Independence Day", "2037-01-13": "Amazigh New Year", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-02-16": "Islamic New Year* (*estimated)", - "2037-04-28": "Prophet's Birthday* (*estimated)", - "2037-04-29": "Prophet's Birthday* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-02-16": "Islamic New Year (estimated)", + "2037-04-28": "Prophet's Birthday (estimated)", + "2037-04-29": "Prophet's Birthday (estimated)", "2037-05-01": "Labor Day", "2037-07-30": "Throne Day", "2037-08-14": "Oued Ed-Dahab Day", "2037-08-20": "Revolution Day", "2037-08-21": "Youth Day", "2037-11-06": "Green March", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated)", "2037-11-18": "Independence Day", "2038-01-01": "New Year's Day", "2038-01-11": "Proclamation of Independence Day", "2038-01-13": "Amazigh New Year", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", - "2038-02-05": "Islamic New Year* (*estimated)", - "2038-04-17": "Prophet's Birthday* (*estimated)", - "2038-04-18": "Prophet's Birthday* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", + "2038-02-05": "Islamic New Year (estimated)", + "2038-04-17": "Prophet's Birthday (estimated)", + "2038-04-18": "Prophet's Birthday (estimated)", "2038-05-01": "Labor Day", "2038-07-30": "Throne Day", "2038-08-14": "Oued Ed-Dahab Day", "2038-08-20": "Revolution Day", "2038-08-21": "Youth Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (estimated)", "2038-11-06": "Green March", "2038-11-18": "Independence Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", "2039-01-11": "Proclamation of Independence Day", "2039-01-13": "Amazigh New Year", - "2039-01-26": "Islamic New Year* (*estimated)", - "2039-04-06": "Prophet's Birthday* (*estimated)", - "2039-04-07": "Prophet's Birthday* (*estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-04-06": "Prophet's Birthday (estimated)", + "2039-04-07": "Prophet's Birthday (estimated)", "2039-05-01": "Labor Day", "2039-07-30": "Throne Day", "2039-08-14": "Oued Ed-Dahab Day", "2039-08-20": "Revolution Day", "2039-08-21": "Youth Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (estimated)", "2039-11-06": "Green March", "2039-11-18": "Independence Day", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-11": "Proclamation of Independence Day", "2040-01-13": "Amazigh New Year", - "2040-01-15": "Islamic New Year* (*estimated)", - "2040-03-25": "Prophet's Birthday* (*estimated)", - "2040-03-26": "Prophet's Birthday* (*estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-03-25": "Prophet's Birthday (estimated)", + "2040-03-26": "Prophet's Birthday (estimated)", "2040-05-01": "Labor Day", "2040-07-30": "Throne Day", "2040-08-14": "Oued Ed-Dahab Day", "2040-08-20": "Revolution Day", "2040-08-21": "Youth Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated)", "2040-11-06": "Green March", "2040-11-18": "Independence Day", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-04": "Islamic New Year (estimated)", "2041-01-11": "Proclamation of Independence Day", "2041-01-13": "Amazigh New Year", - "2041-03-15": "Prophet's Birthday* (*estimated)", - "2041-03-16": "Prophet's Birthday* (*estimated)", + "2041-03-15": "Prophet's Birthday (estimated)", + "2041-03-16": "Prophet's Birthday (estimated)", "2041-05-01": "Labor Day", "2041-07-30": "Throne Day", "2041-08-14": "Oued Ed-Dahab Day", "2041-08-20": "Revolution Day", "2041-08-21": "Youth Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (estimated)", "2041-11-06": "Green March", "2041-11-18": "Independence Day", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", - "2041-12-24": "Islamic New Year* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2042-01-01": "New Year's Day", "2042-01-11": "Proclamation of Independence Day", "2042-01-13": "Amazigh New Year", - "2042-03-04": "Prophet's Birthday* (*estimated)", - "2042-03-05": "Prophet's Birthday* (*estimated)", + "2042-03-04": "Prophet's Birthday (estimated)", + "2042-03-05": "Prophet's Birthday (estimated)", "2042-05-01": "Labor Day", "2042-07-30": "Throne Day", "2042-08-14": "Oued Ed-Dahab Day", "2042-08-20": "Revolution Day", "2042-08-21": "Youth Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (estimated)", "2042-11-06": "Green March", "2042-11-18": "Independence Day", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-12-14": "Islamic New Year* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-12-14": "Islamic New Year (estimated)", "2043-01-01": "New Year's Day", "2043-01-11": "Proclamation of Independence Day", "2043-01-13": "Amazigh New Year", - "2043-02-22": "Prophet's Birthday* (*estimated)", - "2043-02-23": "Prophet's Birthday* (*estimated)", + "2043-02-22": "Prophet's Birthday (estimated)", + "2043-02-23": "Prophet's Birthday (estimated)", "2043-05-01": "Labor Day", "2043-07-30": "Throne Day", "2043-08-14": "Oued Ed-Dahab Day", "2043-08-20": "Revolution Day", "2043-08-21": "Youth Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (estimated)", "2043-11-06": "Green March", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", "2043-11-18": "Independence Day", - "2043-12-03": "Islamic New Year* (*estimated)", + "2043-12-03": "Islamic New Year (estimated)", "2044-01-01": "New Year's Day", "2044-01-11": "Proclamation of Independence Day", "2044-01-13": "Amazigh New Year", - "2044-02-11": "Prophet's Birthday* (*estimated)", - "2044-02-12": "Prophet's Birthday* (*estimated)", + "2044-02-11": "Prophet's Birthday (estimated)", + "2044-02-12": "Prophet's Birthday (estimated)", "2044-05-01": "Labor Day", "2044-07-30": "Throne Day", "2044-08-14": "Oued Ed-Dahab Day", "2044-08-20": "Revolution Day", "2044-08-21": "Youth Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", "2044-11-06": "Green March", "2044-11-18": "Independence Day", - "2044-11-21": "Islamic New Year* (*estimated)", + "2044-11-21": "Islamic New Year (estimated)", "2045-01-01": "New Year's Day", "2045-01-11": "Proclamation of Independence Day", "2045-01-13": "Amazigh New Year", - "2045-01-30": "Prophet's Birthday* (*estimated)", - "2045-01-31": "Prophet's Birthday* (*estimated)", + "2045-01-30": "Prophet's Birthday (estimated)", + "2045-01-31": "Prophet's Birthday (estimated)", "2045-05-01": "Labor Day", "2045-07-30": "Throne Day", - "2045-08-14": "Eid al-Fitr* (*estimated); Oued Ed-Dahab Day", - "2045-08-15": "Eid al-Fitr* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated); Oued Ed-Dahab Day", + "2045-08-15": "Eid al-Fitr (estimated)", "2045-08-20": "Revolution Day", "2045-08-21": "Youth Day", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", "2045-11-06": "Green March", - "2045-11-10": "Islamic New Year* (*estimated)", + "2045-11-10": "Islamic New Year (estimated)", "2045-11-18": "Independence Day", "2046-01-01": "New Year's Day", "2046-01-11": "Proclamation of Independence Day", "2046-01-13": "Amazigh New Year", - "2046-01-19": "Prophet's Birthday* (*estimated)", - "2046-01-20": "Prophet's Birthday* (*estimated)", + "2046-01-19": "Prophet's Birthday (estimated)", + "2046-01-20": "Prophet's Birthday (estimated)", "2046-05-01": "Labor Day", "2046-07-30": "Throne Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (estimated)", "2046-08-14": "Oued Ed-Dahab Day", "2046-08-20": "Revolution Day", "2046-08-21": "Youth Day", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-10-31": "Islamic New Year* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2046-11-06": "Green March", "2046-11-18": "Independence Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Prophet's Birthday* (*estimated)", - "2047-01-09": "Prophet's Birthday* (*estimated)", + "2047-01-08": "Prophet's Birthday (estimated)", + "2047-01-09": "Prophet's Birthday (estimated)", "2047-01-11": "Proclamation of Independence Day", "2047-01-13": "Amazigh New Year", "2047-05-01": "Labor Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (estimated)", "2047-07-30": "Throne Day", "2047-08-14": "Oued Ed-Dahab Day", "2047-08-20": "Revolution Day", "2047-08-21": "Youth Day", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", - "2047-10-20": "Islamic New Year* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", "2047-11-06": "Green March", "2047-11-18": "Independence Day", - "2047-12-29": "Prophet's Birthday* (*estimated)", - "2047-12-30": "Prophet's Birthday* (*estimated)", + "2047-12-29": "Prophet's Birthday (estimated)", + "2047-12-30": "Prophet's Birthday (estimated)", "2048-01-01": "New Year's Day", "2048-01-11": "Proclamation of Independence Day", "2048-01-13": "Amazigh New Year", "2048-05-01": "Labor Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated)", "2048-07-30": "Throne Day", "2048-08-14": "Oued Ed-Dahab Day", "2048-08-20": "Revolution Day", "2048-08-21": "Youth Day", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", - "2048-10-09": "Islamic New Year* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", "2048-11-06": "Green March", "2048-11-18": "Independence Day", - "2048-12-18": "Prophet's Birthday* (*estimated)", - "2048-12-19": "Prophet's Birthday* (*estimated)", + "2048-12-18": "Prophet's Birthday (estimated)", + "2048-12-19": "Prophet's Birthday (estimated)", "2049-01-01": "New Year's Day", "2049-01-11": "Proclamation of Independence Day", "2049-01-13": "Amazigh New Year", "2049-05-01": "Labor Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (estimated)", "2049-07-30": "Throne Day", "2049-08-14": "Oued Ed-Dahab Day", "2049-08-20": "Revolution Day", "2049-08-21": "Youth Day", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", + "2049-09-28": "Islamic New Year (estimated)", "2049-11-06": "Green March", "2049-11-18": "Independence Day", - "2049-12-07": "Prophet's Birthday* (*estimated)", - "2049-12-08": "Prophet's Birthday* (*estimated)", + "2049-12-07": "Prophet's Birthday (estimated)", + "2049-12-08": "Prophet's Birthday (estimated)", "2050-01-01": "New Year's Day", "2050-01-11": "Proclamation of Independence Day", "2050-01-13": "Amazigh New Year", "2050-05-01": "Labor Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (estimated)", "2050-07-30": "Throne Day", "2050-08-14": "Oued Ed-Dahab Day", "2050-08-20": "Revolution Day", "2050-08-21": "Youth Day", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-09-17": "Islamic New Year* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-09-17": "Islamic New Year (estimated)", "2050-11-06": "Green March", "2050-11-18": "Independence Day", - "2050-11-26": "Prophet's Birthday* (*estimated)", - "2050-11-27": "Prophet's Birthday* (*estimated)" + "2050-11-26": "Prophet's Birthday (estimated)", + "2050-11-27": "Prophet's Birthday (estimated)" } diff --git a/snapshots/countries/MK_COMMON.json b/snapshots/countries/MK_COMMON.json index d5219ccc6..cc713f1ea 100644 --- a/snapshots/countries/MK_COMMON.json +++ b/snapshots/countries/MK_COMMON.json @@ -4,7 +4,7 @@ "1950-04-10": "Easter Monday (Orthodox)", "1950-05-01": "Labour Day", "1950-05-24": "Saints Cyril and Methodius Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", "1950-08-02": "Republic Day", "1950-09-08": "Independence Day", "1950-10-11": "Day of Macedonian Uprising in 1941", @@ -15,7 +15,7 @@ "1951-04-30": "Easter Monday (Orthodox)", "1951-05-01": "Labour Day", "1951-05-24": "Saints Cyril and Methodius Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", "1951-08-02": "Republic Day", "1951-09-08": "Independence Day", "1951-10-11": "Day of Macedonian Uprising in 1941", @@ -26,7 +26,7 @@ "1952-04-21": "Easter Monday (Orthodox)", "1952-05-01": "Labour Day", "1952-05-24": "Saints Cyril and Methodius Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", "1952-08-02": "Republic Day", "1952-09-08": "Independence Day", "1952-10-11": "Day of Macedonian Uprising in 1941", @@ -37,7 +37,7 @@ "1953-04-06": "Easter Monday (Orthodox)", "1953-05-01": "Labour Day", "1953-05-24": "Saints Cyril and Methodius Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", "1953-08-02": "Republic Day", "1953-09-08": "Independence Day", "1953-10-11": "Day of Macedonian Uprising in 1941", @@ -48,7 +48,7 @@ "1954-04-26": "Easter Monday (Orthodox)", "1954-05-01": "Labour Day", "1954-05-24": "Saints Cyril and Methodius Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", "1954-08-02": "Republic Day", "1954-09-08": "Independence Day", "1954-10-11": "Day of Macedonian Uprising in 1941", @@ -58,7 +58,7 @@ "1955-01-07": "Christmas Day (Orthodox)", "1955-04-18": "Easter Monday (Orthodox)", "1955-05-01": "Labour Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", "1955-05-24": "Saints Cyril and Methodius Day", "1955-08-02": "Republic Day", "1955-09-08": "Independence Day", @@ -69,7 +69,7 @@ "1956-01-07": "Christmas Day (Orthodox)", "1956-05-01": "Labour Day", "1956-05-07": "Easter Monday (Orthodox)", - "1956-05-11": "Eid al-Fitr* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", "1956-05-24": "Saints Cyril and Methodius Day", "1956-08-02": "Republic Day", "1956-09-08": "Independence Day", @@ -79,7 +79,7 @@ "1957-01-01": "New Year's Day", "1957-01-07": "Christmas Day (Orthodox)", "1957-04-22": "Easter Monday (Orthodox)", - "1957-05-01": "Eid al-Fitr* (*estimated); Labour Day", + "1957-05-01": "Eid al-Fitr (estimated); Labour Day", "1957-05-24": "Saints Cyril and Methodius Day", "1957-08-02": "Republic Day", "1957-09-08": "Independence Day", @@ -89,7 +89,7 @@ "1958-01-01": "New Year's Day", "1958-01-07": "Christmas Day (Orthodox)", "1958-04-14": "Easter Monday (Orthodox)", - "1958-04-20": "Eid al-Fitr* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", "1958-05-01": "Labour Day", "1958-05-24": "Saints Cyril and Methodius Day", "1958-08-02": "Republic Day", @@ -99,7 +99,7 @@ "1958-12-08": "Saint Clement of Ohrid Day", "1959-01-01": "New Year's Day", "1959-01-07": "Christmas Day (Orthodox)", - "1959-04-10": "Eid al-Fitr* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", "1959-05-01": "Labour Day", "1959-05-04": "Easter Monday (Orthodox)", "1959-05-24": "Saints Cyril and Methodius Day", @@ -110,7 +110,7 @@ "1959-12-08": "Saint Clement of Ohrid Day", "1960-01-01": "New Year's Day", "1960-01-07": "Christmas Day (Orthodox)", - "1960-03-28": "Eid al-Fitr* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", "1960-04-18": "Easter Monday (Orthodox)", "1960-05-01": "Labour Day", "1960-05-24": "Saints Cyril and Methodius Day", @@ -121,7 +121,7 @@ "1960-12-08": "Saint Clement of Ohrid Day", "1961-01-01": "New Year's Day", "1961-01-07": "Christmas Day (Orthodox)", - "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", "1961-04-10": "Easter Monday (Orthodox)", "1961-05-01": "Labour Day", "1961-05-24": "Saints Cyril and Methodius Day", @@ -132,7 +132,7 @@ "1961-12-08": "Saint Clement of Ohrid Day", "1962-01-01": "New Year's Day", "1962-01-07": "Christmas Day (Orthodox)", - "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", "1962-04-30": "Easter Monday (Orthodox)", "1962-05-01": "Labour Day", "1962-05-24": "Saints Cyril and Methodius Day", @@ -143,7 +143,7 @@ "1962-12-08": "Saint Clement of Ohrid Day", "1963-01-01": "New Year's Day", "1963-01-07": "Christmas Day (Orthodox)", - "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", "1963-04-15": "Easter Monday (Orthodox)", "1963-05-01": "Labour Day", "1963-05-24": "Saints Cyril and Methodius Day", @@ -154,7 +154,7 @@ "1963-12-08": "Saint Clement of Ohrid Day", "1964-01-01": "New Year's Day", "1964-01-07": "Christmas Day (Orthodox)", - "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", "1964-05-01": "Labour Day", "1964-05-04": "Easter Monday (Orthodox)", "1964-05-24": "Saints Cyril and Methodius Day", @@ -165,7 +165,7 @@ "1964-12-08": "Saint Clement of Ohrid Day", "1965-01-01": "New Year's Day", "1965-01-07": "Christmas Day (Orthodox)", - "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", "1965-04-26": "Easter Monday (Orthodox)", "1965-05-01": "Labour Day", "1965-05-24": "Saints Cyril and Methodius Day", @@ -176,7 +176,7 @@ "1965-12-08": "Saint Clement of Ohrid Day", "1966-01-01": "New Year's Day", "1966-01-07": "Christmas Day (Orthodox)", - "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", "1966-04-11": "Easter Monday (Orthodox)", "1966-05-01": "Labour Day", "1966-05-24": "Saints Cyril and Methodius Day", @@ -187,7 +187,7 @@ "1966-12-08": "Saint Clement of Ohrid Day", "1967-01-01": "New Year's Day", "1967-01-07": "Christmas Day (Orthodox)", - "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", "1967-05-01": "Easter Monday (Orthodox); Labour Day", "1967-05-24": "Saints Cyril and Methodius Day", "1967-08-02": "Republic Day", @@ -195,7 +195,7 @@ "1967-10-11": "Day of Macedonian Uprising in 1941", "1967-10-23": "Day of the Macedonian Revolutionary Struggle", "1967-12-08": "Saint Clement of Ohrid Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-01-07": "Christmas Day (Orthodox)", "1968-04-22": "Easter Monday (Orthodox)", "1968-05-01": "Labour Day", @@ -205,7 +205,7 @@ "1968-10-11": "Day of Macedonian Uprising in 1941", "1968-10-23": "Day of the Macedonian Revolutionary Struggle", "1968-12-08": "Saint Clement of Ohrid Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", "1969-01-01": "New Year's Day", "1969-01-07": "Christmas Day (Orthodox)", "1969-04-14": "Easter Monday (Orthodox)", @@ -216,7 +216,7 @@ "1969-10-11": "Day of Macedonian Uprising in 1941", "1969-10-23": "Day of the Macedonian Revolutionary Struggle", "1969-12-08": "Saint Clement of Ohrid Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1970-01-01": "New Year's Day", "1970-01-07": "Christmas Day (Orthodox)", "1970-04-27": "Easter Monday (Orthodox)", @@ -226,7 +226,7 @@ "1970-09-08": "Independence Day", "1970-10-11": "Day of Macedonian Uprising in 1941", "1970-10-23": "Day of the Macedonian Revolutionary Struggle", - "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-08": "Saint Clement of Ohrid Day", "1971-01-01": "New Year's Day", "1971-01-07": "Christmas Day (Orthodox)", @@ -237,7 +237,7 @@ "1971-09-08": "Independence Day", "1971-10-11": "Day of Macedonian Uprising in 1941", "1971-10-23": "Day of the Macedonian Revolutionary Struggle", - "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-08": "Saint Clement of Ohrid Day", "1972-01-01": "New Year's Day", "1972-01-07": "Christmas Day (Orthodox)", @@ -248,7 +248,7 @@ "1972-09-08": "Independence Day", "1972-10-11": "Day of Macedonian Uprising in 1941", "1972-10-23": "Day of the Macedonian Revolutionary Struggle", - "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1972-12-08": "Saint Clement of Ohrid Day", "1973-01-01": "New Year's Day", "1973-01-07": "Christmas Day (Orthodox)", @@ -259,7 +259,7 @@ "1973-09-08": "Independence Day", "1973-10-11": "Day of Macedonian Uprising in 1941", "1973-10-23": "Day of the Macedonian Revolutionary Struggle", - "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", "1973-12-08": "Saint Clement of Ohrid Day", "1974-01-01": "New Year's Day", "1974-01-07": "Christmas Day (Orthodox)", @@ -269,7 +269,7 @@ "1974-08-02": "Republic Day", "1974-09-08": "Independence Day", "1974-10-11": "Day of Macedonian Uprising in 1941", - "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", "1974-10-23": "Day of the Macedonian Revolutionary Struggle", "1974-12-08": "Saint Clement of Ohrid Day", "1975-01-01": "New Year's Day", @@ -279,7 +279,7 @@ "1975-05-24": "Saints Cyril and Methodius Day", "1975-08-02": "Republic Day", "1975-09-08": "Independence Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", "1975-10-11": "Day of Macedonian Uprising in 1941", "1975-10-23": "Day of the Macedonian Revolutionary Struggle", "1975-12-08": "Saint Clement of Ohrid Day", @@ -290,7 +290,7 @@ "1976-05-24": "Saints Cyril and Methodius Day", "1976-08-02": "Republic Day", "1976-09-08": "Independence Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", "1976-10-11": "Day of Macedonian Uprising in 1941", "1976-10-23": "Day of the Macedonian Revolutionary Struggle", "1976-12-08": "Saint Clement of Ohrid Day", @@ -301,7 +301,7 @@ "1977-05-24": "Saints Cyril and Methodius Day", "1977-08-02": "Republic Day", "1977-09-08": "Independence Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", "1977-10-11": "Day of Macedonian Uprising in 1941", "1977-10-23": "Day of the Macedonian Revolutionary Struggle", "1977-12-08": "Saint Clement of Ohrid Day", @@ -310,7 +310,7 @@ "1978-05-01": "Easter Monday (Orthodox); Labour Day", "1978-05-24": "Saints Cyril and Methodius Day", "1978-08-02": "Republic Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", "1978-09-08": "Independence Day", "1978-10-11": "Day of Macedonian Uprising in 1941", "1978-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -321,7 +321,7 @@ "1979-05-01": "Labour Day", "1979-05-24": "Saints Cyril and Methodius Day", "1979-08-02": "Republic Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", "1979-09-08": "Independence Day", "1979-10-11": "Day of Macedonian Uprising in 1941", "1979-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -332,7 +332,7 @@ "1980-05-01": "Labour Day", "1980-05-24": "Saints Cyril and Methodius Day", "1980-08-02": "Republic Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", "1980-09-08": "Independence Day", "1980-10-11": "Day of Macedonian Uprising in 1941", "1980-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -342,7 +342,7 @@ "1981-04-27": "Easter Monday (Orthodox)", "1981-05-01": "Labour Day", "1981-05-24": "Saints Cyril and Methodius Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", "1981-08-02": "Republic Day", "1981-09-08": "Independence Day", "1981-10-11": "Day of Macedonian Uprising in 1941", @@ -353,7 +353,7 @@ "1982-04-19": "Easter Monday (Orthodox)", "1982-05-01": "Labour Day", "1982-05-24": "Saints Cyril and Methodius Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", "1982-08-02": "Republic Day", "1982-09-08": "Independence Day", "1982-10-11": "Day of Macedonian Uprising in 1941", @@ -364,7 +364,7 @@ "1983-05-01": "Labour Day", "1983-05-09": "Easter Monday (Orthodox)", "1983-05-24": "Saints Cyril and Methodius Day", - "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", "1983-08-02": "Republic Day", "1983-09-08": "Independence Day", "1983-10-11": "Day of Macedonian Uprising in 1941", @@ -375,7 +375,7 @@ "1984-04-23": "Easter Monday (Orthodox)", "1984-05-01": "Labour Day", "1984-05-24": "Saints Cyril and Methodius Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", "1984-08-02": "Republic Day", "1984-09-08": "Independence Day", "1984-10-11": "Day of Macedonian Uprising in 1941", @@ -386,7 +386,7 @@ "1985-04-15": "Easter Monday (Orthodox)", "1985-05-01": "Labour Day", "1985-05-24": "Saints Cyril and Methodius Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", "1985-08-02": "Republic Day", "1985-09-08": "Independence Day", "1985-10-11": "Day of Macedonian Uprising in 1941", @@ -397,7 +397,7 @@ "1986-05-01": "Labour Day", "1986-05-05": "Easter Monday (Orthodox)", "1986-05-24": "Saints Cyril and Methodius Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", "1986-08-02": "Republic Day", "1986-09-08": "Independence Day", "1986-10-11": "Day of Macedonian Uprising in 1941", @@ -408,7 +408,7 @@ "1987-04-20": "Easter Monday (Orthodox)", "1987-05-01": "Labour Day", "1987-05-24": "Saints Cyril and Methodius Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", "1987-08-02": "Republic Day", "1987-09-08": "Independence Day", "1987-10-11": "Day of Macedonian Uprising in 1941", @@ -418,7 +418,7 @@ "1988-01-07": "Christmas Day (Orthodox)", "1988-04-11": "Easter Monday (Orthodox)", "1988-05-01": "Labour Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", "1988-05-24": "Saints Cyril and Methodius Day", "1988-08-02": "Republic Day", "1988-09-08": "Independence Day", @@ -428,7 +428,7 @@ "1989-01-01": "New Year's Day", "1989-01-07": "Christmas Day (Orthodox)", "1989-05-01": "Easter Monday (Orthodox); Labour Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", "1989-05-24": "Saints Cyril and Methodius Day", "1989-08-02": "Republic Day", "1989-09-08": "Independence Day", @@ -438,7 +438,7 @@ "1990-01-01": "New Year's Day", "1990-01-07": "Christmas Day (Orthodox)", "1990-04-16": "Easter Monday (Orthodox)", - "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-05-24": "Saints Cyril and Methodius Day", "1990-08-02": "Republic Day", @@ -449,7 +449,7 @@ "1991-01-01": "New Year's Day", "1991-01-07": "Christmas Day (Orthodox)", "1991-04-08": "Easter Monday (Orthodox)", - "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "Labour Day", "1991-05-24": "Saints Cyril and Methodius Day", "1991-08-02": "Republic Day", @@ -459,7 +459,7 @@ "1991-12-08": "Saint Clement of Ohrid Day", "1992-01-01": "New Year's Day", "1992-01-07": "Christmas Day (Orthodox)", - "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-27": "Easter Monday (Orthodox)", "1992-05-01": "Labour Day", "1992-05-24": "Saints Cyril and Methodius Day", @@ -470,7 +470,7 @@ "1992-12-08": "Saint Clement of Ohrid Day", "1993-01-01": "New Year's Day", "1993-01-07": "Christmas Day (Orthodox)", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-19": "Easter Monday (Orthodox)", "1993-05-01": "Labour Day", "1993-05-24": "Saints Cyril and Methodius Day", @@ -481,7 +481,7 @@ "1993-12-08": "Saint Clement of Ohrid Day", "1994-01-01": "New Year's Day", "1994-01-07": "Christmas Day (Orthodox)", - "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-05-01": "Labour Day", "1994-05-02": "Easter Monday (Orthodox)", "1994-05-24": "Saints Cyril and Methodius Day", @@ -492,7 +492,7 @@ "1994-12-08": "Saint Clement of Ohrid Day", "1995-01-01": "New Year's Day", "1995-01-07": "Christmas Day (Orthodox)", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-04-24": "Easter Monday (Orthodox)", "1995-05-01": "Labour Day", "1995-05-24": "Saints Cyril and Methodius Day", @@ -503,7 +503,7 @@ "1995-12-08": "Saint Clement of Ohrid Day", "1996-01-01": "New Year's Day", "1996-01-07": "Christmas Day (Orthodox)", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-04-15": "Easter Monday (Orthodox)", "1996-05-01": "Labour Day", "1996-05-24": "Saints Cyril and Methodius Day", @@ -514,7 +514,7 @@ "1996-12-08": "Saint Clement of Ohrid Day", "1997-01-01": "New Year's Day", "1997-01-07": "Christmas Day (Orthodox)", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-04-28": "Easter Monday (Orthodox)", "1997-05-01": "Labour Day", "1997-05-24": "Saints Cyril and Methodius Day", @@ -525,7 +525,7 @@ "1997-12-08": "Saint Clement of Ohrid Day", "1998-01-01": "New Year's Day", "1998-01-07": "Christmas Day (Orthodox)", - "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", "1998-04-20": "Easter Monday (Orthodox)", "1998-05-01": "Labour Day", "1998-05-24": "Saints Cyril and Methodius Day", @@ -536,7 +536,7 @@ "1998-12-08": "Saint Clement of Ohrid Day", "1999-01-01": "New Year's Day", "1999-01-07": "Christmas Day (Orthodox)", - "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-04-12": "Easter Monday (Orthodox)", "1999-05-01": "Labour Day", "1999-05-24": "Saints Cyril and Methodius Day", @@ -547,7 +547,7 @@ "1999-12-08": "Saint Clement of Ohrid Day", "2000-01-01": "New Year's Day", "2000-01-07": "Christmas Day (Orthodox)", - "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-05-01": "Easter Monday (Orthodox); Labour Day", "2000-05-24": "Saints Cyril and Methodius Day", "2000-08-02": "Republic Day", @@ -555,7 +555,7 @@ "2000-10-11": "Day of Macedonian Uprising in 1941", "2000-10-23": "Day of the Macedonian Revolutionary Struggle", "2000-12-08": "Saint Clement of Ohrid Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-07": "Christmas Day (Orthodox)", "2001-04-16": "Easter Monday (Orthodox)", @@ -566,7 +566,7 @@ "2001-10-11": "Day of Macedonian Uprising in 1941", "2001-10-23": "Day of the Macedonian Revolutionary Struggle", "2001-12-08": "Saint Clement of Ohrid Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", "2002-01-01": "New Year's Day", "2002-01-07": "Christmas Day (Orthodox)", "2002-05-01": "Labour Day", @@ -576,7 +576,7 @@ "2002-09-08": "Independence Day", "2002-10-11": "Day of Macedonian Uprising in 1941", "2002-10-23": "Day of the Macedonian Revolutionary Struggle", - "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", "2002-12-08": "Saint Clement of Ohrid Day", "2003-01-01": "New Year's Day", "2003-01-07": "Christmas Day (Orthodox)", @@ -587,7 +587,7 @@ "2003-09-08": "Independence Day", "2003-10-11": "Day of Macedonian Uprising in 1941", "2003-10-23": "Day of the Macedonian Revolutionary Struggle", - "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", "2003-12-08": "Saint Clement of Ohrid Day", "2004-01-01": "New Year's Day", "2004-01-07": "Christmas Day (Orthodox)", @@ -598,7 +598,7 @@ "2004-09-08": "Independence Day", "2004-10-11": "Day of Macedonian Uprising in 1941", "2004-10-23": "Day of the Macedonian Revolutionary Struggle", - "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", "2004-12-08": "Saint Clement of Ohrid Day", "2005-01-01": "New Year's Day", "2005-01-07": "Christmas Day (Orthodox)", @@ -609,7 +609,7 @@ "2005-09-08": "Independence Day", "2005-10-11": "Day of Macedonian Uprising in 1941", "2005-10-23": "Day of the Macedonian Revolutionary Struggle", - "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", "2005-12-08": "Saint Clement of Ohrid Day", "2006-01-01": "New Year's Day", "2006-01-07": "Christmas Day (Orthodox)", @@ -619,7 +619,7 @@ "2006-08-02": "Republic Day", "2006-09-08": "Independence Day", "2006-10-11": "Day of Macedonian Uprising in 1941", - "2006-10-23": "Day of the Macedonian Revolutionary Struggle; Eid al-Fitr* (*estimated)", + "2006-10-23": "Day of the Macedonian Revolutionary Struggle; Eid al-Fitr (estimated)", "2006-12-08": "Saint Clement of Ohrid Day", "2007-01-01": "New Year's Day", "2007-01-07": "Christmas Day (Orthodox)", @@ -629,7 +629,7 @@ "2007-08-02": "Republic Day", "2007-09-08": "Independence Day", "2007-10-11": "Day of Macedonian Uprising in 1941", - "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", "2007-10-23": "Day of the Macedonian Revolutionary Struggle", "2007-12-08": "Saint Clement of Ohrid Day", "2008-01-01": "New Year's Day", @@ -639,7 +639,7 @@ "2008-05-24": "Saints Cyril and Methodius Day", "2008-08-02": "Republic Day", "2008-09-08": "Independence Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", "2008-10-11": "Day of Macedonian Uprising in 1941", "2008-10-23": "Day of the Macedonian Revolutionary Struggle", "2008-12-08": "Saint Clement of Ohrid Day", @@ -650,7 +650,7 @@ "2009-05-24": "Saints Cyril and Methodius Day", "2009-08-02": "Republic Day", "2009-09-08": "Independence Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", "2009-10-11": "Day of Macedonian Uprising in 1941", "2009-10-23": "Day of the Macedonian Revolutionary Struggle", "2009-12-08": "Saint Clement of Ohrid Day", @@ -661,7 +661,7 @@ "2010-05-24": "Saints Cyril and Methodius Day", "2010-08-02": "Republic Day", "2010-09-08": "Independence Day", - "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", "2010-10-11": "Day of Macedonian Uprising in 1941", "2010-10-23": "Day of the Macedonian Revolutionary Struggle", "2010-12-08": "Saint Clement of Ohrid Day", @@ -671,7 +671,7 @@ "2011-05-01": "Labour Day", "2011-05-24": "Saints Cyril and Methodius Day", "2011-08-02": "Republic Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", "2011-09-08": "Independence Day", "2011-10-11": "Day of Macedonian Uprising in 1941", "2011-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -682,7 +682,7 @@ "2012-05-01": "Labour Day", "2012-05-24": "Saints Cyril and Methodius Day", "2012-08-02": "Republic Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", "2012-09-08": "Independence Day", "2012-10-11": "Day of Macedonian Uprising in 1941", "2012-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -693,7 +693,7 @@ "2013-05-06": "Easter Monday (Orthodox)", "2013-05-24": "Saints Cyril and Methodius Day", "2013-08-02": "Republic Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", "2013-09-08": "Independence Day", "2013-10-11": "Day of Macedonian Uprising in 1941", "2013-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -703,7 +703,7 @@ "2014-04-21": "Easter Monday (Orthodox)", "2014-05-01": "Labour Day", "2014-05-24": "Saints Cyril and Methodius Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", "2014-08-02": "Republic Day", "2014-09-08": "Independence Day", "2014-10-11": "Day of Macedonian Uprising in 1941", @@ -714,7 +714,7 @@ "2015-04-13": "Easter Monday (Orthodox)", "2015-05-01": "Labour Day", "2015-05-24": "Saints Cyril and Methodius Day", - "2015-07-17": "Eid al-Fitr* (*estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", "2015-08-02": "Republic Day", "2015-09-08": "Independence Day", "2015-10-11": "Day of Macedonian Uprising in 1941", @@ -725,7 +725,7 @@ "2016-05-01": "Labour Day", "2016-05-02": "Easter Monday (Orthodox)", "2016-05-24": "Saints Cyril and Methodius Day", - "2016-07-06": "Eid al-Fitr* (*estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", "2016-08-02": "Republic Day", "2016-09-08": "Independence Day", "2016-10-11": "Day of Macedonian Uprising in 1941", @@ -736,7 +736,7 @@ "2017-04-17": "Easter Monday (Orthodox)", "2017-05-01": "Labour Day", "2017-05-24": "Saints Cyril and Methodius Day", - "2017-06-25": "Eid al-Fitr* (*estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", "2017-08-02": "Republic Day", "2017-09-08": "Independence Day", "2017-10-11": "Day of Macedonian Uprising in 1941", @@ -747,7 +747,7 @@ "2018-04-09": "Easter Monday (Orthodox)", "2018-05-01": "Labour Day", "2018-05-24": "Saints Cyril and Methodius Day", - "2018-06-15": "Eid al-Fitr* (*estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", "2018-08-02": "Republic Day", "2018-09-08": "Independence Day", "2018-10-11": "Day of Macedonian Uprising in 1941", @@ -758,7 +758,7 @@ "2019-04-29": "Easter Monday (Orthodox)", "2019-05-01": "Labour Day", "2019-05-24": "Saints Cyril and Methodius Day", - "2019-06-04": "Eid al-Fitr* (*estimated)", + "2019-06-04": "Eid al-Fitr (estimated)", "2019-08-02": "Republic Day", "2019-09-08": "Independence Day", "2019-10-11": "Day of Macedonian Uprising in 1941", @@ -768,7 +768,7 @@ "2020-01-07": "Christmas Day (Orthodox)", "2020-04-20": "Easter Monday (Orthodox)", "2020-05-01": "Labour Day", - "2020-05-24": "Eid al-Fitr* (*estimated); Saints Cyril and Methodius Day", + "2020-05-24": "Eid al-Fitr (estimated); Saints Cyril and Methodius Day", "2020-08-02": "Republic Day", "2020-09-08": "Independence Day", "2020-10-11": "Day of Macedonian Uprising in 1941", @@ -778,7 +778,7 @@ "2021-01-07": "Christmas Day (Orthodox)", "2021-05-01": "Labour Day", "2021-05-03": "Easter Monday (Orthodox)", - "2021-05-13": "Eid al-Fitr* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", "2021-05-24": "Saints Cyril and Methodius Day", "2021-08-02": "Republic Day", "2021-09-08": "Independence Day", @@ -789,7 +789,7 @@ "2022-01-07": "Christmas Day (Orthodox)", "2022-04-25": "Easter Monday (Orthodox)", "2022-05-01": "Labour Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", "2022-05-24": "Saints Cyril and Methodius Day", "2022-08-02": "Republic Day", "2022-09-08": "Independence Day", @@ -799,7 +799,7 @@ "2023-01-01": "New Year's Day", "2023-01-07": "Christmas Day (Orthodox)", "2023-04-17": "Easter Monday (Orthodox)", - "2023-04-21": "Eid al-Fitr* (*estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", "2023-05-01": "Labour Day", "2023-05-24": "Saints Cyril and Methodius Day", "2023-08-02": "Republic Day", @@ -809,7 +809,7 @@ "2023-12-08": "Saint Clement of Ohrid Day", "2024-01-01": "New Year's Day", "2024-01-07": "Christmas Day (Orthodox)", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-06": "Easter Monday (Orthodox)", "2024-05-24": "Saints Cyril and Methodius Day", @@ -820,7 +820,7 @@ "2024-12-08": "Saint Clement of Ohrid Day", "2025-01-01": "New Year's Day", "2025-01-07": "Christmas Day (Orthodox)", - "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", "2025-04-21": "Easter Monday (Orthodox)", "2025-05-01": "Labour Day", "2025-05-24": "Saints Cyril and Methodius Day", @@ -831,7 +831,7 @@ "2025-12-08": "Saint Clement of Ohrid Day", "2026-01-01": "New Year's Day", "2026-01-07": "Christmas Day (Orthodox)", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-13": "Easter Monday (Orthodox)", "2026-05-01": "Labour Day", "2026-05-24": "Saints Cyril and Methodius Day", @@ -842,7 +842,7 @@ "2026-12-08": "Saint Clement of Ohrid Day", "2027-01-01": "New Year's Day", "2027-01-07": "Christmas Day (Orthodox)", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-05-01": "Labour Day", "2027-05-03": "Easter Monday (Orthodox)", "2027-05-24": "Saints Cyril and Methodius Day", @@ -853,7 +853,7 @@ "2027-12-08": "Saint Clement of Ohrid Day", "2028-01-01": "New Year's Day", "2028-01-07": "Christmas Day (Orthodox)", - "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-04-17": "Easter Monday (Orthodox)", "2028-05-01": "Labour Day", "2028-05-24": "Saints Cyril and Methodius Day", @@ -864,7 +864,7 @@ "2028-12-08": "Saint Clement of Ohrid Day", "2029-01-01": "New Year's Day", "2029-01-07": "Christmas Day (Orthodox)", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-04-09": "Easter Monday (Orthodox)", "2029-05-01": "Labour Day", "2029-05-24": "Saints Cyril and Methodius Day", @@ -875,7 +875,7 @@ "2029-12-08": "Saint Clement of Ohrid Day", "2030-01-01": "New Year's Day", "2030-01-07": "Christmas Day (Orthodox)", - "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", "2030-04-29": "Easter Monday (Orthodox)", "2030-05-01": "Labour Day", "2030-05-24": "Saints Cyril and Methodius Day", @@ -886,7 +886,7 @@ "2030-12-08": "Saint Clement of Ohrid Day", "2031-01-01": "New Year's Day", "2031-01-07": "Christmas Day (Orthodox)", - "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", "2031-04-14": "Easter Monday (Orthodox)", "2031-05-01": "Labour Day", "2031-05-24": "Saints Cyril and Methodius Day", @@ -897,7 +897,7 @@ "2031-12-08": "Saint Clement of Ohrid Day", "2032-01-01": "New Year's Day", "2032-01-07": "Christmas Day (Orthodox)", - "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", "2032-05-01": "Labour Day", "2032-05-03": "Easter Monday (Orthodox)", "2032-05-24": "Saints Cyril and Methodius Day", @@ -907,7 +907,7 @@ "2032-10-23": "Day of the Macedonian Revolutionary Struggle", "2032-12-08": "Saint Clement of Ohrid Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", "2033-01-07": "Christmas Day (Orthodox)", "2033-04-25": "Easter Monday (Orthodox)", "2033-05-01": "Labour Day", @@ -917,7 +917,7 @@ "2033-10-11": "Day of Macedonian Uprising in 1941", "2033-10-23": "Day of the Macedonian Revolutionary Struggle", "2033-12-08": "Saint Clement of Ohrid Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2034-01-01": "New Year's Day", "2034-01-07": "Christmas Day (Orthodox)", "2034-04-10": "Easter Monday (Orthodox)", @@ -928,7 +928,7 @@ "2034-10-11": "Day of Macedonian Uprising in 1941", "2034-10-23": "Day of the Macedonian Revolutionary Struggle", "2034-12-08": "Saint Clement of Ohrid Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2035-01-01": "New Year's Day", "2035-01-07": "Christmas Day (Orthodox)", "2035-04-30": "Easter Monday (Orthodox)", @@ -938,7 +938,7 @@ "2035-09-08": "Independence Day", "2035-10-11": "Day of Macedonian Uprising in 1941", "2035-10-23": "Day of the Macedonian Revolutionary Struggle", - "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-08": "Saint Clement of Ohrid Day", "2036-01-01": "New Year's Day", "2036-01-07": "Christmas Day (Orthodox)", @@ -949,7 +949,7 @@ "2036-09-08": "Independence Day", "2036-10-11": "Day of Macedonian Uprising in 1941", "2036-10-23": "Day of the Macedonian Revolutionary Struggle", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-12-08": "Saint Clement of Ohrid Day", "2037-01-01": "New Year's Day", "2037-01-07": "Christmas Day (Orthodox)", @@ -960,7 +960,7 @@ "2037-09-08": "Independence Day", "2037-10-11": "Day of Macedonian Uprising in 1941", "2037-10-23": "Day of the Macedonian Revolutionary Struggle", - "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", "2037-12-08": "Saint Clement of Ohrid Day", "2038-01-01": "New Year's Day", "2038-01-07": "Christmas Day (Orthodox)", @@ -971,7 +971,7 @@ "2038-09-08": "Independence Day", "2038-10-11": "Day of Macedonian Uprising in 1941", "2038-10-23": "Day of the Macedonian Revolutionary Struggle", - "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-08": "Saint Clement of Ohrid Day", "2039-01-01": "New Year's Day", "2039-01-07": "Christmas Day (Orthodox)", @@ -981,7 +981,7 @@ "2039-08-02": "Republic Day", "2039-09-08": "Independence Day", "2039-10-11": "Day of Macedonian Uprising in 1941", - "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-10-23": "Day of the Macedonian Revolutionary Struggle", "2039-12-08": "Saint Clement of Ohrid Day", "2040-01-01": "New Year's Day", @@ -991,7 +991,7 @@ "2040-05-24": "Saints Cyril and Methodius Day", "2040-08-02": "Republic Day", "2040-09-08": "Independence Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", "2040-10-11": "Day of Macedonian Uprising in 1941", "2040-10-23": "Day of the Macedonian Revolutionary Struggle", "2040-12-08": "Saint Clement of Ohrid Day", @@ -1002,7 +1002,7 @@ "2041-05-24": "Saints Cyril and Methodius Day", "2041-08-02": "Republic Day", "2041-09-08": "Independence Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", "2041-10-11": "Day of Macedonian Uprising in 1941", "2041-10-23": "Day of the Macedonian Revolutionary Struggle", "2041-12-08": "Saint Clement of Ohrid Day", @@ -1013,7 +1013,7 @@ "2042-05-24": "Saints Cyril and Methodius Day", "2042-08-02": "Republic Day", "2042-09-08": "Independence Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", "2042-10-11": "Day of Macedonian Uprising in 1941", "2042-10-23": "Day of the Macedonian Revolutionary Struggle", "2042-12-08": "Saint Clement of Ohrid Day", @@ -1023,7 +1023,7 @@ "2043-05-04": "Easter Monday (Orthodox)", "2043-05-24": "Saints Cyril and Methodius Day", "2043-08-02": "Republic Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", "2043-09-08": "Independence Day", "2043-10-11": "Day of Macedonian Uprising in 1941", "2043-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -1034,7 +1034,7 @@ "2044-05-01": "Labour Day", "2044-05-24": "Saints Cyril and Methodius Day", "2044-08-02": "Republic Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", "2044-09-08": "Independence Day", "2044-10-11": "Day of Macedonian Uprising in 1941", "2044-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -1045,7 +1045,7 @@ "2045-05-01": "Labour Day", "2045-05-24": "Saints Cyril and Methodius Day", "2045-08-02": "Republic Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", "2045-09-08": "Independence Day", "2045-10-11": "Day of Macedonian Uprising in 1941", "2045-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -1056,7 +1056,7 @@ "2046-05-01": "Labour Day", "2046-05-24": "Saints Cyril and Methodius Day", "2046-08-02": "Republic Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-09-08": "Independence Day", "2046-10-11": "Day of Macedonian Uprising in 1941", "2046-10-23": "Day of the Macedonian Revolutionary Struggle", @@ -1066,7 +1066,7 @@ "2047-04-22": "Easter Monday (Orthodox)", "2047-05-01": "Labour Day", "2047-05-24": "Saints Cyril and Methodius Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-08-02": "Republic Day", "2047-09-08": "Independence Day", "2047-10-11": "Day of Macedonian Uprising in 1941", @@ -1077,7 +1077,7 @@ "2048-04-06": "Easter Monday (Orthodox)", "2048-05-01": "Labour Day", "2048-05-24": "Saints Cyril and Methodius Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", "2048-08-02": "Republic Day", "2048-09-08": "Independence Day", "2048-10-11": "Day of Macedonian Uprising in 1941", @@ -1088,7 +1088,7 @@ "2049-04-26": "Easter Monday (Orthodox)", "2049-05-01": "Labour Day", "2049-05-24": "Saints Cyril and Methodius Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", "2049-08-02": "Republic Day", "2049-09-08": "Independence Day", "2049-10-11": "Day of Macedonian Uprising in 1941", @@ -1099,7 +1099,7 @@ "2050-04-18": "Easter Monday (Orthodox)", "2050-05-01": "Labour Day", "2050-05-24": "Saints Cyril and Methodius Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-02": "Republic Day", "2050-09-08": "Independence Day", "2050-10-11": "Day of Macedonian Uprising in 1941", diff --git a/snapshots/countries/MV_COMMON.json b/snapshots/countries/MV_COMMON.json index f87d821d8..4ab8b2f0a 100644 --- a/snapshots/countries/MV_COMMON.json +++ b/snapshots/countries/MV_COMMON.json @@ -1,1845 +1,1845 @@ { - "1950-01-01": "Mawlid al-Nabi* (*estimated); New Year's Day", - "1950-01-20": "The Day Maldives Embraced Islam* (*estimated)", + "1950-01-01": "Mawlid al-Nabi (estimated); New Year's Day", + "1950-01-20": "The Day Maldives Embraced Islam (estimated)", "1950-05-01": "Labor Day", - "1950-06-17": "Beginning of Ramadan* (*estimated)", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr* (*estimated)", - "1950-07-18": "Eid al-Fitr* (*estimated)", + "1950-06-17": "Beginning of Ramadan (estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr (estimated)", + "1950-07-18": "Eid al-Fitr (estimated)", "1950-07-26": "Independence Day", - "1950-09-22": "Hajj Day* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha* (*estimated)", - "1950-09-25": "Eid al-Adha* (*estimated)", - "1950-09-26": "Eid al-Adha* (*estimated)", - "1950-10-13": "Islamic New Year* (*estimated)", + "1950-09-22": "Hajj Day (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha (estimated)", + "1950-09-25": "Eid al-Adha (estimated)", + "1950-09-26": "Eid al-Adha (estimated)", + "1950-10-13": "Islamic New Year (estimated)", "1950-11-03": "Victory Day", "1950-11-11": "Republic Day", - "1950-12-11": "National Day* (*estimated)", - "1950-12-22": "Mawlid al-Nabi* (*estimated)", + "1950-12-11": "National Day (estimated)", + "1950-12-22": "Mawlid al-Nabi (estimated)", "1951-01-01": "New Year's Day", - "1951-01-10": "The Day Maldives Embraced Islam* (*estimated)", + "1951-01-10": "The Day Maldives Embraced Islam (estimated)", "1951-05-01": "Labor Day", - "1951-06-06": "Beginning of Ramadan* (*estimated)", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-07-07": "Eid al-Fitr* (*estimated)", - "1951-07-08": "Eid al-Fitr* (*estimated)", + "1951-06-06": "Beginning of Ramadan (estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Eid al-Fitr (estimated)", + "1951-07-08": "Eid al-Fitr (estimated)", "1951-07-26": "Independence Day", - "1951-09-11": "Hajj Day* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha* (*estimated)", - "1951-09-14": "Eid al-Adha* (*estimated)", - "1951-09-15": "Eid al-Adha* (*estimated)", - "1951-10-02": "Islamic New Year* (*estimated)", + "1951-09-11": "Hajj Day (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha (estimated)", + "1951-09-14": "Eid al-Adha (estimated)", + "1951-09-15": "Eid al-Adha (estimated)", + "1951-10-02": "Islamic New Year (estimated)", "1951-11-03": "Victory Day", "1951-11-11": "Republic Day", - "1951-11-30": "National Day* (*estimated)", - "1951-12-11": "Mawlid al-Nabi* (*estimated)", - "1951-12-30": "The Day Maldives Embraced Islam* (*estimated)", + "1951-11-30": "National Day (estimated)", + "1951-12-11": "Mawlid al-Nabi (estimated)", + "1951-12-30": "The Day Maldives Embraced Islam (estimated)", "1952-01-01": "New Year's Day", "1952-05-01": "Labor Day", - "1952-05-25": "Beginning of Ramadan* (*estimated)", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-06-24": "Eid al-Fitr* (*estimated)", - "1952-06-25": "Eid al-Fitr* (*estimated)", + "1952-05-25": "Beginning of Ramadan (estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr (estimated)", + "1952-06-25": "Eid al-Fitr (estimated)", "1952-07-26": "Independence Day", - "1952-08-30": "Hajj Day* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha* (*estimated)", - "1952-09-02": "Eid al-Adha* (*estimated)", - "1952-09-03": "Eid al-Adha* (*estimated)", - "1952-09-21": "Islamic New Year* (*estimated)", + "1952-08-30": "Hajj Day (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha (estimated)", + "1952-09-02": "Eid al-Adha (estimated)", + "1952-09-03": "Eid al-Adha (estimated)", + "1952-09-21": "Islamic New Year (estimated)", "1952-11-03": "Victory Day", "1952-11-11": "Republic Day", - "1952-11-19": "National Day* (*estimated)", - "1952-11-30": "Mawlid al-Nabi* (*estimated)", - "1952-12-18": "The Day Maldives Embraced Islam* (*estimated)", + "1952-11-19": "National Day (estimated)", + "1952-11-30": "Mawlid al-Nabi (estimated)", + "1952-12-18": "The Day Maldives Embraced Islam (estimated)", "1953-01-01": "New Year's Day", "1953-05-01": "Labor Day", - "1953-05-14": "Beginning of Ramadan* (*estimated)", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr* (*estimated)", - "1953-06-15": "Eid al-Fitr* (*estimated)", + "1953-05-14": "Beginning of Ramadan (estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr (estimated)", + "1953-06-15": "Eid al-Fitr (estimated)", "1953-07-26": "Independence Day", - "1953-08-19": "Hajj Day* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha* (*estimated)", - "1953-08-22": "Eid al-Adha* (*estimated)", - "1953-08-23": "Eid al-Adha* (*estimated)", - "1953-09-10": "Islamic New Year* (*estimated)", + "1953-08-19": "Hajj Day (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha (estimated)", + "1953-08-22": "Eid al-Adha (estimated)", + "1953-08-23": "Eid al-Adha (estimated)", + "1953-09-10": "Islamic New Year (estimated)", "1953-11-03": "Victory Day", - "1953-11-08": "National Day* (*estimated)", + "1953-11-08": "National Day (estimated)", "1953-11-11": "Republic Day", - "1953-11-19": "Mawlid al-Nabi* (*estimated)", - "1953-12-07": "The Day Maldives Embraced Islam* (*estimated)", + "1953-11-19": "Mawlid al-Nabi (estimated)", + "1953-12-07": "The Day Maldives Embraced Islam (estimated)", "1954-01-01": "New Year's Day", "1954-05-01": "Labor Day", - "1954-05-04": "Beginning of Ramadan* (*estimated)", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr* (*estimated)", - "1954-06-04": "Eid al-Fitr* (*estimated)", + "1954-05-04": "Beginning of Ramadan (estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr (estimated)", + "1954-06-04": "Eid al-Fitr (estimated)", "1954-07-26": "Independence Day", - "1954-08-08": "Hajj Day* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha* (*estimated)", - "1954-08-11": "Eid al-Adha* (*estimated)", - "1954-08-12": "Eid al-Adha* (*estimated)", - "1954-08-30": "Islamic New Year* (*estimated)", - "1954-10-28": "National Day* (*estimated)", + "1954-08-08": "Hajj Day (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha (estimated)", + "1954-08-11": "Eid al-Adha (estimated)", + "1954-08-12": "Eid al-Adha (estimated)", + "1954-08-30": "Islamic New Year (estimated)", + "1954-10-28": "National Day (estimated)", "1954-11-03": "Victory Day", - "1954-11-08": "Mawlid al-Nabi* (*estimated)", + "1954-11-08": "Mawlid al-Nabi (estimated)", "1954-11-11": "Republic Day", - "1954-11-27": "The Day Maldives Embraced Islam* (*estimated)", + "1954-11-27": "The Day Maldives Embraced Islam (estimated)", "1955-01-01": "New Year's Day", - "1955-04-24": "Beginning of Ramadan* (*estimated)", + "1955-04-24": "Beginning of Ramadan (estimated)", "1955-05-01": "Labor Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr* (*estimated)", - "1955-05-25": "Eid al-Fitr* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr (estimated)", + "1955-05-25": "Eid al-Fitr (estimated)", "1955-07-26": "Independence Day", - "1955-07-29": "Hajj Day* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha* (*estimated)", - "1955-08-01": "Eid al-Adha* (*estimated)", - "1955-08-02": "Eid al-Adha* (*estimated)", - "1955-08-20": "Islamic New Year* (*estimated)", - "1955-10-18": "National Day* (*estimated)", - "1955-10-29": "Mawlid al-Nabi* (*estimated)", + "1955-07-29": "Hajj Day (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha (estimated)", + "1955-08-01": "Eid al-Adha (estimated)", + "1955-08-02": "Eid al-Adha (estimated)", + "1955-08-20": "Islamic New Year (estimated)", + "1955-10-18": "National Day (estimated)", + "1955-10-29": "Mawlid al-Nabi (estimated)", "1955-11-03": "Victory Day", "1955-11-11": "Republic Day", - "1955-11-17": "The Day Maldives Embraced Islam* (*estimated)", + "1955-11-17": "The Day Maldives Embraced Islam (estimated)", "1956-01-01": "New Year's Day", - "1956-04-12": "Beginning of Ramadan* (*estimated)", + "1956-04-12": "Beginning of Ramadan (estimated)", "1956-05-01": "Labor Day", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr* (*estimated)", - "1956-05-13": "Eid al-Fitr* (*estimated)", - "1956-07-18": "Hajj Day* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha* (*estimated)", - "1956-07-21": "Eid al-Adha* (*estimated)", - "1956-07-22": "Eid al-Adha* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr (estimated)", + "1956-05-13": "Eid al-Fitr (estimated)", + "1956-07-18": "Hajj Day (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha (estimated)", + "1956-07-21": "Eid al-Adha (estimated)", + "1956-07-22": "Eid al-Adha (estimated)", "1956-07-26": "Independence Day", - "1956-08-08": "Islamic New Year* (*estimated)", - "1956-10-06": "National Day* (*estimated)", - "1956-10-17": "Mawlid al-Nabi* (*estimated)", + "1956-08-08": "Islamic New Year (estimated)", + "1956-10-06": "National Day (estimated)", + "1956-10-17": "Mawlid al-Nabi (estimated)", "1956-11-03": "Victory Day", - "1956-11-04": "The Day Maldives Embraced Islam* (*estimated)", + "1956-11-04": "The Day Maldives Embraced Islam (estimated)", "1956-11-11": "Republic Day", "1957-01-01": "New Year's Day", - "1957-04-01": "Beginning of Ramadan* (*estimated)", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", - "1957-05-02": "Eid al-Fitr* (*estimated)", - "1957-05-03": "Eid al-Fitr* (*estimated)", - "1957-07-07": "Hajj Day* (*estimated)", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha* (*estimated)", - "1957-07-10": "Eid al-Adha* (*estimated)", - "1957-07-11": "Eid al-Adha* (*estimated)", + "1957-04-01": "Beginning of Ramadan (estimated)", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", + "1957-05-02": "Eid al-Fitr (estimated)", + "1957-05-03": "Eid al-Fitr (estimated)", + "1957-07-07": "Hajj Day (estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha (estimated)", + "1957-07-10": "Eid al-Adha (estimated)", + "1957-07-11": "Eid al-Adha (estimated)", "1957-07-26": "Independence Day", - "1957-07-28": "Islamic New Year* (*estimated)", - "1957-09-25": "National Day* (*estimated)", - "1957-10-06": "Mawlid al-Nabi* (*estimated)", - "1957-10-24": "The Day Maldives Embraced Islam* (*estimated)", + "1957-07-28": "Islamic New Year (estimated)", + "1957-09-25": "National Day (estimated)", + "1957-10-06": "Mawlid al-Nabi (estimated)", + "1957-10-24": "The Day Maldives Embraced Islam (estimated)", "1957-11-03": "Victory Day", "1957-11-11": "Republic Day", "1958-01-01": "New Year's Day", - "1958-03-21": "Beginning of Ramadan* (*estimated)", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr* (*estimated)", - "1958-04-22": "Eid al-Fitr* (*estimated)", + "1958-03-21": "Beginning of Ramadan (estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr (estimated)", + "1958-04-22": "Eid al-Fitr (estimated)", "1958-05-01": "Labor Day", - "1958-06-26": "Hajj Day* (*estimated)", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha* (*estimated)", - "1958-06-29": "Eid al-Adha* (*estimated)", - "1958-06-30": "Eid al-Adha* (*estimated)", - "1958-07-18": "Islamic New Year* (*estimated)", + "1958-06-26": "Hajj Day (estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha (estimated)", + "1958-06-29": "Eid al-Adha (estimated)", + "1958-06-30": "Eid al-Adha (estimated)", + "1958-07-18": "Islamic New Year (estimated)", "1958-07-26": "Independence Day", - "1958-09-15": "National Day* (*estimated)", - "1958-09-26": "Mawlid al-Nabi* (*estimated)", - "1958-10-15": "The Day Maldives Embraced Islam* (*estimated)", + "1958-09-15": "National Day (estimated)", + "1958-09-26": "Mawlid al-Nabi (estimated)", + "1958-10-15": "The Day Maldives Embraced Islam (estimated)", "1958-11-03": "Victory Day", "1958-11-11": "Republic Day", "1959-01-01": "New Year's Day", - "1959-03-11": "Beginning of Ramadan* (*estimated)", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr* (*estimated)", - "1959-04-12": "Eid al-Fitr* (*estimated)", + "1959-03-11": "Beginning of Ramadan (estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr (estimated)", + "1959-04-12": "Eid al-Fitr (estimated)", "1959-05-01": "Labor Day", - "1959-06-16": "Hajj Day* (*estimated)", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha* (*estimated)", - "1959-06-19": "Eid al-Adha* (*estimated)", - "1959-06-20": "Eid al-Adha* (*estimated)", - "1959-07-07": "Islamic New Year* (*estimated)", + "1959-06-16": "Hajj Day (estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha (estimated)", + "1959-06-19": "Eid al-Adha (estimated)", + "1959-06-20": "Eid al-Adha (estimated)", + "1959-07-07": "Islamic New Year (estimated)", "1959-07-26": "Independence Day", - "1959-09-04": "National Day* (*estimated)", - "1959-09-15": "Mawlid al-Nabi* (*estimated)", - "1959-10-03": "The Day Maldives Embraced Islam* (*estimated)", + "1959-09-04": "National Day (estimated)", + "1959-09-15": "Mawlid al-Nabi (estimated)", + "1959-10-03": "The Day Maldives Embraced Islam (estimated)", "1959-11-03": "Victory Day", "1959-11-11": "Republic Day", "1960-01-01": "New Year's Day", - "1960-02-28": "Beginning of Ramadan* (*estimated)", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr* (*estimated)", - "1960-03-30": "Eid al-Fitr* (*estimated)", + "1960-02-28": "Beginning of Ramadan (estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr (estimated)", + "1960-03-30": "Eid al-Fitr (estimated)", "1960-05-01": "Labor Day", - "1960-06-03": "Hajj Day* (*estimated)", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha* (*estimated)", - "1960-06-06": "Eid al-Adha* (*estimated)", - "1960-06-07": "Eid al-Adha* (*estimated)", - "1960-06-25": "Islamic New Year* (*estimated)", + "1960-06-03": "Hajj Day (estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha (estimated)", + "1960-06-06": "Eid al-Adha (estimated)", + "1960-06-07": "Eid al-Adha (estimated)", + "1960-06-25": "Islamic New Year (estimated)", "1960-07-26": "Independence Day", - "1960-08-23": "National Day* (*estimated)", - "1960-09-03": "Mawlid al-Nabi* (*estimated)", - "1960-09-22": "The Day Maldives Embraced Islam* (*estimated)", + "1960-08-23": "National Day (estimated)", + "1960-09-03": "Mawlid al-Nabi (estimated)", + "1960-09-22": "The Day Maldives Embraced Islam (estimated)", "1960-11-03": "Victory Day", "1960-11-11": "Republic Day", "1961-01-01": "New Year's Day", - "1961-02-16": "Beginning of Ramadan* (*estimated)", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr* (*estimated)", - "1961-03-20": "Eid al-Fitr* (*estimated)", + "1961-02-16": "Beginning of Ramadan (estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr (estimated)", + "1961-03-20": "Eid al-Fitr (estimated)", "1961-05-01": "Labor Day", - "1961-05-24": "Hajj Day* (*estimated)", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha* (*estimated)", - "1961-05-27": "Eid al-Adha* (*estimated)", - "1961-05-28": "Eid al-Adha* (*estimated)", - "1961-06-14": "Islamic New Year* (*estimated)", + "1961-05-24": "Hajj Day (estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha (estimated)", + "1961-05-27": "Eid al-Adha (estimated)", + "1961-05-28": "Eid al-Adha (estimated)", + "1961-06-14": "Islamic New Year (estimated)", "1961-07-26": "Independence Day", - "1961-08-12": "National Day* (*estimated)", - "1961-08-23": "Mawlid al-Nabi* (*estimated)", - "1961-09-11": "The Day Maldives Embraced Islam* (*estimated)", + "1961-08-12": "National Day (estimated)", + "1961-08-23": "Mawlid al-Nabi (estimated)", + "1961-09-11": "The Day Maldives Embraced Islam (estimated)", "1961-11-03": "Victory Day", "1961-11-11": "Republic Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Beginning of Ramadan* (*estimated)", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr* (*estimated)", - "1962-03-09": "Eid al-Fitr* (*estimated)", + "1962-02-05": "Beginning of Ramadan (estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr (estimated)", + "1962-03-09": "Eid al-Fitr (estimated)", "1962-05-01": "Labor Day", - "1962-05-13": "Hajj Day* (*estimated)", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha* (*estimated)", - "1962-05-16": "Eid al-Adha* (*estimated)", - "1962-05-17": "Eid al-Adha* (*estimated)", - "1962-06-03": "Islamic New Year* (*estimated)", + "1962-05-13": "Hajj Day (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha (estimated)", + "1962-05-16": "Eid al-Adha (estimated)", + "1962-05-17": "Eid al-Adha (estimated)", + "1962-06-03": "Islamic New Year (estimated)", "1962-07-26": "Independence Day", - "1962-08-01": "National Day* (*estimated)", - "1962-08-12": "Mawlid al-Nabi* (*estimated)", - "1962-08-31": "The Day Maldives Embraced Islam* (*estimated)", + "1962-08-01": "National Day (estimated)", + "1962-08-12": "Mawlid al-Nabi (estimated)", + "1962-08-31": "The Day Maldives Embraced Islam (estimated)", "1962-11-03": "Victory Day", "1962-11-11": "Republic Day", "1963-01-01": "New Year's Day", - "1963-01-26": "Beginning of Ramadan* (*estimated)", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr* (*estimated)", - "1963-02-26": "Eid al-Fitr* (*estimated)", + "1963-01-26": "Beginning of Ramadan (estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr (estimated)", + "1963-02-26": "Eid al-Fitr (estimated)", "1963-05-01": "Labor Day", - "1963-05-02": "Hajj Day* (*estimated)", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha* (*estimated)", - "1963-05-05": "Eid al-Adha* (*estimated)", - "1963-05-06": "Eid al-Adha* (*estimated)", - "1963-05-24": "Islamic New Year* (*estimated)", - "1963-07-22": "National Day* (*estimated)", + "1963-05-02": "Hajj Day (estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha (estimated)", + "1963-05-05": "Eid al-Adha (estimated)", + "1963-05-06": "Eid al-Adha (estimated)", + "1963-05-24": "Islamic New Year (estimated)", + "1963-07-22": "National Day (estimated)", "1963-07-26": "Independence Day", - "1963-08-02": "Mawlid al-Nabi* (*estimated)", - "1963-08-20": "The Day Maldives Embraced Islam* (*estimated)", + "1963-08-02": "Mawlid al-Nabi (estimated)", + "1963-08-20": "The Day Maldives Embraced Islam (estimated)", "1963-11-03": "Victory Day", "1963-11-11": "Republic Day", "1964-01-01": "New Year's Day", - "1964-01-15": "Beginning of Ramadan* (*estimated)", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr* (*estimated)", - "1964-02-16": "Eid al-Fitr* (*estimated)", - "1964-04-21": "Hajj Day* (*estimated)", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha* (*estimated)", - "1964-04-24": "Eid al-Adha* (*estimated)", - "1964-04-25": "Eid al-Adha* (*estimated)", + "1964-01-15": "Beginning of Ramadan (estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr (estimated)", + "1964-02-16": "Eid al-Fitr (estimated)", + "1964-04-21": "Hajj Day (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha (estimated)", + "1964-04-24": "Eid al-Adha (estimated)", + "1964-04-25": "Eid al-Adha (estimated)", "1964-05-01": "Labor Day", - "1964-05-12": "Islamic New Year* (*estimated)", - "1964-07-10": "National Day* (*estimated)", - "1964-07-21": "Mawlid al-Nabi* (*estimated)", + "1964-05-12": "Islamic New Year (estimated)", + "1964-07-10": "National Day (estimated)", + "1964-07-21": "Mawlid al-Nabi (estimated)", "1964-07-26": "Independence Day", - "1964-08-09": "The Day Maldives Embraced Islam* (*estimated)", + "1964-08-09": "The Day Maldives Embraced Islam (estimated)", "1964-11-03": "Victory Day", "1964-11-11": "Republic Day", "1965-01-01": "New Year's Day", - "1965-01-03": "Beginning of Ramadan* (*estimated)", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-02-03": "Eid al-Fitr* (*estimated)", - "1965-02-04": "Eid al-Fitr* (*estimated)", - "1965-04-10": "Hajj Day* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha* (*estimated)", - "1965-04-13": "Eid al-Adha* (*estimated)", - "1965-04-14": "Eid al-Adha* (*estimated)", - "1965-05-01": "Islamic New Year* (*estimated); Labor Day", - "1965-06-29": "National Day* (*estimated)", - "1965-07-10": "Mawlid al-Nabi* (*estimated)", + "1965-01-03": "Beginning of Ramadan (estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-02-03": "Eid al-Fitr (estimated)", + "1965-02-04": "Eid al-Fitr (estimated)", + "1965-04-10": "Hajj Day (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha (estimated)", + "1965-04-13": "Eid al-Adha (estimated)", + "1965-04-14": "Eid al-Adha (estimated)", + "1965-05-01": "Islamic New Year (estimated); Labor Day", + "1965-06-29": "National Day (estimated)", + "1965-07-10": "Mawlid al-Nabi (estimated)", "1965-07-26": "Independence Day", - "1965-07-29": "The Day Maldives Embraced Islam* (*estimated)", + "1965-07-29": "The Day Maldives Embraced Islam (estimated)", "1965-11-03": "Victory Day", "1965-11-11": "Republic Day", - "1965-12-23": "Beginning of Ramadan* (*estimated)", + "1965-12-23": "Beginning of Ramadan (estimated)", "1966-01-01": "New Year's Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr* (*estimated)", - "1966-01-24": "Eid al-Fitr* (*estimated)", - "1966-03-31": "Hajj Day* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha* (*estimated)", - "1966-04-03": "Eid al-Adha* (*estimated)", - "1966-04-04": "Eid al-Adha* (*estimated)", - "1966-04-21": "Islamic New Year* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr (estimated)", + "1966-01-24": "Eid al-Fitr (estimated)", + "1966-03-31": "Hajj Day (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha (estimated)", + "1966-04-03": "Eid al-Adha (estimated)", + "1966-04-04": "Eid al-Adha (estimated)", + "1966-04-21": "Islamic New Year (estimated)", "1966-05-01": "Labor Day", - "1966-06-20": "National Day* (*estimated)", - "1966-07-01": "Mawlid al-Nabi* (*estimated)", - "1966-07-19": "The Day Maldives Embraced Islam* (*estimated)", + "1966-06-20": "National Day (estimated)", + "1966-07-01": "Mawlid al-Nabi (estimated)", + "1966-07-19": "The Day Maldives Embraced Islam (estimated)", "1966-07-26": "Independence Day", "1966-11-03": "Victory Day", "1966-11-11": "Republic Day", - "1966-12-13": "Beginning of Ramadan* (*estimated)", + "1966-12-13": "Beginning of Ramadan (estimated)", "1967-01-01": "New Year's Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr* (*estimated)", - "1967-01-14": "Eid al-Fitr* (*estimated)", - "1967-03-20": "Hajj Day* (*estimated)", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha* (*estimated)", - "1967-03-23": "Eid al-Adha* (*estimated)", - "1967-03-24": "Eid al-Adha* (*estimated)", - "1967-04-11": "Islamic New Year* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr (estimated)", + "1967-01-14": "Eid al-Fitr (estimated)", + "1967-03-20": "Hajj Day (estimated)", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha (estimated)", + "1967-03-23": "Eid al-Adha (estimated)", + "1967-03-24": "Eid al-Adha (estimated)", + "1967-04-11": "Islamic New Year (estimated)", "1967-05-01": "Labor Day", - "1967-06-08": "National Day* (*estimated)", - "1967-06-19": "Mawlid al-Nabi* (*estimated)", - "1967-07-08": "The Day Maldives Embraced Islam* (*estimated)", + "1967-06-08": "National Day (estimated)", + "1967-06-19": "Mawlid al-Nabi (estimated)", + "1967-07-08": "The Day Maldives Embraced Islam (estimated)", "1967-07-26": "Independence Day", "1967-11-03": "Victory Day", "1967-11-11": "Republic Day", - "1967-12-02": "Beginning of Ramadan* (*estimated)", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr* (*estimated)", - "1968-01-03": "Eid al-Fitr* (*estimated)", - "1968-03-08": "Hajj Day* (*estimated)", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha* (*estimated)", - "1968-03-11": "Eid al-Adha* (*estimated)", - "1968-03-12": "Eid al-Adha* (*estimated)", - "1968-03-30": "Islamic New Year* (*estimated)", + "1967-12-02": "Beginning of Ramadan (estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr (estimated)", + "1968-01-03": "Eid al-Fitr (estimated)", + "1968-03-08": "Hajj Day (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha (estimated)", + "1968-03-11": "Eid al-Adha (estimated)", + "1968-03-12": "Eid al-Adha (estimated)", + "1968-03-30": "Islamic New Year (estimated)", "1968-05-01": "Labor Day", - "1968-05-28": "National Day* (*estimated)", - "1968-06-08": "Mawlid al-Nabi* (*estimated)", - "1968-06-27": "The Day Maldives Embraced Islam* (*estimated)", + "1968-05-28": "National Day (estimated)", + "1968-06-08": "Mawlid al-Nabi (estimated)", + "1968-06-27": "The Day Maldives Embraced Islam (estimated)", "1968-07-26": "Independence Day", "1968-11-03": "Victory Day", "1968-11-11": "Republic Day", - "1968-11-21": "Beginning of Ramadan* (*estimated)", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr* (*estimated)", - "1968-12-23": "Eid al-Fitr* (*estimated)", + "1968-11-21": "Beginning of Ramadan (estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr (estimated)", + "1968-12-23": "Eid al-Fitr (estimated)", "1969-01-01": "New Year's Day", - "1969-02-26": "Hajj Day* (*estimated)", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha* (*estimated)", - "1969-03-01": "Eid al-Adha* (*estimated)", - "1969-03-02": "Eid al-Adha* (*estimated)", - "1969-03-19": "Islamic New Year* (*estimated)", + "1969-02-26": "Hajj Day (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha (estimated)", + "1969-03-01": "Eid al-Adha (estimated)", + "1969-03-02": "Eid al-Adha (estimated)", + "1969-03-19": "Islamic New Year (estimated)", "1969-05-01": "Labor Day", - "1969-05-17": "National Day* (*estimated)", - "1969-05-28": "Mawlid al-Nabi* (*estimated)", - "1969-06-16": "The Day Maldives Embraced Islam* (*estimated)", + "1969-05-17": "National Day (estimated)", + "1969-05-28": "Mawlid al-Nabi (estimated)", + "1969-06-16": "The Day Maldives Embraced Islam (estimated)", "1969-07-26": "Independence Day", "1969-11-03": "Victory Day", - "1969-11-10": "Beginning of Ramadan* (*estimated)", + "1969-11-10": "Beginning of Ramadan (estimated)", "1969-11-11": "Republic Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr* (*estimated)", - "1969-12-12": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr (estimated)", + "1969-12-12": "Eid al-Fitr (estimated)", "1970-01-01": "New Year's Day", - "1970-02-15": "Hajj Day* (*estimated)", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha* (*estimated)", - "1970-02-18": "Eid al-Adha* (*estimated)", - "1970-02-19": "Eid al-Adha* (*estimated)", - "1970-03-09": "Islamic New Year* (*estimated)", + "1970-02-15": "Hajj Day (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha (estimated)", + "1970-02-18": "Eid al-Adha (estimated)", + "1970-02-19": "Eid al-Adha (estimated)", + "1970-03-09": "Islamic New Year (estimated)", "1970-05-01": "Labor Day", - "1970-05-07": "National Day* (*estimated)", - "1970-05-18": "Mawlid al-Nabi* (*estimated)", - "1970-06-06": "The Day Maldives Embraced Islam* (*estimated)", + "1970-05-07": "National Day (estimated)", + "1970-05-18": "Mawlid al-Nabi (estimated)", + "1970-06-06": "The Day Maldives Embraced Islam (estimated)", "1970-07-26": "Independence Day", - "1970-11-01": "Beginning of Ramadan* (*estimated)", + "1970-11-01": "Beginning of Ramadan (estimated)", "1970-11-03": "Victory Day", "1970-11-11": "Republic Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr* (*estimated)", - "1970-12-02": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr (estimated)", + "1970-12-02": "Eid al-Fitr (estimated)", "1971-01-01": "New Year's Day", - "1971-02-05": "Hajj Day* (*estimated)", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha* (*estimated)", - "1971-02-08": "Eid al-Adha* (*estimated)", - "1971-02-09": "Eid al-Adha* (*estimated)", - "1971-02-26": "Islamic New Year* (*estimated)", - "1971-04-26": "National Day* (*estimated)", + "1971-02-05": "Hajj Day (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha (estimated)", + "1971-02-08": "Eid al-Adha (estimated)", + "1971-02-09": "Eid al-Adha (estimated)", + "1971-02-26": "Islamic New Year (estimated)", + "1971-04-26": "National Day (estimated)", "1971-05-01": "Labor Day", - "1971-05-07": "Mawlid al-Nabi* (*estimated)", - "1971-05-26": "The Day Maldives Embraced Islam* (*estimated)", + "1971-05-07": "Mawlid al-Nabi (estimated)", + "1971-05-26": "The Day Maldives Embraced Islam (estimated)", "1971-07-26": "Independence Day", - "1971-10-20": "Beginning of Ramadan* (*estimated)", + "1971-10-20": "Beginning of Ramadan (estimated)", "1971-11-03": "Victory Day", "1971-11-11": "Republic Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr* (*estimated)", - "1971-11-21": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr (estimated)", + "1971-11-21": "Eid al-Fitr (estimated)", "1972-01-01": "New Year's Day", - "1972-01-25": "Hajj Day* (*estimated)", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha* (*estimated)", - "1972-01-28": "Eid al-Adha* (*estimated)", - "1972-01-29": "Eid al-Adha* (*estimated)", - "1972-02-16": "Islamic New Year* (*estimated)", - "1972-04-14": "National Day* (*estimated)", - "1972-04-25": "Mawlid al-Nabi* (*estimated)", + "1972-01-25": "Hajj Day (estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha (estimated)", + "1972-01-28": "Eid al-Adha (estimated)", + "1972-01-29": "Eid al-Adha (estimated)", + "1972-02-16": "Islamic New Year (estimated)", + "1972-04-14": "National Day (estimated)", + "1972-04-25": "Mawlid al-Nabi (estimated)", "1972-05-01": "Labor Day", - "1972-05-14": "The Day Maldives Embraced Islam* (*estimated)", + "1972-05-14": "The Day Maldives Embraced Islam (estimated)", "1972-07-26": "Independence Day", - "1972-10-08": "Beginning of Ramadan* (*estimated)", + "1972-10-08": "Beginning of Ramadan (estimated)", "1972-11-03": "Victory Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr* (*estimated)", - "1972-11-09": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr (estimated)", + "1972-11-09": "Eid al-Fitr (estimated)", "1972-11-11": "Republic Day", "1973-01-01": "New Year's Day", - "1973-01-13": "Hajj Day* (*estimated)", - "1973-01-14": "Eid al-Adha* (*estimated)", - "1973-01-15": "Eid al-Adha* (*estimated)", - "1973-01-16": "Eid al-Adha* (*estimated)", - "1973-01-17": "Eid al-Adha* (*estimated)", - "1973-02-04": "Islamic New Year* (*estimated)", - "1973-04-04": "National Day* (*estimated)", - "1973-04-15": "Mawlid al-Nabi* (*estimated)", + "1973-01-13": "Hajj Day (estimated)", + "1973-01-14": "Eid al-Adha (estimated)", + "1973-01-15": "Eid al-Adha (estimated)", + "1973-01-16": "Eid al-Adha (estimated)", + "1973-01-17": "Eid al-Adha (estimated)", + "1973-02-04": "Islamic New Year (estimated)", + "1973-04-04": "National Day (estimated)", + "1973-04-15": "Mawlid al-Nabi (estimated)", "1973-05-01": "Labor Day", - "1973-05-04": "The Day Maldives Embraced Islam* (*estimated)", + "1973-05-04": "The Day Maldives Embraced Islam (estimated)", "1973-07-26": "Independence Day", - "1973-09-27": "Beginning of Ramadan* (*estimated)", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr* (*estimated)", - "1973-10-29": "Eid al-Fitr* (*estimated)", + "1973-09-27": "Beginning of Ramadan (estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr (estimated)", + "1973-10-29": "Eid al-Fitr (estimated)", "1973-11-03": "Victory Day", "1973-11-11": "Republic Day", "1974-01-01": "New Year's Day", - "1974-01-02": "Hajj Day* (*estimated)", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha* (*estimated)", - "1974-01-05": "Eid al-Adha* (*estimated)", - "1974-01-06": "Eid al-Adha* (*estimated)", - "1974-01-24": "Islamic New Year* (*estimated)", - "1974-03-24": "National Day* (*estimated)", - "1974-04-04": "Mawlid al-Nabi* (*estimated)", - "1974-04-23": "The Day Maldives Embraced Islam* (*estimated)", + "1974-01-02": "Hajj Day (estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha (estimated)", + "1974-01-05": "Eid al-Adha (estimated)", + "1974-01-06": "Eid al-Adha (estimated)", + "1974-01-24": "Islamic New Year (estimated)", + "1974-03-24": "National Day (estimated)", + "1974-04-04": "Mawlid al-Nabi (estimated)", + "1974-04-23": "The Day Maldives Embraced Islam (estimated)", "1974-05-01": "Labor Day", "1974-07-26": "Independence Day", - "1974-09-17": "Beginning of Ramadan* (*estimated)", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr* (*estimated)", - "1974-10-18": "Eid al-Fitr* (*estimated)", + "1974-09-17": "Beginning of Ramadan (estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr (estimated)", + "1974-10-18": "Eid al-Fitr (estimated)", "1974-11-03": "Victory Day", "1974-11-11": "Republic Day", - "1974-12-23": "Hajj Day* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Eid al-Adha* (*estimated)", - "1974-12-26": "Eid al-Adha* (*estimated)", - "1974-12-27": "Eid al-Adha* (*estimated)", + "1974-12-23": "Hajj Day (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Eid al-Adha (estimated)", + "1974-12-26": "Eid al-Adha (estimated)", + "1974-12-27": "Eid al-Adha (estimated)", "1975-01-01": "New Year's Day", - "1975-01-13": "Islamic New Year* (*estimated)", - "1975-03-13": "National Day* (*estimated)", - "1975-03-24": "Mawlid al-Nabi* (*estimated)", - "1975-04-12": "The Day Maldives Embraced Islam* (*estimated)", + "1975-01-13": "Islamic New Year (estimated)", + "1975-03-13": "National Day (estimated)", + "1975-03-24": "Mawlid al-Nabi (estimated)", + "1975-04-12": "The Day Maldives Embraced Islam (estimated)", "1975-05-01": "Labor Day", "1975-07-26": "Independence Day", - "1975-09-06": "Beginning of Ramadan* (*estimated)", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr* (*estimated)", - "1975-10-08": "Eid al-Fitr* (*estimated)", + "1975-09-06": "Beginning of Ramadan (estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr (estimated)", + "1975-10-08": "Eid al-Fitr (estimated)", "1975-11-03": "Victory Day", "1975-11-11": "Republic Day", - "1975-12-12": "Hajj Day* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha* (*estimated)", - "1975-12-15": "Eid al-Adha* (*estimated)", - "1975-12-16": "Eid al-Adha* (*estimated)", + "1975-12-12": "Hajj Day (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha (estimated)", + "1975-12-15": "Eid al-Adha (estimated)", + "1975-12-16": "Eid al-Adha (estimated)", "1976-01-01": "New Year's Day", - "1976-01-02": "Islamic New Year* (*estimated)", - "1976-03-01": "National Day* (*estimated)", - "1976-03-12": "Mawlid al-Nabi* (*estimated)", - "1976-03-31": "The Day Maldives Embraced Islam* (*estimated)", + "1976-01-02": "Islamic New Year (estimated)", + "1976-03-01": "National Day (estimated)", + "1976-03-12": "Mawlid al-Nabi (estimated)", + "1976-03-31": "The Day Maldives Embraced Islam (estimated)", "1976-05-01": "Labor Day", "1976-07-26": "Independence Day", - "1976-08-26": "Beginning of Ramadan* (*estimated)", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr* (*estimated)", - "1976-09-26": "Eid al-Fitr* (*estimated)", + "1976-08-26": "Beginning of Ramadan (estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr (estimated)", + "1976-09-26": "Eid al-Fitr (estimated)", "1976-11-03": "Victory Day", "1976-11-11": "Republic Day", - "1976-11-30": "Hajj Day* (*estimated)", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha* (*estimated)", - "1976-12-03": "Eid al-Adha* (*estimated)", - "1976-12-04": "Eid al-Adha* (*estimated)", - "1976-12-22": "Islamic New Year* (*estimated)", + "1976-11-30": "Hajj Day (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha (estimated)", + "1976-12-03": "Eid al-Adha (estimated)", + "1976-12-04": "Eid al-Adha (estimated)", + "1976-12-22": "Islamic New Year (estimated)", "1977-01-01": "New Year's Day", - "1977-02-19": "National Day* (*estimated)", - "1977-03-02": "Mawlid al-Nabi* (*estimated)", - "1977-03-20": "The Day Maldives Embraced Islam* (*estimated)", + "1977-02-19": "National Day (estimated)", + "1977-03-02": "Mawlid al-Nabi (estimated)", + "1977-03-20": "The Day Maldives Embraced Islam (estimated)", "1977-05-01": "Labor Day", "1977-07-26": "Independence Day", - "1977-08-15": "Beginning of Ramadan* (*estimated)", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr* (*estimated)", - "1977-09-16": "Eid al-Fitr* (*estimated)", + "1977-08-15": "Beginning of Ramadan (estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr (estimated)", + "1977-09-16": "Eid al-Fitr (estimated)", "1977-11-03": "Victory Day", "1977-11-11": "Republic Day", - "1977-11-20": "Hajj Day* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha* (*estimated)", - "1977-11-23": "Eid al-Adha* (*estimated)", - "1977-11-24": "Eid al-Adha* (*estimated)", - "1977-12-11": "Islamic New Year* (*estimated)", + "1977-11-20": "Hajj Day (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha (estimated)", + "1977-11-23": "Eid al-Adha (estimated)", + "1977-11-24": "Eid al-Adha (estimated)", + "1977-12-11": "Islamic New Year (estimated)", "1978-01-01": "New Year's Day", - "1978-02-08": "National Day* (*estimated)", - "1978-02-19": "Mawlid al-Nabi* (*estimated)", - "1978-03-10": "The Day Maldives Embraced Islam* (*estimated)", + "1978-02-08": "National Day (estimated)", + "1978-02-19": "Mawlid al-Nabi (estimated)", + "1978-03-10": "The Day Maldives Embraced Islam (estimated)", "1978-05-01": "Labor Day", "1978-07-26": "Independence Day", - "1978-08-05": "Beginning of Ramadan* (*estimated)", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr* (*estimated)", - "1978-09-05": "Eid al-Fitr* (*estimated)", + "1978-08-05": "Beginning of Ramadan (estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr (estimated)", + "1978-09-05": "Eid al-Fitr (estimated)", "1978-11-03": "Victory Day", - "1978-11-09": "Hajj Day* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha* (*estimated); Republic Day", - "1978-11-12": "Eid al-Adha* (*estimated)", - "1978-11-13": "Eid al-Adha* (*estimated)", - "1978-12-01": "Islamic New Year* (*estimated)", + "1978-11-09": "Hajj Day (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha (estimated); Republic Day", + "1978-11-12": "Eid al-Adha (estimated)", + "1978-11-13": "Eid al-Adha (estimated)", + "1978-12-01": "Islamic New Year (estimated)", "1979-01-01": "New Year's Day", - "1979-01-29": "National Day* (*estimated)", - "1979-02-09": "Mawlid al-Nabi* (*estimated)", - "1979-02-27": "The Day Maldives Embraced Islam* (*estimated)", + "1979-01-29": "National Day (estimated)", + "1979-02-09": "Mawlid al-Nabi (estimated)", + "1979-02-27": "The Day Maldives Embraced Islam (estimated)", "1979-05-01": "Labor Day", - "1979-07-25": "Beginning of Ramadan* (*estimated)", + "1979-07-25": "Beginning of Ramadan (estimated)", "1979-07-26": "Independence Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr* (*estimated)", - "1979-08-25": "Eid al-Fitr* (*estimated)", - "1979-10-30": "Hajj Day* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha* (*estimated)", - "1979-11-02": "Eid al-Adha* (*estimated)", - "1979-11-03": "Eid al-Adha* (*estimated); Victory Day", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr (estimated)", + "1979-08-25": "Eid al-Fitr (estimated)", + "1979-10-30": "Hajj Day (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha (estimated)", + "1979-11-02": "Eid al-Adha (estimated)", + "1979-11-03": "Eid al-Adha (estimated); Victory Day", "1979-11-11": "Republic Day", - "1979-11-20": "Islamic New Year* (*estimated)", + "1979-11-20": "Islamic New Year (estimated)", "1980-01-01": "New Year's Day", - "1980-01-19": "National Day* (*estimated)", - "1980-01-30": "Mawlid al-Nabi* (*estimated)", - "1980-02-17": "The Day Maldives Embraced Islam* (*estimated)", + "1980-01-19": "National Day (estimated)", + "1980-01-30": "Mawlid al-Nabi (estimated)", + "1980-02-17": "The Day Maldives Embraced Islam (estimated)", "1980-05-01": "Labor Day", - "1980-07-13": "Beginning of Ramadan* (*estimated)", + "1980-07-13": "Beginning of Ramadan (estimated)", "1980-07-26": "Independence Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr* (*estimated)", - "1980-08-14": "Eid al-Fitr* (*estimated)", - "1980-10-18": "Hajj Day* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha* (*estimated)", - "1980-10-21": "Eid al-Adha* (*estimated)", - "1980-10-22": "Eid al-Adha* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr (estimated)", + "1980-08-14": "Eid al-Fitr (estimated)", + "1980-10-18": "Hajj Day (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha (estimated)", + "1980-10-21": "Eid al-Adha (estimated)", + "1980-10-22": "Eid al-Adha (estimated)", "1980-11-03": "Victory Day", - "1980-11-09": "Islamic New Year* (*estimated)", + "1980-11-09": "Islamic New Year (estimated)", "1980-11-11": "Republic Day", "1981-01-01": "New Year's Day", - "1981-01-07": "National Day* (*estimated)", - "1981-01-18": "Mawlid al-Nabi* (*estimated)", - "1981-02-05": "The Day Maldives Embraced Islam* (*estimated)", + "1981-01-07": "National Day (estimated)", + "1981-01-18": "Mawlid al-Nabi (estimated)", + "1981-02-05": "The Day Maldives Embraced Islam (estimated)", "1981-05-01": "Labor Day", - "1981-07-02": "Beginning of Ramadan* (*estimated)", + "1981-07-02": "Beginning of Ramadan (estimated)", "1981-07-26": "Independence Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr* (*estimated)", - "1981-08-03": "Eid al-Fitr* (*estimated)", - "1981-10-07": "Hajj Day* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha* (*estimated)", - "1981-10-10": "Eid al-Adha* (*estimated)", - "1981-10-11": "Eid al-Adha* (*estimated)", - "1981-10-28": "Islamic New Year* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr (estimated)", + "1981-08-03": "Eid al-Fitr (estimated)", + "1981-10-07": "Hajj Day (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha (estimated)", + "1981-10-10": "Eid al-Adha (estimated)", + "1981-10-11": "Eid al-Adha (estimated)", + "1981-10-28": "Islamic New Year (estimated)", "1981-11-03": "Victory Day", "1981-11-11": "Republic Day", - "1981-12-27": "National Day* (*estimated)", + "1981-12-27": "National Day (estimated)", "1982-01-01": "New Year's Day", - "1982-01-07": "Mawlid al-Nabi* (*estimated)", - "1982-01-26": "The Day Maldives Embraced Islam* (*estimated)", + "1982-01-07": "Mawlid al-Nabi (estimated)", + "1982-01-26": "The Day Maldives Embraced Islam (estimated)", "1982-05-01": "Labor Day", - "1982-06-22": "Beginning of Ramadan* (*estimated)", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr* (*estimated)", - "1982-07-23": "Eid al-Fitr* (*estimated)", + "1982-06-22": "Beginning of Ramadan (estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr (estimated)", + "1982-07-23": "Eid al-Fitr (estimated)", "1982-07-26": "Independence Day", - "1982-09-26": "Hajj Day* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha* (*estimated)", - "1982-09-29": "Eid al-Adha* (*estimated)", - "1982-09-30": "Eid al-Adha* (*estimated)", - "1982-10-18": "Islamic New Year* (*estimated)", + "1982-09-26": "Hajj Day (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha (estimated)", + "1982-09-29": "Eid al-Adha (estimated)", + "1982-09-30": "Eid al-Adha (estimated)", + "1982-10-18": "Islamic New Year (estimated)", "1982-11-03": "Victory Day", "1982-11-11": "Republic Day", - "1982-12-16": "National Day* (*estimated)", - "1982-12-27": "Mawlid al-Nabi* (*estimated)", + "1982-12-16": "National Day (estimated)", + "1982-12-27": "Mawlid al-Nabi (estimated)", "1983-01-01": "New Year's Day", - "1983-01-15": "The Day Maldives Embraced Islam* (*estimated)", + "1983-01-15": "The Day Maldives Embraced Islam (estimated)", "1983-05-01": "Labor Day", - "1983-06-12": "Beginning of Ramadan* (*estimated)", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr* (*estimated)", - "1983-07-13": "Eid al-Fitr* (*estimated)", + "1983-06-12": "Beginning of Ramadan (estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr (estimated)", + "1983-07-13": "Eid al-Fitr (estimated)", "1983-07-26": "Independence Day", - "1983-09-16": "Hajj Day* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha* (*estimated)", - "1983-09-19": "Eid al-Adha* (*estimated)", - "1983-09-20": "Eid al-Adha* (*estimated)", - "1983-10-07": "Islamic New Year* (*estimated)", + "1983-09-16": "Hajj Day (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha (estimated)", + "1983-09-19": "Eid al-Adha (estimated)", + "1983-09-20": "Eid al-Adha (estimated)", + "1983-10-07": "Islamic New Year (estimated)", "1983-11-03": "Victory Day", "1983-11-11": "Republic Day", - "1983-12-05": "National Day* (*estimated)", - "1983-12-16": "Mawlid al-Nabi* (*estimated)", + "1983-12-05": "National Day (estimated)", + "1983-12-16": "Mawlid al-Nabi (estimated)", "1984-01-01": "New Year's Day", - "1984-01-04": "The Day Maldives Embraced Islam* (*estimated)", + "1984-01-04": "The Day Maldives Embraced Islam (estimated)", "1984-05-01": "Labor Day", - "1984-05-31": "Beginning of Ramadan* (*estimated)", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr* (*estimated)", - "1984-07-02": "Eid al-Fitr* (*estimated)", + "1984-05-31": "Beginning of Ramadan (estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr (estimated)", + "1984-07-02": "Eid al-Fitr (estimated)", "1984-07-26": "Independence Day", - "1984-09-04": "Hajj Day* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha* (*estimated)", - "1984-09-07": "Eid al-Adha* (*estimated)", - "1984-09-08": "Eid al-Adha* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", + "1984-09-04": "Hajj Day (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha (estimated)", + "1984-09-07": "Eid al-Adha (estimated)", + "1984-09-08": "Eid al-Adha (estimated)", + "1984-09-26": "Islamic New Year (estimated)", "1984-11-03": "Victory Day", "1984-11-11": "Republic Day", - "1984-11-23": "National Day* (*estimated)", - "1984-12-04": "Mawlid al-Nabi* (*estimated)", - "1984-12-23": "The Day Maldives Embraced Islam* (*estimated)", + "1984-11-23": "National Day (estimated)", + "1984-12-04": "Mawlid al-Nabi (estimated)", + "1984-12-23": "The Day Maldives Embraced Islam (estimated)", "1985-01-01": "New Year's Day", "1985-05-01": "Labor Day", - "1985-05-20": "Beginning of Ramadan* (*estimated)", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr* (*estimated)", - "1985-06-21": "Eid al-Fitr* (*estimated)", + "1985-05-20": "Beginning of Ramadan (estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr (estimated)", + "1985-06-21": "Eid al-Fitr (estimated)", "1985-07-26": "Independence Day", - "1985-08-25": "Hajj Day* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha* (*estimated)", - "1985-08-28": "Eid al-Adha* (*estimated)", - "1985-08-29": "Eid al-Adha* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", + "1985-08-25": "Hajj Day (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha (estimated)", + "1985-08-28": "Eid al-Adha (estimated)", + "1985-08-29": "Eid al-Adha (estimated)", + "1985-09-15": "Islamic New Year (estimated)", "1985-11-03": "Victory Day", "1985-11-11": "Republic Day", - "1985-11-13": "National Day* (*estimated)", - "1985-11-24": "Mawlid al-Nabi* (*estimated)", - "1985-12-13": "The Day Maldives Embraced Islam* (*estimated)", + "1985-11-13": "National Day (estimated)", + "1985-11-24": "Mawlid al-Nabi (estimated)", + "1985-12-13": "The Day Maldives Embraced Islam (estimated)", "1986-01-01": "New Year's Day", "1986-05-01": "Labor Day", - "1986-05-09": "Beginning of Ramadan* (*estimated)", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr* (*estimated)", - "1986-06-10": "Eid al-Fitr* (*estimated)", + "1986-05-09": "Beginning of Ramadan (estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr (estimated)", + "1986-06-10": "Eid al-Fitr (estimated)", "1986-07-26": "Independence Day", - "1986-08-14": "Hajj Day* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha* (*estimated)", - "1986-08-17": "Eid al-Adha* (*estimated)", - "1986-08-18": "Eid al-Adha* (*estimated)", - "1986-09-05": "Islamic New Year* (*estimated)", - "1986-11-03": "National Day* (*estimated); Victory Day", + "1986-08-14": "Hajj Day (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha (estimated)", + "1986-08-17": "Eid al-Adha (estimated)", + "1986-08-18": "Eid al-Adha (estimated)", + "1986-09-05": "Islamic New Year (estimated)", + "1986-11-03": "National Day (estimated); Victory Day", "1986-11-11": "Republic Day", - "1986-11-14": "Mawlid al-Nabi* (*estimated)", - "1986-12-02": "The Day Maldives Embraced Islam* (*estimated)", + "1986-11-14": "Mawlid al-Nabi (estimated)", + "1986-12-02": "The Day Maldives Embraced Islam (estimated)", "1987-01-01": "New Year's Day", - "1987-04-29": "Beginning of Ramadan* (*estimated)", + "1987-04-29": "Beginning of Ramadan (estimated)", "1987-05-01": "Labor Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr* (*estimated)", - "1987-05-30": "Eid al-Fitr* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr (estimated)", + "1987-05-30": "Eid al-Fitr (estimated)", "1987-07-26": "Independence Day", - "1987-08-03": "Hajj Day* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha* (*estimated)", - "1987-08-06": "Eid al-Adha* (*estimated)", - "1987-08-07": "Eid al-Adha* (*estimated)", - "1987-08-25": "Islamic New Year* (*estimated)", - "1987-10-23": "National Day* (*estimated)", - "1987-11-03": "Mawlid al-Nabi* (*estimated); Victory Day", + "1987-08-03": "Hajj Day (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha (estimated)", + "1987-08-06": "Eid al-Adha (estimated)", + "1987-08-07": "Eid al-Adha (estimated)", + "1987-08-25": "Islamic New Year (estimated)", + "1987-10-23": "National Day (estimated)", + "1987-11-03": "Mawlid al-Nabi (estimated); Victory Day", "1987-11-11": "Republic Day", - "1987-11-22": "The Day Maldives Embraced Islam* (*estimated)", + "1987-11-22": "The Day Maldives Embraced Islam (estimated)", "1988-01-01": "New Year's Day", - "1988-04-17": "Beginning of Ramadan* (*estimated)", + "1988-04-17": "Beginning of Ramadan (estimated)", "1988-05-01": "Labor Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr* (*estimated)", - "1988-05-18": "Eid al-Fitr* (*estimated)", - "1988-07-22": "Hajj Day* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha* (*estimated)", - "1988-07-25": "Eid al-Adha* (*estimated)", - "1988-07-26": "Eid al-Adha* (*estimated); Independence Day", - "1988-08-13": "Islamic New Year* (*estimated)", - "1988-10-11": "National Day* (*estimated)", - "1988-10-22": "Mawlid al-Nabi* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr (estimated)", + "1988-05-18": "Eid al-Fitr (estimated)", + "1988-07-22": "Hajj Day (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha (estimated)", + "1988-07-25": "Eid al-Adha (estimated)", + "1988-07-26": "Eid al-Adha (estimated); Independence Day", + "1988-08-13": "Islamic New Year (estimated)", + "1988-10-11": "National Day (estimated)", + "1988-10-22": "Mawlid al-Nabi (estimated)", "1988-11-03": "Victory Day", - "1988-11-10": "The Day Maldives Embraced Islam* (*estimated)", + "1988-11-10": "The Day Maldives Embraced Islam (estimated)", "1988-11-11": "Republic Day", "1989-01-01": "New Year's Day", - "1989-04-07": "Beginning of Ramadan* (*estimated)", + "1989-04-07": "Beginning of Ramadan (estimated)", "1989-05-01": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr* (*estimated)", - "1989-05-08": "Eid al-Fitr* (*estimated)", - "1989-07-12": "Hajj Day* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha* (*estimated)", - "1989-07-15": "Eid al-Adha* (*estimated)", - "1989-07-16": "Eid al-Adha* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr (estimated)", + "1989-05-08": "Eid al-Fitr (estimated)", + "1989-07-12": "Hajj Day (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha (estimated)", + "1989-07-15": "Eid al-Adha (estimated)", + "1989-07-16": "Eid al-Adha (estimated)", "1989-07-26": "Independence Day", - "1989-08-02": "Islamic New Year* (*estimated)", - "1989-09-30": "National Day* (*estimated)", - "1989-10-11": "Mawlid al-Nabi* (*estimated)", - "1989-10-30": "The Day Maldives Embraced Islam* (*estimated)", + "1989-08-02": "Islamic New Year (estimated)", + "1989-09-30": "National Day (estimated)", + "1989-10-11": "Mawlid al-Nabi (estimated)", + "1989-10-30": "The Day Maldives Embraced Islam (estimated)", "1989-11-03": "Victory Day", "1989-11-11": "Republic Day", "1990-01-01": "New Year's Day", - "1990-03-27": "Beginning of Ramadan* (*estimated)", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr* (*estimated)", - "1990-04-28": "Eid al-Fitr* (*estimated)", + "1990-03-27": "Beginning of Ramadan (estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr (estimated)", + "1990-04-28": "Eid al-Fitr (estimated)", "1990-05-01": "Labor Day", - "1990-07-01": "Hajj Day* (*estimated)", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha* (*estimated)", - "1990-07-04": "Eid al-Adha* (*estimated)", - "1990-07-05": "Eid al-Adha* (*estimated)", - "1990-07-23": "Islamic New Year* (*estimated)", + "1990-07-01": "Hajj Day (estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha (estimated)", + "1990-07-04": "Eid al-Adha (estimated)", + "1990-07-05": "Eid al-Adha (estimated)", + "1990-07-23": "Islamic New Year (estimated)", "1990-07-26": "Independence Day", - "1990-09-20": "National Day* (*estimated)", - "1990-10-01": "Mawlid al-Nabi* (*estimated)", - "1990-10-19": "The Day Maldives Embraced Islam* (*estimated)", + "1990-09-20": "National Day (estimated)", + "1990-10-01": "Mawlid al-Nabi (estimated)", + "1990-10-19": "The Day Maldives Embraced Islam (estimated)", "1990-11-03": "Victory Day", "1990-11-11": "Republic Day", "1991-01-01": "New Year's Day", - "1991-03-17": "Beginning of Ramadan* (*estimated)", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr* (*estimated)", - "1991-04-17": "Eid al-Fitr* (*estimated)", + "1991-03-17": "Beginning of Ramadan (estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr (estimated)", + "1991-04-17": "Eid al-Fitr (estimated)", "1991-05-01": "Labor Day", - "1991-06-21": "Hajj Day* (*estimated)", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha* (*estimated)", - "1991-06-24": "Eid al-Adha* (*estimated)", - "1991-06-25": "Eid al-Adha* (*estimated)", - "1991-07-12": "Islamic New Year* (*estimated)", + "1991-06-21": "Hajj Day (estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha (estimated)", + "1991-06-24": "Eid al-Adha (estimated)", + "1991-06-25": "Eid al-Adha (estimated)", + "1991-07-12": "Islamic New Year (estimated)", "1991-07-26": "Independence Day", - "1991-09-09": "National Day* (*estimated)", - "1991-09-20": "Mawlid al-Nabi* (*estimated)", - "1991-10-08": "The Day Maldives Embraced Islam* (*estimated)", + "1991-09-09": "National Day (estimated)", + "1991-09-20": "Mawlid al-Nabi (estimated)", + "1991-10-08": "The Day Maldives Embraced Islam (estimated)", "1991-11-03": "Victory Day", "1991-11-11": "Republic Day", "1992-01-01": "New Year's Day", - "1992-03-05": "Beginning of Ramadan* (*estimated)", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr* (*estimated)", - "1992-04-06": "Eid al-Fitr* (*estimated)", + "1992-03-05": "Beginning of Ramadan (estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr (estimated)", + "1992-04-06": "Eid al-Fitr (estimated)", "1992-05-01": "Labor Day", - "1992-06-10": "Hajj Day* (*estimated)", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha* (*estimated)", - "1992-06-13": "Eid al-Adha* (*estimated)", - "1992-06-14": "Eid al-Adha* (*estimated)", - "1992-07-01": "Islamic New Year* (*estimated)", + "1992-06-10": "Hajj Day (estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha (estimated)", + "1992-06-13": "Eid al-Adha (estimated)", + "1992-06-14": "Eid al-Adha (estimated)", + "1992-07-01": "Islamic New Year (estimated)", "1992-07-26": "Independence Day", - "1992-08-29": "National Day* (*estimated)", - "1992-09-09": "Mawlid al-Nabi* (*estimated)", - "1992-09-27": "The Day Maldives Embraced Islam* (*estimated)", + "1992-08-29": "National Day (estimated)", + "1992-09-09": "Mawlid al-Nabi (estimated)", + "1992-09-27": "The Day Maldives Embraced Islam (estimated)", "1992-11-03": "Victory Day", "1992-11-11": "Republic Day", "1993-01-01": "New Year's Day", - "1993-02-22": "Beginning of Ramadan* (*estimated)", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr* (*estimated)", - "1993-03-26": "Eid al-Fitr* (*estimated)", + "1993-02-22": "Beginning of Ramadan (estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr (estimated)", + "1993-03-26": "Eid al-Fitr (estimated)", "1993-05-01": "Labor Day", - "1993-05-30": "Hajj Day* (*estimated)", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha* (*estimated)", - "1993-06-02": "Eid al-Adha* (*estimated)", - "1993-06-03": "Eid al-Adha* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", + "1993-05-30": "Hajj Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha (estimated)", + "1993-06-02": "Eid al-Adha (estimated)", + "1993-06-03": "Eid al-Adha (estimated)", + "1993-06-21": "Islamic New Year (estimated)", "1993-07-26": "Independence Day", - "1993-08-18": "National Day* (*estimated)", - "1993-08-29": "Mawlid al-Nabi* (*estimated)", - "1993-09-17": "The Day Maldives Embraced Islam* (*estimated)", + "1993-08-18": "National Day (estimated)", + "1993-08-29": "Mawlid al-Nabi (estimated)", + "1993-09-17": "The Day Maldives Embraced Islam (estimated)", "1993-11-03": "Victory Day", "1993-11-11": "Republic Day", "1994-01-01": "New Year's Day", - "1994-02-11": "Beginning of Ramadan* (*estimated)", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr* (*estimated)", - "1994-03-15": "Eid al-Fitr* (*estimated)", + "1994-02-11": "Beginning of Ramadan (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr (estimated)", + "1994-03-15": "Eid al-Fitr (estimated)", "1994-05-01": "Labor Day", - "1994-05-19": "Hajj Day* (*estimated)", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha* (*estimated)", - "1994-05-22": "Eid al-Adha* (*estimated)", - "1994-05-23": "Eid al-Adha* (*estimated)", - "1994-06-10": "Islamic New Year* (*estimated)", + "1994-05-19": "Hajj Day (estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha (estimated)", + "1994-05-22": "Eid al-Adha (estimated)", + "1994-05-23": "Eid al-Adha (estimated)", + "1994-06-10": "Islamic New Year (estimated)", "1994-07-26": "Independence Day", - "1994-08-08": "National Day* (*estimated)", - "1994-08-19": "Mawlid al-Nabi* (*estimated)", - "1994-09-06": "The Day Maldives Embraced Islam* (*estimated)", + "1994-08-08": "National Day (estimated)", + "1994-08-19": "Mawlid al-Nabi (estimated)", + "1994-09-06": "The Day Maldives Embraced Islam (estimated)", "1994-11-03": "Victory Day", "1994-11-11": "Republic Day", "1995-01-01": "New Year's Day", - "1995-01-31": "Beginning of Ramadan* (*estimated)", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr* (*estimated)", - "1995-03-04": "Eid al-Fitr* (*estimated)", + "1995-01-31": "Beginning of Ramadan (estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr (estimated)", + "1995-03-04": "Eid al-Fitr (estimated)", "1995-05-01": "Labor Day", - "1995-05-08": "Hajj Day* (*estimated)", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha* (*estimated)", - "1995-05-11": "Eid al-Adha* (*estimated)", - "1995-05-12": "Eid al-Adha* (*estimated)", - "1995-05-30": "Islamic New Year* (*estimated)", + "1995-05-08": "Hajj Day (estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha (estimated)", + "1995-05-11": "Eid al-Adha (estimated)", + "1995-05-12": "Eid al-Adha (estimated)", + "1995-05-30": "Islamic New Year (estimated)", "1995-07-26": "Independence Day", - "1995-07-28": "National Day* (*estimated)", - "1995-08-08": "Mawlid al-Nabi* (*estimated)", - "1995-08-27": "The Day Maldives Embraced Islam* (*estimated)", + "1995-07-28": "National Day (estimated)", + "1995-08-08": "Mawlid al-Nabi (estimated)", + "1995-08-27": "The Day Maldives Embraced Islam (estimated)", "1995-11-03": "Victory Day", "1995-11-11": "Republic Day", "1996-01-01": "New Year's Day", - "1996-01-21": "Beginning of Ramadan* (*estimated)", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr* (*estimated)", - "1996-02-21": "Eid al-Fitr* (*estimated)", - "1996-04-26": "Hajj Day* (*estimated)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha* (*estimated)", - "1996-04-29": "Eid al-Adha* (*estimated)", - "1996-04-30": "Eid al-Adha* (*estimated)", + "1996-01-21": "Beginning of Ramadan (estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr (estimated)", + "1996-02-21": "Eid al-Fitr (estimated)", + "1996-04-26": "Hajj Day (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha (estimated)", + "1996-04-29": "Eid al-Adha (estimated)", + "1996-04-30": "Eid al-Adha (estimated)", "1996-05-01": "Labor Day", - "1996-05-18": "Islamic New Year* (*estimated)", - "1996-07-16": "National Day* (*estimated)", + "1996-05-18": "Islamic New Year (estimated)", + "1996-07-16": "National Day (estimated)", "1996-07-26": "Independence Day", - "1996-07-27": "Mawlid al-Nabi* (*estimated)", - "1996-08-15": "The Day Maldives Embraced Islam* (*estimated)", + "1996-07-27": "Mawlid al-Nabi (estimated)", + "1996-08-15": "The Day Maldives Embraced Islam (estimated)", "1996-11-03": "Victory Day", "1996-11-11": "Republic Day", "1997-01-01": "New Year's Day", - "1997-01-10": "Beginning of Ramadan* (*estimated)", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr* (*estimated)", - "1997-02-10": "Eid al-Fitr* (*estimated)", - "1997-04-16": "Hajj Day* (*estimated)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha* (*estimated)", - "1997-04-19": "Eid al-Adha* (*estimated)", - "1997-04-20": "Eid al-Adha* (*estimated)", + "1997-01-10": "Beginning of Ramadan (estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr (estimated)", + "1997-02-10": "Eid al-Fitr (estimated)", + "1997-04-16": "Hajj Day (estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha (estimated)", + "1997-04-19": "Eid al-Adha (estimated)", + "1997-04-20": "Eid al-Adha (estimated)", "1997-05-01": "Labor Day", - "1997-05-07": "Islamic New Year* (*estimated)", - "1997-07-05": "National Day* (*estimated)", - "1997-07-16": "Mawlid al-Nabi* (*estimated)", + "1997-05-07": "Islamic New Year (estimated)", + "1997-07-05": "National Day (estimated)", + "1997-07-16": "Mawlid al-Nabi (estimated)", "1997-07-26": "Independence Day", - "1997-08-04": "The Day Maldives Embraced Islam* (*estimated)", + "1997-08-04": "The Day Maldives Embraced Islam (estimated)", "1997-11-03": "Victory Day", "1997-11-11": "Republic Day", - "1997-12-30": "Beginning of Ramadan* (*estimated)", + "1997-12-30": "Beginning of Ramadan (estimated)", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr* (*estimated)", - "1998-01-31": "Eid al-Fitr* (*estimated)", - "1998-04-06": "Hajj Day* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha* (*estimated)", - "1998-04-09": "Eid al-Adha* (*estimated)", - "1998-04-10": "Eid al-Adha* (*estimated)", - "1998-04-27": "Islamic New Year* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr (estimated)", + "1998-01-31": "Eid al-Fitr (estimated)", + "1998-04-06": "Hajj Day (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha (estimated)", + "1998-04-09": "Eid al-Adha (estimated)", + "1998-04-10": "Eid al-Adha (estimated)", + "1998-04-27": "Islamic New Year (estimated)", "1998-05-01": "Labor Day", - "1998-06-25": "National Day* (*estimated)", - "1998-07-06": "Mawlid al-Nabi* (*estimated)", - "1998-07-24": "The Day Maldives Embraced Islam* (*estimated)", + "1998-06-25": "National Day (estimated)", + "1998-07-06": "Mawlid al-Nabi (estimated)", + "1998-07-24": "The Day Maldives Embraced Islam (estimated)", "1998-07-26": "Independence Day", "1998-11-03": "Victory Day", "1998-11-11": "Republic Day", - "1998-12-19": "Beginning of Ramadan* (*estimated)", + "1998-12-19": "Beginning of Ramadan (estimated)", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr* (*estimated)", - "1999-01-20": "Eid al-Fitr* (*estimated)", - "1999-03-26": "Hajj Day* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha* (*estimated)", - "1999-03-29": "Eid al-Adha* (*estimated)", - "1999-03-30": "Eid al-Adha* (*estimated)", - "1999-04-17": "Islamic New Year* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr (estimated)", + "1999-01-20": "Eid al-Fitr (estimated)", + "1999-03-26": "Hajj Day (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha (estimated)", + "1999-03-29": "Eid al-Adha (estimated)", + "1999-03-30": "Eid al-Adha (estimated)", + "1999-04-17": "Islamic New Year (estimated)", "1999-05-01": "Labor Day", - "1999-06-15": "National Day* (*estimated)", - "1999-06-26": "Mawlid al-Nabi* (*estimated)", - "1999-07-14": "The Day Maldives Embraced Islam* (*estimated)", + "1999-06-15": "National Day (estimated)", + "1999-06-26": "Mawlid al-Nabi (estimated)", + "1999-07-14": "The Day Maldives Embraced Islam (estimated)", "1999-07-26": "Independence Day", "1999-11-03": "Victory Day", "1999-11-11": "Republic Day", - "1999-12-09": "Beginning of Ramadan* (*estimated)", + "1999-12-09": "Beginning of Ramadan (estimated)", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr* (*estimated)", - "2000-01-10": "Eid al-Fitr* (*estimated)", - "2000-03-15": "Hajj Day* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha* (*estimated)", - "2000-03-18": "Eid al-Adha* (*estimated)", - "2000-03-19": "Eid al-Adha* (*estimated)", - "2000-04-06": "Islamic New Year* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr (estimated)", + "2000-01-10": "Eid al-Fitr (estimated)", + "2000-03-15": "Hajj Day (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha (estimated)", + "2000-03-18": "Eid al-Adha (estimated)", + "2000-03-19": "Eid al-Adha (estimated)", + "2000-04-06": "Islamic New Year (estimated)", "2000-05-01": "Labor Day", - "2000-06-03": "National Day* (*estimated)", - "2000-06-14": "Mawlid al-Nabi* (*estimated)", - "2000-07-03": "The Day Maldives Embraced Islam* (*estimated)", + "2000-06-03": "National Day (estimated)", + "2000-06-14": "Mawlid al-Nabi (estimated)", + "2000-07-03": "The Day Maldives Embraced Islam (estimated)", "2000-07-26": "Independence Day", "2000-11-03": "Victory Day", "2000-11-11": "Republic Day", - "2000-11-27": "Beginning of Ramadan* (*estimated)", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr* (*estimated)", - "2000-12-29": "Eid al-Fitr* (*estimated)", + "2000-11-27": "Beginning of Ramadan (estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr (estimated)", + "2000-12-29": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", - "2001-03-04": "Hajj Day* (*estimated)", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha* (*estimated)", - "2001-03-07": "Eid al-Adha* (*estimated)", - "2001-03-08": "Eid al-Adha* (*estimated)", - "2001-03-26": "Islamic New Year* (*estimated)", + "2001-03-04": "Hajj Day (estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha (estimated)", + "2001-03-07": "Eid al-Adha (estimated)", + "2001-03-08": "Eid al-Adha (estimated)", + "2001-03-26": "Islamic New Year (estimated)", "2001-05-01": "Labor Day", - "2001-05-24": "National Day* (*estimated)", - "2001-06-04": "Mawlid al-Nabi* (*estimated)", - "2001-06-22": "The Day Maldives Embraced Islam* (*estimated)", + "2001-05-24": "National Day (estimated)", + "2001-06-04": "Mawlid al-Nabi (estimated)", + "2001-06-22": "The Day Maldives Embraced Islam (estimated)", "2001-07-26": "Independence Day", "2001-11-03": "Victory Day", "2001-11-11": "Republic Day", - "2001-11-16": "Beginning of Ramadan* (*estimated)", - "2001-12-16": "Eid al-Fitr* (*estimated)", - "2001-12-17": "Eid al-Fitr* (*estimated)", - "2001-12-18": "Eid al-Fitr* (*estimated)", + "2001-11-16": "Beginning of Ramadan (estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2001-12-17": "Eid al-Fitr (estimated)", + "2001-12-18": "Eid al-Fitr (estimated)", "2002-01-01": "New Year's Day", - "2002-02-21": "Hajj Day* (*estimated)", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha* (*estimated)", - "2002-02-24": "Eid al-Adha* (*estimated)", - "2002-02-25": "Eid al-Adha* (*estimated)", - "2002-03-15": "Islamic New Year* (*estimated)", + "2002-02-21": "Hajj Day (estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha (estimated)", + "2002-02-24": "Eid al-Adha (estimated)", + "2002-02-25": "Eid al-Adha (estimated)", + "2002-03-15": "Islamic New Year (estimated)", "2002-05-01": "Labor Day", - "2002-05-13": "National Day* (*estimated)", - "2002-05-24": "Mawlid al-Nabi* (*estimated)", - "2002-06-12": "The Day Maldives Embraced Islam* (*estimated)", + "2002-05-13": "National Day (estimated)", + "2002-05-24": "Mawlid al-Nabi (estimated)", + "2002-06-12": "The Day Maldives Embraced Islam (estimated)", "2002-07-26": "Independence Day", "2002-11-03": "Victory Day", - "2002-11-06": "Beginning of Ramadan* (*estimated)", + "2002-11-06": "Beginning of Ramadan (estimated)", "2002-11-11": "Republic Day", - "2002-12-05": "Eid al-Fitr* (*estimated)", - "2002-12-06": "Eid al-Fitr* (*estimated)", - "2002-12-07": "Eid al-Fitr* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", + "2002-12-06": "Eid al-Fitr (estimated)", + "2002-12-07": "Eid al-Fitr (estimated)", "2003-01-01": "New Year's Day", - "2003-02-10": "Hajj Day* (*estimated)", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha* (*estimated)", - "2003-02-13": "Eid al-Adha* (*estimated)", - "2003-02-14": "Eid al-Adha* (*estimated)", - "2003-03-04": "Islamic New Year* (*estimated)", + "2003-02-10": "Hajj Day (estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha (estimated)", + "2003-02-13": "Eid al-Adha (estimated)", + "2003-02-14": "Eid al-Adha (estimated)", + "2003-03-04": "Islamic New Year (estimated)", "2003-05-01": "Labor Day", - "2003-05-02": "National Day* (*estimated)", - "2003-05-13": "Mawlid al-Nabi* (*estimated)", - "2003-06-01": "The Day Maldives Embraced Islam* (*estimated)", + "2003-05-02": "National Day (estimated)", + "2003-05-13": "Mawlid al-Nabi (estimated)", + "2003-06-01": "The Day Maldives Embraced Islam (estimated)", "2003-07-26": "Independence Day", - "2003-10-26": "Beginning of Ramadan* (*estimated)", + "2003-10-26": "Beginning of Ramadan (estimated)", "2003-11-03": "Victory Day", "2003-11-11": "Republic Day", - "2003-11-25": "Eid al-Fitr* (*estimated)", - "2003-11-26": "Eid al-Fitr* (*estimated)", - "2003-11-27": "Eid al-Fitr* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", + "2003-11-26": "Eid al-Fitr (estimated)", + "2003-11-27": "Eid al-Fitr (estimated)", "2004-01-01": "New Year's Day", - "2004-01-31": "Hajj Day* (*estimated)", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha* (*estimated)", - "2004-02-03": "Eid al-Adha* (*estimated)", - "2004-02-04": "Eid al-Adha* (*estimated)", - "2004-02-21": "Islamic New Year* (*estimated)", - "2004-04-20": "National Day* (*estimated)", - "2004-05-01": "Labor Day; Mawlid al-Nabi* (*estimated)", - "2004-05-20": "The Day Maldives Embraced Islam* (*estimated)", + "2004-01-31": "Hajj Day (estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha (estimated)", + "2004-02-03": "Eid al-Adha (estimated)", + "2004-02-04": "Eid al-Adha (estimated)", + "2004-02-21": "Islamic New Year (estimated)", + "2004-04-20": "National Day (estimated)", + "2004-05-01": "Labor Day; Mawlid al-Nabi (estimated)", + "2004-05-20": "The Day Maldives Embraced Islam (estimated)", "2004-07-26": "Independence Day", - "2004-10-15": "Beginning of Ramadan* (*estimated)", + "2004-10-15": "Beginning of Ramadan (estimated)", "2004-11-03": "Victory Day", "2004-11-11": "Republic Day", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr* (*estimated)", - "2004-11-16": "Eid al-Fitr* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr (estimated)", + "2004-11-16": "Eid al-Fitr (estimated)", "2005-01-01": "New Year's Day", - "2005-01-20": "Hajj Day* (*estimated)", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha* (*estimated)", - "2005-01-23": "Eid al-Adha* (*estimated)", - "2005-01-24": "Eid al-Adha* (*estimated)", - "2005-02-10": "Islamic New Year* (*estimated)", - "2005-04-10": "National Day* (*estimated)", - "2005-04-21": "Mawlid al-Nabi* (*estimated)", + "2005-01-20": "Hajj Day (estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha (estimated)", + "2005-01-23": "Eid al-Adha (estimated)", + "2005-01-24": "Eid al-Adha (estimated)", + "2005-02-10": "Islamic New Year (estimated)", + "2005-04-10": "National Day (estimated)", + "2005-04-21": "Mawlid al-Nabi (estimated)", "2005-05-01": "Labor Day", - "2005-05-09": "The Day Maldives Embraced Islam* (*estimated)", + "2005-05-09": "The Day Maldives Embraced Islam (estimated)", "2005-07-26": "Independence Day", - "2005-10-04": "Beginning of Ramadan* (*estimated)", - "2005-11-03": "Eid al-Fitr* (*estimated); Victory Day", - "2005-11-04": "Eid al-Fitr* (*estimated)", - "2005-11-05": "Eid al-Fitr* (*estimated)", + "2005-10-04": "Beginning of Ramadan (estimated)", + "2005-11-03": "Eid al-Fitr (estimated); Victory Day", + "2005-11-04": "Eid al-Fitr (estimated)", + "2005-11-05": "Eid al-Fitr (estimated)", "2005-11-11": "Republic Day", "2006-01-01": "New Year's Day", - "2006-01-09": "Hajj Day* (*estimated)", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha* (*estimated)", - "2006-01-12": "Eid al-Adha* (*estimated)", - "2006-01-13": "Eid al-Adha* (*estimated)", - "2006-01-31": "Islamic New Year* (*estimated)", - "2006-03-30": "National Day* (*estimated)", - "2006-04-10": "Mawlid al-Nabi* (*estimated)", - "2006-04-29": "The Day Maldives Embraced Islam* (*estimated)", + "2006-01-09": "Hajj Day (estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha (estimated)", + "2006-01-12": "Eid al-Adha (estimated)", + "2006-01-13": "Eid al-Adha (estimated)", + "2006-01-31": "Islamic New Year (estimated)", + "2006-03-30": "National Day (estimated)", + "2006-04-10": "Mawlid al-Nabi (estimated)", + "2006-04-29": "The Day Maldives Embraced Islam (estimated)", "2006-05-01": "Labor Day", "2006-07-26": "Independence Day", - "2006-09-24": "Beginning of Ramadan* (*estimated)", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-10-24": "Eid al-Fitr* (*estimated)", - "2006-10-25": "Eid al-Fitr* (*estimated)", + "2006-09-24": "Beginning of Ramadan (estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-10-24": "Eid al-Fitr (estimated)", + "2006-10-25": "Eid al-Fitr (estimated)", "2006-11-03": "Victory Day", "2006-11-11": "Republic Day", - "2006-12-30": "Hajj Day* (*estimated)", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha* (*estimated); New Year's Day", - "2007-01-02": "Eid al-Adha* (*estimated)", - "2007-01-03": "Eid al-Adha* (*estimated)", - "2007-01-20": "Islamic New Year* (*estimated)", - "2007-03-20": "National Day* (*estimated)", - "2007-03-31": "Mawlid al-Nabi* (*estimated)", - "2007-04-18": "The Day Maldives Embraced Islam* (*estimated)", + "2006-12-30": "Hajj Day (estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha (estimated); New Year's Day", + "2007-01-02": "Eid al-Adha (estimated)", + "2007-01-03": "Eid al-Adha (estimated)", + "2007-01-20": "Islamic New Year (estimated)", + "2007-03-20": "National Day (estimated)", + "2007-03-31": "Mawlid al-Nabi (estimated)", + "2007-04-18": "The Day Maldives Embraced Islam (estimated)", "2007-05-01": "Labor Day", "2007-07-26": "Independence Day", - "2007-09-13": "Beginning of Ramadan* (*estimated)", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-14": "Eid al-Fitr* (*estimated)", - "2007-10-15": "Eid al-Fitr* (*estimated)", + "2007-09-13": "Beginning of Ramadan (estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-14": "Eid al-Fitr (estimated)", + "2007-10-15": "Eid al-Fitr (estimated)", "2007-11-03": "Victory Day", "2007-11-11": "Republic Day", - "2007-12-19": "Hajj Day* (*estimated)", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha* (*estimated)", - "2007-12-22": "Eid al-Adha* (*estimated)", - "2007-12-23": "Eid al-Adha* (*estimated)", + "2007-12-19": "Hajj Day (estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha (estimated)", + "2007-12-22": "Eid al-Adha (estimated)", + "2007-12-23": "Eid al-Adha (estimated)", "2008-01-01": "New Year's Day", - "2008-01-10": "Islamic New Year* (*estimated)", - "2008-03-09": "National Day* (*estimated)", - "2008-03-20": "Mawlid al-Nabi* (*estimated)", - "2008-04-07": "The Day Maldives Embraced Islam* (*estimated)", + "2008-01-10": "Islamic New Year (estimated)", + "2008-03-09": "National Day (estimated)", + "2008-03-20": "Mawlid al-Nabi (estimated)", + "2008-04-07": "The Day Maldives Embraced Islam (estimated)", "2008-05-01": "Labor Day", "2008-07-26": "Independence Day", - "2008-09-01": "Beginning of Ramadan* (*estimated)", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-10-02": "Eid al-Fitr* (*estimated)", - "2008-10-03": "Eid al-Fitr* (*estimated)", + "2008-09-01": "Beginning of Ramadan (estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-10-02": "Eid al-Fitr (estimated)", + "2008-10-03": "Eid al-Fitr (estimated)", "2008-11-03": "Victory Day", "2008-11-11": "Republic Day", - "2008-12-07": "Hajj Day* (*estimated)", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha* (*estimated)", - "2008-12-10": "Eid al-Adha* (*estimated)", - "2008-12-11": "Eid al-Adha* (*estimated)", - "2008-12-29": "Islamic New Year* (*estimated)", + "2008-12-07": "Hajj Day (estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha (estimated)", + "2008-12-10": "Eid al-Adha (estimated)", + "2008-12-11": "Eid al-Adha (estimated)", + "2008-12-29": "Islamic New Year (estimated)", "2009-01-01": "New Year's Day", - "2009-02-26": "National Day* (*estimated)", - "2009-03-09": "Mawlid al-Nabi* (*estimated)", - "2009-03-28": "The Day Maldives Embraced Islam* (*estimated)", + "2009-02-26": "National Day (estimated)", + "2009-03-09": "Mawlid al-Nabi (estimated)", + "2009-03-28": "The Day Maldives Embraced Islam (estimated)", "2009-05-01": "Labor Day", "2009-07-26": "Independence Day", - "2009-08-22": "Beginning of Ramadan* (*estimated)", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr* (*estimated)", - "2009-09-22": "Eid al-Fitr* (*estimated)", + "2009-08-22": "Beginning of Ramadan (estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr (estimated)", + "2009-09-22": "Eid al-Fitr (estimated)", "2009-11-03": "Victory Day", "2009-11-11": "Republic Day", - "2009-11-26": "Hajj Day* (*estimated)", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha* (*estimated)", - "2009-11-29": "Eid al-Adha* (*estimated)", - "2009-11-30": "Eid al-Adha* (*estimated)", - "2009-12-18": "Islamic New Year* (*estimated)", + "2009-11-26": "Hajj Day (estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha (estimated)", + "2009-11-29": "Eid al-Adha (estimated)", + "2009-11-30": "Eid al-Adha (estimated)", + "2009-12-18": "Islamic New Year (estimated)", "2010-01-01": "New Year's Day", - "2010-02-15": "National Day* (*estimated)", - "2010-02-26": "Mawlid al-Nabi* (*estimated)", - "2010-03-17": "The Day Maldives Embraced Islam* (*estimated)", + "2010-02-15": "National Day (estimated)", + "2010-02-26": "Mawlid al-Nabi (estimated)", + "2010-03-17": "The Day Maldives Embraced Islam (estimated)", "2010-05-01": "Labor Day", "2010-07-26": "Independence Day", - "2010-08-11": "Beginning of Ramadan* (*estimated)", - "2010-09-10": "Eid al-Fitr* (*estimated)", - "2010-09-11": "Eid al-Fitr* (*estimated)", - "2010-09-12": "Eid al-Fitr* (*estimated)", + "2010-08-11": "Beginning of Ramadan (estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", + "2010-09-11": "Eid al-Fitr (estimated)", + "2010-09-12": "Eid al-Fitr (estimated)", "2010-11-03": "Victory Day", "2010-11-11": "Republic Day", - "2010-11-15": "Hajj Day* (*estimated)", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha* (*estimated)", - "2010-11-18": "Eid al-Adha* (*estimated)", - "2010-11-19": "Eid al-Adha* (*estimated)", - "2010-12-07": "Islamic New Year* (*estimated)", + "2010-11-15": "Hajj Day (estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha (estimated)", + "2010-11-18": "Eid al-Adha (estimated)", + "2010-11-19": "Eid al-Adha (estimated)", + "2010-12-07": "Islamic New Year (estimated)", "2011-01-01": "New Year's Day", - "2011-02-04": "National Day* (*estimated)", - "2011-02-15": "Mawlid al-Nabi* (*estimated)", - "2011-03-06": "The Day Maldives Embraced Islam* (*estimated)", + "2011-02-04": "National Day (estimated)", + "2011-02-15": "Mawlid al-Nabi (estimated)", + "2011-03-06": "The Day Maldives Embraced Islam (estimated)", "2011-05-01": "Labor Day", "2011-07-26": "Independence Day", - "2011-08-01": "Beginning of Ramadan* (*estimated)", - "2011-08-30": "Eid al-Fitr* (*estimated)", - "2011-08-31": "Eid al-Fitr* (*estimated)", - "2011-09-01": "Eid al-Fitr* (*estimated)", + "2011-08-01": "Beginning of Ramadan (estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", + "2011-08-31": "Eid al-Fitr (estimated)", + "2011-09-01": "Eid al-Fitr (estimated)", "2011-11-03": "Victory Day", - "2011-11-05": "Hajj Day* (*estimated)", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha* (*estimated)", - "2011-11-08": "Eid al-Adha* (*estimated)", - "2011-11-09": "Eid al-Adha* (*estimated)", + "2011-11-05": "Hajj Day (estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha (estimated)", + "2011-11-08": "Eid al-Adha (estimated)", + "2011-11-09": "Eid al-Adha (estimated)", "2011-11-11": "Republic Day", - "2011-11-26": "Islamic New Year* (*estimated)", + "2011-11-26": "Islamic New Year (estimated)", "2012-01-01": "New Year's Day", - "2012-01-24": "National Day* (*estimated)", - "2012-02-04": "Mawlid al-Nabi* (*estimated)", - "2012-02-23": "The Day Maldives Embraced Islam* (*estimated)", + "2012-01-24": "National Day (estimated)", + "2012-02-04": "Mawlid al-Nabi (estimated)", + "2012-02-23": "The Day Maldives Embraced Islam (estimated)", "2012-05-01": "Labor Day", - "2012-07-20": "Beginning of Ramadan* (*estimated)", + "2012-07-20": "Beginning of Ramadan (estimated)", "2012-07-26": "Independence Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr* (*estimated)", - "2012-08-21": "Eid al-Fitr* (*estimated)", - "2012-10-25": "Hajj Day* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha* (*estimated)", - "2012-10-28": "Eid al-Adha* (*estimated)", - "2012-10-29": "Eid al-Adha* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr (estimated)", + "2012-08-21": "Eid al-Fitr (estimated)", + "2012-10-25": "Hajj Day (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha (estimated)", + "2012-10-28": "Eid al-Adha (estimated)", + "2012-10-29": "Eid al-Adha (estimated)", "2012-11-03": "Victory Day", "2012-11-11": "Republic Day", - "2012-11-15": "Islamic New Year* (*estimated)", + "2012-11-15": "Islamic New Year (estimated)", "2013-01-01": "New Year's Day", - "2013-01-13": "National Day* (*estimated)", - "2013-01-24": "Mawlid al-Nabi* (*estimated)", - "2013-02-11": "The Day Maldives Embraced Islam* (*estimated)", + "2013-01-13": "National Day (estimated)", + "2013-01-24": "Mawlid al-Nabi (estimated)", + "2013-02-11": "The Day Maldives Embraced Islam (estimated)", "2013-05-01": "Labor Day", - "2013-07-09": "Beginning of Ramadan* (*estimated)", + "2013-07-09": "Beginning of Ramadan (estimated)", "2013-07-26": "Independence Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-08-09": "Eid al-Fitr* (*estimated)", - "2013-08-10": "Eid al-Fitr* (*estimated)", - "2013-10-14": "Hajj Day* (*estimated)", - "2013-10-15": "Eid al-Adha* (*estimated)", - "2013-10-16": "Eid al-Adha* (*estimated)", - "2013-10-17": "Eid al-Adha* (*estimated)", - "2013-10-18": "Eid al-Adha* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-08-09": "Eid al-Fitr (estimated)", + "2013-08-10": "Eid al-Fitr (estimated)", + "2013-10-14": "Hajj Day (estimated)", + "2013-10-15": "Eid al-Adha (estimated)", + "2013-10-16": "Eid al-Adha (estimated)", + "2013-10-17": "Eid al-Adha (estimated)", + "2013-10-18": "Eid al-Adha (estimated)", "2013-11-03": "Victory Day", - "2013-11-04": "Islamic New Year* (*estimated)", + "2013-11-04": "Islamic New Year (estimated)", "2013-11-11": "Republic Day", "2014-01-01": "New Year's Day", - "2014-01-02": "National Day* (*estimated)", - "2014-01-13": "Mawlid al-Nabi* (*estimated)", - "2014-02-01": "The Day Maldives Embraced Islam* (*estimated)", + "2014-01-02": "National Day (estimated)", + "2014-01-13": "Mawlid al-Nabi (estimated)", + "2014-02-01": "The Day Maldives Embraced Islam (estimated)", "2014-05-01": "Labor Day", - "2014-06-28": "Beginning of Ramadan* (*estimated)", + "2014-06-28": "Beginning of Ramadan (estimated)", "2014-07-26": "Independence Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-07-29": "Eid al-Fitr* (*estimated)", - "2014-07-30": "Eid al-Fitr* (*estimated)", - "2014-10-03": "Hajj Day* (*estimated)", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha* (*estimated)", - "2014-10-06": "Eid al-Adha* (*estimated)", - "2014-10-07": "Eid al-Adha* (*estimated)", - "2014-10-25": "Islamic New Year* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-07-29": "Eid al-Fitr (estimated)", + "2014-07-30": "Eid al-Fitr (estimated)", + "2014-10-03": "Hajj Day (estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha (estimated)", + "2014-10-06": "Eid al-Adha (estimated)", + "2014-10-07": "Eid al-Adha (estimated)", + "2014-10-25": "Islamic New Year (estimated)", "2014-11-03": "Victory Day", "2014-11-11": "Republic Day", - "2014-12-23": "National Day* (*estimated)", + "2014-12-23": "National Day (estimated)", "2015-01-01": "New Year's Day", - "2015-01-03": "Mawlid al-Nabi* (*estimated)", - "2015-01-21": "The Day Maldives Embraced Islam* (*estimated)", + "2015-01-03": "Mawlid al-Nabi (estimated)", + "2015-01-21": "The Day Maldives Embraced Islam (estimated)", "2015-05-01": "Labor Day", - "2015-06-18": "Beginning of Ramadan* (*estimated)", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-07-18": "Eid al-Fitr* (*estimated)", - "2015-07-19": "Eid al-Fitr* (*estimated)", + "2015-06-18": "Beginning of Ramadan (estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-07-18": "Eid al-Fitr (estimated)", + "2015-07-19": "Eid al-Fitr (estimated)", "2015-07-26": "Independence Day", - "2015-09-22": "Hajj Day* (*estimated)", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha* (*estimated)", - "2015-09-25": "Eid al-Adha* (*estimated)", - "2015-09-26": "Eid al-Adha* (*estimated)", - "2015-10-14": "Islamic New Year* (*estimated)", + "2015-09-22": "Hajj Day (estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha (estimated)", + "2015-09-25": "Eid al-Adha (estimated)", + "2015-09-26": "Eid al-Adha (estimated)", + "2015-10-14": "Islamic New Year (estimated)", "2015-11-03": "Victory Day", "2015-11-11": "Republic Day", - "2015-12-12": "National Day* (*estimated)", - "2015-12-23": "Mawlid al-Nabi* (*estimated)", + "2015-12-12": "National Day (estimated)", + "2015-12-23": "Mawlid al-Nabi (estimated)", "2016-01-01": "New Year's Day", - "2016-01-11": "The Day Maldives Embraced Islam* (*estimated)", + "2016-01-11": "The Day Maldives Embraced Islam (estimated)", "2016-05-01": "Labor Day", - "2016-06-06": "Beginning of Ramadan* (*estimated)", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-07-07": "Eid al-Fitr* (*estimated)", - "2016-07-08": "Eid al-Fitr* (*estimated)", + "2016-06-06": "Beginning of Ramadan (estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-07-07": "Eid al-Fitr (estimated)", + "2016-07-08": "Eid al-Fitr (estimated)", "2016-07-26": "Independence Day", - "2016-09-10": "Hajj Day* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha* (*estimated)", - "2016-09-13": "Eid al-Adha* (*estimated)", - "2016-09-14": "Eid al-Adha* (*estimated)", - "2016-10-02": "Islamic New Year* (*estimated)", + "2016-09-10": "Hajj Day (estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha (estimated)", + "2016-09-13": "Eid al-Adha (estimated)", + "2016-09-14": "Eid al-Adha (estimated)", + "2016-10-02": "Islamic New Year (estimated)", "2016-11-03": "Victory Day", "2016-11-11": "Republic Day", - "2016-11-30": "National Day* (*estimated)", - "2016-12-11": "Mawlid al-Nabi* (*estimated)", - "2016-12-30": "The Day Maldives Embraced Islam* (*estimated)", + "2016-11-30": "National Day (estimated)", + "2016-12-11": "Mawlid al-Nabi (estimated)", + "2016-12-30": "The Day Maldives Embraced Islam (estimated)", "2017-01-01": "New Year's Day", "2017-05-01": "Labor Day", - "2017-05-27": "Beginning of Ramadan* (*estimated)", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-06-26": "Eid al-Fitr* (*estimated)", - "2017-06-27": "Eid al-Fitr* (*estimated)", + "2017-05-27": "Beginning of Ramadan (estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-06-26": "Eid al-Fitr (estimated)", + "2017-06-27": "Eid al-Fitr (estimated)", "2017-07-26": "Independence Day", - "2017-08-31": "Hajj Day* (*estimated)", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha* (*estimated)", - "2017-09-03": "Eid al-Adha* (*estimated)", - "2017-09-04": "Eid al-Adha* (*estimated)", - "2017-09-21": "Islamic New Year* (*estimated)", + "2017-08-31": "Hajj Day (estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha (estimated)", + "2017-09-03": "Eid al-Adha (estimated)", + "2017-09-04": "Eid al-Adha (estimated)", + "2017-09-21": "Islamic New Year (estimated)", "2017-11-03": "Victory Day", "2017-11-11": "Republic Day", - "2017-11-19": "National Day* (*estimated)", - "2017-11-30": "Mawlid al-Nabi* (*estimated)", - "2017-12-19": "The Day Maldives Embraced Islam* (*estimated)", + "2017-11-19": "National Day (estimated)", + "2017-11-30": "Mawlid al-Nabi (estimated)", + "2017-12-19": "The Day Maldives Embraced Islam (estimated)", "2018-01-01": "New Year's Day", "2018-05-01": "Labor Day", - "2018-05-16": "Beginning of Ramadan* (*estimated)", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-06-16": "Eid al-Fitr* (*estimated)", - "2018-06-17": "Eid al-Fitr* (*estimated)", + "2018-05-16": "Beginning of Ramadan (estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-06-16": "Eid al-Fitr (estimated)", + "2018-06-17": "Eid al-Fitr (estimated)", "2018-07-26": "Independence Day", - "2018-08-20": "Hajj Day* (*estimated)", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha* (*estimated)", - "2018-08-23": "Eid al-Adha* (*estimated)", - "2018-08-24": "Eid al-Adha* (*estimated)", - "2018-09-11": "Islamic New Year* (*estimated)", + "2018-08-20": "Hajj Day (estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha (estimated)", + "2018-08-23": "Eid al-Adha (estimated)", + "2018-08-24": "Eid al-Adha (estimated)", + "2018-09-11": "Islamic New Year (estimated)", "2018-11-03": "Victory Day", - "2018-11-09": "National Day* (*estimated)", + "2018-11-09": "National Day (estimated)", "2018-11-11": "Republic Day", - "2018-11-20": "Mawlid al-Nabi* (*estimated)", - "2018-12-08": "The Day Maldives Embraced Islam* (*estimated)", + "2018-11-20": "Mawlid al-Nabi (estimated)", + "2018-12-08": "The Day Maldives Embraced Islam (estimated)", "2019-01-01": "New Year's Day", "2019-05-01": "Labor Day", - "2019-05-06": "Beginning of Ramadan* (*estimated)", - "2019-06-04": "Eid al-Fitr* (*estimated)", - "2019-06-05": "Eid al-Fitr* (*estimated)", - "2019-06-06": "Eid al-Fitr* (*estimated)", + "2019-05-06": "Beginning of Ramadan (estimated)", + "2019-06-04": "Eid al-Fitr (estimated)", + "2019-06-05": "Eid al-Fitr (estimated)", + "2019-06-06": "Eid al-Fitr (estimated)", "2019-07-26": "Independence Day", - "2019-08-10": "Hajj Day* (*estimated)", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha* (*estimated)", - "2019-08-13": "Eid al-Adha* (*estimated)", - "2019-08-14": "Eid al-Adha* (*estimated)", - "2019-08-31": "Islamic New Year* (*estimated)", - "2019-10-29": "National Day* (*estimated)", + "2019-08-10": "Hajj Day (estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha (estimated)", + "2019-08-13": "Eid al-Adha (estimated)", + "2019-08-14": "Eid al-Adha (estimated)", + "2019-08-31": "Islamic New Year (estimated)", + "2019-10-29": "National Day (estimated)", "2019-11-03": "Victory Day", - "2019-11-09": "Mawlid al-Nabi* (*estimated)", + "2019-11-09": "Mawlid al-Nabi (estimated)", "2019-11-11": "Republic Day", - "2019-11-28": "The Day Maldives Embraced Islam* (*estimated)", + "2019-11-28": "The Day Maldives Embraced Islam (estimated)", "2020-01-01": "New Year's Day", - "2020-04-24": "Beginning of Ramadan* (*estimated)", + "2020-04-24": "Beginning of Ramadan (estimated)", "2020-05-01": "Labor Day", - "2020-05-24": "Eid al-Fitr* (*estimated)", - "2020-05-25": "Eid al-Fitr* (*estimated)", - "2020-05-26": "Eid al-Fitr* (*estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", + "2020-05-25": "Eid al-Fitr (estimated)", + "2020-05-26": "Eid al-Fitr (estimated)", "2020-07-26": "Independence Day", - "2020-07-30": "Hajj Day* (*estimated)", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha* (*estimated)", - "2020-08-02": "Eid al-Adha* (*estimated)", - "2020-08-03": "Eid al-Adha* (*estimated)", - "2020-08-20": "Islamic New Year* (*estimated)", - "2020-10-18": "National Day* (*estimated)", - "2020-10-29": "Mawlid al-Nabi* (*estimated)", + "2020-07-30": "Hajj Day (estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha (estimated)", + "2020-08-02": "Eid al-Adha (estimated)", + "2020-08-03": "Eid al-Adha (estimated)", + "2020-08-20": "Islamic New Year (estimated)", + "2020-10-18": "National Day (estimated)", + "2020-10-29": "Mawlid al-Nabi (estimated)", "2020-11-03": "Victory Day", "2020-11-11": "Republic Day", - "2020-11-16": "The Day Maldives Embraced Islam* (*estimated)", + "2020-11-16": "The Day Maldives Embraced Islam (estimated)", "2021-01-01": "New Year's Day", - "2021-04-13": "Beginning of Ramadan* (*estimated)", + "2021-04-13": "Beginning of Ramadan (estimated)", "2021-05-01": "Labor Day", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-05-14": "Eid al-Fitr* (*estimated)", - "2021-05-15": "Eid al-Fitr* (*estimated)", - "2021-07-19": "Hajj Day* (*estimated)", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha* (*estimated)", - "2021-07-22": "Eid al-Adha* (*estimated)", - "2021-07-23": "Eid al-Adha* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-05-14": "Eid al-Fitr (estimated)", + "2021-05-15": "Eid al-Fitr (estimated)", + "2021-07-19": "Hajj Day (estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha (estimated)", + "2021-07-22": "Eid al-Adha (estimated)", + "2021-07-23": "Eid al-Adha (estimated)", "2021-07-26": "Independence Day", - "2021-08-09": "Islamic New Year* (*estimated)", - "2021-10-07": "National Day* (*estimated)", - "2021-10-18": "Mawlid al-Nabi* (*estimated)", + "2021-08-09": "Islamic New Year (estimated)", + "2021-10-07": "National Day (estimated)", + "2021-10-18": "Mawlid al-Nabi (estimated)", "2021-11-03": "Victory Day", - "2021-11-06": "The Day Maldives Embraced Islam* (*estimated)", + "2021-11-06": "The Day Maldives Embraced Islam (estimated)", "2021-11-11": "Republic Day", "2022-01-01": "New Year's Day", - "2022-04-02": "Beginning of Ramadan* (*estimated)", + "2022-04-02": "Beginning of Ramadan (estimated)", "2022-05-01": "Labor Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", - "2022-05-03": "Eid al-Fitr* (*estimated)", - "2022-05-04": "Eid al-Fitr* (*estimated)", - "2022-07-08": "Hajj Day* (*estimated)", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha* (*estimated)", - "2022-07-11": "Eid al-Adha* (*estimated)", - "2022-07-12": "Eid al-Adha* (*estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", + "2022-05-03": "Eid al-Fitr (estimated)", + "2022-05-04": "Eid al-Fitr (estimated)", + "2022-07-08": "Hajj Day (estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha (estimated)", + "2022-07-11": "Eid al-Adha (estimated)", + "2022-07-12": "Eid al-Adha (estimated)", "2022-07-26": "Independence Day", - "2022-07-30": "Islamic New Year* (*estimated)", - "2022-09-27": "National Day* (*estimated)", - "2022-10-08": "Mawlid al-Nabi* (*estimated)", - "2022-10-26": "The Day Maldives Embraced Islam* (*estimated)", + "2022-07-30": "Islamic New Year (estimated)", + "2022-09-27": "National Day (estimated)", + "2022-10-08": "Mawlid al-Nabi (estimated)", + "2022-10-26": "The Day Maldives Embraced Islam (estimated)", "2022-11-03": "Victory Day", "2022-11-11": "Republic Day", "2023-01-01": "New Year's Day", - "2023-03-23": "Beginning of Ramadan* (*estimated)", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-22": "Eid al-Fitr* (*estimated)", - "2023-04-23": "Eid al-Fitr* (*estimated)", + "2023-03-23": "Beginning of Ramadan (estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", + "2023-04-22": "Eid al-Fitr (estimated)", + "2023-04-23": "Eid al-Fitr (estimated)", "2023-05-01": "Labor Day", - "2023-06-27": "Hajj Day* (*estimated)", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha* (*estimated)", - "2023-06-30": "Eid al-Adha* (*estimated)", - "2023-07-01": "Eid al-Adha* (*estimated)", - "2023-07-19": "Islamic New Year* (*estimated)", + "2023-06-27": "Hajj Day (estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha (estimated)", + "2023-06-30": "Eid al-Adha (estimated)", + "2023-07-01": "Eid al-Adha (estimated)", + "2023-07-19": "Islamic New Year (estimated)", "2023-07-26": "Independence Day", - "2023-09-16": "National Day* (*estimated)", - "2023-09-27": "Mawlid al-Nabi* (*estimated)", - "2023-10-16": "The Day Maldives Embraced Islam* (*estimated)", + "2023-09-16": "National Day (estimated)", + "2023-09-27": "Mawlid al-Nabi (estimated)", + "2023-10-16": "The Day Maldives Embraced Islam (estimated)", "2023-11-03": "Victory Day", "2023-11-11": "Republic Day", "2024-01-01": "New Year's Day", - "2024-03-11": "Beginning of Ramadan* (*estimated)", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr* (*estimated)", - "2024-04-12": "Eid al-Fitr* (*estimated)", + "2024-03-11": "Beginning of Ramadan (estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr (estimated)", + "2024-04-12": "Eid al-Fitr (estimated)", "2024-05-01": "Labor Day", - "2024-06-15": "Hajj Day* (*estimated)", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha* (*estimated)", - "2024-06-18": "Eid al-Adha* (*estimated)", - "2024-06-19": "Eid al-Adha* (*estimated)", - "2024-07-07": "Islamic New Year* (*estimated)", + "2024-06-15": "Hajj Day (estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated)", + "2024-06-18": "Eid al-Adha (estimated)", + "2024-06-19": "Eid al-Adha (estimated)", + "2024-07-07": "Islamic New Year (estimated)", "2024-07-26": "Independence Day", - "2024-09-04": "National Day* (*estimated)", - "2024-09-15": "Mawlid al-Nabi* (*estimated)", - "2024-10-04": "The Day Maldives Embraced Islam* (*estimated)", + "2024-09-04": "National Day (estimated)", + "2024-09-15": "Mawlid al-Nabi (estimated)", + "2024-10-04": "The Day Maldives Embraced Islam (estimated)", "2024-11-03": "Victory Day", "2024-11-11": "Republic Day", "2025-01-01": "New Year's Day", - "2025-03-01": "Beginning of Ramadan* (*estimated)", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr* (*estimated)", - "2025-04-01": "Eid al-Fitr* (*estimated)", + "2025-03-01": "Beginning of Ramadan (estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated)", + "2025-04-01": "Eid al-Fitr (estimated)", "2025-05-01": "Labor Day", - "2025-06-05": "Hajj Day* (*estimated)", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha* (*estimated)", - "2025-06-08": "Eid al-Adha* (*estimated)", - "2025-06-09": "Eid al-Adha* (*estimated)", - "2025-06-26": "Islamic New Year* (*estimated)", + "2025-06-05": "Hajj Day (estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha (estimated)", + "2025-06-08": "Eid al-Adha (estimated)", + "2025-06-09": "Eid al-Adha (estimated)", + "2025-06-26": "Islamic New Year (estimated)", "2025-07-26": "Independence Day", - "2025-08-24": "National Day* (*estimated)", - "2025-09-04": "Mawlid al-Nabi* (*estimated)", - "2025-09-23": "The Day Maldives Embraced Islam* (*estimated)", + "2025-08-24": "National Day (estimated)", + "2025-09-04": "Mawlid al-Nabi (estimated)", + "2025-09-23": "The Day Maldives Embraced Islam (estimated)", "2025-11-03": "Victory Day", "2025-11-11": "Republic Day", "2026-01-01": "New Year's Day", - "2026-02-18": "Beginning of Ramadan* (*estimated)", - "2026-03-20": "Eid al-Fitr* (*estimated)", - "2026-03-21": "Eid al-Fitr* (*estimated)", - "2026-03-22": "Eid al-Fitr* (*estimated)", + "2026-02-18": "Beginning of Ramadan (estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Eid al-Fitr (estimated)", + "2026-03-22": "Eid al-Fitr (estimated)", "2026-05-01": "Labor Day", - "2026-05-26": "Hajj Day* (*estimated)", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha* (*estimated)", - "2026-05-29": "Eid al-Adha* (*estimated)", - "2026-05-30": "Eid al-Adha* (*estimated)", - "2026-06-16": "Islamic New Year* (*estimated)", + "2026-05-26": "Hajj Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha (estimated)", + "2026-05-29": "Eid al-Adha (estimated)", + "2026-05-30": "Eid al-Adha (estimated)", + "2026-06-16": "Islamic New Year (estimated)", "2026-07-26": "Independence Day", - "2026-08-14": "National Day* (*estimated)", - "2026-08-25": "Mawlid al-Nabi* (*estimated)", - "2026-09-12": "The Day Maldives Embraced Islam* (*estimated)", + "2026-08-14": "National Day (estimated)", + "2026-08-25": "Mawlid al-Nabi (estimated)", + "2026-09-12": "The Day Maldives Embraced Islam (estimated)", "2026-11-03": "Victory Day", "2026-11-11": "Republic Day", "2027-01-01": "New Year's Day", - "2027-02-08": "Beginning of Ramadan* (*estimated)", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr* (*estimated)", - "2027-03-11": "Eid al-Fitr* (*estimated)", + "2027-02-08": "Beginning of Ramadan (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr (estimated)", + "2027-03-11": "Eid al-Fitr (estimated)", "2027-05-01": "Labor Day", - "2027-05-15": "Hajj Day* (*estimated)", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha* (*estimated)", - "2027-05-18": "Eid al-Adha* (*estimated)", - "2027-05-19": "Eid al-Adha* (*estimated)", - "2027-06-06": "Islamic New Year* (*estimated)", + "2027-05-15": "Hajj Day (estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated)", + "2027-05-18": "Eid al-Adha (estimated)", + "2027-05-19": "Eid al-Adha (estimated)", + "2027-06-06": "Islamic New Year (estimated)", "2027-07-26": "Independence Day", - "2027-08-03": "National Day* (*estimated)", - "2027-08-14": "Mawlid al-Nabi* (*estimated)", - "2027-09-02": "The Day Maldives Embraced Islam* (*estimated)", + "2027-08-03": "National Day (estimated)", + "2027-08-14": "Mawlid al-Nabi (estimated)", + "2027-09-02": "The Day Maldives Embraced Islam (estimated)", "2027-11-03": "Victory Day", "2027-11-11": "Republic Day", "2028-01-01": "New Year's Day", - "2028-01-28": "Beginning of Ramadan* (*estimated)", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr* (*estimated)", - "2028-02-28": "Eid al-Fitr* (*estimated)", + "2028-01-28": "Beginning of Ramadan (estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr (estimated)", + "2028-02-28": "Eid al-Fitr (estimated)", "2028-05-01": "Labor Day", - "2028-05-04": "Hajj Day* (*estimated)", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha* (*estimated)", - "2028-05-07": "Eid al-Adha* (*estimated)", - "2028-05-08": "Eid al-Adha* (*estimated)", - "2028-05-25": "Islamic New Year* (*estimated)", - "2028-07-23": "National Day* (*estimated)", + "2028-05-04": "Hajj Day (estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha (estimated)", + "2028-05-07": "Eid al-Adha (estimated)", + "2028-05-08": "Eid al-Adha (estimated)", + "2028-05-25": "Islamic New Year (estimated)", + "2028-07-23": "National Day (estimated)", "2028-07-26": "Independence Day", - "2028-08-03": "Mawlid al-Nabi* (*estimated)", - "2028-08-22": "The Day Maldives Embraced Islam* (*estimated)", + "2028-08-03": "Mawlid al-Nabi (estimated)", + "2028-08-22": "The Day Maldives Embraced Islam (estimated)", "2028-11-03": "Victory Day", "2028-11-11": "Republic Day", "2029-01-01": "New Year's Day", - "2029-01-16": "Beginning of Ramadan* (*estimated)", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr* (*estimated)", - "2029-02-16": "Eid al-Fitr* (*estimated)", - "2029-04-23": "Hajj Day* (*estimated)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha* (*estimated)", - "2029-04-26": "Eid al-Adha* (*estimated)", - "2029-04-27": "Eid al-Adha* (*estimated)", + "2029-01-16": "Beginning of Ramadan (estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr (estimated)", + "2029-02-16": "Eid al-Fitr (estimated)", + "2029-04-23": "Hajj Day (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha (estimated)", + "2029-04-26": "Eid al-Adha (estimated)", + "2029-04-27": "Eid al-Adha (estimated)", "2029-05-01": "Labor Day", - "2029-05-14": "Islamic New Year* (*estimated)", - "2029-07-13": "National Day* (*estimated)", - "2029-07-24": "Mawlid al-Nabi* (*estimated)", + "2029-05-14": "Islamic New Year (estimated)", + "2029-07-13": "National Day (estimated)", + "2029-07-24": "Mawlid al-Nabi (estimated)", "2029-07-26": "Independence Day", - "2029-08-11": "The Day Maldives Embraced Islam* (*estimated)", + "2029-08-11": "The Day Maldives Embraced Islam (estimated)", "2029-11-03": "Victory Day", "2029-11-11": "Republic Day", "2030-01-01": "New Year's Day", - "2030-01-05": "Beginning of Ramadan* (*estimated)", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr* (*estimated)", - "2030-02-06": "Eid al-Fitr* (*estimated)", - "2030-04-12": "Hajj Day* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha* (*estimated)", - "2030-04-15": "Eid al-Adha* (*estimated)", - "2030-04-16": "Eid al-Adha* (*estimated)", + "2030-01-05": "Beginning of Ramadan (estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr (estimated)", + "2030-02-06": "Eid al-Fitr (estimated)", + "2030-04-12": "Hajj Day (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha (estimated)", + "2030-04-15": "Eid al-Adha (estimated)", + "2030-04-16": "Eid al-Adha (estimated)", "2030-05-01": "Labor Day", - "2030-05-03": "Islamic New Year* (*estimated)", - "2030-07-02": "National Day* (*estimated)", - "2030-07-13": "Mawlid al-Nabi* (*estimated)", + "2030-05-03": "Islamic New Year (estimated)", + "2030-07-02": "National Day (estimated)", + "2030-07-13": "Mawlid al-Nabi (estimated)", "2030-07-26": "Independence Day", - "2030-08-01": "The Day Maldives Embraced Islam* (*estimated)", + "2030-08-01": "The Day Maldives Embraced Islam (estimated)", "2030-11-03": "Victory Day", "2030-11-11": "Republic Day", - "2030-12-26": "Beginning of Ramadan* (*estimated)", + "2030-12-26": "Beginning of Ramadan (estimated)", "2031-01-01": "New Year's Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr* (*estimated)", - "2031-01-26": "Eid al-Fitr* (*estimated)", - "2031-04-01": "Hajj Day* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha* (*estimated)", - "2031-04-04": "Eid al-Adha* (*estimated)", - "2031-04-05": "Eid al-Adha* (*estimated)", - "2031-04-23": "Islamic New Year* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr (estimated)", + "2031-01-26": "Eid al-Fitr (estimated)", + "2031-04-01": "Hajj Day (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha (estimated)", + "2031-04-04": "Eid al-Adha (estimated)", + "2031-04-05": "Eid al-Adha (estimated)", + "2031-04-23": "Islamic New Year (estimated)", "2031-05-01": "Labor Day", - "2031-06-21": "National Day* (*estimated)", - "2031-07-02": "Mawlid al-Nabi* (*estimated)", - "2031-07-21": "The Day Maldives Embraced Islam* (*estimated)", + "2031-06-21": "National Day (estimated)", + "2031-07-02": "Mawlid al-Nabi (estimated)", + "2031-07-21": "The Day Maldives Embraced Islam (estimated)", "2031-07-26": "Independence Day", "2031-11-03": "Victory Day", "2031-11-11": "Republic Day", - "2031-12-15": "Beginning of Ramadan* (*estimated)", + "2031-12-15": "Beginning of Ramadan (estimated)", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-01-15": "Eid al-Fitr* (*estimated)", - "2032-01-16": "Eid al-Fitr* (*estimated)", - "2032-03-21": "Hajj Day* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha* (*estimated)", - "2032-03-24": "Eid al-Adha* (*estimated)", - "2032-03-25": "Eid al-Adha* (*estimated)", - "2032-04-11": "Islamic New Year* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-01-15": "Eid al-Fitr (estimated)", + "2032-01-16": "Eid al-Fitr (estimated)", + "2032-03-21": "Hajj Day (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha (estimated)", + "2032-03-24": "Eid al-Adha (estimated)", + "2032-03-25": "Eid al-Adha (estimated)", + "2032-04-11": "Islamic New Year (estimated)", "2032-05-01": "Labor Day", - "2032-06-09": "National Day* (*estimated)", - "2032-06-20": "Mawlid al-Nabi* (*estimated)", - "2032-07-09": "The Day Maldives Embraced Islam* (*estimated)", + "2032-06-09": "National Day (estimated)", + "2032-06-20": "Mawlid al-Nabi (estimated)", + "2032-07-09": "The Day Maldives Embraced Islam (estimated)", "2032-07-26": "Independence Day", "2032-11-03": "Victory Day", "2032-11-11": "Republic Day", - "2032-12-04": "Beginning of Ramadan* (*estimated)", + "2032-12-04": "Beginning of Ramadan (estimated)", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr* (*estimated)", - "2033-01-04": "Eid al-Fitr* (*estimated)", - "2033-03-10": "Hajj Day* (*estimated)", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-03-13": "Eid al-Adha* (*estimated)", - "2033-03-14": "Eid al-Adha* (*estimated)", - "2033-04-01": "Islamic New Year* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (estimated)", + "2033-01-04": "Eid al-Fitr (estimated)", + "2033-03-10": "Hajj Day (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-03-13": "Eid al-Adha (estimated)", + "2033-03-14": "Eid al-Adha (estimated)", + "2033-04-01": "Islamic New Year (estimated)", "2033-05-01": "Labor Day", - "2033-05-29": "National Day* (*estimated)", - "2033-06-09": "Mawlid al-Nabi* (*estimated)", - "2033-06-28": "The Day Maldives Embraced Islam* (*estimated)", + "2033-05-29": "National Day (estimated)", + "2033-06-09": "Mawlid al-Nabi (estimated)", + "2033-06-28": "The Day Maldives Embraced Islam (estimated)", "2033-07-26": "Independence Day", "2033-11-03": "Victory Day", "2033-11-11": "Republic Day", - "2033-11-23": "Beginning of Ramadan* (*estimated)", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr* (*estimated)", - "2033-12-25": "Eid al-Fitr* (*estimated)", + "2033-11-23": "Beginning of Ramadan (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (estimated)", + "2033-12-25": "Eid al-Fitr (estimated)", "2034-01-01": "New Year's Day", - "2034-02-28": "Hajj Day* (*estimated)", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-03": "Eid al-Adha* (*estimated)", - "2034-03-04": "Eid al-Adha* (*estimated)", - "2034-03-21": "Islamic New Year* (*estimated)", + "2034-02-28": "Hajj Day (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-03": "Eid al-Adha (estimated)", + "2034-03-04": "Eid al-Adha (estimated)", + "2034-03-21": "Islamic New Year (estimated)", "2034-05-01": "Labor Day", - "2034-05-19": "National Day* (*estimated)", - "2034-05-30": "Mawlid al-Nabi* (*estimated)", - "2034-06-17": "The Day Maldives Embraced Islam* (*estimated)", + "2034-05-19": "National Day (estimated)", + "2034-05-30": "Mawlid al-Nabi (estimated)", + "2034-06-17": "The Day Maldives Embraced Islam (estimated)", "2034-07-26": "Independence Day", "2034-11-03": "Victory Day", "2034-11-11": "Republic Day", - "2034-11-12": "Beginning of Ramadan* (*estimated)", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr* (*estimated)", - "2034-12-14": "Eid al-Fitr* (*estimated)", + "2034-11-12": "Beginning of Ramadan (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (estimated)", + "2034-12-14": "Eid al-Fitr (estimated)", "2035-01-01": "New Year's Day", - "2035-02-17": "Hajj Day* (*estimated)", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", - "2035-02-20": "Eid al-Adha* (*estimated)", - "2035-02-21": "Eid al-Adha* (*estimated)", - "2035-03-11": "Islamic New Year* (*estimated)", + "2035-02-17": "Hajj Day (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", + "2035-02-20": "Eid al-Adha (estimated)", + "2035-02-21": "Eid al-Adha (estimated)", + "2035-03-11": "Islamic New Year (estimated)", "2035-05-01": "Labor Day", - "2035-05-09": "National Day* (*estimated)", - "2035-05-20": "Mawlid al-Nabi* (*estimated)", - "2035-06-07": "The Day Maldives Embraced Islam* (*estimated)", + "2035-05-09": "National Day (estimated)", + "2035-05-20": "Mawlid al-Nabi (estimated)", + "2035-06-07": "The Day Maldives Embraced Islam (estimated)", "2035-07-26": "Independence Day", - "2035-11-01": "Beginning of Ramadan* (*estimated)", + "2035-11-01": "Beginning of Ramadan (estimated)", "2035-11-03": "Victory Day", "2035-11-11": "Republic Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr* (*estimated)", - "2035-12-03": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (estimated)", + "2035-12-03": "Eid al-Fitr (estimated)", "2036-01-01": "New Year's Day", - "2036-02-06": "Hajj Day* (*estimated)", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-02-09": "Eid al-Adha* (*estimated)", - "2036-02-10": "Eid al-Adha* (*estimated)", - "2036-02-28": "Islamic New Year* (*estimated)", - "2036-04-27": "National Day* (*estimated)", + "2036-02-06": "Hajj Day (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-02-09": "Eid al-Adha (estimated)", + "2036-02-10": "Eid al-Adha (estimated)", + "2036-02-28": "Islamic New Year (estimated)", + "2036-04-27": "National Day (estimated)", "2036-05-01": "Labor Day", - "2036-05-08": "Mawlid al-Nabi* (*estimated)", - "2036-05-27": "The Day Maldives Embraced Islam* (*estimated)", + "2036-05-08": "Mawlid al-Nabi (estimated)", + "2036-05-27": "The Day Maldives Embraced Islam (estimated)", "2036-07-26": "Independence Day", - "2036-10-20": "Beginning of Ramadan* (*estimated)", + "2036-10-20": "Beginning of Ramadan (estimated)", "2036-11-03": "Victory Day", "2036-11-11": "Republic Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr* (*estimated)", - "2036-11-21": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (estimated)", + "2036-11-21": "Eid al-Fitr (estimated)", "2037-01-01": "New Year's Day", - "2037-01-25": "Hajj Day* (*estimated)", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-01-28": "Eid al-Adha* (*estimated)", - "2037-01-29": "Eid al-Adha* (*estimated)", - "2037-02-16": "Islamic New Year* (*estimated)", - "2037-04-17": "National Day* (*estimated)", - "2037-04-28": "Mawlid al-Nabi* (*estimated)", + "2037-01-25": "Hajj Day (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-01-28": "Eid al-Adha (estimated)", + "2037-01-29": "Eid al-Adha (estimated)", + "2037-02-16": "Islamic New Year (estimated)", + "2037-04-17": "National Day (estimated)", + "2037-04-28": "Mawlid al-Nabi (estimated)", "2037-05-01": "Labor Day", - "2037-05-16": "The Day Maldives Embraced Islam* (*estimated)", + "2037-05-16": "The Day Maldives Embraced Islam (estimated)", "2037-07-26": "Independence Day", - "2037-10-10": "Beginning of Ramadan* (*estimated)", + "2037-10-10": "Beginning of Ramadan (estimated)", "2037-11-03": "Victory Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr* (*estimated)", - "2037-11-10": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated)", + "2037-11-10": "Eid al-Fitr (estimated)", "2037-11-11": "Republic Day", "2038-01-01": "New Year's Day", - "2038-01-15": "Hajj Day* (*estimated)", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", - "2038-01-18": "Eid al-Adha* (*estimated)", - "2038-01-19": "Eid al-Adha* (*estimated)", - "2038-02-05": "Islamic New Year* (*estimated)", - "2038-04-06": "National Day* (*estimated)", - "2038-04-17": "Mawlid al-Nabi* (*estimated)", + "2038-01-15": "Hajj Day (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", + "2038-01-18": "Eid al-Adha (estimated)", + "2038-01-19": "Eid al-Adha (estimated)", + "2038-02-05": "Islamic New Year (estimated)", + "2038-04-06": "National Day (estimated)", + "2038-04-17": "Mawlid al-Nabi (estimated)", "2038-05-01": "Labor Day", - "2038-05-05": "The Day Maldives Embraced Islam* (*estimated)", + "2038-05-05": "The Day Maldives Embraced Islam (estimated)", "2038-07-26": "Independence Day", - "2038-09-30": "Beginning of Ramadan* (*estimated)", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr* (*estimated)", - "2038-10-31": "Eid al-Fitr* (*estimated)", + "2038-09-30": "Beginning of Ramadan (estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr (estimated)", + "2038-10-31": "Eid al-Fitr (estimated)", "2038-11-03": "Victory Day", "2038-11-11": "Republic Day", "2039-01-01": "New Year's Day", - "2039-01-04": "Hajj Day* (*estimated)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", - "2039-01-07": "Eid al-Adha* (*estimated)", - "2039-01-08": "Eid al-Adha* (*estimated)", - "2039-01-26": "Islamic New Year* (*estimated)", - "2039-03-26": "National Day* (*estimated)", - "2039-04-06": "Mawlid al-Nabi* (*estimated)", - "2039-04-24": "The Day Maldives Embraced Islam* (*estimated)", + "2039-01-04": "Hajj Day (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", + "2039-01-07": "Eid al-Adha (estimated)", + "2039-01-08": "Eid al-Adha (estimated)", + "2039-01-26": "Islamic New Year (estimated)", + "2039-03-26": "National Day (estimated)", + "2039-04-06": "Mawlid al-Nabi (estimated)", + "2039-04-24": "The Day Maldives Embraced Islam (estimated)", "2039-05-01": "Labor Day", "2039-07-26": "Independence Day", - "2039-09-19": "Beginning of Ramadan* (*estimated)", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr* (*estimated)", - "2039-10-21": "Eid al-Fitr* (*estimated)", + "2039-09-19": "Beginning of Ramadan (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (estimated)", + "2039-10-21": "Eid al-Fitr (estimated)", "2039-11-03": "Victory Day", "2039-11-11": "Republic Day", - "2039-12-25": "Hajj Day* (*estimated)", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", - "2039-12-28": "Eid al-Adha* (*estimated)", - "2039-12-29": "Eid al-Adha* (*estimated)", + "2039-12-25": "Hajj Day (estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", + "2039-12-28": "Eid al-Adha (estimated)", + "2039-12-29": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", - "2040-01-15": "Islamic New Year* (*estimated)", - "2040-03-14": "National Day* (*estimated)", - "2040-03-25": "Mawlid al-Nabi* (*estimated)", - "2040-04-13": "The Day Maldives Embraced Islam* (*estimated)", + "2040-01-15": "Islamic New Year (estimated)", + "2040-03-14": "National Day (estimated)", + "2040-03-25": "Mawlid al-Nabi (estimated)", + "2040-04-13": "The Day Maldives Embraced Islam (estimated)", "2040-05-01": "Labor Day", "2040-07-26": "Independence Day", - "2040-09-07": "Beginning of Ramadan* (*estimated)", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated)", - "2040-10-09": "Eid al-Fitr* (*estimated)", + "2040-09-07": "Beginning of Ramadan (estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated)", + "2040-10-09": "Eid al-Fitr (estimated)", "2040-11-03": "Victory Day", "2040-11-11": "Republic Day", - "2040-12-13": "Hajj Day* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", - "2040-12-16": "Eid al-Adha* (*estimated)", - "2040-12-17": "Eid al-Adha* (*estimated)", + "2040-12-13": "Hajj Day (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", + "2040-12-16": "Eid al-Adha (estimated)", + "2040-12-17": "Eid al-Adha (estimated)", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", - "2041-03-04": "National Day* (*estimated)", - "2041-03-15": "Mawlid al-Nabi* (*estimated)", - "2041-04-02": "The Day Maldives Embraced Islam* (*estimated)", + "2041-01-04": "Islamic New Year (estimated)", + "2041-03-04": "National Day (estimated)", + "2041-03-15": "Mawlid al-Nabi (estimated)", + "2041-04-02": "The Day Maldives Embraced Islam (estimated)", "2041-05-01": "Labor Day", "2041-07-26": "Independence Day", - "2041-08-28": "Beginning of Ramadan* (*estimated)", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr* (*estimated)", - "2041-09-28": "Eid al-Fitr* (*estimated)", + "2041-08-28": "Beginning of Ramadan (estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (estimated)", + "2041-09-28": "Eid al-Fitr (estimated)", "2041-11-03": "Victory Day", "2041-11-11": "Republic Day", - "2041-12-03": "Hajj Day* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", - "2041-12-06": "Eid al-Adha* (*estimated)", - "2041-12-07": "Eid al-Adha* (*estimated)", - "2041-12-24": "Islamic New Year* (*estimated)", + "2041-12-03": "Hajj Day (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", + "2041-12-06": "Eid al-Adha (estimated)", + "2041-12-07": "Eid al-Adha (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2042-01-01": "New Year's Day", - "2042-02-21": "National Day* (*estimated)", - "2042-03-04": "Mawlid al-Nabi* (*estimated)", - "2042-03-23": "The Day Maldives Embraced Islam* (*estimated)", + "2042-02-21": "National Day (estimated)", + "2042-03-04": "Mawlid al-Nabi (estimated)", + "2042-03-23": "The Day Maldives Embraced Islam (estimated)", "2042-05-01": "Labor Day", "2042-07-26": "Independence Day", - "2042-08-17": "Beginning of Ramadan* (*estimated)", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr* (*estimated)", - "2042-09-17": "Eid al-Fitr* (*estimated)", + "2042-08-17": "Beginning of Ramadan (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (estimated)", + "2042-09-17": "Eid al-Fitr (estimated)", "2042-11-03": "Victory Day", "2042-11-11": "Republic Day", - "2042-11-22": "Hajj Day* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-11-25": "Eid al-Adha* (*estimated)", - "2042-11-26": "Eid al-Adha* (*estimated)", - "2042-12-14": "Islamic New Year* (*estimated)", + "2042-11-22": "Hajj Day (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-11-25": "Eid al-Adha (estimated)", + "2042-11-26": "Eid al-Adha (estimated)", + "2042-12-14": "Islamic New Year (estimated)", "2043-01-01": "New Year's Day", - "2043-02-11": "National Day* (*estimated)", - "2043-02-22": "Mawlid al-Nabi* (*estimated)", - "2043-03-12": "The Day Maldives Embraced Islam* (*estimated)", + "2043-02-11": "National Day (estimated)", + "2043-02-22": "Mawlid al-Nabi (estimated)", + "2043-03-12": "The Day Maldives Embraced Islam (estimated)", "2043-05-01": "Labor Day", "2043-07-26": "Independence Day", - "2043-08-06": "Beginning of Ramadan* (*estimated)", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr* (*estimated)", - "2043-09-06": "Eid al-Fitr* (*estimated)", + "2043-08-06": "Beginning of Ramadan (estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (estimated)", + "2043-09-06": "Eid al-Fitr (estimated)", "2043-11-03": "Victory Day", - "2043-11-11": "Hajj Day* (*estimated); Republic Day", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-11-14": "Eid al-Adha* (*estimated)", - "2043-11-15": "Eid al-Adha* (*estimated)", - "2043-12-03": "Islamic New Year* (*estimated)", + "2043-11-11": "Hajj Day (estimated); Republic Day", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-11-14": "Eid al-Adha (estimated)", + "2043-11-15": "Eid al-Adha (estimated)", + "2043-12-03": "Islamic New Year (estimated)", "2044-01-01": "New Year's Day", - "2044-01-31": "National Day* (*estimated)", - "2044-02-11": "Mawlid al-Nabi* (*estimated)", - "2044-03-01": "The Day Maldives Embraced Islam* (*estimated)", + "2044-01-31": "National Day (estimated)", + "2044-02-11": "Mawlid al-Nabi (estimated)", + "2044-03-01": "The Day Maldives Embraced Islam (estimated)", "2044-05-01": "Labor Day", - "2044-07-26": "Beginning of Ramadan* (*estimated); Independence Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr* (*estimated)", - "2044-08-26": "Eid al-Fitr* (*estimated)", - "2044-10-30": "Hajj Day* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-02": "Eid al-Adha* (*estimated)", - "2044-11-03": "Eid al-Adha* (*estimated); Victory Day", + "2044-07-26": "Beginning of Ramadan (estimated); Independence Day", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (estimated)", + "2044-08-26": "Eid al-Fitr (estimated)", + "2044-10-30": "Hajj Day (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-02": "Eid al-Adha (estimated)", + "2044-11-03": "Eid al-Adha (estimated); Victory Day", "2044-11-11": "Republic Day", - "2044-11-21": "Islamic New Year* (*estimated)", + "2044-11-21": "Islamic New Year (estimated)", "2045-01-01": "New Year's Day", - "2045-01-19": "National Day* (*estimated)", - "2045-01-30": "Mawlid al-Nabi* (*estimated)", - "2045-02-18": "The Day Maldives Embraced Islam* (*estimated)", + "2045-01-19": "National Day (estimated)", + "2045-01-30": "Mawlid al-Nabi (estimated)", + "2045-02-18": "The Day Maldives Embraced Islam (estimated)", "2045-05-01": "Labor Day", - "2045-07-15": "Beginning of Ramadan* (*estimated)", + "2045-07-15": "Beginning of Ramadan (estimated)", "2045-07-26": "Independence Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr* (*estimated)", - "2045-08-16": "Eid al-Fitr* (*estimated)", - "2045-10-20": "Hajj Day* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-10-23": "Eid al-Adha* (*estimated)", - "2045-10-24": "Eid al-Adha* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (estimated)", + "2045-08-16": "Eid al-Fitr (estimated)", + "2045-10-20": "Hajj Day (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-10-23": "Eid al-Adha (estimated)", + "2045-10-24": "Eid al-Adha (estimated)", "2045-11-03": "Victory Day", - "2045-11-10": "Islamic New Year* (*estimated)", + "2045-11-10": "Islamic New Year (estimated)", "2045-11-11": "Republic Day", "2046-01-01": "New Year's Day", - "2046-01-08": "National Day* (*estimated)", - "2046-01-19": "Mawlid al-Nabi* (*estimated)", - "2046-02-07": "The Day Maldives Embraced Islam* (*estimated)", + "2046-01-08": "National Day (estimated)", + "2046-01-19": "Mawlid al-Nabi (estimated)", + "2046-02-07": "The Day Maldives Embraced Islam (estimated)", "2046-05-01": "Labor Day", - "2046-07-05": "Beginning of Ramadan* (*estimated)", + "2046-07-05": "Beginning of Ramadan (estimated)", "2046-07-26": "Independence Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr* (*estimated)", - "2046-08-05": "Eid al-Fitr* (*estimated)", - "2046-10-09": "Hajj Day* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-10-12": "Eid al-Adha* (*estimated)", - "2046-10-13": "Eid al-Adha* (*estimated)", - "2046-10-31": "Islamic New Year* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (estimated)", + "2046-08-05": "Eid al-Fitr (estimated)", + "2046-10-09": "Hajj Day (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-10-12": "Eid al-Adha (estimated)", + "2046-10-13": "Eid al-Adha (estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2046-11-03": "Victory Day", "2046-11-11": "Republic Day", - "2046-12-28": "National Day* (*estimated)", + "2046-12-28": "National Day (estimated)", "2047-01-01": "New Year's Day", - "2047-01-08": "Mawlid al-Nabi* (*estimated)", - "2047-01-27": "The Day Maldives Embraced Islam* (*estimated)", + "2047-01-08": "Mawlid al-Nabi (estimated)", + "2047-01-27": "The Day Maldives Embraced Islam (estimated)", "2047-05-01": "Labor Day", - "2047-06-24": "Beginning of Ramadan* (*estimated)", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr* (*estimated)", - "2047-07-26": "Eid al-Fitr* (*estimated); Independence Day", - "2047-09-29": "Hajj Day* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", - "2047-10-02": "Eid al-Adha* (*estimated)", - "2047-10-03": "Eid al-Adha* (*estimated)", - "2047-10-20": "Islamic New Year* (*estimated)", + "2047-06-24": "Beginning of Ramadan (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (estimated)", + "2047-07-26": "Eid al-Fitr (estimated); Independence Day", + "2047-09-29": "Hajj Day (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", + "2047-10-02": "Eid al-Adha (estimated)", + "2047-10-03": "Eid al-Adha (estimated)", + "2047-10-20": "Islamic New Year (estimated)", "2047-11-03": "Victory Day", "2047-11-11": "Republic Day", - "2047-12-18": "National Day* (*estimated)", - "2047-12-29": "Mawlid al-Nabi* (*estimated)", + "2047-12-18": "National Day (estimated)", + "2047-12-29": "Mawlid al-Nabi (estimated)", "2048-01-01": "New Year's Day", - "2048-01-16": "The Day Maldives Embraced Islam* (*estimated)", + "2048-01-16": "The Day Maldives Embraced Islam (estimated)", "2048-05-01": "Labor Day", - "2048-06-12": "Beginning of Ramadan* (*estimated)", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated)", - "2048-07-14": "Eid al-Fitr* (*estimated)", + "2048-06-12": "Beginning of Ramadan (estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated)", + "2048-07-14": "Eid al-Fitr (estimated)", "2048-07-26": "Independence Day", - "2048-09-18": "Hajj Day* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", - "2048-09-21": "Eid al-Adha* (*estimated)", - "2048-09-22": "Eid al-Adha* (*estimated)", - "2048-10-09": "Islamic New Year* (*estimated)", + "2048-09-18": "Hajj Day (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", + "2048-09-21": "Eid al-Adha (estimated)", + "2048-09-22": "Eid al-Adha (estimated)", + "2048-10-09": "Islamic New Year (estimated)", "2048-11-03": "Victory Day", "2048-11-11": "Republic Day", - "2048-12-07": "National Day* (*estimated)", - "2048-12-18": "Mawlid al-Nabi* (*estimated)", + "2048-12-07": "National Day (estimated)", + "2048-12-18": "Mawlid al-Nabi (estimated)", "2049-01-01": "New Year's Day", - "2049-01-05": "The Day Maldives Embraced Islam* (*estimated)", + "2049-01-05": "The Day Maldives Embraced Islam (estimated)", "2049-05-01": "Labor Day", - "2049-06-02": "Beginning of Ramadan* (*estimated)", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr* (*estimated)", - "2049-07-03": "Eid al-Fitr* (*estimated)", + "2049-06-02": "Beginning of Ramadan (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (estimated)", + "2049-07-03": "Eid al-Fitr (estimated)", "2049-07-26": "Independence Day", - "2049-09-07": "Hajj Day* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", - "2049-09-10": "Eid al-Adha* (*estimated)", - "2049-09-11": "Eid al-Adha* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", + "2049-09-07": "Hajj Day (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", + "2049-09-10": "Eid al-Adha (estimated)", + "2049-09-11": "Eid al-Adha (estimated)", + "2049-09-28": "Islamic New Year (estimated)", "2049-11-03": "Victory Day", "2049-11-11": "Republic Day", - "2049-11-26": "National Day* (*estimated)", - "2049-12-07": "Mawlid al-Nabi* (*estimated)", - "2049-12-26": "The Day Maldives Embraced Islam* (*estimated)", + "2049-11-26": "National Day (estimated)", + "2049-12-07": "Mawlid al-Nabi (estimated)", + "2049-12-26": "The Day Maldives Embraced Islam (estimated)", "2050-01-01": "New Year's Day", "2050-05-01": "Labor Day", - "2050-05-22": "Beginning of Ramadan* (*estimated)", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr* (*estimated)", - "2050-06-22": "Eid al-Fitr* (*estimated)", + "2050-05-22": "Beginning of Ramadan (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (estimated)", + "2050-06-22": "Eid al-Fitr (estimated)", "2050-07-26": "Independence Day", - "2050-08-27": "Hajj Day* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-08-30": "Eid al-Adha* (*estimated)", - "2050-08-31": "Eid al-Adha* (*estimated)", - "2050-09-17": "Islamic New Year* (*estimated)", + "2050-08-27": "Hajj Day (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-08-30": "Eid al-Adha (estimated)", + "2050-08-31": "Eid al-Adha (estimated)", + "2050-09-17": "Islamic New Year (estimated)", "2050-11-03": "Victory Day", "2050-11-11": "Republic Day", - "2050-11-15": "National Day* (*estimated)", - "2050-11-26": "Mawlid al-Nabi* (*estimated)", - "2050-12-15": "The Day Maldives Embraced Islam* (*estimated)" + "2050-11-15": "National Day (estimated)", + "2050-11-26": "Mawlid al-Nabi (estimated)", + "2050-12-15": "The Day Maldives Embraced Islam (estimated)" } diff --git a/snapshots/countries/MY_COMMON.json b/snapshots/countries/MY_COMMON.json index 0dd8b5e40..91053b062 100644 --- a/snapshots/countries/MY_COMMON.json +++ b/snapshots/countries/MY_COMMON.json @@ -1,733 +1,733 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated)", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated)", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-11-18": "Deepavali", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-11-08": "Deepavali", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", + "1986-05-23": "Vesak Day (estimated)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", "1999-12-25": "Christmas Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", "2001-03-06": "Hari Raya Haji", @@ -1077,437 +1077,437 @@ "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", "2029-11-04": "Deepavali", "2029-11-05": "Deepavali [In lieu]", "2029-12-25": "Christmas Day", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", "2032-12-25": "Christmas Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-29": "Deepavali", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-31": "National Day", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_JHR.json b/snapshots/countries/MY_JHR.json index 3a3a189a9..0f38b7c3a 100644 --- a/snapshots/countries/MY_JHR.json +++ b/snapshots/countries/MY_JHR.json @@ -1,850 +1,850 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", - "1950-02-19": "Chinese New Year* (*estimated) [In lieu]", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", + "1950-02-19": "Chinese New Year (estimated) [In lieu]", "1950-03-03": "Thaipusam", "1950-03-05": "Thaipusam [In lieu]", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-17": "Beginning of Ramadan* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", + "1950-06-17": "Beginning of Ramadan (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", + "1951-05-20": "Vesak Day (estimated)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-06": "Beginning of Ramadan* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", - "1951-07-08": "Hari Raya Puasa* (*estimated) [In lieu]", + "1951-06-06": "Beginning of Ramadan (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", + "1951-07-08": "Hari Raya Puasa (estimated) [In lieu]", "1951-08-31": "National Day", "1951-09-02": "National Day [In lieu]", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", - "1952-05-25": "Beginning of Ramadan* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-05-25": "Beginning of Ramadan (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", "1953-05-03": "Labour Day [In lieu]", - "1953-05-14": "Beginning of Ramadan* (*estimated)", - "1953-05-27": "Vesak Day* (*estimated)", + "1953-05-14": "Beginning of Ramadan (estimated)", + "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1953-12-27": "Christmas Day [In lieu]", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-02-18": "Thaipusam", "1954-05-01": "Labour Day", - "1954-05-04": "Beginning of Ramadan* (*estimated)", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-04": "Beginning of Ramadan (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-09": "Thaipusam", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", - "1955-04-24": "Beginning of Ramadan* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", + "1955-04-24": "Beginning of Ramadan (estimated)", "1955-05-01": "Labour Day", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-08": "Vesak Day* (*estimated) [In lieu]", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-08": "Vesak Day (estimated) [In lieu]", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", "1956-02-26": "Thaipusam", - "1956-04-12": "Beginning of Ramadan* (*estimated)", + "1956-04-12": "Beginning of Ramadan (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-13": "Hari Raya Puasa* (*estimated) [In lieu]", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-13": "Hari Raya Puasa (estimated) [In lieu]", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", "1956-09-02": "National Day [In lieu]", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", - "1957-02-03": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", + "1957-02-03": "Chinese New Year Holiday (estimated) [In lieu]", "1957-02-15": "Thaipusam", "1957-02-17": "Thaipusam [In lieu]", - "1957-04-01": "Beginning of Ramadan* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-04-01": "Beginning of Ramadan (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", - "1958-03-21": "Beginning of Ramadan* (*estimated)", - "1958-03-23": "Beginning of Ramadan* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", + "1958-03-21": "Beginning of Ramadan (estimated)", + "1958-03-23": "Beginning of Ramadan (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-06-29": "Hari Raya Haji* (*estimated) [In lieu]", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-06-29": "Hari Raya Haji (estimated) [In lieu]", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1958-11-09": "Deepavali", "1958-12-25": "Christmas Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", "1959-02-22": "Thaipusam", - "1959-03-11": "Beginning of Ramadan* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", - "1959-04-12": "Hari Raya Puasa* (*estimated) [In lieu]", + "1959-03-11": "Beginning of Ramadan (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", + "1959-04-12": "Hari Raya Puasa (estimated) [In lieu]", "1959-05-01": "Labour Day", "1959-05-03": "Labour Day [In lieu]", - "1959-05-22": "Vesak Day* (*estimated)", - "1959-05-24": "Vesak Day* (*estimated) [In lieu]", + "1959-05-22": "Vesak Day (estimated)", + "1959-05-24": "Vesak Day (estimated) [In lieu]", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-11-01": "Deepavali [In lieu]", "1959-12-25": "Christmas Day", "1959-12-27": "Christmas Day [In lieu]", "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-01-31": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1960-02-28": "Beginning of Ramadan* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-01-31": "Chinese New Year Holiday (estimated) [In lieu]", + "1960-02-28": "Beginning of Ramadan (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", - "1962-02-05": "Beginning of Ramadan* (*estimated); Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", + "1962-02-05": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", "1962-02-19": "Thaipusam", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", - "1962-05-20": "Vesak Day* (*estimated) [In lieu]", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-05-20": "Vesak Day (estimated) [In lieu]", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1962-08-31": "National Day", "1962-09-02": "National Day [In lieu]", "1962-10-26": "Deepavali", "1962-10-28": "Deepavali [In lieu]", "1962-12-25": "Christmas Day", "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "1963-01-27": "Chinese New Year* (*estimated) [In lieu]", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "1963-01-27": "Chinese New Year (estimated) [In lieu]", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-05": "Hari Raya Haji* (*estimated) [In lieu]", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-05": "Hari Raya Haji (estimated) [In lieu]", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", - "1964-01-15": "Beginning of Ramadan* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "1964-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]", + "1964-01-15": "Beginning of Ramadan (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-02-16": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", "1964-02-28": "Thaipusam", "1964-03-01": "Thaipusam [In lieu]", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", "1964-05-03": "Labour Day [In lieu]", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1964-12-27": "Christmas Day [In lieu]", - "1965-01-03": "Beginning of Ramadan* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1965-01-03": "Beginning of Ramadan (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-10-24": "Deepavali [In lieu]", - "1965-12-23": "Beginning of Ramadan* (*estimated)", + "1965-12-23": "Beginning of Ramadan (estimated)", "1965-12-25": "Christmas Day", "1966-01-06": "Thaipusam", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Chinese New Year* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-03": "Hari Raya Haji* (*estimated) [In lieu]", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Chinese New Year (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-03": "Hari Raya Haji (estimated) [In lieu]", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1966-08-31": "National Day", "1966-11-10": "Deepavali", - "1966-12-13": "Beginning of Ramadan* (*estimated)", + "1966-12-13": "Beginning of Ramadan (estimated)", "1966-12-25": "Christmas Day", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-01-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-01-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-02-12": "Chinese New Year Holiday (estimated) [In lieu]", "1967-02-24": "Thaipusam", "1967-02-26": "Thaipusam [In lieu]", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", - "1967-12-02": "Beginning of Ramadan* (*estimated)", + "1967-12-02": "Beginning of Ramadan (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated)", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated)", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-11-18": "Deepavali", - "1968-11-21": "Beginning of Ramadan* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", + "1968-11-21": "Beginning of Ramadan (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-11-08": "Deepavali", - "1969-11-10": "Beginning of Ramadan* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-10": "Beginning of Ramadan (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-08": "Chinese New Year* (*estimated) [In lieu]", - "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-08": "Chinese New Year (estimated) [In lieu]", + "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", "1970-05-03": "Labour Day [In lieu]", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-01": "Beginning of Ramadan* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-01": "Beginning of Ramadan (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1970-12-27": "Christmas Day [In lieu]", "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-10-20": "Beginning of Ramadan* (*estimated)", + "1971-10-20": "Beginning of Ramadan (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", - "1971-11-21": "Hari Raya Puasa* (*estimated) [In lieu]", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", + "1971-11-21": "Hari Raya Puasa (estimated) [In lieu]", "1971-12-25": "Christmas Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-10-08": "Beginning of Ramadan* (*estimated)", + "1972-10-08": "Beginning of Ramadan (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1973-02-18": "Thaipusam", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", "1973-09-02": "National Day [In lieu]", - "1973-09-27": "Beginning of Ramadan* (*estimated)", + "1973-09-27": "Beginning of Ramadan (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-09-17": "Beginning of Ramadan* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-09-17": "Beginning of Ramadan (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", + "1975-05-25": "Vesak Day (estimated)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-06": "Beginning of Ramadan* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-06": "Beginning of Ramadan (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", "1976-02-15": "Thaipusam", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-26": "Beginning of Ramadan* (*estimated)", + "1976-08-26": "Beginning of Ramadan (estimated)", "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", - "1976-09-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", + "1976-09-26": "Hari Raya Puasa (estimated) [In lieu]", "1976-11-19": "Deepavali", "1976-11-21": "Deepavali [In lieu]", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-02-20": "Chinese New Year* (*estimated) [In lieu]", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-02-20": "Chinese New Year (estimated) [In lieu]", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-15": "Beginning of Ramadan* (*estimated)", + "1977-08-15": "Beginning of Ramadan (estimated)", "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", + "1978-05-21": "Vesak Day (estimated)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-05": "Beginning of Ramadan* (*estimated)", + "1978-08-05": "Beginning of Ramadan (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-11-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-11-12": "Hari Raya Haji (estimated) [In lieu]", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-07-25": "Beginning of Ramadan* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", - "1979-08-26": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1979-07-25": "Beginning of Ramadan (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", + "1979-08-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1979-08-31": "National Day", "1979-09-02": "National Day [In lieu]", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", "1980-03-02": "Thaipusam", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-13": "Beginning of Ramadan* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-13": "Beginning of Ramadan (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-10-19": "Hari Raya Haji* (*estimated)", + "1980-10-19": "Hari Raya Haji (estimated)", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", - "1981-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", + "1981-02-08": "Chinese New Year Holiday (estimated) [In lieu]", "1981-02-19": "Thaipusam", "1981-05-01": "Labour Day", "1981-05-03": "Labour Day [In lieu]", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-02": "Beginning of Ramadan* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", + "1981-07-02": "Beginning of Ramadan (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1981-12-27": "Christmas Day [In lieu]", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-22": "Beginning of Ramadan* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-06-22": "Beginning of Ramadan (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", - "1983-05-27": "Vesak Day* (*estimated)", - "1983-05-29": "Vesak Day* (*estimated) [In lieu]", + "1983-05-27": "Vesak Day (estimated)", + "1983-05-29": "Vesak Day (estimated) [In lieu]", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-12": "Beginning of Ramadan* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-12": "Beginning of Ramadan (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1983-12-25": "Christmas Day", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", - "1984-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", + "1984-02-05": "Chinese New Year Holiday (estimated) [In lieu]", "1984-02-17": "Thaipusam", "1984-02-19": "Thaipusam [In lieu]", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", - "1984-05-31": "Beginning of Ramadan* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", + "1984-05-31": "Beginning of Ramadan (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", "1984-08-31": "National Day", "1984-09-02": "National Day [In lieu]", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-03-06": "Thaipusam", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", - "1985-05-20": "Beginning of Ramadan* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-20": "Beginning of Ramadan (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", "1986-02-23": "Thaipusam", "1986-05-01": "Labour Day", - "1986-05-09": "Beginning of Ramadan* (*estimated)", - "1986-05-11": "Beginning of Ramadan* (*estimated) [In lieu]", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Vesak Day* (*estimated) [In lieu]", + "1986-05-09": "Beginning of Ramadan (estimated)", + "1986-05-11": "Beginning of Ramadan (estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Vesak Day (estimated) [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-08-15": "Hari Raya Haji* (*estimated)", - "1986-08-17": "Hari Raya Haji* (*estimated) [In lieu]", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-08-15": "Hari Raya Haji (estimated)", + "1986-08-17": "Hari Raya Haji (estimated) [In lieu]", "1986-08-31": "National Day", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-02": "Deepavali [In lieu]", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1986-12-25": "Christmas Day", "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", - "1987-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1987-04-29": "Beginning of Ramadan* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", + "1987-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "1987-04-29": "Beginning of Ramadan (estimated)", "1987-05-01": "Labour Day", "1987-05-03": "Labour Day [In lieu]", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", - "1987-05-31": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", + "1987-05-31": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1987-12-27": "Christmas Day [In lieu]", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", - "1988-04-17": "Beginning of Ramadan* (*estimated)", + "1988-04-17": "Beginning of Ramadan (estimated)", "1988-05-01": "Labour Day", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", - "1989-04-07": "Beginning of Ramadan* (*estimated)", - "1989-04-09": "Beginning of Ramadan* (*estimated) [In lieu]", + "1989-04-07": "Beginning of Ramadan (estimated)", + "1989-04-09": "Beginning of Ramadan (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-19": "Vesak Day* (*estimated)", - "1989-05-21": "Vesak Day* (*estimated) [In lieu]", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-05-21": "Vesak Day (estimated) [In lieu]", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-10-29": "Deepavali [In lieu]", "1989-12-25": "Christmas Day", "1990-01-12": "Thaipusam", "1990-01-14": "Thaipusam [In lieu]", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-03-27": "Beginning of Ramadan* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", - "1990-04-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-03-27": "Beginning of Ramadan (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", + "1990-04-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", "1990-09-02": "National Day [In lieu]", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", - "1991-02-17": "Chinese New Year* (*estimated) [In lieu]", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", + "1991-02-17": "Chinese New Year (estimated) [In lieu]", "1991-03-01": "Thaipusam", "1991-03-03": "Thaipusam [In lieu]", - "1991-03-17": "Beginning of Ramadan* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-03-17": "Beginning of Ramadan (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-02-18": "Thaipusam", - "1992-03-05": "Beginning of Ramadan* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", + "1992-03-05": "Beginning of Ramadan (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", "1992-05-01": "Labour Day", "1992-05-03": "Labour Day [In lieu]", - "1992-05-17": "Vesak Day* (*estimated)", + "1992-05-17": "Vesak Day (estimated)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1992-12-27": "Christmas Day [In lieu]", "1993-01-08": "Thaipusam", "1993-01-10": "Thaipusam [In lieu]", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-02-22": "Beginning of Ramadan* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-02-22": "Beginning of Ramadan (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-11-14": "Deepavali [In lieu]", "1993-12-25": "Christmas Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "1994-02-13": "Beginning of Ramadan* (*estimated) [In lieu]; Chinese New Year Holiday* (*estimated) [In lieu]", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "1994-02-13": "Beginning of Ramadan (estimated) [In lieu]; Chinese New Year Holiday (estimated) [In lieu]", "1994-02-25": "Thaipusam", "1994-02-27": "Thaipusam [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", "1994-05-01": "Labour Day", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-22": "Hari Raya Haji* (*estimated) [In lieu]", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-22": "Hari Raya Haji (estimated) [In lieu]", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1995-01-31": "Beginning of Ramadan* (*estimated); Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", + "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-14": "Thaipusam", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", - "1995-03-05": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", + "1995-03-05": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", - "1996-01-21": "Beginning of Ramadan* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-01-21": "Beginning of Ramadan (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", - "1997-01-10": "Beginning of Ramadan* (*estimated)", - "1997-01-12": "Beginning of Ramadan* (*estimated) [In lieu]", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Chinese New Year* (*estimated) [In lieu]", + "1997-01-10": "Beginning of Ramadan (estimated)", + "1997-01-12": "Beginning of Ramadan (estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Chinese New Year (estimated) [In lieu]", "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", - "1997-12-30": "Beginning of Ramadan* (*estimated)", + "1997-12-30": "Beginning of Ramadan (estimated)", "1998-01-13": "Thaipusam", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-02-01": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-02-01": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-03": "Labour Day [In lieu]", - "1998-05-10": "Vesak Day* (*estimated)", + "1998-05-10": "Vesak Day (estimated)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", - "1998-12-19": "Beginning of Ramadan* (*estimated)", + "1998-12-19": "Beginning of Ramadan (estimated)", "1998-12-25": "Christmas Day", "1998-12-27": "Christmas Day [In lieu]", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-09": "Beginning of Ramadan* (*estimated)", + "1999-12-09": "Beginning of Ramadan (estimated)", "1999-12-25": "Christmas Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", "2000-02-20": "Thaipusam", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", - "2000-11-27": "Beginning of Ramadan* (*estimated)", + "2000-11-27": "Beginning of Ramadan (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-09": "Thaipusam", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", @@ -1266,64 +1266,64 @@ "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "2023-08-22": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", + "2023-08-22": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-12-25": "Christmas Day", "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-03-11": "Beginning of Ramadan* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-03-11": "Beginning of Ramadan (estimated)", "2024-03-23": "Birthday of the Sultan of Johor", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "2024-08-10": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-08-10": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-02-11": "Thaipusam", - "2025-03-01": "Beginning of Ramadan* (*estimated)", + "2025-03-01": "Beginning of Ramadan (estimated)", "2025-03-23": "Birthday of the Sultan of Johor", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", + "2025-05-11": "Vesak Day (estimated)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-08": "Hari Raya Haji* (*estimated) [In lieu]", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2025-07-31": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-08": "Hari Raya Haji (estimated) [In lieu]", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", + "2025-07-31": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2025-08-31": "National Day", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-02-01": "Thaipusam", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-03-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-03-22": "Hari Raya Puasa (estimated) [In lieu]", "2026-03-23": "Birthday of the Sultan of Johor", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-03": "Labour Day [In lieu]; Vesak Day* (*estimated) [In lieu]", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-03": "Labour Day [In lieu]; Vesak Day (estimated) [In lieu]", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-07-20": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-07-20": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", @@ -1331,480 +1331,480 @@ "2026-12-27": "Christmas Day [In lieu]", "2027-01-22": "Thaipusam", "2027-01-24": "Thaipusam [In lieu]", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Beginning of Ramadan* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Beginning of Ramadan (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-03-23": "Birthday of the Sultan of Johor", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-07-10": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-07-10": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-01-28": "Beginning of Ramadan* (*estimated)", - "2028-01-30": "Beginning of Ramadan* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-01-28": "Beginning of Ramadan (estimated)", + "2028-01-30": "Beginning of Ramadan (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", "2028-03-23": "Birthday of the Sultan of Johor", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-07": "Hari Raya Haji* (*estimated) [In lieu]", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-07": "Hari Raya Haji (estimated) [In lieu]", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-06-29": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-06-29": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", - "2029-01-16": "Beginning of Ramadan* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-01-16": "Beginning of Ramadan (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-02-28": "Thaipusam", "2029-03-23": "Birthday of the Sultan of Johor", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-06-18": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-06-18": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-02": "National Day [In lieu]", "2029-09-16": "Malaysia Day", "2029-11-04": "Deepavali", "2029-12-25": "Christmas Day", - "2030-01-05": "Beginning of Ramadan* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", + "2030-01-05": "Beginning of Ramadan (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", "2030-02-17": "Thaipusam", "2030-03-23": "Birthday of the Sultan of Johor", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-06-07": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-06-07": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-10-27": "Deepavali [In lieu]", "2030-12-25": "Christmas Day", - "2030-12-26": "Beginning of Ramadan* (*estimated)", + "2030-12-26": "Beginning of Ramadan (estimated)", "2031-01-08": "Thaipusam", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-01-26": "Chinese New Year Holiday* (*estimated) [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-01-26": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", "2031-03-23": "Birthday of the Sultan of Johor", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", - "2031-05-27": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", + "2031-05-27": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", - "2031-12-15": "Beginning of Ramadan* (*estimated)", + "2031-12-15": "Beginning of Ramadan (estimated)", "2031-12-25": "Christmas Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji* (*estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", "2032-03-23": "Birthday of the Sultan of Johor", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-15": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2032-05-23": "Vesak Day* (*estimated)", + "2032-05-15": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2032-05-23": "Vesak Day (estimated)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", - "2032-12-04": "Beginning of Ramadan* (*estimated)", + "2032-12-04": "Beginning of Ramadan (estimated)", "2032-12-25": "Christmas Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-03-13": "Hari Raya Haji* (*estimated) [In lieu]", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-03-13": "Hari Raya Haji (estimated) [In lieu]", "2033-03-23": "Birthday of the Sultan of Johor", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-05": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2033-05-13": "Vesak Day* (*estimated)", - "2033-05-15": "Vesak Day* (*estimated) [In lieu]", + "2033-05-05": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2033-05-13": "Vesak Day (estimated)", + "2033-05-15": "Vesak Day (estimated) [In lieu]", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-09-18": "Malaysia Day [In lieu]", "2033-10-21": "Deepavali", "2033-10-23": "Deepavali [In lieu]", - "2033-11-23": "Beginning of Ramadan* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-11-23": "Beginning of Ramadan (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Hari Raya Puasa* (*estimated) [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-03-01": "Hari Raya Haji* (*estimated)", + "2033-12-26": "Hari Raya Puasa (estimated) [In lieu]", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-03-23": "Birthday of the Sultan of Johor", - "2034-04-25": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2034-04-25": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", - "2034-11-12": "Beginning of Ramadan* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-12": "Beginning of Ramadan (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-11": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2035-02-18": "Hari Raya Haji* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-11": "Chinese New Year Holiday (estimated) [In lieu]", + "2035-02-18": "Hari Raya Haji (estimated)", "2035-02-23": "Thaipusam", "2035-02-25": "Thaipusam [In lieu]", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-03-23": "Birthday of the Sultan of Johor", - "2035-04-14": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2035-04-14": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-02": "National Day [In lieu]", "2035-09-16": "Malaysia Day", "2035-10-29": "Deepavali", - "2035-11-01": "Beginning of Ramadan* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", + "2035-11-01": "Beginning of Ramadan (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", "2035-12-25": "Christmas Day", "2036-01-13": "Thaipusam", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-03-23": "Birthday of the Sultan of Johor", - "2036-04-03": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2036-04-03": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-16": "Malaysia Day", - "2036-10-20": "Beginning of Ramadan* (*estimated)", + "2036-10-20": "Beginning of Ramadan (estimated)", "2036-11-16": "Deepavali", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2037-03-02": "Thaipusam", - "2037-03-23": "Birthday of the Sultan of Johor; Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-03-23": "Birthday of the Sultan of Johor; Hari Hol of Sultan Iskandar of Johor (estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", "2037-05-03": "Labour Day [In lieu]", - "2037-05-29": "Vesak Day* (*estimated)", - "2037-05-31": "Vesak Day* (*estimated) [In lieu]", + "2037-05-29": "Vesak Day (estimated)", + "2037-05-31": "Vesak Day (estimated) [In lieu]", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-10": "Beginning of Ramadan* (*estimated)", + "2037-10-10": "Beginning of Ramadan (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", "2037-12-25": "Christmas Day", "2037-12-27": "Christmas Day [In lieu]", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2038-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2038-02-07": "Chinese New Year Holiday (estimated) [In lieu]", "2038-02-19": "Thaipusam", "2038-02-21": "Thaipusam [In lieu]", - "2038-03-12": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2038-03-12": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2038-03-23": "Birthday of the Sultan of Johor", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-09-30": "Beginning of Ramadan* (*estimated)", + "2038-09-30": "Beginning of Ramadan (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", - "2038-10-31": "Hari Raya Puasa* (*estimated) [In lieu]", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", + "2038-10-31": "Hari Raya Puasa (estimated) [In lieu]", "2038-12-25": "Christmas Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-03-01": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-03-01": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2039-03-23": "Birthday of the Sultan of Johor", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", "2039-09-18": "Malaysia Day [In lieu]", - "2039-09-19": "Beginning of Ramadan* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-09-19": "Beginning of Ramadan (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-19": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-19": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2040-02-27": "Thaipusam", "2040-03-23": "Birthday of the Sultan of Johor", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", - "2040-05-27": "Vesak Day* (*estimated) [In lieu]", + "2040-05-25": "Vesak Day (estimated)", + "2040-05-27": "Vesak Day (estimated) [In lieu]", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-02": "National Day [In lieu]", - "2040-09-07": "Beginning of Ramadan* (*estimated)", - "2040-09-09": "Beginning of Ramadan* (*estimated) [In lieu]", + "2040-09-07": "Beginning of Ramadan (estimated)", + "2040-09-09": "Beginning of Ramadan (estimated) [In lieu]", "2040-09-16": "Malaysia Day", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", - "2040-12-16": "Hari Raya Haji* (*estimated) [In lieu]", + "2040-12-14": "Hari Raya Haji (estimated)", + "2040-12-16": "Hari Raya Haji (estimated) [In lieu]", "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-02-03": "Chinese New Year* (*estimated) [In lieu]", - "2041-02-07": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-02-03": "Chinese New Year (estimated) [In lieu]", + "2041-02-07": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2041-02-15": "Thaipusam", "2041-02-17": "Thaipusam [In lieu]", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2041-03-23": "Birthday of the Sultan of Johor", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-08-28": "Beginning of Ramadan* (*estimated)", + "2041-08-28": "Beginning of Ramadan (estimated)", "2041-08-31": "National Day", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", - "2041-09-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", + "2041-09-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-01-28": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-01-28": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-03-23": "Birthday of the Sultan of Johor", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", + "2042-05-04": "Vesak Day (estimated)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-17": "Beginning of Ramadan* (*estimated)", + "2042-08-17": "Beginning of Ramadan (estimated)", "2042-08-31": "National Day", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", - "2043-01-17": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2043-01-17": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2043-02-24": "Thaipusam", "2043-03-23": "Birthday of the Sultan of Johor", "2043-05-01": "Labour Day", "2043-05-03": "Labour Day [In lieu]", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-06": "Beginning of Ramadan* (*estimated)", + "2043-08-06": "Beginning of Ramadan (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", - "2043-09-06": "Hari Raya Puasa* (*estimated) [In lieu]", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", + "2043-09-06": "Hari Raya Puasa (estimated) [In lieu]", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2043-12-27": "Christmas Day [In lieu]", - "2044-01-07": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-07": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", "2044-03-23": "Birthday of the Sultan of Johor", "2044-05-01": "Labour Day", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-07-26": "Beginning of Ramadan* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-07-26": "Beginning of Ramadan (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", "2044-09-18": "Malaysia Day [In lieu]", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", - "2045-02-19": "Chinese New Year* (*estimated) [In lieu]", + "2044-12-26": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", + "2045-02-19": "Chinese New Year (estimated) [In lieu]", "2045-03-04": "Thaipusam", "2045-03-23": "Birthday of the Sultan of Johor", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-15": "Beginning of Ramadan* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-15": "Beginning of Ramadan (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "2045-12-15": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", + "2045-12-15": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-02-21": "Thaipusam", "2046-03-23": "Birthday of the Sultan of Johor", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", + "2046-05-20": "Vesak Day (estimated)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-05": "Beginning of Ramadan* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", - "2046-08-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "2046-07-05": "Beginning of Ramadan (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", + "2046-08-05": "Hari Raya Puasa (estimated) [In lieu]", "2046-08-31": "National Day", "2046-09-02": "National Day [In lieu]", "2046-09-16": "Malaysia Day", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", - "2046-12-04": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", + "2046-12-04": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-11": "Thaipusam", "2047-01-13": "Thaipusam [In lieu]", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", "2047-03-23": "Birthday of the Sultan of Johor", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-06-24": "Beginning of Ramadan* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-06-24": "Beginning of Ramadan (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-11-17": "Deepavali [In lieu]", - "2047-11-24": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2047-11-24": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", - "2048-02-16": "Chinese New Year* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", + "2048-02-16": "Chinese New Year (estimated) [In lieu]", "2048-02-28": "Thaipusam", "2048-03-01": "Thaipusam [In lieu]", "2048-03-23": "Birthday of the Sultan of Johor", "2048-05-01": "Labour Day", "2048-05-03": "Labour Day [In lieu]", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-12": "Beginning of Ramadan* (*estimated)", - "2048-06-14": "Beginning of Ramadan* (*estimated) [In lieu]", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", + "2048-06-12": "Beginning of Ramadan (estimated)", + "2048-06-14": "Beginning of Ramadan (estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-11-12": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2048-11-12": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-12-25": "Christmas Day", "2048-12-27": "Christmas Day [In lieu]", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-02-17": "Thaipusam", "2049-03-23": "Birthday of the Sultan of Johor", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-06-02": "Beginning of Ramadan* (*estimated)", + "2049-05-16": "Vesak Day (estimated)", + "2049-06-02": "Beginning of Ramadan (estimated)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", - "2049-07-04": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", + "2049-07-04": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-11-02": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-11-02": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", "2050-03-23": "Birthday of the Sultan of Johor", "2050-05-01": "Labour Day", - "2050-05-05": "Vesak Day* (*estimated)", - "2050-05-22": "Beginning of Ramadan* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-22": "Beginning of Ramadan (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-09-18": "Malaysia Day [In lieu]", - "2050-10-22": "Hari Hol of Sultan Iskandar of Johor* (*estimated)", + "2050-10-22": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/MY_KDH.json b/snapshots/countries/MY_KDH.json index ca2692275..517403a4e 100644 --- a/snapshots/countries/MY_KDH.json +++ b/snapshots/countries/MY_KDH.json @@ -1,911 +1,911 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", - "1950-02-19": "Chinese New Year* (*estimated) [In lieu]", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", - "1950-05-14": "Isra and Mi'raj* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", + "1950-02-19": "Chinese New Year (estimated) [In lieu]", + "1950-05-01": "Labour Day; Vesak Day (estimated)", + "1950-05-14": "Isra and Mi'raj (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-17": "Beginning of Ramadan* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", + "1950-06-17": "Beginning of Ramadan (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-09-24": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-09-24": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", - "1951-05-04": "Isra and Mi'raj* (*estimated)", - "1951-05-06": "Isra and Mi'raj* (*estimated) [In lieu]", - "1951-05-20": "Vesak Day* (*estimated)", + "1951-05-04": "Isra and Mi'raj (estimated)", + "1951-05-06": "Isra and Mi'raj (estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-06": "Beginning of Ramadan* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", - "1951-07-08": "Hari Raya Puasa* (*estimated) [In lieu]", + "1951-06-06": "Beginning of Ramadan (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", + "1951-07-08": "Hari Raya Puasa (estimated) [In lieu]", "1951-08-31": "National Day", "1951-09-02": "National Day [In lieu]", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-09-13": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-09-13": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-04-22": "Isra and Mi'raj* (*estimated)", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-04-22": "Isra and Mi'raj (estimated)", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", - "1952-05-25": "Beginning of Ramadan* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-05-25": "Beginning of Ramadan (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated)", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated)", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-04-12": "Isra and Mi'raj* (*estimated)", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-04-12": "Isra and Mi'raj (estimated)", "1953-05-01": "Labour Day", "1953-05-03": "Labour Day [In lieu]", - "1953-05-14": "Beginning of Ramadan* (*estimated)", - "1953-05-27": "Vesak Day* (*estimated)", + "1953-05-14": "Beginning of Ramadan (estimated)", + "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-08-20": "Hari Raya Haji* (*estimated)", - "1953-08-21": "Hari Raya Haji* (*estimated)", - "1953-08-23": "Hari Raya Haji* (*estimated) [In lieu]", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-08-20": "Hari Raya Haji (estimated)", + "1953-08-21": "Hari Raya Haji (estimated)", + "1953-08-23": "Hari Raya Haji (estimated) [In lieu]", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1953-12-27": "Christmas Day [In lieu]", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", - "1954-04-01": "Isra and Mi'raj* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", + "1954-04-01": "Isra and Mi'raj (estimated)", "1954-05-01": "Labour Day", - "1954-05-04": "Beginning of Ramadan* (*estimated)", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-04": "Beginning of Ramadan (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-10": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-10": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", - "1955-03-21": "Isra and Mi'raj* (*estimated)", - "1955-04-24": "Beginning of Ramadan* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", + "1955-03-21": "Isra and Mi'raj (estimated)", + "1955-04-24": "Beginning of Ramadan (estimated)", "1955-05-01": "Labour Day", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-08": "Vesak Day* (*estimated) [In lieu]", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-08": "Vesak Day (estimated) [In lieu]", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-07-31": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-07-31": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-03-10": "Isra and Mi'raj* (*estimated)", - "1956-04-12": "Beginning of Ramadan* (*estimated)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-03-10": "Isra and Mi'raj (estimated)", + "1956-04-12": "Beginning of Ramadan (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-13": "Hari Raya Puasa* (*estimated) [In lieu]", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-13": "Hari Raya Puasa (estimated) [In lieu]", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-07-20": "Hari Raya Haji* (*estimated)", - "1956-07-22": "Hari Raya Haji* (*estimated) [In lieu]", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-07-20": "Hari Raya Haji (estimated)", + "1956-07-22": "Hari Raya Haji (estimated) [In lieu]", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", "1956-09-02": "National Day [In lieu]", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", - "1957-02-03": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1957-02-27": "Isra and Mi'raj* (*estimated)", - "1957-04-01": "Beginning of Ramadan* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", + "1957-02-03": "Chinese New Year Holiday (estimated) [In lieu]", + "1957-02-27": "Isra and Mi'raj (estimated)", + "1957-04-01": "Beginning of Ramadan (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-09": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-09": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", - "1958-02-16": "Isra and Mi'raj* (*estimated)", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", - "1958-03-21": "Beginning of Ramadan* (*estimated)", - "1958-03-23": "Beginning of Ramadan* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", + "1958-02-16": "Isra and Mi'raj (estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", + "1958-03-21": "Beginning of Ramadan (estimated)", + "1958-03-23": "Beginning of Ramadan (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-06-28": "Hari Raya Haji* (*estimated)", - "1958-06-29": "Hari Raya Haji* (*estimated) [In lieu]", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-06-28": "Hari Raya Haji (estimated)", + "1958-06-29": "Hari Raya Haji (estimated) [In lieu]", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1958-11-09": "Deepavali", "1958-12-25": "Christmas Day", - "1959-02-06": "Isra and Mi'raj* (*estimated)", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Isra and Mi'raj* (*estimated) [In lieu]", - "1959-03-11": "Beginning of Ramadan* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", - "1959-04-12": "Hari Raya Puasa* (*estimated) [In lieu]", + "1959-02-06": "Isra and Mi'raj (estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Isra and Mi'raj (estimated) [In lieu]", + "1959-03-11": "Beginning of Ramadan (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", + "1959-04-12": "Hari Raya Puasa (estimated) [In lieu]", "1959-05-01": "Labour Day", "1959-05-03": "Labour Day [In lieu]", - "1959-05-22": "Vesak Day* (*estimated)", - "1959-05-24": "Vesak Day* (*estimated) [In lieu]", + "1959-05-22": "Vesak Day (estimated)", + "1959-05-24": "Vesak Day (estimated) [In lieu]", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-06-18": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-06-18": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-11-01": "Deepavali [In lieu]", "1959-12-25": "Christmas Day", "1959-12-27": "Christmas Day [In lieu]", - "1960-01-26": "Isra and Mi'raj* (*estimated)", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-01-31": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1960-02-28": "Beginning of Ramadan* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-26": "Isra and Mi'raj (estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-01-31": "Chinese New Year Holiday (estimated) [In lieu]", + "1960-02-28": "Beginning of Ramadan (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-05": "Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-05": "Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1961-01-14": "Isra and Mi'raj* (*estimated)", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", + "1961-01-14": "Isra and Mi'raj (estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-26": "Hari Raya Haji* (*estimated)", - "1961-05-28": "Hari Raya Haji* (*estimated) [In lieu]", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-26": "Hari Raya Haji (estimated)", + "1961-05-28": "Hari Raya Haji (estimated) [In lieu]", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", - "1962-01-04": "Isra and Mi'raj* (*estimated)", - "1962-02-05": "Beginning of Ramadan* (*estimated); Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-01-04": "Isra and Mi'raj (estimated)", + "1962-02-05": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-15": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", - "1962-05-20": "Vesak Day* (*estimated) [In lieu]", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-15": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", + "1962-05-20": "Vesak Day (estimated) [In lieu]", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1962-08-31": "National Day", "1962-09-02": "National Day [In lieu]", "1962-10-26": "Deepavali", "1962-10-28": "Deepavali [In lieu]", - "1962-12-24": "Isra and Mi'raj* (*estimated)", + "1962-12-24": "Isra and Mi'raj (estimated)", "1962-12-25": "Christmas Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "1963-01-27": "Chinese New Year* (*estimated) [In lieu]", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "1963-01-27": "Chinese New Year (estimated) [In lieu]", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-04": "Hari Raya Haji* (*estimated)", - "1963-05-05": "Hari Raya Haji* (*estimated) [In lieu]", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-04": "Hari Raya Haji (estimated)", + "1963-05-05": "Hari Raya Haji (estimated) [In lieu]", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1963-08-31": "National Day", "1963-11-14": "Deepavali", - "1963-12-13": "Isra and Mi'raj* (*estimated)", - "1963-12-15": "Isra and Mi'raj* (*estimated) [In lieu]", + "1963-12-13": "Isra and Mi'raj (estimated)", + "1963-12-15": "Isra and Mi'raj (estimated) [In lieu]", "1963-12-25": "Christmas Day", - "1964-01-15": "Beginning of Ramadan* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "1964-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]", - "1964-04-22": "Hari Raya Haji* (*estimated)", - "1964-04-23": "Hari Raya Haji* (*estimated)", + "1964-01-15": "Beginning of Ramadan (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-02-16": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1964-04-22": "Hari Raya Haji (estimated)", + "1964-04-23": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", "1964-05-03": "Labour Day [In lieu]", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", - "1964-12-01": "Isra and Mi'raj* (*estimated)", + "1964-12-01": "Isra and Mi'raj (estimated)", "1964-12-25": "Christmas Day", "1964-12-27": "Christmas Day [In lieu]", - "1965-01-03": "Beginning of Ramadan* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated)", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-01-03": "Beginning of Ramadan (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated)", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-10-24": "Deepavali [In lieu]", - "1965-11-20": "Isra and Mi'raj* (*estimated)", - "1965-12-23": "Beginning of Ramadan* (*estimated)", + "1965-11-20": "Isra and Mi'raj (estimated)", + "1965-12-23": "Beginning of Ramadan (estimated)", "1965-12-25": "Christmas Day", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Chinese New Year* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-02": "Hari Raya Haji* (*estimated)", - "1966-04-03": "Hari Raya Haji* (*estimated) [In lieu]", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Chinese New Year (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-02": "Hari Raya Haji (estimated)", + "1966-04-03": "Hari Raya Haji (estimated) [In lieu]", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1966-08-31": "National Day", - "1966-11-10": "Deepavali; Isra and Mi'raj* (*estimated)", - "1966-12-13": "Beginning of Ramadan* (*estimated)", + "1966-11-10": "Deepavali; Isra and Mi'raj (estimated)", + "1966-12-13": "Beginning of Ramadan (estimated)", "1966-12-25": "Christmas Day", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-01-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-03-22": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-01-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-03-22": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", - "1967-10-30": "Isra and Mi'raj* (*estimated)", + "1967-10-30": "Isra and Mi'raj (estimated)", "1967-10-31": "Deepavali", - "1967-12-02": "Beginning of Ramadan* (*estimated)", + "1967-12-02": "Beginning of Ramadan (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated)", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-10": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated)", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-10": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", - "1968-10-19": "Isra and Mi'raj* (*estimated)", + "1968-10-19": "Isra and Mi'raj (estimated)", "1968-11-18": "Deepavali", - "1968-11-21": "Beginning of Ramadan* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", + "1968-11-21": "Beginning of Ramadan (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-02-28": "Hari Raya Haji* (*estimated)", - "1969-03-02": "Hari Raya Haji* (*estimated) [In lieu]", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-02-28": "Hari Raya Haji (estimated)", + "1969-03-02": "Hari Raya Haji (estimated) [In lieu]", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-10-08": "Isra and Mi'raj* (*estimated)", + "1969-10-08": "Isra and Mi'raj (estimated)", "1969-11-08": "Deepavali", - "1969-11-10": "Beginning of Ramadan* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-10": "Beginning of Ramadan (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-08": "Chinese New Year* (*estimated) [In lieu]", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-02-17": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-08": "Chinese New Year (estimated) [In lieu]", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-02-17": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", "1970-05-03": "Labour Day [In lieu]", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", - "1970-09-28": "Isra and Mi'raj* (*estimated)", + "1970-09-28": "Isra and Mi'raj (estimated)", "1970-10-28": "Deepavali", - "1970-11-01": "Beginning of Ramadan* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-01": "Beginning of Ramadan (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1970-12-27": "Christmas Day [In lieu]", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-07": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-07": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-09-17": "Isra and Mi'raj* (*estimated)", - "1971-09-19": "Isra and Mi'raj* (*estimated) [In lieu]", - "1971-10-20": "Beginning of Ramadan* (*estimated)", + "1971-09-17": "Isra and Mi'raj (estimated)", + "1971-09-19": "Isra and Mi'raj (estimated) [In lieu]", + "1971-10-20": "Beginning of Ramadan (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", - "1971-11-21": "Hari Raya Puasa* (*estimated) [In lieu]", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", + "1971-11-21": "Hari Raya Puasa (estimated) [In lieu]", "1971-12-25": "Christmas Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-01-27": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-01-27": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-09-05": "Isra and Mi'raj* (*estimated)", - "1972-10-08": "Beginning of Ramadan* (*estimated)", + "1972-09-05": "Isra and Mi'raj (estimated)", + "1972-10-08": "Beginning of Ramadan (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated)", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-25": "Isra and Mi'raj* (*estimated)", + "1973-08-25": "Isra and Mi'raj (estimated)", "1973-08-31": "National Day", "1973-09-02": "National Day [In lieu]", - "1973-09-27": "Beginning of Ramadan* (*estimated)", + "1973-09-27": "Beginning of Ramadan (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-04": "Hari Raya Haji* (*estimated)", - "1974-01-06": "Hari Raya Haji* (*estimated) [In lieu]", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-04": "Hari Raya Haji (estimated)", + "1974-01-06": "Hari Raya Haji (estimated) [In lieu]", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-15": "Isra and Mi'raj* (*estimated)", + "1974-08-15": "Isra and Mi'raj (estimated)", "1974-08-31": "National Day", - "1974-09-17": "Beginning of Ramadan* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-09-17": "Beginning of Ramadan (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", - "1974-12-25": "Christmas Day; Hari Raya Haji* (*estimated)", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", + "1974-12-25": "Christmas Day; Hari Raya Haji (estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", + "1975-05-25": "Vesak Day (estimated)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-05": "Isra and Mi'raj* (*estimated)", + "1975-08-05": "Isra and Mi'raj (estimated)", "1975-08-31": "National Day", - "1975-09-06": "Beginning of Ramadan* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-06": "Beginning of Ramadan (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", - "1975-12-14": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", + "1975-12-14": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-07-24": "Isra and Mi'raj* (*estimated)", - "1976-08-26": "Beginning of Ramadan* (*estimated)", + "1976-07-24": "Isra and Mi'raj (estimated)", + "1976-08-26": "Beginning of Ramadan (estimated)", "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", - "1976-09-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", + "1976-09-26": "Hari Raya Puasa (estimated) [In lieu]", "1976-11-19": "Deepavali", "1976-11-21": "Deepavali [In lieu]", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-02": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-02": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-02-20": "Chinese New Year* (*estimated) [In lieu]", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-02-20": "Chinese New Year (estimated) [In lieu]", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-07-13": "Isra and Mi'raj* (*estimated)", - "1977-08-15": "Beginning of Ramadan* (*estimated)", + "1977-07-13": "Isra and Mi'raj (estimated)", + "1977-08-15": "Beginning of Ramadan (estimated)", "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-11-22": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-11-22": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", + "1978-05-21": "Vesak Day (estimated)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-07-02": "Isra and Mi'raj* (*estimated)", - "1978-08-05": "Beginning of Ramadan* (*estimated)", + "1978-07-02": "Isra and Mi'raj (estimated)", + "1978-08-05": "Beginning of Ramadan (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-11-11": "Hari Raya Haji* (*estimated)", - "1978-11-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-11-11": "Hari Raya Haji (estimated)", + "1978-11-12": "Hari Raya Haji (estimated) [In lieu]", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-22": "Isra and Mi'raj* (*estimated)", - "1979-06-24": "Isra and Mi'raj* (*estimated) [In lieu]", - "1979-07-25": "Beginning of Ramadan* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", - "1979-08-26": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1979-06-22": "Isra and Mi'raj (estimated)", + "1979-06-24": "Isra and Mi'raj (estimated) [In lieu]", + "1979-07-25": "Beginning of Ramadan (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", + "1979-08-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1979-08-31": "National Day", "1979-09-02": "National Day [In lieu]", - "1979-10-31": "Hari Raya Haji* (*estimated)", - "1979-11-01": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", + "1979-11-01": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-10": "Isra and Mi'raj* (*estimated)", - "1980-07-13": "Beginning of Ramadan* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-06-10": "Isra and Mi'raj (estimated)", + "1980-07-13": "Beginning of Ramadan (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated)", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated)", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", - "1981-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", + "1981-02-08": "Chinese New Year Holiday (estimated) [In lieu]", "1981-05-01": "Labour Day", "1981-05-03": "Labour Day [In lieu]", - "1981-05-18": "Vesak Day* (*estimated)", - "1981-05-31": "Isra and Mi'raj* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", + "1981-05-31": "Isra and Mi'raj (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-02": "Beginning of Ramadan* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", + "1981-07-02": "Beginning of Ramadan (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", - "1981-10-09": "Hari Raya Haji* (*estimated)", - "1981-10-11": "Hari Raya Haji* (*estimated) [In lieu]", + "1981-10-08": "Hari Raya Haji (estimated)", + "1981-10-09": "Hari Raya Haji (estimated)", + "1981-10-11": "Hari Raya Haji (estimated) [In lieu]", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1981-12-27": "Christmas Day [In lieu]", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", - "1982-05-20": "Isra and Mi'raj* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-20": "Isra and Mi'raj (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-22": "Beginning of Ramadan* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-06-22": "Beginning of Ramadan (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-09-28": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-09-28": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", "1983-05-01": "Labour Day", - "1983-05-10": "Isra and Mi'raj* (*estimated)", - "1983-05-27": "Vesak Day* (*estimated)", - "1983-05-29": "Vesak Day* (*estimated) [In lieu]", + "1983-05-10": "Isra and Mi'raj (estimated)", + "1983-05-27": "Vesak Day (estimated)", + "1983-05-29": "Vesak Day (estimated) [In lieu]", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-12": "Beginning of Ramadan* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-12": "Beginning of Ramadan (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-09-18": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-09-18": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1983-12-25": "Christmas Day", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", - "1984-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1984-04-28": "Isra and Mi'raj* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", + "1984-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1984-04-28": "Isra and Mi'raj (estimated)", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", - "1984-05-31": "Beginning of Ramadan* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", + "1984-05-31": "Beginning of Ramadan (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", "1984-08-31": "National Day", "1984-09-02": "National Day [In lieu]", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-06": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-06": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", - "1985-04-17": "Isra and Mi'raj* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", + "1985-04-17": "Isra and Mi'raj (estimated)", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", - "1985-05-20": "Beginning of Ramadan* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-20": "Beginning of Ramadan (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", - "1985-08-27": "Hari Raya Haji* (*estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", + "1985-08-27": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-04-06": "Isra and Mi'raj* (*estimated)", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-04-06": "Isra and Mi'raj (estimated)", "1986-05-01": "Labour Day", - "1986-05-09": "Beginning of Ramadan* (*estimated)", - "1986-05-11": "Beginning of Ramadan* (*estimated) [In lieu]", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Vesak Day* (*estimated) [In lieu]", + "1986-05-09": "Beginning of Ramadan (estimated)", + "1986-05-11": "Beginning of Ramadan (estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Vesak Day (estimated) [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-08-15": "Hari Raya Haji* (*estimated)", - "1986-08-16": "Hari Raya Haji* (*estimated)", - "1986-08-17": "Hari Raya Haji* (*estimated) [In lieu]", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-08-15": "Hari Raya Haji (estimated)", + "1986-08-16": "Hari Raya Haji (estimated)", + "1986-08-17": "Hari Raya Haji (estimated) [In lieu]", "1986-08-31": "National Day", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-02": "Deepavali [In lieu]", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1986-12-25": "Christmas Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", - "1987-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1987-03-27": "Isra and Mi'raj* (*estimated)", - "1987-03-29": "Isra and Mi'raj* (*estimated) [In lieu]", - "1987-04-29": "Beginning of Ramadan* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", + "1987-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "1987-03-27": "Isra and Mi'raj (estimated)", + "1987-03-29": "Isra and Mi'raj (estimated) [In lieu]", + "1987-04-29": "Beginning of Ramadan (estimated)", "1987-05-01": "Labour Day", "1987-05-03": "Labour Day [In lieu]", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", - "1987-05-31": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", + "1987-05-31": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-05": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-05": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1987-12-27": "Christmas Day [In lieu]", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", - "1988-03-15": "Isra and Mi'raj* (*estimated)", - "1988-04-17": "Beginning of Ramadan* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", + "1988-03-15": "Isra and Mi'raj (estimated)", + "1988-04-17": "Beginning of Ramadan (estimated)", "1988-05-01": "Labour Day", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-07-24": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-07-24": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", - "1989-03-05": "Isra and Mi'raj* (*estimated)", - "1989-04-07": "Beginning of Ramadan* (*estimated)", - "1989-04-09": "Beginning of Ramadan* (*estimated) [In lieu]", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", + "1989-03-05": "Isra and Mi'raj (estimated)", + "1989-04-07": "Beginning of Ramadan (estimated)", + "1989-04-09": "Beginning of Ramadan (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-19": "Vesak Day* (*estimated)", - "1989-05-21": "Vesak Day* (*estimated) [In lieu]", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-05-21": "Vesak Day (estimated) [In lieu]", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-07-14": "Hari Raya Haji* (*estimated)", - "1989-07-16": "Hari Raya Haji* (*estimated) [In lieu]", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-07-14": "Hari Raya Haji (estimated)", + "1989-07-16": "Hari Raya Haji (estimated) [In lieu]", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-10-29": "Deepavali [In lieu]", "1989-12-25": "Christmas Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-02-22": "Isra and Mi'raj* (*estimated)", - "1990-03-27": "Beginning of Ramadan* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", - "1990-04-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-02-22": "Isra and Mi'raj (estimated)", + "1990-03-27": "Beginning of Ramadan (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", + "1990-04-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-03": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-03": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", "1990-09-02": "National Day [In lieu]", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", - "1991-02-11": "Isra and Mi'raj* (*estimated)", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", - "1991-02-17": "Chinese New Year* (*estimated) [In lieu]", - "1991-03-17": "Beginning of Ramadan* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-02-11": "Isra and Mi'raj (estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", + "1991-02-17": "Chinese New Year (estimated) [In lieu]", + "1991-03-17": "Beginning of Ramadan (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-06-23": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-06-23": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", - "1992-01-31": "Isra and Mi'raj* (*estimated)", - "1992-02-02": "Isra and Mi'raj* (*estimated) [In lieu]", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-03-05": "Beginning of Ramadan* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", + "1992-01-31": "Isra and Mi'raj (estimated)", + "1992-02-02": "Isra and Mi'raj (estimated) [In lieu]", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-03-05": "Beginning of Ramadan (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", "1992-05-01": "Labour Day", "1992-05-03": "Labour Day [In lieu]", - "1992-05-17": "Vesak Day* (*estimated)", + "1992-05-17": "Vesak Day (estimated)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-06-12": "Hari Raya Haji* (*estimated)", - "1992-06-14": "Hari Raya Haji* (*estimated) [In lieu]", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-06-12": "Hari Raya Haji (estimated)", + "1992-06-14": "Hari Raya Haji (estimated) [In lieu]", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1992-12-27": "Christmas Day [In lieu]", - "1993-01-20": "Isra and Mi'raj* (*estimated)", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-02-22": "Beginning of Ramadan* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-20": "Isra and Mi'raj (estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-02-22": "Beginning of Ramadan (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", - "1993-06-01": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", + "1993-06-01": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-11-14": "Deepavali [In lieu]", "1993-12-25": "Christmas Day", - "1994-01-09": "Isra and Mi'raj* (*estimated)", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "1994-02-13": "Beginning of Ramadan* (*estimated) [In lieu]; Chinese New Year Holiday* (*estimated) [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", + "1994-01-09": "Isra and Mi'raj (estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "1994-02-13": "Beginning of Ramadan (estimated) [In lieu]; Chinese New Year Holiday (estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", "1994-05-01": "Labour Day", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-21": "Hari Raya Haji* (*estimated)", - "1994-05-22": "Hari Raya Haji* (*estimated) [In lieu]", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-21": "Hari Raya Haji (estimated)", + "1994-05-22": "Hari Raya Haji (estimated) [In lieu]", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-29": "Isra and Mi'raj* (*estimated)", - "1995-01-31": "Beginning of Ramadan* (*estimated); Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", - "1995-03-05": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1994-12-29": "Isra and Mi'raj (estimated)", + "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", + "1995-03-05": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-10": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-10": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", - "1995-12-19": "Isra and Mi'raj* (*estimated)", + "1995-12-19": "Isra and Mi'raj (estimated)", "1995-12-25": "Christmas Day", - "1996-01-21": "Beginning of Ramadan* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1996-04-27": "Hari Raya Haji* (*estimated)", - "1996-04-28": "Hari Raya Haji* (*estimated)", + "1996-01-21": "Beginning of Ramadan (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", + "1996-04-28": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", - "1996-12-08": "Isra and Mi'raj* (*estimated)", + "1996-12-08": "Isra and Mi'raj (estimated)", "1996-12-25": "Christmas Day", - "1997-01-10": "Beginning of Ramadan* (*estimated)", - "1997-01-12": "Beginning of Ramadan* (*estimated) [In lieu]", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Chinese New Year* (*estimated) [In lieu]", - "1997-04-17": "Hari Raya Haji* (*estimated)", - "1997-04-18": "Hari Raya Haji* (*estimated)", - "1997-04-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1997-01-10": "Beginning of Ramadan (estimated)", + "1997-01-12": "Beginning of Ramadan (estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Chinese New Year (estimated) [In lieu]", + "1997-04-17": "Hari Raya Haji (estimated)", + "1997-04-18": "Hari Raya Haji (estimated)", + "1997-04-20": "Hari Raya Haji (estimated) [In lieu]", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-10-29": "Deepavali", - "1997-11-27": "Isra and Mi'raj* (*estimated)", + "1997-11-27": "Isra and Mi'raj (estimated)", "1997-12-25": "Christmas Day", - "1997-12-30": "Beginning of Ramadan* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-02-01": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-08": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1997-12-30": "Beginning of Ramadan (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-02-01": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-08": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-03": "Labour Day [In lieu]", - "1998-05-10": "Vesak Day* (*estimated)", + "1998-05-10": "Vesak Day (estimated)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", - "1998-11-16": "Isra and Mi'raj* (*estimated)", + "1998-11-16": "Isra and Mi'raj (estimated)", "1998-11-17": "Deepavali", - "1998-12-19": "Beginning of Ramadan* (*estimated)", + "1998-12-19": "Beginning of Ramadan (estimated)", "1998-12-25": "Christmas Day", "1998-12-27": "Christmas Day [In lieu]", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-03-28": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-03-28": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", - "1999-11-05": "Isra and Mi'raj* (*estimated)", + "1999-11-05": "Isra and Mi'raj (estimated)", "1999-11-06": "Deepavali", - "1999-11-07": "Isra and Mi'raj* (*estimated) [In lieu]", + "1999-11-07": "Isra and Mi'raj (estimated) [In lieu]", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-09": "Beginning of Ramadan* (*estimated)", + "1999-12-09": "Beginning of Ramadan (estimated)", "1999-12-25": "Christmas Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-03-17": "Hari Raya Haji* (*estimated)", - "2000-03-19": "Hari Raya Haji* (*estimated) [In lieu]", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-03-17": "Hari Raya Haji (estimated)", + "2000-03-19": "Hari Raya Haji (estimated) [In lieu]", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", - "2000-10-24": "Isra and Mi'raj* (*estimated)", + "2000-10-24": "Isra and Mi'raj (estimated)", "2000-10-25": "Deepavali", - "2000-11-27": "Beginning of Ramadan* (*estimated)", + "2000-11-27": "Beginning of Ramadan (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", "2001-03-06": "Hari Raya Haji", @@ -1336,538 +1336,538 @@ "2023-06-29": "Hari Raya Haji", "2023-06-30": "Hari Raya Haji", "2023-07-02": "Hari Raya Haji [In lieu]", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-12-25": "Christmas Day", - "2024-02-08": "Isra and Mi'raj* (*estimated)", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-03-11": "Beginning of Ramadan* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-08": "Isra and Mi'raj (estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-03-11": "Beginning of Ramadan (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Birthday of The Sultan of Kedah; Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated)", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Birthday of The Sultan of Kedah; Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated)", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", - "2025-01-27": "Isra and Mi'raj* (*estimated)", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", - "2025-03-01": "Beginning of Ramadan* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", + "2025-01-27": "Isra and Mi'raj (estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", + "2025-03-01": "Beginning of Ramadan (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", + "2025-05-11": "Vesak Day (estimated)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-07": "Hari Raya Haji* (*estimated)", - "2025-06-08": "Hari Raya Haji* (*estimated) [In lieu]", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-07": "Hari Raya Haji (estimated)", + "2025-06-08": "Hari Raya Haji (estimated) [In lieu]", "2025-06-15": "Birthday of The Sultan of Kedah", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", - "2026-01-16": "Isra and Mi'raj* (*estimated)", - "2026-01-18": "Isra and Mi'raj* (*estimated) [In lieu]", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-03-22": "Hari Raya Puasa* (*estimated) [In lieu]", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-03": "Labour Day [In lieu]; Vesak Day* (*estimated) [In lieu]", - "2026-05-27": "Hari Raya Haji* (*estimated)", - "2026-05-28": "Hari Raya Haji* (*estimated)", + "2026-01-16": "Isra and Mi'raj (estimated)", + "2026-01-18": "Isra and Mi'raj (estimated) [In lieu]", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-03-22": "Hari Raya Puasa (estimated) [In lieu]", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-03": "Labour Day [In lieu]; Vesak Day (estimated) [In lieu]", + "2026-05-27": "Hari Raya Haji (estimated)", + "2026-05-28": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", "2026-06-21": "Birthday of The Sultan of Kedah", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", "2026-12-27": "Christmas Day [In lieu]", - "2027-01-05": "Isra and Mi'raj* (*estimated)", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Beginning of Ramadan* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-01-05": "Isra and Mi'raj (estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Beginning of Ramadan (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated)", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2027-06-20": "Birthday of The Sultan of Kedah", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day; Isra and Mi'raj* (*estimated)", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-01-28": "Beginning of Ramadan* (*estimated)", - "2028-01-30": "Beginning of Ramadan* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", + "2027-12-25": "Christmas Day; Isra and Mi'raj (estimated)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-01-28": "Beginning of Ramadan (estimated)", + "2028-01-30": "Beginning of Ramadan (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-06": "Hari Raya Haji* (*estimated)", - "2028-05-07": "Hari Raya Haji* (*estimated) [In lieu]", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-06": "Hari Raya Haji (estimated)", + "2028-05-07": "Hari Raya Haji (estimated) [In lieu]", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2028-06-18": "Birthday of The Sultan of Kedah", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", - "2028-12-14": "Isra and Mi'raj* (*estimated)", + "2028-12-14": "Isra and Mi'raj (estimated)", "2028-12-25": "Christmas Day", - "2029-01-16": "Beginning of Ramadan* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "2029-04-24": "Hari Raya Haji* (*estimated)", - "2029-04-25": "Hari Raya Haji* (*estimated)", + "2029-01-16": "Beginning of Ramadan (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", + "2029-04-25": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-06-17": "Birthday of The Sultan of Kedah", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-02": "National Day [In lieu]", "2029-09-16": "Malaysia Day", "2029-11-04": "Deepavali", - "2029-12-03": "Isra and Mi'raj* (*estimated)", + "2029-12-03": "Isra and Mi'raj (estimated)", "2029-12-25": "Christmas Day", - "2030-01-05": "Beginning of Ramadan* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-04-13": "Hari Raya Haji* (*estimated)", - "2030-04-14": "Hari Raya Haji* (*estimated)", + "2030-01-05": "Beginning of Ramadan (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", + "2030-04-14": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2030-06-16": "Birthday of The Sultan of Kedah", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-10-27": "Deepavali [In lieu]", - "2030-11-23": "Isra and Mi'raj* (*estimated)", + "2030-11-23": "Isra and Mi'raj (estimated)", "2030-12-25": "Christmas Day", - "2030-12-26": "Beginning of Ramadan* (*estimated)", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-01-26": "Chinese New Year Holiday* (*estimated) [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-03": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2030-12-26": "Beginning of Ramadan (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-01-26": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-03": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-06-15": "Birthday of The Sultan of Kedah", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-16": "Malaysia Day", - "2031-11-12": "Isra and Mi'raj* (*estimated)", + "2031-11-12": "Isra and Mi'raj (estimated)", "2031-11-13": "Deepavali", - "2031-12-15": "Beginning of Ramadan* (*estimated)", + "2031-12-15": "Beginning of Ramadan (estimated)", "2031-12-25": "Christmas Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-03-23": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-03-23": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", + "2032-05-23": "Vesak Day (estimated)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Birthday of The Sultan of Kedah; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2032-06-20": "Birthday of The Sultan of Kedah; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali; Isra and Mi'raj* (*estimated)", - "2032-12-04": "Beginning of Ramadan* (*estimated)", + "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", + "2032-12-04": "Beginning of Ramadan (estimated)", "2032-12-25": "Christmas Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-03-12": "Hari Raya Haji* (*estimated)", - "2033-03-13": "Hari Raya Haji* (*estimated) [In lieu]", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-03-12": "Hari Raya Haji (estimated)", + "2033-03-13": "Hari Raya Haji (estimated) [In lieu]", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-13": "Vesak Day* (*estimated)", - "2033-05-15": "Vesak Day* (*estimated) [In lieu]", + "2033-05-13": "Vesak Day (estimated)", + "2033-05-15": "Vesak Day (estimated) [In lieu]", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-06-19": "Birthday of The Sultan of Kedah", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-09-18": "Malaysia Day [In lieu]", - "2033-10-21": "Deepavali; Isra and Mi'raj* (*estimated)", - "2033-10-23": "Deepavali [In lieu]; Isra and Mi'raj* (*estimated) [In lieu]", - "2033-11-23": "Beginning of Ramadan* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", + "2033-10-23": "Deepavali [In lieu]; Isra and Mi'raj (estimated) [In lieu]", + "2033-11-23": "Beginning of Ramadan (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Hari Raya Puasa* (*estimated) [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-02": "Hari Raya Haji* (*estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-12-26": "Hari Raya Puasa (estimated) [In lieu]", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-02": "Hari Raya Haji (estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-06-18": "Birthday of The Sultan of Kedah", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", - "2034-10-10": "Isra and Mi'raj* (*estimated)", + "2034-10-10": "Isra and Mi'raj (estimated)", "2034-11-09": "Deepavali", - "2034-11-12": "Beginning of Ramadan* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-12": "Beginning of Ramadan (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-11": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated)", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-11": "Chinese New Year Holiday (estimated) [In lieu]", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-06-17": "Birthday of The Sultan of Kedah", "2035-08-31": "National Day", "2035-09-02": "National Day [In lieu]", "2035-09-16": "Malaysia Day", - "2035-09-29": "Isra and Mi'raj* (*estimated)", + "2035-09-29": "Isra and Mi'raj (estimated)", "2035-10-29": "Deepavali", - "2035-11-01": "Beginning of Ramadan* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", + "2035-11-01": "Beginning of Ramadan (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", "2035-12-25": "Christmas Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-08": "Hari Raya Haji* (*estimated)", - "2036-02-10": "Hari Raya Haji* (*estimated) [In lieu]", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-08": "Hari Raya Haji (estimated)", + "2036-02-10": "Hari Raya Haji (estimated) [In lieu]", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-06-15": "Birthday of The Sultan of Kedah", "2036-08-31": "National Day", "2036-09-16": "Malaysia Day", - "2036-09-18": "Isra and Mi'raj* (*estimated)", - "2036-10-20": "Beginning of Ramadan* (*estimated)", + "2036-09-18": "Isra and Mi'raj (estimated)", + "2036-10-20": "Beginning of Ramadan (estimated)", "2036-11-16": "Deepavali", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-01-27": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-01-27": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", "2037-05-03": "Labour Day [In lieu]", - "2037-05-29": "Vesak Day* (*estimated)", - "2037-05-31": "Vesak Day* (*estimated) [In lieu]", + "2037-05-29": "Vesak Day (estimated)", + "2037-05-31": "Vesak Day (estimated) [In lieu]", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-06-21": "Birthday of The Sultan of Kedah", "2037-08-31": "National Day", - "2037-09-07": "Isra and Mi'raj* (*estimated)", + "2037-09-07": "Isra and Mi'raj (estimated)", "2037-09-16": "Malaysia Day", - "2037-10-10": "Beginning of Ramadan* (*estimated)", + "2037-10-10": "Beginning of Ramadan (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", "2037-12-25": "Christmas Day", "2037-12-27": "Christmas Day [In lieu]", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-01-17": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2038-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-01-17": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2038-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-06-20": "Birthday of The Sultan of Kedah", - "2038-08-28": "Isra and Mi'raj* (*estimated)", + "2038-08-28": "Isra and Mi'raj (estimated)", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-09-30": "Beginning of Ramadan* (*estimated)", + "2038-09-30": "Beginning of Ramadan (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", - "2038-10-31": "Hari Raya Puasa* (*estimated) [In lieu]", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", + "2038-10-31": "Hari Raya Puasa (estimated) [In lieu]", "2038-12-25": "Christmas Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-06": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-06": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-06-19": "Birthday of The Sultan of Kedah", - "2039-08-17": "Isra and Mi'raj* (*estimated)", + "2039-08-17": "Isra and Mi'raj (estimated)", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", "2039-09-18": "Malaysia Day [In lieu]", - "2039-09-19": "Beginning of Ramadan* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-09-19": "Beginning of Ramadan (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", - "2039-12-27": "Hari Raya Haji* (*estimated)", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", + "2039-12-27": "Hari Raya Haji (estimated)", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", - "2040-05-27": "Vesak Day* (*estimated) [In lieu]", + "2040-05-25": "Vesak Day (estimated)", + "2040-05-27": "Vesak Day (estimated) [In lieu]", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-06-17": "Birthday of The Sultan of Kedah", - "2040-08-05": "Isra and Mi'raj* (*estimated)", + "2040-08-05": "Isra and Mi'raj (estimated)", "2040-08-31": "National Day", "2040-09-02": "National Day [In lieu]", - "2040-09-07": "Beginning of Ramadan* (*estimated)", - "2040-09-09": "Beginning of Ramadan* (*estimated) [In lieu]", + "2040-09-07": "Beginning of Ramadan (estimated)", + "2040-09-09": "Beginning of Ramadan (estimated) [In lieu]", "2040-09-16": "Malaysia Day", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", - "2040-12-15": "Hari Raya Haji* (*estimated)", - "2040-12-16": "Hari Raya Haji* (*estimated) [In lieu]", + "2040-12-14": "Hari Raya Haji (estimated)", + "2040-12-15": "Hari Raya Haji (estimated)", + "2040-12-16": "Hari Raya Haji (estimated) [In lieu]", "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-02-03": "Chinese New Year* (*estimated) [In lieu]", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-02-03": "Chinese New Year (estimated) [In lieu]", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-06-16": "Birthday of The Sultan of Kedah", - "2041-07-25": "Isra and Mi'raj* (*estimated)", - "2041-08-28": "Beginning of Ramadan* (*estimated)", + "2041-07-25": "Isra and Mi'raj (estimated)", + "2041-08-28": "Beginning of Ramadan (estimated)", "2041-08-31": "National Day", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", - "2041-09-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", + "2041-09-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-05": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-05": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", + "2042-05-04": "Vesak Day (estimated)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-06-15": "Birthday of The Sultan of Kedah", - "2042-07-15": "Isra and Mi'raj* (*estimated)", - "2042-08-17": "Beginning of Ramadan* (*estimated)", + "2042-07-15": "Isra and Mi'raj (estimated)", + "2042-08-17": "Beginning of Ramadan (estimated)", "2042-08-31": "National Day", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated)", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated)", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2043-05-01": "Labour Day", "2043-05-03": "Labour Day [In lieu]", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2043-06-21": "Birthday of The Sultan of Kedah", - "2043-07-04": "Isra and Mi'raj* (*estimated)", - "2043-08-06": "Beginning of Ramadan* (*estimated)", + "2043-07-04": "Isra and Mi'raj (estimated)", + "2043-08-06": "Beginning of Ramadan (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", - "2043-09-06": "Hari Raya Puasa* (*estimated) [In lieu]", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", + "2043-09-06": "Hari Raya Puasa (estimated) [In lieu]", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-11-13": "Hari Raya Haji* (*estimated)", - "2043-11-15": "Hari Raya Haji* (*estimated) [In lieu]", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-11-13": "Hari Raya Haji (estimated)", + "2043-11-15": "Hari Raya Haji (estimated) [In lieu]", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2043-12-27": "Christmas Day [In lieu]", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-06-19": "Birthday of The Sultan of Kedah", - "2044-06-23": "Isra and Mi'raj* (*estimated)", - "2044-07-26": "Beginning of Ramadan* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-06-23": "Isra and Mi'raj (estimated)", + "2044-07-26": "Beginning of Ramadan (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", "2044-09-18": "Malaysia Day [In lieu]", - "2044-10-31": "Hari Raya Haji* (*estimated)", - "2044-11-01": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", + "2044-11-01": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", - "2045-02-19": "Chinese New Year* (*estimated) [In lieu]", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", + "2045-02-19": "Chinese New Year (estimated) [In lieu]", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-06-13": "Isra and Mi'raj* (*estimated)", + "2045-06-13": "Isra and Mi'raj (estimated)", "2045-06-18": "Birthday of The Sultan of Kedah", - "2045-07-15": "Beginning of Ramadan* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-15": "Beginning of Ramadan (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", - "2045-10-22": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", + "2045-10-22": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-06-02": "Isra and Mi'raj* (*estimated)", + "2046-05-20": "Vesak Day (estimated)", + "2046-06-02": "Isra and Mi'raj (estimated)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-06-17": "Birthday of The Sultan of Kedah", - "2046-07-05": "Beginning of Ramadan* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", - "2046-08-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "2046-07-05": "Beginning of Ramadan (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", + "2046-08-05": "Hari Raya Puasa (estimated) [In lieu]", "2046-08-31": "National Day", "2046-09-02": "National Day [In lieu]", "2046-09-16": "Malaysia Day", - "2046-10-10": "Hari Raya Haji* (*estimated)", - "2046-10-11": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", + "2046-10-11": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", - "2047-05-22": "Isra and Mi'raj* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-22": "Isra and Mi'raj (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2047-06-16": "Birthday of The Sultan of Kedah", - "2047-06-24": "Beginning of Ramadan* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-06-24": "Beginning of Ramadan (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-01": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-01": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-11-17": "Deepavali [In lieu]", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", - "2048-02-16": "Chinese New Year* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", + "2048-02-16": "Chinese New Year (estimated) [In lieu]", "2048-05-01": "Labour Day", "2048-05-03": "Labour Day [In lieu]", - "2048-05-10": "Isra and Mi'raj* (*estimated)", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-10": "Isra and Mi'raj (estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-12": "Beginning of Ramadan* (*estimated)", - "2048-06-14": "Beginning of Ramadan* (*estimated) [In lieu]", + "2048-06-12": "Beginning of Ramadan (estimated)", + "2048-06-14": "Beginning of Ramadan (estimated) [In lieu]", "2048-06-21": "Birthday of The Sultan of Kedah", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-09-20": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-09-20": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-12-25": "Christmas Day", "2048-12-27": "Christmas Day [In lieu]", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", - "2049-04-29": "Isra and Mi'raj* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", + "2049-04-29": "Isra and Mi'raj (estimated)", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-06-02": "Beginning of Ramadan* (*estimated)", + "2049-05-16": "Vesak Day (estimated)", + "2049-06-02": "Beginning of Ramadan (estimated)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-20": "Birthday of The Sultan of Kedah", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", - "2049-07-04": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", + "2049-07-04": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", - "2049-09-09": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", + "2049-09-09": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-04-19": "Isra and Mi'raj* (*estimated)", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-04-19": "Isra and Mi'raj (estimated)", "2050-05-01": "Labour Day", - "2050-05-05": "Vesak Day* (*estimated)", - "2050-05-22": "Beginning of Ramadan* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-22": "Beginning of Ramadan (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-19": "Birthday of The Sultan of Kedah", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-09-18": "Malaysia Day [In lieu]", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/MY_KTN.json b/snapshots/countries/MY_KTN.json index 0ba77acea..08235e679 100644 --- a/snapshots/countries/MY_KTN.json +++ b/snapshots/countries/MY_KTN.json @@ -1,910 +1,910 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", - "1950-02-19": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", + "1950-02-19": "Chinese New Year Holiday (estimated) [In lieu]", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1950-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-09-24": "Hari Raya Haji* (*estimated)", - "1950-09-25": "Hari Raya Haji* (*estimated) [In lieu]", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-09-24": "Hari Raya Haji (estimated)", + "1950-09-25": "Hari Raya Haji (estimated) [In lieu]", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", + "1951-05-20": "Vesak Day (estimated)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", - "1951-07-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", + "1951-07-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-09-13": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-09-13": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1952-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated)", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated)", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-16": "Deepavali [In lieu]", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year (estimated) [In lieu]", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated)", - "1953-05-31": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-05-31": "Nuzul Al-Quran Day (estimated) [In lieu]", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", - "1953-08-21": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", + "1953-08-21": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-05-01": "Labour Day", "1954-05-02": "Labour Day [In lieu]", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1954-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-10": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-10": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1954-12-26": "Christmas Day [In lieu]", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1955-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-07-31": "Hari Raya Haji* (*estimated)", - "1955-08-01": "Hari Raya Haji* (*estimated) [In lieu]", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-07-31": "Hari Raya Haji (estimated)", + "1955-08-01": "Hari Raya Haji (estimated) [In lieu]", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1955-11-12": "Deepavali", "1955-11-13": "Deepavali [In lieu]", "1955-12-25": "Christmas Day", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", - "1956-04-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-04-29": "Nuzul Al-Quran Day (estimated) [In lieu]", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-13": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-13": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1956-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-07-20": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-07-20": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1957-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-09": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-09": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-09-01": "National Day [In lieu]", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", - "1958-05-04": "Vesak Day* (*estimated) [In lieu]", + "1958-05-03": "Vesak Day (estimated)", + "1958-05-04": "Vesak Day (estimated) [In lieu]", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-06-28": "Hari Raya Haji* (*estimated)", - "1958-06-29": "Hari Raya Haji* (*estimated) [In lieu]", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-06-28": "Hari Raya Haji (estimated)", + "1958-06-29": "Hari Raya Haji (estimated) [In lieu]", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-12-25": "Christmas Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", - "1959-04-12": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", + "1959-04-12": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1959-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-06-18": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-06-18": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-05": "Hari Raya Haji* (*estimated)", - "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-05": "Hari Raya Haji (estimated)", + "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Hari Raya Haji (estimated) [In lieu]", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-05": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Hari Raya Puasa* (*estimated) [In lieu]", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-05": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-26": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-26": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1961-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-15": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-15": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated); Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated); Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-01-27": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-01-27": "Chinese New Year Holiday (estimated) [In lieu]", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-04": "Hari Raya Haji* (*estimated)", - "1963-05-05": "Hari Raya Haji* (*estimated) [In lieu]", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-04": "Hari Raya Haji (estimated)", + "1963-05-05": "Hari Raya Haji (estimated) [In lieu]", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1963-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-09-01": "National Day [In lieu]", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "1964-02-16": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1964-04-22": "Hari Raya Haji* (*estimated)", - "1964-04-23": "Hari Raya Haji* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-02-16": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1964-04-22": "Hari Raya Haji (estimated)", + "1964-04-23": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1964-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated)", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated)", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-02": "Labour Day [In lieu]", - "1965-05-15": "Vesak Day* (*estimated)", - "1965-05-16": "Vesak Day* (*estimated) [In lieu]", + "1965-05-15": "Vesak Day (estimated)", + "1965-05-16": "Vesak Day (estimated) [In lieu]", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1965-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1965-12-26": "Christmas Day [In lieu]", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-09": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Chinese New Year Holiday* (*estimated) [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-02": "Hari Raya Haji* (*estimated)", - "1966-04-03": "Hari Raya Haji* (*estimated) [In lieu]", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-09": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-02": "Hari Raya Haji (estimated)", + "1966-04-03": "Hari Raya Haji (estimated) [In lieu]", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-03-22": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-03-22": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1967-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated)", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-10": "Hari Raya Haji* (*estimated)", - "1968-03-11": "Hari Raya Haji* (*estimated) [In lieu]", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated)", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-10": "Hari Raya Haji (estimated)", + "1968-03-11": "Hari Raya Haji (estimated) [In lieu]", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", - "1968-05-12": "Vesak Day* (*estimated) [In lieu]", + "1968-05-11": "Vesak Day (estimated)", + "1968-05-12": "Vesak Day (estimated) [In lieu]", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1968-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1968-08-31": "National Day", "1968-09-01": "National Day [In lieu]", "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", - "1968-12-08": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-08": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-02-28": "Hari Raya Haji* (*estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-02-28": "Hari Raya Haji (estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1969-08-31": "National Day", "1969-11-08": "Deepavali", "1969-11-09": "Deepavali [In lieu]", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-02-17": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-02-17": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-07": "Hari Raya Haji* (*estimated)", - "1971-02-08": "Hari Raya Haji* (*estimated) [In lieu]", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-07": "Hari Raya Haji (estimated)", + "1971-02-08": "Hari Raya Haji (estimated) [In lieu]", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", "1971-05-02": "Labour Day [In lieu]", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", - "1971-11-21": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", + "1971-11-21": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1971-12-25": "Christmas Day", "1971-12-26": "Christmas Day [In lieu]", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-01-27": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-01-27": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", - "1972-05-28": "Vesak Day* (*estimated) [In lieu]", + "1972-05-27": "Vesak Day (estimated)", + "1972-05-28": "Vesak Day (estimated) [In lieu]", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", "1972-11-05": "Deepavali [In lieu]", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated)", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year* (*estimated) [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year (estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", - "1973-10-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-14": "Nuzul Al-Quran Day (estimated) [In lieu]", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-04": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-04": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1974-08-31": "National Day", "1974-09-01": "National Day [In lieu]", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", - "1974-12-25": "Christmas Day; Hari Raya Haji* (*estimated)", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", + "1974-12-25": "Christmas Day; Hari Raya Haji (estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", + "1975-05-25": "Vesak Day (estimated)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1975-08-31": "National Day", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", "1975-11-02": "Deepavali [In lieu]", - "1975-12-13": "Hari Raya Haji* (*estimated)", - "1975-12-14": "Hari Raya Haji* (*estimated)", - "1975-12-15": "Hari Raya Haji* (*estimated) [In lieu]", + "1975-12-13": "Hari Raya Haji (estimated)", + "1975-12-14": "Hari Raya Haji (estimated)", + "1975-12-15": "Hari Raya Haji (estimated) [In lieu]", "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year* (*estimated) [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year (estimated) [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-02": "Labour Day [In lieu]", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-12": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", - "1976-09-26": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-12": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", + "1976-09-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-02": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-02": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1976-12-26": "Christmas Day [In lieu]", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-02-20": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-02-20": "Chinese New Year Holiday (estimated) [In lieu]", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-11-22": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-11-22": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", + "1978-05-21": "Vesak Day (estimated)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-11-11": "Hari Raya Haji* (*estimated)", - "1978-11-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-11-11": "Hari Raya Haji (estimated)", + "1978-11-12": "Hari Raya Haji (estimated) [In lieu]", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1979-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", - "1979-11-01": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", + "1979-11-01": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year (estimated) [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1980-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated)", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated)", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1981-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-07-19": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-07-19": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", - "1981-10-09": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", + "1981-10-09": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", "1982-05-02": "Labour Day [In lieu]", - "1982-05-08": "Vesak Day* (*estimated)", - "1982-05-09": "Vesak Day* (*estimated) [In lieu]", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-09": "Vesak Day (estimated) [In lieu]", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1982-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-09-28": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-09-28": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-11-14": "Deepavali [In lieu]", "1982-12-25": "Christmas Day", "1982-12-26": "Christmas Day [In lieu]", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", "1983-05-01": "Labour Day", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-09-18": "Hari Raya Haji* (*estimated)", - "1983-09-19": "Hari Raya Haji* (*estimated) [In lieu]", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-09-18": "Hari Raya Haji (estimated)", + "1983-09-19": "Hari Raya Haji (estimated) [In lieu]", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1984-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-17": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-17": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-06": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-06": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", - "1985-05-05": "Vesak Day* (*estimated) [In lieu]", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-05": "Vesak Day (estimated) [In lieu]", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1985-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", - "1985-08-27": "Hari Raya Haji* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", + "1985-08-27": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", "1985-09-01": "National Day [In lieu]", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", "1986-06-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", - "1986-08-16": "Hari Raya Haji* (*estimated)", - "1986-08-17": "Hari Raya Haji* (*estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", + "1986-08-16": "Hari Raya Haji (estimated)", + "1986-08-17": "Hari Raya Haji (estimated) [In lieu]", "1986-08-31": "National Day", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1987-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-05": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-05": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-05-01": "Labour Day", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1988-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-07-24": "Hari Raya Haji* (*estimated)", - "1988-07-25": "Hari Raya Haji* (*estimated) [In lieu]", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-07-24": "Hari Raya Haji (estimated)", + "1988-07-25": "Hari Raya Haji (estimated) [In lieu]", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-07-14": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-07-14": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year* (*estimated) [In lieu]", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year (estimated) [In lieu]", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1990-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-03": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-03": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", - "1991-02-17": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", + "1991-02-17": "Chinese New Year Holiday (estimated) [In lieu]", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1991-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-06-23": "Hari Raya Haji* (*estimated)", - "1991-06-24": "Hari Raya Haji* (*estimated) [In lieu]", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-06-23": "Hari Raya Haji (estimated)", + "1991-06-24": "Hari Raya Haji (estimated) [In lieu]", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", "1991-09-01": "National Day [In lieu]", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-03-22": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Hari Raya Puasa* (*estimated) [In lieu]", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-03-22": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", + "1992-05-17": "Vesak Day (estimated)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-06-12": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-06-12": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-10-25": "Deepavali [In lieu]", "1992-12-25": "Christmas Day", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year* (*estimated) [In lieu]", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year (estimated) [In lieu]", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", "1993-05-02": "Labour Day [In lieu]", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", - "1993-06-01": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", + "1993-06-01": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1993-12-26": "Christmas Day [In lieu]", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", "1994-05-01": "Labour Day", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-21": "Hari Raya Haji* (*estimated)", - "1994-05-22": "Hari Raya Haji* (*estimated) [In lieu]", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-21": "Hari Raya Haji (estimated)", + "1994-05-22": "Hari Raya Haji (estimated) [In lieu]", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1994-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-10": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-10": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1996-04-27": "Hari Raya Haji* (*estimated)", - "1996-04-28": "Hari Raya Haji* (*estimated)", - "1996-04-29": "Hari Raya Haji* (*estimated) [In lieu]", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", + "1996-04-28": "Hari Raya Haji (estimated)", + "1996-04-29": "Hari Raya Haji (estimated) [In lieu]", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1996-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1996-08-31": "National Day", "1996-09-01": "National Day [In lieu]", "1996-11-09": "Deepavali", "1996-11-10": "Deepavali [In lieu]", "1996-12-25": "Christmas Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Chinese New Year Holiday* (*estimated) [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]", - "1997-04-17": "Hari Raya Haji* (*estimated)", - "1997-04-18": "Hari Raya Haji* (*estimated)", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1997-04-17": "Hari Raya Haji (estimated)", + "1997-04-18": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-08": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-08": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", + "1998-05-10": "Vesak Day (estimated)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-03-28": "Hari Raya Haji* (*estimated)", - "1999-03-29": "Hari Raya Haji* (*estimated) [In lieu]", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-03-28": "Hari Raya Haji (estimated)", + "1999-03-29": "Hari Raya Haji (estimated) [In lieu]", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", "1999-05-02": "Labour Day [In lieu]", - "1999-05-29": "Vesak Day* (*estimated)", - "1999-05-30": "Vesak Day* (*estimated) [In lieu]", + "1999-05-29": "Vesak Day (estimated)", + "1999-05-30": "Vesak Day (estimated) [In lieu]", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1999-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-07": "Deepavali [In lieu]", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", - "1999-12-26": "Christmas Day [In lieu]; Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year* (*estimated) [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-03-17": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "1999-12-26": "Christmas Day [In lieu]; Nuzul Al-Quran Day (estimated) [In lieu]", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year (estimated) [In lieu]", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-03-17": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2000-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", "2001-03-06": "Hari Raya Haji", @@ -1347,65 +1347,65 @@ "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", "2023-06-30": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", "2023-09-17": "Malaysia Day [In lieu]", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-11": "Birthday of the Sultan of Kelantan", "2023-11-12": "Birthday of the Sultan of Kelantan; Deepavali", "2023-12-25": "Christmas Day", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year* (*estimated) [In lieu]", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year (estimated) [In lieu]", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated)", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated)", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-01": "National Day [In lieu]", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", "2024-10-30": "Deepavali", "2024-11-11": "Birthday of the Sultan of Kelantan", "2024-11-12": "Birthday of the Sultan of Kelantan", "2024-12-25": "Christmas Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", + "2025-05-11": "Vesak Day (estimated)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-07": "Hari Raya Haji* (*estimated)", - "2025-06-08": "Hari Raya Haji* (*estimated) [In lieu]", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-07": "Hari Raya Haji (estimated)", + "2025-06-08": "Hari Raya Haji (estimated) [In lieu]", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-11": "Birthday of the Sultan of Kelantan", "2025-11-12": "Birthday of the Sultan of Kelantan", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-03-22": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", - "2026-05-28": "Hari Raya Haji* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-03-22": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", + "2026-05-28": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", @@ -1413,21 +1413,21 @@ "2026-11-11": "Birthday of the Sultan of Kelantan", "2026-11-12": "Birthday of the Sultan of Kelantan", "2026-12-25": "Christmas Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-02": "Labour Day [In lieu]", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated)", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated)", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", @@ -1435,20 +1435,20 @@ "2027-11-12": "Birthday of the Sultan of Kelantan", "2027-12-25": "Christmas Day", "2027-12-26": "Christmas Day [In lieu]", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-06": "Hari Raya Haji* (*estimated)", - "2028-05-07": "Hari Raya Haji* (*estimated) [In lieu]", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-06": "Hari Raya Haji (estimated)", + "2028-05-07": "Hari Raya Haji (estimated) [In lieu]", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-09-17": "Malaysia Day [In lieu]", @@ -1456,36 +1456,36 @@ "2028-11-12": "Birthday of the Sultan of Kelantan", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", - "2029-02-01": "Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "2029-04-24": "Hari Raya Haji* (*estimated)", - "2029-04-25": "Hari Raya Haji* (*estimated)", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", + "2029-04-25": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-11-04": "Deepavali", "2029-11-11": "Birthday of the Sultan of Kelantan", "2029-11-12": "Birthday of the Sultan of Kelantan", "2029-12-25": "Christmas Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-04-13": "Hari Raya Haji* (*estimated)", - "2030-04-14": "Hari Raya Haji* (*estimated)", - "2030-04-15": "Hari Raya Haji* (*estimated) [In lieu]", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", + "2030-04-14": "Hari Raya Haji (estimated)", + "2030-04-15": "Hari Raya Haji (estimated) [In lieu]", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2030-08-31": "National Day", "2030-09-01": "National Day [In lieu]", "2030-09-16": "Malaysia Day", @@ -1493,76 +1493,76 @@ "2030-11-11": "Birthday of the Sultan of Kelantan", "2030-11-12": "Birthday of the Sultan of Kelantan", "2030-12-25": "Christmas Day", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-12": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-01-26": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-03": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-12": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-01-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-03": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-16": "Malaysia Day", "2031-11-11": "Birthday of the Sultan of Kelantan", "2031-11-12": "Birthday of the Sultan of Kelantan", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-03-23": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-03-23": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-02": "Labour Day [In lieu]", - "2032-05-23": "Vesak Day* (*estimated)", + "2032-05-23": "Vesak Day (estimated)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", "2032-11-11": "Birthday of the Sultan of Kelantan", "2032-11-12": "Birthday of the Sultan of Kelantan", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", "2032-12-26": "Christmas Day [In lieu]", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-03-12": "Hari Raya Haji* (*estimated)", - "2033-03-13": "Hari Raya Haji* (*estimated) [In lieu]", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-03-12": "Hari Raya Haji (estimated)", + "2033-03-13": "Hari Raya Haji (estimated) [In lieu]", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", "2033-11-11": "Birthday of the Sultan of Kelantan", "2033-11-12": "Birthday of the Sultan of Kelantan", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-02": "Hari Raya Haji* (*estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-12-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-02": "Hari Raya Haji (estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", @@ -1570,326 +1570,326 @@ "2034-11-09": "Deepavali", "2034-11-11": "Birthday of the Sultan of Kelantan", "2034-11-12": "Birthday of the Sultan of Kelantan", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated)", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-10-29": "Deepavali", "2035-11-11": "Birthday of the Sultan of Kelantan", "2035-11-12": "Birthday of the Sultan of Kelantan", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-11-18": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-11-18": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-08": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-08": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", - "2036-05-11": "Vesak Day* (*estimated) [In lieu]", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-05-11": "Vesak Day (estimated) [In lieu]", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-11": "Birthday of the Sultan of Kelantan", "2036-11-12": "Birthday of the Sultan of Kelantan", "2036-11-16": "Deepavali", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-01-27": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-01-27": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", "2037-11-11": "Birthday of the Sultan of Kelantan", "2037-11-12": "Birthday of the Sultan of Kelantan", "2037-12-25": "Christmas Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-01-17": "Hari Raya Haji* (*estimated)", - "2038-01-18": "Hari Raya Haji* (*estimated) [In lieu]", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-01-17": "Hari Raya Haji (estimated)", + "2038-01-18": "Hari Raya Haji (estimated) [In lieu]", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2038-05-01": "Labour Day", "2038-05-02": "Labour Day [In lieu]", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", - "2038-10-17": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-17": "Nuzul Al-Quran Day (estimated) [In lieu]", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", - "2038-10-31": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", + "2038-10-31": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2038-11-11": "Birthday of the Sultan of Kelantan", "2038-11-12": "Birthday of the Sultan of Kelantan", "2038-12-25": "Christmas Day", "2038-12-26": "Christmas Day [In lieu]", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-06": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-06": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-07": "Vesak Day* (*estimated)", - "2039-05-08": "Vesak Day* (*estimated) [In lieu]", + "2039-05-07": "Vesak Day (estimated)", + "2039-05-08": "Vesak Day (estimated) [In lieu]", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-11": "Birthday of the Sultan of Kelantan", "2039-11-12": "Birthday of the Sultan of Kelantan", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", - "2039-12-27": "Hari Raya Haji* (*estimated)", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", + "2039-12-27": "Hari Raya Haji (estimated)", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", "2040-11-03": "Deepavali", "2040-11-04": "Deepavali [In lieu]", "2040-11-11": "Birthday of the Sultan of Kelantan", "2040-11-12": "Birthday of the Sultan of Kelantan", - "2040-12-14": "Hari Raya Haji* (*estimated)", - "2040-12-15": "Hari Raya Haji* (*estimated)", - "2040-12-16": "Hari Raya Haji* (*estimated) [In lieu]", + "2040-12-14": "Hari Raya Haji (estimated)", + "2040-12-15": "Hari Raya Haji (estimated)", + "2040-12-16": "Hari Raya Haji (estimated) [In lieu]", "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-02-03": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-02-03": "Chinese New Year Holiday (estimated) [In lieu]", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-31": "National Day", "2041-09-01": "National Day [In lieu]", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", "2041-11-11": "Birthday of the Sultan of Kelantan", "2041-11-12": "Birthday of the Sultan of Kelantan", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-05": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-05": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", + "2042-05-04": "Vesak Day (estimated)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Birthday of the Sultan of Kelantan; Deepavali", "2042-11-12": "Birthday of the Sultan of Kelantan", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated)", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated)", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", - "2043-05-24": "Vesak Day* (*estimated) [In lieu]", + "2043-05-23": "Vesak Day (estimated)", + "2043-05-24": "Vesak Day (estimated) [In lieu]", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", - "2043-08-23": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-23": "Nuzul Al-Quran Day (estimated) [In lieu]", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", - "2043-09-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", + "2043-09-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", "2043-11-01": "Deepavali [In lieu]", "2043-11-11": "Birthday of the Sultan of Kelantan", - "2043-11-12": "Birthday of the Sultan of Kelantan; Hari Raya Haji* (*estimated)", - "2043-11-13": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Birthday of the Sultan of Kelantan; Hari Raya Haji (estimated)", + "2043-11-13": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", - "2044-11-01": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", + "2044-11-01": "Hari Raya Haji (estimated)", "2044-11-11": "Birthday of the Sultan of Kelantan", "2044-11-12": "Birthday of the Sultan of Kelantan", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", - "2045-02-19": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", + "2045-02-19": "Chinese New Year Holiday (estimated) [In lieu]", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", "2045-09-17": "Malaysia Day [In lieu]", - "2045-10-21": "Hari Raya Haji* (*estimated)", - "2045-10-22": "Hari Raya Haji* (*estimated)", - "2045-10-23": "Hari Raya Haji* (*estimated) [In lieu]", + "2045-10-21": "Hari Raya Haji (estimated)", + "2045-10-22": "Hari Raya Haji (estimated)", + "2045-10-23": "Hari Raya Haji (estimated) [In lieu]", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-11-11": "Birthday of the Sultan of Kelantan", "2045-11-12": "Birthday of the Sultan of Kelantan", "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", + "2046-05-20": "Vesak Day (estimated)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", - "2046-07-22": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", - "2046-08-05": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-07-22": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", + "2046-08-05": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-10-10": "Hari Raya Haji* (*estimated)", - "2046-10-11": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", + "2046-10-11": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-28": "Deepavali [In lieu]", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-11-11": "Birthday of the Sultan of Kelantan", "2046-11-12": "Birthday of the Sultan of Kelantan", "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year* (*estimated) [In lieu]", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year (estimated) [In lieu]", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-01": "National Day [In lieu]", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-01": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-01": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-11": "Birthday of the Sultan of Kelantan", "2047-11-12": "Birthday of the Sultan of Kelantan", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", - "2048-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", + "2048-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-09-20": "Hari Raya Haji* (*estimated)", - "2048-09-21": "Hari Raya Haji* (*estimated) [In lieu]", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-09-20": "Hari Raya Haji (estimated)", + "2048-09-21": "Hari Raya Haji (estimated) [In lieu]", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", "2048-11-11": "Birthday of the Sultan of Kelantan", "2048-11-12": "Birthday of the Sultan of Kelantan", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-05-01": "Labour Day", "2049-05-02": "Labour Day [In lieu]", - "2049-05-16": "Vesak Day* (*estimated)", + "2049-05-16": "Vesak Day (estimated)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", - "2049-09-09": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", + "2049-09-09": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", "2049-11-11": "Birthday of the Sultan of Kelantan", "2049-11-12": "Birthday of the Sultan of Kelantan", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2049-12-26": "Christmas Day [In lieu]", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", "2050-05-01": "Labour Day", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated)", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-11": "Birthday of the Sultan of Kelantan", "2050-11-12": "Birthday of the Sultan of Kelantan; Deepavali", "2050-11-13": "Deepavali [In lieu]", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/MY_KUL.json b/snapshots/countries/MY_KUL.json index 4937a2494..48bf15ebd 100644 --- a/snapshots/countries/MY_KUL.json +++ b/snapshots/countries/MY_KUL.json @@ -1,933 +1,933 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-02-18": "Thaipusam", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", "1955-01-10": "Thaipusam [In lieu]", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", "1956-02-26": "Thaipusam", "1956-02-27": "Thaipusam [In lieu]", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-07": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", "1959-02-22": "Thaipusam", "1959-02-23": "Thaipusam [In lieu]", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", "1973-02-18": "Thaipusam", "1973-02-19": "Thaipusam [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1974-02-01": "Federal Territory Day", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", "1975-02-01": "Federal Territory Day", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated); Federal Territory Day", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]; Federal Territory Day [In lieu]", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]; Federal Territory Day [In lieu]", "1976-02-15": "Thaipusam", "1976-02-16": "Thaipusam [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-02-01": "Federal Territory Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", "1978-02-01": "Federal Territory Day", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", "1979-02-01": "Federal Territory Day", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-01": "Federal Territory Day", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-03-02": "Thaipusam", "1980-03-03": "Thaipusam [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1981-02-01": "Federal Territory Day", "1981-02-02": "Federal Territory Day [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", "1982-01-11": "Thaipusam [In lieu]", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-02-01": "Federal Territory Day", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", "1983-02-01": "Federal Territory Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", "1984-02-01": "Federal Territory Day", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-01": "Federal Territory Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-03-06": "Thaipusam", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-01": "Federal Territory Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-02-23": "Thaipusam", "1986-02-24": "Thaipusam [In lieu]", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", - "1986-05-26": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-02-01": "Federal Territory Day", "1987-02-02": "Federal Territory Day [In lieu]", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-02-01": "Federal Territory Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", "1989-02-01": "Federal Territory Day", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", - "1989-04-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", "1990-02-01": "Federal Territory Day", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-02-01": "Federal Territory Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-02-01": "Federal Territory Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", "1993-02-01": "Federal Territory Day", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-02-01": "Federal Territory Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-02-28": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated); Federal Territory Day", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-02-01": "Federal Territory Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-01-27": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", "1997-02-01": "Federal Territory Day", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", "1998-02-01": "Federal Territory Day", "1998-02-02": "Federal Territory Day [In lieu]", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", "1999-02-01": "Federal Territory Day", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2000-02-01": "Federal Territory Day", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", "2000-02-20": "Thaipusam", "2000-02-21": "Thaipusam [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-09": "Thaipusam", "2001-01-24": "Chinese New Year", @@ -1381,68 +1381,68 @@ "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", "2024-02-01": "Federal Territory Day", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-02-01": "Federal Territory Day", "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Federal Territory Day; Thaipusam", "2026-02-02": "Federal Territory Day [In lieu]; Thaipusam [In lieu]", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", @@ -1450,56 +1450,56 @@ "2027-01-01": "New Year's Day", "2027-01-22": "Thaipusam", "2027-02-01": "Federal Territory Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-01": "Federal Territory Day", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", @@ -1507,431 +1507,431 @@ "2029-11-05": "Deepavali [In lieu]", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", "2030-02-01": "Federal Territory Day", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", "2030-02-17": "Thaipusam", "2030-02-18": "Thaipusam [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", "2031-02-01": "Federal Territory Day", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", "2032-02-01": "Federal Territory Day", "2032-02-02": "Federal Territory Day [In lieu]", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated); Federal Territory Day", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", "2034-02-01": "Federal Territory Day", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", "2034-03-06": "Thaipusam [In lieu]", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-02-01": "Federal Territory Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", "2036-01-14": "Thaipusam [In lieu]", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-01": "Federal Territory Day", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-01": "Federal Territory Day", "2037-02-02": "Federal Territory Day [In lieu]", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", "2038-02-01": "Federal Territory Day", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", "2039-01-10": "Thaipusam [In lieu]", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-02-01": "Federal Territory Day", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-01": "Federal Territory Day", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-09-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated); Federal Territory Day", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated); Federal Territory Day", + "2041-02-02": "Chinese New Year Holiday (estimated)", "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", "2042-02-01": "Federal Territory Day", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-01": "Federal Territory Day", "2043-02-02": "Federal Territory Day [In lieu]", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", "2044-02-01": "Federal Territory Day", - "2044-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", "2044-02-15": "Thaipusam [In lieu]", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-01": "Federal Territory Day", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2046-02-01": "Federal Territory Day", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-02-01": "Federal Territory Day", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", "2048-02-01": "Federal Territory Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-02-28": "Thaipusam", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-06-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-02-01": "Federal Territory Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-02-01": "Federal Territory Day", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_LBN.json b/snapshots/countries/MY_LBN.json index c81d1d73b..b090c3cda 100644 --- a/snapshots/countries/MY_LBN.json +++ b/snapshots/countries/MY_LBN.json @@ -1,971 +1,971 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-05-30": "Pesta Kaamatan", "1950-05-31": "Pesta Kaamatan (Second day)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-05-30": "Pesta Kaamatan", "1951-05-31": "Pesta Kaamatan (Second day)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-05-30": "Pesta Kaamatan", "1952-05-31": "Pesta Kaamatan (Second day)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated); Pesta Kaamatan", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated); Pesta Kaamatan", "1953-05-31": "Pesta Kaamatan (Second day)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", "1954-05-30": "Pesta Kaamatan", "1954-05-31": "Pesta Kaamatan (Second day)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-05-30": "Pesta Kaamatan", "1955-05-31": "Pesta Kaamatan (Second day)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-05-30": "Pesta Kaamatan", "1956-05-31": "Pesta Kaamatan (Second day)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-05-30": "Pesta Kaamatan", "1957-05-31": "Pesta Kaamatan (Second day)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-07": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-05-30": "Pesta Kaamatan", "1958-05-31": "Pesta Kaamatan (Second day)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-05-30": "Pesta Kaamatan", "1959-05-31": "Pesta Kaamatan (Second day)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", "1960-05-30": "Pesta Kaamatan", "1960-05-31": "Pesta Kaamatan (Second day)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-05-30": "Pesta Kaamatan", "1961-05-31": "Pesta Kaamatan (Second day)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-05-30": "Pesta Kaamatan", "1962-05-31": "Pesta Kaamatan (Second day)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-05-30": "Pesta Kaamatan", "1963-05-31": "Pesta Kaamatan (Second day)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-05-30": "Pesta Kaamatan", "1964-05-31": "Pesta Kaamatan (Second day)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-05-30": "Pesta Kaamatan", "1965-05-31": "Pesta Kaamatan (Second day)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-05-30": "Pesta Kaamatan", "1966-05-31": "Pesta Kaamatan (Second day)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-05-30": "Pesta Kaamatan", "1967-05-31": "Pesta Kaamatan (Second day)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-05-30": "Pesta Kaamatan", "1968-05-31": "Pesta Kaamatan (Second day)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-05-30": "Pesta Kaamatan", "1969-05-31": "Pesta Kaamatan (Second day)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-05-30": "Pesta Kaamatan", "1970-05-31": "Pesta Kaamatan (Second day)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-05-30": "Pesta Kaamatan", "1971-05-31": "Pesta Kaamatan (Second day)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-05-30": "Pesta Kaamatan", "1972-05-31": "Pesta Kaamatan (Second day)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-05-30": "Pesta Kaamatan", "1973-05-31": "Pesta Kaamatan (Second day)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1974-02-01": "Federal Territory Day", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-05-30": "Pesta Kaamatan", "1974-05-31": "Pesta Kaamatan (Second day)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", "1975-02-01": "Federal Territory Day", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-05-30": "Pesta Kaamatan", "1975-05-31": "Pesta Kaamatan (Second day)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated); Federal Territory Day", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]; Federal Territory Day [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]; Federal Territory Day [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-05-30": "Pesta Kaamatan", "1976-05-31": "Pesta Kaamatan (Second day)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-02-01": "Federal Territory Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-05-30": "Pesta Kaamatan", "1977-05-31": "Pesta Kaamatan (Second day)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", "1978-02-01": "Federal Territory Day", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-05-30": "Pesta Kaamatan", "1978-05-31": "Pesta Kaamatan (Second day)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", "1979-02-01": "Federal Territory Day", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-05-30": "Pesta Kaamatan", "1979-05-31": "Pesta Kaamatan (Second day)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-01": "Federal Territory Day", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-05-30": "Pesta Kaamatan", "1980-05-31": "Pesta Kaamatan (Second day)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1981-02-01": "Federal Territory Day", "1981-02-02": "Federal Territory Day [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-05-30": "Pesta Kaamatan", "1981-05-31": "Pesta Kaamatan (Second day)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-02-01": "Federal Territory Day", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-05-30": "Pesta Kaamatan", "1982-05-31": "Pesta Kaamatan (Second day)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", "1983-02-01": "Federal Territory Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-05-30": "Pesta Kaamatan", "1983-05-31": "Pesta Kaamatan (Second day)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", "1984-02-01": "Federal Territory Day", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-05-30": "Pesta Kaamatan", "1984-05-31": "Pesta Kaamatan (Second day)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-01": "Federal Territory Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-05-30": "Pesta Kaamatan", "1985-05-31": "Pesta Kaamatan (Second day)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-01": "Federal Territory Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", - "1986-05-26": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", "1986-05-30": "Pesta Kaamatan", "1986-05-31": "Pesta Kaamatan (Second day)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-02-01": "Federal Territory Day", "1987-02-02": "Federal Territory Day [In lieu]", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-05-30": "Pesta Kaamatan", "1987-05-31": "Pesta Kaamatan (Second day)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-02-01": "Federal Territory Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Pesta Kaamatan; Vesak Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Pesta Kaamatan; Vesak Day (estimated)", "1988-05-31": "Pesta Kaamatan (Second day)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", "1989-02-01": "Federal Territory Day", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", - "1989-04-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-05-30": "Pesta Kaamatan", "1989-05-31": "Pesta Kaamatan (Second day)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", "1990-02-01": "Federal Territory Day", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-05-30": "Pesta Kaamatan", "1990-05-31": "Pesta Kaamatan (Second day)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-02-01": "Federal Territory Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-05-30": "Pesta Kaamatan", "1991-05-31": "Pesta Kaamatan (Second day)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-02-01": "Federal Territory Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-05-30": "Pesta Kaamatan", "1992-05-31": "Pesta Kaamatan (Second day)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", "1993-02-01": "Federal Territory Day", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", "1993-05-30": "Pesta Kaamatan", - "1993-05-31": "Hari Raya Haji* (*estimated); Pesta Kaamatan (Second day)", + "1993-05-31": "Hari Raya Haji (estimated); Pesta Kaamatan (Second day)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-02-01": "Federal Territory Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-02-28": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-05-30": "Pesta Kaamatan", "1994-05-31": "Pesta Kaamatan (Second day)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated); Federal Territory Day", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated); Pesta Kaamatan", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated); Pesta Kaamatan", "1995-05-31": "Pesta Kaamatan (Second day)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-02-01": "Federal Territory Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-05-30": "Pesta Kaamatan", "1996-05-31": "Pesta Kaamatan (Second day)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-01-27": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", "1997-02-01": "Federal Territory Day", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-05-30": "Pesta Kaamatan", "1997-05-31": "Pesta Kaamatan (Second day)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", "1998-02-01": "Federal Territory Day", "1998-02-02": "Federal Territory Day [In lieu]", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-05-30": "Pesta Kaamatan", "1998-05-31": "Pesta Kaamatan (Second day)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", "1999-02-01": "Federal Territory Day", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-05-30": "Pesta Kaamatan", "1999-05-31": "Pesta Kaamatan (Second day)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2000-02-01": "Federal Territory Day", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-05-30": "Pesta Kaamatan", "2000-05-31": "Pesta Kaamatan (Second day)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", @@ -1437,132 +1437,132 @@ "2023-05-31": "Pesta Kaamatan (Second day)", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-02-01": "Federal Territory Day", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-05-30": "Pesta Kaamatan", "2024-05-31": "Pesta Kaamatan (Second day)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-02-01": "Federal Territory Day", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-05-30": "Pesta Kaamatan", "2025-05-31": "Pesta Kaamatan (Second day)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Federal Territory Day", "2026-02-02": "Federal Territory Day [In lieu]", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-05-30": "Pesta Kaamatan", "2026-05-31": "Pesta Kaamatan (Second day)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-02-01": "Federal Territory Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", "2027-05-30": "Pesta Kaamatan", "2027-05-31": "Pesta Kaamatan (Second day)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-01": "Federal Territory Day", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-05-30": "Pesta Kaamatan", "2028-05-31": "Pesta Kaamatan (Second day)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-05-30": "Pesta Kaamatan", "2029-05-31": "Pesta Kaamatan (Second day)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", @@ -1570,120 +1570,120 @@ "2029-11-05": "Deepavali [In lieu]", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", "2030-02-01": "Federal Territory Day", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-05-30": "Pesta Kaamatan", "2030-05-31": "Pesta Kaamatan (Second day)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", "2031-02-01": "Federal Territory Day", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-05-30": "Pesta Kaamatan", "2031-05-31": "Pesta Kaamatan (Second day)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", "2032-02-01": "Federal Territory Day", "2032-02-02": "Federal Territory Day [In lieu]", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-05-30": "Pesta Kaamatan", "2032-05-31": "Pesta Kaamatan (Second day)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated); Federal Territory Day", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-05-30": "Pesta Kaamatan", "2033-05-31": "Pesta Kaamatan (Second day)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", "2034-02-01": "Federal Territory Day", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); Pesta Kaamatan", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); Pesta Kaamatan", "2034-05-31": "Pesta Kaamatan (Second day)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-02-01": "Federal Territory Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-05-30": "Pesta Kaamatan", "2035-05-31": "Pesta Kaamatan (Second day)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1691,325 +1691,325 @@ "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-01": "Federal Territory Day", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-05-30": "Pesta Kaamatan", "2036-05-31": "Pesta Kaamatan (Second day)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-01": "Federal Territory Day", "2037-02-02": "Federal Territory Day [In lieu]", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-05-30": "Pesta Kaamatan", "2037-05-31": "Pesta Kaamatan (Second day)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", "2038-02-01": "Federal Territory Day", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-05-30": "Pesta Kaamatan", "2038-05-31": "Pesta Kaamatan (Second day)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-02-01": "Federal Territory Day", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-05-30": "Pesta Kaamatan", "2039-05-31": "Pesta Kaamatan (Second day)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-01": "Federal Territory Day", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-05-30": "Pesta Kaamatan", "2040-05-31": "Pesta Kaamatan (Second day)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-09-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated); Federal Territory Day", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated); Federal Territory Day", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-05-30": "Pesta Kaamatan", "2041-05-31": "Pesta Kaamatan (Second day)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", "2042-02-01": "Federal Territory Day", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-05-30": "Pesta Kaamatan", "2042-05-31": "Pesta Kaamatan (Second day)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-01": "Federal Territory Day", "2043-02-02": "Federal Territory Day [In lieu]", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-05-30": "Pesta Kaamatan", "2043-05-31": "Pesta Kaamatan (Second day)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", "2044-02-01": "Federal Territory Day", - "2044-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-05-30": "Pesta Kaamatan", "2044-05-31": "Pesta Kaamatan (Second day)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-01": "Federal Territory Day", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-05-30": "Pesta Kaamatan", "2045-05-31": "Pesta Kaamatan (Second day)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2046-02-01": "Federal Territory Day", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-05-30": "Pesta Kaamatan", "2046-05-31": "Pesta Kaamatan (Second day)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-02-01": "Federal Territory Day", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-05-30": "Pesta Kaamatan", "2047-05-31": "Pesta Kaamatan (Second day)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", "2048-02-01": "Federal Territory Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-05-30": "Pesta Kaamatan", "2048-05-31": "Pesta Kaamatan (Second day)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-06-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-02-01": "Federal Territory Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-05-30": "Pesta Kaamatan", "2049-05-31": "Pesta Kaamatan (Second day)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-02-01": "Federal Territory Day", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-05-30": "Pesta Kaamatan", "2050-05-31": "Pesta Kaamatan (Second day)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_MLK.json b/snapshots/countries/MY_MLK.json index cd0adfd56..b2f924ef8 100644 --- a/snapshots/countries/MY_MLK.json +++ b/snapshots/countries/MY_MLK.json @@ -1,796 +1,796 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-17": "Beginning of Ramadan* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-06-17": "Beginning of Ramadan (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated); Birthday of the Governor of Malacca", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated); Birthday of the Governor of Malacca", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-06": "Beginning of Ramadan* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-06-06": "Beginning of Ramadan (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-12": "Birthday of the Governor of Malacca", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", - "1952-05-25": "Beginning of Ramadan* (*estimated)", - "1952-05-26": "Beginning of Ramadan* (*estimated) [In lieu]", + "1952-05-08": "Vesak Day (estimated)", + "1952-05-25": "Beginning of Ramadan (estimated)", + "1952-05-26": "Beginning of Ramadan (estimated) [In lieu]", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-10-10": "Birthday of the Governor of Malacca", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-05-01": "Labour Day", - "1953-05-14": "Beginning of Ramadan* (*estimated)", - "1953-05-27": "Vesak Day* (*estimated)", + "1953-05-14": "Beginning of Ramadan (estimated)", + "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-10-09": "Birthday of the Governor of Malacca", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-05-01": "Labour Day", - "1954-05-04": "Beginning of Ramadan* (*estimated)", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-04": "Beginning of Ramadan (estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-08": "Birthday of the Governor of Malacca", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", - "1955-04-24": "Beginning of Ramadan* (*estimated)", - "1955-04-25": "Beginning of Ramadan* (*estimated) [In lieu]", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", + "1955-04-24": "Beginning of Ramadan (estimated)", + "1955-04-25": "Beginning of Ramadan (estimated) [In lieu]", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", "1955-10-14": "Birthday of the Governor of Malacca", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", - "1956-04-12": "Beginning of Ramadan* (*estimated)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-04-12": "Beginning of Ramadan (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", "1956-10-12": "Birthday of the Governor of Malacca", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", - "1957-04-01": "Beginning of Ramadan* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", + "1957-04-01": "Beginning of Ramadan (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-10-11": "Birthday of the Governor of Malacca", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", - "1958-03-21": "Beginning of Ramadan* (*estimated)", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", + "1958-03-21": "Beginning of Ramadan (estimated)", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-10-10": "Birthday of the Governor of Malacca", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", - "1959-03-11": "Beginning of Ramadan* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-03-11": "Beginning of Ramadan (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-09": "Birthday of the Governor of Malacca", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-02-28": "Beginning of Ramadan* (*estimated)", - "1960-02-29": "Beginning of Ramadan* (*estimated) [In lieu]", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-02-28": "Beginning of Ramadan (estimated)", + "1960-02-29": "Beginning of Ramadan (estimated) [In lieu]", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-10-14": "Birthday of the Governor of Malacca", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-10-13": "Birthday of the Governor of Malacca", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Beginning of Ramadan* (*estimated); Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-05": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-12": "Birthday of the Governor of Malacca", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-10-11": "Birthday of the Governor of Malacca", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-01-15": "Beginning of Ramadan* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-01-15": "Beginning of Ramadan (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-10-09": "Birthday of the Governor of Malacca", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-01-03": "Beginning of Ramadan* (*estimated)", - "1965-01-04": "Beginning of Ramadan* (*estimated) [In lieu]", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-01-03": "Beginning of Ramadan (estimated)", + "1965-01-04": "Beginning of Ramadan (estimated) [In lieu]", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-08": "Birthday of the Governor of Malacca", "1965-10-22": "Deepavali", - "1965-12-23": "Beginning of Ramadan* (*estimated)", + "1965-12-23": "Beginning of Ramadan (estimated)", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-10-14": "Birthday of the Governor of Malacca", "1966-11-10": "Deepavali", - "1966-12-13": "Beginning of Ramadan* (*estimated)", + "1966-12-13": "Beginning of Ramadan (estimated)", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-13": "Birthday of the Governor of Malacca", "1967-10-31": "Deepavali", - "1967-12-02": "Beginning of Ramadan* (*estimated)", + "1967-12-02": "Beginning of Ramadan (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-10-11": "Birthday of the Governor of Malacca", "1968-11-18": "Deepavali", - "1968-11-21": "Beginning of Ramadan* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-11-21": "Beginning of Ramadan (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-10-10": "Birthday of the Governor of Malacca", "1969-11-08": "Deepavali", - "1969-11-10": "Beginning of Ramadan* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-10": "Beginning of Ramadan (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-09": "Birthday of the Governor of Malacca", "1970-10-28": "Deepavali", - "1970-11-01": "Beginning of Ramadan* (*estimated)", - "1970-11-02": "Beginning of Ramadan* (*estimated) [In lieu]", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-01": "Beginning of Ramadan (estimated)", + "1970-11-02": "Beginning of Ramadan (estimated) [In lieu]", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-10-08": "Birthday of the Governor of Malacca", - "1971-10-20": "Beginning of Ramadan* (*estimated)", + "1971-10-20": "Beginning of Ramadan (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-10-08": "Beginning of Ramadan* (*estimated)", - "1972-10-09": "Beginning of Ramadan* (*estimated) [In lieu]", + "1972-10-08": "Beginning of Ramadan (estimated)", + "1972-10-09": "Beginning of Ramadan (estimated) [In lieu]", "1972-10-13": "Birthday of the Governor of Malacca", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", - "1973-09-27": "Beginning of Ramadan* (*estimated)", + "1973-09-27": "Beginning of Ramadan (estimated)", "1973-10-12": "Birthday of the Governor of Malacca", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-09-17": "Beginning of Ramadan* (*estimated)", + "1974-09-17": "Beginning of Ramadan (estimated)", "1974-10-11": "Birthday of the Governor of Malacca", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-09-06": "Beginning of Ramadan* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-06": "Beginning of Ramadan (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-10-10": "Birthday of the Governor of Malacca", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-08-26": "Beginning of Ramadan* (*estimated)", + "1976-08-26": "Beginning of Ramadan (estimated)", "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-10-08": "Birthday of the Governor of Malacca", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-15": "Beginning of Ramadan* (*estimated)", + "1977-08-15": "Beginning of Ramadan (estimated)", "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-10-14": "Birthday of the Governor of Malacca", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-05": "Beginning of Ramadan* (*estimated)", + "1978-08-05": "Beginning of Ramadan (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-13": "Birthday of the Governor of Malacca", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-07-25": "Beginning of Ramadan* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-07-25": "Beginning of Ramadan (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", "1979-10-12": "Birthday of the Governor of Malacca", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-13": "Beginning of Ramadan* (*estimated)", - "1980-07-14": "Beginning of Ramadan* (*estimated) [In lieu]", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-13": "Beginning of Ramadan (estimated)", + "1980-07-14": "Beginning of Ramadan (estimated) [In lieu]", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", "1980-10-10": "Birthday of the Governor of Malacca", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-02": "Beginning of Ramadan* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-02": "Beginning of Ramadan (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-09": "Birthday of the Governor of Malacca", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-22": "Beginning of Ramadan* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-06-22": "Beginning of Ramadan (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", "1982-10-08": "Birthday of the Governor of Malacca", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-12": "Beginning of Ramadan* (*estimated)", - "1983-06-13": "Beginning of Ramadan* (*estimated) [In lieu]", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-12": "Beginning of Ramadan (estimated)", + "1983-06-13": "Beginning of Ramadan (estimated) [In lieu]", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-10-14": "Birthday of the Governor of Malacca", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", - "1984-05-31": "Beginning of Ramadan* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", + "1984-05-31": "Beginning of Ramadan (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-12": "Birthday of the Governor of Malacca", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", - "1985-05-20": "Beginning of Ramadan* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-20": "Beginning of Ramadan (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-10-11": "Birthday of the Governor of Malacca", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-05-01": "Labour Day", - "1986-05-09": "Beginning of Ramadan* (*estimated)", - "1986-05-23": "Vesak Day* (*estimated)", + "1986-05-09": "Beginning of Ramadan (estimated)", + "1986-05-23": "Vesak Day (estimated)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-10": "Birthday of the Governor of Malacca", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", - "1987-04-29": "Beginning of Ramadan* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", + "1987-04-29": "Beginning of Ramadan (estimated)", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", "1987-10-09": "Birthday of the Governor of Malacca", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", - "1988-04-17": "Beginning of Ramadan* (*estimated)", - "1988-04-18": "Beginning of Ramadan* (*estimated) [In lieu]", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", + "1988-04-17": "Beginning of Ramadan (estimated)", + "1988-04-18": "Beginning of Ramadan (estimated) [In lieu]", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", "1988-10-14": "Birthday of the Governor of Malacca", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", - "1989-04-07": "Beginning of Ramadan* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", + "1989-04-07": "Beginning of Ramadan (estimated)", "1989-04-15": "Declaration of Malacca as a Historical City", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-13": "Birthday of the Governor of Malacca", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1990-03-27": "Beginning of Ramadan* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-03-27": "Beginning of Ramadan (estimated)", "1990-04-15": "Declaration of Malacca as a Historical City", "1990-04-16": "Declaration of Malacca as a Historical City [In lieu]", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-10-12": "Birthday of the Governor of Malacca", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", - "1991-03-17": "Beginning of Ramadan* (*estimated)", - "1991-03-18": "Beginning of Ramadan* (*estimated) [In lieu]", - "1991-04-15": "Declaration of Malacca as a Historical City; Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", + "1991-03-17": "Beginning of Ramadan (estimated)", + "1991-03-18": "Beginning of Ramadan (estimated) [In lieu]", + "1991-04-15": "Declaration of Malacca as a Historical City; Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-10-11": "Birthday of the Governor of Malacca", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-03-05": "Beginning of Ramadan* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-03-05": "Beginning of Ramadan (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-04-15": "Declaration of Malacca as a Historical City", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-09": "Birthday of the Governor of Malacca", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-02-22": "Beginning of Ramadan* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-02-22": "Beginning of Ramadan (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-04-15": "Declaration of Malacca as a Historical City", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-10-08": "Birthday of the Governor of Malacca", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-04-15": "Declaration of Malacca as a Historical City", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-10-14": "Birthday of the Governor of Malacca", "1994-11-01": "Deepavali", @@ -798,113 +798,113 @@ "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Beginning of Ramadan* (*estimated); Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-04-15": "Declaration of Malacca as a Historical City", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-10-13": "Birthday of the Governor of Malacca", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-01-21": "Beginning of Ramadan* (*estimated)", - "1996-01-22": "Beginning of Ramadan* (*estimated) [In lieu]", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-01-21": "Beginning of Ramadan (estimated)", + "1996-01-22": "Beginning of Ramadan (estimated) [In lieu]", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-04-15": "Declaration of Malacca as a Historical City", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-10-11": "Birthday of the Governor of Malacca", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-01-10": "Beginning of Ramadan* (*estimated)", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-01-10": "Beginning of Ramadan (estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1997-04-15": "Declaration of Malacca as a Historical City", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-10": "Birthday of the Governor of Malacca", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", - "1997-12-30": "Beginning of Ramadan* (*estimated)", + "1997-12-30": "Beginning of Ramadan (estimated)", "1998-01-01": "New Year's Day", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", "1998-04-15": "Declaration of Malacca as a Historical City", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-10-09": "Birthday of the Governor of Malacca", "1998-11-17": "Deepavali", - "1998-12-19": "Beginning of Ramadan* (*estimated)", + "1998-12-19": "Beginning of Ramadan (estimated)", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", "1999-04-15": "Declaration of Malacca as a Historical City", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-10-08": "Birthday of the Governor of Malacca", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-09": "Beginning of Ramadan* (*estimated)", + "1999-12-09": "Beginning of Ramadan (estimated)", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-04-15": "Declaration of Malacca as a Historical City", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-13": "Birthday of the Governor of Malacca", "2000-10-25": "Deepavali", - "2000-11-27": "Beginning of Ramadan* (*estimated)", + "2000-11-27": "Beginning of Ramadan (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", @@ -1356,126 +1356,126 @@ "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-24": "Birthday of the Governor of Malacca", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-03-11": "Beginning of Ramadan* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-03-11": "Beginning of Ramadan (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-04-15": "Declaration of Malacca as a Historical City", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-24": "Birthday of the Governor of Malacca", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", - "2025-03-01": "Beginning of Ramadan* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", + "2025-03-01": "Beginning of Ramadan (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-04-15": "Declaration of Malacca as a Historical City", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-24": "Birthday of the Governor of Malacca", "2025-08-25": "Birthday of the Governor of Malacca [In lieu]", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Beginning of Ramadan* (*estimated); Chinese New Year Holiday* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", "2026-04-15": "Declaration of Malacca as a Historical City", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", "2026-08-24": "Birthday of the Governor of Malacca", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Beginning of Ramadan* (*estimated)", - "2027-02-09": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Beginning of Ramadan (estimated)", + "2027-02-09": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-04-15": "Declaration of Malacca as a Historical City", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-24": "Birthday of the Governor of Malacca", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-01-28": "Beginning of Ramadan* (*estimated)", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-01-28": "Beginning of Ramadan (estimated)", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-04-15": "Declaration of Malacca as a Historical City", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-24": "Birthday of the Governor of Malacca", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-01-16": "Beginning of Ramadan* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-01-16": "Beginning of Ramadan (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-04-15": "Declaration of Malacca as a Historical City", "2029-04-16": "Declaration of Malacca as a Historical City [In lieu]", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-24": "Birthday of the Governor of Malacca", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", @@ -1484,431 +1484,431 @@ "2029-11-05": "Deepavali [In lieu]", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-01-05": "Beginning of Ramadan* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-01-05": "Beginning of Ramadan (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-15": "Declaration of Malacca as a Historical City", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-24": "Birthday of the Governor of Malacca", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", - "2030-12-26": "Beginning of Ramadan* (*estimated)", + "2030-12-26": "Beginning of Ramadan (estimated)", "2031-01-01": "New Year's Day", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", "2031-04-15": "Declaration of Malacca as a Historical City", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-24": "Birthday of the Governor of Malacca", "2031-08-25": "Birthday of the Governor of Malacca [In lieu]", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", - "2031-12-15": "Beginning of Ramadan* (*estimated)", + "2031-12-15": "Beginning of Ramadan (estimated)", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-04-15": "Declaration of Malacca as a Historical City", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-08-24": "Birthday of the Governor of Malacca", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", - "2032-12-04": "Beginning of Ramadan* (*estimated)", + "2032-12-04": "Beginning of Ramadan (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-04-15": "Declaration of Malacca as a Historical City", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-24": "Birthday of the Governor of Malacca", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", - "2033-11-23": "Beginning of Ramadan* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-11-23": "Beginning of Ramadan (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-04-15": "Declaration of Malacca as a Historical City", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-24": "Birthday of the Governor of Malacca", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", - "2034-11-12": "Beginning of Ramadan* (*estimated)", - "2034-11-13": "Beginning of Ramadan* (*estimated) [In lieu]", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-12": "Beginning of Ramadan (estimated)", + "2034-11-13": "Beginning of Ramadan (estimated) [In lieu]", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-04-15": "Declaration of Malacca as a Historical City", "2035-04-16": "Declaration of Malacca as a Historical City [In lieu]", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-24": "Birthday of the Governor of Malacca", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-29": "Deepavali", - "2035-11-01": "Beginning of Ramadan* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-01": "Beginning of Ramadan (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-04-15": "Declaration of Malacca as a Historical City", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-24": "Birthday of the Governor of Malacca", "2036-08-25": "Birthday of the Governor of Malacca [In lieu]", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-10-20": "Beginning of Ramadan* (*estimated)", + "2036-10-20": "Beginning of Ramadan (estimated)", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", "2037-04-15": "Declaration of Malacca as a Historical City", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-24": "Birthday of the Governor of Malacca", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-10": "Beginning of Ramadan* (*estimated)", + "2037-10-10": "Beginning of Ramadan (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-04-15": "Declaration of Malacca as a Historical City", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-24": "Birthday of the Governor of Malacca", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-09-30": "Beginning of Ramadan* (*estimated)", + "2038-09-30": "Beginning of Ramadan (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-04-15": "Declaration of Malacca as a Historical City", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-24": "Birthday of the Governor of Malacca", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-09-19": "Beginning of Ramadan* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-09-19": "Beginning of Ramadan (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-04-15": "Declaration of Malacca as a Historical City", "2040-04-16": "Declaration of Malacca as a Historical City [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-24": "Birthday of the Governor of Malacca", "2040-08-31": "National Day", - "2040-09-07": "Beginning of Ramadan* (*estimated)", + "2040-09-07": "Beginning of Ramadan (estimated)", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-04-15": "Declaration of Malacca as a Historical City", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-24": "Birthday of the Governor of Malacca", - "2041-08-28": "Beginning of Ramadan* (*estimated)", + "2041-08-28": "Beginning of Ramadan (estimated)", "2041-08-31": "National Day", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-04-15": "Declaration of Malacca as a Historical City", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-08-17": "Beginning of Ramadan* (*estimated)", - "2042-08-18": "Beginning of Ramadan* (*estimated) [In lieu]", + "2042-08-17": "Beginning of Ramadan (estimated)", + "2042-08-18": "Beginning of Ramadan (estimated) [In lieu]", "2042-08-24": "Birthday of the Governor of Malacca", "2042-08-25": "Birthday of the Governor of Malacca [In lieu]", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-04-15": "Declaration of Malacca as a Historical City", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-06": "Beginning of Ramadan* (*estimated)", + "2043-08-06": "Beginning of Ramadan (estimated)", "2043-08-24": "Birthday of the Governor of Malacca", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-04-15": "Declaration of Malacca as a Historical City", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-07-26": "Beginning of Ramadan* (*estimated)", - "2044-08-24": "Birthday of the Governor of Malacca; Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-07-26": "Beginning of Ramadan (estimated)", + "2044-08-24": "Birthday of the Governor of Malacca; Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", "2045-04-15": "Declaration of Malacca as a Historical City", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-15": "Beginning of Ramadan* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-15": "Beginning of Ramadan (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-24": "Birthday of the Governor of Malacca", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-04-15": "Declaration of Malacca as a Historical City", "2046-04-16": "Declaration of Malacca as a Historical City [In lieu]", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-05": "Beginning of Ramadan* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-07-05": "Beginning of Ramadan (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-24": "Birthday of the Governor of Malacca", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-04-15": "Declaration of Malacca as a Historical City", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-06-24": "Beginning of Ramadan* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-06-24": "Beginning of Ramadan (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-24": "Birthday of the Governor of Malacca", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-04-15": "Declaration of Malacca as a Historical City", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-12": "Beginning of Ramadan* (*estimated)", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-06-12": "Beginning of Ramadan (estimated)", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-24": "Birthday of the Governor of Malacca", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-04-15": "Declaration of Malacca as a Historical City", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", - "2049-06-02": "Beginning of Ramadan* (*estimated)", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-06-02": "Beginning of Ramadan (estimated)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-24": "Birthday of the Governor of Malacca", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-04-15": "Declaration of Malacca as a Historical City", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", - "2050-05-22": "Beginning of Ramadan* (*estimated)", - "2050-05-23": "Beginning of Ramadan* (*estimated) [In lieu]", + "2050-05-05": "Vesak Day (estimated)", + "2050-05-22": "Beginning of Ramadan (estimated)", + "2050-05-23": "Beginning of Ramadan (estimated) [In lieu]", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-24": "Birthday of the Governor of Malacca", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_NSN.json b/snapshots/countries/MY_NSN.json index f0ac4c419..6cb6c5923 100644 --- a/snapshots/countries/MY_NSN.json +++ b/snapshots/countries/MY_NSN.json @@ -1,910 +1,910 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", - "1950-05-14": "Isra and Mi'raj* (*estimated)", - "1950-05-15": "Isra and Mi'raj* (*estimated) [In lieu]", + "1950-05-01": "Labour Day; Vesak Day (estimated)", + "1950-05-14": "Isra and Mi'raj (estimated)", + "1950-05-15": "Isra and Mi'raj (estimated) [In lieu]", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", - "1951-05-04": "Isra and Mi'raj* (*estimated)", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-04": "Isra and Mi'raj (estimated)", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", - "1952-04-22": "Isra and Mi'raj* (*estimated)", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-04-22": "Isra and Mi'raj (estimated)", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-02-28": "Thaipusam", - "1953-04-12": "Isra and Mi'raj* (*estimated)", - "1953-04-13": "Isra and Mi'raj* (*estimated) [In lieu]", + "1953-04-12": "Isra and Mi'raj (estimated)", + "1953-04-13": "Isra and Mi'raj (estimated) [In lieu]", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-02-18": "Thaipusam", - "1954-04-01": "Isra and Mi'raj* (*estimated)", + "1954-04-01": "Isra and Mi'raj (estimated)", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", "1955-01-10": "Thaipusam [In lieu]", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", - "1955-03-21": "Isra and Mi'raj* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", + "1955-03-21": "Isra and Mi'raj (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", "1956-02-26": "Thaipusam", "1956-02-27": "Thaipusam [In lieu]", - "1956-03-10": "Isra and Mi'raj* (*estimated)", + "1956-03-10": "Isra and Mi'raj (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", "1957-02-15": "Thaipusam", - "1957-02-27": "Isra and Mi'raj* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-02-27": "Isra and Mi'raj (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-16": "Isra and Mi'raj* (*estimated)", - "1958-02-17": "Isra and Mi'raj* (*estimated) [In lieu]", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", + "1958-02-16": "Isra and Mi'raj (estimated)", + "1958-02-17": "Isra and Mi'raj (estimated) [In lieu]", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-06": "Isra and Mi'raj* (*estimated)", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", + "1959-02-06": "Isra and Mi'raj (estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", "1959-02-22": "Thaipusam", "1959-02-23": "Thaipusam [In lieu]", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-01-13": "Thaipusam", - "1960-01-26": "Isra and Mi'raj* (*estimated)", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-26": "Isra and Mi'raj (estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-01-14": "Isra and Mi'raj* (*estimated)", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", + "1961-01-14": "Isra and Mi'raj (estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-01-04": "Isra and Mi'raj* (*estimated)", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", + "1962-01-04": "Isra and Mi'raj (estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", "1962-02-19": "Thaipusam", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", - "1962-12-24": "Isra and Mi'raj* (*estimated)", + "1962-12-24": "Isra and Mi'raj (estimated)", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", - "1963-12-13": "Isra and Mi'raj* (*estimated)", + "1963-12-13": "Isra and Mi'raj (estimated)", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", - "1964-12-01": "Isra and Mi'raj* (*estimated)", + "1964-12-01": "Isra and Mi'raj (estimated)", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", - "1965-11-20": "Isra and Mi'raj* (*estimated)", + "1965-11-20": "Isra and Mi'raj (estimated)", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-01-06": "Thaipusam", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", - "1966-11-10": "Deepavali; Isra and Mi'raj* (*estimated)", + "1966-11-10": "Deepavali; Isra and Mi'raj (estimated)", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", - "1967-10-30": "Isra and Mi'raj* (*estimated)", + "1967-10-30": "Isra and Mi'raj (estimated)", "1967-10-31": "Deepavali", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", - "1968-10-19": "Isra and Mi'raj* (*estimated)", + "1968-10-19": "Isra and Mi'raj (estimated)", "1968-11-18": "Deepavali", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", - "1969-10-08": "Isra and Mi'raj* (*estimated)", + "1969-10-08": "Isra and Mi'raj (estimated)", "1969-11-08": "Deepavali", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", - "1970-09-28": "Isra and Mi'raj* (*estimated)", + "1970-09-28": "Isra and Mi'raj (estimated)", "1970-10-28": "Deepavali", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-09-17": "Isra and Mi'raj* (*estimated)", + "1971-09-17": "Isra and Mi'raj (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-09-05": "Isra and Mi'raj* (*estimated)", + "1972-09-05": "Isra and Mi'raj (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", "1973-02-18": "Thaipusam", "1973-02-19": "Thaipusam [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-25": "Isra and Mi'raj* (*estimated)", + "1973-08-25": "Isra and Mi'raj (estimated)", "1973-08-31": "National Day", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-15": "Isra and Mi'raj* (*estimated)", + "1974-08-15": "Isra and Mi'raj (estimated)", "1974-08-31": "National Day", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-05": "Isra and Mi'raj* (*estimated)", + "1975-08-05": "Isra and Mi'raj (estimated)", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", "1976-02-15": "Thaipusam", "1976-02-16": "Thaipusam [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-07-24": "Isra and Mi'raj* (*estimated)", + "1976-07-24": "Isra and Mi'raj (estimated)", "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-07-13": "Isra and Mi'raj* (*estimated)", + "1977-07-13": "Isra and Mi'raj (estimated)", "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-07-02": "Isra and Mi'raj* (*estimated)", - "1978-07-03": "Isra and Mi'raj* (*estimated) [In lieu]", + "1978-07-02": "Isra and Mi'raj (estimated)", + "1978-07-03": "Isra and Mi'raj (estimated) [In lieu]", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-22": "Isra and Mi'raj* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-06-22": "Isra and Mi'raj (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-03-02": "Thaipusam", "1980-03-03": "Thaipusam [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-10": "Isra and Mi'raj* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-06-10": "Isra and Mi'raj (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", - "1981-05-31": "Isra and Mi'raj* (*estimated)", - "1981-06-01": "Isra and Mi'raj* (*estimated) [In lieu]", + "1981-05-18": "Vesak Day (estimated)", + "1981-05-31": "Isra and Mi'raj (estimated)", + "1981-06-01": "Isra and Mi'raj (estimated) [In lieu]", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", "1982-01-11": "Thaipusam [In lieu]", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", - "1982-05-20": "Isra and Mi'raj* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-20": "Isra and Mi'raj (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-10": "Isra and Mi'raj* (*estimated)", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-10": "Isra and Mi'raj (estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", - "1984-04-28": "Isra and Mi'raj* (*estimated)", + "1984-04-28": "Isra and Mi'raj (estimated)", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-03-06": "Thaipusam", - "1985-04-17": "Isra and Mi'raj* (*estimated)", + "1985-04-17": "Isra and Mi'raj (estimated)", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-02-23": "Thaipusam", "1986-02-24": "Thaipusam [In lieu]", - "1986-04-06": "Isra and Mi'raj* (*estimated)", - "1986-04-07": "Isra and Mi'raj* (*estimated) [In lieu]", + "1986-04-06": "Isra and Mi'raj (estimated)", + "1986-04-07": "Isra and Mi'raj (estimated) [In lieu]", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", + "1986-05-23": "Vesak Day (estimated)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", - "1987-03-27": "Isra and Mi'raj* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", + "1987-03-27": "Isra and Mi'raj (estimated)", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", - "1988-03-15": "Isra and Mi'raj* (*estimated)", + "1988-03-15": "Isra and Mi'raj (estimated)", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", - "1989-03-05": "Isra and Mi'raj* (*estimated)", - "1989-03-06": "Isra and Mi'raj* (*estimated) [In lieu]", + "1989-03-05": "Isra and Mi'raj (estimated)", + "1989-03-06": "Isra and Mi'raj (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1990-02-22": "Isra and Mi'raj* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-02-22": "Isra and Mi'raj (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-11": "Isra and Mi'raj* (*estimated)", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", + "1991-02-11": "Isra and Mi'raj (estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", "1991-03-01": "Thaipusam", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-01-31": "Isra and Mi'raj* (*estimated)", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", + "1992-01-31": "Isra and Mi'raj (estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-02-18": "Thaipusam", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-08": "Thaipusam", - "1993-01-20": "Isra and Mi'raj* (*estimated)", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-20": "Isra and Mi'raj (estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-01-09": "Isra and Mi'raj* (*estimated)", - "1994-01-10": "Isra and Mi'raj* (*estimated) [In lieu]", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", + "1994-01-09": "Isra and Mi'raj (estimated)", + "1994-01-10": "Isra and Mi'raj (estimated) [In lieu]", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day [In lieu]", - "1994-12-29": "Isra and Mi'raj* (*estimated)", + "1994-12-29": "Isra and Mi'raj (estimated)", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-14": "Thaipusam", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", - "1995-12-19": "Isra and Mi'raj* (*estimated)", + "1995-12-19": "Isra and Mi'raj (estimated)", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", - "1996-12-08": "Isra and Mi'raj* (*estimated)", - "1996-12-09": "Isra and Mi'raj* (*estimated) [In lieu]", + "1996-12-08": "Isra and Mi'raj (estimated)", + "1996-12-09": "Isra and Mi'raj (estimated) [In lieu]", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-29": "Deepavali", - "1997-11-27": "Isra and Mi'raj* (*estimated)", + "1997-11-27": "Isra and Mi'raj (estimated)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-13": "Thaipusam", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", - "1998-11-16": "Isra and Mi'raj* (*estimated)", + "1998-11-16": "Isra and Mi'raj (estimated)", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", - "1999-11-05": "Isra and Mi'raj* (*estimated)", + "1999-11-05": "Isra and Mi'raj (estimated)", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", "2000-02-20": "Thaipusam", "2000-02-21": "Thaipusam [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", - "2000-10-24": "Isra and Mi'raj* (*estimated)", + "2000-10-24": "Isra and Mi'raj (estimated)", "2000-10-25": "Deepavali", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-09": "Thaipusam", "2001-01-24": "Chinese New Year", @@ -1350,10 +1350,10 @@ "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", @@ -1361,546 +1361,546 @@ "2024-01-14": "Birthday of the Sultan of Negeri Sembilan", "2024-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", "2024-01-25": "Thaipusam", - "2024-02-08": "Isra and Mi'raj* (*estimated)", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-08": "Isra and Mi'raj (estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2025-01-27": "Isra and Mi'raj* (*estimated)", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", + "2025-01-27": "Isra and Mi'raj (estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-02-11": "Thaipusam", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2026-01-16": "Isra and Mi'raj* (*estimated)", + "2026-01-16": "Isra and Mi'raj (estimated)", "2026-02-01": "Thaipusam", "2026-02-02": "Thaipusam [In lieu]", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", - "2027-01-05": "Isra and Mi'raj* (*estimated)", + "2027-01-05": "Isra and Mi'raj (estimated)", "2027-01-14": "Birthday of the Sultan of Negeri Sembilan", "2027-01-22": "Thaipusam", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day; Isra and Mi'raj* (*estimated)", + "2027-12-25": "Christmas Day; Isra and Mi'raj (estimated)", "2028-01-01": "New Year's Day", "2028-01-11": "Thaipusam", "2028-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", - "2028-12-14": "Isra and Mi'raj* (*estimated)", + "2028-12-14": "Isra and Mi'raj (estimated)", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-01-14": "Birthday of the Sultan of Negeri Sembilan", "2029-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", "2029-11-04": "Deepavali", "2029-11-05": "Deepavali [In lieu]", - "2029-12-03": "Isra and Mi'raj* (*estimated)", + "2029-12-03": "Isra and Mi'raj (estimated)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", "2030-02-17": "Thaipusam", "2030-02-18": "Thaipusam [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", - "2030-11-23": "Isra and Mi'raj* (*estimated)", + "2030-11-23": "Isra and Mi'raj (estimated)", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-08": "Thaipusam", "2031-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", - "2031-11-12": "Isra and Mi'raj* (*estimated)", + "2031-11-12": "Isra and Mi'raj (estimated)", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Birthday of the Sultan of Negeri Sembilan; Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", + "2032-01-14": "Birthday of the Sultan of Negeri Sembilan; Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali; Isra and Mi'raj* (*estimated)", + "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", "2033-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali; Isra and Mi'raj* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", "2034-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", "2034-03-06": "Thaipusam [In lieu]", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", - "2034-10-10": "Isra and Mi'raj* (*estimated)", + "2034-10-10": "Isra and Mi'raj (estimated)", "2034-11-09": "Deepavali", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-01-14": "Birthday of the Sultan of Negeri Sembilan", "2035-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", - "2035-09-29": "Isra and Mi'raj* (*estimated)", + "2035-09-29": "Isra and Mi'raj (estimated)", "2035-10-29": "Deepavali", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", "2036-01-14": "Birthday of the Sultan of Negeri Sembilan", "2036-01-15": "Thaipusam [In lieu]", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-09-18": "Isra and Mi'raj* (*estimated)", + "2036-09-18": "Isra and Mi'raj (estimated)", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", - "2037-09-07": "Isra and Mi'raj* (*estimated)", + "2037-09-07": "Isra and Mi'raj (estimated)", "2037-09-16": "Malaysia Day", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-28": "Isra and Mi'raj* (*estimated)", + "2038-08-28": "Isra and Mi'raj (estimated)", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", "2039-01-10": "Thaipusam [In lieu]", "2039-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-17": "Isra and Mi'raj* (*estimated)", + "2039-08-17": "Isra and Mi'raj (estimated)", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", "2040-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-05": "Isra and Mi'raj* (*estimated)", - "2040-08-06": "Isra and Mi'raj* (*estimated) [In lieu]", + "2040-08-05": "Isra and Mi'raj (estimated)", + "2040-08-06": "Isra and Mi'raj (estimated) [In lieu]", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", "2041-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-07-25": "Isra and Mi'raj* (*estimated)", + "2041-07-25": "Isra and Mi'raj (estimated)", "2041-08-31": "National Day", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-07": "Thaipusam", "2042-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-07-15": "Isra and Mi'raj* (*estimated)", + "2042-07-15": "Isra and Mi'raj (estimated)", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-07-04": "Isra and Mi'raj* (*estimated)", + "2043-07-04": "Isra and Mi'raj (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", "2044-02-15": "Thaipusam [In lieu]", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-06-23": "Isra and Mi'raj* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-06-23": "Isra and Mi'raj (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", "2045-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-06-13": "Isra and Mi'raj* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-06-13": "Isra and Mi'raj (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-01-14": "Birthday of the Sultan of Negeri Sembilan", "2046-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", - "2046-06-02": "Isra and Mi'raj* (*estimated)", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-06-02": "Isra and Mi'raj (estimated)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-11": "Thaipusam", "2047-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", - "2047-05-22": "Isra and Mi'raj* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-22": "Isra and Mi'raj (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", "2048-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-02-28": "Thaipusam", "2048-05-01": "Labour Day", - "2048-05-10": "Isra and Mi'raj* (*estimated)", - "2048-05-11": "Isra and Mi'raj* (*estimated) [In lieu]", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-10": "Isra and Mi'raj (estimated)", + "2048-05-11": "Isra and Mi'raj (estimated) [In lieu]", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-02-17": "Thaipusam", - "2049-04-29": "Isra and Mi'raj* (*estimated)", + "2049-04-29": "Isra and Mi'raj (estimated)", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-01-08": "Thaipusam", "2050-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", - "2050-04-19": "Isra and Mi'raj* (*estimated)", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-04-19": "Isra and Mi'raj (estimated)", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_PHG.json b/snapshots/countries/MY_PHG.json index a957df7d0..99d10882b 100644 --- a/snapshots/countries/MY_PHG.json +++ b/snapshots/countries/MY_PHG.json @@ -1,785 +1,785 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-07": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-07": "Hari Hol of Pahang", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-10-24": "Birthday of the Sultan of Pahang", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-07": "Hari Hol of Pahang", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-10-24": "Birthday of the Sultan of Pahang", "1976-10-25": "Birthday of the Sultan of Pahang [In lieu]", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-05-07": "Hari Hol of Pahang", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-10-24": "Birthday of the Sultan of Pahang", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-05-01": "Labour Day", "1978-05-07": "Hari Hol of Pahang", "1978-05-08": "Hari Hol of Pahang [In lieu]", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-24": "Birthday of the Sultan of Pahang", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", "1979-05-07": "Hari Hol of Pahang", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", "1979-10-24": "Birthday of the Sultan of Pahang", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-05-01": "Labour Day", "1980-05-07": "Hari Hol of Pahang", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-10-24": "Birthday of the Sultan of Pahang", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", "1981-05-07": "Hari Hol of Pahang", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-24": "Birthday of the Sultan of Pahang", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", "1982-05-07": "Hari Hol of Pahang", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-10-24": "Birthday of the Sultan of Pahang", "1982-10-25": "Birthday of the Sultan of Pahang [In lieu]", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", "1983-05-07": "Hari Hol of Pahang", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-10-24": "Birthday of the Sultan of Pahang", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-05-01": "Labour Day", "1984-05-07": "Hari Hol of Pahang", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", "1984-10-24": "Birthday of the Sultan of Pahang", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-05-07": "Hari Hol of Pahang", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-10-24": "Birthday of the Sultan of Pahang", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-05-01": "Labour Day", "1986-05-07": "Hari Hol of Pahang", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", - "1986-05-26": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-24": "Birthday of the Sultan of Pahang", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-05-01": "Labour Day", "1987-05-07": "Hari Hol of Pahang", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", "1987-10-24": "Birthday of the Sultan of Pahang", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", "1988-05-07": "Hari Hol of Pahang", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-10-24": "Birthday of the Sultan of Pahang", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", - "1989-04-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Hari Hol of Pahang; Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Hari Hol of Pahang [In lieu]; Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Hari Hol of Pahang; Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Hari Hol of Pahang [In lieu]; Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-24": "Birthday of the Sultan of Pahang", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", "1990-05-07": "Hari Hol of Pahang", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-10-24": "Birthday of the Sultan of Pahang", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", "1991-05-07": "Hari Hol of Pahang", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-10-24": "Birthday of the Sultan of Pahang", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", "1992-05-07": "Hari Hol of Pahang", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Birthday of the Sultan of Pahang; Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", "1993-05-07": "Hari Hol of Pahang", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-10-24": "Birthday of the Sultan of Pahang", "1993-10-25": "Birthday of the Sultan of Pahang [In lieu]", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-02-28": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", "1994-05-07": "Hari Hol of Pahang", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-10-24": "Birthday of the Sultan of Pahang", "1994-11-01": "Deepavali", @@ -787,115 +787,115 @@ "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", "1995-05-07": "Hari Hol of Pahang", "1995-05-08": "Hari Hol of Pahang [In lieu]", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-10-24": "Birthday of the Sultan of Pahang", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", "1996-05-07": "Hari Hol of Pahang", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-10-24": "Birthday of the Sultan of Pahang", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-01-27": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated); Hari Hol of Pahang", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated); Hari Hol of Pahang", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-24": "Birthday of the Sultan of Pahang", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-07": "Hari Hol of Pahang", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-10-24": "Birthday of the Sultan of Pahang", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", "1999-05-07": "Hari Hol of Pahang", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-10-24": "Birthday of the Sultan of Pahang", "1999-10-25": "Birthday of the Sultan of Pahang [In lieu]", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", "2000-05-07": "Hari Hol of Pahang", "2000-05-08": "Hari Hol of Pahang [In lieu]", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-24": "Birthday of the Sultan of Pahang", "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", @@ -1342,127 +1342,127 @@ "2023-05-22": "Hari Hol of Pahang", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-07-30": "Birthday of the Sultan of Pahang", "2023-07-31": "Birthday of the Sultan of Pahang [In lieu]", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Hari Hol of Pahang; Vesak Day* (*estimated)", + "2024-05-22": "Hari Hol of Pahang; Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-07-30": "Birthday of the Sultan of Pahang", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-05-22": "Hari Hol of Pahang", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-07-30": "Birthday of the Sultan of Pahang", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", "2026-05-22": "Hari Hol of Pahang", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", "2026-07-30": "Birthday of the Sultan of Pahang", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", "2027-05-22": "Hari Hol of Pahang", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2027-07-30": "Birthday of the Sultan of Pahang", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", "2028-05-22": "Hari Hol of Pahang", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2028-07-30": "Birthday of the Sultan of Pahang", "2028-07-31": "Birthday of the Sultan of Pahang [In lieu]", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-01": "Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-22": "Hari Hol of Pahang", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-07-30": "Birthday of the Sultan of Pahang", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", @@ -1471,430 +1471,430 @@ "2029-11-05": "Deepavali [In lieu]", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-05-22": "Hari Hol of Pahang", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-07-30": "Birthday of the Sultan of Pahang", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-05-22": "Hari Hol of Pahang", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-07-30": "Birthday of the Sultan of Pahang", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-22": "Hari Hol of Pahang", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-07-30": "Birthday of the Sultan of Pahang", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-05-22": "Hari Hol of Pahang", "2033-05-23": "Hari Hol of Pahang [In lieu]", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-07-30": "Birthday of the Sultan of Pahang", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", "2034-05-22": "Hari Hol of Pahang", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-07-30": "Birthday of the Sultan of Pahang", "2034-07-31": "Birthday of the Sultan of Pahang [In lieu]", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Hari Hol of Pahang; Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Hari Hol of Pahang; Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-07-30": "Birthday of the Sultan of Pahang", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-05-22": "Hari Hol of Pahang", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-07-30": "Birthday of the Sultan of Pahang", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", "2037-05-22": "Hari Hol of Pahang", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-07-30": "Birthday of the Sultan of Pahang", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-05-22": "Hari Hol of Pahang", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-07-30": "Birthday of the Sultan of Pahang", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-05-22": "Hari Hol of Pahang", "2039-05-23": "Hari Hol of Pahang [In lieu]", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-07-30": "Birthday of the Sultan of Pahang", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", "2040-05-22": "Hari Hol of Pahang", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-07-30": "Birthday of the Sultan of Pahang", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-09-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-05-22": "Hari Hol of Pahang", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-07-30": "Birthday of the Sultan of Pahang", "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-05-22": "Hari Hol of Pahang", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-07-30": "Birthday of the Sultan of Pahang", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-05-01": "Labour Day", "2043-05-22": "Hari Hol of Pahang", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2043-07-30": "Birthday of the Sultan of Pahang", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-05-22": "Hari Hol of Pahang", "2044-05-23": "Hari Hol of Pahang [In lieu]", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-07-30": "Birthday of the Sultan of Pahang", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-05-22": "Hari Hol of Pahang", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2045-07-30": "Birthday of the Sultan of Pahang", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", "2045-08-01": "Birthday of the Sultan of Pahang [In lieu]", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-05-22": "Hari Hol of Pahang", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", "2046-07-30": "Birthday of the Sultan of Pahang", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-05-22": "Hari Hol of Pahang", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-07-30": "Birthday of the Sultan of Pahang", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-05-01": "Labour Day", "2048-05-22": "Hari Hol of Pahang", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-06-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-07-30": "Birthday of the Sultan of Pahang", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-05-22": "Hari Hol of Pahang", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-07-30": "Birthday of the Sultan of Pahang", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-05-22": "Hari Hol of Pahang", "2050-05-23": "Hari Hol of Pahang [In lieu]", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-07-30": "Birthday of the Sultan of Pahang", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_PJY.json b/snapshots/countries/MY_PJY.json index 4937a2494..48bf15ebd 100644 --- a/snapshots/countries/MY_PJY.json +++ b/snapshots/countries/MY_PJY.json @@ -1,933 +1,933 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-02-18": "Thaipusam", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", "1955-01-10": "Thaipusam [In lieu]", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", "1956-02-26": "Thaipusam", "1956-02-27": "Thaipusam [In lieu]", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-07": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", "1959-02-22": "Thaipusam", "1959-02-23": "Thaipusam [In lieu]", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", "1973-02-18": "Thaipusam", "1973-02-19": "Thaipusam [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1974-02-01": "Federal Territory Day", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", "1975-02-01": "Federal Territory Day", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated); Federal Territory Day", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]; Federal Territory Day [In lieu]", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]; Federal Territory Day [In lieu]", "1976-02-15": "Thaipusam", "1976-02-16": "Thaipusam [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-02-01": "Federal Territory Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", "1978-02-01": "Federal Territory Day", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", "1979-02-01": "Federal Territory Day", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-01": "Federal Territory Day", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-03-02": "Thaipusam", "1980-03-03": "Thaipusam [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1981-02-01": "Federal Territory Day", "1981-02-02": "Federal Territory Day [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", "1982-01-11": "Thaipusam [In lieu]", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-02-01": "Federal Territory Day", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", "1983-02-01": "Federal Territory Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", "1984-02-01": "Federal Territory Day", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-01": "Federal Territory Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-03-06": "Thaipusam", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-01": "Federal Territory Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-02-23": "Thaipusam", "1986-02-24": "Thaipusam [In lieu]", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", - "1986-05-26": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-02-01": "Federal Territory Day", "1987-02-02": "Federal Territory Day [In lieu]", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-02-01": "Federal Territory Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", "1989-02-01": "Federal Territory Day", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", - "1989-04-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", "1990-02-01": "Federal Territory Day", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-02-01": "Federal Territory Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-02-01": "Federal Territory Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", "1993-02-01": "Federal Territory Day", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-02-01": "Federal Territory Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-02-28": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated); Federal Territory Day", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-02-01": "Federal Territory Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-01-27": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", "1997-02-01": "Federal Territory Day", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", "1998-02-01": "Federal Territory Day", "1998-02-02": "Federal Territory Day [In lieu]", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", "1999-02-01": "Federal Territory Day", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2000-02-01": "Federal Territory Day", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", "2000-02-20": "Thaipusam", "2000-02-21": "Thaipusam [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-09": "Thaipusam", "2001-01-24": "Chinese New Year", @@ -1381,68 +1381,68 @@ "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", "2024-02-01": "Federal Territory Day", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-02-01": "Federal Territory Day", "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Federal Territory Day; Thaipusam", "2026-02-02": "Federal Territory Day [In lieu]; Thaipusam [In lieu]", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", @@ -1450,56 +1450,56 @@ "2027-01-01": "New Year's Day", "2027-01-22": "Thaipusam", "2027-02-01": "Federal Territory Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-01": "Federal Territory Day", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-01": "Federal Territory Day; Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", @@ -1507,431 +1507,431 @@ "2029-11-05": "Deepavali [In lieu]", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", "2030-02-01": "Federal Territory Day", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", "2030-02-17": "Thaipusam", "2030-02-18": "Thaipusam [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", "2031-02-01": "Federal Territory Day", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", "2032-02-01": "Federal Territory Day", "2032-02-02": "Federal Territory Day [In lieu]", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated); Federal Territory Day", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", "2034-02-01": "Federal Territory Day", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", "2034-03-06": "Thaipusam [In lieu]", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-02-01": "Federal Territory Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", "2036-01-14": "Thaipusam [In lieu]", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-01": "Federal Territory Day", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-01": "Federal Territory Day", "2037-02-02": "Federal Territory Day [In lieu]", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", "2038-02-01": "Federal Territory Day", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", "2039-01-10": "Thaipusam [In lieu]", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-02-01": "Federal Territory Day", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-01": "Federal Territory Day", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-09-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated); Federal Territory Day", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated); Federal Territory Day", + "2041-02-02": "Chinese New Year Holiday (estimated)", "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", "2042-02-01": "Federal Territory Day", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-01": "Federal Territory Day", "2043-02-02": "Federal Territory Day [In lieu]", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", "2044-02-01": "Federal Territory Day", - "2044-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", "2044-02-15": "Thaipusam [In lieu]", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-01": "Federal Territory Day", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2046-02-01": "Federal Territory Day", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-02-01": "Federal Territory Day", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", "2048-02-01": "Federal Territory Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-02-28": "Thaipusam", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-06-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-02-01": "Federal Territory Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-02-01": "Federal Territory Day", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_PLS.json b/snapshots/countries/MY_PLS.json index 6d07c80b1..7f9f3e42f 100644 --- a/snapshots/countries/MY_PLS.json +++ b/snapshots/countries/MY_PLS.json @@ -1,913 +1,913 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", - "1950-05-14": "Isra and Mi'raj* (*estimated)", - "1950-05-15": "Isra and Mi'raj* (*estimated) [In lieu]", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", + "1950-05-14": "Isra and Mi'raj (estimated)", + "1950-05-15": "Isra and Mi'raj (estimated) [In lieu]", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-09-24": "Hari Raya Haji* (*estimated)", - "1950-09-25": "Hari Raya Haji* (*estimated) [In lieu]", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-09-24": "Hari Raya Haji (estimated)", + "1950-09-25": "Hari Raya Haji (estimated) [In lieu]", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", - "1951-05-04": "Isra and Mi'raj* (*estimated)", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-04": "Isra and Mi'raj (estimated)", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-09-13": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-09-13": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", - "1952-04-22": "Isra and Mi'raj* (*estimated)", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-04-22": "Isra and Mi'raj (estimated)", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated)", - "1952-09-02": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated)", + "1952-09-02": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1953-04-12": "Isra and Mi'raj* (*estimated)", - "1953-04-13": "Isra and Mi'raj* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-04-12": "Isra and Mi'raj (estimated)", + "1953-04-13": "Isra and Mi'raj (estimated) [In lieu]", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", - "1953-08-21": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", + "1953-08-21": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", - "1954-04-01": "Isra and Mi'raj* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", + "1954-04-01": "Isra and Mi'raj (estimated)", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-10": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-10": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", - "1955-03-21": "Isra and Mi'raj* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", + "1955-03-21": "Isra and Mi'raj (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-07-31": "Hari Raya Haji* (*estimated)", - "1955-08-01": "Hari Raya Haji* (*estimated) [In lieu]", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-07-31": "Hari Raya Haji (estimated)", + "1955-08-01": "Hari Raya Haji (estimated) [In lieu]", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", - "1956-03-10": "Isra and Mi'raj* (*estimated)", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-03-10": "Isra and Mi'raj (estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-07-20": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-07-20": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", - "1957-02-27": "Isra and Mi'raj* (*estimated)", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", + "1957-02-27": "Isra and Mi'raj (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-09": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-09": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", - "1958-02-16": "Isra and Mi'raj* (*estimated)", - "1958-02-17": "Isra and Mi'raj* (*estimated) [In lieu]", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-07": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-02-16": "Isra and Mi'raj (estimated)", + "1958-02-17": "Isra and Mi'raj (estimated) [In lieu]", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-06-28": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-06-28": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", - "1959-02-06": "Isra and Mi'raj* (*estimated)", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-02-06": "Isra and Mi'raj (estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-06-18": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-06-18": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", - "1960-01-26": "Isra and Mi'raj* (*estimated)", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-26": "Isra and Mi'raj (estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-05": "Hari Raya Haji* (*estimated)", - "1960-06-06": "Hari Raya Haji* (*estimated) [In lieu]", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-05": "Hari Raya Haji (estimated)", + "1960-06-06": "Hari Raya Haji (estimated) [In lieu]", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", - "1961-01-14": "Isra and Mi'raj* (*estimated)", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-01-14": "Isra and Mi'raj (estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-26": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-26": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", - "1962-01-04": "Isra and Mi'raj* (*estimated)", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-01-04": "Isra and Mi'raj (estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-15": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-15": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", - "1962-12-24": "Isra and Mi'raj* (*estimated)", + "1962-12-24": "Isra and Mi'raj (estimated)", "1962-12-25": "Christmas Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-04": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-04": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", - "1963-12-13": "Isra and Mi'raj* (*estimated)", + "1963-12-13": "Isra and Mi'raj (estimated)", "1963-12-25": "Christmas Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "1964-04-22": "Hari Raya Haji* (*estimated)", - "1964-04-23": "Hari Raya Haji* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", + "1964-04-23": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", - "1964-12-01": "Isra and Mi'raj* (*estimated)", + "1964-12-01": "Isra and Mi'raj (estimated)", "1964-12-25": "Christmas Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated)", - "1965-04-13": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated)", + "1965-04-13": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", - "1965-11-20": "Isra and Mi'raj* (*estimated)", + "1965-11-20": "Isra and Mi'raj (estimated)", "1965-12-25": "Christmas Day", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-02": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-02": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", - "1966-11-10": "Deepavali; Isra and Mi'raj* (*estimated)", + "1966-11-10": "Deepavali; Isra and Mi'raj (estimated)", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-03-22": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-03-22": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", - "1967-10-30": "Isra and Mi'raj* (*estimated)", + "1967-10-30": "Isra and Mi'raj (estimated)", "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated)", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-10": "Hari Raya Haji* (*estimated)", - "1968-03-11": "Hari Raya Haji* (*estimated) [In lieu]", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated)", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-10": "Hari Raya Haji (estimated)", + "1968-03-11": "Hari Raya Haji (estimated) [In lieu]", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", - "1968-10-19": "Isra and Mi'raj* (*estimated)", + "1968-10-19": "Isra and Mi'raj (estimated)", "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-02-28": "Hari Raya Haji* (*estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-02-28": "Hari Raya Haji (estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", - "1969-10-08": "Isra and Mi'raj* (*estimated)", + "1969-10-08": "Isra and Mi'raj (estimated)", "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-02-17": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-02-17": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", - "1970-09-28": "Isra and Mi'raj* (*estimated)", + "1970-09-28": "Isra and Mi'raj (estimated)", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-07": "Hari Raya Haji* (*estimated)", - "1971-02-08": "Hari Raya Haji* (*estimated) [In lieu]", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-07": "Hari Raya Haji (estimated)", + "1971-02-08": "Hari Raya Haji (estimated) [In lieu]", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-09-17": "Isra and Mi'raj* (*estimated)", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-09-17": "Isra and Mi'raj (estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-01-27": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-01-27": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-09-05": "Isra and Mi'raj* (*estimated)", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-09-05": "Isra and Mi'raj (estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated)", - "1973-01-16": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated)", + "1973-01-16": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-08-25": "Isra and Mi'raj* (*estimated)", + "1973-08-25": "Isra and Mi'raj (estimated)", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-04": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-04": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-08-15": "Isra and Mi'raj* (*estimated)", + "1974-08-15": "Isra and Mi'raj (estimated)", "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", - "1974-12-25": "Christmas Day; Hari Raya Haji* (*estimated)", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", + "1974-12-25": "Christmas Day; Hari Raya Haji (estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-08-05": "Isra and Mi'raj* (*estimated)", + "1975-08-05": "Isra and Mi'raj (estimated)", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", - "1975-12-14": "Hari Raya Haji* (*estimated)", - "1975-12-15": "Hari Raya Haji* (*estimated) [In lieu]", + "1975-12-13": "Hari Raya Haji (estimated)", + "1975-12-14": "Hari Raya Haji (estimated)", + "1975-12-15": "Hari Raya Haji (estimated) [In lieu]", "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-07-24": "Isra and Mi'raj* (*estimated)", + "1976-07-24": "Isra and Mi'raj (estimated)", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-02": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-02": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-07-13": "Isra and Mi'raj* (*estimated)", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-07-13": "Isra and Mi'raj (estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-11-22": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-11-22": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-07-02": "Isra and Mi'raj* (*estimated)", - "1978-07-03": "Isra and Mi'raj* (*estimated) [In lieu]", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-07-02": "Isra and Mi'raj (estimated)", + "1978-07-03": "Isra and Mi'raj (estimated) [In lieu]", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-11-11": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-11-11": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-22": "Isra and Mi'raj* (*estimated)", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-06-22": "Isra and Mi'raj (estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", - "1979-11-01": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", + "1979-11-01": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-10": "Isra and Mi'raj* (*estimated)", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-06-10": "Isra and Mi'raj (estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated)", - "1980-10-21": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated)", + "1980-10-21": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", - "1981-05-31": "Isra and Mi'raj* (*estimated)", - "1981-06-01": "Isra and Mi'raj* (*estimated) [In lieu]", + "1981-05-18": "Vesak Day (estimated)", + "1981-05-31": "Isra and Mi'raj (estimated)", + "1981-06-01": "Isra and Mi'raj (estimated) [In lieu]", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", - "1981-10-09": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", + "1981-10-09": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", - "1982-05-20": "Isra and Mi'raj* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-20": "Isra and Mi'raj (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-09-28": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-09-28": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-10": "Isra and Mi'raj* (*estimated)", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-10": "Isra and Mi'raj (estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-09-18": "Hari Raya Haji* (*estimated)", - "1983-09-19": "Hari Raya Haji* (*estimated) [In lieu]", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-09-18": "Hari Raya Haji (estimated)", + "1983-09-19": "Hari Raya Haji (estimated) [In lieu]", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", - "1984-04-28": "Isra and Mi'raj* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", + "1984-04-28": "Isra and Mi'raj (estimated)", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-06": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-06": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", - "1985-04-17": "Isra and Mi'raj* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", + "1985-04-17": "Isra and Mi'raj (estimated)", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", - "1985-08-27": "Hari Raya Haji* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", + "1985-08-27": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", - "1986-04-06": "Isra and Mi'raj* (*estimated)", - "1986-04-07": "Isra and Mi'raj* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-04-06": "Isra and Mi'raj (estimated)", + "1986-04-07": "Isra and Mi'raj (estimated) [In lieu]", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", - "1986-05-26": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", - "1986-08-16": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", + "1986-08-16": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", - "1987-03-27": "Isra and Mi'raj* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", + "1987-03-27": "Isra and Mi'raj (estimated)", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-05": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-05": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", - "1988-03-15": "Isra and Mi'raj* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", + "1988-03-15": "Isra and Mi'raj (estimated)", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-07-24": "Hari Raya Haji* (*estimated)", - "1988-07-25": "Hari Raya Haji* (*estimated) [In lieu]", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-07-24": "Hari Raya Haji (estimated)", + "1988-07-25": "Hari Raya Haji (estimated) [In lieu]", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", - "1989-03-05": "Isra and Mi'raj* (*estimated)", - "1989-03-06": "Isra and Mi'raj* (*estimated) [In lieu]", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", - "1989-04-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", + "1989-03-05": "Isra and Mi'raj (estimated)", + "1989-03-06": "Isra and Mi'raj (estimated) [In lieu]", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-07-14": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-07-14": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1990-02-22": "Isra and Mi'raj* (*estimated)", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-02-22": "Isra and Mi'raj (estimated)", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-03": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-03": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", - "1991-02-11": "Isra and Mi'raj* (*estimated)", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-02-11": "Isra and Mi'raj (estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-06-23": "Hari Raya Haji* (*estimated)", - "1991-06-24": "Hari Raya Haji* (*estimated) [In lieu]", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-06-23": "Hari Raya Haji (estimated)", + "1991-06-24": "Hari Raya Haji (estimated) [In lieu]", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", - "1992-01-31": "Isra and Mi'raj* (*estimated)", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-01-31": "Isra and Mi'raj (estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-06-12": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-06-12": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", - "1993-01-20": "Isra and Mi'raj* (*estimated)", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-20": "Isra and Mi'raj (estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", - "1993-06-01": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", + "1993-06-01": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", - "1994-01-09": "Isra and Mi'raj* (*estimated)", - "1994-01-10": "Isra and Mi'raj* (*estimated) [In lieu]", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-02-28": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-01-09": "Isra and Mi'raj (estimated)", + "1994-01-10": "Isra and Mi'raj (estimated) [In lieu]", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-21": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-21": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day [In lieu]", - "1994-12-29": "Isra and Mi'raj* (*estimated)", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1994-12-29": "Isra and Mi'raj (estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-10": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-10": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", - "1995-12-19": "Isra and Mi'raj* (*estimated)", + "1995-12-19": "Isra and Mi'raj (estimated)", "1995-12-25": "Christmas Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1996-04-27": "Hari Raya Haji* (*estimated)", - "1996-04-28": "Hari Raya Haji* (*estimated)", - "1996-04-29": "Hari Raya Haji* (*estimated) [In lieu]", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", + "1996-04-28": "Hari Raya Haji (estimated)", + "1996-04-29": "Hari Raya Haji (estimated) [In lieu]", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", - "1996-12-08": "Isra and Mi'raj* (*estimated)", - "1996-12-09": "Isra and Mi'raj* (*estimated) [In lieu]", + "1996-12-08": "Isra and Mi'raj (estimated)", + "1996-12-09": "Isra and Mi'raj (estimated) [In lieu]", "1996-12-25": "Christmas Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-01-27": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1997-04-17": "Hari Raya Haji* (*estimated)", - "1997-04-18": "Hari Raya Haji* (*estimated)", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-04-17": "Hari Raya Haji (estimated)", + "1997-04-18": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-29": "Deepavali", - "1997-11-27": "Isra and Mi'raj* (*estimated)", + "1997-11-27": "Isra and Mi'raj (estimated)", "1997-12-25": "Christmas Day", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-08": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-08": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", - "1998-11-16": "Isra and Mi'raj* (*estimated)", + "1998-11-16": "Isra and Mi'raj (estimated)", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-03-28": "Hari Raya Haji* (*estimated)", - "1999-03-29": "Hari Raya Haji* (*estimated) [In lieu]", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-03-28": "Hari Raya Haji (estimated)", + "1999-03-29": "Hari Raya Haji (estimated) [In lieu]", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", - "1999-11-05": "Isra and Mi'raj* (*estimated)", + "1999-11-05": "Isra and Mi'raj (estimated)", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-03-17": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-03-17": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", "2000-05-17": "Birthday of The Raja of Perlis", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", - "2000-10-24": "Isra and Mi'raj* (*estimated)", + "2000-10-24": "Isra and Mi'raj (estimated)", "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", "2001-03-06": "Hari Raya Haji", @@ -1359,558 +1359,558 @@ "2023-06-29": "Hari Raya Haji", "2023-06-30": "Hari Raya Haji", "2023-07-17": "Birthday of The Raja of Perlis", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", - "2024-02-08": "Isra and Mi'raj* (*estimated)", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-08": "Isra and Mi'raj (estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated)", - "2024-06-18": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated)", + "2024-06-18": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-07-17": "Birthday of The Raja of Perlis", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", - "2025-01-27": "Isra and Mi'raj* (*estimated)", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-01-27": "Isra and Mi'raj (estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-07": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-07": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-07-17": "Birthday of The Raja of Perlis", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", - "2026-01-16": "Isra and Mi'raj* (*estimated)", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", - "2026-05-28": "Hari Raya Haji* (*estimated)", + "2026-01-16": "Isra and Mi'raj (estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", + "2026-05-28": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", "2026-07-17": "Birthday of The Raja of Perlis", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", - "2027-01-05": "Isra and Mi'raj* (*estimated)", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-01-05": "Isra and Mi'raj (estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated)", - "2027-05-18": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated)", + "2027-05-18": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2027-07-17": "Birthday of The Raja of Perlis", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day; Isra and Mi'raj* (*estimated)", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2027-12-25": "Christmas Day; Isra and Mi'raj (estimated)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-06": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-06": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2028-07-17": "Birthday of The Raja of Perlis", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", - "2028-12-14": "Isra and Mi'raj* (*estimated)", + "2028-12-14": "Isra and Mi'raj (estimated)", "2028-12-25": "Christmas Day", - "2029-02-01": "Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "2029-04-24": "Hari Raya Haji* (*estimated)", - "2029-04-25": "Hari Raya Haji* (*estimated)", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", + "2029-04-25": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-17": "Birthday of The Raja of Perlis", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", "2029-11-04": "Deepavali", "2029-11-05": "Deepavali [In lieu]", - "2029-12-03": "Isra and Mi'raj* (*estimated)", + "2029-12-03": "Isra and Mi'raj (estimated)", "2029-12-25": "Christmas Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", - "2030-04-14": "Hari Raya Haji* (*estimated)", - "2030-04-15": "Hari Raya Haji* (*estimated) [In lieu]", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-04-13": "Hari Raya Haji (estimated)", + "2030-04-14": "Hari Raya Haji (estimated)", + "2030-04-15": "Hari Raya Haji (estimated) [In lieu]", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-07-17": "Birthday of The Raja of Perlis", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", - "2030-11-23": "Isra and Mi'raj* (*estimated)", + "2030-11-23": "Isra and Mi'raj (estimated)", "2030-12-25": "Christmas Day", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-03": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-03": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-07-17": "Birthday of The Raja of Perlis", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", - "2031-11-12": "Isra and Mi'raj* (*estimated)", + "2031-11-12": "Isra and Mi'raj (estimated)", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-03-23": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-03-23": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-07-17": "Birthday of The Raja of Perlis", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali; Isra and Mi'raj* (*estimated)", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-03-12": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-03-12": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-07-17": "Birthday of The Raja of Perlis", "2033-07-18": "Birthday of The Raja of Perlis [In lieu]", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali; Isra and Mi'raj* (*estimated)", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-02": "Hari Raya Haji* (*estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-02": "Hari Raya Haji (estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-07-17": "Birthday of The Raja of Perlis", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", - "2034-10-10": "Isra and Mi'raj* (*estimated)", + "2034-10-10": "Isra and Mi'raj (estimated)", "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated)", - "2035-02-20": "Hari Raya Haji* (*estimated) [In lieu]", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated)", + "2035-02-20": "Hari Raya Haji (estimated) [In lieu]", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-07-17": "Birthday of The Raja of Perlis", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", - "2035-09-29": "Isra and Mi'raj* (*estimated)", + "2035-09-29": "Isra and Mi'raj (estimated)", "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-08": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-08": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-07-17": "Birthday of The Raja of Perlis", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-09-18": "Isra and Mi'raj* (*estimated)", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-09-18": "Isra and Mi'raj (estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-01-27": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-01-27": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-07-17": "Birthday of The Raja of Perlis", "2037-08-31": "National Day", - "2037-09-07": "Isra and Mi'raj* (*estimated)", + "2037-09-07": "Isra and Mi'raj (estimated)", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-01-17": "Hari Raya Haji* (*estimated)", - "2038-01-18": "Hari Raya Haji* (*estimated) [In lieu]", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-01-17": "Hari Raya Haji (estimated)", + "2038-01-18": "Hari Raya Haji (estimated) [In lieu]", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-07-17": "Birthday of The Raja of Perlis", - "2038-08-28": "Isra and Mi'raj* (*estimated)", + "2038-08-28": "Isra and Mi'raj (estimated)", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-06": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-06": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-07-17": "Birthday of The Raja of Perlis", "2039-07-18": "Birthday of The Raja of Perlis [In lieu]", - "2039-08-17": "Isra and Mi'raj* (*estimated)", + "2039-08-17": "Isra and Mi'raj (estimated)", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", - "2039-12-27": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", + "2039-12-27": "Hari Raya Haji (estimated)", "2039-12-28": "Christmas Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-07-17": "Birthday of The Raja of Perlis", - "2040-08-05": "Isra and Mi'raj* (*estimated)", - "2040-08-06": "Isra and Mi'raj* (*estimated) [In lieu]", + "2040-08-05": "Isra and Mi'raj (estimated)", + "2040-08-06": "Isra and Mi'raj (estimated) [In lieu]", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-09-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", - "2040-12-15": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", + "2040-12-15": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-07-17": "Birthday of The Raja of Perlis", - "2041-07-25": "Isra and Mi'raj* (*estimated)", + "2041-07-25": "Isra and Mi'raj (estimated)", "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-05": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-05": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-07-15": "Isra and Mi'raj* (*estimated)", + "2042-07-15": "Isra and Mi'raj (estimated)", "2042-07-17": "Birthday of The Raja of Perlis", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated)", - "2042-11-25": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated)", + "2042-11-25": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-07-04": "Isra and Mi'raj* (*estimated)", + "2043-07-04": "Isra and Mi'raj (estimated)", "2043-07-17": "Birthday of The Raja of Perlis", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-11-13": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-11-13": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-06-23": "Isra and Mi'raj* (*estimated)", + "2044-06-23": "Isra and Mi'raj (estimated)", "2044-07-17": "Birthday of The Raja of Perlis", "2044-07-18": "Birthday of The Raja of Perlis [In lieu]", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", - "2044-11-01": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", + "2044-11-01": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-06-13": "Isra and Mi'raj* (*estimated)", + "2045-06-13": "Isra and Mi'raj (estimated)", "2045-07-17": "Birthday of The Raja of Perlis", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", - "2045-10-22": "Hari Raya Haji* (*estimated)", - "2045-10-23": "Hari Raya Haji* (*estimated) [In lieu]", + "2045-10-21": "Hari Raya Haji (estimated)", + "2045-10-22": "Hari Raya Haji (estimated)", + "2045-10-23": "Hari Raya Haji (estimated) [In lieu]", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", - "2046-06-02": "Isra and Mi'raj* (*estimated)", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-06-02": "Isra and Mi'raj (estimated)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-17": "Birthday of The Raja of Perlis", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", - "2046-10-11": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", + "2046-10-11": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", - "2047-05-22": "Isra and Mi'raj* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-22": "Isra and Mi'raj (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", "2047-07-17": "Birthday of The Raja of Perlis", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-01": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-01": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-05-01": "Labour Day", - "2048-05-10": "Isra and Mi'raj* (*estimated)", - "2048-05-11": "Isra and Mi'raj* (*estimated) [In lieu]", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-10": "Isra and Mi'raj (estimated)", + "2048-05-11": "Isra and Mi'raj (estimated) [In lieu]", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-06-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-07-17": "Birthday of The Raja of Perlis", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-09-20": "Hari Raya Haji* (*estimated)", - "2048-09-21": "Hari Raya Haji* (*estimated) [In lieu]", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-09-20": "Hari Raya Haji (estimated)", + "2048-09-21": "Hari Raya Haji (estimated) [In lieu]", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", - "2049-04-29": "Isra and Mi'raj* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", + "2049-04-29": "Isra and Mi'raj (estimated)", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-07-17": "Birthday of The Raja of Perlis", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", - "2049-09-09": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", + "2049-09-09": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", - "2050-04-19": "Isra and Mi'raj* (*estimated)", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-04-19": "Isra and Mi'raj (estimated)", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-07-17": "Birthday of The Raja of Perlis", "2050-07-18": "Birthday of The Raja of Perlis [In lieu]", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated)", - "2050-08-30": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated)", + "2050-08-30": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_PNG.json b/snapshots/countries/MY_PNG.json index 36d09be5b..de6b77b18 100644 --- a/snapshots/countries/MY_PNG.json +++ b/snapshots/countries/MY_PNG.json @@ -1,955 +1,955 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-08": "Birthday of the Governor of Penang", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-07-14": "Birthday of the Governor of Penang", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-07-12": "Birthday of the Governor of Penang", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1953-07-11": "Birthday of the Governor of Penang", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-02-18": "Thaipusam", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1954-07-10": "Birthday of the Governor of Penang", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", "1955-01-10": "Thaipusam [In lieu]", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1955-07-09": "Birthday of the Governor of Penang", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", "1956-02-26": "Thaipusam", "1956-02-27": "Thaipusam [In lieu]", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1956-07-14": "Birthday of the Governor of Penang", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", "1957-07-13": "Birthday of the Governor of Penang", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-07": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-12": "Birthday of the Governor of Penang", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", "1959-02-22": "Thaipusam", "1959-02-23": "Thaipusam [In lieu]", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-07-11": "Birthday of the Governor of Penang", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-07-09": "Birthday of the Governor of Penang", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", "1961-07-08": "Birthday of the Governor of Penang", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-07-14": "Birthday of the Governor of Penang", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1963-07-13": "Birthday of the Governor of Penang", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1964-07-11": "Birthday of the Governor of Penang", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Birthday of the Governor of Penang; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Birthday of the Governor of Penang; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-07-09": "Birthday of the Governor of Penang", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-07-08": "Birthday of the Governor of Penang", "1967-08-31": "National Day", "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-07-13": "Birthday of the Governor of Penang", "1968-08-31": "National Day", "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-07-12": "Birthday of the Governor of Penang", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-07-11": "Birthday of the Governor of Penang", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-07-10": "Birthday of the Governor of Penang", "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-07-08": "Birthday of the Governor of Penang", "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", "1973-02-18": "Thaipusam", "1973-02-19": "Thaipusam [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-07-14": "Birthday of the Governor of Penang", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-07-13": "Birthday of the Governor of Penang", "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-07-12": "Birthday of the Governor of Penang", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", "1976-02-15": "Thaipusam", "1976-02-16": "Thaipusam [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-07-10": "Birthday of the Governor of Penang", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-07-09": "Birthday of the Governor of Penang", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-07-08": "Birthday of the Governor of Penang", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1979-07-14": "Birthday of the Governor of Penang", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-03-02": "Thaipusam", "1980-03-03": "Thaipusam [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1980-07-12": "Birthday of the Governor of Penang", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1981-07-11": "Birthday of the Governor of Penang", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", "1982-01-11": "Thaipusam [In lieu]", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", "1982-07-10": "Birthday of the Governor of Penang", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", "1983-07-09": "Birthday of the Governor of Penang", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-07-14": "Birthday of the Governor of Penang", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-03-06": "Thaipusam", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", "1985-07-13": "Birthday of the Governor of Penang", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-02-23": "Thaipusam", "1986-02-24": "Thaipusam [In lieu]", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", - "1986-05-26": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", "1986-07-12": "Birthday of the Governor of Penang", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1987-07-11": "Birthday of the Governor of Penang", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1988-07-09": "Birthday of the Governor of Penang", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", - "1989-04-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-08": "Birthday of the Governor of Penang", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", "1990-07-14": "Birthday of the Governor of Penang", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-07-13": "Birthday of the Governor of Penang", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-07-11": "Birthday of the Governor of Penang", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-07-10": "Birthday of the Governor of Penang", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-02-28": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", "1994-07-09": "Birthday of the Governor of Penang", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-07-08": "Birthday of the Governor of Penang", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1996-07-13": "Birthday of the Governor of Penang", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-01-27": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-12": "Birthday of the Governor of Penang", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-07-11": "Birthday of the Governor of Penang", "1998-08-31": "National Day", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-07-10": "Birthday of the Governor of Penang", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", "2000-02-20": "Thaipusam", "2000-02-21": "Thaipusam [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-07-08": "Birthday of the Governor of Penang", "2000-08-31": "National Day", "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-09": "Thaipusam", "2001-01-24": "Chinese New Year", @@ -1418,133 +1418,133 @@ "2023-06-29": "Hari Raya Haji", "2023-07-07": "George Town Heritage Day", "2023-07-08": "Birthday of the Governor of Penang", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated); George Town Heritage Day", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated); George Town Heritage Day", "2024-07-08": "George Town Heritage Day [In lieu]", "2024-07-13": "Birthday of the Governor of Penang", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-07-07": "George Town Heritage Day", "2025-07-12": "Birthday of the Governor of Penang", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Thaipusam", "2026-02-02": "Thaipusam [In lieu]", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", "2026-07-07": "George Town Heritage Day", "2026-07-11": "Birthday of the Governor of Penang", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-01-22": "Thaipusam", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2027-07-07": "George Town Heritage Day", "2027-07-10": "Birthday of the Governor of Penang", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2028-07-07": "George Town Heritage Day", "2028-07-08": "Birthday of the Governor of Penang", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-01": "Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-07": "George Town Heritage Day", "2029-07-14": "Birthday of the Governor of Penang", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", @@ -1552,37 +1552,37 @@ "2029-11-05": "Deepavali [In lieu]", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", "2030-02-17": "Thaipusam", "2030-02-18": "Thaipusam [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2030-07-07": "George Town Heritage Day", "2030-07-08": "George Town Heritage Day [In lieu]", - "2030-07-13": "Birthday of the Governor of Penang; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Birthday of the Governor of Penang; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-07-07": "George Town Heritage Day", "2031-07-12": "Birthday of the Governor of Penang", "2031-08-31": "National Day", @@ -1590,85 +1590,85 @@ "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-07-07": "George Town Heritage Day", "2032-07-10": "Birthday of the Governor of Penang", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-07-07": "George Town Heritage Day", "2033-07-09": "Birthday of the Governor of Penang", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", "2034-03-06": "Thaipusam [In lieu]", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-07-07": "George Town Heritage Day", "2034-07-08": "Birthday of the Governor of Penang", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-07-07": "George Town Heritage Day", "2035-07-14": "Birthday of the Governor of Penang", @@ -1676,329 +1676,329 @@ "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", "2036-01-14": "Thaipusam [In lieu]", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-07-07": "George Town Heritage Day", "2036-07-12": "Birthday of the Governor of Penang", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-07-07": "George Town Heritage Day", "2037-07-11": "Birthday of the Governor of Penang", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-07-07": "George Town Heritage Day", "2038-07-10": "Birthday of the Governor of Penang", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", "2039-01-10": "Thaipusam [In lieu]", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-07-07": "George Town Heritage Day", "2039-07-09": "Birthday of the Governor of Penang", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-07-07": "George Town Heritage Day", "2040-07-14": "Birthday of the Governor of Penang", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-09-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-07-07": "George Town Heritage Day", "2041-07-08": "George Town Heritage Day [In lieu]", "2041-07-13": "Birthday of the Governor of Penang", "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-07-07": "George Town Heritage Day", "2042-07-12": "Birthday of the Governor of Penang", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2043-07-07": "George Town Heritage Day", "2043-07-11": "Birthday of the Governor of Penang", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", "2044-02-15": "Thaipusam [In lieu]", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-07-07": "George Town Heritage Day", "2044-07-09": "Birthday of the Governor of Penang", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2045-07-07": "George Town Heritage Day", "2045-07-08": "Birthday of the Governor of Penang", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-07": "George Town Heritage Day", "2046-07-14": "Birthday of the Governor of Penang", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2047-07-07": "George Town Heritage Day", "2047-07-08": "George Town Heritage Day [In lieu]", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", "2047-07-13": "Birthday of the Governor of Penang", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-02-28": "Thaipusam", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-06-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", "2048-07-07": "George Town Heritage Day", "2048-07-11": "Birthday of the Governor of Penang", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-07-07": "George Town Heritage Day", "2049-07-10": "Birthday of the Governor of Penang", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-07-07": "George Town Heritage Day", "2050-07-09": "Birthday of the Governor of Penang", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_PRK.json b/snapshots/countries/MY_PRK.json index 00f524d8a..0224fc699 100644 --- a/snapshots/countries/MY_PRK.json +++ b/snapshots/countries/MY_PRK.json @@ -1,841 +1,841 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", "1950-11-27": "Birthday of the Sultan of Perak", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", "1951-11-27": "Birthday of the Sultan of Perak", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-27": "Birthday of the Sultan of Perak", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-11-27": "Birthday of the Sultan of Perak", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-02-18": "Thaipusam", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-11-27": "Birthday of the Sultan of Perak", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", "1955-01-10": "Thaipusam [In lieu]", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-11-27": "Birthday of the Sultan of Perak", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", "1956-02-26": "Thaipusam", "1956-02-27": "Thaipusam [In lieu]", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-11-27": "Birthday of the Sultan of Perak", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-11-27": "Birthday of the Sultan of Perak", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-07": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-11-27": "Birthday of the Sultan of Perak", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", "1959-02-22": "Thaipusam", "1959-02-23": "Thaipusam [In lieu]", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-11-27": "Birthday of the Sultan of Perak", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-11-27": "Birthday of the Sultan of Perak", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-11-27": "Birthday of the Sultan of Perak", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-11-27": "Birthday of the Sultan of Perak", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-11-27": "Birthday of the Sultan of Perak", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-11-27": "Birthday of the Sultan of Perak", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-11-27": "Birthday of the Sultan of Perak", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-11-27": "Birthday of the Sultan of Perak", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", "1967-11-27": "Birthday of the Sultan of Perak", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-11-18": "Deepavali", "1968-11-27": "Birthday of the Sultan of Perak", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-11-27": "Birthday of the Sultan of Perak", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", "1970-11-27": "Birthday of the Sultan of Perak", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-11-27": "Birthday of the Sultan of Perak", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-11-27": "Birthday of the Sultan of Perak", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", "1973-02-18": "Thaipusam", "1973-02-19": "Thaipusam [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-11-27": "Birthday of the Sultan of Perak", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", "1974-11-27": "Birthday of the Sultan of Perak", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", "1975-11-27": "Birthday of the Sultan of Perak", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", "1976-02-15": "Thaipusam", "1976-02-16": "Thaipusam [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", "1976-11-27": "Birthday of the Sultan of Perak", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", "1977-11-27": "Birthday of the Sultan of Perak", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", "1978-11-27": "Birthday of the Sultan of Perak", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-11-27": "Birthday of the Sultan of Perak", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-03-02": "Thaipusam", "1980-03-03": "Thaipusam [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-11-27": "Birthday of the Sultan of Perak", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-11-27": "Birthday of the Sultan of Perak", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", "1982-01-11": "Thaipusam [In lieu]", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-11-27": "Birthday of the Sultan of Perak", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", "1983-11-27": "Birthday of the Sultan of Perak", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", "1984-11-27": "Birthday of the Sultan of Perak", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-03-06": "Thaipusam", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-11-27": "Birthday of the Sultan of Perak", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-02-23": "Thaipusam", "1986-02-24": "Thaipusam [In lieu]", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", - "1986-05-26": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-11-27": "Birthday of the Sultan of Perak", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-11-27": "Birthday of the Sultan of Perak", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-11-27": "Birthday of the Sultan of Perak", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", - "1989-04-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-11-27": "Birthday of the Sultan of Perak", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-11-27": "Birthday of the Sultan of Perak", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-11-27": "Birthday of the Sultan of Perak", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-11-27": "Birthday of the Sultan of Perak", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-11-27": "Birthday of the Sultan of Perak", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-02-28": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-11-27": "Birthday of the Sultan of Perak", @@ -843,52 +843,52 @@ "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-11-27": "Birthday of the Sultan of Perak", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-11-27": "Birthday of the Sultan of Perak", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-01-27": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-29": "Deepavali", @@ -896,61 +896,61 @@ "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", "1998-11-27": "Birthday of the Sultan of Perak", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-27": "Birthday of the Sultan of Perak", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", "2000-02-20": "Thaipusam", "2000-02-21": "Thaipusam [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", "2000-11-27": "Birthday of the Sultan of Perak", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-09": "Thaipusam", "2001-01-24": "Chinese New Year", @@ -1400,52 +1400,52 @@ "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-03": "Birthday of the Sultan of Perak", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-11-01": "Birthday of the Sultan of Perak", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-07": "Birthday of the Sultan of Perak", "2025-11-18": "Deepavali", @@ -1453,16 +1453,16 @@ "2026-01-01": "New Year's Day", "2026-02-01": "Thaipusam", "2026-02-02": "Thaipusam [In lieu]", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-06": "Birthday of the Sultan of Perak", @@ -1470,19 +1470,19 @@ "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-01-22": "Thaipusam", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", @@ -1490,37 +1490,37 @@ "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-03": "Birthday of the Sultan of Perak", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-01": "Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", @@ -1529,19 +1529,19 @@ "2029-11-05": "Deepavali [In lieu]", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", "2030-02-17": "Thaipusam", "2030-02-18": "Thaipusam [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", @@ -1549,410 +1549,410 @@ "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", "2031-11-07": "Birthday of the Sultan of Perak", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", "2032-11-05": "Birthday of the Sultan of Perak", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", "2033-11-04": "Birthday of the Sultan of Perak", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", "2034-03-06": "Thaipusam [In lieu]", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-03": "Birthday of the Sultan of Perak", "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-29": "Deepavali", "2035-11-02": "Birthday of the Sultan of Perak", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", "2036-01-14": "Thaipusam [In lieu]", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-07": "Birthday of the Sultan of Perak", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", "2037-11-06": "Birthday of the Sultan of Perak", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-11-05": "Birthday of the Sultan of Perak", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", "2039-01-10": "Thaipusam [In lieu]", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-04": "Birthday of the Sultan of Perak", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-09-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-02": "Birthday of the Sultan of Perak", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", "2041-11-01": "Birthday of the Sultan of Perak", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-07": "Birthday of the Sultan of Perak", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", "2043-11-06": "Birthday of the Sultan of Perak", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", "2044-02-15": "Thaipusam [In lieu]", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-04": "Birthday of the Sultan of Perak", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-03": "Birthday of the Sultan of Perak", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-11-02": "Birthday of the Sultan of Perak", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-01": "Birthday of the Sultan of Perak", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-02-28": "Thaipusam", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-06-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", "2048-11-06": "Birthday of the Sultan of Perak", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", "2049-11-05": "Birthday of the Sultan of Perak", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-04": "Birthday of the Sultan of Perak", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_SBH.json b/snapshots/countries/MY_SBH.json index 2187bf744..200b6e608 100644 --- a/snapshots/countries/MY_SBH.json +++ b/snapshots/countries/MY_SBH.json @@ -1,324 +1,324 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-04-07": "Good Friday", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-05-30": "Pesta Kaamatan", "1950-05-31": "Pesta Kaamatan (Second day)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-07": "Birthday of the Governor of Sabah", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-03-23": "Good Friday", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-05-30": "Pesta Kaamatan", "1951-05-31": "Pesta Kaamatan (Second day)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-06": "Birthday of the Governor of Sabah", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-04-11": "Good Friday", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-05-30": "Pesta Kaamatan", "1952-05-31": "Pesta Kaamatan (Second day)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-10-04": "Birthday of the Governor of Sabah", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-04-03": "Good Friday", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", "1953-05-30": "Pesta Kaamatan", "1953-05-31": "Pesta Kaamatan (Second day)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-10-03": "Birthday of the Governor of Sabah", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-04-16": "Good Friday", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", "1954-05-30": "Pesta Kaamatan", "1954-05-31": "Pesta Kaamatan (Second day)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-02": "Birthday of the Governor of Sabah", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-04-08": "Good Friday", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-05-30": "Pesta Kaamatan", "1955-05-31": "Pesta Kaamatan (Second day)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", "1955-10-01": "Birthday of the Governor of Sabah", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", "1956-03-30": "Good Friday", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-05-30": "Pesta Kaamatan", "1956-05-31": "Pesta Kaamatan (Second day)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", "1956-10-06": "Birthday of the Governor of Sabah", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", "1957-04-19": "Good Friday", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-05-30": "Pesta Kaamatan", "1957-05-31": "Pesta Kaamatan (Second day)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-05": "Birthday of the Governor of Sabah", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-04-04": "Good Friday", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-05-30": "Pesta Kaamatan", "1958-05-31": "Pesta Kaamatan (Second day)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-10-04": "Birthday of the Governor of Sabah", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", "1959-03-27": "Good Friday", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-05-30": "Pesta Kaamatan", "1959-05-31": "Pesta Kaamatan (Second day)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-03": "Birthday of the Governor of Sabah", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-04-15": "Good Friday", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", "1960-05-30": "Pesta Kaamatan", "1960-05-31": "Pesta Kaamatan (Second day)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-10-01": "Birthday of the Governor of Sabah", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-03-31": "Good Friday", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-05-30": "Pesta Kaamatan", "1961-05-31": "Pesta Kaamatan (Second day)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-10-07": "Birthday of the Governor of Sabah", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-04-20": "Good Friday", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-05-30": "Pesta Kaamatan", "1962-05-31": "Pesta Kaamatan (Second day)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-06": "Birthday of the Governor of Sabah", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-04-12": "Good Friday", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-05-30": "Pesta Kaamatan", "1963-05-31": "Pesta Kaamatan (Second day)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-10-05": "Birthday of the Governor of Sabah", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", "1964-03-27": "Good Friday", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-05-30": "Pesta Kaamatan", "1964-05-31": "Pesta Kaamatan (Second day)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-10-03": "Birthday of the Governor of Sabah", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", "1965-04-16": "Good Friday", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-05-30": "Pesta Kaamatan", "1965-05-31": "Pesta Kaamatan (Second day)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-02": "Birthday of the Governor of Sabah", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-08": "Good Friday", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-05-30": "Pesta Kaamatan", "1966-05-31": "Pesta Kaamatan (Second day)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-10-01": "Birthday of the Governor of Sabah", "1966-11-10": "Deepavali", @@ -326,51 +326,51 @@ "1966-12-26": "Christmas Day [In lieu]", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", "1967-03-24": "Good Friday", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-05-30": "Pesta Kaamatan", "1967-05-31": "Pesta Kaamatan (Second day)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-07": "Birthday of the Governor of Sabah", "1967-10-31": "Deepavali", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-04-12": "Good Friday", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-05-30": "Pesta Kaamatan", "1968-05-31": "Pesta Kaamatan (Second day)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-10-05": "Birthday of the Governor of Sabah", "1968-11-18": "Deepavali", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", "1969-04-04": "Good Friday", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-05-30": "Pesta Kaamatan", "1969-05-31": "Pesta Kaamatan (Second day)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -378,495 +378,495 @@ "1969-09-01": "National Day [In lieu]", "1969-10-04": "Birthday of the Governor of Sabah", "1969-11-08": "Deepavali", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-03-27": "Good Friday", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-05-30": "Pesta Kaamatan", "1970-05-31": "Pesta Kaamatan (Second day)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-03": "Birthday of the Governor of Sabah", "1970-10-28": "Deepavali", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-04-09": "Good Friday", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-05-30": "Pesta Kaamatan", "1971-05-31": "Pesta Kaamatan (Second day)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-10-02": "Birthday of the Governor of Sabah", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1972-03-31": "Good Friday", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-05-30": "Pesta Kaamatan", "1972-05-31": "Pesta Kaamatan (Second day)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", "1972-10-07": "Birthday of the Governor of Sabah", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-04-20": "Good Friday", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-05-30": "Pesta Kaamatan", "1973-05-31": "Pesta Kaamatan (Second day)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", "1973-10-06": "Birthday of the Governor of Sabah", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-04-12": "Good Friday", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-05-30": "Pesta Kaamatan", "1974-05-31": "Pesta Kaamatan (Second day)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", "1974-10-05": "Birthday of the Governor of Sabah", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-03-28": "Good Friday", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-05-30": "Pesta Kaamatan", "1975-05-31": "Pesta Kaamatan (Second day)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", "1975-10-04": "Birthday of the Governor of Sabah", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-04-16": "Good Friday", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-05-30": "Pesta Kaamatan", "1976-05-31": "Pesta Kaamatan (Second day)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-10-02": "Birthday of the Governor of Sabah", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-04-08": "Good Friday", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-05-30": "Pesta Kaamatan", "1977-05-31": "Pesta Kaamatan (Second day)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-10-01": "Birthday of the Governor of Sabah", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-03-24": "Good Friday", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-05-30": "Pesta Kaamatan", "1978-05-31": "Pesta Kaamatan (Second day)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-07": "Birthday of the Governor of Sabah", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-04-13": "Good Friday", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-05-30": "Pesta Kaamatan", "1979-05-31": "Pesta Kaamatan (Second day)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", "1979-10-06": "Birthday of the Governor of Sabah", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-04-04": "Good Friday", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-05-30": "Pesta Kaamatan", "1980-05-31": "Pesta Kaamatan (Second day)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", "1980-10-04": "Birthday of the Governor of Sabah", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-04-17": "Good Friday", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-05-30": "Pesta Kaamatan", "1981-05-31": "Pesta Kaamatan (Second day)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", "1981-10-03": "Birthday of the Governor of Sabah", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-04-09": "Good Friday", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-05-30": "Pesta Kaamatan", "1982-05-31": "Pesta Kaamatan (Second day)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", "1982-10-02": "Birthday of the Governor of Sabah", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-04-01": "Good Friday", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-05-30": "Pesta Kaamatan", "1983-05-31": "Pesta Kaamatan (Second day)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", "1983-10-01": "Birthday of the Governor of Sabah", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-04-20": "Good Friday", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-05-30": "Pesta Kaamatan", "1984-05-31": "Pesta Kaamatan (Second day)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-06": "Birthday of the Governor of Sabah", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-04-05": "Good Friday", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-05-30": "Pesta Kaamatan", "1985-05-31": "Pesta Kaamatan (Second day)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-10-05": "Birthday of the Governor of Sabah", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-03-28": "Good Friday", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", + "1986-05-23": "Vesak Day (estimated)", "1986-05-30": "Pesta Kaamatan", "1986-05-31": "Pesta Kaamatan (Second day)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-04": "Birthday of the Governor of Sabah", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-04-17": "Good Friday", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-05-30": "Pesta Kaamatan", "1987-05-31": "Pesta Kaamatan (Second day)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", "1987-10-03": "Birthday of the Governor of Sabah", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-04-01": "Good Friday", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Pesta Kaamatan; Vesak Day* (*estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Pesta Kaamatan; Vesak Day (estimated)", "1988-05-31": "Pesta Kaamatan (Second day)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", "1988-10-01": "Birthday of the Governor of Sabah", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-03-24": "Good Friday", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-05-30": "Pesta Kaamatan", "1989-05-31": "Pesta Kaamatan (Second day)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", "1989-10-07": "Birthday of the Governor of Sabah", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", "1990-04-13": "Good Friday", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-05-30": "Pesta Kaamatan", "1990-05-31": "Pesta Kaamatan (Second day)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-10-06": "Birthday of the Governor of Sabah", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", "1991-03-29": "Good Friday", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-05-30": "Pesta Kaamatan", "1991-05-31": "Pesta Kaamatan (Second day)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-10-05": "Birthday of the Governor of Sabah", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-04-17": "Good Friday", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-05-30": "Pesta Kaamatan", "1992-05-31": "Pesta Kaamatan (Second day)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-03": "Birthday of the Governor of Sabah", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-04-09": "Good Friday", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", "1993-05-30": "Pesta Kaamatan", - "1993-05-31": "Hari Raya Haji* (*estimated); Pesta Kaamatan (Second day)", + "1993-05-31": "Hari Raya Haji (estimated); Pesta Kaamatan (Second day)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-10-02": "Birthday of the Governor of Sabah", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-04-01": "Good Friday", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-05-30": "Pesta Kaamatan", "1994-05-31": "Pesta Kaamatan (Second day)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-10-01": "Birthday of the Governor of Sabah", "1994-11-01": "Deepavali", @@ -874,117 +874,117 @@ "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-04-14": "Good Friday", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated); Pesta Kaamatan", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated); Pesta Kaamatan", "1995-05-31": "Pesta Kaamatan (Second day)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-10-07": "Birthday of the Governor of Sabah", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-04-05": "Good Friday", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-05-30": "Pesta Kaamatan", "1996-05-31": "Pesta Kaamatan (Second day)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-10-05": "Birthday of the Governor of Sabah", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1997-03-28": "Good Friday", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-05-30": "Pesta Kaamatan", "1997-05-31": "Pesta Kaamatan (Second day)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-04": "Birthday of the Governor of Sabah", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", "1998-04-10": "Good Friday", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-05-30": "Pesta Kaamatan", "1998-05-31": "Pesta Kaamatan (Second day)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-10-03": "Birthday of the Governor of Sabah", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", "1999-04-02": "Good Friday", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-05-30": "Pesta Kaamatan", "1999-05-31": "Pesta Kaamatan (Second day)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-10-02": "Birthday of the Governor of Sabah", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-04-21": "Good Friday", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-05-30": "Pesta Kaamatan", "2000-05-31": "Pesta Kaamatan (Second day)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-07": "Birthday of the Governor of Sabah", "2000-10-25": "Deepavali", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", @@ -1456,74 +1456,74 @@ "2023-05-31": "Pesta Kaamatan (Second day)", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-10-07": "Birthday of the Governor of Sabah", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", "2024-03-29": "Good Friday", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-05-30": "Pesta Kaamatan", "2024-05-31": "Pesta Kaamatan (Second day)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-05": "Birthday of the Governor of Sabah", "2024-10-30": "Deepavali", "2024-12-24": "Christmas Eve", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-05-30": "Pesta Kaamatan", "2025-05-31": "Pesta Kaamatan (Second day)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-10-04": "Birthday of the Governor of Sabah", "2025-11-18": "Deepavali", "2025-12-24": "Christmas Eve", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", "2026-04-03": "Good Friday", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-05-30": "Pesta Kaamatan", "2026-05-31": "Pesta Kaamatan (Second day)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-10-03": "Birthday of the Governor of Sabah", @@ -1531,21 +1531,21 @@ "2026-12-24": "Christmas Eve", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-03-26": "Good Friday", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", "2027-05-30": "Pesta Kaamatan", "2027-05-31": "Pesta Kaamatan (Second day)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-02": "Birthday of the Governor of Sabah", @@ -1553,20 +1553,20 @@ "2027-12-24": "Christmas Eve", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-04-14": "Good Friday", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-05-30": "Pesta Kaamatan", "2028-05-31": "Pesta Kaamatan (Second day)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-10-07": "Birthday of the Governor of Sabah", @@ -1574,19 +1574,19 @@ "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-03-30": "Good Friday", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-05-30": "Pesta Kaamatan", "2029-05-31": "Pesta Kaamatan (Second day)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", @@ -1596,19 +1596,19 @@ "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-19": "Good Friday", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-05-30": "Pesta Kaamatan", "2030-05-31": "Pesta Kaamatan (Second day)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-05": "Birthday of the Governor of Sabah", @@ -1616,18 +1616,18 @@ "2030-12-24": "Christmas Eve", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", "2031-04-11": "Good Friday", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-05-30": "Pesta Kaamatan", "2031-05-31": "Pesta Kaamatan (Second day)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", @@ -1636,21 +1636,21 @@ "2031-12-24": "Christmas Eve", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", "2032-03-26": "Good Friday", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-05-30": "Pesta Kaamatan", "2032-05-31": "Pesta Kaamatan (Second day)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-10-02": "Birthday of the Governor of Sabah", @@ -1658,61 +1658,61 @@ "2032-12-24": "Christmas Eve", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-05-30": "Pesta Kaamatan", "2033-05-31": "Pesta Kaamatan (Second day)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-01": "Birthday of the Governor of Sabah", "2033-10-21": "Deepavali", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Christmas Eve; Second day of Hari Raya Puasa* (*estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Christmas Eve; Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-04-07": "Good Friday", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); Pesta Kaamatan", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); Pesta Kaamatan", "2034-05-31": "Pesta Kaamatan (Second day)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-10-07": "Birthday of the Governor of Sabah", "2034-11-09": "Deepavali", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-03-23": "Good Friday", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-05-30": "Pesta Kaamatan", "2035-05-31": "Pesta Kaamatan (Second day)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1721,20 +1721,20 @@ "2035-09-17": "Malaysia Day [In lieu]", "2035-10-06": "Birthday of the Governor of Sabah", "2035-10-29": "Deepavali", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-04-11": "Good Friday", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-05-30": "Pesta Kaamatan", "2036-05-31": "Pesta Kaamatan (Second day)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -1744,19 +1744,19 @@ "2036-10-04": "Birthday of the Governor of Sabah", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-24": "Christmas Eve", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", "2037-04-03": "Good Friday", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-05-30": "Pesta Kaamatan", "2037-05-31": "Pesta Kaamatan (Second day)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", @@ -1764,19 +1764,19 @@ "2037-09-16": "Malaysia Day", "2037-10-03": "Birthday of the Governor of Sabah", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-24": "Christmas Eve", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-04-23": "Good Friday", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-05-30": "Pesta Kaamatan", "2038-05-31": "Pesta Kaamatan (Second day)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1784,44 +1784,44 @@ "2038-09-16": "Malaysia Day", "2038-10-02": "Birthday of the Governor of Sabah", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-24": "Christmas Eve", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-05-30": "Pesta Kaamatan", "2039-05-31": "Pesta Kaamatan (Second day)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", "2039-10-01": "Birthday of the Governor of Sabah", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-03-30": "Good Friday", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-05-30": "Pesta Kaamatan", "2040-05-31": "Pesta Kaamatan (Second day)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1829,227 +1829,227 @@ "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", "2040-10-06": "Birthday of the Governor of Sabah", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-04-19": "Good Friday", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-05-30": "Pesta Kaamatan", "2041-05-31": "Pesta Kaamatan (Second day)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-31": "National Day", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-05": "Birthday of the Governor of Sabah", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated); Christmas Eve", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated); Christmas Eve", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-04-04": "Good Friday", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-05-30": "Pesta Kaamatan", "2042-05-31": "Pesta Kaamatan (Second day)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-10-04": "Birthday of the Governor of Sabah", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-24": "Christmas Eve", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-03-27": "Good Friday", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-05-30": "Pesta Kaamatan", "2043-05-31": "Pesta Kaamatan (Second day)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-03": "Birthday of the Governor of Sabah", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-24": "Christmas Eve", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-05-30": "Pesta Kaamatan", "2044-05-31": "Pesta Kaamatan (Second day)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", "2044-10-01": "Birthday of the Governor of Sabah", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", "2045-04-07": "Good Friday", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-05-30": "Pesta Kaamatan", "2045-05-31": "Pesta Kaamatan (Second day)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", "2045-10-07": "Birthday of the Governor of Sabah", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-03-23": "Good Friday", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-05-30": "Pesta Kaamatan", "2046-05-31": "Pesta Kaamatan (Second day)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", "2046-10-06": "Birthday of the Governor of Sabah", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-04-12": "Good Friday", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-05-30": "Pesta Kaamatan", "2047-05-31": "Pesta Kaamatan (Second day)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", "2047-10-05": "Birthday of the Governor of Sabah", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-24": "Christmas Eve", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-04-03": "Good Friday", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-05-30": "Pesta Kaamatan", "2048-05-31": "Pesta Kaamatan (Second day)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", "2048-10-03": "Birthday of the Governor of Sabah", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-24": "Christmas Eve", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-04-16": "Good Friday", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-05-30": "Pesta Kaamatan", "2049-05-31": "Pesta Kaamatan (Second day)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-02": "Birthday of the Governor of Sabah", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-24": "Christmas Eve", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-05-30": "Pesta Kaamatan", "2050-05-31": "Pesta Kaamatan (Second day)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-10-01": "Birthday of the Governor of Sabah", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" diff --git a/snapshots/countries/MY_SGR.json b/snapshots/countries/MY_SGR.json index 406d0ea03..b5cd218be 100644 --- a/snapshots/countries/MY_SGR.json +++ b/snapshots/countries/MY_SGR.json @@ -1,111 +1,111 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", "1950-12-11": "Birthday of The Sultan of Selangor", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", "1951-10-29": "Deepavali [In lieu]", - "1951-12-11": "Birthday of The Sultan of Selangor; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Birthday of The Sultan of Selangor; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-11": "Birthday of The Sultan of Selangor", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-11": "Birthday of The Sultan of Selangor", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-02-18": "Thaipusam", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-11": "Birthday of The Sultan of Selangor", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", "1955-01-10": "Thaipusam [In lieu]", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-11": "Birthday of The Sultan of Selangor", "1955-12-12": "Birthday of The Sultan of Selangor [In lieu]", @@ -113,95 +113,95 @@ "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", "1956-02-26": "Thaipusam", "1956-02-27": "Thaipusam [In lieu]", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-11": "Birthday of The Sultan of Selangor", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", "1957-02-15": "Thaipusam", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-11-20": "Deepavali", "1957-12-11": "Birthday of The Sultan of Selangor", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-07": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-11-10": "Deepavali [In lieu]", "1958-12-11": "Birthday of The Sultan of Selangor", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", "1959-02-22": "Thaipusam", "1959-02-23": "Thaipusam [In lieu]", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-11": "Birthday of The Sultan of Selangor", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-01-13": "Thaipusam", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-11": "Birthday of The Sultan of Selangor", "1960-12-12": "Birthday of The Sultan of Selangor [In lieu]", @@ -209,522 +209,522 @@ "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-11": "Birthday of The Sultan of Selangor", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", "1962-02-19": "Thaipusam", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-11": "Birthday of The Sultan of Selangor", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-01-10": "Thaipusam", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-11": "Birthday of The Sultan of Selangor", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", "1964-02-28": "Thaipusam", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-11": "Birthday of The Sultan of Selangor", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-11": "Birthday of The Sultan of Selangor", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-01-06": "Thaipusam", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-11": "Birthday of The Sultan of Selangor", "1966-12-12": "Birthday of The Sultan of Selangor [In lieu]", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", "1967-02-24": "Thaipusam", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", "1967-12-11": "Birthday of The Sultan of Selangor", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", "1968-02-13": "Thaipusam", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", "1968-12-11": "Birthday of The Sultan of Selangor", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", "1969-03-03": "Thaipusam", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-11-08": "Deepavali", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Birthday of The Sultan of Selangor; Second day of Hari Raya Puasa* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Birthday of The Sultan of Selangor; Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-21": "Thaipusam", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-11": "Birthday of The Sultan of Selangor", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-12": "Thaipusam", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-11": "Birthday of The Sultan of Selangor", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1972-02-29": "Thaipusam", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-11": "Birthday of The Sultan of Selangor", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", "1973-02-18": "Thaipusam", "1973-02-19": "Thaipusam [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-11": "Birthday of The Sultan of Selangor", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-08": "Thaipusam", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-08-31": "National Day", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", "1974-12-11": "Birthday of The Sultan of Selangor", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", "1975-02-26": "Thaipusam", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", "1975-12-11": "Birthday of The Sultan of Selangor", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", "1976-02-15": "Thaipusam", "1976-02-16": "Thaipusam [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", "1976-12-11": "Birthday of The Sultan of Selangor", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated); Birthday of The Sultan of Selangor", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated); Birthday of The Sultan of Selangor", "1977-12-12": "Birthday of The Sultan of Selangor [In lieu]", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-11": "Birthday of The Sultan of Selangor", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-01-13": "Thaipusam", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-19": "Deepavali [In lieu]", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-11": "Birthday of The Sultan of Selangor", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-03-02": "Thaipusam", "1980-03-03": "Thaipusam [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-11": "Birthday of The Sultan of Selangor", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-11": "Birthday of The Sultan of Selangor", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", "1982-01-11": "Thaipusam [In lieu]", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-12-11": "Birthday of The Sultan of Selangor", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", "1983-12-11": "Birthday of The Sultan of Selangor", "1983-12-12": "Birthday of The Sultan of Selangor [In lieu]", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-11": "Birthday of The Sultan of Selangor", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-03-06": "Thaipusam", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-11": "Deepavali [In lieu]", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-11": "Birthday of The Sultan of Selangor", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-02-23": "Thaipusam", "1986-02-24": "Thaipusam [In lieu]", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", - "1986-05-26": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", + "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-11": "Birthday of The Sultan of Selangor", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-14": "Thaipusam", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-11": "Birthday of The Sultan of Selangor", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-11": "Birthday of The Sultan of Selangor", "1988-12-12": "Birthday of The Sultan of Selangor [In lieu]", @@ -732,113 +732,113 @@ "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", - "1989-04-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", + "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-11": "Birthday of The Sultan of Selangor", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-01-12": "Thaipusam", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-11": "Birthday of The Sultan of Selangor", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", "1991-03-01": "Thaipusam", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-11": "Birthday of The Sultan of Selangor", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-02-18": "Thaipusam", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-11": "Birthday of The Sultan of Selangor", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-08": "Thaipusam", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-11": "Birthday of The Sultan of Selangor", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-02-28": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-11": "Birthday of The Sultan of Selangor", @@ -847,52 +847,52 @@ "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-14": "Thaipusam", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-12-11": "Birthday of The Sultan of Selangor", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-03-04": "Thaipusam", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-12-11": "Birthday of The Sultan of Selangor", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-01-27": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1997-02-22": "Thaipusam", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-29": "Deepavali", @@ -900,61 +900,61 @@ "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-13": "Thaipusam", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", "1998-12-11": "Birthday of The Sultan of Selangor", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", "1999-03-03": "Thaipusam", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", "1999-12-11": "Birthday of The Sultan of Selangor", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", "2000-02-20": "Thaipusam", "2000-02-21": "Thaipusam [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", "2000-12-11": "Birthday of The Sultan of Selangor", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-09": "Thaipusam", "2001-01-24": "Chinese New Year", @@ -1410,52 +1410,52 @@ "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-11-13": "Deepavali [In lieu]", "2023-12-11": "Birthday of The Sultan of Selangor", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-30": "Deepavali", "2024-12-11": "Birthday of The Sultan of Selangor", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-02-11": "Thaipusam", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-11": "Birthday of The Sultan of Selangor", @@ -1463,16 +1463,16 @@ "2026-01-01": "New Year's Day", "2026-02-01": "Thaipusam", "2026-02-02": "Thaipusam [In lieu]", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", @@ -1480,19 +1480,19 @@ "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-01-22": "Thaipusam", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", @@ -1500,37 +1500,37 @@ "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-01-11": "Thaipusam", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-11-14": "Deepavali", "2028-12-11": "Birthday of The Sultan of Selangor", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-01": "Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-02-28": "Thaipusam", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", @@ -1539,19 +1539,19 @@ "2029-12-11": "Birthday of The Sultan of Selangor", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", "2030-02-17": "Thaipusam", "2030-02-18": "Thaipusam [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", @@ -1559,412 +1559,412 @@ "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-08": "Thaipusam", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-11": "Birthday of The Sultan of Selangor", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-02-26": "Thaipusam", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", "2032-12-11": "Birthday of The Sultan of Selangor", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-02-14": "Thaipusam", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", "2033-12-11": "Birthday of The Sultan of Selangor", "2033-12-12": "Birthday of The Sultan of Selangor [In lieu]", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", "2034-03-06": "Thaipusam [In lieu]", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", "2034-12-11": "Birthday of The Sultan of Selangor", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", "2035-02-23": "Thaipusam", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-11": "Birthday of The Sultan of Selangor", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", "2036-01-14": "Thaipusam [In lieu]", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali [In lieu]", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-11": "Birthday of The Sultan of Selangor", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", "2037-03-02": "Thaipusam", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-11": "Birthday of The Sultan of Selangor", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-02-19": "Thaipusam", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-11": "Birthday of The Sultan of Selangor", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", "2039-01-10": "Thaipusam [In lieu]", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-11": "Birthday of The Sultan of Selangor", "2039-12-12": "Birthday of The Sultan of Selangor [In lieu]", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", "2040-02-27": "Thaipusam", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-09-24": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-11-03": "Deepavali", "2040-12-11": "Birthday of The Sultan of Selangor", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", "2041-02-15": "Thaipusam", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-31": "National Day", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", "2041-12-11": "Birthday of The Sultan of Selangor", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-07": "Thaipusam", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", "2042-12-11": "Birthday of The Sultan of Selangor", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-11": "Birthday of The Sultan of Selangor", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", "2044-02-15": "Thaipusam [In lieu]", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-11": "Birthday of The Sultan of Selangor", "2044-12-12": "Birthday of The Sultan of Selangor [In lieu]", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", "2045-03-04": "Thaipusam", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-11": "Birthday of The Sultan of Selangor", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-11": "Birthday of The Sultan of Selangor", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-11": "Thaipusam", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-11": "Birthday of The Sultan of Selangor", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-02-28": "Thaipusam", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-06-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", "2048-12-11": "Birthday of The Sultan of Selangor", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-11": "Birthday of The Sultan of Selangor", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-01-08": "Thaipusam", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-11": "Birthday of The Sultan of Selangor", "2050-12-12": "Birthday of The Sultan of Selangor [In lieu]", "2050-12-25": "Christmas Day", diff --git a/snapshots/countries/MY_SWK.json b/snapshots/countries/MY_SWK.json index 8e0d4da1a..dc632f089 100644 --- a/snapshots/countries/MY_SWK.json +++ b/snapshots/countries/MY_SWK.json @@ -1,353 +1,353 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]; New Year's Day [In lieu]", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-04-07": "Good Friday", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-01": "Gawai Dayak", "1950-06-02": "Gawai Dayak (Second day)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", - "1950-07-18": "Hari Raya Puasa* (*estimated) [In lieu]", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", + "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", "1950-08-31": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-10-14": "Birthday of the Governor of Sarawak", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-03-23": "Good Friday", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-05-21": "Vesak Day* (*estimated) [In lieu]", + "1951-05-20": "Vesak Day (estimated)", + "1951-05-21": "Vesak Day (estimated) [In lieu]", "1951-06-01": "Gawai Dayak", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-31": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-13": "Birthday of the Governor of Sarawak", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", - "1952-01-29": "Chinese New Year* (*estimated) [In lieu]", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", + "1952-01-29": "Chinese New Year (estimated) [In lieu]", "1952-04-11": "Good Friday", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-01": "Gawai Dayak", "1952-06-02": "Gawai Dayak (Second day)", "1952-06-03": "Gawai Dayak [In lieu]", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated) [In lieu]; National Day [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-10-11": "Birthday of the Governor of Sarawak", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "1953-04-03": "Good Friday", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", "1953-06-01": "Gawai Dayak", "1953-06-02": "Gawai Dayak (Second day)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-10-10": "Birthday of the Governor of Sarawak", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-04-16": "Good Friday", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", "1954-06-01": "Gawai Dayak", - "1954-06-02": "Gawai Dayak (Second day); Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-06-02": "Gawai Dayak (Second day); Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-09": "Birthday of the Governor of Sarawak", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-04-08": "Good Friday", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day [In lieu]", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-01": "Gawai Dayak", "1955-06-02": "Gawai Dayak (Second day)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", "1955-10-08": "Birthday of the Governor of Sarawak", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-12-25": "Christmas Day", "1955-12-26": "Christmas Day [In lieu]", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day [In lieu]", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-02-14": "Chinese New Year* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-02-14": "Chinese New Year (estimated) [In lieu]", "1956-03-30": "Good Friday", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", "1956-06-01": "Gawai Dayak", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", "1956-10-13": "Birthday of the Governor of Sarawak", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", "1957-04-19": "Good Friday", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1957-06-02": "Gawai Dayak (Second day)", "1957-06-03": "Gawai Dayak (Second day) [In lieu]", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1957-10-12": "Birthday of the Governor of Sarawak", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-04-04": "Good Friday", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", - "1958-04-22": "Hari Raya Puasa* (*estimated) [In lieu]", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", + "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", + "1958-05-03": "Vesak Day (estimated)", "1958-06-01": "Gawai Dayak", "1958-06-02": "Gawai Dayak (Second day)", "1958-06-03": "Gawai Dayak [In lieu]", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-01": "National Day [In lieu]", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-10-11": "Birthday of the Governor of Sarawak", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-02-10": "Chinese New Year* (*estimated) [In lieu]", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-02-10": "Chinese New Year (estimated) [In lieu]", "1959-03-27": "Good Friday", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-01": "Gawai Dayak", "1959-06-02": "Gawai Dayak (Second day)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-10": "Birthday of the Governor of Sarawak", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-04-15": "Good Friday", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day [In lieu]", - "1960-05-10": "Vesak Day* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", "1960-06-01": "Gawai Dayak", "1960-06-02": "Gawai Dayak (Second day)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-10-08": "Birthday of the Governor of Sarawak", "1960-12-25": "Christmas Day", "1960-12-26": "Christmas Day [In lieu]", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day [In lieu]", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1961-03-31": "Good Friday", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-01": "Gawai Dayak", "1961-06-02": "Gawai Dayak (Second day)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-10-14": "Birthday of the Governor of Sarawak", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-04-20": "Good Friday", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-01": "Gawai Dayak", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1962-08-31": "National Day", "1962-10-13": "Birthday of the Governor of Sarawak", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", - "1963-02-26": "Hari Raya Puasa* (*estimated) [In lieu]", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", + "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", "1963-04-12": "Good Friday", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1963-06-02": "Gawai Dayak (Second day)", "1963-06-03": "Gawai Dayak (Second day) [In lieu]", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-10-12": "Birthday of the Governor of Sarawak", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", "1964-03-27": "Good Friday", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-01": "Gawai Dayak", "1964-06-02": "Gawai Dayak (Second day)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-10-10": "Birthday of the Governor of Sarawak", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated) [In lieu]", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", "1965-04-16": "Good Friday", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", + "1965-05-15": "Vesak Day (estimated)", "1965-06-01": "Gawai Dayak", "1965-06-02": "Gawai Dayak (Second day)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-09": "Birthday of the Governor of Sarawak", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1966-04-01": "Hari Raya Haji* (*estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-08": "Good Friday", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day [In lieu]", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-01": "Gawai Dayak", "1966-06-02": "Gawai Dayak (Second day)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-10-08": "Birthday of the Governor of Sarawak", "1966-12-25": "Christmas Day", "1966-12-26": "Christmas Day [In lieu]", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day [In lieu]", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", "1967-03-24": "Good Friday", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-01": "Gawai Dayak", "1967-06-02": "Gawai Dayak (Second day)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-14": "Birthday of the Governor of Sarawak", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-04-12": "Good Friday", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1968-06-02": "Gawai Dayak (Second day)", "1968-06-03": "Gawai Dayak (Second day) [In lieu]", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-10-12": "Birthday of the Governor of Sarawak", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", "1969-04-04": "Good Friday", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-01": "Gawai Dayak", "1969-06-02": "Gawai Dayak (Second day)", "1969-06-03": "Gawai Dayak [In lieu]", @@ -355,583 +355,583 @@ "1969-08-31": "National Day", "1969-09-01": "National Day [In lieu]", "1969-10-11": "Birthday of the Governor of Sarawak", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-03-27": "Good Friday", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-01": "Gawai Dayak", "1970-06-02": "Gawai Dayak (Second day)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-08-31": "National Day", "1970-10-10": "Birthday of the Governor of Sarawak", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-04-09": "Good Friday", "1971-05-01": "Labour Day", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", - "1971-05-10": "Vesak Day* (*estimated) [In lieu]", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", + "1971-05-10": "Vesak Day (estimated) [In lieu]", "1971-06-01": "Gawai Dayak", "1971-06-02": "Gawai Dayak (Second day)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-10-09": "Birthday of the Governor of Sarawak", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1972-03-31": "Good Friday", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-06-01": "Gawai Dayak", "1972-06-02": "Gawai Dayak (Second day)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", "1972-10-14": "Birthday of the Governor of Sarawak", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1973-04-20": "Good Friday", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-01": "Gawai Dayak", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", "1973-08-31": "National Day", "1973-10-13": "Birthday of the Governor of Sarawak", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-04-12": "Good Friday", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1974-06-02": "Gawai Dayak (Second day)", "1974-06-03": "Gawai Dayak (Second day) [In lieu]", "1974-08-31": "National Day", "1974-10-12": "Birthday of the Governor of Sarawak", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-03-28": "Good Friday", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", - "1975-05-26": "Vesak Day* (*estimated) [In lieu]", + "1975-05-25": "Vesak Day (estimated)", + "1975-05-26": "Vesak Day (estimated) [In lieu]", "1975-06-01": "Gawai Dayak", "1975-06-02": "Gawai Dayak (Second day)", "1975-06-03": "Gawai Dayak [In lieu]", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", "1975-09-01": "National Day [In lieu]", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-10-11": "Birthday of the Governor of Sarawak", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-04-16": "Good Friday", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-01": "Gawai Dayak", "1976-06-02": "Gawai Dayak (Second day)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-08-31": "National Day", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-10-09": "Birthday of the Governor of Sarawak", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-04-08": "Good Friday", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-05-03": "Labour Day [In lieu]", "1977-06-01": "Gawai Dayak", "1977-06-02": "Gawai Dayak (Second day)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-31": "National Day", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-10-08": "Birthday of the Governor of Sarawak", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", "1977-12-26": "Christmas Day [In lieu]", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day [In lieu]", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1978-03-24": "Good Friday", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", - "1978-05-22": "Vesak Day* (*estimated) [In lieu]", + "1978-05-21": "Vesak Day (estimated)", + "1978-05-22": "Vesak Day (estimated) [In lieu]", "1978-06-01": "Gawai Dayak", "1978-06-02": "Gawai Dayak (Second day)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", - "1978-09-05": "Hari Raya Puasa* (*estimated) [In lieu]", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", + "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", "1978-10-14": "Birthday of the Governor of Sarawak", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-01-30": "Chinese New Year* (*estimated) [In lieu]", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-04-13": "Good Friday", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-01": "Gawai Dayak", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", "1979-10-13": "Birthday of the Governor of Sarawak", - "1979-10-31": "Hari Raya Haji* (*estimated)", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", "1980-04-04": "Good Friday", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-01": "Gawai Dayak", "1980-06-02": "Gawai Dayak (Second day)", "1980-06-03": "Gawai Dayak [In lieu]", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", "1980-09-01": "National Day [In lieu]", "1980-10-11": "Birthday of the Governor of Sarawak", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated) [In lieu]", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-04-17": "Good Friday", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-01": "Gawai Dayak", "1981-06-02": "Gawai Dayak (Second day)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-10": "Birthday of the Governor of Sarawak", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-04-09": "Good Friday", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", "1982-06-01": "Gawai Dayak", "1982-06-02": "Gawai Dayak (Second day)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", "1982-10-09": "Birthday of the Governor of Sarawak", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-12-25": "Christmas Day", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", - "1983-02-15": "Chinese New Year* (*estimated) [In lieu]", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", + "1983-02-15": "Chinese New Year (estimated) [In lieu]", "1983-04-01": "Good Friday", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day [In lieu]", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-01": "Gawai Dayak", "1983-06-02": "Gawai Dayak (Second day)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-10-08": "Birthday of the Governor of Sarawak", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Christmas Day [In lieu]", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day [In lieu]", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-04-20": "Good Friday", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-01": "Gawai Dayak", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-13": "Birthday of the Governor of Sarawak", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-04-05": "Good Friday", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", + "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1985-06-02": "Gawai Dayak (Second day)", "1985-06-03": "Gawai Dayak (Second day) [In lieu]", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-10-12": "Birthday of the Governor of Sarawak", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", - "1986-02-11": "Chinese New Year* (*estimated) [In lieu]", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", + "1986-02-11": "Chinese New Year (estimated) [In lieu]", "1986-03-28": "Good Friday", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", + "1986-05-23": "Vesak Day (estimated)", "1986-06-01": "Gawai Dayak", "1986-06-02": "Gawai Dayak (Second day)", "1986-06-03": "Gawai Dayak [In lieu]", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", - "1986-06-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", + "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", "1986-09-01": "National Day [In lieu]", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-11": "Birthday of the Governor of Sarawak", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-04-17": "Good Friday", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-01": "Gawai Dayak", "1987-06-02": "Gawai Dayak (Second day)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", "1987-10-10": "Birthday of the Governor of Sarawak", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-04-01": "Good Friday", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day [In lieu]", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-01": "Gawai Dayak", "1988-06-02": "Gawai Dayak (Second day)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", "1988-10-08": "Birthday of the Governor of Sarawak", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-12-25": "Christmas Day", "1988-12-26": "Christmas Day [In lieu]", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day [In lieu]", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-03-24": "Good Friday", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-01": "Gawai Dayak", "1989-06-02": "Gawai Dayak (Second day)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-14": "Birthday of the Governor of Sarawak", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year Holiday* (*estimated) [In lieu]", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", "1990-04-13": "Good Friday", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-01": "Gawai Dayak", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-10-13": "Birthday of the Governor of Sarawak", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", "1991-03-29": "Good Friday", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1991-06-02": "Gawai Dayak (Second day)", "1991-06-03": "Gawai Dayak (Second day) [In lieu]", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-10-12": "Birthday of the Governor of Sarawak", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1992-04-17": "Good Friday", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-05-18": "Vesak Day* (*estimated) [In lieu]", + "1992-05-17": "Vesak Day (estimated)", + "1992-05-18": "Vesak Day (estimated) [In lieu]", "1992-06-01": "Gawai Dayak", "1992-06-02": "Gawai Dayak (Second day)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-10": "Birthday of the Governor of Sarawak", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-04-09": "Good Friday", "1993-05-01": "Labour Day", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-01": "Gawai Dayak", "1993-06-02": "Gawai Dayak (Second day)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1993-08-31": "National Day", "1993-10-09": "Birthday of the Governor of Sarawak", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", - "1994-03-15": "Hari Raya Puasa* (*estimated) [In lieu]", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", + "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", "1994-04-01": "Good Friday", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day [In lieu]", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-06-01": "Gawai Dayak", "1994-06-02": "Gawai Dayak (Second day)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-10-08": "Birthday of the Governor of Sarawak", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day [In lieu]", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day [In lieu]", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-04-14": "Good Friday", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-15": "Vesak Day* (*estimated) [In lieu]", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-01": "Gawai Dayak", "1995-06-02": "Gawai Dayak (Second day)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-10-14": "Birthday of the Governor of Sarawak", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-04-05": "Good Friday", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1996-06-02": "Gawai Dayak (Second day)", "1996-06-03": "Gawai Dayak (Second day) [In lieu]", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-10-12": "Birthday of the Governor of Sarawak", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1997-03-28": "Good Friday", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-01": "Gawai Dayak", "1997-06-02": "Gawai Dayak (Second day)", "1997-06-03": "Gawai Dayak [In lieu]", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-09-01": "National Day [In lieu]", "1997-10-11": "Birthday of the Governor of Sarawak", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", "1998-04-10": "Good Friday", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) [In lieu]", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) [In lieu]", "1998-06-01": "Gawai Dayak", "1998-06-02": "Gawai Dayak (Second day)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-10-10": "Birthday of the Governor of Sarawak", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", "1999-04-02": "Good Friday", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-06-01": "Gawai Dayak", "1999-06-02": "Gawai Dayak (Second day)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-10-09": "Birthday of the Governor of Sarawak", "1999-11-29": "Malaysia General Election Holiday", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-04-21": "Good Friday", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-01": "Gawai Dayak", "2000-06-02": "Gawai Dayak (Second day)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-14": "Birthday of the Governor of Sarawak", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", @@ -1382,170 +1382,170 @@ "2023-06-02": "Gawai Dayak (Second day)", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2023-06-29": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-07-22": "Sarawak Day", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-10-14": "Birthday of the Governor of Sarawak", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", "2024-03-29": "Good Friday", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-01": "Gawai Dayak", "2024-06-02": "Gawai Dayak (Second day)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-04": "Gawai Dayak (Second day) [In lieu]", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-07-22": "Sarawak Day", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2024-10-12": "Birthday of the Governor of Sarawak", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", - "2025-04-01": "Hari Raya Puasa* (*estimated) [In lieu]", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", + "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) [In lieu]", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) [In lieu]", "2025-06-01": "Gawai Dayak", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", "2025-06-03": "Gawai Dayak [In lieu]", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-07-22": "Sarawak Day", "2025-08-31": "National Day", "2025-09-01": "National Day [In lieu]", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-10-11": "Birthday of the Governor of Sarawak", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", "2026-04-03": "Good Friday", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "2026-06-02": "Gawai Dayak (Second day)", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", "2026-07-22": "Sarawak Day", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-10-10": "Birthday of the Governor of Sarawak", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-03-26": "Good Friday", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", "2027-06-01": "Gawai Dayak", "2027-06-02": "Gawai Dayak (Second day)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2027-07-22": "Sarawak Day", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-09": "Birthday of the Governor of Sarawak", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2028-04-14": "Good Friday", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-01": "Gawai Dayak", "2028-06-02": "Gawai Dayak (Second day)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2028-07-22": "Sarawak Day", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-10-14": "Birthday of the Governor of Sarawak", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-03-30": "Good Friday", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) [In lieu]", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) [In lieu]", "2029-06-01": "Gawai Dayak", "2029-06-02": "Gawai Dayak (Second day)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-22": "Sarawak Day", "2029-07-23": "Sarawak Day [In lieu]", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-09-17": "Malaysia Day [In lieu]", "2029-10-13": "Birthday of the Governor of Sarawak", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", - "2030-02-06": "Chinese New Year* (*estimated) [In lieu]", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", + "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-19": "Good Friday", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-01": "Gawai Dayak", "2030-06-02": "Gawai Dayak (Second day)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2030-06-04": "Gawai Dayak (Second day) [In lieu]", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-07-22": "Sarawak Day", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-12": "Birthday of the Governor of Sarawak", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", "2031-04-11": "Good Friday", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-01": "Gawai Dayak", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", "2031-06-03": "Gawai Dayak [In lieu]", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-07-22": "Sarawak Day", "2031-08-31": "National Day", "2031-09-01": "National Day [In lieu]", @@ -1553,61 +1553,61 @@ "2031-10-11": "Birthday of the Governor of Sarawak", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", "2032-03-26": "Good Friday", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) [In lieu]", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) [In lieu]", "2032-06-01": "Gawai Dayak", "2032-06-02": "Gawai Dayak (Second day)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2032-07-22": "Sarawak Day", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-10-09": "Birthday of the Governor of Sarawak", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-04": "Hari Raya Puasa* (*estimated) [In lieu]", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day [In lieu]", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-01": "Gawai Dayak", "2033-06-02": "Gawai Dayak (Second day)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-07-22": "Sarawak Day", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-08": "Birthday of the Governor of Sarawak", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day [In lieu]", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) [In lieu]", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-04-07": "Good Friday", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-01": "Gawai Dayak", "2034-06-02": "Gawai Dayak (Second day)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1615,20 +1615,20 @@ "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-10-14": "Birthday of the Governor of Sarawak", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) [In lieu]", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-03-23": "Good Friday", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-22": "Vesak Day (estimated)", "2035-06-01": "Gawai Dayak", "2035-06-02": "Gawai Dayak (Second day)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1638,19 +1638,19 @@ "2035-09-16": "Malaysia Day", "2035-09-17": "Malaysia Day [In lieu]", "2035-10-13": "Birthday of the Governor of Sarawak", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-04-11": "Good Friday", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-06-01": "Gawai Dayak", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", "2036-06-03": "Gawai Dayak [In lieu]", @@ -1659,36 +1659,36 @@ "2036-09-01": "National Day [In lieu]", "2036-09-16": "Malaysia Day", "2036-10-11": "Birthday of the Governor of Sarawak", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) [In lieu]", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2037-02-17": "Chinese New Year (estimated) [In lieu]", "2037-04-03": "Good Friday", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "2037-06-02": "Gawai Dayak (Second day)", "2037-07-22": "Sarawak Day", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", "2037-10-10": "Birthday of the Governor of Sarawak", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", - "2037-11-10": "Hari Raya Puasa* (*estimated) [In lieu]", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", + "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-04-23": "Good Friday", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-01": "Gawai Dayak", "2038-06-02": "Gawai Dayak (Second day)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1696,19 +1696,19 @@ "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", "2038-10-09": "Birthday of the Governor of Sarawak", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day [In lieu]", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-06-01": "Gawai Dayak", "2039-06-02": "Gawai Dayak (Second day)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -1716,22 +1716,22 @@ "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", "2039-10-08": "Birthday of the Governor of Sarawak", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day [In lieu]", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day [In lieu]", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) [In lieu]", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", + "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2040-03-30": "Good Friday", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-01": "Gawai Dayak", "2040-06-02": "Gawai Dayak (Second day)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1740,20 +1740,20 @@ "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", "2040-09-17": "Malaysia Day [In lieu]", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", - "2040-10-09": "Hari Raya Puasa* (*estimated) [In lieu]", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", + "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", "2040-10-13": "Birthday of the Governor of Sarawak", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-04-19": "Good Friday", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-01": "Gawai Dayak", "2041-06-02": "Gawai Dayak (Second day)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -1761,198 +1761,198 @@ "2041-07-22": "Sarawak Day", "2041-08-31": "National Day", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-12": "Birthday of the Governor of Sarawak", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-04-04": "Good Friday", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", - "2042-05-05": "Vesak Day* (*estimated) [In lieu]", + "2042-05-04": "Vesak Day (estimated)", + "2042-05-05": "Vesak Day (estimated) [In lieu]", "2042-06-01": "Gawai Dayak", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", "2042-06-03": "Gawai Dayak [In lieu]", "2042-07-22": "Sarawak Day", "2042-08-31": "National Day", "2042-09-01": "National Day [In lieu]", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-10-11": "Birthday of the Governor of Sarawak", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2043-03-27": "Good Friday", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "2043-06-02": "Gawai Dayak (Second day)", "2043-07-22": "Sarawak Day", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", "2043-09-16": "Malaysia Day", "2043-10-10": "Birthday of the Governor of Sarawak", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year Holiday* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day [In lieu]", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-01": "Gawai Dayak", "2044-06-02": "Gawai Dayak (Second day)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-07-22": "Sarawak Day", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", "2044-10-08": "Birthday of the Governor of Sarawak", - "2044-10-31": "Hari Raya Haji* (*estimated)", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day [In lieu]", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day [In lieu]", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", "2045-04-07": "Good Friday", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-01": "Gawai Dayak", "2045-06-02": "Gawai Dayak (Second day)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2045-07-22": "Sarawak Day", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", "2045-10-14": "Birthday of the Governor of Sarawak", - "2045-10-21": "Hari Raya Haji* (*estimated)", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-03-23": "Good Friday", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) [In lieu]", "2046-06-01": "Gawai Dayak", "2046-06-02": "Gawai Dayak (Second day)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-22": "Sarawak Day", "2046-07-23": "Sarawak Day [In lieu]", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-09-17": "Malaysia Day [In lieu]", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-13": "Birthday of the Governor of Sarawak", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", "2047-04-12": "Good Friday", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", "2047-06-01": "Gawai Dayak", "2047-06-02": "Gawai Dayak (Second day)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2047-06-04": "Gawai Dayak (Second day) [In lieu]", "2047-07-22": "Sarawak Day", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-16": "Malaysia Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", "2047-10-12": "Birthday of the Governor of Sarawak", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-04-03": "Good Friday", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "2048-06-02": "Gawai Dayak (Second day)", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", - "2048-07-14": "Hari Raya Puasa* (*estimated) [In lieu]", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", + "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", "2048-07-22": "Sarawak Day", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-10-10": "Birthday of the Governor of Sarawak", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-04-16": "Good Friday", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) [In lieu]", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) [In lieu]", "2049-06-01": "Gawai Dayak", "2049-06-02": "Gawai Dayak (Second day)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-07-22": "Sarawak Day", "2049-08-31": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-09": "Birthday of the Governor of Sarawak", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) [In lieu]", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", + "2050-01-25": "Chinese New Year (estimated) [In lieu]", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day [In lieu]", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-01": "Gawai Dayak", "2050-06-02": "Gawai Dayak (Second day)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-07-22": "Sarawak Day", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) [In lieu]", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-10-08": "Birthday of the Governor of Sarawak", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day [In lieu]" } diff --git a/snapshots/countries/MY_TRG.json b/snapshots/countries/MY_TRG.json index 05eb1e723..975fb10e7 100644 --- a/snapshots/countries/MY_TRG.json +++ b/snapshots/countries/MY_TRG.json @@ -1,969 +1,969 @@ { - "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year Holiday* (*estimated)", - "1950-02-19": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1950-05-01": "Labour Day; Vesak Day* (*estimated)", + "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year Holiday (estimated)", + "1950-02-19": "Chinese New Year Holiday (estimated) [In lieu]", + "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1950-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1950-07-03": "Nuzul Al-Quran Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", + "1950-07-03": "Nuzul Al-Quran Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", "1950-08-31": "National Day", - "1950-09-22": "Arafat Day* (*estimated)", - "1950-09-23": "Hari Raya Haji* (*estimated)", - "1950-09-24": "Hari Raya Haji* (*estimated)", - "1950-09-25": "Hari Raya Haji* (*estimated) [In lieu]", - "1950-10-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1950-09-22": "Arafat Day (estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", + "1950-09-24": "Hari Raya Haji (estimated)", + "1950-09-25": "Hari Raya Haji (estimated) [In lieu]", + "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", - "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-12-25": "Christmas Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year Holiday* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", + "1951-05-20": "Vesak Day (estimated)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1951-06-22": "Nuzul Al-Quran Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", - "1951-07-08": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1951-06-22": "Nuzul Al-Quran Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", + "1951-07-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1951-08-31": "National Day", - "1951-09-11": "Arafat Day* (*estimated)", - "1951-09-12": "Hari Raya Haji* (*estimated)", - "1951-09-13": "Hari Raya Haji* (*estimated)", - "1951-10-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1951-09-11": "Arafat Day (estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", + "1951-09-13": "Hari Raya Haji (estimated)", + "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year Holiday* (*estimated)", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year Holiday (estimated)", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1952-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1952-06-10": "Nuzul Al-Quran Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", - "1952-08-30": "Arafat Day* (*estimated)", - "1952-08-31": "Hari Raya Haji* (*estimated); National Day", - "1952-09-01": "Hari Raya Haji* (*estimated)", - "1952-09-02": "Arafat Day* (*estimated) [In lieu]", - "1952-09-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1952-06-10": "Nuzul Al-Quran Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", + "1952-08-30": "Arafat Day (estimated)", + "1952-08-31": "Hari Raya Haji (estimated); National Day", + "1952-09-01": "Hari Raya Haji (estimated)", + "1952-09-02": "Arafat Day (estimated) [In lieu]", + "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-16": "Deepavali [In lieu]", - "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1952-12-25": "Christmas Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year Holiday* (*estimated)", - "1953-02-16": "Chinese New Year* (*estimated) [In lieu]", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year Holiday (estimated)", + "1953-02-16": "Chinese New Year (estimated) [In lieu]", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-05-30": "Nuzul Al-Quran Day* (*estimated)", - "1953-05-31": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1953-05-27": "Vesak Day (estimated)", + "1953-05-30": "Nuzul Al-Quran Day (estimated)", + "1953-05-31": "Nuzul Al-Quran Day (estimated) [In lieu]", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", - "1953-06-15": "Hari Raya Puasa* (*estimated) [In lieu]", - "1953-08-19": "Arafat Day* (*estimated)", - "1953-08-20": "Hari Raya Haji* (*estimated)", - "1953-08-21": "Hari Raya Haji* (*estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", + "1953-06-15": "Hari Raya Puasa (estimated) [In lieu]", + "1953-08-19": "Arafat Day (estimated)", + "1953-08-20": "Hari Raya Haji (estimated)", + "1953-08-21": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", - "1953-09-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", - "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year Holiday* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-05-01": "Labour Day", "1954-05-02": "Labour Day [In lieu]", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-05-20": "Nuzul Al-Quran Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", + "1954-05-17": "Vesak Day (estimated)", + "1954-05-20": "Nuzul Al-Quran Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1954-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1954-08-08": "Arafat Day* (*estimated)", - "1954-08-09": "Hari Raya Haji* (*estimated)", - "1954-08-10": "Hari Raya Haji* (*estimated)", - "1954-08-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1954-08-08": "Arafat Day (estimated)", + "1954-08-09": "Hari Raya Haji (estimated)", + "1954-08-10": "Hari Raya Haji (estimated)", + "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", "1954-08-31": "National Day", "1954-10-25": "Deepavali", - "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", "1954-12-26": "Christmas Day [In lieu]", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year Holiday* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-06": "Vesak Day* (*estimated)", - "1955-05-10": "Nuzul Al-Quran Day* (*estimated)", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", + "1955-05-06": "Vesak Day (estimated)", + "1955-05-10": "Nuzul Al-Quran Day (estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1955-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1955-07-29": "Arafat Day* (*estimated)", - "1955-07-30": "Hari Raya Haji* (*estimated)", - "1955-07-31": "Hari Raya Haji* (*estimated)", - "1955-08-01": "Hari Raya Haji* (*estimated) [In lieu]", - "1955-08-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1955-07-29": "Arafat Day (estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", + "1955-07-31": "Hari Raya Haji (estimated)", + "1955-08-01": "Hari Raya Haji (estimated) [In lieu]", + "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", - "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1955-11-12": "Deepavali", "1955-11-13": "Deepavali [In lieu]", "1955-12-25": "Christmas Day", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year Holiday* (*estimated)", - "1956-04-28": "Nuzul Al-Quran Day* (*estimated)", - "1956-04-29": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year Holiday (estimated)", + "1956-04-28": "Nuzul Al-Quran Day (estimated)", + "1956-04-29": "Nuzul Al-Quran Day (estimated) [In lieu]", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-13": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1956-05-24": "Vesak Day* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-13": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1956-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1956-07-18": "Arafat Day* (*estimated)", - "1956-07-19": "Hari Raya Haji* (*estimated)", - "1956-07-20": "Hari Raya Haji* (*estimated)", - "1956-08-08": "Awal Muharram (Hijri New Year)* (*estimated)", + "1956-07-18": "Arafat Day (estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", + "1956-07-20": "Hari Raya Haji (estimated)", + "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year Holiday* (*estimated)", - "1957-04-17": "Nuzul Al-Quran Day* (*estimated)", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year Holiday (estimated)", + "1957-04-17": "Nuzul Al-Quran Day (estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1957-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1957-07-07": "Arafat Day* (*estimated)", - "1957-07-08": "Hari Raya Haji* (*estimated)", - "1957-07-09": "Hari Raya Haji* (*estimated)", - "1957-07-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1957-07-07": "Arafat Day (estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", + "1957-07-09": "Hari Raya Haji (estimated)", + "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-09-01": "National Day [In lieu]", - "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year Holiday* (*estimated)", - "1958-04-06": "Nuzul Al-Quran Day* (*estimated)", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year Holiday (estimated)", + "1958-04-06": "Nuzul Al-Quran Day (estimated)", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", "1958-05-01": "Labour Day", - "1958-05-03": "Vesak Day* (*estimated)", - "1958-05-04": "Vesak Day* (*estimated) [In lieu]", + "1958-05-03": "Vesak Day (estimated)", + "1958-05-04": "Vesak Day (estimated) [In lieu]", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1958-06-26": "Arafat Day* (*estimated)", - "1958-06-27": "Hari Raya Haji* (*estimated)", - "1958-06-28": "Hari Raya Haji* (*estimated)", - "1958-06-29": "Hari Raya Haji* (*estimated) [In lieu]", - "1958-07-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1958-06-26": "Arafat Day (estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", + "1958-06-28": "Hari Raya Haji (estimated)", + "1958-06-29": "Hari Raya Haji (estimated) [In lieu]", + "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", "1958-12-25": "Christmas Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year Holiday* (*estimated)", - "1959-03-27": "Nuzul Al-Quran Day* (*estimated)", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", - "1959-04-12": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year Holiday (estimated)", + "1959-03-27": "Nuzul Al-Quran Day (estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", + "1959-04-12": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1959-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1959-06-16": "Arafat Day* (*estimated)", - "1959-06-17": "Hari Raya Haji* (*estimated)", - "1959-06-18": "Hari Raya Haji* (*estimated)", - "1959-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1959-06-16": "Arafat Day (estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", + "1959-06-18": "Hari Raya Haji (estimated)", + "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", - "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year Holiday* (*estimated)", - "1960-03-15": "Nuzul Al-Quran Day* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year Holiday (estimated)", + "1960-03-15": "Nuzul Al-Quran Day (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-03": "Arafat Day* (*estimated)", - "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji* (*estimated)", - "1960-06-05": "Hari Raya Haji* (*estimated)", - "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Hari Raya Haji* (*estimated) [In lieu]", - "1960-06-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-03": "Arafat Day (estimated)", + "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", + "1960-06-05": "Hari Raya Haji (estimated)", + "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Hari Raya Haji (estimated) [In lieu]", + "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", - "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year Holiday* (*estimated)", - "1961-03-04": "Nuzul Al-Quran Day* (*estimated)", - "1961-03-05": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", - "1961-03-20": "Hari Raya Puasa* (*estimated) [In lieu]", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year Holiday (estimated)", + "1961-03-04": "Nuzul Al-Quran Day (estimated)", + "1961-03-05": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", + "1961-03-20": "Hari Raya Puasa (estimated) [In lieu]", "1961-05-01": "Labour Day", - "1961-05-24": "Arafat Day* (*estimated)", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-26": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-24": "Arafat Day (estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-26": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1961-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1961-06-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", + "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year Holiday* (*estimated)", - "1962-02-21": "Nuzul Al-Quran Day* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year Holiday (estimated)", + "1962-02-21": "Nuzul Al-Quran Day (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-05-01": "Labour Day", - "1962-05-13": "Arafat Day* (*estimated)", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-15": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-13": "Arafat Day (estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-15": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year)* (*estimated); Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated); Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year Holiday* (*estimated)", - "1963-01-27": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1963-02-11": "Nuzul Al-Quran Day* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year Holiday (estimated)", + "1963-01-27": "Chinese New Year Holiday (estimated) [In lieu]", + "1963-02-11": "Nuzul Al-Quran Day (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", "1963-05-01": "Labour Day", - "1963-05-02": "Arafat Day* (*estimated)", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-04": "Hari Raya Haji* (*estimated)", - "1963-05-05": "Hari Raya Haji* (*estimated) [In lieu]", - "1963-05-08": "Vesak Day* (*estimated)", - "1963-05-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "1963-05-02": "Arafat Day (estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-04": "Hari Raya Haji (estimated)", + "1963-05-05": "Hari Raya Haji (estimated) [In lieu]", + "1963-05-08": "Vesak Day (estimated)", + "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1963-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-09-01": "National Day [In lieu]", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", - "1964-01-31": "Nuzul Al-Quran Day* (*estimated)", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", - "1964-02-16": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "1964-04-21": "Arafat Day* (*estimated)", - "1964-04-22": "Hari Raya Haji* (*estimated)", - "1964-04-23": "Hari Raya Haji* (*estimated)", + "1964-01-31": "Nuzul Al-Quran Day (estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", + "1964-02-16": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1964-04-21": "Arafat Day (estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", + "1964-04-23": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-12": "Awal Muharram (Hijri New Year)* (*estimated)", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1964-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", - "1965-01-19": "Nuzul Al-Quran Day* (*estimated)", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-10": "Arafat Day* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", - "1965-04-12": "Hari Raya Haji* (*estimated)", - "1965-04-13": "Arafat Day* (*estimated) [In lieu]", - "1965-05-01": "Awal Muharram (Hijri New Year)* (*estimated); Labour Day", + "1965-01-19": "Nuzul Al-Quran Day (estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-10": "Arafat Day (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", + "1965-04-12": "Hari Raya Haji (estimated)", + "1965-04-13": "Arafat Day (estimated) [In lieu]", + "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-02": "Labour Day [In lieu]", - "1965-05-15": "Vesak Day* (*estimated)", - "1965-05-16": "Vesak Day* (*estimated) [In lieu]", + "1965-05-15": "Vesak Day (estimated)", + "1965-05-16": "Vesak Day (estimated) [In lieu]", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1965-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1965-12-26": "Christmas Day [In lieu]", - "1966-01-08": "Nuzul Al-Quran Day* (*estimated)", - "1966-01-09": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-01-24": "Chinese New Year Holiday* (*estimated) [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]", - "1966-03-31": "Arafat Day* (*estimated)", - "1966-04-01": "Hari Raya Haji* (*estimated)", - "1966-04-02": "Hari Raya Haji* (*estimated)", - "1966-04-03": "Hari Raya Haji* (*estimated) [In lieu]", - "1966-04-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-01-08": "Nuzul Al-Quran Day (estimated)", + "1966-01-09": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-01-24": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1966-03-31": "Arafat Day (estimated)", + "1966-04-01": "Hari Raya Haji (estimated)", + "1966-04-02": "Hari Raya Haji (estimated)", + "1966-04-03": "Hari Raya Haji (estimated) [In lieu]", + "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-05": "Vesak Day* (*estimated)", + "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-29": "Nuzul Al-Quran Day* (*estimated)", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year Holiday* (*estimated)", - "1967-03-20": "Arafat Day* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", - "1967-03-22": "Hari Raya Haji* (*estimated)", - "1967-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1966-12-29": "Nuzul Al-Quran Day (estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year Holiday (estimated)", + "1967-03-20": "Arafat Day (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", + "1967-03-22": "Hari Raya Haji (estimated)", + "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1967-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", - "1967-12-18": "Nuzul Al-Quran Day* (*estimated)", + "1967-12-18": "Nuzul Al-Quran Day (estimated)", "1967-12-25": "Christmas Day", - "1968-01-01": "Hari Raya Puasa* (*estimated)", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year Holiday* (*estimated)", - "1968-03-08": "Arafat Day* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", - "1968-03-10": "Hari Raya Haji* (*estimated)", - "1968-03-11": "Hari Raya Haji* (*estimated) [In lieu]", - "1968-03-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated)", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year Holiday (estimated)", + "1968-03-08": "Arafat Day (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", + "1968-03-10": "Hari Raya Haji (estimated)", + "1968-03-11": "Hari Raya Haji (estimated) [In lieu]", + "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", - "1968-05-12": "Vesak Day* (*estimated) [In lieu]", + "1968-05-11": "Vesak Day (estimated)", + "1968-05-12": "Vesak Day (estimated) [In lieu]", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1968-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1968-08-31": "National Day", "1968-09-01": "National Day [In lieu]", "1968-11-18": "Deepavali", - "1968-12-07": "Nuzul Al-Quran Day* (*estimated)", - "1968-12-08": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", - "1968-12-23": "Hari Raya Puasa* (*estimated) [In lieu]", + "1968-12-07": "Nuzul Al-Quran Day (estimated)", + "1968-12-08": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", + "1968-12-23": "Hari Raya Puasa (estimated) [In lieu]", "1968-12-25": "Christmas Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year Holiday* (*estimated)", - "1969-02-26": "Arafat Day* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", - "1969-02-28": "Hari Raya Haji* (*estimated)", - "1969-03-19": "Awal Muharram (Hijri New Year)* (*estimated)", - "1969-05-01": "Labour Day; Vesak Day* (*estimated)", - "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year Holiday (estimated)", + "1969-02-26": "Arafat Day (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", + "1969-02-28": "Hari Raya Haji (estimated)", + "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", + "1969-05-01": "Labour Day; Vesak Day (estimated)", + "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1969-08-31": "National Day", "1969-11-08": "Deepavali", "1969-11-09": "Deepavali [In lieu]", - "1969-11-26": "Nuzul Al-Quran Day* (*estimated)", - "1969-12-10": "Hari Raya Puasa* (*estimated)", - "1969-12-11": "Second day of Hari Raya Puasa* (*estimated)", + "1969-11-26": "Nuzul Al-Quran Day (estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", + "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year Holiday* (*estimated)", - "1970-02-08": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1970-02-15": "Arafat Day* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", - "1970-02-17": "Hari Raya Haji* (*estimated)", - "1970-03-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year Holiday (estimated)", + "1970-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "1970-02-15": "Arafat Day (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", + "1970-02-17": "Hari Raya Haji (estimated)", + "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1970-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1970-08-31": "National Day", "1970-10-28": "Deepavali", - "1970-11-17": "Nuzul Al-Quran Day* (*estimated)", - "1970-11-30": "Hari Raya Puasa* (*estimated)", - "1970-12-01": "Second day of Hari Raya Puasa* (*estimated)", + "1970-11-17": "Nuzul Al-Quran Day (estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", + "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year Holiday* (*estimated)", - "1971-02-05": "Arafat Day* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", - "1971-02-07": "Hari Raya Haji* (*estimated)", - "1971-02-08": "Hari Raya Haji* (*estimated) [In lieu]", - "1971-02-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year Holiday (estimated)", + "1971-02-05": "Arafat Day (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", + "1971-02-07": "Hari Raya Haji (estimated)", + "1971-02-08": "Hari Raya Haji (estimated) [In lieu]", + "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", "1971-05-02": "Labour Day [In lieu]", - "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1971-05-09": "Vesak Day* (*estimated)", + "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1971-05-09": "Vesak Day (estimated)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1971-08-31": "National Day", - "1971-11-05": "Nuzul Al-Quran Day* (*estimated)", + "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", - "1971-11-20": "Second day of Hari Raya Puasa* (*estimated)", - "1971-11-21": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1971-11-19": "Hari Raya Puasa (estimated)", + "1971-11-20": "Second day of Hari Raya Puasa (estimated)", + "1971-11-21": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1971-12-25": "Christmas Day", "1971-12-26": "Christmas Day [In lieu]", - "1972-01-25": "Arafat Day* (*estimated)", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-01-27": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1972-01-25": "Arafat Day (estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-01-27": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", - "1972-05-28": "Vesak Day* (*estimated) [In lieu]", + "1972-05-27": "Vesak Day (estimated)", + "1972-05-28": "Vesak Day (estimated) [In lieu]", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1972-08-31": "National Day", - "1972-10-24": "Nuzul Al-Quran Day* (*estimated)", + "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", "1972-11-05": "Deepavali [In lieu]", - "1972-11-07": "Hari Raya Puasa* (*estimated)", - "1972-11-08": "Second day of Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", + "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", - "1973-01-13": "Arafat Day* (*estimated)", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-01-15": "Hari Raya Haji* (*estimated)", - "1973-01-16": "Arafat Day* (*estimated) [In lieu]", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1973-02-05": "Chinese New Year* (*estimated) [In lieu]", - "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1973-01-13": "Arafat Day (estimated)", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-01-15": "Hari Raya Haji (estimated)", + "1973-01-16": "Arafat Day (estimated) [In lieu]", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1973-02-05": "Chinese New Year (estimated) [In lieu]", + "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1973-08-31": "National Day", - "1973-10-13": "Nuzul Al-Quran Day* (*estimated)", - "1973-10-14": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "1973-10-13": "Nuzul Al-Quran Day (estimated)", + "1973-10-14": "Nuzul Al-Quran Day (estimated) [In lieu]", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", - "1973-10-28": "Second day of Hari Raya Puasa* (*estimated)", - "1973-10-29": "Hari Raya Puasa* (*estimated) [In lieu]", + "1973-10-27": "Hari Raya Puasa (estimated)", + "1973-10-28": "Second day of Hari Raya Puasa (estimated)", + "1973-10-29": "Hari Raya Puasa (estimated) [In lieu]", "1973-12-25": "Christmas Day", - "1974-01-02": "Arafat Day* (*estimated)", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-04": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", - "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-01-02": "Arafat Day (estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-04": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", + "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1974-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1974-08-31": "National Day", "1974-09-01": "National Day [In lieu]", - "1974-10-03": "Nuzul Al-Quran Day* (*estimated)", - "1974-10-16": "Hari Raya Puasa* (*estimated)", - "1974-10-17": "Second day of Hari Raya Puasa* (*estimated)", + "1974-10-03": "Nuzul Al-Quran Day (estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", + "1974-10-17": "Second day of Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-23": "Arafat Day* (*estimated)", - "1974-12-24": "Hari Raya Haji* (*estimated)", - "1974-12-25": "Christmas Day; Hari Raya Haji* (*estimated)", - "1975-01-13": "Awal Muharram (Hijri New Year)* (*estimated)", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year Holiday* (*estimated)", - "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1974-12-23": "Arafat Day (estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", + "1974-12-25": "Christmas Day; Hari Raya Haji (estimated)", + "1975-01-13": "Awal Muharram (Hijri New Year) (estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year Holiday (estimated)", + "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", + "1975-05-25": "Vesak Day (estimated)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1975-08-31": "National Day", - "1975-09-22": "Nuzul Al-Quran Day* (*estimated)", - "1975-10-06": "Hari Raya Puasa* (*estimated)", - "1975-10-07": "Second day of Hari Raya Puasa* (*estimated)", + "1975-09-22": "Nuzul Al-Quran Day (estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", + "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", "1975-11-02": "Deepavali [In lieu]", - "1975-12-12": "Arafat Day* (*estimated)", - "1975-12-13": "Hari Raya Haji* (*estimated)", - "1975-12-14": "Hari Raya Haji* (*estimated)", - "1975-12-15": "Hari Raya Haji* (*estimated) [In lieu]", + "1975-12-12": "Arafat Day (estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", + "1975-12-14": "Hari Raya Haji (estimated)", + "1975-12-15": "Hari Raya Haji (estimated) [In lieu]", "1975-12-25": "Christmas Day", - "1976-01-02": "Awal Muharram (Hijri New Year)* (*estimated)", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year Holiday* (*estimated)", - "1976-02-02": "Chinese New Year* (*estimated) [In lieu]", - "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year Holiday (estimated)", + "1976-02-02": "Chinese New Year (estimated) [In lieu]", + "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-02": "Labour Day [In lieu]", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1976-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", "1976-08-31": "National Day", - "1976-09-11": "Nuzul Al-Quran Day* (*estimated)", - "1976-09-12": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1976-09-24": "Hari Raya Puasa* (*estimated)", - "1976-09-25": "Second day of Hari Raya Puasa* (*estimated)", - "1976-09-26": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "1976-09-11": "Nuzul Al-Quran Day (estimated)", + "1976-09-12": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1976-09-24": "Hari Raya Puasa (estimated)", + "1976-09-25": "Second day of Hari Raya Puasa (estimated)", + "1976-09-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", "1976-11-19": "Deepavali", - "1976-11-30": "Arafat Day* (*estimated)", - "1976-12-01": "Hari Raya Haji* (*estimated)", - "1976-12-02": "Hari Raya Haji* (*estimated)", - "1976-12-22": "Awal Muharram (Hijri New Year)* (*estimated)", + "1976-11-30": "Arafat Day (estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", + "1976-12-02": "Hari Raya Haji (estimated)", + "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1976-12-26": "Christmas Day [In lieu]", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year Holiday* (*estimated)", - "1977-02-20": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year Holiday (estimated)", + "1977-02-20": "Chinese New Year Holiday (estimated) [In lieu]", + "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", - "1977-05-02": "Vesak Day* (*estimated)", + "1977-05-02": "Vesak Day (estimated)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1977-08-31": "National Day; Nuzul Al-Quran Day* (*estimated)", - "1977-09-14": "Hari Raya Puasa* (*estimated)", - "1977-09-15": "Second day of Hari Raya Puasa* (*estimated)", + "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", + "1977-09-15": "Second day of Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-20": "Arafat Day* (*estimated)", - "1977-11-21": "Hari Raya Haji* (*estimated)", - "1977-11-22": "Hari Raya Haji* (*estimated)", - "1977-12-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "1977-11-20": "Arafat Day (estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", + "1977-11-22": "Hari Raya Haji (estimated)", + "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year Holiday* (*estimated)", - "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year Holiday (estimated)", + "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", + "1978-05-21": "Vesak Day (estimated)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1978-08-21": "Nuzul Al-Quran Day* (*estimated)", + "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", - "1978-09-04": "Second day of Hari Raya Puasa* (*estimated)", + "1978-09-03": "Hari Raya Puasa (estimated)", + "1978-09-04": "Second day of Hari Raya Puasa (estimated)", "1978-10-30": "Deepavali", - "1978-11-09": "Arafat Day* (*estimated)", - "1978-11-10": "Hari Raya Haji* (*estimated)", - "1978-11-11": "Hari Raya Haji* (*estimated)", - "1978-11-12": "Hari Raya Haji* (*estimated) [In lieu]", - "1978-12-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1978-11-09": "Arafat Day (estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", + "1978-11-11": "Hari Raya Haji (estimated)", + "1978-11-12": "Hari Raya Haji (estimated) [In lieu]", + "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year Holiday* (*estimated)", - "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year Holiday (estimated)", + "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1979-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1979-08-10": "Nuzul Al-Quran Day* (*estimated)", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-08-24": "Second day of Hari Raya Puasa* (*estimated)", + "1979-08-10": "Nuzul Al-Quran Day (estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-08-24": "Second day of Hari Raya Puasa (estimated)", "1979-08-31": "National Day", - "1979-10-30": "Arafat Day* (*estimated)", - "1979-10-31": "Hari Raya Haji* (*estimated)", - "1979-11-01": "Hari Raya Haji* (*estimated)", + "1979-10-30": "Arafat Day (estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", + "1979-11-01": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", - "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year Holiday* (*estimated)", - "1980-02-18": "Chinese New Year* (*estimated) [In lieu]", + "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year Holiday (estimated)", + "1980-02-18": "Chinese New Year (estimated) [In lieu]", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1980-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1980-07-29": "Nuzul Al-Quran Day* (*estimated)", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-08-13": "Second day of Hari Raya Puasa* (*estimated)", + "1980-07-29": "Nuzul Al-Quran Day (estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-10-18": "Arafat Day* (*estimated)", - "1980-10-19": "Hari Raya Haji* (*estimated)", - "1980-10-20": "Hari Raya Haji* (*estimated)", - "1980-10-21": "Arafat Day* (*estimated) [In lieu]", + "1980-10-18": "Arafat Day (estimated)", + "1980-10-19": "Hari Raya Haji (estimated)", + "1980-10-20": "Hari Raya Haji (estimated)", + "1980-10-21": "Arafat Day (estimated) [In lieu]", "1980-11-06": "Deepavali", - "1980-11-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", - "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year Holiday* (*estimated)", + "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1981-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1981-07-18": "Nuzul Al-Quran Day* (*estimated)", - "1981-07-19": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1981-08-01": "Hari Raya Puasa* (*estimated)", - "1981-08-02": "Second day of Hari Raya Puasa* (*estimated)", - "1981-08-03": "Hari Raya Puasa* (*estimated) [In lieu]", + "1981-07-18": "Nuzul Al-Quran Day (estimated)", + "1981-07-19": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1981-08-01": "Hari Raya Puasa (estimated)", + "1981-08-02": "Second day of Hari Raya Puasa (estimated)", + "1981-08-03": "Hari Raya Puasa (estimated) [In lieu]", "1981-08-31": "National Day", - "1981-10-07": "Arafat Day* (*estimated)", - "1981-10-08": "Hari Raya Haji* (*estimated)", - "1981-10-09": "Hari Raya Haji* (*estimated)", + "1981-10-07": "Arafat Day (estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", + "1981-10-09": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", - "1981-10-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", - "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year Holiday* (*estimated)", + "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", "1982-05-02": "Labour Day [In lieu]", - "1982-05-08": "Vesak Day* (*estimated)", - "1982-05-09": "Vesak Day* (*estimated) [In lieu]", + "1982-05-08": "Vesak Day (estimated)", + "1982-05-09": "Vesak Day (estimated) [In lieu]", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1982-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1982-07-08": "Nuzul Al-Quran Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", - "1982-07-22": "Second day of Hari Raya Puasa* (*estimated)", + "1982-07-08": "Nuzul Al-Quran Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", + "1982-07-22": "Second day of Hari Raya Puasa (estimated)", "1982-08-31": "National Day", - "1982-09-26": "Arafat Day* (*estimated)", - "1982-09-27": "Hari Raya Haji* (*estimated)", - "1982-09-28": "Hari Raya Haji* (*estimated)", - "1982-10-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1982-09-26": "Arafat Day (estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", + "1982-09-28": "Hari Raya Haji (estimated)", + "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", "1982-11-14": "Deepavali [In lieu]", "1982-12-25": "Christmas Day", "1982-12-26": "Christmas Day [In lieu]", - "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year Holiday* (*estimated)", + "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year Holiday (estimated)", "1983-05-01": "Labour Day", - "1983-05-27": "Vesak Day* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1983-06-28": "Nuzul Al-Quran Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", - "1983-07-12": "Second day of Hari Raya Puasa* (*estimated)", + "1983-06-28": "Nuzul Al-Quran Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", + "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", - "1983-09-16": "Arafat Day* (*estimated)", - "1983-09-17": "Hari Raya Haji* (*estimated)", - "1983-09-18": "Hari Raya Haji* (*estimated)", - "1983-09-19": "Hari Raya Haji* (*estimated) [In lieu]", - "1983-10-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "1983-09-16": "Arafat Day (estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", + "1983-09-18": "Hari Raya Haji (estimated)", + "1983-09-19": "Hari Raya Haji (estimated) [In lieu]", + "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", - "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year Holiday* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1984-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1984-06-16": "Nuzul Al-Quran Day* (*estimated)", - "1984-06-17": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1984-06-30": "Hari Raya Puasa* (*estimated)", - "1984-07-01": "Second day of Hari Raya Puasa* (*estimated)", - "1984-07-02": "Hari Raya Puasa* (*estimated) [In lieu]", + "1984-06-16": "Nuzul Al-Quran Day (estimated)", + "1984-06-17": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1984-06-30": "Hari Raya Puasa (estimated)", + "1984-07-01": "Second day of Hari Raya Puasa (estimated)", + "1984-07-02": "Hari Raya Puasa (estimated) [In lieu]", "1984-08-31": "National Day", - "1984-09-04": "Arafat Day* (*estimated)", - "1984-09-05": "Hari Raya Haji* (*estimated)", - "1984-09-06": "Hari Raya Haji* (*estimated)", - "1984-09-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "1984-09-04": "Arafat Day (estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", + "1984-09-06": "Hari Raya Haji (estimated)", + "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", - "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1984-12-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1984-12-25": "Christmas Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year Holiday* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-05-01": "Labour Day", - "1985-05-04": "Vesak Day* (*estimated)", - "1985-05-05": "Vesak Day* (*estimated) [In lieu]", + "1985-05-04": "Vesak Day (estimated)", + "1985-05-05": "Vesak Day (estimated) [In lieu]", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1985-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1985-06-05": "Nuzul Al-Quran Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", - "1985-06-20": "Second day of Hari Raya Puasa* (*estimated)", - "1985-08-25": "Arafat Day* (*estimated)", - "1985-08-26": "Hari Raya Haji* (*estimated)", - "1985-08-27": "Hari Raya Haji* (*estimated)", + "1985-06-05": "Nuzul Al-Quran Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", + "1985-06-20": "Second day of Hari Raya Puasa (estimated)", + "1985-08-25": "Arafat Day (estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", + "1985-08-27": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", "1985-09-01": "National Day [In lieu]", - "1985-09-15": "Awal Muharram (Hijri New Year)* (*estimated)", + "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1985-12-25": "Christmas Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year Holiday* (*estimated)", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year Holiday (estimated)", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-05-25": "Nuzul Al-Quran Day* (*estimated)", + "1986-05-23": "Vesak Day (estimated)", + "1986-05-25": "Nuzul Al-Quran Day (estimated)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1986-06-08": "Hari Raya Puasa* (*estimated)", - "1986-06-09": "Second day of Hari Raya Puasa* (*estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", + "1986-06-09": "Second day of Hari Raya Puasa (estimated)", "1986-06-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1986-08-14": "Arafat Day* (*estimated)", - "1986-08-15": "Hari Raya Haji* (*estimated)", - "1986-08-16": "Hari Raya Haji* (*estimated)", - "1986-08-17": "Hari Raya Haji* (*estimated) [In lieu]", + "1986-08-14": "Arafat Day (estimated)", + "1986-08-15": "Hari Raya Haji (estimated)", + "1986-08-16": "Hari Raya Haji (estimated)", + "1986-08-17": "Hari Raya Haji (estimated) [In lieu]", "1986-08-31": "National Day", - "1986-09-05": "Awal Muharram (Hijri New Year)* (*estimated)", + "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1986-12-25": "Christmas Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year Holiday* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-15": "Nuzul Al-Quran Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-05-29": "Second day of Hari Raya Puasa* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-15": "Nuzul Al-Quran Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1987-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1987-08-03": "Arafat Day* (*estimated)", - "1987-08-04": "Hari Raya Haji* (*estimated)", - "1987-08-05": "Hari Raya Haji* (*estimated)", - "1987-08-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "1987-08-03": "Arafat Day (estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", + "1987-08-05": "Hari Raya Haji (estimated)", + "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", "1987-08-31": "National Day", - "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year Holiday* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-05-01": "Labour Day", - "1988-05-03": "Nuzul Al-Quran Day* (*estimated)", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-17": "Second day of Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", + "1988-05-03": "Nuzul Al-Quran Day (estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-17": "Second day of Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1988-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1988-07-22": "Arafat Day* (*estimated)", - "1988-07-23": "Hari Raya Haji* (*estimated)", - "1988-07-24": "Hari Raya Haji* (*estimated)", - "1988-07-25": "Hari Raya Haji* (*estimated) [In lieu]", - "1988-08-13": "Awal Muharram (Hijri New Year)* (*estimated)", + "1988-07-22": "Arafat Day (estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", + "1988-07-24": "Hari Raya Haji (estimated)", + "1988-07-25": "Hari Raya Haji (estimated) [In lieu]", + "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", - "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year Holiday* (*estimated)", - "1989-04-23": "Nuzul Al-Quran Day* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year Holiday (estimated)", + "1989-04-23": "Nuzul Al-Quran Day (estimated)", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-07": "Second day of Hari Raya Puasa* (*estimated)", - "1989-05-08": "Hari Raya Puasa* (*estimated) [In lieu]", - "1989-05-19": "Vesak Day* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-07": "Second day of Hari Raya Puasa (estimated)", + "1989-05-08": "Hari Raya Puasa (estimated) [In lieu]", + "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1989-07-12": "Arafat Day* (*estimated)", - "1989-07-13": "Hari Raya Haji* (*estimated)", - "1989-07-14": "Hari Raya Haji* (*estimated)", - "1989-08-02": "Awal Muharram (Hijri New Year)* (*estimated)", + "1989-07-12": "Arafat Day (estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", + "1989-07-14": "Hari Raya Haji (estimated)", + "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", - "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year Holiday* (*estimated)", - "1990-01-29": "Chinese New Year* (*estimated) [In lieu]", - "1990-04-12": "Nuzul Al-Quran Day* (*estimated)", - "1990-04-26": "Hari Raya Puasa* (*estimated)", - "1990-04-27": "Second day of Hari Raya Puasa* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year Holiday (estimated)", + "1990-01-29": "Chinese New Year (estimated) [In lieu]", + "1990-04-12": "Nuzul Al-Quran Day (estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", + "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1990-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1990-07-01": "Arafat Day* (*estimated)", - "1990-07-02": "Hari Raya Haji* (*estimated)", - "1990-07-03": "Hari Raya Haji* (*estimated)", - "1990-07-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "1990-07-01": "Arafat Day (estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", + "1990-07-03": "Hari Raya Haji (estimated)", + "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year Holiday* (*estimated)", - "1991-02-17": "Chinese New Year Holiday* (*estimated) [In lieu]", - "1991-04-02": "Nuzul Al-Quran Day* (*estimated)", - "1991-04-15": "Hari Raya Puasa* (*estimated)", - "1991-04-16": "Second day of Hari Raya Puasa* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year Holiday (estimated)", + "1991-02-17": "Chinese New Year Holiday (estimated) [In lieu]", + "1991-04-02": "Nuzul Al-Quran Day (estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", + "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1991-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1991-06-21": "Arafat Day* (*estimated)", - "1991-06-22": "Hari Raya Haji* (*estimated)", - "1991-06-23": "Hari Raya Haji* (*estimated)", - "1991-06-24": "Hari Raya Haji* (*estimated) [In lieu]", - "1991-07-12": "Awal Muharram (Hijri New Year)* (*estimated)", + "1991-06-21": "Arafat Day (estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", + "1991-06-23": "Hari Raya Haji (estimated)", + "1991-06-24": "Hari Raya Haji (estimated) [In lieu]", + "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", "1991-09-01": "National Day [In lieu]", - "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year Holiday* (*estimated)", - "1992-03-21": "Nuzul Al-Quran Day* (*estimated)", - "1992-03-22": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "1992-04-04": "Hari Raya Puasa* (*estimated)", - "1992-04-05": "Second day of Hari Raya Puasa* (*estimated)", - "1992-04-06": "Hari Raya Puasa* (*estimated) [In lieu]", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year Holiday (estimated)", + "1992-03-21": "Nuzul Al-Quran Day (estimated)", + "1992-03-22": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1992-04-04": "Hari Raya Puasa (estimated)", + "1992-04-05": "Second day of Hari Raya Puasa (estimated)", + "1992-04-06": "Hari Raya Puasa (estimated) [In lieu]", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", + "1992-05-17": "Vesak Day (estimated)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1992-06-10": "Arafat Day* (*estimated)", - "1992-06-11": "Hari Raya Haji* (*estimated)", - "1992-06-12": "Hari Raya Haji* (*estimated)", - "1992-07-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "1992-06-10": "Arafat Day (estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", + "1992-06-12": "Hari Raya Haji (estimated)", + "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", - "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-10-25": "Deepavali [In lieu]", "1992-12-25": "Christmas Day", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year Holiday* (*estimated)", - "1993-01-25": "Chinese New Year* (*estimated) [In lieu]", - "1993-03-10": "Nuzul Al-Quran Day* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", - "1993-03-25": "Second day of Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year Holiday (estimated)", + "1993-01-25": "Chinese New Year (estimated) [In lieu]", + "1993-03-10": "Nuzul Al-Quran Day (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", + "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", "1993-05-02": "Labour Day [In lieu]", - "1993-05-06": "Vesak Day* (*estimated)", - "1993-05-30": "Arafat Day* (*estimated)", - "1993-05-31": "Hari Raya Haji* (*estimated)", - "1993-06-01": "Hari Raya Haji* (*estimated)", + "1993-05-06": "Vesak Day (estimated)", + "1993-05-30": "Arafat Day (estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", + "1993-06-01": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1993-06-21": "Awal Muharram (Hijri New Year)* (*estimated)", - "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", + "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1993-12-26": "Christmas Day [In lieu]", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year Holiday* (*estimated)", - "1994-02-27": "Nuzul Al-Quran Day* (*estimated)", - "1994-03-13": "Hari Raya Puasa* (*estimated)", - "1994-03-14": "Second day of Hari Raya Puasa* (*estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year Holiday (estimated)", + "1994-02-27": "Nuzul Al-Quran Day (estimated)", + "1994-03-13": "Hari Raya Puasa (estimated)", + "1994-03-14": "Second day of Hari Raya Puasa (estimated)", "1994-05-01": "Labour Day", - "1994-05-19": "Arafat Day* (*estimated)", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-21": "Hari Raya Haji* (*estimated)", - "1994-05-22": "Hari Raya Haji* (*estimated) [In lieu]", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-19": "Arafat Day (estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-21": "Hari Raya Haji (estimated)", + "1994-05-22": "Hari Raya Haji (estimated) [In lieu]", + "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1994-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1994-06-10": "Awal Muharram (Hijri New Year)* (*estimated)", - "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", + "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year Holiday* (*estimated)", - "1995-02-16": "Nuzul Al-Quran Day* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", - "1995-03-03": "Second day of Hari Raya Puasa* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year Holiday (estimated)", + "1995-02-16": "Nuzul Al-Quran Day (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", + "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", - "1995-05-08": "Arafat Day* (*estimated)", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-10": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", - "1995-05-30": "Awal Muharram (Hijri New Year)* (*estimated)", + "1995-05-08": "Arafat Day (estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-10": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", + "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", - "1996-02-06": "Nuzul Al-Quran Day* (*estimated)", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year Holiday* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1996-04-26": "Arafat Day* (*estimated)", - "1996-04-27": "Hari Raya Haji* (*estimated)", - "1996-04-28": "Hari Raya Haji* (*estimated)", - "1996-04-29": "Hari Raya Haji* (*estimated) [In lieu]", + "1996-02-06": "Nuzul Al-Quran Day (estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", + "1996-04-26": "Arafat Day (estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", + "1996-04-28": "Hari Raya Haji (estimated)", + "1996-04-29": "Hari Raya Haji (estimated) [In lieu]", "1996-05-01": "Labour Day", - "1996-05-02": "Vesak Day* (*estimated)", - "1996-05-18": "Awal Muharram (Hijri New Year)* (*estimated)", + "1996-05-02": "Vesak Day (estimated)", + "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1996-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1996-08-31": "National Day", "1996-09-01": "National Day [In lieu]", "1996-11-09": "Deepavali", "1996-11-10": "Deepavali [In lieu]", "1996-12-25": "Christmas Day", - "1997-01-26": "Nuzul Al-Quran Day* (*estimated)", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1997-02-09": "Second day of Hari Raya Puasa* (*estimated)", - "1997-02-10": "Chinese New Year Holiday* (*estimated) [In lieu]; Hari Raya Puasa* (*estimated) [In lieu]", - "1997-04-16": "Arafat Day* (*estimated)", - "1997-04-17": "Hari Raya Haji* (*estimated)", - "1997-04-18": "Hari Raya Haji* (*estimated)", + "1997-01-26": "Nuzul Al-Quran Day (estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1997-02-09": "Second day of Hari Raya Puasa (estimated)", + "1997-02-10": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1997-04-16": "Arafat Day (estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", + "1997-04-18": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-07": "Awal Muharram (Hijri New Year)* (*estimated)", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", - "1998-01-15": "Nuzul Al-Quran Day* (*estimated)", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-01-30": "Second day of Hari Raya Puasa* (*estimated)", - "1998-04-06": "Arafat Day* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", - "1998-04-08": "Hari Raya Haji* (*estimated)", - "1998-04-27": "Awal Muharram (Hijri New Year)* (*estimated)", + "1998-01-15": "Nuzul Al-Quran Day (estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "1998-01-30": "Second day of Hari Raya Puasa (estimated)", + "1998-04-06": "Arafat Day (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", + "1998-04-08": "Hari Raya Haji (estimated)", + "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", + "1998-05-10": "Vesak Day (estimated)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", - "1999-01-04": "Nuzul Al-Quran Day* (*estimated)", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-01-19": "Second day of Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year Holiday* (*estimated)", - "1999-03-26": "Arafat Day* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", - "1999-03-28": "Hari Raya Haji* (*estimated)", - "1999-03-29": "Hari Raya Haji* (*estimated) [In lieu]", - "1999-04-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "1999-01-04": "Nuzul Al-Quran Day (estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-01-19": "Second day of Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year Holiday (estimated)", + "1999-03-26": "Arafat Day (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", + "1999-03-28": "Hari Raya Haji (estimated)", + "1999-03-29": "Hari Raya Haji (estimated) [In lieu]", + "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", "1999-05-02": "Labour Day [In lieu]", - "1999-05-29": "Vesak Day* (*estimated)", - "1999-05-30": "Vesak Day* (*estimated) [In lieu]", + "1999-05-29": "Vesak Day (estimated)", + "1999-05-30": "Vesak Day (estimated) [In lieu]", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1999-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "1999-08-31": "National Day", "1999-11-06": "Deepavali", "1999-11-07": "Deepavali [In lieu]", "1999-11-29": "Malaysia General Election Holiday", - "1999-12-25": "Christmas Day; Nuzul Al-Quran Day* (*estimated)", - "1999-12-26": "Christmas Day [In lieu]; Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-01-09": "Second day of Hari Raya Puasa* (*estimated)", - "2000-01-10": "Hari Raya Puasa* (*estimated) [In lieu]", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year Holiday* (*estimated)", - "2000-02-07": "Chinese New Year* (*estimated) [In lieu]", + "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", + "1999-12-26": "Christmas Day [In lieu]; Nuzul Al-Quran Day (estimated) [In lieu]", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-01-09": "Second day of Hari Raya Puasa (estimated)", + "2000-01-10": "Hari Raya Puasa (estimated) [In lieu]", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year Holiday (estimated)", + "2000-02-07": "Chinese New Year (estimated) [In lieu]", "2000-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2000-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", - "2000-03-15": "Arafat Day* (*estimated)", - "2000-03-16": "Hari Raya Haji* (*estimated)", - "2000-03-17": "Hari Raya Haji* (*estimated)", - "2000-04-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2000-03-15": "Arafat Day (estimated)", + "2000-03-16": "Hari Raya Haji (estimated)", + "2000-03-17": "Hari Raya Haji (estimated)", + "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-04-26": "Birthday of the Sultan of Terengganu", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2000-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", - "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", - "2000-12-13": "Nuzul Al-Quran Day* (*estimated)", + "2000-12-13": "Nuzul Al-Quran Day (estimated)", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", - "2000-12-28": "Second day of Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", + "2000-12-28": "Second day of Hari Raya Puasa (estimated)", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year Holiday", "2001-03-04": "Anniversary of the Installation of the Sultan of Terengganu", @@ -1464,619 +1464,619 @@ "2023-06-28": "Arafat Day", "2023-06-29": "Hari Raya Haji", "2023-06-30": "Hari Raya Haji", - "2023-07-19": "Awal Muharram (Hijri New Year)* (*estimated)", + "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", "2023-09-17": "Malaysia Day [In lieu]", - "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-12-25": "Christmas Day", - "2024-02-08": "Isra and Mi'raj* (*estimated)", - "2024-02-10": "Chinese New Year* (*estimated)", - "2024-02-11": "Chinese New Year Holiday* (*estimated)", - "2024-02-12": "Chinese New Year* (*estimated) [In lieu]", + "2024-02-08": "Isra and Mi'raj (estimated)", + "2024-02-10": "Chinese New Year (estimated)", + "2024-02-11": "Chinese New Year Holiday (estimated)", + "2024-02-12": "Chinese New Year (estimated) [In lieu]", "2024-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2024-03-27": "Nuzul Al-Quran Day* (*estimated)", - "2024-04-10": "Hari Raya Puasa* (*estimated)", - "2024-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "2024-03-27": "Nuzul Al-Quran Day (estimated)", + "2024-04-10": "Hari Raya Puasa (estimated)", + "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-04-26": "Birthday of the Sultan of Terengganu", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day* (*estimated)", + "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-15": "Arafat Day* (*estimated)", - "2024-06-16": "Hari Raya Haji* (*estimated)", - "2024-06-17": "Hari Raya Haji* (*estimated)", - "2024-06-18": "Arafat Day* (*estimated) [In lieu]", - "2024-07-07": "Awal Muharram (Hijri New Year)* (*estimated)", + "2024-06-15": "Arafat Day (estimated)", + "2024-06-16": "Hari Raya Haji (estimated)", + "2024-06-17": "Hari Raya Haji (estimated)", + "2024-06-18": "Arafat Day (estimated) [In lieu]", + "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-01": "National Day [In lieu]", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", - "2025-01-27": "Isra and Mi'raj* (*estimated)", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year Holiday* (*estimated)", + "2025-01-27": "Isra and Mi'raj (estimated)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2025-03-17": "Nuzul Al-Quran Day* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Second day of Hari Raya Puasa* (*estimated)", + "2025-03-17": "Nuzul Al-Quran Day (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Second day of Hari Raya Puasa (estimated)", "2025-04-26": "Birthday of the Sultan of Terengganu", "2025-04-27": "Birthday of the Sultan of Terengganu [In lieu]", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", + "2025-05-11": "Vesak Day (estimated)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2025-06-05": "Arafat Day* (*estimated)", - "2025-06-06": "Hari Raya Haji* (*estimated)", - "2025-06-07": "Hari Raya Haji* (*estimated)", - "2025-06-08": "Hari Raya Haji* (*estimated) [In lieu]", - "2025-06-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2025-06-05": "Arafat Day (estimated)", + "2025-06-06": "Hari Raya Haji (estimated)", + "2025-06-07": "Hari Raya Haji (estimated)", + "2025-06-08": "Hari Raya Haji (estimated) [In lieu]", + "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", - "2026-01-16": "Isra and Mi'raj* (*estimated)", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year Holiday* (*estimated)", + "2026-01-16": "Isra and Mi'raj (estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year Holiday (estimated)", "2026-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2026-03-06": "Nuzul Al-Quran Day* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", - "2026-03-21": "Second day of Hari Raya Puasa* (*estimated)", - "2026-03-22": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2026-03-06": "Nuzul Al-Quran Day (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", + "2026-03-21": "Second day of Hari Raya Puasa (estimated)", + "2026-03-22": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2026-04-26": "Birthday of the Sultan of Terengganu", - "2026-05-01": "Labour Day; Vesak Day* (*estimated)", - "2026-05-26": "Arafat Day* (*estimated)", - "2026-05-27": "Hari Raya Haji* (*estimated)", - "2026-05-28": "Hari Raya Haji* (*estimated)", + "2026-05-01": "Labour Day; Vesak Day (estimated)", + "2026-05-26": "Arafat Day (estimated)", + "2026-05-27": "Hari Raya Haji (estimated)", + "2026-05-28": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2026-06-16": "Awal Muharram (Hijri New Year)* (*estimated)", - "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", + "2026-08-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-11-08": "Deepavali [In lieu]", "2026-12-25": "Christmas Day", - "2027-01-05": "Isra and Mi'raj* (*estimated)", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year Holiday* (*estimated)", - "2027-02-08": "Chinese New Year* (*estimated) [In lieu]", - "2027-02-24": "Nuzul Al-Quran Day* (*estimated)", + "2027-01-05": "Isra and Mi'raj (estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year Holiday (estimated)", + "2027-02-08": "Chinese New Year (estimated) [In lieu]", + "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2027-03-09": "Hari Raya Puasa* (*estimated)", - "2027-03-10": "Second day of Hari Raya Puasa* (*estimated)", + "2027-03-09": "Hari Raya Puasa (estimated)", + "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-04-26": "Birthday of the Sultan of Terengganu", "2027-05-01": "Labour Day", "2027-05-02": "Labour Day [In lieu]", - "2027-05-15": "Arafat Day* (*estimated)", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated)", - "2027-05-18": "Arafat Day* (*estimated) [In lieu]", - "2027-05-20": "Vesak Day* (*estimated)", - "2027-06-06": "Awal Muharram (Hijri New Year)* (*estimated)", + "2027-05-15": "Arafat Day (estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated)", + "2027-05-18": "Arafat Day (estimated) [In lieu]", + "2027-05-20": "Vesak Day (estimated)", + "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", - "2027-12-25": "Christmas Day; Isra and Mi'raj* (*estimated)", - "2027-12-26": "Christmas Day [In lieu]; Isra and Mi'raj* (*estimated) [In lieu]", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year Holiday* (*estimated)", - "2028-02-13": "Nuzul Al-Quran Day* (*estimated)", - "2028-02-26": "Hari Raya Puasa* (*estimated)", - "2028-02-27": "Second day of Hari Raya Puasa* (*estimated)", - "2028-02-28": "Hari Raya Puasa* (*estimated) [In lieu]", + "2027-12-25": "Christmas Day; Isra and Mi'raj (estimated)", + "2027-12-26": "Christmas Day [In lieu]; Isra and Mi'raj (estimated) [In lieu]", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year Holiday (estimated)", + "2028-02-13": "Nuzul Al-Quran Day (estimated)", + "2028-02-26": "Hari Raya Puasa (estimated)", + "2028-02-27": "Second day of Hari Raya Puasa (estimated)", + "2028-02-28": "Hari Raya Puasa (estimated) [In lieu]", "2028-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2028-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", "2028-04-26": "Birthday of the Sultan of Terengganu", "2028-05-01": "Labour Day", - "2028-05-04": "Arafat Day* (*estimated)", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-06": "Hari Raya Haji* (*estimated)", - "2028-05-07": "Hari Raya Haji* (*estimated) [In lieu]", - "2028-05-09": "Vesak Day* (*estimated)", - "2028-05-25": "Awal Muharram (Hijri New Year)* (*estimated)", + "2028-05-04": "Arafat Day (estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-06": "Hari Raya Haji (estimated)", + "2028-05-07": "Hari Raya Haji (estimated) [In lieu]", + "2028-05-09": "Vesak Day (estimated)", + "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", "2028-09-17": "Malaysia Day [In lieu]", "2028-11-14": "Deepavali", - "2028-12-14": "Isra and Mi'raj* (*estimated)", + "2028-12-14": "Isra and Mi'raj (estimated)", "2028-12-25": "Christmas Day", - "2029-02-01": "Nuzul Al-Quran Day* (*estimated)", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2029-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "2029-02-01": "Nuzul Al-Quran Day (estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2029-04-23": "Arafat Day* (*estimated)", - "2029-04-24": "Hari Raya Haji* (*estimated)", - "2029-04-25": "Hari Raya Haji* (*estimated)", + "2029-04-23": "Arafat Day (estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", + "2029-04-25": "Hari Raya Haji (estimated)", "2029-04-26": "Birthday of the Sultan of Terengganu", "2029-05-01": "Labour Day", - "2029-05-14": "Awal Muharram (Hijri New Year)* (*estimated)", - "2029-05-27": "Vesak Day* (*estimated)", + "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", + "2029-05-27": "Vesak Day (estimated)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", "2029-11-04": "Deepavali", - "2029-12-03": "Isra and Mi'raj* (*estimated)", + "2029-12-03": "Isra and Mi'raj (estimated)", "2029-12-25": "Christmas Day", - "2030-01-21": "Nuzul Al-Quran Day* (*estimated)", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Second day of Hari Raya Puasa* (*estimated)", + "2030-01-21": "Nuzul Al-Quran Day (estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Second day of Hari Raya Puasa (estimated)", "2030-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2030-04-12": "Arafat Day* (*estimated)", - "2030-04-13": "Hari Raya Haji* (*estimated)", - "2030-04-14": "Hari Raya Haji* (*estimated)", - "2030-04-15": "Hari Raya Haji* (*estimated) [In lieu]", + "2030-04-12": "Arafat Day (estimated)", + "2030-04-13": "Hari Raya Haji (estimated)", + "2030-04-14": "Hari Raya Haji (estimated)", + "2030-04-15": "Hari Raya Haji (estimated) [In lieu]", "2030-04-26": "Birthday of the Sultan of Terengganu", "2030-05-01": "Labour Day", - "2030-05-03": "Awal Muharram (Hijri New Year)* (*estimated)", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2030-08-31": "National Day", "2030-09-01": "National Day [In lieu]", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", - "2030-11-23": "Isra and Mi'raj* (*estimated)", - "2030-11-24": "Isra and Mi'raj* (*estimated) [In lieu]", + "2030-11-23": "Isra and Mi'raj (estimated)", + "2030-11-24": "Isra and Mi'raj (estimated) [In lieu]", "2030-12-25": "Christmas Day", - "2031-01-11": "Nuzul Al-Quran Day* (*estimated)", - "2031-01-12": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year Holiday* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-01-25": "Second day of Hari Raya Puasa* (*estimated)", - "2031-01-26": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2031-01-11": "Nuzul Al-Quran Day (estimated)", + "2031-01-12": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", + "2031-01-25": "Second day of Hari Raya Puasa (estimated)", + "2031-01-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2031-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2031-04-01": "Arafat Day* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", - "2031-04-03": "Hari Raya Haji* (*estimated)", - "2031-04-23": "Awal Muharram (Hijri New Year)* (*estimated)", + "2031-04-01": "Arafat Day (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", + "2031-04-03": "Hari Raya Haji (estimated)", + "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-04-26": "Birthday of the Sultan of Terengganu", "2031-04-27": "Birthday of the Sultan of Terengganu [In lieu]", "2031-05-01": "Labour Day", - "2031-05-06": "Vesak Day* (*estimated)", + "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", "2031-09-16": "Malaysia Day", - "2031-11-12": "Isra and Mi'raj* (*estimated)", + "2031-11-12": "Isra and Mi'raj (estimated)", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", - "2031-12-31": "Nuzul Al-Quran Day* (*estimated)", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-01-15": "Second day of Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year Holiday* (*estimated)", + "2031-12-31": "Nuzul Al-Quran Day (estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-01-15": "Second day of Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2032-03-21": "Arafat Day* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", - "2032-03-23": "Hari Raya Haji* (*estimated)", - "2032-04-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2032-03-21": "Arafat Day (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", + "2032-03-23": "Hari Raya Haji (estimated)", + "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-04-26": "Birthday of the Sultan of Terengganu", "2032-05-01": "Labour Day", "2032-05-02": "Labour Day [In lieu]", - "2032-05-23": "Vesak Day* (*estimated)", + "2032-05-23": "Vesak Day (estimated)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", - "2032-11-01": "Deepavali; Isra and Mi'raj* (*estimated)", - "2032-12-20": "Nuzul Al-Quran Day* (*estimated)", + "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", + "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", "2032-12-26": "Christmas Day [In lieu]", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Second day of Hari Raya Puasa* (*estimated)", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year Holiday* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Second day of Hari Raya Puasa (estimated)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2033-03-10": "Arafat Day* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", - "2033-03-12": "Hari Raya Haji* (*estimated)", - "2033-03-13": "Hari Raya Haji* (*estimated) [In lieu]", - "2033-04-01": "Awal Muharram (Hijri New Year)* (*estimated)", + "2033-03-10": "Arafat Day (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", + "2033-03-12": "Hari Raya Haji (estimated)", + "2033-03-13": "Hari Raya Haji (estimated) [In lieu]", + "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-04-26": "Birthday of the Sultan of Terengganu", "2033-05-01": "Labour Day", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", - "2033-10-21": "Deepavali; Isra and Mi'raj* (*estimated)", - "2033-12-09": "Nuzul Al-Quran Day* (*estimated)", - "2033-12-23": "Hari Raya Puasa* (*estimated)", - "2033-12-24": "Second day of Hari Raya Puasa* (*estimated)", + "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", + "2033-12-09": "Nuzul Al-Quran Day (estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", + "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year Holiday* (*estimated)", - "2034-02-28": "Arafat Day* (*estimated)", - "2034-03-01": "Hari Raya Haji* (*estimated)", - "2034-03-02": "Hari Raya Haji* (*estimated)", + "2033-12-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year Holiday (estimated)", + "2034-02-28": "Arafat Day (estimated)", + "2034-03-01": "Hari Raya Haji (estimated)", + "2034-03-02": "Hari Raya Haji (estimated)", "2034-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2034-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", - "2034-03-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-04-26": "Birthday of the Sultan of Terengganu", "2034-05-01": "Labour Day", - "2034-05-03": "Vesak Day* (*estimated)", - "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2034-05-03": "Vesak Day (estimated)", + "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-09-17": "Malaysia Day [In lieu]", - "2034-10-10": "Isra and Mi'raj* (*estimated)", + "2034-10-10": "Isra and Mi'raj (estimated)", "2034-11-09": "Deepavali", - "2034-11-28": "Nuzul Al-Quran Day* (*estimated)", - "2034-12-12": "Hari Raya Puasa* (*estimated)", - "2034-12-13": "Second day of Hari Raya Puasa* (*estimated)", + "2034-11-28": "Nuzul Al-Quran Day (estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", + "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year Holiday* (*estimated)", - "2035-02-17": "Arafat Day* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated)", - "2035-02-20": "Arafat Day* (*estimated) [In lieu]", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year Holiday (estimated)", + "2035-02-17": "Arafat Day (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated)", + "2035-02-20": "Arafat Day (estimated) [In lieu]", "2035-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2035-03-11": "Awal Muharram (Hijri New Year)* (*estimated)", + "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-04-26": "Birthday of the Sultan of Terengganu", "2035-05-01": "Labour Day", - "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-29": "Isra and Mi'raj* (*estimated)", - "2035-09-30": "Isra and Mi'raj* (*estimated) [In lieu]", + "2035-09-29": "Isra and Mi'raj (estimated)", + "2035-09-30": "Isra and Mi'raj (estimated) [In lieu]", "2035-10-29": "Deepavali", - "2035-11-17": "Nuzul Al-Quran Day* (*estimated)", - "2035-11-18": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2035-12-01": "Hari Raya Puasa* (*estimated)", - "2035-12-02": "Second day of Hari Raya Puasa* (*estimated)", - "2035-12-03": "Hari Raya Puasa* (*estimated) [In lieu]", + "2035-11-17": "Nuzul Al-Quran Day (estimated)", + "2035-11-18": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2035-12-01": "Hari Raya Puasa (estimated)", + "2035-12-02": "Second day of Hari Raya Puasa (estimated)", + "2035-12-03": "Hari Raya Puasa (estimated) [In lieu]", "2035-12-25": "Christmas Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year Holiday* (*estimated)", - "2036-02-06": "Arafat Day* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", - "2036-02-08": "Hari Raya Haji* (*estimated)", - "2036-02-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year Holiday (estimated)", + "2036-02-06": "Arafat Day (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", + "2036-02-08": "Hari Raya Haji (estimated)", + "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2036-04-26": "Birthday of the Sultan of Terengganu", "2036-04-27": "Birthday of the Sultan of Terengganu [In lieu]", "2036-05-01": "Labour Day", - "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2036-05-10": "Vesak Day* (*estimated)", - "2036-05-11": "Vesak Day* (*estimated) [In lieu]", + "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2036-05-10": "Vesak Day (estimated)", + "2036-05-11": "Vesak Day (estimated) [In lieu]", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-16": "Malaysia Day", - "2036-09-18": "Isra and Mi'raj* (*estimated)", - "2036-11-05": "Nuzul Al-Quran Day* (*estimated)", + "2036-09-18": "Isra and Mi'raj (estimated)", + "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", - "2036-11-19": "Hari Raya Puasa* (*estimated)", - "2036-11-20": "Second day of Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", + "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", - "2037-01-25": "Arafat Day* (*estimated)", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-01-27": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2037-01-25": "Arafat Day (estimated)", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-01-27": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2037-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2037-04-26": "Birthday of the Sultan of Terengganu", - "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", - "2037-09-07": "Isra and Mi'raj* (*estimated)", + "2037-09-07": "Isra and Mi'raj (estimated)", "2037-09-16": "Malaysia Day", - "2037-10-26": "Nuzul Al-Quran Day* (*estimated)", + "2037-10-26": "Nuzul Al-Quran Day (estimated)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Second day of Hari Raya Puasa* (*estimated)", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Second day of Hari Raya Puasa (estimated)", "2037-12-25": "Christmas Day", - "2038-01-15": "Arafat Day* (*estimated)", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-01-17": "Hari Raya Haji* (*estimated)", - "2038-01-18": "Hari Raya Haji* (*estimated) [In lieu]", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Awal Muharram (Hijri New Year)* (*estimated); Chinese New Year Holiday* (*estimated)", + "2038-01-15": "Arafat Day (estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-01-17": "Hari Raya Haji (estimated)", + "2038-01-18": "Hari Raya Haji (estimated) [In lieu]", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2038-04-26": "Birthday of the Sultan of Terengganu", "2038-05-01": "Labour Day", "2038-05-02": "Labour Day [In lieu]", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2038-08-28": "Isra and Mi'raj* (*estimated)", - "2038-08-29": "Isra and Mi'raj* (*estimated) [In lieu]", + "2038-08-28": "Isra and Mi'raj (estimated)", + "2038-08-29": "Isra and Mi'raj (estimated) [In lieu]", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", - "2038-10-16": "Nuzul Al-Quran Day* (*estimated)", - "2038-10-17": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2038-10-16": "Nuzul Al-Quran Day (estimated)", + "2038-10-17": "Nuzul Al-Quran Day (estimated) [In lieu]", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", - "2038-10-30": "Second day of Hari Raya Puasa* (*estimated)", - "2038-10-31": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2038-10-29": "Hari Raya Puasa (estimated)", + "2038-10-30": "Second day of Hari Raya Puasa (estimated)", + "2038-10-31": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2038-12-25": "Christmas Day", "2038-12-26": "Christmas Day [In lieu]", - "2039-01-04": "Arafat Day* (*estimated)", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-06": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year Holiday* (*estimated)", - "2039-01-26": "Awal Muharram (Hijri New Year)* (*estimated)", + "2039-01-04": "Arafat Day (estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-06": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year Holiday (estimated)", + "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-04-26": "Birthday of the Sultan of Terengganu", "2039-05-01": "Labour Day", - "2039-05-07": "Vesak Day* (*estimated)", - "2039-05-08": "Vesak Day* (*estimated) [In lieu]", + "2039-05-07": "Vesak Day (estimated)", + "2039-05-08": "Vesak Day (estimated) [In lieu]", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2039-08-17": "Isra and Mi'raj* (*estimated)", + "2039-08-17": "Isra and Mi'raj (estimated)", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-10-05": "Nuzul Al-Quran Day* (*estimated)", - "2039-10-19": "Hari Raya Puasa* (*estimated)", - "2039-10-20": "Second day of Hari Raya Puasa* (*estimated)", + "2039-10-05": "Nuzul Al-Quran Day (estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", + "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", - "2039-12-25": "Arafat Day* (*estimated); Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", - "2039-12-27": "Hari Raya Haji* (*estimated)", - "2040-01-15": "Awal Muharram (Hijri New Year)* (*estimated)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year Holiday* (*estimated)", + "2039-12-25": "Arafat Day (estimated); Christmas Day", + "2039-12-26": "Hari Raya Haji (estimated)", + "2039-12-27": "Hari Raya Haji (estimated)", + "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year Holiday (estimated)", "2040-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2040-04-26": "Birthday of the Sultan of Terengganu", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2040-08-05": "Isra and Mi'raj* (*estimated)", + "2040-08-05": "Isra and Mi'raj (estimated)", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-23": "Nuzul Al-Quran Day* (*estimated)", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Second day of Hari Raya Puasa* (*estimated)", + "2040-09-23": "Nuzul Al-Quran Day (estimated)", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Second day of Hari Raya Puasa (estimated)", "2040-11-03": "Deepavali", "2040-11-04": "Deepavali [In lieu]", - "2040-12-13": "Arafat Day* (*estimated)", - "2040-12-14": "Hari Raya Haji* (*estimated)", - "2040-12-15": "Hari Raya Haji* (*estimated)", - "2040-12-16": "Hari Raya Haji* (*estimated) [In lieu]", + "2040-12-13": "Arafat Day (estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", + "2040-12-15": "Hari Raya Haji (estimated)", + "2040-12-16": "Hari Raya Haji (estimated) [In lieu]", "2040-12-25": "Christmas Day", - "2041-01-04": "Awal Muharram (Hijri New Year)* (*estimated)", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year Holiday* (*estimated)", - "2041-02-03": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year Holiday (estimated)", + "2041-02-03": "Chinese New Year Holiday (estimated) [In lieu]", "2041-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-04-26": "Birthday of the Sultan of Terengganu", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-07-25": "Isra and Mi'raj* (*estimated)", + "2041-07-25": "Isra and Mi'raj (estimated)", "2041-08-31": "National Day", "2041-09-01": "National Day [In lieu]", - "2041-09-13": "Nuzul Al-Quran Day* (*estimated)", + "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", - "2041-09-27": "Second day of Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", + "2041-09-27": "Second day of Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-03": "Arafat Day* (*estimated)", - "2041-12-04": "Hari Raya Haji* (*estimated)", - "2041-12-05": "Hari Raya Haji* (*estimated)", - "2041-12-24": "Awal Muharram (Hijri New Year)* (*estimated)", + "2041-12-03": "Arafat Day (estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", + "2041-12-05": "Hari Raya Haji (estimated)", + "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", "2041-12-25": "Christmas Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year Holiday* (*estimated)", - "2042-03-04": "Anniversary of the Installation of the Sultan of Terengganu; Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year Holiday (estimated)", + "2042-03-04": "Anniversary of the Installation of the Sultan of Terengganu; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-04-26": "Birthday of the Sultan of Terengganu", "2042-04-27": "Birthday of the Sultan of Terengganu [In lieu]", "2042-05-01": "Labour Day", - "2042-05-04": "Vesak Day* (*estimated)", + "2042-05-04": "Vesak Day (estimated)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2042-07-15": "Isra and Mi'raj* (*estimated)", + "2042-07-15": "Isra and Mi'raj (estimated)", "2042-08-31": "National Day", - "2042-09-02": "Nuzul Al-Quran Day* (*estimated)", - "2042-09-15": "Hari Raya Puasa* (*estimated)", - "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa* (*estimated)", + "2042-09-02": "Nuzul Al-Quran Day (estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", + "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-22": "Arafat Day* (*estimated)", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated)", - "2042-11-25": "Arafat Day* (*estimated) [In lieu]", - "2042-12-14": "Awal Muharram (Hijri New Year)* (*estimated)", + "2042-11-22": "Arafat Day (estimated)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated)", + "2042-11-25": "Arafat Day (estimated) [In lieu]", + "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year Holiday* (*estimated)", - "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year Holiday (estimated)", + "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2043-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2043-04-26": "Birthday of the Sultan of Terengganu", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", - "2043-05-24": "Vesak Day* (*estimated) [In lieu]", + "2043-05-23": "Vesak Day (estimated)", + "2043-05-24": "Vesak Day (estimated) [In lieu]", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2043-07-04": "Isra and Mi'raj* (*estimated)", - "2043-07-05": "Isra and Mi'raj* (*estimated) [In lieu]", - "2043-08-22": "Nuzul Al-Quran Day* (*estimated)", - "2043-08-23": "Nuzul Al-Quran Day* (*estimated) [In lieu]", + "2043-07-04": "Isra and Mi'raj (estimated)", + "2043-07-05": "Isra and Mi'raj (estimated) [In lieu]", + "2043-08-22": "Nuzul Al-Quran Day (estimated)", + "2043-08-23": "Nuzul Al-Quran Day (estimated) [In lieu]", "2043-08-31": "National Day", - "2043-09-04": "Hari Raya Puasa* (*estimated)", - "2043-09-05": "Second day of Hari Raya Puasa* (*estimated)", - "2043-09-06": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2043-09-04": "Hari Raya Puasa (estimated)", + "2043-09-05": "Second day of Hari Raya Puasa (estimated)", + "2043-09-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", "2043-11-01": "Deepavali [In lieu]", - "2043-11-11": "Arafat Day* (*estimated)", - "2043-11-12": "Hari Raya Haji* (*estimated)", - "2043-11-13": "Hari Raya Haji* (*estimated)", - "2043-12-03": "Awal Muharram (Hijri New Year)* (*estimated)", + "2043-11-11": "Arafat Day (estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", + "2043-11-13": "Hari Raya Haji (estimated)", + "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year Holiday* (*estimated)", - "2044-02-01": "Chinese New Year* (*estimated) [In lieu]", - "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year Holiday (estimated)", + "2044-02-01": "Chinese New Year (estimated) [In lieu]", + "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2044-04-26": "Birthday of the Sultan of Terengganu", "2044-05-01": "Labour Day", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2044-06-23": "Isra and Mi'raj* (*estimated)", - "2044-08-11": "Nuzul Al-Quran Day* (*estimated)", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-08-25": "Second day of Hari Raya Puasa* (*estimated)", + "2044-06-23": "Isra and Mi'raj (estimated)", + "2044-08-11": "Nuzul Al-Quran Day (estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-10-30": "Arafat Day* (*estimated)", - "2044-10-31": "Hari Raya Haji* (*estimated)", - "2044-11-01": "Hari Raya Haji* (*estimated)", + "2044-10-30": "Arafat Day (estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", + "2044-11-01": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", - "2044-11-21": "Awal Muharram (Hijri New Year)* (*estimated)", + "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year Holiday* (*estimated)", - "2045-02-19": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year Holiday (estimated)", + "2045-02-19": "Chinese New Year Holiday (estimated) [In lieu]", "2045-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2045-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", "2045-04-26": "Birthday of the Sultan of Terengganu", - "2045-05-01": "Labour Day; Vesak Day* (*estimated)", + "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2045-06-13": "Isra and Mi'raj* (*estimated)", - "2045-07-31": "Nuzul Al-Quran Day* (*estimated)", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-08-15": "Second day of Hari Raya Puasa* (*estimated)", + "2045-06-13": "Isra and Mi'raj (estimated)", + "2045-07-31": "Nuzul Al-Quran Day (estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", "2045-09-17": "Malaysia Day [In lieu]", - "2045-10-20": "Arafat Day* (*estimated)", - "2045-10-21": "Hari Raya Haji* (*estimated)", - "2045-10-22": "Hari Raya Haji* (*estimated)", - "2045-10-23": "Hari Raya Haji* (*estimated) [In lieu]", + "2045-10-20": "Arafat Day (estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", + "2045-10-22": "Hari Raya Haji (estimated)", + "2045-10-23": "Hari Raya Haji (estimated) [In lieu]", "2045-11-07": "Deepavali", - "2045-11-10": "Awal Muharram (Hijri New Year)* (*estimated)", + "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", - "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year Holiday* (*estimated)", + "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2046-04-26": "Birthday of the Sultan of Terengganu", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-06-02": "Isra and Mi'raj* (*estimated)", - "2046-06-03": "Isra and Mi'raj* (*estimated) [In lieu]", + "2046-05-20": "Vesak Day (estimated)", + "2046-06-02": "Isra and Mi'raj (estimated)", + "2046-06-03": "Isra and Mi'raj (estimated) [In lieu]", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2046-07-21": "Nuzul Al-Quran Day* (*estimated)", - "2046-07-22": "Nuzul Al-Quran Day* (*estimated) [In lieu]", - "2046-08-03": "Hari Raya Puasa* (*estimated)", - "2046-08-04": "Second day of Hari Raya Puasa* (*estimated)", - "2046-08-05": "Second day of Hari Raya Puasa* (*estimated) [In lieu]", + "2046-07-21": "Nuzul Al-Quran Day (estimated)", + "2046-07-22": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2046-08-03": "Hari Raya Puasa (estimated)", + "2046-08-04": "Second day of Hari Raya Puasa (estimated)", + "2046-08-05": "Second day of Hari Raya Puasa (estimated) [In lieu]", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-10-09": "Arafat Day* (*estimated)", - "2046-10-10": "Hari Raya Haji* (*estimated)", - "2046-10-11": "Hari Raya Haji* (*estimated)", + "2046-10-09": "Arafat Day (estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", + "2046-10-11": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-28": "Deepavali [In lieu]", - "2046-10-31": "Awal Muharram (Hijri New Year)* (*estimated)", + "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", - "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year Holiday* (*estimated)", - "2047-01-28": "Chinese New Year* (*estimated) [In lieu]", + "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year Holiday (estimated)", + "2047-01-28": "Chinese New Year (estimated) [In lieu]", "2047-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2047-04-26": "Birthday of the Sultan of Terengganu", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", - "2047-05-22": "Isra and Mi'raj* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", + "2047-05-22": "Isra and Mi'raj (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-07-10": "Nuzul Al-Quran Day* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", - "2047-07-25": "Second day of Hari Raya Puasa* (*estimated)", + "2047-07-10": "Nuzul Al-Quran Day (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", + "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", "2047-09-01": "National Day [In lieu]", "2047-09-16": "Malaysia Day", - "2047-09-29": "Arafat Day* (*estimated)", - "2047-09-30": "Hari Raya Haji* (*estimated)", - "2047-10-01": "Hari Raya Haji* (*estimated)", - "2047-10-20": "Awal Muharram (Hijri New Year)* (*estimated)", + "2047-09-29": "Arafat Day (estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", + "2047-10-01": "Hari Raya Haji (estimated)", + "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", - "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year Holiday* (*estimated)", - "2048-02-16": "Chinese New Year Holiday* (*estimated) [In lieu]", + "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year Holiday (estimated)", + "2048-02-16": "Chinese New Year Holiday (estimated) [In lieu]", "2048-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2048-04-26": "Birthday of the Sultan of Terengganu", "2048-05-01": "Labour Day", - "2048-05-10": "Isra and Mi'raj* (*estimated)", - "2048-05-27": "Vesak Day* (*estimated)", + "2048-05-10": "Isra and Mi'raj (estimated)", + "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2048-06-28": "Nuzul Al-Quran Day* (*estimated)", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Second day of Hari Raya Puasa* (*estimated)", + "2048-06-28": "Nuzul Al-Quran Day (estimated)", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Second day of Hari Raya Puasa (estimated)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", - "2048-09-18": "Arafat Day* (*estimated)", - "2048-09-19": "Hari Raya Haji* (*estimated)", - "2048-09-20": "Hari Raya Haji* (*estimated)", - "2048-09-21": "Hari Raya Haji* (*estimated) [In lieu]", - "2048-10-09": "Awal Muharram (Hijri New Year)* (*estimated)", + "2048-09-18": "Arafat Day (estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", + "2048-09-20": "Hari Raya Haji (estimated)", + "2048-09-21": "Hari Raya Haji (estimated) [In lieu]", + "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", - "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-12-25": "Christmas Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year Holiday* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2049-04-26": "Birthday of the Sultan of Terengganu", - "2049-04-29": "Isra and Mi'raj* (*estimated)", + "2049-04-29": "Isra and Mi'raj (estimated)", "2049-05-01": "Labour Day", "2049-05-02": "Labour Day [In lieu]", - "2049-05-16": "Vesak Day* (*estimated)", + "2049-05-16": "Vesak Day (estimated)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2049-06-18": "Nuzul Al-Quran Day* (*estimated)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", - "2049-07-02": "Second day of Hari Raya Puasa* (*estimated)", + "2049-06-18": "Nuzul Al-Quran Day (estimated)", + "2049-07-01": "Hari Raya Puasa (estimated)", + "2049-07-02": "Second day of Hari Raya Puasa (estimated)", "2049-08-31": "National Day", - "2049-09-07": "Arafat Day* (*estimated)", - "2049-09-08": "Hari Raya Haji* (*estimated)", - "2049-09-09": "Hari Raya Haji* (*estimated)", + "2049-09-07": "Arafat Day (estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", + "2049-09-09": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", - "2049-09-28": "Awal Muharram (Hijri New Year)* (*estimated)", + "2049-09-28": "Awal Muharram (Hijri New Year) (estimated)", "2049-10-25": "Deepavali", - "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", + "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", "2049-12-26": "Christmas Day [In lieu]", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year Holiday* (*estimated)", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year Holiday (estimated)", "2050-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2050-04-19": "Isra and Mi'raj* (*estimated)", + "2050-04-19": "Isra and Mi'raj (estimated)", "2050-04-26": "Birthday of the Sultan of Terengganu", "2050-05-01": "Labour Day", - "2050-05-05": "Vesak Day* (*estimated)", + "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2050-06-07": "Nuzul Al-Quran Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", - "2050-06-21": "Second day of Hari Raya Puasa* (*estimated)", - "2050-08-27": "Arafat Day* (*estimated)", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated)", - "2050-08-30": "Arafat Day* (*estimated) [In lieu]", + "2050-06-07": "Nuzul Al-Quran Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", + "2050-06-21": "Second day of Hari Raya Puasa (estimated)", + "2050-08-27": "Arafat Day (estimated)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated)", + "2050-08-30": "Arafat Day (estimated) [In lieu]", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", - "2050-09-17": "Awal Muharram (Hijri New Year)* (*estimated)", + "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-13": "Deepavali [In lieu]", - "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated)", - "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad)* (*estimated) [In lieu]", + "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", + "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/NG_COMMON.json b/snapshots/countries/NG_COMMON.json index 5b4c61ee5..85532769b 100644 --- a/snapshots/countries/NG_COMMON.json +++ b/snapshots/countries/NG_COMMON.json @@ -1,462 +1,462 @@ { "1979-01-01": "New Year's Day", - "1979-02-09": "Eid-el-Mawlid* (*estimated)", + "1979-02-09": "Eid-el-Mawlid (estimated)", "1979-04-13": "Good Friday", "1979-04-16": "Easter Monday", - "1979-08-23": "Eid-el-Fitr* (*estimated)", - "1979-08-24": "Eid-el-Fitr Holiday* (*estimated)", + "1979-08-23": "Eid-el-Fitr (estimated)", + "1979-08-24": "Eid-el-Fitr Holiday (estimated)", "1979-10-01": "Independence Day", - "1979-10-31": "Eid-el-Kabir* (*estimated)", - "1979-11-01": "Eid-el-Kabir Holiday* (*estimated)", + "1979-10-31": "Eid-el-Kabir (estimated)", + "1979-11-01": "Eid-el-Kabir Holiday (estimated)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Eid-el-Mawlid* (*estimated)", + "1980-01-30": "Eid-el-Mawlid (estimated)", "1980-04-04": "Good Friday", "1980-04-07": "Easter Monday", - "1980-08-12": "Eid-el-Fitr* (*estimated)", - "1980-08-13": "Eid-el-Fitr Holiday* (*estimated)", + "1980-08-12": "Eid-el-Fitr (estimated)", + "1980-08-13": "Eid-el-Fitr Holiday (estimated)", "1980-10-01": "Independence Day", - "1980-10-19": "Eid-el-Kabir* (*estimated)", - "1980-10-20": "Eid-el-Kabir Holiday* (*estimated)", + "1980-10-19": "Eid-el-Kabir (estimated)", + "1980-10-20": "Eid-el-Kabir Holiday (estimated)", "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Eid-el-Mawlid* (*estimated)", + "1981-01-18": "Eid-el-Mawlid (estimated)", "1981-04-17": "Good Friday", "1981-04-20": "Easter Monday", "1981-05-01": "Workers' Day", - "1981-08-01": "Eid-el-Fitr* (*estimated)", - "1981-08-02": "Eid-el-Fitr Holiday* (*estimated)", + "1981-08-01": "Eid-el-Fitr (estimated)", + "1981-08-02": "Eid-el-Fitr Holiday (estimated)", "1981-10-01": "Independence Day", - "1981-10-08": "Eid-el-Kabir* (*estimated)", - "1981-10-09": "Eid-el-Kabir Holiday* (*estimated)", + "1981-10-08": "Eid-el-Kabir (estimated)", + "1981-10-09": "Eid-el-Kabir Holiday (estimated)", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Eid-el-Mawlid* (*estimated)", + "1982-01-07": "Eid-el-Mawlid (estimated)", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", "1982-05-01": "Workers' Day", - "1982-07-21": "Eid-el-Fitr* (*estimated)", - "1982-07-22": "Eid-el-Fitr Holiday* (*estimated)", - "1982-09-27": "Eid-el-Kabir* (*estimated)", - "1982-09-28": "Eid-el-Kabir Holiday* (*estimated)", + "1982-07-21": "Eid-el-Fitr (estimated)", + "1982-07-22": "Eid-el-Fitr Holiday (estimated)", + "1982-09-27": "Eid-el-Kabir (estimated)", + "1982-09-28": "Eid-el-Kabir Holiday (estimated)", "1982-10-01": "Independence Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Eid-el-Mawlid* (*estimated)", + "1982-12-27": "Eid-el-Mawlid (estimated)", "1983-01-01": "New Year's Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-01": "Workers' Day", - "1983-07-11": "Eid-el-Fitr* (*estimated)", - "1983-07-12": "Eid-el-Fitr Holiday* (*estimated)", - "1983-09-17": "Eid-el-Kabir* (*estimated)", - "1983-09-18": "Eid-el-Kabir Holiday* (*estimated)", + "1983-07-11": "Eid-el-Fitr (estimated)", + "1983-07-12": "Eid-el-Fitr Holiday (estimated)", + "1983-09-17": "Eid-el-Kabir (estimated)", + "1983-09-18": "Eid-el-Kabir Holiday (estimated)", "1983-10-01": "Independence Day", - "1983-12-16": "Eid-el-Mawlid* (*estimated)", + "1983-12-16": "Eid-el-Mawlid (estimated)", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", "1984-01-01": "New Year's Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-01": "Workers' Day", - "1984-06-30": "Eid-el-Fitr* (*estimated)", - "1984-07-01": "Eid-el-Fitr Holiday* (*estimated)", - "1984-09-05": "Eid-el-Kabir* (*estimated)", - "1984-09-06": "Eid-el-Kabir Holiday* (*estimated)", + "1984-06-30": "Eid-el-Fitr (estimated)", + "1984-07-01": "Eid-el-Fitr Holiday (estimated)", + "1984-09-05": "Eid-el-Kabir (estimated)", + "1984-09-06": "Eid-el-Kabir Holiday (estimated)", "1984-10-01": "Independence Day", - "1984-12-04": "Eid-el-Mawlid* (*estimated)", + "1984-12-04": "Eid-el-Mawlid (estimated)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-04-05": "Good Friday", "1985-04-08": "Easter Monday", "1985-05-01": "Workers' Day", - "1985-06-19": "Eid-el-Fitr* (*estimated)", - "1985-06-20": "Eid-el-Fitr Holiday* (*estimated)", - "1985-08-26": "Eid-el-Kabir* (*estimated)", - "1985-08-27": "Eid-el-Kabir Holiday* (*estimated)", + "1985-06-19": "Eid-el-Fitr (estimated)", + "1985-06-20": "Eid-el-Fitr Holiday (estimated)", + "1985-08-26": "Eid-el-Kabir (estimated)", + "1985-08-27": "Eid-el-Kabir Holiday (estimated)", "1985-10-01": "Independence Day", - "1985-11-24": "Eid-el-Mawlid* (*estimated)", + "1985-11-24": "Eid-el-Mawlid (estimated)", "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", "1986-03-28": "Good Friday", "1986-03-31": "Easter Monday", "1986-05-01": "Workers' Day", - "1986-06-08": "Eid-el-Fitr* (*estimated)", - "1986-06-09": "Eid-el-Fitr Holiday* (*estimated)", - "1986-08-15": "Eid-el-Kabir* (*estimated)", - "1986-08-16": "Eid-el-Kabir Holiday* (*estimated)", + "1986-06-08": "Eid-el-Fitr (estimated)", + "1986-06-09": "Eid-el-Fitr Holiday (estimated)", + "1986-08-15": "Eid-el-Kabir (estimated)", + "1986-08-16": "Eid-el-Kabir Holiday (estimated)", "1986-10-01": "Independence Day", - "1986-11-14": "Eid-el-Mawlid* (*estimated)", + "1986-11-14": "Eid-el-Mawlid (estimated)", "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1987-01-01": "New Year's Day", "1987-04-17": "Good Friday", "1987-04-20": "Easter Monday", "1987-05-01": "Workers' Day", - "1987-05-28": "Eid-el-Fitr* (*estimated)", - "1987-05-29": "Eid-el-Fitr Holiday* (*estimated)", - "1987-08-04": "Eid-el-Kabir* (*estimated)", - "1987-08-05": "Eid-el-Kabir Holiday* (*estimated)", + "1987-05-28": "Eid-el-Fitr (estimated)", + "1987-05-29": "Eid-el-Fitr Holiday (estimated)", + "1987-08-04": "Eid-el-Kabir (estimated)", + "1987-08-05": "Eid-el-Kabir Holiday (estimated)", "1987-10-01": "Independence Day", - "1987-11-03": "Eid-el-Mawlid* (*estimated)", + "1987-11-03": "Eid-el-Mawlid (estimated)", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", "1988-05-01": "Workers' Day", - "1988-05-16": "Eid-el-Fitr* (*estimated)", - "1988-05-17": "Eid-el-Fitr Holiday* (*estimated)", - "1988-07-23": "Eid-el-Kabir* (*estimated)", - "1988-07-24": "Eid-el-Kabir Holiday* (*estimated)", + "1988-05-16": "Eid-el-Fitr (estimated)", + "1988-05-17": "Eid-el-Fitr Holiday (estimated)", + "1988-07-23": "Eid-el-Kabir (estimated)", + "1988-07-24": "Eid-el-Kabir Holiday (estimated)", "1988-10-01": "Independence Day", - "1988-10-22": "Eid-el-Mawlid* (*estimated)", + "1988-10-22": "Eid-el-Mawlid (estimated)", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", "1989-01-01": "New Year's Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-01": "Workers' Day", - "1989-05-06": "Eid-el-Fitr* (*estimated)", - "1989-05-07": "Eid-el-Fitr Holiday* (*estimated)", - "1989-07-13": "Eid-el-Kabir* (*estimated)", - "1989-07-14": "Eid-el-Kabir Holiday* (*estimated)", + "1989-05-06": "Eid-el-Fitr (estimated)", + "1989-05-07": "Eid-el-Fitr Holiday (estimated)", + "1989-07-13": "Eid-el-Kabir (estimated)", + "1989-07-14": "Eid-el-Kabir Holiday (estimated)", "1989-10-01": "Independence Day", - "1989-10-11": "Eid-el-Mawlid* (*estimated)", + "1989-10-11": "Eid-el-Mawlid (estimated)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-04-16": "Easter Monday", - "1990-04-26": "Eid-el-Fitr* (*estimated)", - "1990-04-27": "Eid-el-Fitr Holiday* (*estimated)", + "1990-04-26": "Eid-el-Fitr (estimated)", + "1990-04-27": "Eid-el-Fitr Holiday (estimated)", "1990-05-01": "Workers' Day", - "1990-07-02": "Eid-el-Kabir* (*estimated)", - "1990-07-03": "Eid-el-Kabir Holiday* (*estimated)", - "1990-10-01": "Eid-el-Mawlid* (*estimated); Independence Day", + "1990-07-02": "Eid-el-Kabir (estimated)", + "1990-07-03": "Eid-el-Kabir Holiday (estimated)", + "1990-10-01": "Eid-el-Mawlid (estimated); Independence Day", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-03-29": "Good Friday", "1991-04-01": "Easter Monday", - "1991-04-15": "Eid-el-Fitr* (*estimated)", - "1991-04-16": "Eid-el-Fitr Holiday* (*estimated)", + "1991-04-15": "Eid-el-Fitr (estimated)", + "1991-04-16": "Eid-el-Fitr Holiday (estimated)", "1991-05-01": "Workers' Day", - "1991-06-22": "Eid-el-Kabir* (*estimated)", - "1991-06-23": "Eid-el-Kabir Holiday* (*estimated)", - "1991-09-20": "Eid-el-Mawlid* (*estimated)", + "1991-06-22": "Eid-el-Kabir (estimated)", + "1991-06-23": "Eid-el-Kabir Holiday (estimated)", + "1991-09-20": "Eid-el-Mawlid (estimated)", "1991-10-01": "Independence Day", "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", - "1992-04-04": "Eid-el-Fitr* (*estimated)", - "1992-04-05": "Eid-el-Fitr Holiday* (*estimated)", + "1992-04-04": "Eid-el-Fitr (estimated)", + "1992-04-05": "Eid-el-Fitr Holiday (estimated)", "1992-04-17": "Good Friday", "1992-04-20": "Easter Monday", "1992-05-01": "Workers' Day", - "1992-06-11": "Eid-el-Kabir* (*estimated)", - "1992-06-12": "Eid-el-Kabir Holiday* (*estimated)", - "1992-09-09": "Eid-el-Mawlid* (*estimated)", + "1992-06-11": "Eid-el-Kabir (estimated)", + "1992-06-12": "Eid-el-Kabir Holiday (estimated)", + "1992-09-09": "Eid-el-Mawlid (estimated)", "1992-10-01": "Independence Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1993-01-01": "New Year's Day", - "1993-03-24": "Eid-el-Fitr* (*estimated)", - "1993-03-25": "Eid-el-Fitr Holiday* (*estimated)", + "1993-03-24": "Eid-el-Fitr (estimated)", + "1993-03-25": "Eid-el-Fitr Holiday (estimated)", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", "1993-05-01": "Workers' Day", - "1993-05-31": "Eid-el-Kabir* (*estimated)", - "1993-06-01": "Eid-el-Kabir Holiday* (*estimated)", - "1993-08-29": "Eid-el-Mawlid* (*estimated)", + "1993-05-31": "Eid-el-Kabir (estimated)", + "1993-06-01": "Eid-el-Kabir Holiday (estimated)", + "1993-08-29": "Eid-el-Mawlid (estimated)", "1993-10-01": "Independence Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", "1994-01-01": "New Year's Day", - "1994-03-13": "Eid-el-Fitr* (*estimated)", - "1994-03-14": "Eid-el-Fitr Holiday* (*estimated)", + "1994-03-13": "Eid-el-Fitr (estimated)", + "1994-03-14": "Eid-el-Fitr Holiday (estimated)", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-01": "Workers' Day", - "1994-05-20": "Eid-el-Kabir* (*estimated)", - "1994-05-21": "Eid-el-Kabir Holiday* (*estimated)", - "1994-08-19": "Eid-el-Mawlid* (*estimated)", + "1994-05-20": "Eid-el-Kabir (estimated)", + "1994-05-21": "Eid-el-Kabir Holiday (estimated)", + "1994-08-19": "Eid-el-Mawlid (estimated)", "1994-10-01": "Independence Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1995-01-01": "New Year's Day", - "1995-03-02": "Eid-el-Fitr* (*estimated)", - "1995-03-03": "Eid-el-Fitr Holiday* (*estimated)", + "1995-03-02": "Eid-el-Fitr (estimated)", + "1995-03-03": "Eid-el-Fitr Holiday (estimated)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-01": "Workers' Day", - "1995-05-09": "Eid-el-Kabir* (*estimated)", - "1995-05-10": "Eid-el-Kabir Holiday* (*estimated)", - "1995-08-08": "Eid-el-Mawlid* (*estimated)", + "1995-05-09": "Eid-el-Kabir (estimated)", + "1995-05-10": "Eid-el-Kabir Holiday (estimated)", + "1995-08-08": "Eid-el-Mawlid (estimated)", "1995-10-01": "Independence Day", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Eid-el-Fitr* (*estimated)", - "1996-02-20": "Eid-el-Fitr Holiday* (*estimated)", + "1996-02-19": "Eid-el-Fitr (estimated)", + "1996-02-20": "Eid-el-Fitr Holiday (estimated)", "1996-04-05": "Good Friday", "1996-04-08": "Easter Monday", - "1996-04-27": "Eid-el-Kabir* (*estimated)", - "1996-04-28": "Eid-el-Kabir Holiday* (*estimated)", + "1996-04-27": "Eid-el-Kabir (estimated)", + "1996-04-28": "Eid-el-Kabir Holiday (estimated)", "1996-05-01": "Workers' Day", - "1996-07-27": "Eid-el-Mawlid* (*estimated)", + "1996-07-27": "Eid-el-Mawlid (estimated)", "1996-10-01": "Independence Day", "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid-el-Fitr* (*estimated)", - "1997-02-09": "Eid-el-Fitr Holiday* (*estimated)", + "1997-02-08": "Eid-el-Fitr (estimated)", + "1997-02-09": "Eid-el-Fitr Holiday (estimated)", "1997-03-28": "Good Friday", "1997-03-31": "Easter Monday", - "1997-04-17": "Eid-el-Kabir* (*estimated)", - "1997-04-18": "Eid-el-Kabir Holiday* (*estimated)", + "1997-04-17": "Eid-el-Kabir (estimated)", + "1997-04-18": "Eid-el-Kabir Holiday (estimated)", "1997-05-01": "Workers' Day", - "1997-07-16": "Eid-el-Mawlid* (*estimated)", + "1997-07-16": "Eid-el-Mawlid (estimated)", "1997-10-01": "Independence Day", "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid-el-Fitr* (*estimated)", - "1998-01-30": "Eid-el-Fitr Holiday* (*estimated)", - "1998-04-07": "Eid-el-Kabir* (*estimated)", - "1998-04-08": "Eid-el-Kabir Holiday* (*estimated)", + "1998-01-29": "Eid-el-Fitr (estimated)", + "1998-01-30": "Eid-el-Fitr Holiday (estimated)", + "1998-04-07": "Eid-el-Kabir (estimated)", + "1998-04-08": "Eid-el-Kabir Holiday (estimated)", "1998-04-10": "Good Friday", "1998-04-13": "Easter Monday", "1998-05-01": "Workers' Day", - "1998-07-06": "Eid-el-Mawlid* (*estimated)", + "1998-07-06": "Eid-el-Mawlid (estimated)", "1998-10-01": "Independence Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid-el-Fitr* (*estimated)", - "1999-01-19": "Eid-el-Fitr Holiday* (*estimated)", - "1999-03-27": "Eid-el-Kabir* (*estimated)", - "1999-03-28": "Eid-el-Kabir Holiday* (*estimated)", + "1999-01-18": "Eid-el-Fitr (estimated)", + "1999-01-19": "Eid-el-Fitr Holiday (estimated)", + "1999-03-27": "Eid-el-Kabir (estimated)", + "1999-03-28": "Eid-el-Kabir Holiday (estimated)", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", "1999-05-01": "Workers' Day", - "1999-06-26": "Eid-el-Mawlid* (*estimated)", + "1999-06-26": "Eid-el-Mawlid (estimated)", "1999-10-01": "Independence Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid-el-Fitr* (*estimated)", - "2000-01-09": "Eid-el-Fitr Holiday* (*estimated)", - "2000-03-16": "Eid-el-Kabir* (*estimated)", - "2000-03-17": "Eid-el-Kabir Holiday* (*estimated)", + "2000-01-08": "Eid-el-Fitr (estimated)", + "2000-01-09": "Eid-el-Fitr Holiday (estimated)", + "2000-03-16": "Eid-el-Kabir (estimated)", + "2000-03-17": "Eid-el-Kabir Holiday (estimated)", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-01": "Workers' Day", "2000-05-29": "Democracy Day", - "2000-06-14": "Eid-el-Mawlid* (*estimated)", + "2000-06-14": "Eid-el-Mawlid (estimated)", "2000-10-01": "Independence Day", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", - "2000-12-27": "Eid-el-Fitr* (*estimated)", - "2000-12-28": "Eid-el-Fitr Holiday* (*estimated)", + "2000-12-27": "Eid-el-Fitr (estimated)", + "2000-12-28": "Eid-el-Fitr Holiday (estimated)", "2001-01-01": "New Year's Day", - "2001-03-05": "Eid-el-Kabir* (*estimated)", - "2001-03-06": "Eid-el-Kabir Holiday* (*estimated)", + "2001-03-05": "Eid-el-Kabir (estimated)", + "2001-03-06": "Eid-el-Kabir Holiday (estimated)", "2001-04-13": "Good Friday", "2001-04-16": "Easter Monday", "2001-05-01": "Workers' Day", "2001-05-29": "Democracy Day", - "2001-06-04": "Eid-el-Mawlid* (*estimated)", + "2001-06-04": "Eid-el-Mawlid (estimated)", "2001-10-01": "Independence Day", - "2001-12-16": "Eid-el-Fitr* (*estimated)", - "2001-12-17": "Eid-el-Fitr Holiday* (*estimated)", + "2001-12-16": "Eid-el-Fitr (estimated)", + "2001-12-17": "Eid-el-Fitr Holiday (estimated)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", - "2002-02-22": "Eid-el-Kabir* (*estimated)", - "2002-02-23": "Eid-el-Kabir Holiday* (*estimated)", + "2002-02-22": "Eid-el-Kabir (estimated)", + "2002-02-23": "Eid-el-Kabir Holiday (estimated)", "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", "2002-05-01": "Workers' Day", - "2002-05-24": "Eid-el-Mawlid* (*estimated)", + "2002-05-24": "Eid-el-Mawlid (estimated)", "2002-05-29": "Democracy Day", "2002-10-01": "Independence Day", - "2002-12-05": "Eid-el-Fitr* (*estimated)", - "2002-12-06": "Eid-el-Fitr Holiday* (*estimated)", + "2002-12-05": "Eid-el-Fitr (estimated)", + "2002-12-06": "Eid-el-Fitr Holiday (estimated)", "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", - "2003-02-11": "Eid-el-Kabir* (*estimated)", - "2003-02-12": "Eid-el-Kabir Holiday* (*estimated)", + "2003-02-11": "Eid-el-Kabir (estimated)", + "2003-02-12": "Eid-el-Kabir Holiday (estimated)", "2003-04-18": "Good Friday", "2003-04-21": "Easter Monday", "2003-05-01": "Workers' Day", - "2003-05-13": "Eid-el-Mawlid* (*estimated)", + "2003-05-13": "Eid-el-Mawlid (estimated)", "2003-05-29": "Democracy Day", "2003-10-01": "Independence Day", - "2003-11-25": "Eid-el-Fitr* (*estimated)", - "2003-11-26": "Eid-el-Fitr Holiday* (*estimated)", + "2003-11-25": "Eid-el-Fitr (estimated)", + "2003-11-26": "Eid-el-Fitr Holiday (estimated)", "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2004-01-01": "New Year's Day", - "2004-02-01": "Eid-el-Kabir* (*estimated)", - "2004-02-02": "Eid-el-Kabir Holiday* (*estimated)", + "2004-02-01": "Eid-el-Kabir (estimated)", + "2004-02-02": "Eid-el-Kabir Holiday (estimated)", "2004-04-09": "Good Friday", "2004-04-12": "Easter Monday", - "2004-05-01": "Eid-el-Mawlid* (*estimated); Workers' Day", + "2004-05-01": "Eid-el-Mawlid (estimated); Workers' Day", "2004-05-29": "Democracy Day", "2004-10-01": "Independence Day", - "2004-11-14": "Eid-el-Fitr* (*estimated)", - "2004-11-15": "Eid-el-Fitr Holiday* (*estimated)", + "2004-11-14": "Eid-el-Fitr (estimated)", + "2004-11-15": "Eid-el-Fitr Holiday (estimated)", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2005-01-01": "New Year's Day", - "2005-01-21": "Eid-el-Kabir* (*estimated)", - "2005-01-22": "Eid-el-Kabir Holiday* (*estimated)", + "2005-01-21": "Eid-el-Kabir (estimated)", + "2005-01-22": "Eid-el-Kabir Holiday (estimated)", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", - "2005-04-21": "Eid-el-Mawlid* (*estimated)", + "2005-04-21": "Eid-el-Mawlid (estimated)", "2005-05-01": "Workers' Day", "2005-05-29": "Democracy Day", "2005-10-01": "Independence Day", - "2005-11-03": "Eid-el-Fitr* (*estimated)", - "2005-11-04": "Eid-el-Fitr Holiday* (*estimated)", + "2005-11-03": "Eid-el-Fitr (estimated)", + "2005-11-04": "Eid-el-Fitr Holiday (estimated)", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2006-01-01": "New Year's Day", - "2006-01-10": "Eid-el-Kabir* (*estimated)", - "2006-01-11": "Eid-el-Kabir Holiday* (*estimated)", - "2006-04-10": "Eid-el-Mawlid* (*estimated)", + "2006-01-10": "Eid-el-Kabir (estimated)", + "2006-01-11": "Eid-el-Kabir Holiday (estimated)", + "2006-04-10": "Eid-el-Mawlid (estimated)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-01": "Workers' Day", "2006-05-29": "Democracy Day", "2006-10-01": "Independence Day", - "2006-10-23": "Eid-el-Fitr* (*estimated)", - "2006-10-24": "Eid-el-Fitr Holiday* (*estimated)", + "2006-10-23": "Eid-el-Fitr (estimated)", + "2006-10-24": "Eid-el-Fitr Holiday (estimated)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", - "2006-12-31": "Eid-el-Kabir* (*estimated)", - "2007-01-01": "Eid-el-Kabir Holiday* (*estimated); New Year's Day", - "2007-03-31": "Eid-el-Mawlid* (*estimated)", + "2006-12-31": "Eid-el-Kabir (estimated)", + "2007-01-01": "Eid-el-Kabir Holiday (estimated); New Year's Day", + "2007-03-31": "Eid-el-Mawlid (estimated)", "2007-04-06": "Good Friday", "2007-04-09": "Easter Monday", "2007-05-01": "Workers' Day", "2007-05-29": "Democracy Day", "2007-10-01": "Independence Day", - "2007-10-13": "Eid-el-Fitr* (*estimated)", - "2007-10-14": "Eid-el-Fitr Holiday* (*estimated)", - "2007-12-20": "Eid-el-Kabir* (*estimated)", - "2007-12-21": "Eid-el-Kabir Holiday* (*estimated)", + "2007-10-13": "Eid-el-Fitr (estimated)", + "2007-10-14": "Eid-el-Fitr Holiday (estimated)", + "2007-12-20": "Eid-el-Kabir (estimated)", + "2007-12-21": "Eid-el-Kabir Holiday (estimated)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", - "2008-03-20": "Eid-el-Mawlid* (*estimated)", + "2008-03-20": "Eid-el-Mawlid (estimated)", "2008-03-21": "Good Friday", "2008-03-24": "Easter Monday", "2008-05-01": "Workers' Day", "2008-05-29": "Democracy Day", - "2008-10-01": "Eid-el-Fitr* (*estimated); Independence Day", - "2008-10-02": "Eid-el-Fitr Holiday* (*estimated)", - "2008-12-08": "Eid-el-Kabir* (*estimated)", - "2008-12-09": "Eid-el-Kabir Holiday* (*estimated)", + "2008-10-01": "Eid-el-Fitr (estimated); Independence Day", + "2008-10-02": "Eid-el-Fitr Holiday (estimated)", + "2008-12-08": "Eid-el-Kabir (estimated)", + "2008-12-09": "Eid-el-Kabir Holiday (estimated)", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2009-01-01": "New Year's Day", - "2009-03-09": "Eid-el-Mawlid* (*estimated)", + "2009-03-09": "Eid-el-Mawlid (estimated)", "2009-04-10": "Good Friday", "2009-04-13": "Easter Monday", "2009-05-01": "Workers' Day", "2009-05-29": "Democracy Day", - "2009-09-20": "Eid-el-Fitr* (*estimated)", - "2009-09-21": "Eid-el-Fitr Holiday* (*estimated)", + "2009-09-20": "Eid-el-Fitr (estimated)", + "2009-09-21": "Eid-el-Fitr Holiday (estimated)", "2009-10-01": "Independence Day", - "2009-11-27": "Eid-el-Kabir* (*estimated)", - "2009-11-28": "Eid-el-Kabir Holiday* (*estimated)", + "2009-11-27": "Eid-el-Kabir (estimated)", + "2009-11-28": "Eid-el-Kabir Holiday (estimated)", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2010-01-01": "New Year's Day", - "2010-02-26": "Eid-el-Mawlid* (*estimated)", + "2010-02-26": "Eid-el-Mawlid (estimated)", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", "2010-05-01": "Workers' Day", "2010-05-29": "Democracy Day", - "2010-09-10": "Eid-el-Fitr* (*estimated)", - "2010-09-11": "Eid-el-Fitr Holiday* (*estimated)", + "2010-09-10": "Eid-el-Fitr (estimated)", + "2010-09-11": "Eid-el-Fitr Holiday (estimated)", "2010-10-01": "Independence Day", - "2010-11-16": "Eid-el-Kabir* (*estimated)", - "2010-11-17": "Eid-el-Kabir Holiday* (*estimated)", + "2010-11-16": "Eid-el-Kabir (estimated)", + "2010-11-17": "Eid-el-Kabir Holiday (estimated)", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2011-01-01": "New Year's Day", - "2011-02-15": "Eid-el-Mawlid* (*estimated)", + "2011-02-15": "Eid-el-Mawlid (estimated)", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-05-01": "Workers' Day", "2011-05-29": "Democracy Day", - "2011-08-30": "Eid-el-Fitr* (*estimated)", - "2011-08-31": "Eid-el-Fitr Holiday* (*estimated)", + "2011-08-30": "Eid-el-Fitr (estimated)", + "2011-08-31": "Eid-el-Fitr Holiday (estimated)", "2011-10-01": "Independence Day", - "2011-11-06": "Eid-el-Kabir* (*estimated)", - "2011-11-07": "Eid-el-Kabir Holiday* (*estimated)", + "2011-11-06": "Eid-el-Kabir (estimated)", + "2011-11-07": "Eid-el-Kabir Holiday (estimated)", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2012-01-01": "New Year's Day", - "2012-02-04": "Eid-el-Mawlid* (*estimated)", + "2012-02-04": "Eid-el-Mawlid (estimated)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-01": "Workers' Day", "2012-05-29": "Democracy Day", - "2012-08-19": "Eid-el-Fitr* (*estimated)", - "2012-08-20": "Eid-el-Fitr Holiday* (*estimated)", + "2012-08-19": "Eid-el-Fitr (estimated)", + "2012-08-20": "Eid-el-Fitr Holiday (estimated)", "2012-10-01": "Independence Day", - "2012-10-26": "Eid-el-Kabir* (*estimated)", - "2012-10-27": "Eid-el-Kabir Holiday* (*estimated)", + "2012-10-26": "Eid-el-Kabir (estimated)", + "2012-10-27": "Eid-el-Kabir Holiday (estimated)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", - "2013-01-24": "Eid-el-Mawlid* (*estimated)", + "2013-01-24": "Eid-el-Mawlid (estimated)", "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", "2013-05-01": "Workers' Day", "2013-05-29": "Democracy Day", - "2013-08-08": "Eid-el-Fitr* (*estimated)", - "2013-08-09": "Eid-el-Fitr Holiday* (*estimated)", + "2013-08-08": "Eid-el-Fitr (estimated)", + "2013-08-09": "Eid-el-Fitr Holiday (estimated)", "2013-10-01": "Independence Day", - "2013-10-15": "Eid-el-Kabir* (*estimated)", - "2013-10-16": "Eid-el-Kabir Holiday* (*estimated)", + "2013-10-15": "Eid-el-Kabir (estimated)", + "2013-10-16": "Eid-el-Kabir Holiday (estimated)", "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", - "2014-01-13": "Eid-el-Mawlid* (*estimated)", + "2014-01-13": "Eid-el-Mawlid (estimated)", "2014-04-18": "Good Friday", "2014-04-21": "Easter Monday", "2014-05-01": "Workers' Day", "2014-05-29": "Democracy Day", - "2014-07-28": "Eid-el-Fitr* (*estimated)", - "2014-07-29": "Eid-el-Fitr Holiday* (*estimated)", + "2014-07-28": "Eid-el-Fitr (estimated)", + "2014-07-29": "Eid-el-Fitr Holiday (estimated)", "2014-10-01": "Independence Day", - "2014-10-04": "Eid-el-Kabir* (*estimated)", - "2014-10-05": "Eid-el-Kabir Holiday* (*estimated)", + "2014-10-04": "Eid-el-Kabir (estimated)", + "2014-10-05": "Eid-el-Kabir Holiday (estimated)", "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2015-01-01": "New Year's Day", - "2015-01-03": "Eid-el-Mawlid* (*estimated)", + "2015-01-03": "Eid-el-Mawlid (estimated)", "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-05-01": "Workers' Day", "2015-05-29": "Democracy Day", - "2015-07-17": "Eid-el-Fitr* (*estimated)", - "2015-07-18": "Eid-el-Fitr Holiday* (*estimated)", - "2015-09-23": "Eid-el-Kabir* (*estimated)", - "2015-09-24": "Eid-el-Kabir Holiday* (*estimated)", + "2015-07-17": "Eid-el-Fitr (estimated)", + "2015-07-18": "Eid-el-Fitr Holiday (estimated)", + "2015-09-23": "Eid-el-Kabir (estimated)", + "2015-09-24": "Eid-el-Kabir Holiday (estimated)", "2015-10-01": "Independence Day", - "2015-12-23": "Eid-el-Mawlid* (*estimated)", + "2015-12-23": "Eid-el-Mawlid (estimated)", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2016-01-01": "New Year's Day", @@ -466,15 +466,15 @@ "2016-05-02": "Workers' Day (Observed)", "2016-05-29": "Democracy Day", "2016-05-30": "Democracy Day (Observed)", - "2016-07-06": "Eid-el-Fitr* (*estimated)", - "2016-07-07": "Eid-el-Fitr Holiday* (*estimated)", - "2016-09-11": "Eid-el-Kabir* (*estimated)", - "2016-09-12": "Eid-el-Kabir Holiday* (*estimated)", - "2016-09-13": "Eid-el-Kabir* (*estimated) (Observed)", + "2016-07-06": "Eid-el-Fitr (estimated)", + "2016-07-07": "Eid-el-Fitr Holiday (estimated)", + "2016-09-11": "Eid-el-Kabir (estimated)", + "2016-09-12": "Eid-el-Kabir Holiday (estimated)", + "2016-09-13": "Eid-el-Kabir (estimated) (Observed)", "2016-10-01": "Independence Day", "2016-10-03": "Independence Day (Observed)", - "2016-12-11": "Eid-el-Mawlid* (*estimated)", - "2016-12-12": "Eid-el-Mawlid* (*estimated) (Observed)", + "2016-12-11": "Eid-el-Mawlid (estimated)", + "2016-12-12": "Eid-el-Mawlid (estimated) (Observed)", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2016-12-27": "Christmas Day (Observed)", @@ -484,15 +484,15 @@ "2017-04-17": "Easter Monday", "2017-05-01": "Workers' Day", "2017-05-29": "Democracy Day", - "2017-06-25": "Eid-el-Fitr* (*estimated)", - "2017-06-26": "Eid-el-Fitr Holiday* (*estimated)", - "2017-06-27": "Eid-el-Fitr* (*estimated) (Observed)", - "2017-09-01": "Eid-el-Kabir* (*estimated)", - "2017-09-02": "Eid-el-Kabir Holiday* (*estimated)", - "2017-09-04": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2017-06-25": "Eid-el-Fitr (estimated)", + "2017-06-26": "Eid-el-Fitr Holiday (estimated)", + "2017-06-27": "Eid-el-Fitr (estimated) (Observed)", + "2017-09-01": "Eid-el-Kabir (estimated)", + "2017-09-02": "Eid-el-Kabir Holiday (estimated)", + "2017-09-04": "Eid-el-Kabir Holiday (estimated) (Observed)", "2017-10-01": "Independence Day", "2017-10-02": "Independence Day (Observed)", - "2017-11-30": "Eid-el-Mawlid* (*estimated)", + "2017-11-30": "Eid-el-Mawlid (estimated)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -500,13 +500,13 @@ "2018-04-02": "Easter Monday", "2018-05-01": "Workers' Day", "2018-05-29": "Democracy Day", - "2018-06-15": "Eid-el-Fitr* (*estimated)", - "2018-06-16": "Eid-el-Fitr Holiday* (*estimated)", - "2018-06-18": "Eid-el-Fitr Holiday* (*estimated) (Observed)", - "2018-08-21": "Eid-el-Kabir* (*estimated)", - "2018-08-22": "Eid-el-Kabir Holiday* (*estimated)", + "2018-06-15": "Eid-el-Fitr (estimated)", + "2018-06-16": "Eid-el-Fitr Holiday (estimated)", + "2018-06-18": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2018-08-21": "Eid-el-Kabir (estimated)", + "2018-08-22": "Eid-el-Kabir Holiday (estimated)", "2018-10-01": "Independence Day", - "2018-11-20": "Eid-el-Mawlid* (*estimated)", + "2018-11-20": "Eid-el-Mawlid (estimated)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -515,30 +515,30 @@ "2019-04-22": "Easter Monday", "2019-05-01": "Workers' Day", "2019-05-29": "Presidential Inauguration Day", - "2019-06-04": "Eid-el-Fitr* (*estimated)", - "2019-06-05": "Eid-el-Fitr Holiday* (*estimated)", + "2019-06-04": "Eid-el-Fitr (estimated)", + "2019-06-05": "Eid-el-Fitr Holiday (estimated)", "2019-06-12": "Democracy Day", - "2019-08-11": "Eid-el-Kabir* (*estimated)", - "2019-08-12": "Eid-el-Kabir Holiday* (*estimated)", - "2019-08-13": "Eid-el-Kabir* (*estimated) (Observed)", + "2019-08-11": "Eid-el-Kabir (estimated)", + "2019-08-12": "Eid-el-Kabir Holiday (estimated)", + "2019-08-13": "Eid-el-Kabir (estimated) (Observed)", "2019-10-01": "Independence Day", - "2019-11-09": "Eid-el-Mawlid* (*estimated)", - "2019-11-11": "Eid-el-Mawlid* (*estimated) (Observed)", + "2019-11-09": "Eid-el-Mawlid (estimated)", + "2019-11-11": "Eid-el-Mawlid (estimated) (Observed)", "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-05-01": "Workers' Day", - "2020-05-24": "Eid-el-Fitr* (*estimated)", - "2020-05-25": "Eid-el-Fitr Holiday* (*estimated)", - "2020-05-26": "Eid-el-Fitr* (*estimated) (Observed)", + "2020-05-24": "Eid-el-Fitr (estimated)", + "2020-05-25": "Eid-el-Fitr Holiday (estimated)", + "2020-05-26": "Eid-el-Fitr (estimated) (Observed)", "2020-06-12": "Democracy Day", - "2020-07-31": "Eid-el-Kabir* (*estimated)", - "2020-08-01": "Eid-el-Kabir Holiday* (*estimated)", - "2020-08-03": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2020-07-31": "Eid-el-Kabir (estimated)", + "2020-08-01": "Eid-el-Kabir Holiday (estimated)", + "2020-08-03": "Eid-el-Kabir Holiday (estimated) (Observed)", "2020-10-01": "Independence Day", - "2020-10-29": "Eid-el-Mawlid* (*estimated)", + "2020-10-29": "Eid-el-Mawlid (estimated)", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2020-12-28": "Boxing Day (Observed)", @@ -547,14 +547,14 @@ "2021-04-05": "Easter Monday", "2021-05-01": "Workers' Day", "2021-05-03": "Workers' Day (Observed)", - "2021-05-13": "Eid-el-Fitr* (*estimated)", - "2021-05-14": "Eid-el-Fitr Holiday* (*estimated)", + "2021-05-13": "Eid-el-Fitr (estimated)", + "2021-05-14": "Eid-el-Fitr Holiday (estimated)", "2021-06-12": "Democracy Day", "2021-06-14": "Democracy Day (Observed)", - "2021-07-20": "Eid-el-Kabir* (*estimated)", - "2021-07-21": "Eid-el-Kabir Holiday* (*estimated)", + "2021-07-20": "Eid-el-Kabir (estimated)", + "2021-07-21": "Eid-el-Kabir Holiday (estimated)", "2021-10-01": "Independence Day", - "2021-10-18": "Eid-el-Mawlid* (*estimated)", + "2021-10-18": "Eid-el-Mawlid (estimated)", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", "2021-12-27": "Christmas Day (Observed)", @@ -564,19 +564,19 @@ "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-01": "Workers' Day", - "2022-05-02": "Eid-el-Fitr* (*estimated)", - "2022-05-03": "Eid-el-Fitr Holiday* (*estimated)", + "2022-05-02": "Eid-el-Fitr (estimated)", + "2022-05-03": "Eid-el-Fitr Holiday (estimated)", "2022-05-04": "Workers' Day (Observed)", "2022-06-12": "Democracy Day", "2022-06-13": "Democracy Day (Observed)", - "2022-07-09": "Eid-el-Kabir* (*estimated)", - "2022-07-10": "Eid-el-Kabir Holiday* (*estimated)", - "2022-07-11": "Eid-el-Kabir* (*estimated) (Observed)", - "2022-07-12": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2022-07-09": "Eid-el-Kabir (estimated)", + "2022-07-10": "Eid-el-Kabir Holiday (estimated)", + "2022-07-11": "Eid-el-Kabir (estimated) (Observed)", + "2022-07-12": "Eid-el-Kabir Holiday (estimated) (Observed)", "2022-10-01": "Independence Day", "2022-10-03": "Independence Day (Observed)", - "2022-10-08": "Eid-el-Mawlid* (*estimated)", - "2022-10-10": "Eid-el-Mawlid* (*estimated) (Observed)", + "2022-10-08": "Eid-el-Mawlid (estimated)", + "2022-10-10": "Eid-el-Mawlid (estimated) (Observed)", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2022-12-27": "Christmas Day (Observed)", @@ -584,14 +584,14 @@ "2023-01-02": "New Year's Day (Observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", - "2023-04-21": "Eid-el-Fitr* (*estimated)", - "2023-04-22": "Eid-el-Fitr Holiday* (*estimated)", - "2023-04-24": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2023-04-21": "Eid-el-Fitr (estimated)", + "2023-04-22": "Eid-el-Fitr Holiday (estimated)", + "2023-04-24": "Eid-el-Fitr Holiday (estimated) (Observed)", "2023-05-01": "Workers' Day", "2023-06-12": "Democracy Day", - "2023-06-28": "Eid-el-Kabir* (*estimated)", - "2023-06-29": "Eid-el-Kabir Holiday* (*estimated)", - "2023-09-27": "Eid-el-Mawlid* (*estimated)", + "2023-06-28": "Eid-el-Kabir (estimated)", + "2023-06-29": "Eid-el-Kabir Holiday (estimated)", + "2023-09-27": "Eid-el-Mawlid (estimated)", "2023-10-01": "Independence Day", "2023-10-02": "Independence Day (Observed)", "2023-12-25": "Christmas Day", @@ -599,62 +599,62 @@ "2024-01-01": "New Year's Day", "2024-03-29": "Good Friday", "2024-04-01": "Easter Monday", - "2024-04-10": "Eid-el-Fitr* (*estimated)", - "2024-04-11": "Eid-el-Fitr Holiday* (*estimated)", + "2024-04-10": "Eid-el-Fitr (estimated)", + "2024-04-11": "Eid-el-Fitr Holiday (estimated)", "2024-05-01": "Workers' Day", "2024-06-12": "Democracy Day", - "2024-06-16": "Eid-el-Kabir* (*estimated)", - "2024-06-17": "Eid-el-Kabir Holiday* (*estimated)", - "2024-06-18": "Eid-el-Kabir* (*estimated) (Observed)", - "2024-09-15": "Eid-el-Mawlid* (*estimated)", - "2024-09-16": "Eid-el-Mawlid* (*estimated) (Observed)", + "2024-06-16": "Eid-el-Kabir (estimated)", + "2024-06-17": "Eid-el-Kabir Holiday (estimated)", + "2024-06-18": "Eid-el-Kabir (estimated) (Observed)", + "2024-09-15": "Eid-el-Mawlid (estimated)", + "2024-09-16": "Eid-el-Mawlid (estimated) (Observed)", "2024-10-01": "Independence Day", "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", - "2025-03-30": "Eid-el-Fitr* (*estimated)", - "2025-03-31": "Eid-el-Fitr Holiday* (*estimated)", - "2025-04-01": "Eid-el-Fitr* (*estimated) (Observed)", + "2025-03-30": "Eid-el-Fitr (estimated)", + "2025-03-31": "Eid-el-Fitr Holiday (estimated)", + "2025-04-01": "Eid-el-Fitr (estimated) (Observed)", "2025-04-18": "Good Friday", "2025-04-21": "Easter Monday", "2025-05-01": "Workers' Day", - "2025-06-06": "Eid-el-Kabir* (*estimated)", - "2025-06-07": "Eid-el-Kabir Holiday* (*estimated)", - "2025-06-09": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2025-06-06": "Eid-el-Kabir (estimated)", + "2025-06-07": "Eid-el-Kabir Holiday (estimated)", + "2025-06-09": "Eid-el-Kabir Holiday (estimated) (Observed)", "2025-06-12": "Democracy Day", - "2025-09-04": "Eid-el-Mawlid* (*estimated)", + "2025-09-04": "Eid-el-Mawlid (estimated)", "2025-10-01": "Independence Day", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2026-01-01": "New Year's Day", - "2026-03-20": "Eid-el-Fitr* (*estimated)", - "2026-03-21": "Eid-el-Fitr Holiday* (*estimated)", - "2026-03-23": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2026-03-20": "Eid-el-Fitr (estimated)", + "2026-03-21": "Eid-el-Fitr Holiday (estimated)", + "2026-03-23": "Eid-el-Fitr Holiday (estimated) (Observed)", "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-05-01": "Workers' Day", - "2026-05-27": "Eid-el-Kabir* (*estimated)", - "2026-05-28": "Eid-el-Kabir Holiday* (*estimated)", + "2026-05-27": "Eid-el-Kabir (estimated)", + "2026-05-28": "Eid-el-Kabir Holiday (estimated)", "2026-06-12": "Democracy Day", - "2026-08-25": "Eid-el-Mawlid* (*estimated)", + "2026-08-25": "Eid-el-Mawlid (estimated)", "2026-10-01": "Independence Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2026-12-28": "Boxing Day (Observed)", "2027-01-01": "New Year's Day", - "2027-03-09": "Eid-el-Fitr* (*estimated)", - "2027-03-10": "Eid-el-Fitr Holiday* (*estimated)", + "2027-03-09": "Eid-el-Fitr (estimated)", + "2027-03-10": "Eid-el-Fitr Holiday (estimated)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-05-01": "Workers' Day", "2027-05-03": "Workers' Day (Observed)", - "2027-05-16": "Eid-el-Kabir* (*estimated)", - "2027-05-17": "Eid-el-Kabir Holiday* (*estimated)", - "2027-05-18": "Eid-el-Kabir* (*estimated) (Observed)", + "2027-05-16": "Eid-el-Kabir (estimated)", + "2027-05-17": "Eid-el-Kabir Holiday (estimated)", + "2027-05-18": "Eid-el-Kabir (estimated) (Observed)", "2027-06-12": "Democracy Day", "2027-06-14": "Democracy Day (Observed)", - "2027-08-14": "Eid-el-Mawlid* (*estimated)", - "2027-08-16": "Eid-el-Mawlid* (*estimated) (Observed)", + "2027-08-14": "Eid-el-Mawlid (estimated)", + "2027-08-16": "Eid-el-Mawlid (estimated) (Observed)", "2027-10-01": "Independence Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", @@ -662,173 +662,173 @@ "2027-12-28": "Boxing Day (Observed)", "2028-01-01": "New Year's Day", "2028-01-03": "New Year's Day (Observed)", - "2028-02-26": "Eid-el-Fitr* (*estimated)", - "2028-02-27": "Eid-el-Fitr Holiday* (*estimated)", - "2028-02-28": "Eid-el-Fitr* (*estimated) (Observed)", - "2028-02-29": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2028-02-26": "Eid-el-Fitr (estimated)", + "2028-02-27": "Eid-el-Fitr Holiday (estimated)", + "2028-02-28": "Eid-el-Fitr (estimated) (Observed)", + "2028-02-29": "Eid-el-Fitr Holiday (estimated) (Observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-01": "Workers' Day", - "2028-05-05": "Eid-el-Kabir* (*estimated)", - "2028-05-06": "Eid-el-Kabir Holiday* (*estimated)", - "2028-05-08": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2028-05-05": "Eid-el-Kabir (estimated)", + "2028-05-06": "Eid-el-Kabir Holiday (estimated)", + "2028-05-08": "Eid-el-Kabir Holiday (estimated) (Observed)", "2028-06-12": "Democracy Day", - "2028-08-03": "Eid-el-Mawlid* (*estimated)", + "2028-08-03": "Eid-el-Mawlid (estimated)", "2028-10-01": "Independence Day", "2028-10-02": "Independence Day (Observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", - "2029-02-14": "Eid-el-Fitr* (*estimated)", - "2029-02-15": "Eid-el-Fitr Holiday* (*estimated)", + "2029-02-14": "Eid-el-Fitr (estimated)", + "2029-02-15": "Eid-el-Fitr Holiday (estimated)", "2029-03-30": "Good Friday", "2029-04-02": "Easter Monday", - "2029-04-24": "Eid-el-Kabir* (*estimated)", - "2029-04-25": "Eid-el-Kabir Holiday* (*estimated)", + "2029-04-24": "Eid-el-Kabir (estimated)", + "2029-04-25": "Eid-el-Kabir Holiday (estimated)", "2029-05-01": "Workers' Day", "2029-06-12": "Democracy Day", - "2029-07-24": "Eid-el-Mawlid* (*estimated)", + "2029-07-24": "Eid-el-Mawlid (estimated)", "2029-10-01": "Independence Day", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", - "2030-02-04": "Eid-el-Fitr* (*estimated)", - "2030-02-05": "Eid-el-Fitr Holiday* (*estimated)", - "2030-04-13": "Eid-el-Kabir* (*estimated)", - "2030-04-14": "Eid-el-Kabir Holiday* (*estimated)", - "2030-04-15": "Eid-el-Kabir* (*estimated) (Observed)", - "2030-04-16": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2030-02-04": "Eid-el-Fitr (estimated)", + "2030-02-05": "Eid-el-Fitr Holiday (estimated)", + "2030-04-13": "Eid-el-Kabir (estimated)", + "2030-04-14": "Eid-el-Kabir Holiday (estimated)", + "2030-04-15": "Eid-el-Kabir (estimated) (Observed)", + "2030-04-16": "Eid-el-Kabir Holiday (estimated) (Observed)", "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", "2030-05-01": "Workers' Day", "2030-06-12": "Democracy Day", - "2030-07-13": "Eid-el-Mawlid* (*estimated)", - "2030-07-15": "Eid-el-Mawlid* (*estimated) (Observed)", + "2030-07-13": "Eid-el-Mawlid (estimated)", + "2030-07-15": "Eid-el-Mawlid (estimated) (Observed)", "2030-10-01": "Independence Day", "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", - "2031-01-24": "Eid-el-Fitr* (*estimated)", - "2031-01-25": "Eid-el-Fitr Holiday* (*estimated)", - "2031-01-27": "Eid-el-Fitr Holiday* (*estimated) (Observed)", - "2031-04-02": "Eid-el-Kabir* (*estimated)", - "2031-04-03": "Eid-el-Kabir Holiday* (*estimated)", + "2031-01-24": "Eid-el-Fitr (estimated)", + "2031-01-25": "Eid-el-Fitr Holiday (estimated)", + "2031-01-27": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2031-04-02": "Eid-el-Kabir (estimated)", + "2031-04-03": "Eid-el-Kabir Holiday (estimated)", "2031-04-11": "Good Friday", "2031-04-14": "Easter Monday", "2031-05-01": "Workers' Day", "2031-06-12": "Democracy Day", - "2031-07-02": "Eid-el-Mawlid* (*estimated)", + "2031-07-02": "Eid-el-Mawlid (estimated)", "2031-10-01": "Independence Day", "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid-el-Fitr* (*estimated)", - "2032-01-15": "Eid-el-Fitr Holiday* (*estimated)", - "2032-03-22": "Eid-el-Kabir* (*estimated)", - "2032-03-23": "Eid-el-Kabir Holiday* (*estimated)", + "2032-01-14": "Eid-el-Fitr (estimated)", + "2032-01-15": "Eid-el-Fitr Holiday (estimated)", + "2032-03-22": "Eid-el-Kabir (estimated)", + "2032-03-23": "Eid-el-Kabir Holiday (estimated)", "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-05-01": "Workers' Day", "2032-05-03": "Workers' Day (Observed)", "2032-06-12": "Democracy Day", "2032-06-14": "Democracy Day (Observed)", - "2032-06-20": "Eid-el-Mawlid* (*estimated)", - "2032-06-21": "Eid-el-Mawlid* (*estimated) (Observed)", + "2032-06-20": "Eid-el-Mawlid (estimated)", + "2032-06-21": "Eid-el-Mawlid (estimated) (Observed)", "2032-10-01": "Independence Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2032-12-27": "Christmas Day (Observed)", "2032-12-28": "Boxing Day (Observed)", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid-el-Fitr* (*estimated)", - "2033-01-03": "Eid-el-Fitr Holiday* (*estimated)", + "2033-01-02": "Eid-el-Fitr (estimated)", + "2033-01-03": "Eid-el-Fitr Holiday (estimated)", "2033-01-04": "New Year's Day (Observed)", - "2033-01-05": "Eid-el-Fitr* (*estimated) (Observed)", - "2033-03-11": "Eid-el-Kabir* (*estimated)", - "2033-03-12": "Eid-el-Kabir Holiday* (*estimated)", - "2033-03-14": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2033-01-05": "Eid-el-Fitr (estimated) (Observed)", + "2033-03-11": "Eid-el-Kabir (estimated)", + "2033-03-12": "Eid-el-Kabir Holiday (estimated)", + "2033-03-14": "Eid-el-Kabir Holiday (estimated) (Observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-01": "Workers' Day", "2033-05-02": "Workers' Day (Observed)", - "2033-06-09": "Eid-el-Mawlid* (*estimated)", + "2033-06-09": "Eid-el-Mawlid (estimated)", "2033-06-12": "Democracy Day", "2033-06-13": "Democracy Day (Observed)", "2033-10-01": "Independence Day", "2033-10-03": "Independence Day (Observed)", - "2033-12-23": "Eid-el-Fitr* (*estimated)", - "2033-12-24": "Eid-el-Fitr Holiday* (*estimated)", + "2033-12-23": "Eid-el-Fitr (estimated)", + "2033-12-24": "Eid-el-Fitr Holiday (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2033-12-27": "Eid-el-Fitr Holiday (estimated) (Observed)", "2033-12-28": "Christmas Day (Observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day (Observed)", - "2034-03-01": "Eid-el-Kabir* (*estimated)", - "2034-03-02": "Eid-el-Kabir Holiday* (*estimated)", + "2034-03-01": "Eid-el-Kabir (estimated)", + "2034-03-02": "Eid-el-Kabir Holiday (estimated)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-01": "Workers' Day", - "2034-05-30": "Eid-el-Mawlid* (*estimated)", + "2034-05-30": "Eid-el-Mawlid (estimated)", "2034-06-12": "Democracy Day", "2034-10-01": "Independence Day", "2034-10-02": "Independence Day (Observed)", - "2034-12-12": "Eid-el-Fitr* (*estimated)", - "2034-12-13": "Eid-el-Fitr Holiday* (*estimated)", + "2034-12-12": "Eid-el-Fitr (estimated)", + "2034-12-13": "Eid-el-Fitr Holiday (estimated)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", - "2035-02-18": "Eid-el-Kabir* (*estimated)", - "2035-02-19": "Eid-el-Kabir Holiday* (*estimated)", - "2035-02-20": "Eid-el-Kabir* (*estimated) (Observed)", + "2035-02-18": "Eid-el-Kabir (estimated)", + "2035-02-19": "Eid-el-Kabir Holiday (estimated)", + "2035-02-20": "Eid-el-Kabir (estimated) (Observed)", "2035-03-23": "Good Friday", "2035-03-26": "Easter Monday", "2035-05-01": "Workers' Day", - "2035-05-20": "Eid-el-Mawlid* (*estimated)", - "2035-05-21": "Eid-el-Mawlid* (*estimated) (Observed)", + "2035-05-20": "Eid-el-Mawlid (estimated)", + "2035-05-21": "Eid-el-Mawlid (estimated) (Observed)", "2035-06-12": "Democracy Day", "2035-10-01": "Independence Day", - "2035-12-01": "Eid-el-Fitr* (*estimated)", - "2035-12-02": "Eid-el-Fitr Holiday* (*estimated)", - "2035-12-03": "Eid-el-Fitr* (*estimated) (Observed)", - "2035-12-04": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2035-12-01": "Eid-el-Fitr (estimated)", + "2035-12-02": "Eid-el-Fitr Holiday (estimated)", + "2035-12-03": "Eid-el-Fitr (estimated) (Observed)", + "2035-12-04": "Eid-el-Fitr Holiday (estimated) (Observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", - "2036-02-07": "Eid-el-Kabir* (*estimated)", - "2036-02-08": "Eid-el-Kabir Holiday* (*estimated)", + "2036-02-07": "Eid-el-Kabir (estimated)", + "2036-02-08": "Eid-el-Kabir Holiday (estimated)", "2036-04-11": "Good Friday", "2036-04-14": "Easter Monday", "2036-05-01": "Workers' Day", - "2036-05-08": "Eid-el-Mawlid* (*estimated)", + "2036-05-08": "Eid-el-Mawlid (estimated)", "2036-06-12": "Democracy Day", "2036-10-01": "Independence Day", - "2036-11-19": "Eid-el-Fitr* (*estimated)", - "2036-11-20": "Eid-el-Fitr Holiday* (*estimated)", + "2036-11-19": "Eid-el-Fitr (estimated)", + "2036-11-20": "Eid-el-Fitr Holiday (estimated)", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Eid-el-Kabir* (*estimated)", - "2037-01-27": "Eid-el-Kabir Holiday* (*estimated)", + "2037-01-26": "Eid-el-Kabir (estimated)", + "2037-01-27": "Eid-el-Kabir Holiday (estimated)", "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", - "2037-04-28": "Eid-el-Mawlid* (*estimated)", + "2037-04-28": "Eid-el-Mawlid (estimated)", "2037-05-01": "Workers' Day", "2037-06-12": "Democracy Day", "2037-10-01": "Independence Day", - "2037-11-08": "Eid-el-Fitr* (*estimated)", - "2037-11-09": "Eid-el-Fitr Holiday* (*estimated)", - "2037-11-10": "Eid-el-Fitr* (*estimated) (Observed)", + "2037-11-08": "Eid-el-Fitr (estimated)", + "2037-11-09": "Eid-el-Fitr Holiday (estimated)", + "2037-11-10": "Eid-el-Fitr (estimated) (Observed)", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2037-12-28": "Boxing Day (Observed)", "2038-01-01": "New Year's Day", - "2038-01-16": "Eid-el-Kabir* (*estimated)", - "2038-01-17": "Eid-el-Kabir Holiday* (*estimated)", - "2038-01-18": "Eid-el-Kabir* (*estimated) (Observed)", - "2038-01-19": "Eid-el-Kabir Holiday* (*estimated) (Observed)", - "2038-04-17": "Eid-el-Mawlid* (*estimated)", - "2038-04-19": "Eid-el-Mawlid* (*estimated) (Observed)", + "2038-01-16": "Eid-el-Kabir (estimated)", + "2038-01-17": "Eid-el-Kabir Holiday (estimated)", + "2038-01-18": "Eid-el-Kabir (estimated) (Observed)", + "2038-01-19": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2038-04-17": "Eid-el-Mawlid (estimated)", + "2038-04-19": "Eid-el-Mawlid (estimated) (Observed)", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-05-01": "Workers' Day", @@ -836,18 +836,18 @@ "2038-06-12": "Democracy Day", "2038-06-14": "Democracy Day (Observed)", "2038-10-01": "Independence Day", - "2038-10-29": "Eid-el-Fitr* (*estimated)", - "2038-10-30": "Eid-el-Fitr Holiday* (*estimated)", - "2038-11-01": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2038-10-29": "Eid-el-Fitr (estimated)", + "2038-10-30": "Eid-el-Fitr Holiday (estimated)", + "2038-11-01": "Eid-el-Fitr Holiday (estimated) (Observed)", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2038-12-27": "Christmas Day (Observed)", "2038-12-28": "Boxing Day (Observed)", "2039-01-01": "New Year's Day", "2039-01-03": "New Year's Day (Observed)", - "2039-01-05": "Eid-el-Kabir* (*estimated)", - "2039-01-06": "Eid-el-Kabir Holiday* (*estimated)", - "2039-04-06": "Eid-el-Mawlid* (*estimated)", + "2039-01-05": "Eid-el-Kabir (estimated)", + "2039-01-06": "Eid-el-Kabir Holiday (estimated)", + "2039-04-06": "Eid-el-Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-01": "Workers' Day", @@ -856,148 +856,148 @@ "2039-06-13": "Democracy Day (Observed)", "2039-10-01": "Independence Day", "2039-10-03": "Independence Day (Observed)", - "2039-10-19": "Eid-el-Fitr* (*estimated)", - "2039-10-20": "Eid-el-Fitr Holiday* (*estimated)", + "2039-10-19": "Eid-el-Fitr (estimated)", + "2039-10-20": "Eid-el-Fitr Holiday (estimated)", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Eid-el-Kabir* (*estimated)", - "2039-12-27": "Eid-el-Kabir Holiday* (*estimated)", + "2039-12-26": "Boxing Day; Eid-el-Kabir (estimated)", + "2039-12-27": "Eid-el-Kabir Holiday (estimated)", "2039-12-28": "Christmas Day (Observed)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day (Observed)", - "2040-03-25": "Eid-el-Mawlid* (*estimated)", - "2040-03-26": "Eid-el-Mawlid* (*estimated) (Observed)", + "2040-03-25": "Eid-el-Mawlid (estimated)", + "2040-03-26": "Eid-el-Mawlid (estimated) (Observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-01": "Workers' Day", "2040-06-12": "Democracy Day", "2040-10-01": "Independence Day", - "2040-10-07": "Eid-el-Fitr* (*estimated)", - "2040-10-08": "Eid-el-Fitr Holiday* (*estimated)", - "2040-10-09": "Eid-el-Fitr* (*estimated) (Observed)", - "2040-12-14": "Eid-el-Kabir* (*estimated)", - "2040-12-15": "Eid-el-Kabir Holiday* (*estimated)", - "2040-12-17": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2040-10-07": "Eid-el-Fitr (estimated)", + "2040-10-08": "Eid-el-Fitr Holiday (estimated)", + "2040-10-09": "Eid-el-Fitr (estimated) (Observed)", + "2040-12-14": "Eid-el-Kabir (estimated)", + "2040-12-15": "Eid-el-Kabir Holiday (estimated)", + "2040-12-17": "Eid-el-Kabir Holiday (estimated) (Observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", - "2041-03-15": "Eid-el-Mawlid* (*estimated)", + "2041-03-15": "Eid-el-Mawlid (estimated)", "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", "2041-05-01": "Workers' Day", "2041-06-12": "Democracy Day", - "2041-09-26": "Eid-el-Fitr* (*estimated)", - "2041-09-27": "Eid-el-Fitr Holiday* (*estimated)", + "2041-09-26": "Eid-el-Fitr (estimated)", + "2041-09-27": "Eid-el-Fitr Holiday (estimated)", "2041-10-01": "Independence Day", - "2041-12-04": "Eid-el-Kabir* (*estimated)", - "2041-12-05": "Eid-el-Kabir Holiday* (*estimated)", + "2041-12-04": "Eid-el-Kabir (estimated)", + "2041-12-05": "Eid-el-Kabir Holiday (estimated)", "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", - "2042-03-04": "Eid-el-Mawlid* (*estimated)", + "2042-03-04": "Eid-el-Mawlid (estimated)", "2042-04-04": "Good Friday", "2042-04-07": "Easter Monday", "2042-05-01": "Workers' Day", "2042-06-12": "Democracy Day", - "2042-09-15": "Eid-el-Fitr* (*estimated)", - "2042-09-16": "Eid-el-Fitr Holiday* (*estimated)", + "2042-09-15": "Eid-el-Fitr (estimated)", + "2042-09-16": "Eid-el-Fitr Holiday (estimated)", "2042-10-01": "Independence Day", - "2042-11-23": "Eid-el-Kabir* (*estimated)", - "2042-11-24": "Eid-el-Kabir Holiday* (*estimated)", - "2042-11-25": "Eid-el-Kabir* (*estimated) (Observed)", + "2042-11-23": "Eid-el-Kabir (estimated)", + "2042-11-24": "Eid-el-Kabir Holiday (estimated)", + "2042-11-25": "Eid-el-Kabir (estimated) (Observed)", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2043-01-01": "New Year's Day", - "2043-02-22": "Eid-el-Mawlid* (*estimated)", - "2043-02-23": "Eid-el-Mawlid* (*estimated) (Observed)", + "2043-02-22": "Eid-el-Mawlid (estimated)", + "2043-02-23": "Eid-el-Mawlid (estimated) (Observed)", "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-05-01": "Workers' Day", "2043-06-12": "Democracy Day", - "2043-09-04": "Eid-el-Fitr* (*estimated)", - "2043-09-05": "Eid-el-Fitr Holiday* (*estimated)", - "2043-09-07": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2043-09-04": "Eid-el-Fitr (estimated)", + "2043-09-05": "Eid-el-Fitr Holiday (estimated)", + "2043-09-07": "Eid-el-Fitr Holiday (estimated) (Observed)", "2043-10-01": "Independence Day", - "2043-11-12": "Eid-el-Kabir* (*estimated)", - "2043-11-13": "Eid-el-Kabir Holiday* (*estimated)", + "2043-11-12": "Eid-el-Kabir (estimated)", + "2043-11-13": "Eid-el-Kabir Holiday (estimated)", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2043-12-28": "Boxing Day (Observed)", "2044-01-01": "New Year's Day", - "2044-02-11": "Eid-el-Mawlid* (*estimated)", + "2044-02-11": "Eid-el-Mawlid (estimated)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-05-01": "Workers' Day", "2044-05-02": "Workers' Day (Observed)", "2044-06-12": "Democracy Day", "2044-06-13": "Democracy Day (Observed)", - "2044-08-24": "Eid-el-Fitr* (*estimated)", - "2044-08-25": "Eid-el-Fitr Holiday* (*estimated)", + "2044-08-24": "Eid-el-Fitr (estimated)", + "2044-08-25": "Eid-el-Fitr Holiday (estimated)", "2044-10-01": "Independence Day", "2044-10-03": "Independence Day (Observed)", - "2044-10-31": "Eid-el-Kabir* (*estimated)", - "2044-11-01": "Eid-el-Kabir Holiday* (*estimated)", + "2044-10-31": "Eid-el-Kabir (estimated)", + "2044-11-01": "Eid-el-Kabir Holiday (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2044-12-27": "Christmas Day (Observed)", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day (Observed)", - "2045-01-30": "Eid-el-Mawlid* (*estimated)", + "2045-01-30": "Eid-el-Mawlid (estimated)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-01": "Workers' Day", "2045-06-12": "Democracy Day", - "2045-08-14": "Eid-el-Fitr* (*estimated)", - "2045-08-15": "Eid-el-Fitr Holiday* (*estimated)", + "2045-08-14": "Eid-el-Fitr (estimated)", + "2045-08-15": "Eid-el-Fitr Holiday (estimated)", "2045-10-01": "Independence Day", "2045-10-02": "Independence Day (Observed)", - "2045-10-21": "Eid-el-Kabir* (*estimated)", - "2045-10-22": "Eid-el-Kabir Holiday* (*estimated)", - "2045-10-23": "Eid-el-Kabir* (*estimated) (Observed)", - "2045-10-24": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2045-10-21": "Eid-el-Kabir (estimated)", + "2045-10-22": "Eid-el-Kabir Holiday (estimated)", + "2045-10-23": "Eid-el-Kabir (estimated) (Observed)", + "2045-10-24": "Eid-el-Kabir Holiday (estimated) (Observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Eid-el-Mawlid* (*estimated)", + "2046-01-19": "Eid-el-Mawlid (estimated)", "2046-03-23": "Good Friday", "2046-03-26": "Easter Monday", "2046-05-01": "Workers' Day", "2046-06-12": "Democracy Day", - "2046-08-03": "Eid-el-Fitr* (*estimated)", - "2046-08-04": "Eid-el-Fitr Holiday* (*estimated)", - "2046-08-06": "Eid-el-Fitr Holiday* (*estimated) (Observed)", + "2046-08-03": "Eid-el-Fitr (estimated)", + "2046-08-04": "Eid-el-Fitr Holiday (estimated)", + "2046-08-06": "Eid-el-Fitr Holiday (estimated) (Observed)", "2046-10-01": "Independence Day", - "2046-10-10": "Eid-el-Kabir* (*estimated)", - "2046-10-11": "Eid-el-Kabir Holiday* (*estimated)", + "2046-10-10": "Eid-el-Kabir (estimated)", + "2046-10-11": "Eid-el-Kabir Holiday (estimated)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Eid-el-Mawlid* (*estimated)", + "2047-01-08": "Eid-el-Mawlid (estimated)", "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", "2047-05-01": "Workers' Day", "2047-06-12": "Democracy Day", - "2047-07-24": "Eid-el-Fitr* (*estimated)", - "2047-07-25": "Eid-el-Fitr Holiday* (*estimated)", - "2047-09-30": "Eid-el-Kabir* (*estimated)", - "2047-10-01": "Eid-el-Kabir Holiday* (*estimated); Independence Day", + "2047-07-24": "Eid-el-Fitr (estimated)", + "2047-07-25": "Eid-el-Fitr Holiday (estimated)", + "2047-09-30": "Eid-el-Kabir (estimated)", + "2047-10-01": "Eid-el-Kabir Holiday (estimated); Independence Day", "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", - "2047-12-29": "Eid-el-Mawlid* (*estimated)", - "2047-12-30": "Eid-el-Mawlid* (*estimated) (Observed)", + "2047-12-29": "Eid-el-Mawlid (estimated)", + "2047-12-30": "Eid-el-Mawlid (estimated) (Observed)", "2048-01-01": "New Year's Day", "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-05-01": "Workers' Day", "2048-06-12": "Democracy Day", - "2048-07-12": "Eid-el-Fitr* (*estimated)", - "2048-07-13": "Eid-el-Fitr Holiday* (*estimated)", - "2048-07-14": "Eid-el-Fitr* (*estimated) (Observed)", - "2048-09-19": "Eid-el-Kabir* (*estimated)", - "2048-09-20": "Eid-el-Kabir Holiday* (*estimated)", - "2048-09-21": "Eid-el-Kabir* (*estimated) (Observed)", - "2048-09-22": "Eid-el-Kabir Holiday* (*estimated) (Observed)", + "2048-07-12": "Eid-el-Fitr (estimated)", + "2048-07-13": "Eid-el-Fitr Holiday (estimated)", + "2048-07-14": "Eid-el-Fitr (estimated) (Observed)", + "2048-09-19": "Eid-el-Kabir (estimated)", + "2048-09-20": "Eid-el-Kabir Holiday (estimated)", + "2048-09-21": "Eid-el-Kabir (estimated) (Observed)", + "2048-09-22": "Eid-el-Kabir Holiday (estimated) (Observed)", "2048-10-01": "Independence Day", - "2048-12-18": "Eid-el-Mawlid* (*estimated)", + "2048-12-18": "Eid-el-Mawlid (estimated)", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2048-12-28": "Boxing Day (Observed)", @@ -1008,12 +1008,12 @@ "2049-05-03": "Workers' Day (Observed)", "2049-06-12": "Democracy Day", "2049-06-14": "Democracy Day (Observed)", - "2049-07-01": "Eid-el-Fitr* (*estimated)", - "2049-07-02": "Eid-el-Fitr Holiday* (*estimated)", - "2049-09-08": "Eid-el-Kabir* (*estimated)", - "2049-09-09": "Eid-el-Kabir Holiday* (*estimated)", + "2049-07-01": "Eid-el-Fitr (estimated)", + "2049-07-02": "Eid-el-Fitr Holiday (estimated)", + "2049-09-08": "Eid-el-Kabir (estimated)", + "2049-09-09": "Eid-el-Kabir Holiday (estimated)", "2049-10-01": "Independence Day", - "2049-12-07": "Eid-el-Mawlid* (*estimated)", + "2049-12-07": "Eid-el-Mawlid (estimated)", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2049-12-27": "Christmas Day (Observed)", @@ -1026,15 +1026,15 @@ "2050-05-02": "Workers' Day (Observed)", "2050-06-12": "Democracy Day", "2050-06-13": "Democracy Day (Observed)", - "2050-06-20": "Eid-el-Fitr* (*estimated)", - "2050-06-21": "Eid-el-Fitr Holiday* (*estimated)", - "2050-08-28": "Eid-el-Kabir* (*estimated)", - "2050-08-29": "Eid-el-Kabir Holiday* (*estimated)", - "2050-08-30": "Eid-el-Kabir* (*estimated) (Observed)", + "2050-06-20": "Eid-el-Fitr (estimated)", + "2050-06-21": "Eid-el-Fitr Holiday (estimated)", + "2050-08-28": "Eid-el-Kabir (estimated)", + "2050-08-29": "Eid-el-Kabir Holiday (estimated)", + "2050-08-30": "Eid-el-Kabir (estimated) (Observed)", "2050-10-01": "Independence Day", "2050-10-03": "Independence Day (Observed)", - "2050-11-26": "Eid-el-Mawlid* (*estimated)", - "2050-11-28": "Eid-el-Mawlid* (*estimated) (Observed)", + "2050-11-26": "Eid-el-Mawlid (estimated)", + "2050-11-28": "Eid-el-Mawlid (estimated) (Observed)", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", "2050-12-27": "Christmas Day (Observed)" diff --git a/snapshots/countries/PH_COMMON.json b/snapshots/countries/PH_COMMON.json index e7a366544..b7b0a8aea 100644 --- a/snapshots/countries/PH_COMMON.json +++ b/snapshots/countries/PH_COMMON.json @@ -8,10 +8,10 @@ "1950-04-09": "Day of Valor", "1950-05-01": "Labour Day", "1950-06-12": "Independence Day", - "1950-07-16": "Eid'l Fitr* (*estimated)", + "1950-07-16": "Eid'l Fitr (estimated)", "1950-08-21": "Ninoy Aquino Day", "1950-08-28": "National Heroes Day", - "1950-09-23": "Eid'l Adha* (*estimated)", + "1950-09-23": "Eid'l Adha (estimated)", "1950-11-01": "All Saints' Day", "1950-11-30": "Bonifacio Day", "1950-12-08": "Immaculate Conception Day", @@ -27,10 +27,10 @@ "1951-04-09": "Day of Valor", "1951-05-01": "Labour Day", "1951-06-12": "Independence Day", - "1951-07-06": "Eid'l Fitr* (*estimated)", + "1951-07-06": "Eid'l Fitr (estimated)", "1951-08-21": "Ninoy Aquino Day", "1951-08-27": "National Heroes Day", - "1951-09-12": "Eid'l Adha* (*estimated)", + "1951-09-12": "Eid'l Adha (estimated)", "1951-11-01": "All Saints' Day", "1951-11-30": "Bonifacio Day", "1951-12-08": "Immaculate Conception Day", @@ -46,10 +46,10 @@ "1952-04-12": "Black Saturday", "1952-05-01": "Labour Day", "1952-06-12": "Independence Day", - "1952-06-23": "Eid'l Fitr* (*estimated)", + "1952-06-23": "Eid'l Fitr (estimated)", "1952-08-21": "Ninoy Aquino Day", "1952-08-25": "National Heroes Day", - "1952-08-31": "Eid'l Adha* (*estimated)", + "1952-08-31": "Eid'l Adha (estimated)", "1952-11-01": "All Saints' Day", "1952-11-30": "Bonifacio Day", "1952-12-08": "Immaculate Conception Day", @@ -65,8 +65,8 @@ "1953-04-09": "Day of Valor", "1953-05-01": "Labour Day", "1953-06-12": "Independence Day", - "1953-06-13": "Eid'l Fitr* (*estimated)", - "1953-08-20": "Eid'l Adha* (*estimated)", + "1953-06-13": "Eid'l Fitr (estimated)", + "1953-08-20": "Eid'l Adha (estimated)", "1953-08-21": "Ninoy Aquino Day", "1953-08-31": "National Heroes Day", "1953-11-01": "All Saints' Day", @@ -83,9 +83,9 @@ "1954-04-16": "Good Friday", "1954-04-17": "Black Saturday", "1954-05-01": "Labour Day", - "1954-06-02": "Eid'l Fitr* (*estimated)", + "1954-06-02": "Eid'l Fitr (estimated)", "1954-06-12": "Independence Day", - "1954-08-09": "Eid'l Adha* (*estimated)", + "1954-08-09": "Eid'l Adha (estimated)", "1954-08-21": "Ninoy Aquino Day", "1954-08-30": "National Heroes Day", "1954-11-01": "All Saints' Day", @@ -101,9 +101,9 @@ "1955-04-08": "Good Friday", "1955-04-09": "Black Saturday; Day of Valor", "1955-05-01": "Labour Day", - "1955-05-23": "Eid'l Fitr* (*estimated)", + "1955-05-23": "Eid'l Fitr (estimated)", "1955-06-12": "Independence Day", - "1955-07-30": "Eid'l Adha* (*estimated)", + "1955-07-30": "Eid'l Adha (estimated)", "1955-08-21": "Ninoy Aquino Day", "1955-08-29": "National Heroes Day", "1955-11-01": "All Saints' Day", @@ -120,9 +120,9 @@ "1956-03-31": "Black Saturday", "1956-04-09": "Day of Valor", "1956-05-01": "Labour Day", - "1956-05-11": "Eid'l Fitr* (*estimated)", + "1956-05-11": "Eid'l Fitr (estimated)", "1956-06-12": "Independence Day", - "1956-07-19": "Eid'l Adha* (*estimated)", + "1956-07-19": "Eid'l Adha (estimated)", "1956-08-21": "Ninoy Aquino Day", "1956-08-27": "National Heroes Day", "1956-11-01": "All Saints' Day", @@ -138,9 +138,9 @@ "1957-04-18": "Maundy Thursday", "1957-04-19": "Good Friday", "1957-04-20": "Black Saturday", - "1957-05-01": "Eid'l Fitr* (*estimated); Labour Day", + "1957-05-01": "Eid'l Fitr (estimated); Labour Day", "1957-06-12": "Independence Day", - "1957-07-08": "Eid'l Adha* (*estimated)", + "1957-07-08": "Eid'l Adha (estimated)", "1957-08-21": "Ninoy Aquino Day", "1957-08-26": "National Heroes Day", "1957-11-01": "All Saints' Day", @@ -156,10 +156,10 @@ "1958-04-04": "Good Friday", "1958-04-05": "Black Saturday", "1958-04-09": "Day of Valor", - "1958-04-20": "Eid'l Fitr* (*estimated)", + "1958-04-20": "Eid'l Fitr (estimated)", "1958-05-01": "Labour Day", "1958-06-12": "Independence Day", - "1958-06-27": "Eid'l Adha* (*estimated)", + "1958-06-27": "Eid'l Adha (estimated)", "1958-08-21": "Ninoy Aquino Day", "1958-08-25": "National Heroes Day", "1958-11-01": "All Saints' Day", @@ -175,10 +175,10 @@ "1959-03-27": "Good Friday", "1959-03-28": "Black Saturday", "1959-04-09": "Day of Valor", - "1959-04-10": "Eid'l Fitr* (*estimated)", + "1959-04-10": "Eid'l Fitr (estimated)", "1959-05-01": "Labour Day", "1959-06-12": "Independence Day", - "1959-06-17": "Eid'l Adha* (*estimated)", + "1959-06-17": "Eid'l Adha (estimated)", "1959-08-21": "Ninoy Aquino Day", "1959-08-31": "National Heroes Day", "1959-11-01": "All Saints' Day", @@ -190,13 +190,13 @@ "1960-01-01": "New Year's Day", "1960-01-28": "Chinese New Year", "1960-02-25": "EDSA Revolution Anniversary", - "1960-03-28": "Eid'l Fitr* (*estimated)", + "1960-03-28": "Eid'l Fitr (estimated)", "1960-04-09": "Day of Valor", "1960-04-14": "Maundy Thursday", "1960-04-15": "Good Friday", "1960-04-16": "Black Saturday", "1960-05-01": "Labour Day", - "1960-06-04": "Eid'l Adha* (*estimated)", + "1960-06-04": "Eid'l Adha (estimated)", "1960-06-12": "Independence Day", "1960-08-21": "Ninoy Aquino Day", "1960-08-29": "National Heroes Day", @@ -209,13 +209,13 @@ "1961-01-01": "New Year's Day", "1961-02-15": "Chinese New Year", "1961-02-25": "EDSA Revolution Anniversary", - "1961-03-18": "Eid'l Fitr* (*estimated)", + "1961-03-18": "Eid'l Fitr (estimated)", "1961-03-30": "Maundy Thursday", "1961-03-31": "Good Friday", "1961-04-01": "Black Saturday", "1961-04-09": "Day of Valor", "1961-05-01": "Labour Day", - "1961-05-25": "Eid'l Adha* (*estimated)", + "1961-05-25": "Eid'l Adha (estimated)", "1961-06-12": "Independence Day", "1961-08-21": "Ninoy Aquino Day", "1961-08-28": "National Heroes Day", @@ -228,13 +228,13 @@ "1962-01-01": "New Year's Day", "1962-02-05": "Chinese New Year", "1962-02-25": "EDSA Revolution Anniversary", - "1962-03-07": "Eid'l Fitr* (*estimated)", + "1962-03-07": "Eid'l Fitr (estimated)", "1962-04-09": "Day of Valor", "1962-04-19": "Maundy Thursday", "1962-04-20": "Good Friday", "1962-04-21": "Black Saturday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid'l Adha* (*estimated)", + "1962-05-14": "Eid'l Adha (estimated)", "1962-06-12": "Independence Day", "1962-08-21": "Ninoy Aquino Day", "1962-08-27": "National Heroes Day", @@ -246,14 +246,14 @@ "1962-12-31": "New Year's Eve", "1963-01-01": "New Year's Day", "1963-01-25": "Chinese New Year", - "1963-02-24": "Eid'l Fitr* (*estimated)", + "1963-02-24": "Eid'l Fitr (estimated)", "1963-02-25": "EDSA Revolution Anniversary", "1963-04-09": "Day of Valor", "1963-04-11": "Maundy Thursday", "1963-04-12": "Good Friday", "1963-04-13": "Black Saturday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid'l Adha* (*estimated)", + "1963-05-03": "Eid'l Adha (estimated)", "1963-06-12": "Independence Day", "1963-08-21": "Ninoy Aquino Day", "1963-08-26": "National Heroes Day", @@ -265,13 +265,13 @@ "1963-12-31": "New Year's Eve", "1964-01-01": "New Year's Day", "1964-02-13": "Chinese New Year", - "1964-02-14": "Eid'l Fitr* (*estimated)", + "1964-02-14": "Eid'l Fitr (estimated)", "1964-02-25": "EDSA Revolution Anniversary", "1964-03-26": "Maundy Thursday", "1964-03-27": "Good Friday", "1964-03-28": "Black Saturday", "1964-04-09": "Day of Valor", - "1964-04-22": "Eid'l Adha* (*estimated)", + "1964-04-22": "Eid'l Adha (estimated)", "1964-05-01": "Labour Day", "1964-06-12": "Independence Day", "1964-08-21": "Ninoy Aquino Day", @@ -283,10 +283,10 @@ "1964-12-30": "Rizal Day", "1964-12-31": "New Year's Eve", "1965-01-01": "New Year's Day", - "1965-02-02": "Chinese New Year; Eid'l Fitr* (*estimated)", + "1965-02-02": "Chinese New Year; Eid'l Fitr (estimated)", "1965-02-25": "EDSA Revolution Anniversary", "1965-04-09": "Day of Valor", - "1965-04-11": "Eid'l Adha* (*estimated)", + "1965-04-11": "Eid'l Adha (estimated)", "1965-04-15": "Maundy Thursday", "1965-04-16": "Good Friday", "1965-04-17": "Black Saturday", @@ -302,9 +302,9 @@ "1965-12-31": "New Year's Eve", "1966-01-01": "New Year's Day", "1966-01-21": "Chinese New Year", - "1966-01-22": "Eid'l Fitr* (*estimated)", + "1966-01-22": "Eid'l Fitr (estimated)", "1966-02-25": "EDSA Revolution Anniversary", - "1966-04-01": "Eid'l Adha* (*estimated)", + "1966-04-01": "Eid'l Adha (estimated)", "1966-04-07": "Maundy Thursday", "1966-04-08": "Good Friday", "1966-04-09": "Black Saturday; Day of Valor", @@ -319,10 +319,10 @@ "1966-12-30": "Rizal Day", "1966-12-31": "New Year's Eve", "1967-01-01": "New Year's Day", - "1967-01-12": "Eid'l Fitr* (*estimated)", + "1967-01-12": "Eid'l Fitr (estimated)", "1967-02-09": "Chinese New Year", "1967-02-25": "EDSA Revolution Anniversary", - "1967-03-21": "Eid'l Adha* (*estimated)", + "1967-03-21": "Eid'l Adha (estimated)", "1967-03-23": "Maundy Thursday", "1967-03-24": "Good Friday", "1967-03-25": "Black Saturday", @@ -337,10 +337,10 @@ "1967-12-25": "Christmas Day", "1967-12-30": "Rizal Day", "1967-12-31": "New Year's Eve", - "1968-01-01": "Eid'l Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid'l Fitr (estimated); New Year's Day", "1968-01-30": "Chinese New Year", "1968-02-25": "EDSA Revolution Anniversary", - "1968-03-09": "Eid'l Adha* (*estimated)", + "1968-03-09": "Eid'l Adha (estimated)", "1968-04-09": "Day of Valor", "1968-04-11": "Maundy Thursday", "1968-04-12": "Good Friday", @@ -352,14 +352,14 @@ "1968-11-01": "All Saints' Day", "1968-11-30": "Bonifacio Day", "1968-12-08": "Immaculate Conception Day", - "1968-12-21": "Eid'l Fitr* (*estimated)", + "1968-12-21": "Eid'l Fitr (estimated)", "1968-12-25": "Christmas Day", "1968-12-30": "Rizal Day", "1968-12-31": "New Year's Eve", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year", "1969-02-25": "EDSA Revolution Anniversary", - "1969-02-27": "Eid'l Adha* (*estimated)", + "1969-02-27": "Eid'l Adha (estimated)", "1969-04-03": "Maundy Thursday", "1969-04-04": "Good Friday", "1969-04-05": "Black Saturday", @@ -371,13 +371,13 @@ "1969-11-01": "All Saints' Day", "1969-11-30": "Bonifacio Day", "1969-12-08": "Immaculate Conception Day", - "1969-12-10": "Eid'l Fitr* (*estimated)", + "1969-12-10": "Eid'l Fitr (estimated)", "1969-12-25": "Christmas Day", "1969-12-30": "Rizal Day", "1969-12-31": "New Year's Eve", "1970-01-01": "New Year's Day", "1970-02-06": "Chinese New Year", - "1970-02-16": "Eid'l Adha* (*estimated)", + "1970-02-16": "Eid'l Adha (estimated)", "1970-02-25": "EDSA Revolution Anniversary", "1970-03-26": "Maundy Thursday", "1970-03-27": "Good Friday", @@ -388,14 +388,14 @@ "1970-08-21": "Ninoy Aquino Day", "1970-08-31": "National Heroes Day", "1970-11-01": "All Saints' Day", - "1970-11-30": "Bonifacio Day; Eid'l Fitr* (*estimated)", + "1970-11-30": "Bonifacio Day; Eid'l Fitr (estimated)", "1970-12-08": "Immaculate Conception Day", "1970-12-25": "Christmas Day", "1970-12-30": "Rizal Day", "1970-12-31": "New Year's Eve", "1971-01-01": "New Year's Day", "1971-01-27": "Chinese New Year", - "1971-02-06": "Eid'l Adha* (*estimated)", + "1971-02-06": "Eid'l Adha (estimated)", "1971-02-25": "EDSA Revolution Anniversary", "1971-04-08": "Maundy Thursday", "1971-04-09": "Day of Valor; Good Friday", @@ -405,14 +405,14 @@ "1971-08-21": "Ninoy Aquino Day", "1971-08-30": "National Heroes Day", "1971-11-01": "All Saints' Day", - "1971-11-19": "Eid'l Fitr* (*estimated)", + "1971-11-19": "Eid'l Fitr (estimated)", "1971-11-30": "Bonifacio Day", "1971-12-08": "Immaculate Conception Day", "1971-12-25": "Christmas Day", "1971-12-30": "Rizal Day", "1971-12-31": "New Year's Eve", "1972-01-01": "New Year's Day", - "1972-01-26": "Eid'l Adha* (*estimated)", + "1972-01-26": "Eid'l Adha (estimated)", "1972-02-15": "Chinese New Year", "1972-02-25": "EDSA Revolution Anniversary", "1972-03-30": "Maundy Thursday", @@ -424,14 +424,14 @@ "1972-08-21": "Ninoy Aquino Day", "1972-08-28": "National Heroes Day", "1972-11-01": "All Saints' Day", - "1972-11-07": "Eid'l Fitr* (*estimated)", + "1972-11-07": "Eid'l Fitr (estimated)", "1972-11-30": "Bonifacio Day", "1972-12-08": "Immaculate Conception Day", "1972-12-25": "Christmas Day", "1972-12-30": "Rizal Day", "1972-12-31": "New Year's Eve", "1973-01-01": "New Year's Day", - "1973-01-14": "Eid'l Adha* (*estimated)", + "1973-01-14": "Eid'l Adha (estimated)", "1973-02-03": "Chinese New Year", "1973-02-25": "EDSA Revolution Anniversary", "1973-04-09": "Day of Valor", @@ -442,7 +442,7 @@ "1973-06-12": "Independence Day", "1973-08-21": "Ninoy Aquino Day", "1973-08-27": "National Heroes Day", - "1973-10-27": "Eid'l Fitr* (*estimated)", + "1973-10-27": "Eid'l Fitr (estimated)", "1973-11-01": "All Saints' Day", "1973-11-30": "Bonifacio Day", "1973-12-08": "Immaculate Conception Day", @@ -450,7 +450,7 @@ "1973-12-30": "Rizal Day", "1973-12-31": "New Year's Eve", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid'l Adha* (*estimated)", + "1974-01-03": "Eid'l Adha (estimated)", "1974-01-23": "Chinese New Year", "1974-02-25": "EDSA Revolution Anniversary", "1974-04-09": "Day of Valor", @@ -461,11 +461,11 @@ "1974-06-12": "Independence Day", "1974-08-21": "Ninoy Aquino Day", "1974-08-26": "National Heroes Day", - "1974-10-16": "Eid'l Fitr* (*estimated)", + "1974-10-16": "Eid'l Fitr (estimated)", "1974-11-01": "All Saints' Day", "1974-11-30": "Bonifacio Day", "1974-12-08": "Immaculate Conception Day", - "1974-12-24": "Eid'l Adha* (*estimated)", + "1974-12-24": "Eid'l Adha (estimated)", "1974-12-25": "Christmas Day", "1974-12-30": "Rizal Day", "1974-12-31": "New Year's Eve", @@ -480,11 +480,11 @@ "1975-06-12": "Independence Day", "1975-08-21": "Ninoy Aquino Day", "1975-08-25": "National Heroes Day", - "1975-10-06": "Eid'l Fitr* (*estimated)", + "1975-10-06": "Eid'l Fitr (estimated)", "1975-11-01": "All Saints' Day", "1975-11-30": "Bonifacio Day", "1975-12-08": "Immaculate Conception Day", - "1975-12-13": "Eid'l Adha* (*estimated)", + "1975-12-13": "Eid'l Adha (estimated)", "1975-12-25": "Christmas Day", "1975-12-30": "Rizal Day", "1975-12-31": "New Year's Eve", @@ -499,10 +499,10 @@ "1976-06-12": "Independence Day", "1976-08-21": "Ninoy Aquino Day", "1976-08-30": "National Heroes Day", - "1976-09-24": "Eid'l Fitr* (*estimated)", + "1976-09-24": "Eid'l Fitr (estimated)", "1976-11-01": "All Saints' Day", "1976-11-30": "Bonifacio Day", - "1976-12-01": "Eid'l Adha* (*estimated)", + "1976-12-01": "Eid'l Adha (estimated)", "1976-12-08": "Immaculate Conception Day", "1976-12-25": "Christmas Day", "1976-12-30": "Rizal Day", @@ -517,9 +517,9 @@ "1977-06-12": "Independence Day", "1977-08-21": "Ninoy Aquino Day", "1977-08-29": "National Heroes Day", - "1977-09-14": "Eid'l Fitr* (*estimated)", + "1977-09-14": "Eid'l Fitr (estimated)", "1977-11-01": "All Saints' Day", - "1977-11-21": "Eid'l Adha* (*estimated)", + "1977-11-21": "Eid'l Adha (estimated)", "1977-11-30": "Bonifacio Day", "1977-12-08": "Immaculate Conception Day", "1977-12-25": "Christmas Day", @@ -536,9 +536,9 @@ "1978-06-12": "Independence Day", "1978-08-21": "Ninoy Aquino Day", "1978-08-28": "National Heroes Day", - "1978-09-03": "Eid'l Fitr* (*estimated)", + "1978-09-03": "Eid'l Fitr (estimated)", "1978-11-01": "All Saints' Day", - "1978-11-10": "Eid'l Adha* (*estimated)", + "1978-11-10": "Eid'l Adha (estimated)", "1978-11-30": "Bonifacio Day", "1978-12-08": "Immaculate Conception Day", "1978-12-25": "Christmas Day", @@ -554,9 +554,9 @@ "1979-05-01": "Labour Day", "1979-06-12": "Independence Day", "1979-08-21": "Ninoy Aquino Day", - "1979-08-23": "Eid'l Fitr* (*estimated)", + "1979-08-23": "Eid'l Fitr (estimated)", "1979-08-27": "National Heroes Day", - "1979-10-31": "Eid'l Adha* (*estimated)", + "1979-10-31": "Eid'l Adha (estimated)", "1979-11-01": "All Saints' Day", "1979-11-30": "Bonifacio Day", "1979-12-08": "Immaculate Conception Day", @@ -572,10 +572,10 @@ "1980-04-09": "Day of Valor", "1980-05-01": "Labour Day", "1980-06-12": "Independence Day", - "1980-08-12": "Eid'l Fitr* (*estimated)", + "1980-08-12": "Eid'l Fitr (estimated)", "1980-08-21": "Ninoy Aquino Day", "1980-08-25": "National Heroes Day", - "1980-10-19": "Eid'l Adha* (*estimated)", + "1980-10-19": "Eid'l Adha (estimated)", "1980-11-01": "All Saints' Day", "1980-11-30": "Bonifacio Day", "1980-12-08": "Immaculate Conception Day", @@ -591,10 +591,10 @@ "1981-04-18": "Black Saturday", "1981-05-01": "Labour Day", "1981-06-12": "Independence Day", - "1981-08-01": "Eid'l Fitr* (*estimated)", + "1981-08-01": "Eid'l Fitr (estimated)", "1981-08-21": "Ninoy Aquino Day", "1981-08-31": "National Heroes Day", - "1981-10-08": "Eid'l Adha* (*estimated)", + "1981-10-08": "Eid'l Adha (estimated)", "1981-11-01": "All Saints' Day", "1981-11-30": "Bonifacio Day", "1981-12-08": "Immaculate Conception Day", @@ -609,10 +609,10 @@ "1982-04-10": "Black Saturday", "1982-05-01": "Labour Day", "1982-06-12": "Independence Day", - "1982-07-21": "Eid'l Fitr* (*estimated)", + "1982-07-21": "Eid'l Fitr (estimated)", "1982-08-21": "Ninoy Aquino Day", "1982-08-30": "National Heroes Day", - "1982-09-27": "Eid'l Adha* (*estimated)", + "1982-09-27": "Eid'l Adha (estimated)", "1982-11-01": "All Saints' Day", "1982-11-30": "Bonifacio Day", "1982-12-08": "Immaculate Conception Day", @@ -628,10 +628,10 @@ "1983-04-09": "Day of Valor", "1983-05-01": "Labour Day", "1983-06-12": "Independence Day", - "1983-07-11": "Eid'l Fitr* (*estimated)", + "1983-07-11": "Eid'l Fitr (estimated)", "1983-08-21": "Ninoy Aquino Day", "1983-08-29": "National Heroes Day", - "1983-09-17": "Eid'l Adha* (*estimated)", + "1983-09-17": "Eid'l Adha (estimated)", "1983-11-01": "All Saints' Day", "1983-11-30": "Bonifacio Day", "1983-12-08": "Immaculate Conception Day", @@ -647,10 +647,10 @@ "1984-04-21": "Black Saturday", "1984-05-01": "Labour Day", "1984-06-12": "Independence Day", - "1984-06-30": "Eid'l Fitr* (*estimated)", + "1984-06-30": "Eid'l Fitr (estimated)", "1984-08-21": "Ninoy Aquino Day", "1984-08-27": "National Heroes Day", - "1984-09-05": "Eid'l Adha* (*estimated)", + "1984-09-05": "Eid'l Adha (estimated)", "1984-11-01": "All Saints' Day", "1984-11-30": "Bonifacio Day", "1984-12-08": "Immaculate Conception Day", @@ -666,9 +666,9 @@ "1985-04-09": "Day of Valor", "1985-05-01": "Labour Day", "1985-06-12": "Independence Day", - "1985-06-19": "Eid'l Fitr* (*estimated)", + "1985-06-19": "Eid'l Fitr (estimated)", "1985-08-21": "Ninoy Aquino Day", - "1985-08-26": "Eid'l Adha* (*estimated); National Heroes Day", + "1985-08-26": "Eid'l Adha (estimated); National Heroes Day", "1985-11-01": "All Saints' Day", "1985-11-30": "Bonifacio Day", "1985-12-08": "Immaculate Conception Day", @@ -683,9 +683,9 @@ "1986-03-29": "Black Saturday", "1986-04-09": "Day of Valor", "1986-05-01": "Labour Day", - "1986-06-08": "Eid'l Fitr* (*estimated)", + "1986-06-08": "Eid'l Fitr (estimated)", "1986-06-12": "Independence Day", - "1986-08-15": "Eid'l Adha* (*estimated)", + "1986-08-15": "Eid'l Adha (estimated)", "1986-08-21": "Ninoy Aquino Day", "1986-08-25": "National Heroes Day", "1986-11-01": "All Saints' Day", @@ -702,9 +702,9 @@ "1987-04-17": "Good Friday", "1987-04-18": "Black Saturday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid'l Fitr* (*estimated)", + "1987-05-28": "Eid'l Fitr (estimated)", "1987-06-12": "Independence Day", - "1987-08-04": "Eid'l Adha* (*estimated)", + "1987-08-04": "Eid'l Adha (estimated)", "1987-08-21": "Ninoy Aquino Day", "1987-08-31": "National Heroes Day", "1987-11-01": "All Saints' Day", @@ -721,9 +721,9 @@ "1988-04-02": "Black Saturday", "1988-04-09": "Day of Valor", "1988-05-01": "Labour Day", - "1988-05-16": "Eid'l Fitr* (*estimated)", + "1988-05-16": "Eid'l Fitr (estimated)", "1988-06-12": "Independence Day", - "1988-07-23": "Eid'l Adha* (*estimated)", + "1988-07-23": "Eid'l Adha (estimated)", "1988-08-21": "Ninoy Aquino Day", "1988-08-29": "National Heroes Day", "1988-11-01": "All Saints' Day", @@ -740,9 +740,9 @@ "1989-03-25": "Black Saturday", "1989-04-09": "Day of Valor", "1989-05-01": "Labour Day", - "1989-05-06": "Eid'l Fitr* (*estimated)", + "1989-05-06": "Eid'l Fitr (estimated)", "1989-06-12": "Independence Day", - "1989-07-13": "Eid'l Adha* (*estimated)", + "1989-07-13": "Eid'l Adha (estimated)", "1989-08-21": "Ninoy Aquino Day", "1989-08-28": "National Heroes Day", "1989-11-01": "All Saints' Day", @@ -758,10 +758,10 @@ "1990-04-12": "Maundy Thursday", "1990-04-13": "Good Friday", "1990-04-14": "Black Saturday", - "1990-04-26": "Eid'l Fitr* (*estimated)", + "1990-04-26": "Eid'l Fitr (estimated)", "1990-05-01": "Labour Day", "1990-06-12": "Independence Day", - "1990-07-02": "Eid'l Adha* (*estimated)", + "1990-07-02": "Eid'l Adha (estimated)", "1990-08-21": "Ninoy Aquino Day", "1990-08-27": "National Heroes Day", "1990-11-01": "All Saints' Day", @@ -777,10 +777,10 @@ "1991-03-29": "Good Friday", "1991-03-30": "Black Saturday", "1991-04-09": "Day of Valor", - "1991-04-15": "Eid'l Fitr* (*estimated)", + "1991-04-15": "Eid'l Fitr (estimated)", "1991-05-01": "Labour Day", "1991-06-12": "Independence Day", - "1991-06-22": "Eid'l Adha* (*estimated)", + "1991-06-22": "Eid'l Adha (estimated)", "1991-08-21": "Ninoy Aquino Day", "1991-08-26": "National Heroes Day", "1991-11-01": "All Saints' Day", @@ -792,13 +792,13 @@ "1992-01-01": "New Year's Day", "1992-02-04": "Chinese New Year", "1992-02-25": "EDSA Revolution Anniversary", - "1992-04-04": "Eid'l Fitr* (*estimated)", + "1992-04-04": "Eid'l Fitr (estimated)", "1992-04-09": "Day of Valor", "1992-04-16": "Maundy Thursday", "1992-04-17": "Good Friday", "1992-04-18": "Black Saturday", "1992-05-01": "Labour Day", - "1992-06-11": "Eid'l Adha* (*estimated)", + "1992-06-11": "Eid'l Adha (estimated)", "1992-06-12": "Independence Day", "1992-08-21": "Ninoy Aquino Day", "1992-08-31": "National Heroes Day", @@ -811,12 +811,12 @@ "1993-01-01": "New Year's Day", "1993-01-23": "Chinese New Year", "1993-02-25": "EDSA Revolution Anniversary", - "1993-03-24": "Eid'l Fitr* (*estimated)", + "1993-03-24": "Eid'l Fitr (estimated)", "1993-04-08": "Maundy Thursday", "1993-04-09": "Day of Valor; Good Friday", "1993-04-10": "Black Saturday", "1993-05-01": "Labour Day", - "1993-05-31": "Eid'l Adha* (*estimated)", + "1993-05-31": "Eid'l Adha (estimated)", "1993-06-12": "Independence Day", "1993-08-21": "Ninoy Aquino Day", "1993-08-30": "National Heroes Day", @@ -829,13 +829,13 @@ "1994-01-01": "New Year's Day", "1994-02-10": "Chinese New Year", "1994-02-25": "EDSA Revolution Anniversary", - "1994-03-13": "Eid'l Fitr* (*estimated)", + "1994-03-13": "Eid'l Fitr (estimated)", "1994-03-31": "Maundy Thursday", "1994-04-01": "Good Friday", "1994-04-02": "Black Saturday", "1994-04-09": "Day of Valor", "1994-05-01": "Labour Day", - "1994-05-20": "Eid'l Adha* (*estimated)", + "1994-05-20": "Eid'l Adha (estimated)", "1994-06-12": "Independence Day", "1994-08-21": "Ninoy Aquino Day", "1994-08-29": "National Heroes Day", @@ -848,13 +848,13 @@ "1995-01-01": "New Year's Day", "1995-01-31": "Chinese New Year", "1995-02-25": "EDSA Revolution Anniversary", - "1995-03-02": "Eid'l Fitr* (*estimated)", + "1995-03-02": "Eid'l Fitr (estimated)", "1995-04-09": "Day of Valor", "1995-04-13": "Maundy Thursday", "1995-04-14": "Good Friday", "1995-04-15": "Black Saturday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid'l Adha* (*estimated)", + "1995-05-09": "Eid'l Adha (estimated)", "1995-06-12": "Independence Day", "1995-08-21": "Ninoy Aquino Day", "1995-08-28": "National Heroes Day", @@ -865,13 +865,13 @@ "1995-12-30": "Rizal Day", "1995-12-31": "New Year's Eve", "1996-01-01": "New Year's Day", - "1996-02-19": "Chinese New Year; Eid'l Fitr* (*estimated)", + "1996-02-19": "Chinese New Year; Eid'l Fitr (estimated)", "1996-02-25": "EDSA Revolution Anniversary", "1996-04-04": "Maundy Thursday", "1996-04-05": "Good Friday", "1996-04-06": "Black Saturday", "1996-04-09": "Day of Valor", - "1996-04-27": "Eid'l Adha* (*estimated)", + "1996-04-27": "Eid'l Adha (estimated)", "1996-05-01": "Labour Day", "1996-06-12": "Independence Day", "1996-08-21": "Ninoy Aquino Day", @@ -884,13 +884,13 @@ "1996-12-31": "New Year's Eve", "1997-01-01": "New Year's Day", "1997-02-07": "Chinese New Year", - "1997-02-08": "Eid'l Fitr* (*estimated)", + "1997-02-08": "Eid'l Fitr (estimated)", "1997-02-25": "EDSA Revolution Anniversary", "1997-03-27": "Maundy Thursday", "1997-03-28": "Good Friday", "1997-03-29": "Black Saturday", "1997-04-09": "Day of Valor", - "1997-04-17": "Eid'l Adha* (*estimated)", + "1997-04-17": "Eid'l Adha (estimated)", "1997-05-01": "Labour Day", "1997-06-12": "Independence Day", "1997-08-21": "Ninoy Aquino Day", @@ -903,9 +903,9 @@ "1997-12-31": "New Year's Eve", "1998-01-01": "New Year's Day", "1998-01-28": "Chinese New Year", - "1998-01-29": "Eid'l Fitr* (*estimated)", + "1998-01-29": "Eid'l Fitr (estimated)", "1998-02-25": "EDSA Revolution Anniversary", - "1998-04-07": "Eid'l Adha* (*estimated)", + "1998-04-07": "Eid'l Adha (estimated)", "1998-04-09": "Day of Valor; Maundy Thursday", "1998-04-10": "Good Friday", "1998-04-11": "Black Saturday", @@ -920,10 +920,10 @@ "1998-12-30": "Rizal Day", "1998-12-31": "New Year's Eve", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid'l Fitr* (*estimated)", + "1999-01-18": "Eid'l Fitr (estimated)", "1999-02-16": "Chinese New Year", "1999-02-25": "EDSA Revolution Anniversary", - "1999-03-27": "Eid'l Adha* (*estimated)", + "1999-03-27": "Eid'l Adha (estimated)", "1999-04-01": "Maundy Thursday", "1999-04-02": "Good Friday", "1999-04-03": "Black Saturday", @@ -939,10 +939,10 @@ "1999-12-30": "Rizal Day", "1999-12-31": "New Year's Eve", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid'l Fitr* (*estimated)", + "2000-01-08": "Eid'l Fitr (estimated)", "2000-02-05": "Chinese New Year", "2000-02-25": "EDSA Revolution Anniversary", - "2000-03-16": "Eid'l Adha* (*estimated)", + "2000-03-16": "Eid'l Adha (estimated)", "2000-04-09": "Day of Valor", "2000-04-20": "Maundy Thursday", "2000-04-21": "Good Friday", @@ -955,13 +955,13 @@ "2000-11-30": "Bonifacio Day", "2000-12-08": "Immaculate Conception Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid'l Fitr* (*estimated)", + "2000-12-27": "Eid'l Fitr (estimated)", "2000-12-30": "Rizal Day", "2000-12-31": "New Year's Eve", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year", "2001-02-25": "EDSA Revolution Anniversary", - "2001-03-05": "Eid'l Adha* (*estimated)", + "2001-03-05": "Eid'l Adha (estimated)", "2001-04-09": "Day of Valor", "2001-04-12": "Maundy Thursday", "2001-04-13": "Good Friday", @@ -973,13 +973,13 @@ "2001-11-01": "All Saints' Day", "2001-11-30": "Bonifacio Day", "2001-12-08": "Immaculate Conception Day", - "2001-12-16": "Eid'l Fitr* (*estimated)", + "2001-12-16": "Eid'l Fitr (estimated)", "2001-12-25": "Christmas Day", "2001-12-30": "Rizal Day", "2001-12-31": "New Year's Eve", "2002-01-01": "New Year's Day", "2002-02-12": "Chinese New Year", - "2002-02-22": "Eid'l Adha* (*estimated)", + "2002-02-22": "Eid'l Adha (estimated)", "2002-02-25": "EDSA Revolution Anniversary", "2002-03-28": "Maundy Thursday", "2002-03-29": "Good Friday", @@ -991,14 +991,14 @@ "2002-08-26": "National Heroes Day", "2002-11-01": "All Saints' Day", "2002-11-30": "Bonifacio Day", - "2002-12-05": "Eid'l Fitr* (*estimated)", + "2002-12-05": "Eid'l Fitr (estimated)", "2002-12-08": "Immaculate Conception Day", "2002-12-25": "Christmas Day", "2002-12-30": "Rizal Day", "2002-12-31": "New Year's Eve", "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", - "2003-02-11": "Eid'l Adha* (*estimated)", + "2003-02-11": "Eid'l Adha (estimated)", "2003-02-25": "EDSA Revolution Anniversary", "2003-04-09": "Day of Valor", "2003-04-17": "Maundy Thursday", @@ -1009,7 +1009,7 @@ "2003-08-21": "Ninoy Aquino Day", "2003-08-25": "National Heroes Day", "2003-11-01": "All Saints' Day", - "2003-11-25": "Eid'l Fitr* (*estimated)", + "2003-11-25": "Eid'l Fitr (estimated)", "2003-11-30": "Bonifacio Day", "2003-12-08": "Immaculate Conception Day", "2003-12-25": "Christmas Day", @@ -1017,7 +1017,7 @@ "2003-12-31": "New Year's Eve", "2004-01-01": "New Year's Day", "2004-01-22": "Chinese New Year", - "2004-02-01": "Eid'l Adha* (*estimated)", + "2004-02-01": "Eid'l Adha (estimated)", "2004-02-25": "EDSA Revolution Anniversary", "2004-04-08": "Maundy Thursday", "2004-04-09": "Day of Valor; Good Friday", @@ -1027,14 +1027,14 @@ "2004-08-21": "Ninoy Aquino Day", "2004-08-30": "National Heroes Day", "2004-11-01": "All Saints' Day", - "2004-11-14": "Eid'l Fitr* (*estimated)", + "2004-11-14": "Eid'l Fitr (estimated)", "2004-11-30": "Bonifacio Day", "2004-12-08": "Immaculate Conception Day", "2004-12-25": "Christmas Day", "2004-12-30": "Rizal Day", "2004-12-31": "New Year's Eve", "2005-01-01": "New Year's Day", - "2005-01-21": "Eid'l Adha* (*estimated)", + "2005-01-21": "Eid'l Adha (estimated)", "2005-02-09": "Chinese New Year", "2005-02-25": "EDSA Revolution Anniversary", "2005-03-24": "Maundy Thursday", @@ -1046,14 +1046,14 @@ "2005-08-21": "Ninoy Aquino Day", "2005-08-29": "National Heroes Day", "2005-11-01": "All Saints' Day", - "2005-11-03": "Eid'l Fitr* (*estimated)", + "2005-11-03": "Eid'l Fitr (estimated)", "2005-11-30": "Bonifacio Day", "2005-12-08": "Immaculate Conception Day", "2005-12-25": "Christmas Day", "2005-12-30": "Rizal Day", "2005-12-31": "New Year's Eve", "2006-01-01": "New Year's Day", - "2006-01-10": "Eid'l Adha* (*estimated)", + "2006-01-10": "Eid'l Adha (estimated)", "2006-01-29": "Chinese New Year", "2006-02-25": "EDSA Revolution Anniversary", "2006-04-09": "Day of Valor", @@ -1064,13 +1064,13 @@ "2006-06-12": "Independence Day", "2006-08-21": "Ninoy Aquino Day", "2006-08-28": "National Heroes Day", - "2006-10-23": "Eid'l Fitr* (*estimated)", + "2006-10-23": "Eid'l Fitr (estimated)", "2006-11-01": "All Saints' Day", "2006-11-30": "Bonifacio Day", "2006-12-08": "Immaculate Conception Day", "2006-12-25": "Christmas Day", "2006-12-30": "Rizal Day", - "2006-12-31": "Eid'l Adha* (*estimated); New Year's Eve", + "2006-12-31": "Eid'l Adha (estimated); New Year's Eve", "2007-01-01": "New Year's Day", "2007-02-18": "Chinese New Year", "2007-02-25": "EDSA Revolution Anniversary", @@ -1082,11 +1082,11 @@ "2007-06-12": "Independence Day", "2007-08-21": "Ninoy Aquino Day", "2007-08-27": "National Heroes Day", - "2007-10-13": "Eid'l Fitr* (*estimated)", + "2007-10-13": "Eid'l Fitr (estimated)", "2007-11-01": "All Saints' Day", "2007-11-30": "Bonifacio Day", "2007-12-08": "Immaculate Conception Day", - "2007-12-20": "Eid'l Adha* (*estimated)", + "2007-12-20": "Eid'l Adha (estimated)", "2007-12-25": "Christmas Day", "2007-12-30": "Rizal Day", "2007-12-31": "New Year's Eve", @@ -1101,10 +1101,10 @@ "2008-06-12": "Independence Day", "2008-08-21": "Ninoy Aquino Day", "2008-08-25": "National Heroes Day", - "2008-10-01": "Eid'l Fitr* (*estimated)", + "2008-10-01": "Eid'l Fitr (estimated)", "2008-11-01": "All Saints' Day", "2008-11-30": "Bonifacio Day", - "2008-12-08": "Eid'l Adha* (*estimated); Immaculate Conception Day", + "2008-12-08": "Eid'l Adha (estimated); Immaculate Conception Day", "2008-12-25": "Christmas Day", "2008-12-30": "Rizal Day", "2008-12-31": "New Year's Eve", @@ -1118,9 +1118,9 @@ "2009-06-12": "Independence Day", "2009-08-21": "Ninoy Aquino Day", "2009-08-31": "National Heroes Day", - "2009-09-20": "Eid'l Fitr* (*estimated)", + "2009-09-20": "Eid'l Fitr (estimated)", "2009-11-01": "All Saints' Day", - "2009-11-27": "Eid'l Adha* (*estimated)", + "2009-11-27": "Eid'l Adha (estimated)", "2009-11-30": "Bonifacio Day", "2009-12-08": "Immaculate Conception Day", "2009-12-25": "Christmas Day", @@ -1137,9 +1137,9 @@ "2010-06-12": "Independence Day", "2010-08-21": "Ninoy Aquino Day", "2010-08-30": "National Heroes Day", - "2010-09-10": "Eid'l Fitr* (*estimated)", + "2010-09-10": "Eid'l Fitr (estimated)", "2010-11-01": "All Saints' Day", - "2010-11-16": "Eid'l Adha* (*estimated)", + "2010-11-16": "Eid'l Adha (estimated)", "2010-11-30": "Bonifacio Day", "2010-12-08": "Immaculate Conception Day", "2010-12-25": "Christmas Day", @@ -1156,9 +1156,9 @@ "2011-06-12": "Independence Day", "2011-08-21": "Ninoy Aquino Day", "2011-08-29": "National Heroes Day", - "2011-08-30": "Eid'l Fitr* (*estimated)", + "2011-08-30": "Eid'l Fitr (estimated)", "2011-11-01": "All Saints' Day", - "2011-11-06": "Eid'l Adha* (*estimated)", + "2011-11-06": "Eid'l Adha (estimated)", "2011-11-30": "Bonifacio Day", "2011-12-08": "Immaculate Conception Day", "2011-12-25": "Christmas Day", @@ -1173,10 +1173,10 @@ "2012-04-09": "Day of Valor", "2012-05-01": "Labour Day", "2012-06-12": "Independence Day", - "2012-08-19": "Eid'l Fitr* (*estimated)", + "2012-08-19": "Eid'l Fitr (estimated)", "2012-08-21": "Ninoy Aquino Day", "2012-08-27": "National Heroes Day", - "2012-10-26": "Eid'l Adha* (*estimated)", + "2012-10-26": "Eid'l Adha (estimated)", "2012-11-01": "All Saints' Day", "2012-11-30": "Bonifacio Day", "2012-12-08": "Immaculate Conception Day", @@ -1192,10 +1192,10 @@ "2013-04-09": "Day of Valor", "2013-05-01": "Labour Day", "2013-06-12": "Independence Day", - "2013-08-08": "Eid'l Fitr* (*estimated)", + "2013-08-08": "Eid'l Fitr (estimated)", "2013-08-21": "Ninoy Aquino Day", "2013-08-26": "National Heroes Day", - "2013-10-15": "Eid'l Adha* (*estimated)", + "2013-10-15": "Eid'l Adha (estimated)", "2013-11-01": "All Saints' Day", "2013-11-30": "Bonifacio Day", "2013-12-08": "Immaculate Conception Day", @@ -1211,10 +1211,10 @@ "2014-04-19": "Black Saturday", "2014-05-01": "Labour Day", "2014-06-12": "Independence Day", - "2014-07-28": "Eid'l Fitr* (*estimated)", + "2014-07-28": "Eid'l Fitr (estimated)", "2014-08-21": "Ninoy Aquino Day", "2014-08-25": "National Heroes Day", - "2014-10-04": "Eid'l Adha* (*estimated)", + "2014-10-04": "Eid'l Adha (estimated)", "2014-11-01": "All Saints' Day", "2014-11-30": "Bonifacio Day", "2014-12-08": "Immaculate Conception Day", @@ -1230,10 +1230,10 @@ "2015-04-09": "Day of Valor", "2015-05-01": "Labour Day", "2015-06-12": "Independence Day", - "2015-07-17": "Eid'l Fitr* (*estimated)", + "2015-07-17": "Eid'l Fitr (estimated)", "2015-08-21": "Ninoy Aquino Day", "2015-08-31": "National Heroes Day", - "2015-09-23": "Eid'l Adha* (*estimated)", + "2015-09-23": "Eid'l Adha (estimated)", "2015-11-01": "All Saints' Day", "2015-11-30": "Bonifacio Day", "2015-12-08": "Immaculate Conception Day", @@ -1249,10 +1249,10 @@ "2016-04-09": "Day of Valor", "2016-05-01": "Labour Day", "2016-06-12": "Independence Day", - "2016-07-06": "Eid'l Fitr* (*estimated)", + "2016-07-06": "Eid'l Fitr (estimated)", "2016-08-21": "Ninoy Aquino Day", "2016-08-29": "National Heroes Day", - "2016-09-11": "Eid'l Adha* (*estimated)", + "2016-09-11": "Eid'l Adha (estimated)", "2016-11-01": "All Saints' Day", "2016-11-30": "Bonifacio Day", "2016-12-08": "Immaculate Conception Day", @@ -1268,10 +1268,10 @@ "2017-04-15": "Black Saturday", "2017-05-01": "Labour Day", "2017-06-12": "Independence Day", - "2017-06-25": "Eid'l Fitr* (*estimated)", + "2017-06-25": "Eid'l Fitr (estimated)", "2017-08-21": "Ninoy Aquino Day", "2017-08-28": "National Heroes Day", - "2017-09-01": "Eid'l Adha* (*estimated)", + "2017-09-01": "Eid'l Adha (estimated)", "2017-11-01": "All Saints' Day", "2017-11-30": "Bonifacio Day", "2017-12-08": "Immaculate Conception Day", @@ -1287,8 +1287,8 @@ "2018-04-09": "Day of Valor", "2018-05-01": "Labour Day", "2018-06-12": "Independence Day", - "2018-06-15": "Eid'l Fitr* (*estimated)", - "2018-08-21": "Eid'l Adha* (*estimated); Ninoy Aquino Day", + "2018-06-15": "Eid'l Fitr (estimated)", + "2018-08-21": "Eid'l Adha (estimated); Ninoy Aquino Day", "2018-08-27": "National Heroes Day", "2018-11-01": "All Saints' Day", "2018-11-30": "Bonifacio Day", @@ -1304,9 +1304,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Black Saturday", "2019-05-01": "Labour Day", - "2019-06-04": "Eid'l Fitr* (*estimated)", + "2019-06-04": "Eid'l Fitr (estimated)", "2019-06-12": "Independence Day", - "2019-08-11": "Eid'l Adha* (*estimated)", + "2019-08-11": "Eid'l Adha (estimated)", "2019-08-21": "Ninoy Aquino Day", "2019-08-26": "National Heroes Day", "2019-11-01": "All Saints' Day", @@ -1322,9 +1322,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Black Saturday", "2020-05-01": "Labour Day", - "2020-05-24": "Eid'l Fitr* (*estimated)", + "2020-05-24": "Eid'l Fitr (estimated)", "2020-06-12": "Independence Day", - "2020-07-31": "Eid'l Adha* (*estimated)", + "2020-07-31": "Eid'l Adha (estimated)", "2020-08-21": "Ninoy Aquino Day", "2020-08-31": "National Heroes Day", "2020-11-01": "All Saints' Day", @@ -1341,9 +1341,9 @@ "2021-04-03": "Black Saturday", "2021-04-09": "Day of Valor", "2021-05-01": "Labour Day", - "2021-05-13": "Eid'l Fitr* (*estimated)", + "2021-05-13": "Eid'l Fitr (estimated)", "2021-06-12": "Independence Day", - "2021-07-20": "Eid'l Adha* (*estimated)", + "2021-07-20": "Eid'l Adha (estimated)", "2021-08-21": "Ninoy Aquino Day", "2021-08-30": "National Heroes Day", "2021-11-01": "All Saints' Day", @@ -1360,9 +1360,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Black Saturday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid'l Fitr* (*estimated)", + "2022-05-02": "Eid'l Fitr (estimated)", "2022-06-12": "Independence Day", - "2022-07-09": "Eid'l Adha* (*estimated)", + "2022-07-09": "Eid'l Adha (estimated)", "2022-08-21": "Ninoy Aquino Day", "2022-08-29": "National Heroes Day", "2022-11-01": "All Saints' Day", @@ -1378,10 +1378,10 @@ "2023-04-07": "Good Friday", "2023-04-08": "Black Saturday", "2023-04-09": "Day of Valor", - "2023-04-21": "Eid'l Fitr* (*estimated)", + "2023-04-21": "Eid'l Fitr (estimated)", "2023-05-01": "Labour Day", "2023-06-12": "Independence Day", - "2023-06-28": "Eid'l Adha* (*estimated)", + "2023-06-28": "Eid'l Adha (estimated)", "2023-08-21": "Ninoy Aquino Day", "2023-08-28": "National Heroes Day", "2023-11-01": "All Saints' Day", @@ -1397,10 +1397,10 @@ "2024-03-29": "Good Friday", "2024-03-30": "Black Saturday", "2024-04-09": "Day of Valor", - "2024-04-10": "Eid'l Fitr* (*estimated)", + "2024-04-10": "Eid'l Fitr (estimated)", "2024-05-01": "Labour Day", "2024-06-12": "Independence Day", - "2024-06-16": "Eid'l Adha* (*estimated)", + "2024-06-16": "Eid'l Adha (estimated)", "2024-08-21": "Ninoy Aquino Day", "2024-08-26": "National Heroes Day", "2024-11-01": "All Saints' Day", @@ -1412,13 +1412,13 @@ "2025-01-01": "New Year's Day", "2025-01-29": "Chinese New Year", "2025-02-25": "EDSA Revolution Anniversary", - "2025-03-30": "Eid'l Fitr* (*estimated)", + "2025-03-30": "Eid'l Fitr (estimated)", "2025-04-09": "Day of Valor", "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-04-19": "Black Saturday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid'l Adha* (*estimated)", + "2025-06-06": "Eid'l Adha (estimated)", "2025-06-12": "Independence Day", "2025-08-21": "Ninoy Aquino Day", "2025-08-25": "National Heroes Day", @@ -1431,13 +1431,13 @@ "2026-01-01": "New Year's Day", "2026-02-17": "Chinese New Year", "2026-02-25": "EDSA Revolution Anniversary", - "2026-03-20": "Eid'l Fitr* (*estimated)", + "2026-03-20": "Eid'l Fitr (estimated)", "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-04-04": "Black Saturday", "2026-04-09": "Day of Valor", "2026-05-01": "Labour Day", - "2026-05-27": "Eid'l Adha* (*estimated)", + "2026-05-27": "Eid'l Adha (estimated)", "2026-06-12": "Independence Day", "2026-08-21": "Ninoy Aquino Day", "2026-08-31": "National Heroes Day", @@ -1450,13 +1450,13 @@ "2027-01-01": "New Year's Day", "2027-02-06": "Chinese New Year", "2027-02-25": "EDSA Revolution Anniversary", - "2027-03-09": "Eid'l Fitr* (*estimated)", + "2027-03-09": "Eid'l Fitr (estimated)", "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-03-27": "Black Saturday", "2027-04-09": "Day of Valor", "2027-05-01": "Labour Day", - "2027-05-16": "Eid'l Adha* (*estimated)", + "2027-05-16": "Eid'l Adha (estimated)", "2027-06-12": "Independence Day", "2027-08-21": "Ninoy Aquino Day", "2027-08-30": "National Heroes Day", @@ -1469,13 +1469,13 @@ "2028-01-01": "New Year's Day", "2028-01-26": "Chinese New Year", "2028-02-25": "EDSA Revolution Anniversary", - "2028-02-26": "Eid'l Fitr* (*estimated)", + "2028-02-26": "Eid'l Fitr (estimated)", "2028-04-09": "Day of Valor", "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-04-15": "Black Saturday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid'l Adha* (*estimated)", + "2028-05-05": "Eid'l Adha (estimated)", "2028-06-12": "Independence Day", "2028-08-21": "Ninoy Aquino Day", "2028-08-28": "National Heroes Day", @@ -1487,13 +1487,13 @@ "2028-12-31": "New Year's Eve", "2029-01-01": "New Year's Day", "2029-02-13": "Chinese New Year", - "2029-02-14": "Eid'l Fitr* (*estimated)", + "2029-02-14": "Eid'l Fitr (estimated)", "2029-02-25": "EDSA Revolution Anniversary", "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-03-31": "Black Saturday", "2029-04-09": "Day of Valor", - "2029-04-24": "Eid'l Adha* (*estimated)", + "2029-04-24": "Eid'l Adha (estimated)", "2029-05-01": "Labour Day", "2029-06-12": "Independence Day", "2029-08-21": "Ninoy Aquino Day", @@ -1506,10 +1506,10 @@ "2029-12-31": "New Year's Eve", "2030-01-01": "New Year's Day", "2030-02-03": "Chinese New Year", - "2030-02-04": "Eid'l Fitr* (*estimated)", + "2030-02-04": "Eid'l Fitr (estimated)", "2030-02-25": "EDSA Revolution Anniversary", "2030-04-09": "Day of Valor", - "2030-04-13": "Eid'l Adha* (*estimated)", + "2030-04-13": "Eid'l Adha (estimated)", "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-04-20": "Black Saturday", @@ -1525,9 +1525,9 @@ "2030-12-31": "New Year's Eve", "2031-01-01": "New Year's Day", "2031-01-23": "Chinese New Year", - "2031-01-24": "Eid'l Fitr* (*estimated)", + "2031-01-24": "Eid'l Fitr (estimated)", "2031-02-25": "EDSA Revolution Anniversary", - "2031-04-02": "Eid'l Adha* (*estimated)", + "2031-04-02": "Eid'l Adha (estimated)", "2031-04-09": "Day of Valor", "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", @@ -1543,10 +1543,10 @@ "2031-12-30": "Rizal Day", "2031-12-31": "New Year's Eve", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid'l Fitr* (*estimated)", + "2032-01-14": "Eid'l Fitr (estimated)", "2032-02-11": "Chinese New Year", "2032-02-25": "EDSA Revolution Anniversary", - "2032-03-22": "Eid'l Adha* (*estimated)", + "2032-03-22": "Eid'l Adha (estimated)", "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-03-27": "Black Saturday", @@ -1562,10 +1562,10 @@ "2032-12-30": "Rizal Day", "2032-12-31": "New Year's Eve", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid'l Fitr* (*estimated)", + "2033-01-02": "Eid'l Fitr (estimated)", "2033-01-31": "Chinese New Year", "2033-02-25": "EDSA Revolution Anniversary", - "2033-03-11": "Eid'l Adha* (*estimated)", + "2033-03-11": "Eid'l Adha (estimated)", "2033-04-09": "Day of Valor", "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", @@ -1577,14 +1577,14 @@ "2033-11-01": "All Saints' Day", "2033-11-30": "Bonifacio Day", "2033-12-08": "Immaculate Conception Day", - "2033-12-23": "Eid'l Fitr* (*estimated)", + "2033-12-23": "Eid'l Fitr (estimated)", "2033-12-25": "Christmas Day", "2033-12-30": "Rizal Day", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", "2034-02-19": "Chinese New Year", "2034-02-25": "EDSA Revolution Anniversary", - "2034-03-01": "Eid'l Adha* (*estimated)", + "2034-03-01": "Eid'l Adha (estimated)", "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-04-08": "Black Saturday", @@ -1596,13 +1596,13 @@ "2034-11-01": "All Saints' Day", "2034-11-30": "Bonifacio Day", "2034-12-08": "Immaculate Conception Day", - "2034-12-12": "Eid'l Fitr* (*estimated)", + "2034-12-12": "Eid'l Fitr (estimated)", "2034-12-25": "Christmas Day", "2034-12-30": "Rizal Day", "2034-12-31": "New Year's Eve", "2035-01-01": "New Year's Day", "2035-02-08": "Chinese New Year", - "2035-02-18": "Eid'l Adha* (*estimated)", + "2035-02-18": "Eid'l Adha (estimated)", "2035-02-25": "EDSA Revolution Anniversary", "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", @@ -1614,14 +1614,14 @@ "2035-08-27": "National Heroes Day", "2035-11-01": "All Saints' Day", "2035-11-30": "Bonifacio Day", - "2035-12-01": "Eid'l Fitr* (*estimated)", + "2035-12-01": "Eid'l Fitr (estimated)", "2035-12-08": "Immaculate Conception Day", "2035-12-25": "Christmas Day", "2035-12-30": "Rizal Day", "2035-12-31": "New Year's Eve", "2036-01-01": "New Year's Day", "2036-01-28": "Chinese New Year", - "2036-02-07": "Eid'l Adha* (*estimated)", + "2036-02-07": "Eid'l Adha (estimated)", "2036-02-25": "EDSA Revolution Anniversary", "2036-04-09": "Day of Valor", "2036-04-10": "Maundy Thursday", @@ -1632,14 +1632,14 @@ "2036-08-21": "Ninoy Aquino Day", "2036-08-25": "National Heroes Day", "2036-11-01": "All Saints' Day", - "2036-11-19": "Eid'l Fitr* (*estimated)", + "2036-11-19": "Eid'l Fitr (estimated)", "2036-11-30": "Bonifacio Day", "2036-12-08": "Immaculate Conception Day", "2036-12-25": "Christmas Day", "2036-12-30": "Rizal Day", "2036-12-31": "New Year's Eve", "2037-01-01": "New Year's Day", - "2037-01-26": "Eid'l Adha* (*estimated)", + "2037-01-26": "Eid'l Adha (estimated)", "2037-02-15": "Chinese New Year", "2037-02-25": "EDSA Revolution Anniversary", "2037-04-02": "Maundy Thursday", @@ -1651,14 +1651,14 @@ "2037-08-21": "Ninoy Aquino Day", "2037-08-31": "National Heroes Day", "2037-11-01": "All Saints' Day", - "2037-11-08": "Eid'l Fitr* (*estimated)", + "2037-11-08": "Eid'l Fitr (estimated)", "2037-11-30": "Bonifacio Day", "2037-12-08": "Immaculate Conception Day", "2037-12-25": "Christmas Day", "2037-12-30": "Rizal Day", "2037-12-31": "New Year's Eve", "2038-01-01": "New Year's Day", - "2038-01-16": "Eid'l Adha* (*estimated)", + "2038-01-16": "Eid'l Adha (estimated)", "2038-02-04": "Chinese New Year", "2038-02-25": "EDSA Revolution Anniversary", "2038-04-09": "Day of Valor", @@ -1669,7 +1669,7 @@ "2038-06-12": "Independence Day", "2038-08-21": "Ninoy Aquino Day", "2038-08-30": "National Heroes Day", - "2038-10-29": "Eid'l Fitr* (*estimated)", + "2038-10-29": "Eid'l Fitr (estimated)", "2038-11-01": "All Saints' Day", "2038-11-30": "Bonifacio Day", "2038-12-08": "Immaculate Conception Day", @@ -1677,7 +1677,7 @@ "2038-12-30": "Rizal Day", "2038-12-31": "New Year's Eve", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid'l Adha* (*estimated)", + "2039-01-05": "Eid'l Adha (estimated)", "2039-01-24": "Chinese New Year", "2039-02-25": "EDSA Revolution Anniversary", "2039-04-07": "Maundy Thursday", @@ -1687,12 +1687,12 @@ "2039-06-12": "Independence Day", "2039-08-21": "Ninoy Aquino Day", "2039-08-29": "National Heroes Day", - "2039-10-19": "Eid'l Fitr* (*estimated)", + "2039-10-19": "Eid'l Fitr (estimated)", "2039-11-01": "All Saints' Day", "2039-11-30": "Bonifacio Day", "2039-12-08": "Immaculate Conception Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid'l Adha* (*estimated)", + "2039-12-26": "Eid'l Adha (estimated)", "2039-12-30": "Rizal Day", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", @@ -1706,11 +1706,11 @@ "2040-06-12": "Independence Day", "2040-08-21": "Ninoy Aquino Day", "2040-08-27": "National Heroes Day", - "2040-10-07": "Eid'l Fitr* (*estimated)", + "2040-10-07": "Eid'l Fitr (estimated)", "2040-11-01": "All Saints' Day", "2040-11-30": "Bonifacio Day", "2040-12-08": "Immaculate Conception Day", - "2040-12-14": "Eid'l Adha* (*estimated)", + "2040-12-14": "Eid'l Adha (estimated)", "2040-12-25": "Christmas Day", "2040-12-30": "Rizal Day", "2040-12-31": "New Year's Eve", @@ -1725,10 +1725,10 @@ "2041-06-12": "Independence Day", "2041-08-21": "Ninoy Aquino Day", "2041-08-26": "National Heroes Day", - "2041-09-26": "Eid'l Fitr* (*estimated)", + "2041-09-26": "Eid'l Fitr (estimated)", "2041-11-01": "All Saints' Day", "2041-11-30": "Bonifacio Day", - "2041-12-04": "Eid'l Adha* (*estimated)", + "2041-12-04": "Eid'l Adha (estimated)", "2041-12-08": "Immaculate Conception Day", "2041-12-25": "Christmas Day", "2041-12-30": "Rizal Day", @@ -1744,9 +1744,9 @@ "2042-06-12": "Independence Day", "2042-08-21": "Ninoy Aquino Day", "2042-08-25": "National Heroes Day", - "2042-09-15": "Eid'l Fitr* (*estimated)", + "2042-09-15": "Eid'l Fitr (estimated)", "2042-11-01": "All Saints' Day", - "2042-11-23": "Eid'l Adha* (*estimated)", + "2042-11-23": "Eid'l Adha (estimated)", "2042-11-30": "Bonifacio Day", "2042-12-08": "Immaculate Conception Day", "2042-12-25": "Christmas Day", @@ -1763,9 +1763,9 @@ "2043-06-12": "Independence Day", "2043-08-21": "Ninoy Aquino Day", "2043-08-31": "National Heroes Day", - "2043-09-04": "Eid'l Fitr* (*estimated)", + "2043-09-04": "Eid'l Fitr (estimated)", "2043-11-01": "All Saints' Day", - "2043-11-12": "Eid'l Adha* (*estimated)", + "2043-11-12": "Eid'l Adha (estimated)", "2043-11-30": "Bonifacio Day", "2043-12-08": "Immaculate Conception Day", "2043-12-25": "Christmas Day", @@ -1781,9 +1781,9 @@ "2044-05-01": "Labour Day", "2044-06-12": "Independence Day", "2044-08-21": "Ninoy Aquino Day", - "2044-08-24": "Eid'l Fitr* (*estimated)", + "2044-08-24": "Eid'l Fitr (estimated)", "2044-08-29": "National Heroes Day", - "2044-10-31": "Eid'l Adha* (*estimated)", + "2044-10-31": "Eid'l Adha (estimated)", "2044-11-01": "All Saints' Day", "2044-11-30": "Bonifacio Day", "2044-12-08": "Immaculate Conception Day", @@ -1799,10 +1799,10 @@ "2045-04-09": "Day of Valor", "2045-05-01": "Labour Day", "2045-06-12": "Independence Day", - "2045-08-14": "Eid'l Fitr* (*estimated)", + "2045-08-14": "Eid'l Fitr (estimated)", "2045-08-21": "Ninoy Aquino Day", "2045-08-28": "National Heroes Day", - "2045-10-21": "Eid'l Adha* (*estimated)", + "2045-10-21": "Eid'l Adha (estimated)", "2045-11-01": "All Saints' Day", "2045-11-30": "Bonifacio Day", "2045-12-08": "Immaculate Conception Day", @@ -1818,10 +1818,10 @@ "2046-04-09": "Day of Valor", "2046-05-01": "Labour Day", "2046-06-12": "Independence Day", - "2046-08-03": "Eid'l Fitr* (*estimated)", + "2046-08-03": "Eid'l Fitr (estimated)", "2046-08-21": "Ninoy Aquino Day", "2046-08-27": "National Heroes Day", - "2046-10-10": "Eid'l Adha* (*estimated)", + "2046-10-10": "Eid'l Adha (estimated)", "2046-11-01": "All Saints' Day", "2046-11-30": "Bonifacio Day", "2046-12-08": "Immaculate Conception Day", @@ -1837,10 +1837,10 @@ "2047-04-13": "Black Saturday", "2047-05-01": "Labour Day", "2047-06-12": "Independence Day", - "2047-07-24": "Eid'l Fitr* (*estimated)", + "2047-07-24": "Eid'l Fitr (estimated)", "2047-08-21": "Ninoy Aquino Day", "2047-08-26": "National Heroes Day", - "2047-09-30": "Eid'l Adha* (*estimated)", + "2047-09-30": "Eid'l Adha (estimated)", "2047-11-01": "All Saints' Day", "2047-11-30": "Bonifacio Day", "2047-12-08": "Immaculate Conception Day", @@ -1856,10 +1856,10 @@ "2048-04-09": "Day of Valor", "2048-05-01": "Labour Day", "2048-06-12": "Independence Day", - "2048-07-12": "Eid'l Fitr* (*estimated)", + "2048-07-12": "Eid'l Fitr (estimated)", "2048-08-21": "Ninoy Aquino Day", "2048-08-31": "National Heroes Day", - "2048-09-19": "Eid'l Adha* (*estimated)", + "2048-09-19": "Eid'l Adha (estimated)", "2048-11-01": "All Saints' Day", "2048-11-30": "Bonifacio Day", "2048-12-08": "Immaculate Conception Day", @@ -1875,10 +1875,10 @@ "2049-04-17": "Black Saturday", "2049-05-01": "Labour Day", "2049-06-12": "Independence Day", - "2049-07-01": "Eid'l Fitr* (*estimated)", + "2049-07-01": "Eid'l Fitr (estimated)", "2049-08-21": "Ninoy Aquino Day", "2049-08-30": "National Heroes Day", - "2049-09-08": "Eid'l Adha* (*estimated)", + "2049-09-08": "Eid'l Adha (estimated)", "2049-11-01": "All Saints' Day", "2049-11-30": "Bonifacio Day", "2049-12-08": "Immaculate Conception Day", @@ -1893,9 +1893,9 @@ "2050-04-09": "Black Saturday; Day of Valor", "2050-05-01": "Labour Day", "2050-06-12": "Independence Day", - "2050-06-20": "Eid'l Fitr* (*estimated)", + "2050-06-20": "Eid'l Fitr (estimated)", "2050-08-21": "Ninoy Aquino Day", - "2050-08-28": "Eid'l Adha* (*estimated)", + "2050-08-28": "Eid'l Adha (estimated)", "2050-08-29": "National Heroes Day", "2050-11-01": "All Saints' Day", "2050-11-30": "Bonifacio Day", diff --git a/snapshots/countries/PK_COMMON.json b/snapshots/countries/PK_COMMON.json index 07c94bda8..c99ac46a0 100644 --- a/snapshots/countries/PK_COMMON.json +++ b/snapshots/countries/PK_COMMON.json @@ -1,767 +1,767 @@ { - "1950-01-01": "Eid Milad-un-Nabi* (*estimated)", - "1950-07-16": "Eid-ul-Fitr* (*estimated)", - "1950-07-17": "Eid-ul-Fitr* (*estimated)", - "1950-07-18": "Eid-ul-Fitr* (*estimated)", + "1950-01-01": "Eid Milad-un-Nabi (estimated)", + "1950-07-16": "Eid-ul-Fitr (estimated)", + "1950-07-17": "Eid-ul-Fitr (estimated)", + "1950-07-18": "Eid-ul-Fitr (estimated)", "1950-08-14": "Independence Day", - "1950-09-23": "Eid-ul-Adha* (*estimated)", - "1950-09-24": "Eid-ul-Adha* (*estimated)", - "1950-09-25": "Eid-ul-Adha* (*estimated)", - "1950-10-21": "Ashura* (*estimated)", - "1950-10-22": "Ashura* (*estimated)", + "1950-09-23": "Eid-ul-Adha (estimated)", + "1950-09-24": "Eid-ul-Adha (estimated)", + "1950-09-25": "Eid-ul-Adha (estimated)", + "1950-10-21": "Ashura (estimated)", + "1950-10-22": "Ashura (estimated)", "1950-11-09": "Iqbal Day", - "1950-12-22": "Eid Milad-un-Nabi* (*estimated)", + "1950-12-22": "Eid Milad-un-Nabi (estimated)", "1950-12-25": "Quaid-e-Azam Day", - "1951-07-06": "Eid-ul-Fitr* (*estimated)", - "1951-07-07": "Eid-ul-Fitr* (*estimated)", - "1951-07-08": "Eid-ul-Fitr* (*estimated)", + "1951-07-06": "Eid-ul-Fitr (estimated)", + "1951-07-07": "Eid-ul-Fitr (estimated)", + "1951-07-08": "Eid-ul-Fitr (estimated)", "1951-08-14": "Independence Day", - "1951-09-12": "Eid-ul-Adha* (*estimated)", - "1951-09-13": "Eid-ul-Adha* (*estimated)", - "1951-09-14": "Eid-ul-Adha* (*estimated)", - "1951-10-10": "Ashura* (*estimated)", - "1951-10-11": "Ashura* (*estimated)", + "1951-09-12": "Eid-ul-Adha (estimated)", + "1951-09-13": "Eid-ul-Adha (estimated)", + "1951-09-14": "Eid-ul-Adha (estimated)", + "1951-10-10": "Ashura (estimated)", + "1951-10-11": "Ashura (estimated)", "1951-11-09": "Iqbal Day", - "1951-12-11": "Eid Milad-un-Nabi* (*estimated)", + "1951-12-11": "Eid Milad-un-Nabi (estimated)", "1951-12-25": "Quaid-e-Azam Day", - "1952-06-23": "Eid-ul-Fitr* (*estimated)", - "1952-06-24": "Eid-ul-Fitr* (*estimated)", - "1952-06-25": "Eid-ul-Fitr* (*estimated)", + "1952-06-23": "Eid-ul-Fitr (estimated)", + "1952-06-24": "Eid-ul-Fitr (estimated)", + "1952-06-25": "Eid-ul-Fitr (estimated)", "1952-08-14": "Independence Day", - "1952-08-31": "Eid-ul-Adha* (*estimated)", - "1952-09-01": "Eid-ul-Adha* (*estimated)", - "1952-09-02": "Eid-ul-Adha* (*estimated)", - "1952-09-29": "Ashura* (*estimated)", - "1952-09-30": "Ashura* (*estimated)", + "1952-08-31": "Eid-ul-Adha (estimated)", + "1952-09-01": "Eid-ul-Adha (estimated)", + "1952-09-02": "Eid-ul-Adha (estimated)", + "1952-09-29": "Ashura (estimated)", + "1952-09-30": "Ashura (estimated)", "1952-11-09": "Iqbal Day", - "1952-11-30": "Eid Milad-un-Nabi* (*estimated)", + "1952-11-30": "Eid Milad-un-Nabi (estimated)", "1952-12-25": "Quaid-e-Azam Day", - "1953-06-13": "Eid-ul-Fitr* (*estimated)", - "1953-06-14": "Eid-ul-Fitr* (*estimated)", - "1953-06-15": "Eid-ul-Fitr* (*estimated)", + "1953-06-13": "Eid-ul-Fitr (estimated)", + "1953-06-14": "Eid-ul-Fitr (estimated)", + "1953-06-15": "Eid-ul-Fitr (estimated)", "1953-08-14": "Independence Day", - "1953-08-20": "Eid-ul-Adha* (*estimated)", - "1953-08-21": "Eid-ul-Adha* (*estimated)", - "1953-08-22": "Eid-ul-Adha* (*estimated)", - "1953-09-18": "Ashura* (*estimated)", - "1953-09-19": "Ashura* (*estimated)", + "1953-08-20": "Eid-ul-Adha (estimated)", + "1953-08-21": "Eid-ul-Adha (estimated)", + "1953-08-22": "Eid-ul-Adha (estimated)", + "1953-09-18": "Ashura (estimated)", + "1953-09-19": "Ashura (estimated)", "1953-11-09": "Iqbal Day", - "1953-11-19": "Eid Milad-un-Nabi* (*estimated)", + "1953-11-19": "Eid Milad-un-Nabi (estimated)", "1953-12-25": "Quaid-e-Azam Day", - "1954-06-02": "Eid-ul-Fitr* (*estimated)", - "1954-06-03": "Eid-ul-Fitr* (*estimated)", - "1954-06-04": "Eid-ul-Fitr* (*estimated)", - "1954-08-09": "Eid-ul-Adha* (*estimated)", - "1954-08-10": "Eid-ul-Adha* (*estimated)", - "1954-08-11": "Eid-ul-Adha* (*estimated)", + "1954-06-02": "Eid-ul-Fitr (estimated)", + "1954-06-03": "Eid-ul-Fitr (estimated)", + "1954-06-04": "Eid-ul-Fitr (estimated)", + "1954-08-09": "Eid-ul-Adha (estimated)", + "1954-08-10": "Eid-ul-Adha (estimated)", + "1954-08-11": "Eid-ul-Adha (estimated)", "1954-08-14": "Independence Day", - "1954-09-07": "Ashura* (*estimated)", - "1954-09-08": "Ashura* (*estimated)", - "1954-11-08": "Eid Milad-un-Nabi* (*estimated)", + "1954-09-07": "Ashura (estimated)", + "1954-09-08": "Ashura (estimated)", + "1954-11-08": "Eid Milad-un-Nabi (estimated)", "1954-11-09": "Iqbal Day", "1954-12-25": "Quaid-e-Azam Day", - "1955-05-23": "Eid-ul-Fitr* (*estimated)", - "1955-05-24": "Eid-ul-Fitr* (*estimated)", - "1955-05-25": "Eid-ul-Fitr* (*estimated)", - "1955-07-30": "Eid-ul-Adha* (*estimated)", - "1955-07-31": "Eid-ul-Adha* (*estimated)", - "1955-08-01": "Eid-ul-Adha* (*estimated)", + "1955-05-23": "Eid-ul-Fitr (estimated)", + "1955-05-24": "Eid-ul-Fitr (estimated)", + "1955-05-25": "Eid-ul-Fitr (estimated)", + "1955-07-30": "Eid-ul-Adha (estimated)", + "1955-07-31": "Eid-ul-Adha (estimated)", + "1955-08-01": "Eid-ul-Adha (estimated)", "1955-08-14": "Independence Day", - "1955-08-28": "Ashura* (*estimated)", - "1955-08-29": "Ashura* (*estimated)", - "1955-10-29": "Eid Milad-un-Nabi* (*estimated)", + "1955-08-28": "Ashura (estimated)", + "1955-08-29": "Ashura (estimated)", + "1955-10-29": "Eid Milad-un-Nabi (estimated)", "1955-11-09": "Iqbal Day", "1955-12-25": "Quaid-e-Azam Day", "1956-03-23": "Pakistan Day", - "1956-05-11": "Eid-ul-Fitr* (*estimated)", - "1956-05-12": "Eid-ul-Fitr* (*estimated)", - "1956-05-13": "Eid-ul-Fitr* (*estimated)", - "1956-07-19": "Eid-ul-Adha* (*estimated)", - "1956-07-20": "Eid-ul-Adha* (*estimated)", - "1956-07-21": "Eid-ul-Adha* (*estimated)", + "1956-05-11": "Eid-ul-Fitr (estimated)", + "1956-05-12": "Eid-ul-Fitr (estimated)", + "1956-05-13": "Eid-ul-Fitr (estimated)", + "1956-07-19": "Eid-ul-Adha (estimated)", + "1956-07-20": "Eid-ul-Adha (estimated)", + "1956-07-21": "Eid-ul-Adha (estimated)", "1956-08-14": "Independence Day", - "1956-08-16": "Ashura* (*estimated)", - "1956-08-17": "Ashura* (*estimated)", - "1956-10-17": "Eid Milad-un-Nabi* (*estimated)", + "1956-08-16": "Ashura (estimated)", + "1956-08-17": "Ashura (estimated)", + "1956-10-17": "Eid Milad-un-Nabi (estimated)", "1956-11-09": "Iqbal Day", "1956-12-25": "Quaid-e-Azam Day", "1957-03-23": "Pakistan Day", - "1957-05-01": "Eid-ul-Fitr* (*estimated)", - "1957-05-02": "Eid-ul-Fitr* (*estimated)", - "1957-05-03": "Eid-ul-Fitr* (*estimated)", - "1957-07-08": "Eid-ul-Adha* (*estimated)", - "1957-07-09": "Eid-ul-Adha* (*estimated)", - "1957-07-10": "Eid-ul-Adha* (*estimated)", - "1957-08-05": "Ashura* (*estimated)", - "1957-08-06": "Ashura* (*estimated)", + "1957-05-01": "Eid-ul-Fitr (estimated)", + "1957-05-02": "Eid-ul-Fitr (estimated)", + "1957-05-03": "Eid-ul-Fitr (estimated)", + "1957-07-08": "Eid-ul-Adha (estimated)", + "1957-07-09": "Eid-ul-Adha (estimated)", + "1957-07-10": "Eid-ul-Adha (estimated)", + "1957-08-05": "Ashura (estimated)", + "1957-08-06": "Ashura (estimated)", "1957-08-14": "Independence Day", - "1957-10-06": "Eid Milad-un-Nabi* (*estimated)", + "1957-10-06": "Eid Milad-un-Nabi (estimated)", "1957-11-09": "Iqbal Day", "1957-12-25": "Quaid-e-Azam Day", "1958-03-23": "Pakistan Day", - "1958-04-20": "Eid-ul-Fitr* (*estimated)", - "1958-04-21": "Eid-ul-Fitr* (*estimated)", - "1958-04-22": "Eid-ul-Fitr* (*estimated)", - "1958-06-27": "Eid-ul-Adha* (*estimated)", - "1958-06-28": "Eid-ul-Adha* (*estimated)", - "1958-06-29": "Eid-ul-Adha* (*estimated)", - "1958-07-26": "Ashura* (*estimated)", - "1958-07-27": "Ashura* (*estimated)", + "1958-04-20": "Eid-ul-Fitr (estimated)", + "1958-04-21": "Eid-ul-Fitr (estimated)", + "1958-04-22": "Eid-ul-Fitr (estimated)", + "1958-06-27": "Eid-ul-Adha (estimated)", + "1958-06-28": "Eid-ul-Adha (estimated)", + "1958-06-29": "Eid-ul-Adha (estimated)", + "1958-07-26": "Ashura (estimated)", + "1958-07-27": "Ashura (estimated)", "1958-08-14": "Independence Day", - "1958-09-26": "Eid Milad-un-Nabi* (*estimated)", + "1958-09-26": "Eid Milad-un-Nabi (estimated)", "1958-11-09": "Iqbal Day", "1958-12-25": "Quaid-e-Azam Day", "1959-03-23": "Pakistan Day", - "1959-04-10": "Eid-ul-Fitr* (*estimated)", - "1959-04-11": "Eid-ul-Fitr* (*estimated)", - "1959-04-12": "Eid-ul-Fitr* (*estimated)", - "1959-06-17": "Eid-ul-Adha* (*estimated)", - "1959-06-18": "Eid-ul-Adha* (*estimated)", - "1959-06-19": "Eid-ul-Adha* (*estimated)", - "1959-07-15": "Ashura* (*estimated)", - "1959-07-16": "Ashura* (*estimated)", + "1959-04-10": "Eid-ul-Fitr (estimated)", + "1959-04-11": "Eid-ul-Fitr (estimated)", + "1959-04-12": "Eid-ul-Fitr (estimated)", + "1959-06-17": "Eid-ul-Adha (estimated)", + "1959-06-18": "Eid-ul-Adha (estimated)", + "1959-06-19": "Eid-ul-Adha (estimated)", + "1959-07-15": "Ashura (estimated)", + "1959-07-16": "Ashura (estimated)", "1959-08-14": "Independence Day", - "1959-09-15": "Eid Milad-un-Nabi* (*estimated)", + "1959-09-15": "Eid Milad-un-Nabi (estimated)", "1959-11-09": "Iqbal Day", "1959-12-25": "Quaid-e-Azam Day", "1960-03-23": "Pakistan Day", - "1960-03-28": "Eid-ul-Fitr* (*estimated)", - "1960-03-29": "Eid-ul-Fitr* (*estimated)", - "1960-03-30": "Eid-ul-Fitr* (*estimated)", - "1960-06-04": "Eid-ul-Adha* (*estimated)", - "1960-06-05": "Eid-ul-Adha* (*estimated)", - "1960-06-06": "Eid-ul-Adha* (*estimated)", - "1960-07-03": "Ashura* (*estimated)", - "1960-07-04": "Ashura* (*estimated)", + "1960-03-28": "Eid-ul-Fitr (estimated)", + "1960-03-29": "Eid-ul-Fitr (estimated)", + "1960-03-30": "Eid-ul-Fitr (estimated)", + "1960-06-04": "Eid-ul-Adha (estimated)", + "1960-06-05": "Eid-ul-Adha (estimated)", + "1960-06-06": "Eid-ul-Adha (estimated)", + "1960-07-03": "Ashura (estimated)", + "1960-07-04": "Ashura (estimated)", "1960-08-14": "Independence Day", - "1960-09-03": "Eid Milad-un-Nabi* (*estimated)", + "1960-09-03": "Eid Milad-un-Nabi (estimated)", "1960-11-09": "Iqbal Day", "1960-12-25": "Quaid-e-Azam Day", - "1961-03-18": "Eid-ul-Fitr* (*estimated)", - "1961-03-19": "Eid-ul-Fitr* (*estimated)", - "1961-03-20": "Eid-ul-Fitr* (*estimated)", + "1961-03-18": "Eid-ul-Fitr (estimated)", + "1961-03-19": "Eid-ul-Fitr (estimated)", + "1961-03-20": "Eid-ul-Fitr (estimated)", "1961-03-23": "Pakistan Day", - "1961-05-25": "Eid-ul-Adha* (*estimated)", - "1961-05-26": "Eid-ul-Adha* (*estimated)", - "1961-05-27": "Eid-ul-Adha* (*estimated)", - "1961-06-22": "Ashura* (*estimated)", - "1961-06-23": "Ashura* (*estimated)", + "1961-05-25": "Eid-ul-Adha (estimated)", + "1961-05-26": "Eid-ul-Adha (estimated)", + "1961-05-27": "Eid-ul-Adha (estimated)", + "1961-06-22": "Ashura (estimated)", + "1961-06-23": "Ashura (estimated)", "1961-08-14": "Independence Day", - "1961-08-23": "Eid Milad-un-Nabi* (*estimated)", + "1961-08-23": "Eid Milad-un-Nabi (estimated)", "1961-11-09": "Iqbal Day", "1961-12-25": "Quaid-e-Azam Day", - "1962-03-07": "Eid-ul-Fitr* (*estimated)", - "1962-03-08": "Eid-ul-Fitr* (*estimated)", - "1962-03-09": "Eid-ul-Fitr* (*estimated)", + "1962-03-07": "Eid-ul-Fitr (estimated)", + "1962-03-08": "Eid-ul-Fitr (estimated)", + "1962-03-09": "Eid-ul-Fitr (estimated)", "1962-03-23": "Pakistan Day", - "1962-05-14": "Eid-ul-Adha* (*estimated)", - "1962-05-15": "Eid-ul-Adha* (*estimated)", - "1962-05-16": "Eid-ul-Adha* (*estimated)", - "1962-06-11": "Ashura* (*estimated)", - "1962-06-12": "Ashura* (*estimated)", - "1962-08-12": "Eid Milad-un-Nabi* (*estimated)", + "1962-05-14": "Eid-ul-Adha (estimated)", + "1962-05-15": "Eid-ul-Adha (estimated)", + "1962-05-16": "Eid-ul-Adha (estimated)", + "1962-06-11": "Ashura (estimated)", + "1962-06-12": "Ashura (estimated)", + "1962-08-12": "Eid Milad-un-Nabi (estimated)", "1962-08-14": "Independence Day", "1962-11-09": "Iqbal Day", "1962-12-25": "Quaid-e-Azam Day", - "1963-02-24": "Eid-ul-Fitr* (*estimated)", - "1963-02-25": "Eid-ul-Fitr* (*estimated)", - "1963-02-26": "Eid-ul-Fitr* (*estimated)", + "1963-02-24": "Eid-ul-Fitr (estimated)", + "1963-02-25": "Eid-ul-Fitr (estimated)", + "1963-02-26": "Eid-ul-Fitr (estimated)", "1963-03-23": "Pakistan Day", - "1963-05-03": "Eid-ul-Adha* (*estimated)", - "1963-05-04": "Eid-ul-Adha* (*estimated)", - "1963-05-05": "Eid-ul-Adha* (*estimated)", - "1963-06-01": "Ashura* (*estimated)", - "1963-06-02": "Ashura* (*estimated)", - "1963-08-02": "Eid Milad-un-Nabi* (*estimated)", + "1963-05-03": "Eid-ul-Adha (estimated)", + "1963-05-04": "Eid-ul-Adha (estimated)", + "1963-05-05": "Eid-ul-Adha (estimated)", + "1963-06-01": "Ashura (estimated)", + "1963-06-02": "Ashura (estimated)", + "1963-08-02": "Eid Milad-un-Nabi (estimated)", "1963-08-14": "Independence Day", "1963-11-09": "Iqbal Day", "1963-12-25": "Quaid-e-Azam Day", - "1964-02-14": "Eid-ul-Fitr* (*estimated)", - "1964-02-15": "Eid-ul-Fitr* (*estimated)", - "1964-02-16": "Eid-ul-Fitr* (*estimated)", + "1964-02-14": "Eid-ul-Fitr (estimated)", + "1964-02-15": "Eid-ul-Fitr (estimated)", + "1964-02-16": "Eid-ul-Fitr (estimated)", "1964-03-23": "Pakistan Day", - "1964-04-22": "Eid-ul-Adha* (*estimated)", - "1964-04-23": "Eid-ul-Adha* (*estimated)", - "1964-04-24": "Eid-ul-Adha* (*estimated)", - "1964-05-20": "Ashura* (*estimated)", - "1964-05-21": "Ashura* (*estimated)", - "1964-07-21": "Eid Milad-un-Nabi* (*estimated)", + "1964-04-22": "Eid-ul-Adha (estimated)", + "1964-04-23": "Eid-ul-Adha (estimated)", + "1964-04-24": "Eid-ul-Adha (estimated)", + "1964-05-20": "Ashura (estimated)", + "1964-05-21": "Ashura (estimated)", + "1964-07-21": "Eid Milad-un-Nabi (estimated)", "1964-08-14": "Independence Day", "1964-11-09": "Iqbal Day", "1964-12-25": "Quaid-e-Azam Day", - "1965-02-02": "Eid-ul-Fitr* (*estimated)", - "1965-02-03": "Eid-ul-Fitr* (*estimated)", - "1965-02-04": "Eid-ul-Fitr* (*estimated)", + "1965-02-02": "Eid-ul-Fitr (estimated)", + "1965-02-03": "Eid-ul-Fitr (estimated)", + "1965-02-04": "Eid-ul-Fitr (estimated)", "1965-03-23": "Pakistan Day", - "1965-04-11": "Eid-ul-Adha* (*estimated)", - "1965-04-12": "Eid-ul-Adha* (*estimated)", - "1965-04-13": "Eid-ul-Adha* (*estimated)", - "1965-05-09": "Ashura* (*estimated)", - "1965-05-10": "Ashura* (*estimated)", - "1965-07-10": "Eid Milad-un-Nabi* (*estimated)", + "1965-04-11": "Eid-ul-Adha (estimated)", + "1965-04-12": "Eid-ul-Adha (estimated)", + "1965-04-13": "Eid-ul-Adha (estimated)", + "1965-05-09": "Ashura (estimated)", + "1965-05-10": "Ashura (estimated)", + "1965-07-10": "Eid Milad-un-Nabi (estimated)", "1965-08-14": "Independence Day", "1965-11-09": "Iqbal Day", "1965-12-25": "Quaid-e-Azam Day", - "1966-01-22": "Eid-ul-Fitr* (*estimated)", - "1966-01-23": "Eid-ul-Fitr* (*estimated)", - "1966-01-24": "Eid-ul-Fitr* (*estimated)", + "1966-01-22": "Eid-ul-Fitr (estimated)", + "1966-01-23": "Eid-ul-Fitr (estimated)", + "1966-01-24": "Eid-ul-Fitr (estimated)", "1966-03-23": "Pakistan Day", - "1966-04-01": "Eid-ul-Adha* (*estimated)", - "1966-04-02": "Eid-ul-Adha* (*estimated)", - "1966-04-03": "Eid-ul-Adha* (*estimated)", - "1966-04-29": "Ashura* (*estimated)", - "1966-04-30": "Ashura* (*estimated)", - "1966-07-01": "Eid Milad-un-Nabi* (*estimated)", + "1966-04-01": "Eid-ul-Adha (estimated)", + "1966-04-02": "Eid-ul-Adha (estimated)", + "1966-04-03": "Eid-ul-Adha (estimated)", + "1966-04-29": "Ashura (estimated)", + "1966-04-30": "Ashura (estimated)", + "1966-07-01": "Eid Milad-un-Nabi (estimated)", "1966-08-14": "Independence Day", "1966-11-09": "Iqbal Day", "1966-12-25": "Quaid-e-Azam Day", - "1967-01-12": "Eid-ul-Fitr* (*estimated)", - "1967-01-13": "Eid-ul-Fitr* (*estimated)", - "1967-01-14": "Eid-ul-Fitr* (*estimated)", - "1967-03-21": "Eid-ul-Adha* (*estimated)", - "1967-03-22": "Eid-ul-Adha* (*estimated)", - "1967-03-23": "Eid-ul-Adha* (*estimated); Pakistan Day", - "1967-04-19": "Ashura* (*estimated)", - "1967-04-20": "Ashura* (*estimated)", - "1967-06-19": "Eid Milad-un-Nabi* (*estimated)", + "1967-01-12": "Eid-ul-Fitr (estimated)", + "1967-01-13": "Eid-ul-Fitr (estimated)", + "1967-01-14": "Eid-ul-Fitr (estimated)", + "1967-03-21": "Eid-ul-Adha (estimated)", + "1967-03-22": "Eid-ul-Adha (estimated)", + "1967-03-23": "Eid-ul-Adha (estimated); Pakistan Day", + "1967-04-19": "Ashura (estimated)", + "1967-04-20": "Ashura (estimated)", + "1967-06-19": "Eid Milad-un-Nabi (estimated)", "1967-08-14": "Independence Day", "1967-11-09": "Iqbal Day", "1967-12-25": "Quaid-e-Azam Day", - "1968-01-01": "Eid-ul-Fitr* (*estimated)", - "1968-01-02": "Eid-ul-Fitr* (*estimated)", - "1968-01-03": "Eid-ul-Fitr* (*estimated)", - "1968-03-09": "Eid-ul-Adha* (*estimated)", - "1968-03-10": "Eid-ul-Adha* (*estimated)", - "1968-03-11": "Eid-ul-Adha* (*estimated)", + "1968-01-01": "Eid-ul-Fitr (estimated)", + "1968-01-02": "Eid-ul-Fitr (estimated)", + "1968-01-03": "Eid-ul-Fitr (estimated)", + "1968-03-09": "Eid-ul-Adha (estimated)", + "1968-03-10": "Eid-ul-Adha (estimated)", + "1968-03-11": "Eid-ul-Adha (estimated)", "1968-03-23": "Pakistan Day", - "1968-04-07": "Ashura* (*estimated)", - "1968-04-08": "Ashura* (*estimated)", - "1968-06-08": "Eid Milad-un-Nabi* (*estimated)", + "1968-04-07": "Ashura (estimated)", + "1968-04-08": "Ashura (estimated)", + "1968-06-08": "Eid Milad-un-Nabi (estimated)", "1968-08-14": "Independence Day", "1968-11-09": "Iqbal Day", - "1968-12-21": "Eid-ul-Fitr* (*estimated)", - "1968-12-22": "Eid-ul-Fitr* (*estimated)", - "1968-12-23": "Eid-ul-Fitr* (*estimated)", + "1968-12-21": "Eid-ul-Fitr (estimated)", + "1968-12-22": "Eid-ul-Fitr (estimated)", + "1968-12-23": "Eid-ul-Fitr (estimated)", "1968-12-25": "Quaid-e-Azam Day", - "1969-02-27": "Eid-ul-Adha* (*estimated)", - "1969-02-28": "Eid-ul-Adha* (*estimated)", - "1969-03-01": "Eid-ul-Adha* (*estimated)", + "1969-02-27": "Eid-ul-Adha (estimated)", + "1969-02-28": "Eid-ul-Adha (estimated)", + "1969-03-01": "Eid-ul-Adha (estimated)", "1969-03-23": "Pakistan Day", - "1969-03-27": "Ashura* (*estimated)", - "1969-03-28": "Ashura* (*estimated)", - "1969-05-28": "Eid Milad-un-Nabi* (*estimated)", + "1969-03-27": "Ashura (estimated)", + "1969-03-28": "Ashura (estimated)", + "1969-05-28": "Eid Milad-un-Nabi (estimated)", "1969-08-14": "Independence Day", "1969-11-09": "Iqbal Day", - "1969-12-10": "Eid-ul-Fitr* (*estimated)", - "1969-12-11": "Eid-ul-Fitr* (*estimated)", - "1969-12-12": "Eid-ul-Fitr* (*estimated)", + "1969-12-10": "Eid-ul-Fitr (estimated)", + "1969-12-11": "Eid-ul-Fitr (estimated)", + "1969-12-12": "Eid-ul-Fitr (estimated)", "1969-12-25": "Quaid-e-Azam Day", - "1970-02-16": "Eid-ul-Adha* (*estimated)", - "1970-02-17": "Eid-ul-Adha* (*estimated)", - "1970-02-18": "Eid-ul-Adha* (*estimated)", - "1970-03-17": "Ashura* (*estimated)", - "1970-03-18": "Ashura* (*estimated)", + "1970-02-16": "Eid-ul-Adha (estimated)", + "1970-02-17": "Eid-ul-Adha (estimated)", + "1970-02-18": "Eid-ul-Adha (estimated)", + "1970-03-17": "Ashura (estimated)", + "1970-03-18": "Ashura (estimated)", "1970-03-23": "Pakistan Day", - "1970-05-18": "Eid Milad-un-Nabi* (*estimated)", + "1970-05-18": "Eid Milad-un-Nabi (estimated)", "1970-08-14": "Independence Day", "1970-11-09": "Iqbal Day", - "1970-11-30": "Eid-ul-Fitr* (*estimated)", - "1970-12-01": "Eid-ul-Fitr* (*estimated)", - "1970-12-02": "Eid-ul-Fitr* (*estimated)", + "1970-11-30": "Eid-ul-Fitr (estimated)", + "1970-12-01": "Eid-ul-Fitr (estimated)", + "1970-12-02": "Eid-ul-Fitr (estimated)", "1970-12-25": "Quaid-e-Azam Day", - "1971-02-06": "Eid-ul-Adha* (*estimated)", - "1971-02-07": "Eid-ul-Adha* (*estimated)", - "1971-02-08": "Eid-ul-Adha* (*estimated)", - "1971-03-06": "Ashura* (*estimated)", - "1971-03-07": "Ashura* (*estimated)", + "1971-02-06": "Eid-ul-Adha (estimated)", + "1971-02-07": "Eid-ul-Adha (estimated)", + "1971-02-08": "Eid-ul-Adha (estimated)", + "1971-03-06": "Ashura (estimated)", + "1971-03-07": "Ashura (estimated)", "1971-03-23": "Pakistan Day", - "1971-05-07": "Eid Milad-un-Nabi* (*estimated)", + "1971-05-07": "Eid Milad-un-Nabi (estimated)", "1971-08-14": "Independence Day", "1971-11-09": "Iqbal Day", - "1971-11-19": "Eid-ul-Fitr* (*estimated)", - "1971-11-20": "Eid-ul-Fitr* (*estimated)", - "1971-11-21": "Eid-ul-Fitr* (*estimated)", + "1971-11-19": "Eid-ul-Fitr (estimated)", + "1971-11-20": "Eid-ul-Fitr (estimated)", + "1971-11-21": "Eid-ul-Fitr (estimated)", "1971-12-25": "Quaid-e-Azam Day", - "1972-01-26": "Eid-ul-Adha* (*estimated)", - "1972-01-27": "Eid-ul-Adha* (*estimated)", - "1972-01-28": "Eid-ul-Adha* (*estimated)", - "1972-02-24": "Ashura* (*estimated)", - "1972-02-25": "Ashura* (*estimated)", + "1972-01-26": "Eid-ul-Adha (estimated)", + "1972-01-27": "Eid-ul-Adha (estimated)", + "1972-01-28": "Eid-ul-Adha (estimated)", + "1972-02-24": "Ashura (estimated)", + "1972-02-25": "Ashura (estimated)", "1972-03-23": "Pakistan Day", - "1972-04-25": "Eid Milad-un-Nabi* (*estimated)", + "1972-04-25": "Eid Milad-un-Nabi (estimated)", "1972-05-01": "Labour Day", "1972-08-14": "Independence Day", - "1972-11-07": "Eid-ul-Fitr* (*estimated)", - "1972-11-08": "Eid-ul-Fitr* (*estimated)", - "1972-11-09": "Eid-ul-Fitr* (*estimated); Iqbal Day", + "1972-11-07": "Eid-ul-Fitr (estimated)", + "1972-11-08": "Eid-ul-Fitr (estimated)", + "1972-11-09": "Eid-ul-Fitr (estimated); Iqbal Day", "1972-12-25": "Quaid-e-Azam Day", - "1973-01-14": "Eid-ul-Adha* (*estimated)", - "1973-01-15": "Eid-ul-Adha* (*estimated)", - "1973-01-16": "Eid-ul-Adha* (*estimated)", - "1973-02-12": "Ashura* (*estimated)", - "1973-02-13": "Ashura* (*estimated)", + "1973-01-14": "Eid-ul-Adha (estimated)", + "1973-01-15": "Eid-ul-Adha (estimated)", + "1973-01-16": "Eid-ul-Adha (estimated)", + "1973-02-12": "Ashura (estimated)", + "1973-02-13": "Ashura (estimated)", "1973-03-23": "Pakistan Day", - "1973-04-15": "Eid Milad-un-Nabi* (*estimated)", + "1973-04-15": "Eid Milad-un-Nabi (estimated)", "1973-05-01": "Labour Day", "1973-08-14": "Independence Day", - "1973-10-27": "Eid-ul-Fitr* (*estimated)", - "1973-10-28": "Eid-ul-Fitr* (*estimated)", - "1973-10-29": "Eid-ul-Fitr* (*estimated)", + "1973-10-27": "Eid-ul-Fitr (estimated)", + "1973-10-28": "Eid-ul-Fitr (estimated)", + "1973-10-29": "Eid-ul-Fitr (estimated)", "1973-11-09": "Iqbal Day", "1973-12-25": "Quaid-e-Azam Day", - "1974-01-03": "Eid-ul-Adha* (*estimated)", - "1974-01-04": "Eid-ul-Adha* (*estimated)", - "1974-01-05": "Eid-ul-Adha* (*estimated)", - "1974-02-01": "Ashura* (*estimated)", - "1974-02-02": "Ashura* (*estimated)", + "1974-01-03": "Eid-ul-Adha (estimated)", + "1974-01-04": "Eid-ul-Adha (estimated)", + "1974-01-05": "Eid-ul-Adha (estimated)", + "1974-02-01": "Ashura (estimated)", + "1974-02-02": "Ashura (estimated)", "1974-03-23": "Pakistan Day", - "1974-04-04": "Eid Milad-un-Nabi* (*estimated)", + "1974-04-04": "Eid Milad-un-Nabi (estimated)", "1974-05-01": "Labour Day", "1974-08-14": "Independence Day", - "1974-10-16": "Eid-ul-Fitr* (*estimated)", - "1974-10-17": "Eid-ul-Fitr* (*estimated)", - "1974-10-18": "Eid-ul-Fitr* (*estimated)", + "1974-10-16": "Eid-ul-Fitr (estimated)", + "1974-10-17": "Eid-ul-Fitr (estimated)", + "1974-10-18": "Eid-ul-Fitr (estimated)", "1974-11-09": "Iqbal Day", - "1974-12-24": "Eid-ul-Adha* (*estimated)", - "1974-12-25": "Eid-ul-Adha* (*estimated); Quaid-e-Azam Day", - "1974-12-26": "Eid-ul-Adha* (*estimated)", - "1975-01-21": "Ashura* (*estimated)", - "1975-01-22": "Ashura* (*estimated)", + "1974-12-24": "Eid-ul-Adha (estimated)", + "1974-12-25": "Eid-ul-Adha (estimated); Quaid-e-Azam Day", + "1974-12-26": "Eid-ul-Adha (estimated)", + "1975-01-21": "Ashura (estimated)", + "1975-01-22": "Ashura (estimated)", "1975-03-23": "Pakistan Day", - "1975-03-24": "Eid Milad-un-Nabi* (*estimated)", + "1975-03-24": "Eid Milad-un-Nabi (estimated)", "1975-05-01": "Labour Day", "1975-08-14": "Independence Day", - "1975-10-06": "Eid-ul-Fitr* (*estimated)", - "1975-10-07": "Eid-ul-Fitr* (*estimated)", - "1975-10-08": "Eid-ul-Fitr* (*estimated)", + "1975-10-06": "Eid-ul-Fitr (estimated)", + "1975-10-07": "Eid-ul-Fitr (estimated)", + "1975-10-08": "Eid-ul-Fitr (estimated)", "1975-11-09": "Iqbal Day", - "1975-12-13": "Eid-ul-Adha* (*estimated)", - "1975-12-14": "Eid-ul-Adha* (*estimated)", - "1975-12-15": "Eid-ul-Adha* (*estimated)", + "1975-12-13": "Eid-ul-Adha (estimated)", + "1975-12-14": "Eid-ul-Adha (estimated)", + "1975-12-15": "Eid-ul-Adha (estimated)", "1975-12-25": "Quaid-e-Azam Day", - "1976-01-10": "Ashura* (*estimated)", - "1976-01-11": "Ashura* (*estimated)", - "1976-03-12": "Eid Milad-un-Nabi* (*estimated)", + "1976-01-10": "Ashura (estimated)", + "1976-01-11": "Ashura (estimated)", + "1976-03-12": "Eid Milad-un-Nabi (estimated)", "1976-03-23": "Pakistan Day", "1976-05-01": "Labour Day", "1976-08-14": "Independence Day", - "1976-09-24": "Eid-ul-Fitr* (*estimated)", - "1976-09-25": "Eid-ul-Fitr* (*estimated)", - "1976-09-26": "Eid-ul-Fitr* (*estimated)", + "1976-09-24": "Eid-ul-Fitr (estimated)", + "1976-09-25": "Eid-ul-Fitr (estimated)", + "1976-09-26": "Eid-ul-Fitr (estimated)", "1976-11-09": "Iqbal Day", - "1976-12-01": "Eid-ul-Adha* (*estimated)", - "1976-12-02": "Eid-ul-Adha* (*estimated)", - "1976-12-03": "Eid-ul-Adha* (*estimated)", + "1976-12-01": "Eid-ul-Adha (estimated)", + "1976-12-02": "Eid-ul-Adha (estimated)", + "1976-12-03": "Eid-ul-Adha (estimated)", "1976-12-25": "Quaid-e-Azam Day", - "1976-12-30": "Ashura* (*estimated)", - "1976-12-31": "Ashura* (*estimated)", - "1977-03-02": "Eid Milad-un-Nabi* (*estimated)", + "1976-12-30": "Ashura (estimated)", + "1976-12-31": "Ashura (estimated)", + "1977-03-02": "Eid Milad-un-Nabi (estimated)", "1977-03-23": "Pakistan Day", "1977-05-01": "Labour Day", "1977-08-14": "Independence Day", - "1977-09-14": "Eid-ul-Fitr* (*estimated)", - "1977-09-15": "Eid-ul-Fitr* (*estimated)", - "1977-09-16": "Eid-ul-Fitr* (*estimated)", + "1977-09-14": "Eid-ul-Fitr (estimated)", + "1977-09-15": "Eid-ul-Fitr (estimated)", + "1977-09-16": "Eid-ul-Fitr (estimated)", "1977-11-09": "Iqbal Day", - "1977-11-21": "Eid-ul-Adha* (*estimated)", - "1977-11-22": "Eid-ul-Adha* (*estimated)", - "1977-11-23": "Eid-ul-Adha* (*estimated)", - "1977-12-19": "Ashura* (*estimated)", - "1977-12-20": "Ashura* (*estimated)", + "1977-11-21": "Eid-ul-Adha (estimated)", + "1977-11-22": "Eid-ul-Adha (estimated)", + "1977-11-23": "Eid-ul-Adha (estimated)", + "1977-12-19": "Ashura (estimated)", + "1977-12-20": "Ashura (estimated)", "1977-12-25": "Quaid-e-Azam Day", - "1978-02-19": "Eid Milad-un-Nabi* (*estimated)", + "1978-02-19": "Eid Milad-un-Nabi (estimated)", "1978-03-23": "Pakistan Day", "1978-05-01": "Labour Day", "1978-08-14": "Independence Day", - "1978-09-03": "Eid-ul-Fitr* (*estimated)", - "1978-09-04": "Eid-ul-Fitr* (*estimated)", - "1978-09-05": "Eid-ul-Fitr* (*estimated)", + "1978-09-03": "Eid-ul-Fitr (estimated)", + "1978-09-04": "Eid-ul-Fitr (estimated)", + "1978-09-05": "Eid-ul-Fitr (estimated)", "1978-11-09": "Iqbal Day", - "1978-11-10": "Eid-ul-Adha* (*estimated)", - "1978-11-11": "Eid-ul-Adha* (*estimated)", - "1978-11-12": "Eid-ul-Adha* (*estimated)", - "1978-12-09": "Ashura* (*estimated)", - "1978-12-10": "Ashura* (*estimated)", + "1978-11-10": "Eid-ul-Adha (estimated)", + "1978-11-11": "Eid-ul-Adha (estimated)", + "1978-11-12": "Eid-ul-Adha (estimated)", + "1978-12-09": "Ashura (estimated)", + "1978-12-10": "Ashura (estimated)", "1978-12-25": "Quaid-e-Azam Day", - "1979-02-09": "Eid Milad-un-Nabi* (*estimated)", + "1979-02-09": "Eid Milad-un-Nabi (estimated)", "1979-03-23": "Pakistan Day", "1979-05-01": "Labour Day", "1979-08-14": "Independence Day", - "1979-08-23": "Eid-ul-Fitr* (*estimated)", - "1979-08-24": "Eid-ul-Fitr* (*estimated)", - "1979-08-25": "Eid-ul-Fitr* (*estimated)", - "1979-10-31": "Eid-ul-Adha* (*estimated)", - "1979-11-01": "Eid-ul-Adha* (*estimated)", - "1979-11-02": "Eid-ul-Adha* (*estimated)", + "1979-08-23": "Eid-ul-Fitr (estimated)", + "1979-08-24": "Eid-ul-Fitr (estimated)", + "1979-08-25": "Eid-ul-Fitr (estimated)", + "1979-10-31": "Eid-ul-Adha (estimated)", + "1979-11-01": "Eid-ul-Adha (estimated)", + "1979-11-02": "Eid-ul-Adha (estimated)", "1979-11-09": "Iqbal Day", - "1979-11-28": "Ashura* (*estimated)", - "1979-11-29": "Ashura* (*estimated)", + "1979-11-28": "Ashura (estimated)", + "1979-11-29": "Ashura (estimated)", "1979-12-25": "Quaid-e-Azam Day", - "1980-01-30": "Eid Milad-un-Nabi* (*estimated)", + "1980-01-30": "Eid Milad-un-Nabi (estimated)", "1980-03-23": "Pakistan Day", "1980-05-01": "Labour Day", - "1980-08-12": "Eid-ul-Fitr* (*estimated)", - "1980-08-13": "Eid-ul-Fitr* (*estimated)", - "1980-08-14": "Eid-ul-Fitr* (*estimated); Independence Day", - "1980-10-19": "Eid-ul-Adha* (*estimated)", - "1980-10-20": "Eid-ul-Adha* (*estimated)", - "1980-10-21": "Eid-ul-Adha* (*estimated)", + "1980-08-12": "Eid-ul-Fitr (estimated)", + "1980-08-13": "Eid-ul-Fitr (estimated)", + "1980-08-14": "Eid-ul-Fitr (estimated); Independence Day", + "1980-10-19": "Eid-ul-Adha (estimated)", + "1980-10-20": "Eid-ul-Adha (estimated)", + "1980-10-21": "Eid-ul-Adha (estimated)", "1980-11-09": "Iqbal Day", - "1980-11-17": "Ashura* (*estimated)", - "1980-11-18": "Ashura* (*estimated)", + "1980-11-17": "Ashura (estimated)", + "1980-11-18": "Ashura (estimated)", "1980-12-25": "Quaid-e-Azam Day", - "1981-01-18": "Eid Milad-un-Nabi* (*estimated)", + "1981-01-18": "Eid Milad-un-Nabi (estimated)", "1981-03-23": "Pakistan Day", "1981-05-01": "Labour Day", - "1981-08-01": "Eid-ul-Fitr* (*estimated)", - "1981-08-02": "Eid-ul-Fitr* (*estimated)", - "1981-08-03": "Eid-ul-Fitr* (*estimated)", + "1981-08-01": "Eid-ul-Fitr (estimated)", + "1981-08-02": "Eid-ul-Fitr (estimated)", + "1981-08-03": "Eid-ul-Fitr (estimated)", "1981-08-14": "Independence Day", - "1981-10-08": "Eid-ul-Adha* (*estimated)", - "1981-10-09": "Eid-ul-Adha* (*estimated)", - "1981-10-10": "Eid-ul-Adha* (*estimated)", - "1981-11-05": "Ashura* (*estimated)", - "1981-11-06": "Ashura* (*estimated)", + "1981-10-08": "Eid-ul-Adha (estimated)", + "1981-10-09": "Eid-ul-Adha (estimated)", + "1981-10-10": "Eid-ul-Adha (estimated)", + "1981-11-05": "Ashura (estimated)", + "1981-11-06": "Ashura (estimated)", "1981-11-09": "Iqbal Day", "1981-12-25": "Quaid-e-Azam Day", - "1982-01-07": "Eid Milad-un-Nabi* (*estimated)", + "1982-01-07": "Eid Milad-un-Nabi (estimated)", "1982-03-23": "Pakistan Day", "1982-05-01": "Labour Day", - "1982-07-21": "Eid-ul-Fitr* (*estimated)", - "1982-07-22": "Eid-ul-Fitr* (*estimated)", - "1982-07-23": "Eid-ul-Fitr* (*estimated)", + "1982-07-21": "Eid-ul-Fitr (estimated)", + "1982-07-22": "Eid-ul-Fitr (estimated)", + "1982-07-23": "Eid-ul-Fitr (estimated)", "1982-08-14": "Independence Day", - "1982-09-27": "Eid-ul-Adha* (*estimated)", - "1982-09-28": "Eid-ul-Adha* (*estimated)", - "1982-09-29": "Eid-ul-Adha* (*estimated)", - "1982-10-26": "Ashura* (*estimated)", - "1982-10-27": "Ashura* (*estimated)", + "1982-09-27": "Eid-ul-Adha (estimated)", + "1982-09-28": "Eid-ul-Adha (estimated)", + "1982-09-29": "Eid-ul-Adha (estimated)", + "1982-10-26": "Ashura (estimated)", + "1982-10-27": "Ashura (estimated)", "1982-11-09": "Iqbal Day", "1982-12-25": "Quaid-e-Azam Day", - "1982-12-27": "Eid Milad-un-Nabi* (*estimated)", + "1982-12-27": "Eid Milad-un-Nabi (estimated)", "1983-03-23": "Pakistan Day", "1983-05-01": "Labour Day", - "1983-07-11": "Eid-ul-Fitr* (*estimated)", - "1983-07-12": "Eid-ul-Fitr* (*estimated)", - "1983-07-13": "Eid-ul-Fitr* (*estimated)", + "1983-07-11": "Eid-ul-Fitr (estimated)", + "1983-07-12": "Eid-ul-Fitr (estimated)", + "1983-07-13": "Eid-ul-Fitr (estimated)", "1983-08-14": "Independence Day", - "1983-09-17": "Eid-ul-Adha* (*estimated)", - "1983-09-18": "Eid-ul-Adha* (*estimated)", - "1983-09-19": "Eid-ul-Adha* (*estimated)", - "1983-10-15": "Ashura* (*estimated)", - "1983-10-16": "Ashura* (*estimated)", + "1983-09-17": "Eid-ul-Adha (estimated)", + "1983-09-18": "Eid-ul-Adha (estimated)", + "1983-09-19": "Eid-ul-Adha (estimated)", + "1983-10-15": "Ashura (estimated)", + "1983-10-16": "Ashura (estimated)", "1983-11-09": "Iqbal Day", - "1983-12-16": "Eid Milad-un-Nabi* (*estimated)", + "1983-12-16": "Eid Milad-un-Nabi (estimated)", "1983-12-25": "Quaid-e-Azam Day", "1984-03-23": "Pakistan Day", "1984-05-01": "Labour Day", - "1984-06-30": "Eid-ul-Fitr* (*estimated)", - "1984-07-01": "Eid-ul-Fitr* (*estimated)", - "1984-07-02": "Eid-ul-Fitr* (*estimated)", + "1984-06-30": "Eid-ul-Fitr (estimated)", + "1984-07-01": "Eid-ul-Fitr (estimated)", + "1984-07-02": "Eid-ul-Fitr (estimated)", "1984-08-14": "Independence Day", - "1984-09-05": "Eid-ul-Adha* (*estimated)", - "1984-09-06": "Eid-ul-Adha* (*estimated)", - "1984-09-07": "Eid-ul-Adha* (*estimated)", - "1984-10-04": "Ashura* (*estimated)", - "1984-10-05": "Ashura* (*estimated)", + "1984-09-05": "Eid-ul-Adha (estimated)", + "1984-09-06": "Eid-ul-Adha (estimated)", + "1984-09-07": "Eid-ul-Adha (estimated)", + "1984-10-04": "Ashura (estimated)", + "1984-10-05": "Ashura (estimated)", "1984-11-09": "Iqbal Day", - "1984-12-04": "Eid Milad-un-Nabi* (*estimated)", + "1984-12-04": "Eid Milad-un-Nabi (estimated)", "1984-12-25": "Quaid-e-Azam Day", "1985-03-23": "Pakistan Day", "1985-05-01": "Labour Day", - "1985-06-19": "Eid-ul-Fitr* (*estimated)", - "1985-06-20": "Eid-ul-Fitr* (*estimated)", - "1985-06-21": "Eid-ul-Fitr* (*estimated)", + "1985-06-19": "Eid-ul-Fitr (estimated)", + "1985-06-20": "Eid-ul-Fitr (estimated)", + "1985-06-21": "Eid-ul-Fitr (estimated)", "1985-08-14": "Independence Day", - "1985-08-26": "Eid-ul-Adha* (*estimated)", - "1985-08-27": "Eid-ul-Adha* (*estimated)", - "1985-08-28": "Eid-ul-Adha* (*estimated)", - "1985-09-23": "Ashura* (*estimated)", - "1985-09-24": "Ashura* (*estimated)", + "1985-08-26": "Eid-ul-Adha (estimated)", + "1985-08-27": "Eid-ul-Adha (estimated)", + "1985-08-28": "Eid-ul-Adha (estimated)", + "1985-09-23": "Ashura (estimated)", + "1985-09-24": "Ashura (estimated)", "1985-11-09": "Iqbal Day", - "1985-11-24": "Eid Milad-un-Nabi* (*estimated)", + "1985-11-24": "Eid Milad-un-Nabi (estimated)", "1985-12-25": "Quaid-e-Azam Day", "1986-03-23": "Pakistan Day", "1986-05-01": "Labour Day", - "1986-06-08": "Eid-ul-Fitr* (*estimated)", - "1986-06-09": "Eid-ul-Fitr* (*estimated)", - "1986-06-10": "Eid-ul-Fitr* (*estimated)", + "1986-06-08": "Eid-ul-Fitr (estimated)", + "1986-06-09": "Eid-ul-Fitr (estimated)", + "1986-06-10": "Eid-ul-Fitr (estimated)", "1986-08-14": "Independence Day", - "1986-08-15": "Eid-ul-Adha* (*estimated)", - "1986-08-16": "Eid-ul-Adha* (*estimated)", - "1986-08-17": "Eid-ul-Adha* (*estimated)", - "1986-09-13": "Ashura* (*estimated)", - "1986-09-14": "Ashura* (*estimated)", + "1986-08-15": "Eid-ul-Adha (estimated)", + "1986-08-16": "Eid-ul-Adha (estimated)", + "1986-08-17": "Eid-ul-Adha (estimated)", + "1986-09-13": "Ashura (estimated)", + "1986-09-14": "Ashura (estimated)", "1986-11-09": "Iqbal Day", - "1986-11-14": "Eid Milad-un-Nabi* (*estimated)", + "1986-11-14": "Eid Milad-un-Nabi (estimated)", "1986-12-25": "Quaid-e-Azam Day", "1987-03-23": "Pakistan Day", "1987-05-01": "Labour Day", - "1987-05-28": "Eid-ul-Fitr* (*estimated)", - "1987-05-29": "Eid-ul-Fitr* (*estimated)", - "1987-05-30": "Eid-ul-Fitr* (*estimated)", - "1987-08-04": "Eid-ul-Adha* (*estimated)", - "1987-08-05": "Eid-ul-Adha* (*estimated)", - "1987-08-06": "Eid-ul-Adha* (*estimated)", + "1987-05-28": "Eid-ul-Fitr (estimated)", + "1987-05-29": "Eid-ul-Fitr (estimated)", + "1987-05-30": "Eid-ul-Fitr (estimated)", + "1987-08-04": "Eid-ul-Adha (estimated)", + "1987-08-05": "Eid-ul-Adha (estimated)", + "1987-08-06": "Eid-ul-Adha (estimated)", "1987-08-14": "Independence Day", - "1987-09-02": "Ashura* (*estimated)", - "1987-09-03": "Ashura* (*estimated)", - "1987-11-03": "Eid Milad-un-Nabi* (*estimated)", + "1987-09-02": "Ashura (estimated)", + "1987-09-03": "Ashura (estimated)", + "1987-11-03": "Eid Milad-un-Nabi (estimated)", "1987-11-09": "Iqbal Day", "1987-12-25": "Quaid-e-Azam Day", "1988-03-23": "Pakistan Day", "1988-05-01": "Labour Day", - "1988-05-16": "Eid-ul-Fitr* (*estimated)", - "1988-05-17": "Eid-ul-Fitr* (*estimated)", - "1988-05-18": "Eid-ul-Fitr* (*estimated)", - "1988-07-23": "Eid-ul-Adha* (*estimated)", - "1988-07-24": "Eid-ul-Adha* (*estimated)", - "1988-07-25": "Eid-ul-Adha* (*estimated)", + "1988-05-16": "Eid-ul-Fitr (estimated)", + "1988-05-17": "Eid-ul-Fitr (estimated)", + "1988-05-18": "Eid-ul-Fitr (estimated)", + "1988-07-23": "Eid-ul-Adha (estimated)", + "1988-07-24": "Eid-ul-Adha (estimated)", + "1988-07-25": "Eid-ul-Adha (estimated)", "1988-08-14": "Independence Day", - "1988-08-21": "Ashura* (*estimated)", - "1988-08-22": "Ashura* (*estimated)", - "1988-10-22": "Eid Milad-un-Nabi* (*estimated)", + "1988-08-21": "Ashura (estimated)", + "1988-08-22": "Ashura (estimated)", + "1988-10-22": "Eid Milad-un-Nabi (estimated)", "1988-11-09": "Iqbal Day", "1988-12-25": "Quaid-e-Azam Day", "1989-03-23": "Pakistan Day", "1989-05-01": "Labour Day", - "1989-05-06": "Eid-ul-Fitr* (*estimated)", - "1989-05-07": "Eid-ul-Fitr* (*estimated)", - "1989-05-08": "Eid-ul-Fitr* (*estimated)", - "1989-07-13": "Eid-ul-Adha* (*estimated)", - "1989-07-14": "Eid-ul-Adha* (*estimated)", - "1989-07-15": "Eid-ul-Adha* (*estimated)", - "1989-08-10": "Ashura* (*estimated)", - "1989-08-11": "Ashura* (*estimated)", + "1989-05-06": "Eid-ul-Fitr (estimated)", + "1989-05-07": "Eid-ul-Fitr (estimated)", + "1989-05-08": "Eid-ul-Fitr (estimated)", + "1989-07-13": "Eid-ul-Adha (estimated)", + "1989-07-14": "Eid-ul-Adha (estimated)", + "1989-07-15": "Eid-ul-Adha (estimated)", + "1989-08-10": "Ashura (estimated)", + "1989-08-11": "Ashura (estimated)", "1989-08-14": "Independence Day", - "1989-10-11": "Eid Milad-un-Nabi* (*estimated)", + "1989-10-11": "Eid Milad-un-Nabi (estimated)", "1989-11-09": "Iqbal Day", "1989-12-25": "Quaid-e-Azam Day", "1990-02-05": "Kashmir Solidarity Day", "1990-03-23": "Pakistan Day", - "1990-04-26": "Eid-ul-Fitr* (*estimated)", - "1990-04-27": "Eid-ul-Fitr* (*estimated)", - "1990-04-28": "Eid-ul-Fitr* (*estimated)", + "1990-04-26": "Eid-ul-Fitr (estimated)", + "1990-04-27": "Eid-ul-Fitr (estimated)", + "1990-04-28": "Eid-ul-Fitr (estimated)", "1990-05-01": "Labour Day", - "1990-07-02": "Eid-ul-Adha* (*estimated)", - "1990-07-03": "Eid-ul-Adha* (*estimated)", - "1990-07-04": "Eid-ul-Adha* (*estimated)", - "1990-07-31": "Ashura* (*estimated)", - "1990-08-01": "Ashura* (*estimated)", + "1990-07-02": "Eid-ul-Adha (estimated)", + "1990-07-03": "Eid-ul-Adha (estimated)", + "1990-07-04": "Eid-ul-Adha (estimated)", + "1990-07-31": "Ashura (estimated)", + "1990-08-01": "Ashura (estimated)", "1990-08-14": "Independence Day", - "1990-10-01": "Eid Milad-un-Nabi* (*estimated)", + "1990-10-01": "Eid Milad-un-Nabi (estimated)", "1990-11-09": "Iqbal Day", "1990-12-25": "Quaid-e-Azam Day", "1991-02-05": "Kashmir Solidarity Day", "1991-03-23": "Pakistan Day", - "1991-04-15": "Eid-ul-Fitr* (*estimated)", - "1991-04-16": "Eid-ul-Fitr* (*estimated)", - "1991-04-17": "Eid-ul-Fitr* (*estimated)", + "1991-04-15": "Eid-ul-Fitr (estimated)", + "1991-04-16": "Eid-ul-Fitr (estimated)", + "1991-04-17": "Eid-ul-Fitr (estimated)", "1991-05-01": "Labour Day", - "1991-06-22": "Eid-ul-Adha* (*estimated)", - "1991-06-23": "Eid-ul-Adha* (*estimated)", - "1991-06-24": "Eid-ul-Adha* (*estimated)", - "1991-07-20": "Ashura* (*estimated)", - "1991-07-21": "Ashura* (*estimated)", + "1991-06-22": "Eid-ul-Adha (estimated)", + "1991-06-23": "Eid-ul-Adha (estimated)", + "1991-06-24": "Eid-ul-Adha (estimated)", + "1991-07-20": "Ashura (estimated)", + "1991-07-21": "Ashura (estimated)", "1991-08-14": "Independence Day", - "1991-09-20": "Eid Milad-un-Nabi* (*estimated)", + "1991-09-20": "Eid Milad-un-Nabi (estimated)", "1991-11-09": "Iqbal Day", "1991-12-25": "Quaid-e-Azam Day", "1992-02-05": "Kashmir Solidarity Day", "1992-03-23": "Pakistan Day", - "1992-04-04": "Eid-ul-Fitr* (*estimated)", - "1992-04-05": "Eid-ul-Fitr* (*estimated)", - "1992-04-06": "Eid-ul-Fitr* (*estimated)", + "1992-04-04": "Eid-ul-Fitr (estimated)", + "1992-04-05": "Eid-ul-Fitr (estimated)", + "1992-04-06": "Eid-ul-Fitr (estimated)", "1992-05-01": "Labour Day", - "1992-06-11": "Eid-ul-Adha* (*estimated)", - "1992-06-12": "Eid-ul-Adha* (*estimated)", - "1992-06-13": "Eid-ul-Adha* (*estimated)", - "1992-07-09": "Ashura* (*estimated)", - "1992-07-10": "Ashura* (*estimated)", + "1992-06-11": "Eid-ul-Adha (estimated)", + "1992-06-12": "Eid-ul-Adha (estimated)", + "1992-06-13": "Eid-ul-Adha (estimated)", + "1992-07-09": "Ashura (estimated)", + "1992-07-10": "Ashura (estimated)", "1992-08-14": "Independence Day", - "1992-09-09": "Eid Milad-un-Nabi* (*estimated)", + "1992-09-09": "Eid Milad-un-Nabi (estimated)", "1992-11-09": "Iqbal Day", "1992-12-25": "Quaid-e-Azam Day", "1993-02-05": "Kashmir Solidarity Day", "1993-03-23": "Pakistan Day", - "1993-03-24": "Eid-ul-Fitr* (*estimated)", - "1993-03-25": "Eid-ul-Fitr* (*estimated)", - "1993-03-26": "Eid-ul-Fitr* (*estimated)", + "1993-03-24": "Eid-ul-Fitr (estimated)", + "1993-03-25": "Eid-ul-Fitr (estimated)", + "1993-03-26": "Eid-ul-Fitr (estimated)", "1993-05-01": "Labour Day", - "1993-05-31": "Eid-ul-Adha* (*estimated)", - "1993-06-01": "Eid-ul-Adha* (*estimated)", - "1993-06-02": "Eid-ul-Adha* (*estimated)", - "1993-06-29": "Ashura* (*estimated)", - "1993-06-30": "Ashura* (*estimated)", + "1993-05-31": "Eid-ul-Adha (estimated)", + "1993-06-01": "Eid-ul-Adha (estimated)", + "1993-06-02": "Eid-ul-Adha (estimated)", + "1993-06-29": "Ashura (estimated)", + "1993-06-30": "Ashura (estimated)", "1993-08-14": "Independence Day", - "1993-08-29": "Eid Milad-un-Nabi* (*estimated)", + "1993-08-29": "Eid Milad-un-Nabi (estimated)", "1993-11-09": "Iqbal Day", "1993-12-25": "Quaid-e-Azam Day", "1994-02-05": "Kashmir Solidarity Day", - "1994-03-13": "Eid-ul-Fitr* (*estimated)", - "1994-03-14": "Eid-ul-Fitr* (*estimated)", - "1994-03-15": "Eid-ul-Fitr* (*estimated)", + "1994-03-13": "Eid-ul-Fitr (estimated)", + "1994-03-14": "Eid-ul-Fitr (estimated)", + "1994-03-15": "Eid-ul-Fitr (estimated)", "1994-03-23": "Pakistan Day", "1994-05-01": "Labour Day", - "1994-05-20": "Eid-ul-Adha* (*estimated)", - "1994-05-21": "Eid-ul-Adha* (*estimated)", - "1994-05-22": "Eid-ul-Adha* (*estimated)", - "1994-06-18": "Ashura* (*estimated)", - "1994-06-19": "Ashura* (*estimated)", + "1994-05-20": "Eid-ul-Adha (estimated)", + "1994-05-21": "Eid-ul-Adha (estimated)", + "1994-05-22": "Eid-ul-Adha (estimated)", + "1994-06-18": "Ashura (estimated)", + "1994-06-19": "Ashura (estimated)", "1994-08-14": "Independence Day", - "1994-08-19": "Eid Milad-un-Nabi* (*estimated)", + "1994-08-19": "Eid Milad-un-Nabi (estimated)", "1994-11-09": "Iqbal Day", "1994-12-25": "Quaid-e-Azam Day", "1995-02-05": "Kashmir Solidarity Day", - "1995-03-02": "Eid-ul-Fitr* (*estimated)", - "1995-03-03": "Eid-ul-Fitr* (*estimated)", - "1995-03-04": "Eid-ul-Fitr* (*estimated)", + "1995-03-02": "Eid-ul-Fitr (estimated)", + "1995-03-03": "Eid-ul-Fitr (estimated)", + "1995-03-04": "Eid-ul-Fitr (estimated)", "1995-03-23": "Pakistan Day", "1995-05-01": "Labour Day", - "1995-05-09": "Eid-ul-Adha* (*estimated)", - "1995-05-10": "Eid-ul-Adha* (*estimated)", - "1995-05-11": "Eid-ul-Adha* (*estimated)", - "1995-06-07": "Ashura* (*estimated)", - "1995-06-08": "Ashura* (*estimated)", - "1995-08-08": "Eid Milad-un-Nabi* (*estimated)", + "1995-05-09": "Eid-ul-Adha (estimated)", + "1995-05-10": "Eid-ul-Adha (estimated)", + "1995-05-11": "Eid-ul-Adha (estimated)", + "1995-06-07": "Ashura (estimated)", + "1995-06-08": "Ashura (estimated)", + "1995-08-08": "Eid Milad-un-Nabi (estimated)", "1995-08-14": "Independence Day", "1995-11-09": "Iqbal Day", "1995-12-25": "Quaid-e-Azam Day", "1996-02-05": "Kashmir Solidarity Day", - "1996-02-19": "Eid-ul-Fitr* (*estimated)", - "1996-02-20": "Eid-ul-Fitr* (*estimated)", - "1996-02-21": "Eid-ul-Fitr* (*estimated)", + "1996-02-19": "Eid-ul-Fitr (estimated)", + "1996-02-20": "Eid-ul-Fitr (estimated)", + "1996-02-21": "Eid-ul-Fitr (estimated)", "1996-03-23": "Pakistan Day", - "1996-04-27": "Eid-ul-Adha* (*estimated)", - "1996-04-28": "Eid-ul-Adha* (*estimated)", - "1996-04-29": "Eid-ul-Adha* (*estimated)", + "1996-04-27": "Eid-ul-Adha (estimated)", + "1996-04-28": "Eid-ul-Adha (estimated)", + "1996-04-29": "Eid-ul-Adha (estimated)", "1996-05-01": "Labour Day", - "1996-05-26": "Ashura* (*estimated)", - "1996-05-27": "Ashura* (*estimated)", - "1996-07-27": "Eid Milad-un-Nabi* (*estimated)", + "1996-05-26": "Ashura (estimated)", + "1996-05-27": "Ashura (estimated)", + "1996-07-27": "Eid Milad-un-Nabi (estimated)", "1996-08-14": "Independence Day", "1996-11-09": "Iqbal Day", "1996-12-25": "Quaid-e-Azam Day", "1997-02-05": "Kashmir Solidarity Day", - "1997-02-08": "Eid-ul-Fitr* (*estimated)", - "1997-02-09": "Eid-ul-Fitr* (*estimated)", - "1997-02-10": "Eid-ul-Fitr* (*estimated)", + "1997-02-08": "Eid-ul-Fitr (estimated)", + "1997-02-09": "Eid-ul-Fitr (estimated)", + "1997-02-10": "Eid-ul-Fitr (estimated)", "1997-03-23": "Pakistan Day", - "1997-04-17": "Eid-ul-Adha* (*estimated)", - "1997-04-18": "Eid-ul-Adha* (*estimated)", - "1997-04-19": "Eid-ul-Adha* (*estimated)", + "1997-04-17": "Eid-ul-Adha (estimated)", + "1997-04-18": "Eid-ul-Adha (estimated)", + "1997-04-19": "Eid-ul-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-05-15": "Ashura* (*estimated)", - "1997-05-16": "Ashura* (*estimated)", - "1997-07-16": "Eid Milad-un-Nabi* (*estimated)", + "1997-05-15": "Ashura (estimated)", + "1997-05-16": "Ashura (estimated)", + "1997-07-16": "Eid Milad-un-Nabi (estimated)", "1997-08-14": "Independence Day", "1997-11-09": "Iqbal Day", "1997-12-25": "Quaid-e-Azam Day", - "1998-01-29": "Eid-ul-Fitr* (*estimated)", - "1998-01-30": "Eid-ul-Fitr* (*estimated)", - "1998-01-31": "Eid-ul-Fitr* (*estimated)", + "1998-01-29": "Eid-ul-Fitr (estimated)", + "1998-01-30": "Eid-ul-Fitr (estimated)", + "1998-01-31": "Eid-ul-Fitr (estimated)", "1998-02-05": "Kashmir Solidarity Day", "1998-03-23": "Pakistan Day", - "1998-04-07": "Eid-ul-Adha* (*estimated)", - "1998-04-08": "Eid-ul-Adha* (*estimated)", - "1998-04-09": "Eid-ul-Adha* (*estimated)", + "1998-04-07": "Eid-ul-Adha (estimated)", + "1998-04-08": "Eid-ul-Adha (estimated)", + "1998-04-09": "Eid-ul-Adha (estimated)", "1998-05-01": "Labour Day", - "1998-05-05": "Ashura* (*estimated)", - "1998-05-06": "Ashura* (*estimated)", - "1998-07-06": "Eid Milad-un-Nabi* (*estimated)", + "1998-05-05": "Ashura (estimated)", + "1998-05-06": "Ashura (estimated)", + "1998-07-06": "Eid Milad-un-Nabi (estimated)", "1998-08-14": "Independence Day", "1998-11-09": "Iqbal Day", "1998-12-25": "Quaid-e-Azam Day", - "1999-01-18": "Eid-ul-Fitr* (*estimated)", - "1999-01-19": "Eid-ul-Fitr* (*estimated)", - "1999-01-20": "Eid-ul-Fitr* (*estimated)", + "1999-01-18": "Eid-ul-Fitr (estimated)", + "1999-01-19": "Eid-ul-Fitr (estimated)", + "1999-01-20": "Eid-ul-Fitr (estimated)", "1999-02-05": "Kashmir Solidarity Day", "1999-03-23": "Pakistan Day", - "1999-03-27": "Eid-ul-Adha* (*estimated)", - "1999-03-28": "Eid-ul-Adha* (*estimated)", - "1999-03-29": "Eid-ul-Adha* (*estimated)", - "1999-04-25": "Ashura* (*estimated)", - "1999-04-26": "Ashura* (*estimated)", + "1999-03-27": "Eid-ul-Adha (estimated)", + "1999-03-28": "Eid-ul-Adha (estimated)", + "1999-03-29": "Eid-ul-Adha (estimated)", + "1999-04-25": "Ashura (estimated)", + "1999-04-26": "Ashura (estimated)", "1999-05-01": "Labour Day", - "1999-06-26": "Eid Milad-un-Nabi* (*estimated)", + "1999-06-26": "Eid Milad-un-Nabi (estimated)", "1999-08-14": "Independence Day", "1999-11-09": "Iqbal Day", "1999-12-25": "Quaid-e-Azam Day", - "2000-01-08": "Eid-ul-Fitr* (*estimated)", - "2000-01-09": "Eid-ul-Fitr* (*estimated)", - "2000-01-10": "Eid-ul-Fitr* (*estimated)", + "2000-01-08": "Eid-ul-Fitr (estimated)", + "2000-01-09": "Eid-ul-Fitr (estimated)", + "2000-01-10": "Eid-ul-Fitr (estimated)", "2000-02-05": "Kashmir Solidarity Day", - "2000-03-16": "Eid-ul-Adha* (*estimated)", - "2000-03-17": "Eid-ul-Adha* (*estimated)", - "2000-03-18": "Eid-ul-Adha* (*estimated)", + "2000-03-16": "Eid-ul-Adha (estimated)", + "2000-03-17": "Eid-ul-Adha (estimated)", + "2000-03-18": "Eid-ul-Adha (estimated)", "2000-03-23": "Pakistan Day", - "2000-04-14": "Ashura* (*estimated)", - "2000-04-15": "Ashura* (*estimated)", + "2000-04-14": "Ashura (estimated)", + "2000-04-15": "Ashura (estimated)", "2000-05-01": "Labour Day", - "2000-06-14": "Eid Milad-un-Nabi* (*estimated)", + "2000-06-14": "Eid Milad-un-Nabi (estimated)", "2000-08-14": "Independence Day", "2000-11-09": "Iqbal Day", "2000-12-25": "Quaid-e-Azam Day", - "2000-12-27": "Eid-ul-Fitr* (*estimated)", - "2000-12-28": "Eid-ul-Fitr* (*estimated)", - "2000-12-29": "Eid-ul-Fitr* (*estimated)", + "2000-12-27": "Eid-ul-Fitr (estimated)", + "2000-12-28": "Eid-ul-Fitr (estimated)", + "2000-12-29": "Eid-ul-Fitr (estimated)", "2001-02-05": "Kashmir Solidarity Day", - "2001-03-05": "Eid-ul-Adha* (*estimated)", - "2001-03-06": "Eid-ul-Adha* (*estimated)", - "2001-03-07": "Eid-ul-Adha* (*estimated)", + "2001-03-05": "Eid-ul-Adha (estimated)", + "2001-03-06": "Eid-ul-Adha (estimated)", + "2001-03-07": "Eid-ul-Adha (estimated)", "2001-03-23": "Pakistan Day", - "2001-04-03": "Ashura* (*estimated)", - "2001-04-04": "Ashura* (*estimated)", + "2001-04-03": "Ashura (estimated)", + "2001-04-04": "Ashura (estimated)", "2001-05-01": "Labour Day", - "2001-06-04": "Eid Milad-un-Nabi* (*estimated)", + "2001-06-04": "Eid Milad-un-Nabi (estimated)", "2001-08-14": "Independence Day", "2001-11-09": "Iqbal Day", - "2001-12-16": "Eid-ul-Fitr* (*estimated)", - "2001-12-17": "Eid-ul-Fitr* (*estimated)", - "2001-12-18": "Eid-ul-Fitr* (*estimated)", + "2001-12-16": "Eid-ul-Fitr (estimated)", + "2001-12-17": "Eid-ul-Fitr (estimated)", + "2001-12-18": "Eid-ul-Fitr (estimated)", "2001-12-25": "Quaid-e-Azam Day", "2002-02-05": "Kashmir Solidarity Day", - "2002-02-22": "Eid-ul-Adha* (*estimated)", - "2002-02-23": "Eid-ul-Adha* (*estimated)", - "2002-02-24": "Eid-ul-Adha* (*estimated)", - "2002-03-23": "Ashura* (*estimated); Pakistan Day", - "2002-03-24": "Ashura* (*estimated)", + "2002-02-22": "Eid-ul-Adha (estimated)", + "2002-02-23": "Eid-ul-Adha (estimated)", + "2002-02-24": "Eid-ul-Adha (estimated)", + "2002-03-23": "Ashura (estimated); Pakistan Day", + "2002-03-24": "Ashura (estimated)", "2002-05-01": "Labour Day", - "2002-05-24": "Eid Milad-un-Nabi* (*estimated)", + "2002-05-24": "Eid Milad-un-Nabi (estimated)", "2002-08-14": "Independence Day", "2002-11-09": "Iqbal Day", - "2002-12-05": "Eid-ul-Fitr* (*estimated)", - "2002-12-06": "Eid-ul-Fitr* (*estimated)", - "2002-12-07": "Eid-ul-Fitr* (*estimated)", + "2002-12-05": "Eid-ul-Fitr (estimated)", + "2002-12-06": "Eid-ul-Fitr (estimated)", + "2002-12-07": "Eid-ul-Fitr (estimated)", "2002-12-25": "Quaid-e-Azam Day", "2003-02-05": "Kashmir Solidarity Day", - "2003-02-11": "Eid-ul-Adha* (*estimated)", - "2003-02-12": "Eid-ul-Adha* (*estimated)", - "2003-02-13": "Eid-ul-Adha* (*estimated)", - "2003-03-12": "Ashura* (*estimated)", - "2003-03-13": "Ashura* (*estimated)", + "2003-02-11": "Eid-ul-Adha (estimated)", + "2003-02-12": "Eid-ul-Adha (estimated)", + "2003-02-13": "Eid-ul-Adha (estimated)", + "2003-03-12": "Ashura (estimated)", + "2003-03-13": "Ashura (estimated)", "2003-03-23": "Pakistan Day", "2003-05-01": "Labour Day", - "2003-05-13": "Eid Milad-un-Nabi* (*estimated)", + "2003-05-13": "Eid Milad-un-Nabi (estimated)", "2003-08-14": "Independence Day", "2003-11-09": "Iqbal Day", - "2003-11-25": "Eid-ul-Fitr* (*estimated)", - "2003-11-26": "Eid-ul-Fitr* (*estimated)", - "2003-11-27": "Eid-ul-Fitr* (*estimated)", + "2003-11-25": "Eid-ul-Fitr (estimated)", + "2003-11-26": "Eid-ul-Fitr (estimated)", + "2003-11-27": "Eid-ul-Fitr (estimated)", "2003-12-25": "Quaid-e-Azam Day", - "2004-02-01": "Eid-ul-Adha* (*estimated)", - "2004-02-02": "Eid-ul-Adha* (*estimated)", - "2004-02-03": "Eid-ul-Adha* (*estimated)", + "2004-02-01": "Eid-ul-Adha (estimated)", + "2004-02-02": "Eid-ul-Adha (estimated)", + "2004-02-03": "Eid-ul-Adha (estimated)", "2004-02-05": "Kashmir Solidarity Day", - "2004-02-29": "Ashura* (*estimated)", - "2004-03-01": "Ashura* (*estimated)", + "2004-02-29": "Ashura (estimated)", + "2004-03-01": "Ashura (estimated)", "2004-03-23": "Pakistan Day", - "2004-05-01": "Eid Milad-un-Nabi* (*estimated); Labour Day", + "2004-05-01": "Eid Milad-un-Nabi (estimated); Labour Day", "2004-08-14": "Independence Day", "2004-11-09": "Iqbal Day", - "2004-11-14": "Eid-ul-Fitr* (*estimated)", - "2004-11-15": "Eid-ul-Fitr* (*estimated)", - "2004-11-16": "Eid-ul-Fitr* (*estimated)", + "2004-11-14": "Eid-ul-Fitr (estimated)", + "2004-11-15": "Eid-ul-Fitr (estimated)", + "2004-11-16": "Eid-ul-Fitr (estimated)", "2004-12-25": "Quaid-e-Azam Day", "2005-01-21": "Eid-ul-Adha", "2005-01-22": "Eid-ul-Adha", @@ -1036,416 +1036,416 @@ "2023-06-29": "Eid-ul-Adha", "2023-06-30": "Eid-ul-Adha", "2023-07-01": "Eid-ul-Adha", - "2023-07-27": "Ashura* (*estimated)", - "2023-07-28": "Ashura* (*estimated)", + "2023-07-27": "Ashura (estimated)", + "2023-07-28": "Ashura (estimated)", "2023-08-14": "Independence Day", - "2023-09-27": "Eid Milad-un-Nabi* (*estimated)", + "2023-09-27": "Eid Milad-un-Nabi (estimated)", "2023-11-09": "Iqbal Day", "2023-12-25": "Quaid-e-Azam Day", "2024-02-05": "Kashmir Solidarity Day", "2024-03-23": "Pakistan Day", - "2024-04-10": "Eid-ul-Fitr* (*estimated)", - "2024-04-11": "Eid-ul-Fitr* (*estimated)", - "2024-04-12": "Eid-ul-Fitr* (*estimated)", + "2024-04-10": "Eid-ul-Fitr (estimated)", + "2024-04-11": "Eid-ul-Fitr (estimated)", + "2024-04-12": "Eid-ul-Fitr (estimated)", "2024-05-01": "Labour Day", - "2024-06-16": "Eid-ul-Adha* (*estimated)", - "2024-06-17": "Eid-ul-Adha* (*estimated)", - "2024-06-18": "Eid-ul-Adha* (*estimated)", - "2024-07-15": "Ashura* (*estimated)", - "2024-07-16": "Ashura* (*estimated)", + "2024-06-16": "Eid-ul-Adha (estimated)", + "2024-06-17": "Eid-ul-Adha (estimated)", + "2024-06-18": "Eid-ul-Adha (estimated)", + "2024-07-15": "Ashura (estimated)", + "2024-07-16": "Ashura (estimated)", "2024-08-14": "Independence Day", - "2024-09-15": "Eid Milad-un-Nabi* (*estimated)", + "2024-09-15": "Eid Milad-un-Nabi (estimated)", "2024-11-09": "Iqbal Day", "2024-12-25": "Quaid-e-Azam Day", "2025-02-05": "Kashmir Solidarity Day", "2025-03-23": "Pakistan Day", - "2025-03-30": "Eid-ul-Fitr* (*estimated)", - "2025-03-31": "Eid-ul-Fitr* (*estimated)", - "2025-04-01": "Eid-ul-Fitr* (*estimated)", + "2025-03-30": "Eid-ul-Fitr (estimated)", + "2025-03-31": "Eid-ul-Fitr (estimated)", + "2025-04-01": "Eid-ul-Fitr (estimated)", "2025-05-01": "Labour Day", - "2025-06-06": "Eid-ul-Adha* (*estimated)", - "2025-06-07": "Eid-ul-Adha* (*estimated)", - "2025-06-08": "Eid-ul-Adha* (*estimated)", - "2025-07-04": "Ashura* (*estimated)", - "2025-07-05": "Ashura* (*estimated)", + "2025-06-06": "Eid-ul-Adha (estimated)", + "2025-06-07": "Eid-ul-Adha (estimated)", + "2025-06-08": "Eid-ul-Adha (estimated)", + "2025-07-04": "Ashura (estimated)", + "2025-07-05": "Ashura (estimated)", "2025-08-14": "Independence Day", - "2025-09-04": "Eid Milad-un-Nabi* (*estimated)", + "2025-09-04": "Eid Milad-un-Nabi (estimated)", "2025-11-09": "Iqbal Day", "2025-12-25": "Quaid-e-Azam Day", "2026-02-05": "Kashmir Solidarity Day", - "2026-03-20": "Eid-ul-Fitr* (*estimated)", - "2026-03-21": "Eid-ul-Fitr* (*estimated)", - "2026-03-22": "Eid-ul-Fitr* (*estimated)", + "2026-03-20": "Eid-ul-Fitr (estimated)", + "2026-03-21": "Eid-ul-Fitr (estimated)", + "2026-03-22": "Eid-ul-Fitr (estimated)", "2026-03-23": "Pakistan Day", "2026-05-01": "Labour Day", - "2026-05-27": "Eid-ul-Adha* (*estimated)", - "2026-05-28": "Eid-ul-Adha* (*estimated)", - "2026-05-29": "Eid-ul-Adha* (*estimated)", - "2026-06-24": "Ashura* (*estimated)", - "2026-06-25": "Ashura* (*estimated)", + "2026-05-27": "Eid-ul-Adha (estimated)", + "2026-05-28": "Eid-ul-Adha (estimated)", + "2026-05-29": "Eid-ul-Adha (estimated)", + "2026-06-24": "Ashura (estimated)", + "2026-06-25": "Ashura (estimated)", "2026-08-14": "Independence Day", - "2026-08-25": "Eid Milad-un-Nabi* (*estimated)", + "2026-08-25": "Eid Milad-un-Nabi (estimated)", "2026-11-09": "Iqbal Day", "2026-12-25": "Quaid-e-Azam Day", "2027-02-05": "Kashmir Solidarity Day", - "2027-03-09": "Eid-ul-Fitr* (*estimated)", - "2027-03-10": "Eid-ul-Fitr* (*estimated)", - "2027-03-11": "Eid-ul-Fitr* (*estimated)", + "2027-03-09": "Eid-ul-Fitr (estimated)", + "2027-03-10": "Eid-ul-Fitr (estimated)", + "2027-03-11": "Eid-ul-Fitr (estimated)", "2027-03-23": "Pakistan Day", "2027-05-01": "Labour Day", - "2027-05-16": "Eid-ul-Adha* (*estimated)", - "2027-05-17": "Eid-ul-Adha* (*estimated)", - "2027-05-18": "Eid-ul-Adha* (*estimated)", - "2027-06-14": "Ashura* (*estimated)", - "2027-06-15": "Ashura* (*estimated)", - "2027-08-14": "Eid Milad-un-Nabi* (*estimated); Independence Day", + "2027-05-16": "Eid-ul-Adha (estimated)", + "2027-05-17": "Eid-ul-Adha (estimated)", + "2027-05-18": "Eid-ul-Adha (estimated)", + "2027-06-14": "Ashura (estimated)", + "2027-06-15": "Ashura (estimated)", + "2027-08-14": "Eid Milad-un-Nabi (estimated); Independence Day", "2027-11-09": "Iqbal Day", "2027-12-25": "Quaid-e-Azam Day", "2028-02-05": "Kashmir Solidarity Day", - "2028-02-26": "Eid-ul-Fitr* (*estimated)", - "2028-02-27": "Eid-ul-Fitr* (*estimated)", - "2028-02-28": "Eid-ul-Fitr* (*estimated)", + "2028-02-26": "Eid-ul-Fitr (estimated)", + "2028-02-27": "Eid-ul-Fitr (estimated)", + "2028-02-28": "Eid-ul-Fitr (estimated)", "2028-03-23": "Pakistan Day", "2028-05-01": "Labour Day", - "2028-05-05": "Eid-ul-Adha* (*estimated)", - "2028-05-06": "Eid-ul-Adha* (*estimated)", - "2028-05-07": "Eid-ul-Adha* (*estimated)", - "2028-06-02": "Ashura* (*estimated)", - "2028-06-03": "Ashura* (*estimated)", - "2028-08-03": "Eid Milad-un-Nabi* (*estimated)", + "2028-05-05": "Eid-ul-Adha (estimated)", + "2028-05-06": "Eid-ul-Adha (estimated)", + "2028-05-07": "Eid-ul-Adha (estimated)", + "2028-06-02": "Ashura (estimated)", + "2028-06-03": "Ashura (estimated)", + "2028-08-03": "Eid Milad-un-Nabi (estimated)", "2028-08-14": "Independence Day", "2028-11-09": "Iqbal Day", "2028-12-25": "Quaid-e-Azam Day", "2029-02-05": "Kashmir Solidarity Day", - "2029-02-14": "Eid-ul-Fitr* (*estimated)", - "2029-02-15": "Eid-ul-Fitr* (*estimated)", - "2029-02-16": "Eid-ul-Fitr* (*estimated)", + "2029-02-14": "Eid-ul-Fitr (estimated)", + "2029-02-15": "Eid-ul-Fitr (estimated)", + "2029-02-16": "Eid-ul-Fitr (estimated)", "2029-03-23": "Pakistan Day", - "2029-04-24": "Eid-ul-Adha* (*estimated)", - "2029-04-25": "Eid-ul-Adha* (*estimated)", - "2029-04-26": "Eid-ul-Adha* (*estimated)", + "2029-04-24": "Eid-ul-Adha (estimated)", + "2029-04-25": "Eid-ul-Adha (estimated)", + "2029-04-26": "Eid-ul-Adha (estimated)", "2029-05-01": "Labour Day", - "2029-05-22": "Ashura* (*estimated)", - "2029-05-23": "Ashura* (*estimated)", - "2029-07-24": "Eid Milad-un-Nabi* (*estimated)", + "2029-05-22": "Ashura (estimated)", + "2029-05-23": "Ashura (estimated)", + "2029-07-24": "Eid Milad-un-Nabi (estimated)", "2029-08-14": "Independence Day", "2029-11-09": "Iqbal Day", "2029-12-25": "Quaid-e-Azam Day", - "2030-02-04": "Eid-ul-Fitr* (*estimated)", - "2030-02-05": "Eid-ul-Fitr* (*estimated); Kashmir Solidarity Day", - "2030-02-06": "Eid-ul-Fitr* (*estimated)", + "2030-02-04": "Eid-ul-Fitr (estimated)", + "2030-02-05": "Eid-ul-Fitr (estimated); Kashmir Solidarity Day", + "2030-02-06": "Eid-ul-Fitr (estimated)", "2030-03-23": "Pakistan Day", - "2030-04-13": "Eid-ul-Adha* (*estimated)", - "2030-04-14": "Eid-ul-Adha* (*estimated)", - "2030-04-15": "Eid-ul-Adha* (*estimated)", + "2030-04-13": "Eid-ul-Adha (estimated)", + "2030-04-14": "Eid-ul-Adha (estimated)", + "2030-04-15": "Eid-ul-Adha (estimated)", "2030-05-01": "Labour Day", - "2030-05-11": "Ashura* (*estimated)", - "2030-05-12": "Ashura* (*estimated)", - "2030-07-13": "Eid Milad-un-Nabi* (*estimated)", + "2030-05-11": "Ashura (estimated)", + "2030-05-12": "Ashura (estimated)", + "2030-07-13": "Eid Milad-un-Nabi (estimated)", "2030-08-14": "Independence Day", "2030-11-09": "Iqbal Day", "2030-12-25": "Quaid-e-Azam Day", - "2031-01-24": "Eid-ul-Fitr* (*estimated)", - "2031-01-25": "Eid-ul-Fitr* (*estimated)", - "2031-01-26": "Eid-ul-Fitr* (*estimated)", + "2031-01-24": "Eid-ul-Fitr (estimated)", + "2031-01-25": "Eid-ul-Fitr (estimated)", + "2031-01-26": "Eid-ul-Fitr (estimated)", "2031-02-05": "Kashmir Solidarity Day", "2031-03-23": "Pakistan Day", - "2031-04-02": "Eid-ul-Adha* (*estimated)", - "2031-04-03": "Eid-ul-Adha* (*estimated)", - "2031-04-04": "Eid-ul-Adha* (*estimated)", - "2031-05-01": "Ashura* (*estimated); Labour Day", - "2031-05-02": "Ashura* (*estimated)", - "2031-07-02": "Eid Milad-un-Nabi* (*estimated)", + "2031-04-02": "Eid-ul-Adha (estimated)", + "2031-04-03": "Eid-ul-Adha (estimated)", + "2031-04-04": "Eid-ul-Adha (estimated)", + "2031-05-01": "Ashura (estimated); Labour Day", + "2031-05-02": "Ashura (estimated)", + "2031-07-02": "Eid Milad-un-Nabi (estimated)", "2031-08-14": "Independence Day", "2031-11-09": "Iqbal Day", "2031-12-25": "Quaid-e-Azam Day", - "2032-01-14": "Eid-ul-Fitr* (*estimated)", - "2032-01-15": "Eid-ul-Fitr* (*estimated)", - "2032-01-16": "Eid-ul-Fitr* (*estimated)", + "2032-01-14": "Eid-ul-Fitr (estimated)", + "2032-01-15": "Eid-ul-Fitr (estimated)", + "2032-01-16": "Eid-ul-Fitr (estimated)", "2032-02-05": "Kashmir Solidarity Day", - "2032-03-22": "Eid-ul-Adha* (*estimated)", - "2032-03-23": "Eid-ul-Adha* (*estimated); Pakistan Day", - "2032-03-24": "Eid-ul-Adha* (*estimated)", - "2032-04-19": "Ashura* (*estimated)", - "2032-04-20": "Ashura* (*estimated)", + "2032-03-22": "Eid-ul-Adha (estimated)", + "2032-03-23": "Eid-ul-Adha (estimated); Pakistan Day", + "2032-03-24": "Eid-ul-Adha (estimated)", + "2032-04-19": "Ashura (estimated)", + "2032-04-20": "Ashura (estimated)", "2032-05-01": "Labour Day", - "2032-06-20": "Eid Milad-un-Nabi* (*estimated)", + "2032-06-20": "Eid Milad-un-Nabi (estimated)", "2032-08-14": "Independence Day", "2032-11-09": "Iqbal Day", "2032-12-25": "Quaid-e-Azam Day", - "2033-01-02": "Eid-ul-Fitr* (*estimated)", - "2033-01-03": "Eid-ul-Fitr* (*estimated)", - "2033-01-04": "Eid-ul-Fitr* (*estimated)", + "2033-01-02": "Eid-ul-Fitr (estimated)", + "2033-01-03": "Eid-ul-Fitr (estimated)", + "2033-01-04": "Eid-ul-Fitr (estimated)", "2033-02-05": "Kashmir Solidarity Day", - "2033-03-11": "Eid-ul-Adha* (*estimated)", - "2033-03-12": "Eid-ul-Adha* (*estimated)", - "2033-03-13": "Eid-ul-Adha* (*estimated)", + "2033-03-11": "Eid-ul-Adha (estimated)", + "2033-03-12": "Eid-ul-Adha (estimated)", + "2033-03-13": "Eid-ul-Adha (estimated)", "2033-03-23": "Pakistan Day", - "2033-04-09": "Ashura* (*estimated)", - "2033-04-10": "Ashura* (*estimated)", + "2033-04-09": "Ashura (estimated)", + "2033-04-10": "Ashura (estimated)", "2033-05-01": "Labour Day", - "2033-06-09": "Eid Milad-un-Nabi* (*estimated)", + "2033-06-09": "Eid Milad-un-Nabi (estimated)", "2033-08-14": "Independence Day", "2033-11-09": "Iqbal Day", - "2033-12-23": "Eid-ul-Fitr* (*estimated)", - "2033-12-24": "Eid-ul-Fitr* (*estimated)", - "2033-12-25": "Eid-ul-Fitr* (*estimated); Quaid-e-Azam Day", + "2033-12-23": "Eid-ul-Fitr (estimated)", + "2033-12-24": "Eid-ul-Fitr (estimated)", + "2033-12-25": "Eid-ul-Fitr (estimated); Quaid-e-Azam Day", "2034-02-05": "Kashmir Solidarity Day", - "2034-03-01": "Eid-ul-Adha* (*estimated)", - "2034-03-02": "Eid-ul-Adha* (*estimated)", - "2034-03-03": "Eid-ul-Adha* (*estimated)", + "2034-03-01": "Eid-ul-Adha (estimated)", + "2034-03-02": "Eid-ul-Adha (estimated)", + "2034-03-03": "Eid-ul-Adha (estimated)", "2034-03-23": "Pakistan Day", - "2034-03-29": "Ashura* (*estimated)", - "2034-03-30": "Ashura* (*estimated)", + "2034-03-29": "Ashura (estimated)", + "2034-03-30": "Ashura (estimated)", "2034-05-01": "Labour Day", - "2034-05-30": "Eid Milad-un-Nabi* (*estimated)", + "2034-05-30": "Eid Milad-un-Nabi (estimated)", "2034-08-14": "Independence Day", "2034-11-09": "Iqbal Day", - "2034-12-12": "Eid-ul-Fitr* (*estimated)", - "2034-12-13": "Eid-ul-Fitr* (*estimated)", - "2034-12-14": "Eid-ul-Fitr* (*estimated)", + "2034-12-12": "Eid-ul-Fitr (estimated)", + "2034-12-13": "Eid-ul-Fitr (estimated)", + "2034-12-14": "Eid-ul-Fitr (estimated)", "2034-12-25": "Quaid-e-Azam Day", "2035-02-05": "Kashmir Solidarity Day", - "2035-02-18": "Eid-ul-Adha* (*estimated)", - "2035-02-19": "Eid-ul-Adha* (*estimated)", - "2035-02-20": "Eid-ul-Adha* (*estimated)", - "2035-03-19": "Ashura* (*estimated)", - "2035-03-20": "Ashura* (*estimated)", + "2035-02-18": "Eid-ul-Adha (estimated)", + "2035-02-19": "Eid-ul-Adha (estimated)", + "2035-02-20": "Eid-ul-Adha (estimated)", + "2035-03-19": "Ashura (estimated)", + "2035-03-20": "Ashura (estimated)", "2035-03-23": "Pakistan Day", "2035-05-01": "Labour Day", - "2035-05-20": "Eid Milad-un-Nabi* (*estimated)", + "2035-05-20": "Eid Milad-un-Nabi (estimated)", "2035-08-14": "Independence Day", "2035-11-09": "Iqbal Day", - "2035-12-01": "Eid-ul-Fitr* (*estimated)", - "2035-12-02": "Eid-ul-Fitr* (*estimated)", - "2035-12-03": "Eid-ul-Fitr* (*estimated)", + "2035-12-01": "Eid-ul-Fitr (estimated)", + "2035-12-02": "Eid-ul-Fitr (estimated)", + "2035-12-03": "Eid-ul-Fitr (estimated)", "2035-12-25": "Quaid-e-Azam Day", "2036-02-05": "Kashmir Solidarity Day", - "2036-02-07": "Eid-ul-Adha* (*estimated)", - "2036-02-08": "Eid-ul-Adha* (*estimated)", - "2036-02-09": "Eid-ul-Adha* (*estimated)", - "2036-03-07": "Ashura* (*estimated)", - "2036-03-08": "Ashura* (*estimated)", + "2036-02-07": "Eid-ul-Adha (estimated)", + "2036-02-08": "Eid-ul-Adha (estimated)", + "2036-02-09": "Eid-ul-Adha (estimated)", + "2036-03-07": "Ashura (estimated)", + "2036-03-08": "Ashura (estimated)", "2036-03-23": "Pakistan Day", "2036-05-01": "Labour Day", - "2036-05-08": "Eid Milad-un-Nabi* (*estimated)", + "2036-05-08": "Eid Milad-un-Nabi (estimated)", "2036-08-14": "Independence Day", "2036-11-09": "Iqbal Day", - "2036-11-19": "Eid-ul-Fitr* (*estimated)", - "2036-11-20": "Eid-ul-Fitr* (*estimated)", - "2036-11-21": "Eid-ul-Fitr* (*estimated)", + "2036-11-19": "Eid-ul-Fitr (estimated)", + "2036-11-20": "Eid-ul-Fitr (estimated)", + "2036-11-21": "Eid-ul-Fitr (estimated)", "2036-12-25": "Quaid-e-Azam Day", - "2037-01-26": "Eid-ul-Adha* (*estimated)", - "2037-01-27": "Eid-ul-Adha* (*estimated)", - "2037-01-28": "Eid-ul-Adha* (*estimated)", + "2037-01-26": "Eid-ul-Adha (estimated)", + "2037-01-27": "Eid-ul-Adha (estimated)", + "2037-01-28": "Eid-ul-Adha (estimated)", "2037-02-05": "Kashmir Solidarity Day", - "2037-02-24": "Ashura* (*estimated)", - "2037-02-25": "Ashura* (*estimated)", + "2037-02-24": "Ashura (estimated)", + "2037-02-25": "Ashura (estimated)", "2037-03-23": "Pakistan Day", - "2037-04-28": "Eid Milad-un-Nabi* (*estimated)", + "2037-04-28": "Eid Milad-un-Nabi (estimated)", "2037-05-01": "Labour Day", "2037-08-14": "Independence Day", - "2037-11-08": "Eid-ul-Fitr* (*estimated)", - "2037-11-09": "Eid-ul-Fitr* (*estimated); Iqbal Day", - "2037-11-10": "Eid-ul-Fitr* (*estimated)", + "2037-11-08": "Eid-ul-Fitr (estimated)", + "2037-11-09": "Eid-ul-Fitr (estimated); Iqbal Day", + "2037-11-10": "Eid-ul-Fitr (estimated)", "2037-12-25": "Quaid-e-Azam Day", - "2038-01-16": "Eid-ul-Adha* (*estimated)", - "2038-01-17": "Eid-ul-Adha* (*estimated)", - "2038-01-18": "Eid-ul-Adha* (*estimated)", + "2038-01-16": "Eid-ul-Adha (estimated)", + "2038-01-17": "Eid-ul-Adha (estimated)", + "2038-01-18": "Eid-ul-Adha (estimated)", "2038-02-05": "Kashmir Solidarity Day", - "2038-02-13": "Ashura* (*estimated)", - "2038-02-14": "Ashura* (*estimated)", + "2038-02-13": "Ashura (estimated)", + "2038-02-14": "Ashura (estimated)", "2038-03-23": "Pakistan Day", - "2038-04-17": "Eid Milad-un-Nabi* (*estimated)", + "2038-04-17": "Eid Milad-un-Nabi (estimated)", "2038-05-01": "Labour Day", "2038-08-14": "Independence Day", - "2038-10-29": "Eid-ul-Fitr* (*estimated)", - "2038-10-30": "Eid-ul-Fitr* (*estimated)", - "2038-10-31": "Eid-ul-Fitr* (*estimated)", + "2038-10-29": "Eid-ul-Fitr (estimated)", + "2038-10-30": "Eid-ul-Fitr (estimated)", + "2038-10-31": "Eid-ul-Fitr (estimated)", "2038-11-09": "Iqbal Day", "2038-12-25": "Quaid-e-Azam Day", - "2039-01-05": "Eid-ul-Adha* (*estimated)", - "2039-01-06": "Eid-ul-Adha* (*estimated)", - "2039-01-07": "Eid-ul-Adha* (*estimated)", - "2039-02-03": "Ashura* (*estimated)", - "2039-02-04": "Ashura* (*estimated)", + "2039-01-05": "Eid-ul-Adha (estimated)", + "2039-01-06": "Eid-ul-Adha (estimated)", + "2039-01-07": "Eid-ul-Adha (estimated)", + "2039-02-03": "Ashura (estimated)", + "2039-02-04": "Ashura (estimated)", "2039-02-05": "Kashmir Solidarity Day", "2039-03-23": "Pakistan Day", - "2039-04-06": "Eid Milad-un-Nabi* (*estimated)", + "2039-04-06": "Eid Milad-un-Nabi (estimated)", "2039-05-01": "Labour Day", "2039-08-14": "Independence Day", - "2039-10-19": "Eid-ul-Fitr* (*estimated)", - "2039-10-20": "Eid-ul-Fitr* (*estimated)", - "2039-10-21": "Eid-ul-Fitr* (*estimated)", + "2039-10-19": "Eid-ul-Fitr (estimated)", + "2039-10-20": "Eid-ul-Fitr (estimated)", + "2039-10-21": "Eid-ul-Fitr (estimated)", "2039-11-09": "Iqbal Day", "2039-12-25": "Quaid-e-Azam Day", - "2039-12-26": "Eid-ul-Adha* (*estimated)", - "2039-12-27": "Eid-ul-Adha* (*estimated)", - "2039-12-28": "Eid-ul-Adha* (*estimated)", - "2040-01-23": "Ashura* (*estimated)", - "2040-01-24": "Ashura* (*estimated)", + "2039-12-26": "Eid-ul-Adha (estimated)", + "2039-12-27": "Eid-ul-Adha (estimated)", + "2039-12-28": "Eid-ul-Adha (estimated)", + "2040-01-23": "Ashura (estimated)", + "2040-01-24": "Ashura (estimated)", "2040-02-05": "Kashmir Solidarity Day", "2040-03-23": "Pakistan Day", - "2040-03-25": "Eid Milad-un-Nabi* (*estimated)", + "2040-03-25": "Eid Milad-un-Nabi (estimated)", "2040-05-01": "Labour Day", "2040-08-14": "Independence Day", - "2040-10-07": "Eid-ul-Fitr* (*estimated)", - "2040-10-08": "Eid-ul-Fitr* (*estimated)", - "2040-10-09": "Eid-ul-Fitr* (*estimated)", + "2040-10-07": "Eid-ul-Fitr (estimated)", + "2040-10-08": "Eid-ul-Fitr (estimated)", + "2040-10-09": "Eid-ul-Fitr (estimated)", "2040-11-09": "Iqbal Day", - "2040-12-14": "Eid-ul-Adha* (*estimated)", - "2040-12-15": "Eid-ul-Adha* (*estimated)", - "2040-12-16": "Eid-ul-Adha* (*estimated)", + "2040-12-14": "Eid-ul-Adha (estimated)", + "2040-12-15": "Eid-ul-Adha (estimated)", + "2040-12-16": "Eid-ul-Adha (estimated)", "2040-12-25": "Quaid-e-Azam Day", - "2041-01-12": "Ashura* (*estimated)", - "2041-01-13": "Ashura* (*estimated)", + "2041-01-12": "Ashura (estimated)", + "2041-01-13": "Ashura (estimated)", "2041-02-05": "Kashmir Solidarity Day", - "2041-03-15": "Eid Milad-un-Nabi* (*estimated)", + "2041-03-15": "Eid Milad-un-Nabi (estimated)", "2041-03-23": "Pakistan Day", "2041-05-01": "Labour Day", "2041-08-14": "Independence Day", - "2041-09-26": "Eid-ul-Fitr* (*estimated)", - "2041-09-27": "Eid-ul-Fitr* (*estimated)", - "2041-09-28": "Eid-ul-Fitr* (*estimated)", + "2041-09-26": "Eid-ul-Fitr (estimated)", + "2041-09-27": "Eid-ul-Fitr (estimated)", + "2041-09-28": "Eid-ul-Fitr (estimated)", "2041-11-09": "Iqbal Day", - "2041-12-04": "Eid-ul-Adha* (*estimated)", - "2041-12-05": "Eid-ul-Adha* (*estimated)", - "2041-12-06": "Eid-ul-Adha* (*estimated)", + "2041-12-04": "Eid-ul-Adha (estimated)", + "2041-12-05": "Eid-ul-Adha (estimated)", + "2041-12-06": "Eid-ul-Adha (estimated)", "2041-12-25": "Quaid-e-Azam Day", - "2042-01-01": "Ashura* (*estimated)", - "2042-01-02": "Ashura* (*estimated)", + "2042-01-01": "Ashura (estimated)", + "2042-01-02": "Ashura (estimated)", "2042-02-05": "Kashmir Solidarity Day", - "2042-03-04": "Eid Milad-un-Nabi* (*estimated)", + "2042-03-04": "Eid Milad-un-Nabi (estimated)", "2042-03-23": "Pakistan Day", "2042-05-01": "Labour Day", "2042-08-14": "Independence Day", - "2042-09-15": "Eid-ul-Fitr* (*estimated)", - "2042-09-16": "Eid-ul-Fitr* (*estimated)", - "2042-09-17": "Eid-ul-Fitr* (*estimated)", + "2042-09-15": "Eid-ul-Fitr (estimated)", + "2042-09-16": "Eid-ul-Fitr (estimated)", + "2042-09-17": "Eid-ul-Fitr (estimated)", "2042-11-09": "Iqbal Day", - "2042-11-23": "Eid-ul-Adha* (*estimated)", - "2042-11-24": "Eid-ul-Adha* (*estimated)", - "2042-11-25": "Eid-ul-Adha* (*estimated)", - "2042-12-22": "Ashura* (*estimated)", - "2042-12-23": "Ashura* (*estimated)", + "2042-11-23": "Eid-ul-Adha (estimated)", + "2042-11-24": "Eid-ul-Adha (estimated)", + "2042-11-25": "Eid-ul-Adha (estimated)", + "2042-12-22": "Ashura (estimated)", + "2042-12-23": "Ashura (estimated)", "2042-12-25": "Quaid-e-Azam Day", "2043-02-05": "Kashmir Solidarity Day", - "2043-02-22": "Eid Milad-un-Nabi* (*estimated)", + "2043-02-22": "Eid Milad-un-Nabi (estimated)", "2043-03-23": "Pakistan Day", "2043-05-01": "Labour Day", "2043-08-14": "Independence Day", - "2043-09-04": "Eid-ul-Fitr* (*estimated)", - "2043-09-05": "Eid-ul-Fitr* (*estimated)", - "2043-09-06": "Eid-ul-Fitr* (*estimated)", + "2043-09-04": "Eid-ul-Fitr (estimated)", + "2043-09-05": "Eid-ul-Fitr (estimated)", + "2043-09-06": "Eid-ul-Fitr (estimated)", "2043-11-09": "Iqbal Day", - "2043-11-12": "Eid-ul-Adha* (*estimated)", - "2043-11-13": "Eid-ul-Adha* (*estimated)", - "2043-11-14": "Eid-ul-Adha* (*estimated)", - "2043-12-11": "Ashura* (*estimated)", - "2043-12-12": "Ashura* (*estimated)", + "2043-11-12": "Eid-ul-Adha (estimated)", + "2043-11-13": "Eid-ul-Adha (estimated)", + "2043-11-14": "Eid-ul-Adha (estimated)", + "2043-12-11": "Ashura (estimated)", + "2043-12-12": "Ashura (estimated)", "2043-12-25": "Quaid-e-Azam Day", "2044-02-05": "Kashmir Solidarity Day", - "2044-02-11": "Eid Milad-un-Nabi* (*estimated)", + "2044-02-11": "Eid Milad-un-Nabi (estimated)", "2044-03-23": "Pakistan Day", "2044-05-01": "Labour Day", "2044-08-14": "Independence Day", - "2044-08-24": "Eid-ul-Fitr* (*estimated)", - "2044-08-25": "Eid-ul-Fitr* (*estimated)", - "2044-08-26": "Eid-ul-Fitr* (*estimated)", - "2044-10-31": "Eid-ul-Adha* (*estimated)", - "2044-11-01": "Eid-ul-Adha* (*estimated)", - "2044-11-02": "Eid-ul-Adha* (*estimated)", + "2044-08-24": "Eid-ul-Fitr (estimated)", + "2044-08-25": "Eid-ul-Fitr (estimated)", + "2044-08-26": "Eid-ul-Fitr (estimated)", + "2044-10-31": "Eid-ul-Adha (estimated)", + "2044-11-01": "Eid-ul-Adha (estimated)", + "2044-11-02": "Eid-ul-Adha (estimated)", "2044-11-09": "Iqbal Day", - "2044-11-29": "Ashura* (*estimated)", - "2044-11-30": "Ashura* (*estimated)", + "2044-11-29": "Ashura (estimated)", + "2044-11-30": "Ashura (estimated)", "2044-12-25": "Quaid-e-Azam Day", - "2045-01-30": "Eid Milad-un-Nabi* (*estimated)", + "2045-01-30": "Eid Milad-un-Nabi (estimated)", "2045-02-05": "Kashmir Solidarity Day", "2045-03-23": "Pakistan Day", "2045-05-01": "Labour Day", - "2045-08-14": "Eid-ul-Fitr* (*estimated); Independence Day", - "2045-08-15": "Eid-ul-Fitr* (*estimated)", - "2045-08-16": "Eid-ul-Fitr* (*estimated)", - "2045-10-21": "Eid-ul-Adha* (*estimated)", - "2045-10-22": "Eid-ul-Adha* (*estimated)", - "2045-10-23": "Eid-ul-Adha* (*estimated)", + "2045-08-14": "Eid-ul-Fitr (estimated); Independence Day", + "2045-08-15": "Eid-ul-Fitr (estimated)", + "2045-08-16": "Eid-ul-Fitr (estimated)", + "2045-10-21": "Eid-ul-Adha (estimated)", + "2045-10-22": "Eid-ul-Adha (estimated)", + "2045-10-23": "Eid-ul-Adha (estimated)", "2045-11-09": "Iqbal Day", - "2045-11-18": "Ashura* (*estimated)", - "2045-11-19": "Ashura* (*estimated)", + "2045-11-18": "Ashura (estimated)", + "2045-11-19": "Ashura (estimated)", "2045-12-25": "Quaid-e-Azam Day", - "2046-01-19": "Eid Milad-un-Nabi* (*estimated)", + "2046-01-19": "Eid Milad-un-Nabi (estimated)", "2046-02-05": "Kashmir Solidarity Day", "2046-03-23": "Pakistan Day", "2046-05-01": "Labour Day", - "2046-08-03": "Eid-ul-Fitr* (*estimated)", - "2046-08-04": "Eid-ul-Fitr* (*estimated)", - "2046-08-05": "Eid-ul-Fitr* (*estimated)", + "2046-08-03": "Eid-ul-Fitr (estimated)", + "2046-08-04": "Eid-ul-Fitr (estimated)", + "2046-08-05": "Eid-ul-Fitr (estimated)", "2046-08-14": "Independence Day", - "2046-10-10": "Eid-ul-Adha* (*estimated)", - "2046-10-11": "Eid-ul-Adha* (*estimated)", - "2046-10-12": "Eid-ul-Adha* (*estimated)", - "2046-11-08": "Ashura* (*estimated)", - "2046-11-09": "Ashura* (*estimated); Iqbal Day", + "2046-10-10": "Eid-ul-Adha (estimated)", + "2046-10-11": "Eid-ul-Adha (estimated)", + "2046-10-12": "Eid-ul-Adha (estimated)", + "2046-11-08": "Ashura (estimated)", + "2046-11-09": "Ashura (estimated); Iqbal Day", "2046-12-25": "Quaid-e-Azam Day", - "2047-01-08": "Eid Milad-un-Nabi* (*estimated)", + "2047-01-08": "Eid Milad-un-Nabi (estimated)", "2047-02-05": "Kashmir Solidarity Day", "2047-03-23": "Pakistan Day", "2047-05-01": "Labour Day", - "2047-07-24": "Eid-ul-Fitr* (*estimated)", - "2047-07-25": "Eid-ul-Fitr* (*estimated)", - "2047-07-26": "Eid-ul-Fitr* (*estimated)", + "2047-07-24": "Eid-ul-Fitr (estimated)", + "2047-07-25": "Eid-ul-Fitr (estimated)", + "2047-07-26": "Eid-ul-Fitr (estimated)", "2047-08-14": "Independence Day", - "2047-09-30": "Eid-ul-Adha* (*estimated)", - "2047-10-01": "Eid-ul-Adha* (*estimated)", - "2047-10-02": "Eid-ul-Adha* (*estimated)", - "2047-10-28": "Ashura* (*estimated)", - "2047-10-29": "Ashura* (*estimated)", + "2047-09-30": "Eid-ul-Adha (estimated)", + "2047-10-01": "Eid-ul-Adha (estimated)", + "2047-10-02": "Eid-ul-Adha (estimated)", + "2047-10-28": "Ashura (estimated)", + "2047-10-29": "Ashura (estimated)", "2047-11-09": "Iqbal Day", "2047-12-25": "Quaid-e-Azam Day", - "2047-12-29": "Eid Milad-un-Nabi* (*estimated)", + "2047-12-29": "Eid Milad-un-Nabi (estimated)", "2048-02-05": "Kashmir Solidarity Day", "2048-03-23": "Pakistan Day", "2048-05-01": "Labour Day", - "2048-07-12": "Eid-ul-Fitr* (*estimated)", - "2048-07-13": "Eid-ul-Fitr* (*estimated)", - "2048-07-14": "Eid-ul-Fitr* (*estimated)", + "2048-07-12": "Eid-ul-Fitr (estimated)", + "2048-07-13": "Eid-ul-Fitr (estimated)", + "2048-07-14": "Eid-ul-Fitr (estimated)", "2048-08-14": "Independence Day", - "2048-09-19": "Eid-ul-Adha* (*estimated)", - "2048-09-20": "Eid-ul-Adha* (*estimated)", - "2048-09-21": "Eid-ul-Adha* (*estimated)", - "2048-10-17": "Ashura* (*estimated)", - "2048-10-18": "Ashura* (*estimated)", + "2048-09-19": "Eid-ul-Adha (estimated)", + "2048-09-20": "Eid-ul-Adha (estimated)", + "2048-09-21": "Eid-ul-Adha (estimated)", + "2048-10-17": "Ashura (estimated)", + "2048-10-18": "Ashura (estimated)", "2048-11-09": "Iqbal Day", - "2048-12-18": "Eid Milad-un-Nabi* (*estimated)", + "2048-12-18": "Eid Milad-un-Nabi (estimated)", "2048-12-25": "Quaid-e-Azam Day", "2049-02-05": "Kashmir Solidarity Day", "2049-03-23": "Pakistan Day", "2049-05-01": "Labour Day", - "2049-07-01": "Eid-ul-Fitr* (*estimated)", - "2049-07-02": "Eid-ul-Fitr* (*estimated)", - "2049-07-03": "Eid-ul-Fitr* (*estimated)", + "2049-07-01": "Eid-ul-Fitr (estimated)", + "2049-07-02": "Eid-ul-Fitr (estimated)", + "2049-07-03": "Eid-ul-Fitr (estimated)", "2049-08-14": "Independence Day", - "2049-09-08": "Eid-ul-Adha* (*estimated)", - "2049-09-09": "Eid-ul-Adha* (*estimated)", - "2049-09-10": "Eid-ul-Adha* (*estimated)", - "2049-10-06": "Ashura* (*estimated)", - "2049-10-07": "Ashura* (*estimated)", + "2049-09-08": "Eid-ul-Adha (estimated)", + "2049-09-09": "Eid-ul-Adha (estimated)", + "2049-09-10": "Eid-ul-Adha (estimated)", + "2049-10-06": "Ashura (estimated)", + "2049-10-07": "Ashura (estimated)", "2049-11-09": "Iqbal Day", - "2049-12-07": "Eid Milad-un-Nabi* (*estimated)", + "2049-12-07": "Eid Milad-un-Nabi (estimated)", "2049-12-25": "Quaid-e-Azam Day", "2050-02-05": "Kashmir Solidarity Day", "2050-03-23": "Pakistan Day", "2050-05-01": "Labour Day", - "2050-06-20": "Eid-ul-Fitr* (*estimated)", - "2050-06-21": "Eid-ul-Fitr* (*estimated)", - "2050-06-22": "Eid-ul-Fitr* (*estimated)", + "2050-06-20": "Eid-ul-Fitr (estimated)", + "2050-06-21": "Eid-ul-Fitr (estimated)", + "2050-06-22": "Eid-ul-Fitr (estimated)", "2050-08-14": "Independence Day", - "2050-08-28": "Eid-ul-Adha* (*estimated)", - "2050-08-29": "Eid-ul-Adha* (*estimated)", - "2050-08-30": "Eid-ul-Adha* (*estimated)", - "2050-09-25": "Ashura* (*estimated)", - "2050-09-26": "Ashura* (*estimated)", + "2050-08-28": "Eid-ul-Adha (estimated)", + "2050-08-29": "Eid-ul-Adha (estimated)", + "2050-08-30": "Eid-ul-Adha (estimated)", + "2050-09-25": "Ashura (estimated)", + "2050-09-26": "Ashura (estimated)", "2050-11-09": "Iqbal Day", - "2050-11-26": "Eid Milad-un-Nabi* (*estimated)", + "2050-11-26": "Eid Milad-un-Nabi (estimated)", "2050-12-25": "Quaid-e-Azam Day" } diff --git a/snapshots/countries/SA_COMMON.json b/snapshots/countries/SA_COMMON.json index 8e922bbaf..6aa74f62f 100644 --- a/snapshots/countries/SA_COMMON.json +++ b/snapshots/countries/SA_COMMON.json @@ -1,1162 +1,1162 @@ { - "1950-07-16": "Eid al-Fitr Holiday* (*estimated)", - "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", - "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", - "1950-07-19": "Eid al-Fitr Holiday* (*estimated)", - "1950-09-22": "Arafat Day* (*estimated)", - "1950-09-23": "Eid al-Adha Holiday* (*estimated)", - "1950-09-24": "Eid al-Adha Holiday* (*estimated)", - "1950-09-25": "Eid al-Adha Holiday* (*estimated)", - "1950-09-26": "Eid al-Adha Holiday* (*estimated) (observed)", - "1951-07-06": "Eid al-Fitr Holiday* (*estimated)", - "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", - "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", - "1951-07-09": "Eid al-Fitr Holiday* (*estimated)", - "1951-07-10": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1951-09-11": "Arafat Day* (*estimated)", - "1951-09-12": "Eid al-Adha Holiday* (*estimated)", - "1951-09-13": "Eid al-Adha Holiday* (*estimated)", - "1951-09-14": "Eid al-Adha Holiday* (*estimated)", - "1951-09-15": "Eid al-Adha Holiday* (*estimated) (observed)", - "1951-09-16": "Eid al-Adha Holiday* (*estimated) (observed)", - "1952-06-23": "Eid al-Fitr Holiday* (*estimated)", - "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", - "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", - "1952-06-26": "Eid al-Fitr Holiday* (*estimated)", - "1952-06-28": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1952-08-30": "Arafat Day* (*estimated)", - "1952-08-31": "Eid al-Adha Holiday* (*estimated)", - "1952-09-01": "Eid al-Adha Holiday* (*estimated)", - "1952-09-02": "Eid al-Adha Holiday* (*estimated)", - "1953-06-13": "Eid al-Fitr Holiday* (*estimated)", - "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", - "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", - "1953-06-16": "Eid al-Fitr Holiday* (*estimated)", - "1953-08-19": "Arafat Day* (*estimated)", - "1953-08-20": "Eid al-Adha Holiday* (*estimated)", - "1953-08-21": "Eid al-Adha Holiday* (*estimated)", - "1953-08-22": "Eid al-Adha Holiday* (*estimated)", - "1953-08-23": "Eid al-Adha Holiday* (*estimated) (observed)", - "1953-08-24": "Eid al-Adha Holiday* (*estimated) (observed)", - "1954-06-02": "Eid al-Fitr Holiday* (*estimated)", - "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", - "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", - "1954-06-05": "Eid al-Fitr Holiday* (*estimated)", - "1954-06-06": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1954-06-07": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1954-08-08": "Arafat Day* (*estimated)", - "1954-08-09": "Eid al-Adha Holiday* (*estimated)", - "1954-08-10": "Eid al-Adha Holiday* (*estimated)", - "1954-08-11": "Eid al-Adha Holiday* (*estimated)", - "1955-05-23": "Eid al-Fitr Holiday* (*estimated)", - "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", - "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", - "1955-05-26": "Eid al-Fitr Holiday* (*estimated)", - "1955-05-28": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1955-07-29": "Arafat Day* (*estimated)", - "1955-07-30": "Eid al-Adha Holiday* (*estimated)", - "1955-07-31": "Eid al-Adha Holiday* (*estimated)", - "1955-08-01": "Eid al-Adha Holiday* (*estimated)", - "1955-08-02": "Eid al-Adha Holiday* (*estimated) (observed)", - "1956-05-11": "Eid al-Fitr Holiday* (*estimated)", - "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", - "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", - "1956-05-14": "Eid al-Fitr Holiday* (*estimated)", - "1956-05-15": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1956-07-18": "Arafat Day* (*estimated)", - "1956-07-19": "Eid al-Adha Holiday* (*estimated)", - "1956-07-20": "Eid al-Adha Holiday* (*estimated)", - "1956-07-21": "Eid al-Adha Holiday* (*estimated)", - "1956-07-22": "Eid al-Adha Holiday* (*estimated) (observed)", - "1956-07-23": "Eid al-Adha Holiday* (*estimated) (observed)", - "1957-05-01": "Eid al-Fitr Holiday* (*estimated)", - "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", - "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", - "1957-05-04": "Eid al-Fitr Holiday* (*estimated)", - "1957-05-05": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1957-05-06": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1957-07-07": "Arafat Day* (*estimated)", - "1957-07-08": "Eid al-Adha Holiday* (*estimated)", - "1957-07-09": "Eid al-Adha Holiday* (*estimated)", - "1957-07-10": "Eid al-Adha Holiday* (*estimated)", - "1958-04-20": "Eid al-Fitr Holiday* (*estimated)", - "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", - "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", - "1958-04-23": "Eid al-Fitr Holiday* (*estimated)", - "1958-06-26": "Arafat Day* (*estimated)", - "1958-06-27": "Eid al-Adha Holiday* (*estimated)", - "1958-06-28": "Eid al-Adha Holiday* (*estimated)", - "1958-06-29": "Eid al-Adha Holiday* (*estimated)", - "1958-06-30": "Eid al-Adha Holiday* (*estimated) (observed)", - "1958-07-01": "Eid al-Adha Holiday* (*estimated) (observed)", - "1959-04-10": "Eid al-Fitr Holiday* (*estimated)", - "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", - "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", - "1959-04-13": "Eid al-Fitr Holiday* (*estimated)", - "1959-04-14": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1959-06-16": "Arafat Day* (*estimated)", - "1959-06-17": "Eid al-Adha Holiday* (*estimated)", - "1959-06-18": "Eid al-Adha Holiday* (*estimated)", - "1959-06-19": "Eid al-Adha Holiday* (*estimated)", - "1959-06-20": "Eid al-Adha Holiday* (*estimated) (observed)", - "1959-06-21": "Eid al-Adha Holiday* (*estimated) (observed)", - "1960-03-28": "Eid al-Fitr Holiday* (*estimated)", - "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", - "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", - "1960-03-31": "Eid al-Fitr Holiday* (*estimated)", - "1960-04-02": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1960-06-03": "Arafat Day* (*estimated)", - "1960-06-04": "Eid al-Adha Holiday* (*estimated)", - "1960-06-05": "Eid al-Adha Holiday* (*estimated)", - "1960-06-06": "Eid al-Adha Holiday* (*estimated)", - "1960-06-07": "Eid al-Adha Holiday* (*estimated) (observed)", - "1961-03-18": "Eid al-Fitr Holiday* (*estimated)", - "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", - "1961-03-20": "Eid al-Fitr Holiday* (*estimated)", - "1961-03-21": "Eid al-Fitr Holiday* (*estimated)", - "1961-05-24": "Arafat Day* (*estimated)", - "1961-05-25": "Eid al-Adha Holiday* (*estimated)", - "1961-05-26": "Eid al-Adha Holiday* (*estimated)", - "1961-05-27": "Eid al-Adha Holiday* (*estimated)", - "1961-05-28": "Eid al-Adha Holiday* (*estimated) (observed)", - "1961-05-29": "Eid al-Adha Holiday* (*estimated) (observed)", - "1962-03-07": "Eid al-Fitr Holiday* (*estimated)", - "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", - "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", - "1962-03-10": "Eid al-Fitr Holiday* (*estimated)", - "1962-03-11": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1962-03-12": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1962-05-13": "Arafat Day* (*estimated)", - "1962-05-14": "Eid al-Adha Holiday* (*estimated)", - "1962-05-15": "Eid al-Adha Holiday* (*estimated)", - "1962-05-16": "Eid al-Adha Holiday* (*estimated)", - "1963-02-24": "Eid al-Fitr Holiday* (*estimated)", - "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", - "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", - "1963-02-27": "Eid al-Fitr Holiday* (*estimated)", - "1963-05-02": "Arafat Day* (*estimated)", - "1963-05-03": "Eid al-Adha Holiday* (*estimated)", - "1963-05-04": "Eid al-Adha Holiday* (*estimated)", - "1963-05-05": "Eid al-Adha Holiday* (*estimated)", - "1963-05-06": "Eid al-Adha Holiday* (*estimated) (observed)", - "1963-05-07": "Eid al-Adha Holiday* (*estimated) (observed)", - "1964-02-14": "Eid al-Fitr Holiday* (*estimated)", - "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", - "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", - "1964-02-17": "Eid al-Fitr Holiday* (*estimated)", - "1964-02-18": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1964-04-21": "Arafat Day* (*estimated)", - "1964-04-22": "Eid al-Adha Holiday* (*estimated)", - "1964-04-23": "Eid al-Adha Holiday* (*estimated)", - "1964-04-24": "Eid al-Adha Holiday* (*estimated)", - "1964-04-25": "Eid al-Adha Holiday* (*estimated) (observed)", - "1964-04-26": "Eid al-Adha Holiday* (*estimated) (observed)", - "1965-02-02": "Eid al-Fitr Holiday* (*estimated)", - "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", - "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", - "1965-02-05": "Eid al-Fitr Holiday* (*estimated)", - "1965-02-06": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1965-02-07": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1965-04-10": "Arafat Day* (*estimated)", - "1965-04-11": "Eid al-Adha Holiday* (*estimated)", - "1965-04-12": "Eid al-Adha Holiday* (*estimated)", - "1965-04-13": "Eid al-Adha Holiday* (*estimated)", - "1966-01-22": "Eid al-Fitr Holiday* (*estimated)", - "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", - "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", - "1966-01-25": "Eid al-Fitr Holiday* (*estimated)", - "1966-03-31": "Arafat Day* (*estimated)", - "1966-04-01": "Eid al-Adha Holiday* (*estimated)", - "1966-04-02": "Eid al-Adha Holiday* (*estimated)", - "1966-04-03": "Eid al-Adha Holiday* (*estimated)", - "1966-04-04": "Eid al-Adha Holiday* (*estimated) (observed)", - "1966-04-05": "Eid al-Adha Holiday* (*estimated) (observed)", - "1967-01-12": "Eid al-Fitr Holiday* (*estimated)", - "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", - "1967-01-14": "Eid al-Fitr Holiday* (*estimated)", - "1967-01-15": "Eid al-Fitr Holiday* (*estimated)", - "1967-01-16": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1967-01-17": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1967-03-20": "Arafat Day* (*estimated)", - "1967-03-21": "Eid al-Adha Holiday* (*estimated)", - "1967-03-22": "Eid al-Adha Holiday* (*estimated)", - "1967-03-23": "Eid al-Adha Holiday* (*estimated)", - "1967-03-25": "Eid al-Adha Holiday* (*estimated) (observed)", - "1968-01-01": "Eid al-Fitr Holiday* (*estimated)", - "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", - "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", - "1968-01-04": "Eid al-Fitr Holiday* (*estimated)", - "1968-01-06": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1968-03-08": "Arafat Day* (*estimated)", - "1968-03-09": "Eid al-Adha Holiday* (*estimated)", - "1968-03-10": "Eid al-Adha Holiday* (*estimated)", - "1968-03-11": "Eid al-Adha Holiday* (*estimated)", - "1968-03-12": "Eid al-Adha Holiday* (*estimated) (observed)", - "1968-12-21": "Eid al-Fitr Holiday* (*estimated)", - "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", - "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", - "1968-12-24": "Eid al-Fitr Holiday* (*estimated)", - "1969-02-26": "Arafat Day* (*estimated)", - "1969-02-27": "Eid al-Adha Holiday* (*estimated)", - "1969-02-28": "Eid al-Adha Holiday* (*estimated)", - "1969-03-01": "Eid al-Adha Holiday* (*estimated)", - "1969-03-02": "Eid al-Adha Holiday* (*estimated) (observed)", - "1969-03-03": "Eid al-Adha Holiday* (*estimated) (observed)", - "1969-12-10": "Eid al-Fitr Holiday* (*estimated)", - "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", - "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", - "1969-12-13": "Eid al-Fitr Holiday* (*estimated)", - "1969-12-14": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1969-12-15": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1970-02-15": "Arafat Day* (*estimated)", - "1970-02-16": "Eid al-Adha Holiday* (*estimated)", - "1970-02-17": "Eid al-Adha Holiday* (*estimated)", - "1970-02-18": "Eid al-Adha Holiday* (*estimated)", - "1970-11-30": "Eid al-Fitr Holiday* (*estimated)", - "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", - "1970-12-02": "Eid al-Fitr Holiday* (*estimated)", - "1970-12-03": "Eid al-Fitr Holiday* (*estimated)", - "1970-12-05": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1971-02-05": "Arafat Day* (*estimated)", - "1971-02-06": "Eid al-Adha Holiday* (*estimated)", - "1971-02-07": "Eid al-Adha Holiday* (*estimated)", - "1971-02-08": "Eid al-Adha Holiday* (*estimated)", - "1971-02-09": "Eid al-Adha Holiday* (*estimated) (observed)", - "1971-11-19": "Eid al-Fitr Holiday* (*estimated)", - "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", - "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", - "1971-11-22": "Eid al-Fitr Holiday* (*estimated)", - "1971-11-23": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1972-01-25": "Arafat Day* (*estimated)", - "1972-01-26": "Eid al-Adha Holiday* (*estimated)", - "1972-01-27": "Eid al-Adha Holiday* (*estimated)", - "1972-01-28": "Eid al-Adha Holiday* (*estimated)", - "1972-01-29": "Eid al-Adha Holiday* (*estimated) (observed)", - "1972-01-30": "Eid al-Adha Holiday* (*estimated) (observed)", - "1972-11-07": "Eid al-Fitr Holiday* (*estimated)", - "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", - "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", - "1972-11-10": "Eid al-Fitr Holiday* (*estimated)", - "1972-11-11": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1972-11-12": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1973-01-13": "Arafat Day* (*estimated)", - "1973-01-14": "Eid al-Adha Holiday* (*estimated)", - "1973-01-15": "Eid al-Adha Holiday* (*estimated)", - "1973-01-16": "Eid al-Adha Holiday* (*estimated)", - "1973-10-27": "Eid al-Fitr Holiday* (*estimated)", - "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", - "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", - "1973-10-30": "Eid al-Fitr Holiday* (*estimated)", - "1974-01-02": "Arafat Day* (*estimated)", - "1974-01-03": "Eid al-Adha Holiday* (*estimated)", - "1974-01-04": "Eid al-Adha Holiday* (*estimated)", - "1974-01-05": "Eid al-Adha Holiday* (*estimated)", - "1974-01-06": "Eid al-Adha Holiday* (*estimated) (observed)", - "1974-01-07": "Eid al-Adha Holiday* (*estimated) (observed)", - "1974-10-16": "Eid al-Fitr Holiday* (*estimated)", - "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", - "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", - "1974-10-19": "Eid al-Fitr Holiday* (*estimated)", - "1974-10-20": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1974-10-21": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1974-12-23": "Arafat Day* (*estimated)", - "1974-12-24": "Eid al-Adha Holiday* (*estimated)", - "1974-12-25": "Eid al-Adha Holiday* (*estimated)", - "1974-12-26": "Eid al-Adha Holiday* (*estimated)", - "1974-12-28": "Eid al-Adha Holiday* (*estimated) (observed)", - "1975-10-06": "Eid al-Fitr Holiday* (*estimated)", - "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", - "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", - "1975-10-09": "Eid al-Fitr Holiday* (*estimated)", - "1975-10-11": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1975-12-12": "Arafat Day* (*estimated)", - "1975-12-13": "Eid al-Adha Holiday* (*estimated)", - "1975-12-14": "Eid al-Adha Holiday* (*estimated)", - "1975-12-15": "Eid al-Adha Holiday* (*estimated)", - "1975-12-16": "Eid al-Adha Holiday* (*estimated) (observed)", - "1976-09-24": "Eid al-Fitr Holiday* (*estimated)", - "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", - "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", - "1976-09-27": "Eid al-Fitr Holiday* (*estimated)", - "1976-09-28": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1976-11-30": "Arafat Day* (*estimated)", - "1976-12-01": "Eid al-Adha Holiday* (*estimated)", - "1976-12-02": "Eid al-Adha Holiday* (*estimated)", - "1976-12-03": "Eid al-Adha Holiday* (*estimated)", - "1976-12-04": "Eid al-Adha Holiday* (*estimated) (observed)", - "1976-12-05": "Eid al-Adha Holiday* (*estimated) (observed)", - "1977-09-14": "Eid al-Fitr Holiday* (*estimated)", - "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", - "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", - "1977-09-17": "Eid al-Fitr Holiday* (*estimated)", - "1977-09-18": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1977-09-19": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1977-11-20": "Arafat Day* (*estimated)", - "1977-11-21": "Eid al-Adha Holiday* (*estimated)", - "1977-11-22": "Eid al-Adha Holiday* (*estimated)", - "1977-11-23": "Eid al-Adha Holiday* (*estimated)", - "1978-09-03": "Eid al-Fitr Holiday* (*estimated)", - "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", - "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", - "1978-09-06": "Eid al-Fitr Holiday* (*estimated)", - "1978-11-09": "Arafat Day* (*estimated)", - "1978-11-10": "Eid al-Adha Holiday* (*estimated)", - "1978-11-11": "Eid al-Adha Holiday* (*estimated)", - "1978-11-12": "Eid al-Adha Holiday* (*estimated)", - "1978-11-13": "Eid al-Adha Holiday* (*estimated) (observed)", - "1978-11-14": "Eid al-Adha Holiday* (*estimated) (observed)", - "1979-08-23": "Eid al-Fitr Holiday* (*estimated)", - "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", - "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", - "1979-08-26": "Eid al-Fitr Holiday* (*estimated)", - "1979-08-27": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1979-08-28": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1979-10-30": "Arafat Day* (*estimated)", - "1979-10-31": "Eid al-Adha Holiday* (*estimated)", - "1979-11-01": "Eid al-Adha Holiday* (*estimated)", - "1979-11-02": "Eid al-Adha Holiday* (*estimated)", - "1979-11-03": "Eid al-Adha Holiday* (*estimated) (observed)", - "1979-11-04": "Eid al-Adha Holiday* (*estimated) (observed)", - "1980-08-12": "Eid al-Fitr Holiday* (*estimated)", - "1980-08-13": "Eid al-Fitr Holiday* (*estimated)", - "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", - "1980-08-15": "Eid al-Fitr Holiday* (*estimated)", - "1980-08-16": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1980-08-17": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1980-10-18": "Arafat Day* (*estimated)", - "1980-10-19": "Eid al-Adha Holiday* (*estimated)", - "1980-10-20": "Eid al-Adha Holiday* (*estimated)", - "1980-10-21": "Eid al-Adha Holiday* (*estimated)", - "1981-08-01": "Eid al-Fitr Holiday* (*estimated)", - "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", - "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", - "1981-08-04": "Eid al-Fitr Holiday* (*estimated)", - "1981-10-07": "Arafat Day* (*estimated)", - "1981-10-08": "Eid al-Adha Holiday* (*estimated)", - "1981-10-09": "Eid al-Adha Holiday* (*estimated)", - "1981-10-10": "Eid al-Adha Holiday* (*estimated)", - "1981-10-11": "Eid al-Adha Holiday* (*estimated) (observed)", - "1981-10-12": "Eid al-Adha Holiday* (*estimated) (observed)", - "1982-07-21": "Eid al-Fitr Holiday* (*estimated)", - "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", - "1982-07-23": "Eid al-Fitr Holiday* (*estimated)", - "1982-07-24": "Eid al-Fitr Holiday* (*estimated)", - "1982-07-25": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1982-07-26": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1982-09-26": "Arafat Day* (*estimated)", - "1982-09-27": "Eid al-Adha Holiday* (*estimated)", - "1982-09-28": "Eid al-Adha Holiday* (*estimated)", - "1982-09-29": "Eid al-Adha Holiday* (*estimated)", - "1983-07-11": "Eid al-Fitr Holiday* (*estimated)", - "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", - "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", - "1983-07-14": "Eid al-Fitr Holiday* (*estimated)", - "1983-07-16": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1983-09-16": "Arafat Day* (*estimated)", - "1983-09-17": "Eid al-Adha Holiday* (*estimated)", - "1983-09-18": "Eid al-Adha Holiday* (*estimated)", - "1983-09-19": "Eid al-Adha Holiday* (*estimated)", - "1983-09-20": "Eid al-Adha Holiday* (*estimated) (observed)", - "1984-06-30": "Eid al-Fitr Holiday* (*estimated)", - "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", - "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", - "1984-07-03": "Eid al-Fitr Holiday* (*estimated)", - "1984-09-04": "Arafat Day* (*estimated)", - "1984-09-05": "Eid al-Adha Holiday* (*estimated)", - "1984-09-06": "Eid al-Adha Holiday* (*estimated)", - "1984-09-07": "Eid al-Adha Holiday* (*estimated)", - "1984-09-08": "Eid al-Adha Holiday* (*estimated) (observed)", - "1984-09-09": "Eid al-Adha Holiday* (*estimated) (observed)", - "1985-06-19": "Eid al-Fitr Holiday* (*estimated)", - "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", - "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", - "1985-06-22": "Eid al-Fitr Holiday* (*estimated)", - "1985-06-23": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1985-06-24": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1985-08-25": "Arafat Day* (*estimated)", - "1985-08-26": "Eid al-Adha Holiday* (*estimated)", - "1985-08-27": "Eid al-Adha Holiday* (*estimated)", - "1985-08-28": "Eid al-Adha Holiday* (*estimated)", - "1986-06-08": "Eid al-Fitr Holiday* (*estimated)", - "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", - "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", - "1986-06-11": "Eid al-Fitr Holiday* (*estimated)", - "1986-08-14": "Arafat Day* (*estimated)", - "1986-08-15": "Eid al-Adha Holiday* (*estimated)", - "1986-08-16": "Eid al-Adha Holiday* (*estimated)", - "1986-08-17": "Eid al-Adha Holiday* (*estimated)", - "1986-08-18": "Eid al-Adha Holiday* (*estimated) (observed)", - "1986-08-19": "Eid al-Adha Holiday* (*estimated) (observed)", - "1987-05-28": "Eid al-Fitr Holiday* (*estimated)", - "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", - "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", - "1987-05-31": "Eid al-Fitr Holiday* (*estimated)", - "1987-06-01": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1987-06-02": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1987-08-03": "Arafat Day* (*estimated)", - "1987-08-04": "Eid al-Adha Holiday* (*estimated)", - "1987-08-05": "Eid al-Adha Holiday* (*estimated)", - "1987-08-06": "Eid al-Adha Holiday* (*estimated)", - "1987-08-08": "Eid al-Adha Holiday* (*estimated) (observed)", - "1988-05-16": "Eid al-Fitr Holiday* (*estimated)", - "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", - "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", - "1988-05-19": "Eid al-Fitr Holiday* (*estimated)", - "1988-05-21": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1988-07-22": "Arafat Day* (*estimated)", - "1988-07-23": "Eid al-Adha Holiday* (*estimated)", - "1988-07-24": "Eid al-Adha Holiday* (*estimated)", - "1988-07-25": "Eid al-Adha Holiday* (*estimated)", - "1988-07-26": "Eid al-Adha Holiday* (*estimated) (observed)", - "1989-05-06": "Eid al-Fitr Holiday* (*estimated)", - "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", - "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", - "1989-05-09": "Eid al-Fitr Holiday* (*estimated)", - "1989-07-12": "Arafat Day* (*estimated)", - "1989-07-13": "Eid al-Adha Holiday* (*estimated)", - "1989-07-14": "Eid al-Adha Holiday* (*estimated)", - "1989-07-15": "Eid al-Adha Holiday* (*estimated)", - "1989-07-16": "Eid al-Adha Holiday* (*estimated) (observed)", - "1989-07-17": "Eid al-Adha Holiday* (*estimated) (observed)", - "1990-04-26": "Eid al-Fitr Holiday* (*estimated)", - "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", - "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", - "1990-04-29": "Eid al-Fitr Holiday* (*estimated)", - "1990-04-30": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1990-05-01": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1990-07-01": "Arafat Day* (*estimated)", - "1990-07-02": "Eid al-Adha Holiday* (*estimated)", - "1990-07-03": "Eid al-Adha Holiday* (*estimated)", - "1990-07-04": "Eid al-Adha Holiday* (*estimated)", - "1991-04-15": "Eid al-Fitr Holiday* (*estimated)", - "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", - "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", - "1991-04-18": "Eid al-Fitr Holiday* (*estimated)", - "1991-04-20": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1991-06-21": "Arafat Day* (*estimated)", - "1991-06-22": "Eid al-Adha Holiday* (*estimated)", - "1991-06-23": "Eid al-Adha Holiday* (*estimated)", - "1991-06-24": "Eid al-Adha Holiday* (*estimated)", - "1991-06-25": "Eid al-Adha Holiday* (*estimated) (observed)", - "1992-04-04": "Eid al-Fitr Holiday* (*estimated)", - "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", - "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", - "1992-04-07": "Eid al-Fitr Holiday* (*estimated)", - "1992-06-10": "Arafat Day* (*estimated)", - "1992-06-11": "Eid al-Adha Holiday* (*estimated)", - "1992-06-12": "Eid al-Adha Holiday* (*estimated)", - "1992-06-13": "Eid al-Adha Holiday* (*estimated)", - "1992-06-14": "Eid al-Adha Holiday* (*estimated) (observed)", - "1992-06-15": "Eid al-Adha Holiday* (*estimated) (observed)", - "1993-03-24": "Eid al-Fitr Holiday* (*estimated)", - "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", - "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", - "1993-03-27": "Eid al-Fitr Holiday* (*estimated)", - "1993-03-28": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1993-03-29": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1993-05-30": "Arafat Day* (*estimated)", - "1993-05-31": "Eid al-Adha Holiday* (*estimated)", - "1993-06-01": "Eid al-Adha Holiday* (*estimated)", - "1993-06-02": "Eid al-Adha Holiday* (*estimated)", - "1994-03-13": "Eid al-Fitr Holiday* (*estimated)", - "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", - "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", - "1994-03-16": "Eid al-Fitr Holiday* (*estimated)", - "1994-05-19": "Arafat Day* (*estimated)", - "1994-05-20": "Eid al-Adha Holiday* (*estimated)", - "1994-05-21": "Eid al-Adha Holiday* (*estimated)", - "1994-05-22": "Eid al-Adha Holiday* (*estimated)", - "1994-05-23": "Eid al-Adha Holiday* (*estimated) (observed)", - "1994-05-24": "Eid al-Adha Holiday* (*estimated) (observed)", - "1995-03-02": "Eid al-Fitr Holiday* (*estimated)", - "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", - "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", - "1995-03-05": "Eid al-Fitr Holiday* (*estimated)", - "1995-03-06": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1995-03-07": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1995-05-08": "Arafat Day* (*estimated)", - "1995-05-09": "Eid al-Adha Holiday* (*estimated)", - "1995-05-10": "Eid al-Adha Holiday* (*estimated)", - "1995-05-11": "Eid al-Adha Holiday* (*estimated)", - "1995-05-13": "Eid al-Adha Holiday* (*estimated) (observed)", - "1996-02-19": "Eid al-Fitr Holiday* (*estimated)", - "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", - "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", - "1996-02-22": "Eid al-Fitr Holiday* (*estimated)", - "1996-02-24": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1996-04-26": "Arafat Day* (*estimated)", - "1996-04-27": "Eid al-Adha Holiday* (*estimated)", - "1996-04-28": "Eid al-Adha Holiday* (*estimated)", - "1996-04-29": "Eid al-Adha Holiday* (*estimated)", - "1996-04-30": "Eid al-Adha Holiday* (*estimated) (observed)", - "1997-02-08": "Eid al-Fitr Holiday* (*estimated)", - "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", - "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", - "1997-02-11": "Eid al-Fitr Holiday* (*estimated)", - "1997-04-16": "Arafat Day* (*estimated)", - "1997-04-17": "Eid al-Adha Holiday* (*estimated)", - "1997-04-18": "Eid al-Adha Holiday* (*estimated)", - "1997-04-19": "Eid al-Adha Holiday* (*estimated)", - "1997-04-20": "Eid al-Adha Holiday* (*estimated) (observed)", - "1997-04-21": "Eid al-Adha Holiday* (*estimated) (observed)", - "1998-01-29": "Eid al-Fitr Holiday* (*estimated)", - "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", - "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", - "1998-02-01": "Eid al-Fitr Holiday* (*estimated)", - "1998-02-02": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1998-02-03": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1998-04-06": "Arafat Day* (*estimated)", - "1998-04-07": "Eid al-Adha Holiday* (*estimated)", - "1998-04-08": "Eid al-Adha Holiday* (*estimated)", - "1998-04-09": "Eid al-Adha Holiday* (*estimated)", - "1998-04-11": "Eid al-Adha Holiday* (*estimated) (observed)", - "1999-01-18": "Eid al-Fitr Holiday* (*estimated)", - "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", - "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", - "1999-01-21": "Eid al-Fitr Holiday* (*estimated)", - "1999-01-23": "Eid al-Fitr Holiday* (*estimated) (observed)", - "1999-03-26": "Arafat Day* (*estimated)", - "1999-03-27": "Eid al-Adha Holiday* (*estimated)", - "1999-03-28": "Eid al-Adha Holiday* (*estimated)", - "1999-03-29": "Eid al-Adha Holiday* (*estimated)", - "1999-03-30": "Eid al-Adha Holiday* (*estimated) (observed)", - "2000-01-08": "Eid al-Fitr Holiday* (*estimated)", - "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", - "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", - "2000-01-11": "Eid al-Fitr Holiday* (*estimated)", - "2000-03-15": "Arafat Day* (*estimated)", - "2000-03-16": "Eid al-Adha Holiday* (*estimated)", - "2000-03-17": "Eid al-Adha Holiday* (*estimated)", - "2000-03-18": "Eid al-Adha Holiday* (*estimated)", - "2000-03-19": "Eid al-Adha Holiday* (*estimated) (observed)", - "2000-03-20": "Eid al-Adha Holiday* (*estimated) (observed)", - "2000-12-27": "Eid al-Fitr Holiday* (*estimated)", - "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", - "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", - "2000-12-30": "Eid al-Fitr Holiday* (*estimated)", - "2000-12-31": "Eid al-Fitr Holiday* (*estimated) (observed)", + "1950-07-16": "Eid al-Fitr Holiday (estimated)", + "1950-07-17": "Eid al-Fitr Holiday (estimated)", + "1950-07-18": "Eid al-Fitr Holiday (estimated)", + "1950-07-19": "Eid al-Fitr Holiday (estimated)", + "1950-09-22": "Arafat Day (estimated)", + "1950-09-23": "Eid al-Adha Holiday (estimated)", + "1950-09-24": "Eid al-Adha Holiday (estimated)", + "1950-09-25": "Eid al-Adha Holiday (estimated)", + "1950-09-26": "Eid al-Adha Holiday (estimated) (observed)", + "1951-07-06": "Eid al-Fitr Holiday (estimated)", + "1951-07-07": "Eid al-Fitr Holiday (estimated)", + "1951-07-08": "Eid al-Fitr Holiday (estimated)", + "1951-07-09": "Eid al-Fitr Holiday (estimated)", + "1951-07-10": "Eid al-Fitr Holiday (estimated) (observed)", + "1951-09-11": "Arafat Day (estimated)", + "1951-09-12": "Eid al-Adha Holiday (estimated)", + "1951-09-13": "Eid al-Adha Holiday (estimated)", + "1951-09-14": "Eid al-Adha Holiday (estimated)", + "1951-09-15": "Eid al-Adha Holiday (estimated) (observed)", + "1951-09-16": "Eid al-Adha Holiday (estimated) (observed)", + "1952-06-23": "Eid al-Fitr Holiday (estimated)", + "1952-06-24": "Eid al-Fitr Holiday (estimated)", + "1952-06-25": "Eid al-Fitr Holiday (estimated)", + "1952-06-26": "Eid al-Fitr Holiday (estimated)", + "1952-06-28": "Eid al-Fitr Holiday (estimated) (observed)", + "1952-08-30": "Arafat Day (estimated)", + "1952-08-31": "Eid al-Adha Holiday (estimated)", + "1952-09-01": "Eid al-Adha Holiday (estimated)", + "1952-09-02": "Eid al-Adha Holiday (estimated)", + "1953-06-13": "Eid al-Fitr Holiday (estimated)", + "1953-06-14": "Eid al-Fitr Holiday (estimated)", + "1953-06-15": "Eid al-Fitr Holiday (estimated)", + "1953-06-16": "Eid al-Fitr Holiday (estimated)", + "1953-08-19": "Arafat Day (estimated)", + "1953-08-20": "Eid al-Adha Holiday (estimated)", + "1953-08-21": "Eid al-Adha Holiday (estimated)", + "1953-08-22": "Eid al-Adha Holiday (estimated)", + "1953-08-23": "Eid al-Adha Holiday (estimated) (observed)", + "1953-08-24": "Eid al-Adha Holiday (estimated) (observed)", + "1954-06-02": "Eid al-Fitr Holiday (estimated)", + "1954-06-03": "Eid al-Fitr Holiday (estimated)", + "1954-06-04": "Eid al-Fitr Holiday (estimated)", + "1954-06-05": "Eid al-Fitr Holiday (estimated)", + "1954-06-06": "Eid al-Fitr Holiday (estimated) (observed)", + "1954-06-07": "Eid al-Fitr Holiday (estimated) (observed)", + "1954-08-08": "Arafat Day (estimated)", + "1954-08-09": "Eid al-Adha Holiday (estimated)", + "1954-08-10": "Eid al-Adha Holiday (estimated)", + "1954-08-11": "Eid al-Adha Holiday (estimated)", + "1955-05-23": "Eid al-Fitr Holiday (estimated)", + "1955-05-24": "Eid al-Fitr Holiday (estimated)", + "1955-05-25": "Eid al-Fitr Holiday (estimated)", + "1955-05-26": "Eid al-Fitr Holiday (estimated)", + "1955-05-28": "Eid al-Fitr Holiday (estimated) (observed)", + "1955-07-29": "Arafat Day (estimated)", + "1955-07-30": "Eid al-Adha Holiday (estimated)", + "1955-07-31": "Eid al-Adha Holiday (estimated)", + "1955-08-01": "Eid al-Adha Holiday (estimated)", + "1955-08-02": "Eid al-Adha Holiday (estimated) (observed)", + "1956-05-11": "Eid al-Fitr Holiday (estimated)", + "1956-05-12": "Eid al-Fitr Holiday (estimated)", + "1956-05-13": "Eid al-Fitr Holiday (estimated)", + "1956-05-14": "Eid al-Fitr Holiday (estimated)", + "1956-05-15": "Eid al-Fitr Holiday (estimated) (observed)", + "1956-07-18": "Arafat Day (estimated)", + "1956-07-19": "Eid al-Adha Holiday (estimated)", + "1956-07-20": "Eid al-Adha Holiday (estimated)", + "1956-07-21": "Eid al-Adha Holiday (estimated)", + "1956-07-22": "Eid al-Adha Holiday (estimated) (observed)", + "1956-07-23": "Eid al-Adha Holiday (estimated) (observed)", + "1957-05-01": "Eid al-Fitr Holiday (estimated)", + "1957-05-02": "Eid al-Fitr Holiday (estimated)", + "1957-05-03": "Eid al-Fitr Holiday (estimated)", + "1957-05-04": "Eid al-Fitr Holiday (estimated)", + "1957-05-05": "Eid al-Fitr Holiday (estimated) (observed)", + "1957-05-06": "Eid al-Fitr Holiday (estimated) (observed)", + "1957-07-07": "Arafat Day (estimated)", + "1957-07-08": "Eid al-Adha Holiday (estimated)", + "1957-07-09": "Eid al-Adha Holiday (estimated)", + "1957-07-10": "Eid al-Adha Holiday (estimated)", + "1958-04-20": "Eid al-Fitr Holiday (estimated)", + "1958-04-21": "Eid al-Fitr Holiday (estimated)", + "1958-04-22": "Eid al-Fitr Holiday (estimated)", + "1958-04-23": "Eid al-Fitr Holiday (estimated)", + "1958-06-26": "Arafat Day (estimated)", + "1958-06-27": "Eid al-Adha Holiday (estimated)", + "1958-06-28": "Eid al-Adha Holiday (estimated)", + "1958-06-29": "Eid al-Adha Holiday (estimated)", + "1958-06-30": "Eid al-Adha Holiday (estimated) (observed)", + "1958-07-01": "Eid al-Adha Holiday (estimated) (observed)", + "1959-04-10": "Eid al-Fitr Holiday (estimated)", + "1959-04-11": "Eid al-Fitr Holiday (estimated)", + "1959-04-12": "Eid al-Fitr Holiday (estimated)", + "1959-04-13": "Eid al-Fitr Holiday (estimated)", + "1959-04-14": "Eid al-Fitr Holiday (estimated) (observed)", + "1959-06-16": "Arafat Day (estimated)", + "1959-06-17": "Eid al-Adha Holiday (estimated)", + "1959-06-18": "Eid al-Adha Holiday (estimated)", + "1959-06-19": "Eid al-Adha Holiday (estimated)", + "1959-06-20": "Eid al-Adha Holiday (estimated) (observed)", + "1959-06-21": "Eid al-Adha Holiday (estimated) (observed)", + "1960-03-28": "Eid al-Fitr Holiday (estimated)", + "1960-03-29": "Eid al-Fitr Holiday (estimated)", + "1960-03-30": "Eid al-Fitr Holiday (estimated)", + "1960-03-31": "Eid al-Fitr Holiday (estimated)", + "1960-04-02": "Eid al-Fitr Holiday (estimated) (observed)", + "1960-06-03": "Arafat Day (estimated)", + "1960-06-04": "Eid al-Adha Holiday (estimated)", + "1960-06-05": "Eid al-Adha Holiday (estimated)", + "1960-06-06": "Eid al-Adha Holiday (estimated)", + "1960-06-07": "Eid al-Adha Holiday (estimated) (observed)", + "1961-03-18": "Eid al-Fitr Holiday (estimated)", + "1961-03-19": "Eid al-Fitr Holiday (estimated)", + "1961-03-20": "Eid al-Fitr Holiday (estimated)", + "1961-03-21": "Eid al-Fitr Holiday (estimated)", + "1961-05-24": "Arafat Day (estimated)", + "1961-05-25": "Eid al-Adha Holiday (estimated)", + "1961-05-26": "Eid al-Adha Holiday (estimated)", + "1961-05-27": "Eid al-Adha Holiday (estimated)", + "1961-05-28": "Eid al-Adha Holiday (estimated) (observed)", + "1961-05-29": "Eid al-Adha Holiday (estimated) (observed)", + "1962-03-07": "Eid al-Fitr Holiday (estimated)", + "1962-03-08": "Eid al-Fitr Holiday (estimated)", + "1962-03-09": "Eid al-Fitr Holiday (estimated)", + "1962-03-10": "Eid al-Fitr Holiday (estimated)", + "1962-03-11": "Eid al-Fitr Holiday (estimated) (observed)", + "1962-03-12": "Eid al-Fitr Holiday (estimated) (observed)", + "1962-05-13": "Arafat Day (estimated)", + "1962-05-14": "Eid al-Adha Holiday (estimated)", + "1962-05-15": "Eid al-Adha Holiday (estimated)", + "1962-05-16": "Eid al-Adha Holiday (estimated)", + "1963-02-24": "Eid al-Fitr Holiday (estimated)", + "1963-02-25": "Eid al-Fitr Holiday (estimated)", + "1963-02-26": "Eid al-Fitr Holiday (estimated)", + "1963-02-27": "Eid al-Fitr Holiday (estimated)", + "1963-05-02": "Arafat Day (estimated)", + "1963-05-03": "Eid al-Adha Holiday (estimated)", + "1963-05-04": "Eid al-Adha Holiday (estimated)", + "1963-05-05": "Eid al-Adha Holiday (estimated)", + "1963-05-06": "Eid al-Adha Holiday (estimated) (observed)", + "1963-05-07": "Eid al-Adha Holiday (estimated) (observed)", + "1964-02-14": "Eid al-Fitr Holiday (estimated)", + "1964-02-15": "Eid al-Fitr Holiday (estimated)", + "1964-02-16": "Eid al-Fitr Holiday (estimated)", + "1964-02-17": "Eid al-Fitr Holiday (estimated)", + "1964-02-18": "Eid al-Fitr Holiday (estimated) (observed)", + "1964-04-21": "Arafat Day (estimated)", + "1964-04-22": "Eid al-Adha Holiday (estimated)", + "1964-04-23": "Eid al-Adha Holiday (estimated)", + "1964-04-24": "Eid al-Adha Holiday (estimated)", + "1964-04-25": "Eid al-Adha Holiday (estimated) (observed)", + "1964-04-26": "Eid al-Adha Holiday (estimated) (observed)", + "1965-02-02": "Eid al-Fitr Holiday (estimated)", + "1965-02-03": "Eid al-Fitr Holiday (estimated)", + "1965-02-04": "Eid al-Fitr Holiday (estimated)", + "1965-02-05": "Eid al-Fitr Holiday (estimated)", + "1965-02-06": "Eid al-Fitr Holiday (estimated) (observed)", + "1965-02-07": "Eid al-Fitr Holiday (estimated) (observed)", + "1965-04-10": "Arafat Day (estimated)", + "1965-04-11": "Eid al-Adha Holiday (estimated)", + "1965-04-12": "Eid al-Adha Holiday (estimated)", + "1965-04-13": "Eid al-Adha Holiday (estimated)", + "1966-01-22": "Eid al-Fitr Holiday (estimated)", + "1966-01-23": "Eid al-Fitr Holiday (estimated)", + "1966-01-24": "Eid al-Fitr Holiday (estimated)", + "1966-01-25": "Eid al-Fitr Holiday (estimated)", + "1966-03-31": "Arafat Day (estimated)", + "1966-04-01": "Eid al-Adha Holiday (estimated)", + "1966-04-02": "Eid al-Adha Holiday (estimated)", + "1966-04-03": "Eid al-Adha Holiday (estimated)", + "1966-04-04": "Eid al-Adha Holiday (estimated) (observed)", + "1966-04-05": "Eid al-Adha Holiday (estimated) (observed)", + "1967-01-12": "Eid al-Fitr Holiday (estimated)", + "1967-01-13": "Eid al-Fitr Holiday (estimated)", + "1967-01-14": "Eid al-Fitr Holiday (estimated)", + "1967-01-15": "Eid al-Fitr Holiday (estimated)", + "1967-01-16": "Eid al-Fitr Holiday (estimated) (observed)", + "1967-01-17": "Eid al-Fitr Holiday (estimated) (observed)", + "1967-03-20": "Arafat Day (estimated)", + "1967-03-21": "Eid al-Adha Holiday (estimated)", + "1967-03-22": "Eid al-Adha Holiday (estimated)", + "1967-03-23": "Eid al-Adha Holiday (estimated)", + "1967-03-25": "Eid al-Adha Holiday (estimated) (observed)", + "1968-01-01": "Eid al-Fitr Holiday (estimated)", + "1968-01-02": "Eid al-Fitr Holiday (estimated)", + "1968-01-03": "Eid al-Fitr Holiday (estimated)", + "1968-01-04": "Eid al-Fitr Holiday (estimated)", + "1968-01-06": "Eid al-Fitr Holiday (estimated) (observed)", + "1968-03-08": "Arafat Day (estimated)", + "1968-03-09": "Eid al-Adha Holiday (estimated)", + "1968-03-10": "Eid al-Adha Holiday (estimated)", + "1968-03-11": "Eid al-Adha Holiday (estimated)", + "1968-03-12": "Eid al-Adha Holiday (estimated) (observed)", + "1968-12-21": "Eid al-Fitr Holiday (estimated)", + "1968-12-22": "Eid al-Fitr Holiday (estimated)", + "1968-12-23": "Eid al-Fitr Holiday (estimated)", + "1968-12-24": "Eid al-Fitr Holiday (estimated)", + "1969-02-26": "Arafat Day (estimated)", + "1969-02-27": "Eid al-Adha Holiday (estimated)", + "1969-02-28": "Eid al-Adha Holiday (estimated)", + "1969-03-01": "Eid al-Adha Holiday (estimated)", + "1969-03-02": "Eid al-Adha Holiday (estimated) (observed)", + "1969-03-03": "Eid al-Adha Holiday (estimated) (observed)", + "1969-12-10": "Eid al-Fitr Holiday (estimated)", + "1969-12-11": "Eid al-Fitr Holiday (estimated)", + "1969-12-12": "Eid al-Fitr Holiday (estimated)", + "1969-12-13": "Eid al-Fitr Holiday (estimated)", + "1969-12-14": "Eid al-Fitr Holiday (estimated) (observed)", + "1969-12-15": "Eid al-Fitr Holiday (estimated) (observed)", + "1970-02-15": "Arafat Day (estimated)", + "1970-02-16": "Eid al-Adha Holiday (estimated)", + "1970-02-17": "Eid al-Adha Holiday (estimated)", + "1970-02-18": "Eid al-Adha Holiday (estimated)", + "1970-11-30": "Eid al-Fitr Holiday (estimated)", + "1970-12-01": "Eid al-Fitr Holiday (estimated)", + "1970-12-02": "Eid al-Fitr Holiday (estimated)", + "1970-12-03": "Eid al-Fitr Holiday (estimated)", + "1970-12-05": "Eid al-Fitr Holiday (estimated) (observed)", + "1971-02-05": "Arafat Day (estimated)", + "1971-02-06": "Eid al-Adha Holiday (estimated)", + "1971-02-07": "Eid al-Adha Holiday (estimated)", + "1971-02-08": "Eid al-Adha Holiday (estimated)", + "1971-02-09": "Eid al-Adha Holiday (estimated) (observed)", + "1971-11-19": "Eid al-Fitr Holiday (estimated)", + "1971-11-20": "Eid al-Fitr Holiday (estimated)", + "1971-11-21": "Eid al-Fitr Holiday (estimated)", + "1971-11-22": "Eid al-Fitr Holiday (estimated)", + "1971-11-23": "Eid al-Fitr Holiday (estimated) (observed)", + "1972-01-25": "Arafat Day (estimated)", + "1972-01-26": "Eid al-Adha Holiday (estimated)", + "1972-01-27": "Eid al-Adha Holiday (estimated)", + "1972-01-28": "Eid al-Adha Holiday (estimated)", + "1972-01-29": "Eid al-Adha Holiday (estimated) (observed)", + "1972-01-30": "Eid al-Adha Holiday (estimated) (observed)", + "1972-11-07": "Eid al-Fitr Holiday (estimated)", + "1972-11-08": "Eid al-Fitr Holiday (estimated)", + "1972-11-09": "Eid al-Fitr Holiday (estimated)", + "1972-11-10": "Eid al-Fitr Holiday (estimated)", + "1972-11-11": "Eid al-Fitr Holiday (estimated) (observed)", + "1972-11-12": "Eid al-Fitr Holiday (estimated) (observed)", + "1973-01-13": "Arafat Day (estimated)", + "1973-01-14": "Eid al-Adha Holiday (estimated)", + "1973-01-15": "Eid al-Adha Holiday (estimated)", + "1973-01-16": "Eid al-Adha Holiday (estimated)", + "1973-10-27": "Eid al-Fitr Holiday (estimated)", + "1973-10-28": "Eid al-Fitr Holiday (estimated)", + "1973-10-29": "Eid al-Fitr Holiday (estimated)", + "1973-10-30": "Eid al-Fitr Holiday (estimated)", + "1974-01-02": "Arafat Day (estimated)", + "1974-01-03": "Eid al-Adha Holiday (estimated)", + "1974-01-04": "Eid al-Adha Holiday (estimated)", + "1974-01-05": "Eid al-Adha Holiday (estimated)", + "1974-01-06": "Eid al-Adha Holiday (estimated) (observed)", + "1974-01-07": "Eid al-Adha Holiday (estimated) (observed)", + "1974-10-16": "Eid al-Fitr Holiday (estimated)", + "1974-10-17": "Eid al-Fitr Holiday (estimated)", + "1974-10-18": "Eid al-Fitr Holiday (estimated)", + "1974-10-19": "Eid al-Fitr Holiday (estimated)", + "1974-10-20": "Eid al-Fitr Holiday (estimated) (observed)", + "1974-10-21": "Eid al-Fitr Holiday (estimated) (observed)", + "1974-12-23": "Arafat Day (estimated)", + "1974-12-24": "Eid al-Adha Holiday (estimated)", + "1974-12-25": "Eid al-Adha Holiday (estimated)", + "1974-12-26": "Eid al-Adha Holiday (estimated)", + "1974-12-28": "Eid al-Adha Holiday (estimated) (observed)", + "1975-10-06": "Eid al-Fitr Holiday (estimated)", + "1975-10-07": "Eid al-Fitr Holiday (estimated)", + "1975-10-08": "Eid al-Fitr Holiday (estimated)", + "1975-10-09": "Eid al-Fitr Holiday (estimated)", + "1975-10-11": "Eid al-Fitr Holiday (estimated) (observed)", + "1975-12-12": "Arafat Day (estimated)", + "1975-12-13": "Eid al-Adha Holiday (estimated)", + "1975-12-14": "Eid al-Adha Holiday (estimated)", + "1975-12-15": "Eid al-Adha Holiday (estimated)", + "1975-12-16": "Eid al-Adha Holiday (estimated) (observed)", + "1976-09-24": "Eid al-Fitr Holiday (estimated)", + "1976-09-25": "Eid al-Fitr Holiday (estimated)", + "1976-09-26": "Eid al-Fitr Holiday (estimated)", + "1976-09-27": "Eid al-Fitr Holiday (estimated)", + "1976-09-28": "Eid al-Fitr Holiday (estimated) (observed)", + "1976-11-30": "Arafat Day (estimated)", + "1976-12-01": "Eid al-Adha Holiday (estimated)", + "1976-12-02": "Eid al-Adha Holiday (estimated)", + "1976-12-03": "Eid al-Adha Holiday (estimated)", + "1976-12-04": "Eid al-Adha Holiday (estimated) (observed)", + "1976-12-05": "Eid al-Adha Holiday (estimated) (observed)", + "1977-09-14": "Eid al-Fitr Holiday (estimated)", + "1977-09-15": "Eid al-Fitr Holiday (estimated)", + "1977-09-16": "Eid al-Fitr Holiday (estimated)", + "1977-09-17": "Eid al-Fitr Holiday (estimated)", + "1977-09-18": "Eid al-Fitr Holiday (estimated) (observed)", + "1977-09-19": "Eid al-Fitr Holiday (estimated) (observed)", + "1977-11-20": "Arafat Day (estimated)", + "1977-11-21": "Eid al-Adha Holiday (estimated)", + "1977-11-22": "Eid al-Adha Holiday (estimated)", + "1977-11-23": "Eid al-Adha Holiday (estimated)", + "1978-09-03": "Eid al-Fitr Holiday (estimated)", + "1978-09-04": "Eid al-Fitr Holiday (estimated)", + "1978-09-05": "Eid al-Fitr Holiday (estimated)", + "1978-09-06": "Eid al-Fitr Holiday (estimated)", + "1978-11-09": "Arafat Day (estimated)", + "1978-11-10": "Eid al-Adha Holiday (estimated)", + "1978-11-11": "Eid al-Adha Holiday (estimated)", + "1978-11-12": "Eid al-Adha Holiday (estimated)", + "1978-11-13": "Eid al-Adha Holiday (estimated) (observed)", + "1978-11-14": "Eid al-Adha Holiday (estimated) (observed)", + "1979-08-23": "Eid al-Fitr Holiday (estimated)", + "1979-08-24": "Eid al-Fitr Holiday (estimated)", + "1979-08-25": "Eid al-Fitr Holiday (estimated)", + "1979-08-26": "Eid al-Fitr Holiday (estimated)", + "1979-08-27": "Eid al-Fitr Holiday (estimated) (observed)", + "1979-08-28": "Eid al-Fitr Holiday (estimated) (observed)", + "1979-10-30": "Arafat Day (estimated)", + "1979-10-31": "Eid al-Adha Holiday (estimated)", + "1979-11-01": "Eid al-Adha Holiday (estimated)", + "1979-11-02": "Eid al-Adha Holiday (estimated)", + "1979-11-03": "Eid al-Adha Holiday (estimated) (observed)", + "1979-11-04": "Eid al-Adha Holiday (estimated) (observed)", + "1980-08-12": "Eid al-Fitr Holiday (estimated)", + "1980-08-13": "Eid al-Fitr Holiday (estimated)", + "1980-08-14": "Eid al-Fitr Holiday (estimated)", + "1980-08-15": "Eid al-Fitr Holiday (estimated)", + "1980-08-16": "Eid al-Fitr Holiday (estimated) (observed)", + "1980-08-17": "Eid al-Fitr Holiday (estimated) (observed)", + "1980-10-18": "Arafat Day (estimated)", + "1980-10-19": "Eid al-Adha Holiday (estimated)", + "1980-10-20": "Eid al-Adha Holiday (estimated)", + "1980-10-21": "Eid al-Adha Holiday (estimated)", + "1981-08-01": "Eid al-Fitr Holiday (estimated)", + "1981-08-02": "Eid al-Fitr Holiday (estimated)", + "1981-08-03": "Eid al-Fitr Holiday (estimated)", + "1981-08-04": "Eid al-Fitr Holiday (estimated)", + "1981-10-07": "Arafat Day (estimated)", + "1981-10-08": "Eid al-Adha Holiday (estimated)", + "1981-10-09": "Eid al-Adha Holiday (estimated)", + "1981-10-10": "Eid al-Adha Holiday (estimated)", + "1981-10-11": "Eid al-Adha Holiday (estimated) (observed)", + "1981-10-12": "Eid al-Adha Holiday (estimated) (observed)", + "1982-07-21": "Eid al-Fitr Holiday (estimated)", + "1982-07-22": "Eid al-Fitr Holiday (estimated)", + "1982-07-23": "Eid al-Fitr Holiday (estimated)", + "1982-07-24": "Eid al-Fitr Holiday (estimated)", + "1982-07-25": "Eid al-Fitr Holiday (estimated) (observed)", + "1982-07-26": "Eid al-Fitr Holiday (estimated) (observed)", + "1982-09-26": "Arafat Day (estimated)", + "1982-09-27": "Eid al-Adha Holiday (estimated)", + "1982-09-28": "Eid al-Adha Holiday (estimated)", + "1982-09-29": "Eid al-Adha Holiday (estimated)", + "1983-07-11": "Eid al-Fitr Holiday (estimated)", + "1983-07-12": "Eid al-Fitr Holiday (estimated)", + "1983-07-13": "Eid al-Fitr Holiday (estimated)", + "1983-07-14": "Eid al-Fitr Holiday (estimated)", + "1983-07-16": "Eid al-Fitr Holiday (estimated) (observed)", + "1983-09-16": "Arafat Day (estimated)", + "1983-09-17": "Eid al-Adha Holiday (estimated)", + "1983-09-18": "Eid al-Adha Holiday (estimated)", + "1983-09-19": "Eid al-Adha Holiday (estimated)", + "1983-09-20": "Eid al-Adha Holiday (estimated) (observed)", + "1984-06-30": "Eid al-Fitr Holiday (estimated)", + "1984-07-01": "Eid al-Fitr Holiday (estimated)", + "1984-07-02": "Eid al-Fitr Holiday (estimated)", + "1984-07-03": "Eid al-Fitr Holiday (estimated)", + "1984-09-04": "Arafat Day (estimated)", + "1984-09-05": "Eid al-Adha Holiday (estimated)", + "1984-09-06": "Eid al-Adha Holiday (estimated)", + "1984-09-07": "Eid al-Adha Holiday (estimated)", + "1984-09-08": "Eid al-Adha Holiday (estimated) (observed)", + "1984-09-09": "Eid al-Adha Holiday (estimated) (observed)", + "1985-06-19": "Eid al-Fitr Holiday (estimated)", + "1985-06-20": "Eid al-Fitr Holiday (estimated)", + "1985-06-21": "Eid al-Fitr Holiday (estimated)", + "1985-06-22": "Eid al-Fitr Holiday (estimated)", + "1985-06-23": "Eid al-Fitr Holiday (estimated) (observed)", + "1985-06-24": "Eid al-Fitr Holiday (estimated) (observed)", + "1985-08-25": "Arafat Day (estimated)", + "1985-08-26": "Eid al-Adha Holiday (estimated)", + "1985-08-27": "Eid al-Adha Holiday (estimated)", + "1985-08-28": "Eid al-Adha Holiday (estimated)", + "1986-06-08": "Eid al-Fitr Holiday (estimated)", + "1986-06-09": "Eid al-Fitr Holiday (estimated)", + "1986-06-10": "Eid al-Fitr Holiday (estimated)", + "1986-06-11": "Eid al-Fitr Holiday (estimated)", + "1986-08-14": "Arafat Day (estimated)", + "1986-08-15": "Eid al-Adha Holiday (estimated)", + "1986-08-16": "Eid al-Adha Holiday (estimated)", + "1986-08-17": "Eid al-Adha Holiday (estimated)", + "1986-08-18": "Eid al-Adha Holiday (estimated) (observed)", + "1986-08-19": "Eid al-Adha Holiday (estimated) (observed)", + "1987-05-28": "Eid al-Fitr Holiday (estimated)", + "1987-05-29": "Eid al-Fitr Holiday (estimated)", + "1987-05-30": "Eid al-Fitr Holiday (estimated)", + "1987-05-31": "Eid al-Fitr Holiday (estimated)", + "1987-06-01": "Eid al-Fitr Holiday (estimated) (observed)", + "1987-06-02": "Eid al-Fitr Holiday (estimated) (observed)", + "1987-08-03": "Arafat Day (estimated)", + "1987-08-04": "Eid al-Adha Holiday (estimated)", + "1987-08-05": "Eid al-Adha Holiday (estimated)", + "1987-08-06": "Eid al-Adha Holiday (estimated)", + "1987-08-08": "Eid al-Adha Holiday (estimated) (observed)", + "1988-05-16": "Eid al-Fitr Holiday (estimated)", + "1988-05-17": "Eid al-Fitr Holiday (estimated)", + "1988-05-18": "Eid al-Fitr Holiday (estimated)", + "1988-05-19": "Eid al-Fitr Holiday (estimated)", + "1988-05-21": "Eid al-Fitr Holiday (estimated) (observed)", + "1988-07-22": "Arafat Day (estimated)", + "1988-07-23": "Eid al-Adha Holiday (estimated)", + "1988-07-24": "Eid al-Adha Holiday (estimated)", + "1988-07-25": "Eid al-Adha Holiday (estimated)", + "1988-07-26": "Eid al-Adha Holiday (estimated) (observed)", + "1989-05-06": "Eid al-Fitr Holiday (estimated)", + "1989-05-07": "Eid al-Fitr Holiday (estimated)", + "1989-05-08": "Eid al-Fitr Holiday (estimated)", + "1989-05-09": "Eid al-Fitr Holiday (estimated)", + "1989-07-12": "Arafat Day (estimated)", + "1989-07-13": "Eid al-Adha Holiday (estimated)", + "1989-07-14": "Eid al-Adha Holiday (estimated)", + "1989-07-15": "Eid al-Adha Holiday (estimated)", + "1989-07-16": "Eid al-Adha Holiday (estimated) (observed)", + "1989-07-17": "Eid al-Adha Holiday (estimated) (observed)", + "1990-04-26": "Eid al-Fitr Holiday (estimated)", + "1990-04-27": "Eid al-Fitr Holiday (estimated)", + "1990-04-28": "Eid al-Fitr Holiday (estimated)", + "1990-04-29": "Eid al-Fitr Holiday (estimated)", + "1990-04-30": "Eid al-Fitr Holiday (estimated) (observed)", + "1990-05-01": "Eid al-Fitr Holiday (estimated) (observed)", + "1990-07-01": "Arafat Day (estimated)", + "1990-07-02": "Eid al-Adha Holiday (estimated)", + "1990-07-03": "Eid al-Adha Holiday (estimated)", + "1990-07-04": "Eid al-Adha Holiday (estimated)", + "1991-04-15": "Eid al-Fitr Holiday (estimated)", + "1991-04-16": "Eid al-Fitr Holiday (estimated)", + "1991-04-17": "Eid al-Fitr Holiday (estimated)", + "1991-04-18": "Eid al-Fitr Holiday (estimated)", + "1991-04-20": "Eid al-Fitr Holiday (estimated) (observed)", + "1991-06-21": "Arafat Day (estimated)", + "1991-06-22": "Eid al-Adha Holiday (estimated)", + "1991-06-23": "Eid al-Adha Holiday (estimated)", + "1991-06-24": "Eid al-Adha Holiday (estimated)", + "1991-06-25": "Eid al-Adha Holiday (estimated) (observed)", + "1992-04-04": "Eid al-Fitr Holiday (estimated)", + "1992-04-05": "Eid al-Fitr Holiday (estimated)", + "1992-04-06": "Eid al-Fitr Holiday (estimated)", + "1992-04-07": "Eid al-Fitr Holiday (estimated)", + "1992-06-10": "Arafat Day (estimated)", + "1992-06-11": "Eid al-Adha Holiday (estimated)", + "1992-06-12": "Eid al-Adha Holiday (estimated)", + "1992-06-13": "Eid al-Adha Holiday (estimated)", + "1992-06-14": "Eid al-Adha Holiday (estimated) (observed)", + "1992-06-15": "Eid al-Adha Holiday (estimated) (observed)", + "1993-03-24": "Eid al-Fitr Holiday (estimated)", + "1993-03-25": "Eid al-Fitr Holiday (estimated)", + "1993-03-26": "Eid al-Fitr Holiday (estimated)", + "1993-03-27": "Eid al-Fitr Holiday (estimated)", + "1993-03-28": "Eid al-Fitr Holiday (estimated) (observed)", + "1993-03-29": "Eid al-Fitr Holiday (estimated) (observed)", + "1993-05-30": "Arafat Day (estimated)", + "1993-05-31": "Eid al-Adha Holiday (estimated)", + "1993-06-01": "Eid al-Adha Holiday (estimated)", + "1993-06-02": "Eid al-Adha Holiday (estimated)", + "1994-03-13": "Eid al-Fitr Holiday (estimated)", + "1994-03-14": "Eid al-Fitr Holiday (estimated)", + "1994-03-15": "Eid al-Fitr Holiday (estimated)", + "1994-03-16": "Eid al-Fitr Holiday (estimated)", + "1994-05-19": "Arafat Day (estimated)", + "1994-05-20": "Eid al-Adha Holiday (estimated)", + "1994-05-21": "Eid al-Adha Holiday (estimated)", + "1994-05-22": "Eid al-Adha Holiday (estimated)", + "1994-05-23": "Eid al-Adha Holiday (estimated) (observed)", + "1994-05-24": "Eid al-Adha Holiday (estimated) (observed)", + "1995-03-02": "Eid al-Fitr Holiday (estimated)", + "1995-03-03": "Eid al-Fitr Holiday (estimated)", + "1995-03-04": "Eid al-Fitr Holiday (estimated)", + "1995-03-05": "Eid al-Fitr Holiday (estimated)", + "1995-03-06": "Eid al-Fitr Holiday (estimated) (observed)", + "1995-03-07": "Eid al-Fitr Holiday (estimated) (observed)", + "1995-05-08": "Arafat Day (estimated)", + "1995-05-09": "Eid al-Adha Holiday (estimated)", + "1995-05-10": "Eid al-Adha Holiday (estimated)", + "1995-05-11": "Eid al-Adha Holiday (estimated)", + "1995-05-13": "Eid al-Adha Holiday (estimated) (observed)", + "1996-02-19": "Eid al-Fitr Holiday (estimated)", + "1996-02-20": "Eid al-Fitr Holiday (estimated)", + "1996-02-21": "Eid al-Fitr Holiday (estimated)", + "1996-02-22": "Eid al-Fitr Holiday (estimated)", + "1996-02-24": "Eid al-Fitr Holiday (estimated) (observed)", + "1996-04-26": "Arafat Day (estimated)", + "1996-04-27": "Eid al-Adha Holiday (estimated)", + "1996-04-28": "Eid al-Adha Holiday (estimated)", + "1996-04-29": "Eid al-Adha Holiday (estimated)", + "1996-04-30": "Eid al-Adha Holiday (estimated) (observed)", + "1997-02-08": "Eid al-Fitr Holiday (estimated)", + "1997-02-09": "Eid al-Fitr Holiday (estimated)", + "1997-02-10": "Eid al-Fitr Holiday (estimated)", + "1997-02-11": "Eid al-Fitr Holiday (estimated)", + "1997-04-16": "Arafat Day (estimated)", + "1997-04-17": "Eid al-Adha Holiday (estimated)", + "1997-04-18": "Eid al-Adha Holiday (estimated)", + "1997-04-19": "Eid al-Adha Holiday (estimated)", + "1997-04-20": "Eid al-Adha Holiday (estimated) (observed)", + "1997-04-21": "Eid al-Adha Holiday (estimated) (observed)", + "1998-01-29": "Eid al-Fitr Holiday (estimated)", + "1998-01-30": "Eid al-Fitr Holiday (estimated)", + "1998-01-31": "Eid al-Fitr Holiday (estimated)", + "1998-02-01": "Eid al-Fitr Holiday (estimated)", + "1998-02-02": "Eid al-Fitr Holiday (estimated) (observed)", + "1998-02-03": "Eid al-Fitr Holiday (estimated) (observed)", + "1998-04-06": "Arafat Day (estimated)", + "1998-04-07": "Eid al-Adha Holiday (estimated)", + "1998-04-08": "Eid al-Adha Holiday (estimated)", + "1998-04-09": "Eid al-Adha Holiday (estimated)", + "1998-04-11": "Eid al-Adha Holiday (estimated) (observed)", + "1999-01-18": "Eid al-Fitr Holiday (estimated)", + "1999-01-19": "Eid al-Fitr Holiday (estimated)", + "1999-01-20": "Eid al-Fitr Holiday (estimated)", + "1999-01-21": "Eid al-Fitr Holiday (estimated)", + "1999-01-23": "Eid al-Fitr Holiday (estimated) (observed)", + "1999-03-26": "Arafat Day (estimated)", + "1999-03-27": "Eid al-Adha Holiday (estimated)", + "1999-03-28": "Eid al-Adha Holiday (estimated)", + "1999-03-29": "Eid al-Adha Holiday (estimated)", + "1999-03-30": "Eid al-Adha Holiday (estimated) (observed)", + "2000-01-08": "Eid al-Fitr Holiday (estimated)", + "2000-01-09": "Eid al-Fitr Holiday (estimated)", + "2000-01-10": "Eid al-Fitr Holiday (estimated)", + "2000-01-11": "Eid al-Fitr Holiday (estimated)", + "2000-03-15": "Arafat Day (estimated)", + "2000-03-16": "Eid al-Adha Holiday (estimated)", + "2000-03-17": "Eid al-Adha Holiday (estimated)", + "2000-03-18": "Eid al-Adha Holiday (estimated)", + "2000-03-19": "Eid al-Adha Holiday (estimated) (observed)", + "2000-03-20": "Eid al-Adha Holiday (estimated) (observed)", + "2000-12-27": "Eid al-Fitr Holiday (estimated)", + "2000-12-28": "Eid al-Fitr Holiday (estimated)", + "2000-12-29": "Eid al-Fitr Holiday (estimated)", + "2000-12-30": "Eid al-Fitr Holiday (estimated)", + "2000-12-31": "Eid al-Fitr Holiday (estimated) (observed)", "2001-01-01": "Eid al-Fitr Holiday (observed)", - "2001-03-04": "Arafat Day* (*estimated)", - "2001-03-05": "Eid al-Adha Holiday* (*estimated)", - "2001-03-06": "Eid al-Adha Holiday* (*estimated)", - "2001-03-07": "Eid al-Adha Holiday* (*estimated)", - "2001-12-16": "Eid al-Fitr Holiday* (*estimated)", - "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", - "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", - "2001-12-19": "Eid al-Fitr Holiday* (*estimated)", - "2002-02-21": "Arafat Day* (*estimated)", - "2002-02-22": "Eid al-Adha Holiday* (*estimated)", - "2002-02-23": "Eid al-Adha Holiday* (*estimated)", - "2002-02-24": "Eid al-Adha Holiday* (*estimated)", - "2002-02-25": "Eid al-Adha Holiday* (*estimated) (observed)", - "2002-02-26": "Eid al-Adha Holiday* (*estimated) (observed)", - "2002-12-05": "Eid al-Fitr Holiday* (*estimated)", - "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", - "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", - "2002-12-08": "Eid al-Fitr Holiday* (*estimated)", - "2002-12-09": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2002-12-10": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2003-02-10": "Arafat Day* (*estimated)", - "2003-02-11": "Eid al-Adha Holiday* (*estimated)", - "2003-02-12": "Eid al-Adha Holiday* (*estimated)", - "2003-02-13": "Eid al-Adha Holiday* (*estimated)", - "2003-02-15": "Eid al-Adha Holiday* (*estimated) (observed)", - "2003-11-25": "Eid al-Fitr Holiday* (*estimated)", - "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", - "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", - "2003-11-28": "Eid al-Fitr Holiday* (*estimated)", - "2003-11-29": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2003-11-30": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2004-01-31": "Arafat Day* (*estimated)", - "2004-02-01": "Eid al-Adha Holiday* (*estimated)", - "2004-02-02": "Eid al-Adha Holiday* (*estimated)", - "2004-02-03": "Eid al-Adha Holiday* (*estimated)", - "2004-11-14": "Eid al-Fitr Holiday* (*estimated)", - "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", - "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", - "2004-11-17": "Eid al-Fitr Holiday* (*estimated)", - "2005-01-20": "Arafat Day* (*estimated)", - "2005-01-21": "Eid al-Adha Holiday* (*estimated)", - "2005-01-22": "Eid al-Adha Holiday* (*estimated)", - "2005-01-23": "Eid al-Adha Holiday* (*estimated)", - "2005-01-24": "Eid al-Adha Holiday* (*estimated) (observed)", - "2005-01-25": "Eid al-Adha Holiday* (*estimated) (observed)", + "2001-03-04": "Arafat Day (estimated)", + "2001-03-05": "Eid al-Adha Holiday (estimated)", + "2001-03-06": "Eid al-Adha Holiday (estimated)", + "2001-03-07": "Eid al-Adha Holiday (estimated)", + "2001-12-16": "Eid al-Fitr Holiday (estimated)", + "2001-12-17": "Eid al-Fitr Holiday (estimated)", + "2001-12-18": "Eid al-Fitr Holiday (estimated)", + "2001-12-19": "Eid al-Fitr Holiday (estimated)", + "2002-02-21": "Arafat Day (estimated)", + "2002-02-22": "Eid al-Adha Holiday (estimated)", + "2002-02-23": "Eid al-Adha Holiday (estimated)", + "2002-02-24": "Eid al-Adha Holiday (estimated)", + "2002-02-25": "Eid al-Adha Holiday (estimated) (observed)", + "2002-02-26": "Eid al-Adha Holiday (estimated) (observed)", + "2002-12-05": "Eid al-Fitr Holiday (estimated)", + "2002-12-06": "Eid al-Fitr Holiday (estimated)", + "2002-12-07": "Eid al-Fitr Holiday (estimated)", + "2002-12-08": "Eid al-Fitr Holiday (estimated)", + "2002-12-09": "Eid al-Fitr Holiday (estimated) (observed)", + "2002-12-10": "Eid al-Fitr Holiday (estimated) (observed)", + "2003-02-10": "Arafat Day (estimated)", + "2003-02-11": "Eid al-Adha Holiday (estimated)", + "2003-02-12": "Eid al-Adha Holiday (estimated)", + "2003-02-13": "Eid al-Adha Holiday (estimated)", + "2003-02-15": "Eid al-Adha Holiday (estimated) (observed)", + "2003-11-25": "Eid al-Fitr Holiday (estimated)", + "2003-11-26": "Eid al-Fitr Holiday (estimated)", + "2003-11-27": "Eid al-Fitr Holiday (estimated)", + "2003-11-28": "Eid al-Fitr Holiday (estimated)", + "2003-11-29": "Eid al-Fitr Holiday (estimated) (observed)", + "2003-11-30": "Eid al-Fitr Holiday (estimated) (observed)", + "2004-01-31": "Arafat Day (estimated)", + "2004-02-01": "Eid al-Adha Holiday (estimated)", + "2004-02-02": "Eid al-Adha Holiday (estimated)", + "2004-02-03": "Eid al-Adha Holiday (estimated)", + "2004-11-14": "Eid al-Fitr Holiday (estimated)", + "2004-11-15": "Eid al-Fitr Holiday (estimated)", + "2004-11-16": "Eid al-Fitr Holiday (estimated)", + "2004-11-17": "Eid al-Fitr Holiday (estimated)", + "2005-01-20": "Arafat Day (estimated)", + "2005-01-21": "Eid al-Adha Holiday (estimated)", + "2005-01-22": "Eid al-Adha Holiday (estimated)", + "2005-01-23": "Eid al-Adha Holiday (estimated)", + "2005-01-24": "Eid al-Adha Holiday (estimated) (observed)", + "2005-01-25": "Eid al-Adha Holiday (estimated) (observed)", "2005-09-23": "National Day Holiday", "2005-09-24": "National Day Holiday (observed)", - "2005-11-03": "Eid al-Fitr Holiday* (*estimated)", - "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", - "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", - "2005-11-06": "Eid al-Fitr Holiday* (*estimated)", - "2005-11-07": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2005-11-08": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2006-01-09": "Arafat Day* (*estimated)", - "2006-01-10": "Eid al-Adha Holiday* (*estimated)", - "2006-01-11": "Eid al-Adha Holiday* (*estimated)", - "2006-01-12": "Eid al-Adha Holiday* (*estimated)", - "2006-01-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "2005-11-03": "Eid al-Fitr Holiday (estimated)", + "2005-11-04": "Eid al-Fitr Holiday (estimated)", + "2005-11-05": "Eid al-Fitr Holiday (estimated)", + "2005-11-06": "Eid al-Fitr Holiday (estimated)", + "2005-11-07": "Eid al-Fitr Holiday (estimated) (observed)", + "2005-11-08": "Eid al-Fitr Holiday (estimated) (observed)", + "2006-01-09": "Arafat Day (estimated)", + "2006-01-10": "Eid al-Adha Holiday (estimated)", + "2006-01-11": "Eid al-Adha Holiday (estimated)", + "2006-01-12": "Eid al-Adha Holiday (estimated)", + "2006-01-14": "Eid al-Adha Holiday (estimated) (observed)", "2006-09-23": "National Day Holiday", - "2006-10-23": "Eid al-Fitr Holiday* (*estimated)", - "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", - "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", - "2006-10-26": "Eid al-Fitr Holiday* (*estimated)", - "2006-10-28": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2006-12-30": "Arafat Day* (*estimated)", - "2006-12-31": "Eid al-Adha Holiday* (*estimated)", - "2007-01-01": "Eid al-Adha Holiday* (*estimated)", - "2007-01-02": "Eid al-Adha Holiday* (*estimated)", + "2006-10-23": "Eid al-Fitr Holiday (estimated)", + "2006-10-24": "Eid al-Fitr Holiday (estimated)", + "2006-10-25": "Eid al-Fitr Holiday (estimated)", + "2006-10-26": "Eid al-Fitr Holiday (estimated)", + "2006-10-28": "Eid al-Fitr Holiday (estimated) (observed)", + "2006-12-30": "Arafat Day (estimated)", + "2006-12-31": "Eid al-Adha Holiday (estimated)", + "2007-01-01": "Eid al-Adha Holiday (estimated)", + "2007-01-02": "Eid al-Adha Holiday (estimated)", "2007-09-23": "National Day Holiday", - "2007-10-13": "Eid al-Fitr Holiday* (*estimated)", - "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", - "2007-10-15": "Eid al-Fitr Holiday* (*estimated)", - "2007-10-16": "Eid al-Fitr Holiday* (*estimated)", - "2007-12-19": "Arafat Day* (*estimated)", - "2007-12-20": "Eid al-Adha Holiday* (*estimated)", - "2007-12-21": "Eid al-Adha Holiday* (*estimated)", - "2007-12-22": "Eid al-Adha Holiday* (*estimated)", - "2007-12-23": "Eid al-Adha Holiday* (*estimated) (observed)", - "2007-12-24": "Eid al-Adha Holiday* (*estimated) (observed)", + "2007-10-13": "Eid al-Fitr Holiday (estimated)", + "2007-10-14": "Eid al-Fitr Holiday (estimated)", + "2007-10-15": "Eid al-Fitr Holiday (estimated)", + "2007-10-16": "Eid al-Fitr Holiday (estimated)", + "2007-12-19": "Arafat Day (estimated)", + "2007-12-20": "Eid al-Adha Holiday (estimated)", + "2007-12-21": "Eid al-Adha Holiday (estimated)", + "2007-12-22": "Eid al-Adha Holiday (estimated)", + "2007-12-23": "Eid al-Adha Holiday (estimated) (observed)", + "2007-12-24": "Eid al-Adha Holiday (estimated) (observed)", "2008-09-23": "National Day Holiday", - "2008-10-01": "Eid al-Fitr Holiday* (*estimated)", - "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", - "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", - "2008-10-04": "Eid al-Fitr Holiday* (*estimated)", - "2008-10-05": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2008-10-06": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2008-12-07": "Arafat Day* (*estimated)", - "2008-12-08": "Eid al-Adha Holiday* (*estimated)", - "2008-12-09": "Eid al-Adha Holiday* (*estimated)", - "2008-12-10": "Eid al-Adha Holiday* (*estimated)", - "2009-09-20": "Eid al-Fitr Holiday* (*estimated)", - "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", - "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", - "2009-09-23": "Eid al-Fitr Holiday* (*estimated)", - "2009-11-26": "Arafat Day* (*estimated)", - "2009-11-27": "Eid al-Adha Holiday* (*estimated)", - "2009-11-28": "Eid al-Adha Holiday* (*estimated)", - "2009-11-29": "Eid al-Adha Holiday* (*estimated)", - "2009-11-30": "Eid al-Adha Holiday* (*estimated) (observed)", - "2009-12-01": "Eid al-Adha Holiday* (*estimated) (observed)", - "2010-09-10": "Eid al-Fitr Holiday* (*estimated)", - "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", - "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", - "2010-09-13": "Eid al-Fitr Holiday* (*estimated)", - "2010-09-14": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2008-10-01": "Eid al-Fitr Holiday (estimated)", + "2008-10-02": "Eid al-Fitr Holiday (estimated)", + "2008-10-03": "Eid al-Fitr Holiday (estimated)", + "2008-10-04": "Eid al-Fitr Holiday (estimated)", + "2008-10-05": "Eid al-Fitr Holiday (estimated) (observed)", + "2008-10-06": "Eid al-Fitr Holiday (estimated) (observed)", + "2008-12-07": "Arafat Day (estimated)", + "2008-12-08": "Eid al-Adha Holiday (estimated)", + "2008-12-09": "Eid al-Adha Holiday (estimated)", + "2008-12-10": "Eid al-Adha Holiday (estimated)", + "2009-09-20": "Eid al-Fitr Holiday (estimated)", + "2009-09-21": "Eid al-Fitr Holiday (estimated)", + "2009-09-22": "Eid al-Fitr Holiday (estimated)", + "2009-09-23": "Eid al-Fitr Holiday (estimated)", + "2009-11-26": "Arafat Day (estimated)", + "2009-11-27": "Eid al-Adha Holiday (estimated)", + "2009-11-28": "Eid al-Adha Holiday (estimated)", + "2009-11-29": "Eid al-Adha Holiday (estimated)", + "2009-11-30": "Eid al-Adha Holiday (estimated) (observed)", + "2009-12-01": "Eid al-Adha Holiday (estimated) (observed)", + "2010-09-10": "Eid al-Fitr Holiday (estimated)", + "2010-09-11": "Eid al-Fitr Holiday (estimated)", + "2010-09-12": "Eid al-Fitr Holiday (estimated)", + "2010-09-13": "Eid al-Fitr Holiday (estimated)", + "2010-09-14": "Eid al-Fitr Holiday (estimated) (observed)", "2010-09-22": "National Day Holiday (observed)", "2010-09-23": "National Day Holiday", - "2010-11-15": "Arafat Day* (*estimated)", - "2010-11-16": "Eid al-Adha Holiday* (*estimated)", - "2010-11-17": "Eid al-Adha Holiday* (*estimated)", - "2010-11-18": "Eid al-Adha Holiday* (*estimated)", - "2010-11-20": "Eid al-Adha Holiday* (*estimated) (observed)", - "2011-08-30": "Eid al-Fitr Holiday* (*estimated)", - "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", - "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", - "2011-09-02": "Eid al-Fitr Holiday* (*estimated)", - "2011-09-03": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2011-09-04": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2010-11-15": "Arafat Day (estimated)", + "2010-11-16": "Eid al-Adha Holiday (estimated)", + "2010-11-17": "Eid al-Adha Holiday (estimated)", + "2010-11-18": "Eid al-Adha Holiday (estimated)", + "2010-11-20": "Eid al-Adha Holiday (estimated) (observed)", + "2011-08-30": "Eid al-Fitr Holiday (estimated)", + "2011-08-31": "Eid al-Fitr Holiday (estimated)", + "2011-09-01": "Eid al-Fitr Holiday (estimated)", + "2011-09-02": "Eid al-Fitr Holiday (estimated)", + "2011-09-03": "Eid al-Fitr Holiday (estimated) (observed)", + "2011-09-04": "Eid al-Fitr Holiday (estimated) (observed)", "2011-09-23": "National Day Holiday", "2011-09-24": "National Day Holiday (observed)", - "2011-11-05": "Arafat Day* (*estimated)", - "2011-11-06": "Eid al-Adha Holiday* (*estimated)", - "2011-11-07": "Eid al-Adha Holiday* (*estimated)", - "2011-11-08": "Eid al-Adha Holiday* (*estimated)", - "2012-08-19": "Eid al-Fitr Holiday* (*estimated)", - "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", - "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", - "2012-08-22": "Eid al-Fitr Holiday* (*estimated)", + "2011-11-05": "Arafat Day (estimated)", + "2011-11-06": "Eid al-Adha Holiday (estimated)", + "2011-11-07": "Eid al-Adha Holiday (estimated)", + "2011-11-08": "Eid al-Adha Holiday (estimated)", + "2012-08-19": "Eid al-Fitr Holiday (estimated)", + "2012-08-20": "Eid al-Fitr Holiday (estimated)", + "2012-08-21": "Eid al-Fitr Holiday (estimated)", + "2012-08-22": "Eid al-Fitr Holiday (estimated)", "2012-09-23": "National Day Holiday", - "2012-10-25": "Arafat Day* (*estimated)", - "2012-10-26": "Eid al-Adha Holiday* (*estimated)", - "2012-10-27": "Eid al-Adha Holiday* (*estimated)", - "2012-10-28": "Eid al-Adha Holiday* (*estimated)", - "2012-10-29": "Eid al-Adha Holiday* (*estimated) (observed)", - "2012-10-30": "Eid al-Adha Holiday* (*estimated) (observed)", - "2013-08-08": "Eid al-Fitr Holiday* (*estimated)", - "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", - "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", - "2013-08-11": "Eid al-Fitr Holiday* (*estimated)", - "2013-08-12": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2013-08-13": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2012-10-25": "Arafat Day (estimated)", + "2012-10-26": "Eid al-Adha Holiday (estimated)", + "2012-10-27": "Eid al-Adha Holiday (estimated)", + "2012-10-28": "Eid al-Adha Holiday (estimated)", + "2012-10-29": "Eid al-Adha Holiday (estimated) (observed)", + "2012-10-30": "Eid al-Adha Holiday (estimated) (observed)", + "2013-08-08": "Eid al-Fitr Holiday (estimated)", + "2013-08-09": "Eid al-Fitr Holiday (estimated)", + "2013-08-10": "Eid al-Fitr Holiday (estimated)", + "2013-08-11": "Eid al-Fitr Holiday (estimated)", + "2013-08-12": "Eid al-Fitr Holiday (estimated) (observed)", + "2013-08-13": "Eid al-Fitr Holiday (estimated) (observed)", "2013-09-23": "National Day Holiday", - "2013-10-14": "Arafat Day* (*estimated)", - "2013-10-15": "Eid al-Adha Holiday* (*estimated)", - "2013-10-16": "Eid al-Adha Holiday* (*estimated)", - "2013-10-17": "Eid al-Adha Holiday* (*estimated)", - "2014-07-28": "Eid al-Fitr Holiday* (*estimated)", - "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", - "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", - "2014-07-31": "Eid al-Fitr Holiday* (*estimated)", + "2013-10-14": "Arafat Day (estimated)", + "2013-10-15": "Eid al-Adha Holiday (estimated)", + "2013-10-16": "Eid al-Adha Holiday (estimated)", + "2013-10-17": "Eid al-Adha Holiday (estimated)", + "2014-07-28": "Eid al-Fitr Holiday (estimated)", + "2014-07-29": "Eid al-Fitr Holiday (estimated)", + "2014-07-30": "Eid al-Fitr Holiday (estimated)", + "2014-07-31": "Eid al-Fitr Holiday (estimated)", "2014-09-23": "National Day Holiday", - "2014-10-03": "Arafat Day* (*estimated)", - "2014-10-04": "Eid al-Adha Holiday* (*estimated)", - "2014-10-05": "Eid al-Adha Holiday* (*estimated)", - "2014-10-06": "Eid al-Adha Holiday* (*estimated)", - "2014-10-07": "Eid al-Adha Holiday* (*estimated) (observed)", - "2014-10-08": "Eid al-Adha Holiday* (*estimated) (observed)", - "2015-07-17": "Eid al-Fitr Holiday* (*estimated)", - "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", - "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", - "2015-07-20": "Eid al-Fitr Holiday* (*estimated)", - "2015-07-21": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2015-07-22": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2015-09-22": "Arafat Day* (*estimated)", - "2015-09-23": "Eid al-Adha Holiday* (*estimated)", - "2015-09-24": "Eid al-Adha Holiday* (*estimated)", - "2015-09-25": "Eid al-Adha Holiday* (*estimated)", - "2015-09-27": "Eid al-Adha Holiday* (*estimated) (observed)", - "2016-07-06": "Eid al-Fitr Holiday* (*estimated)", - "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", - "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", - "2016-07-09": "Eid al-Fitr Holiday* (*estimated)", - "2016-07-10": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2016-07-11": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2016-09-10": "Arafat Day* (*estimated)", - "2016-09-11": "Eid al-Adha Holiday* (*estimated)", - "2016-09-12": "Eid al-Adha Holiday* (*estimated)", - "2016-09-13": "Eid al-Adha Holiday* (*estimated)", - "2016-09-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "2014-10-03": "Arafat Day (estimated)", + "2014-10-04": "Eid al-Adha Holiday (estimated)", + "2014-10-05": "Eid al-Adha Holiday (estimated)", + "2014-10-06": "Eid al-Adha Holiday (estimated)", + "2014-10-07": "Eid al-Adha Holiday (estimated) (observed)", + "2014-10-08": "Eid al-Adha Holiday (estimated) (observed)", + "2015-07-17": "Eid al-Fitr Holiday (estimated)", + "2015-07-18": "Eid al-Fitr Holiday (estimated)", + "2015-07-19": "Eid al-Fitr Holiday (estimated)", + "2015-07-20": "Eid al-Fitr Holiday (estimated)", + "2015-07-21": "Eid al-Fitr Holiday (estimated) (observed)", + "2015-07-22": "Eid al-Fitr Holiday (estimated) (observed)", + "2015-09-22": "Arafat Day (estimated)", + "2015-09-23": "Eid al-Adha Holiday (estimated)", + "2015-09-24": "Eid al-Adha Holiday (estimated)", + "2015-09-25": "Eid al-Adha Holiday (estimated)", + "2015-09-27": "Eid al-Adha Holiday (estimated) (observed)", + "2016-07-06": "Eid al-Fitr Holiday (estimated)", + "2016-07-07": "Eid al-Fitr Holiday (estimated)", + "2016-07-08": "Eid al-Fitr Holiday (estimated)", + "2016-07-09": "Eid al-Fitr Holiday (estimated)", + "2016-07-10": "Eid al-Fitr Holiday (estimated) (observed)", + "2016-07-11": "Eid al-Fitr Holiday (estimated) (observed)", + "2016-09-10": "Arafat Day (estimated)", + "2016-09-11": "Eid al-Adha Holiday (estimated)", + "2016-09-12": "Eid al-Adha Holiday (estimated)", + "2016-09-13": "Eid al-Adha Holiday (estimated)", + "2016-09-14": "Eid al-Adha Holiday (estimated) (observed)", "2016-09-22": "National Day Holiday (observed)", "2016-09-23": "National Day Holiday", - "2017-06-25": "Eid al-Fitr Holiday* (*estimated)", - "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", - "2017-06-27": "Eid al-Fitr Holiday* (*estimated)", - "2017-06-28": "Eid al-Fitr Holiday* (*estimated)", - "2017-08-31": "Arafat Day* (*estimated)", - "2017-09-01": "Eid al-Adha Holiday* (*estimated)", - "2017-09-02": "Eid al-Adha Holiday* (*estimated)", - "2017-09-03": "Eid al-Adha Holiday* (*estimated)", - "2017-09-04": "Eid al-Adha Holiday* (*estimated) (observed)", - "2017-09-05": "Eid al-Adha Holiday* (*estimated) (observed)", + "2017-06-25": "Eid al-Fitr Holiday (estimated)", + "2017-06-26": "Eid al-Fitr Holiday (estimated)", + "2017-06-27": "Eid al-Fitr Holiday (estimated)", + "2017-06-28": "Eid al-Fitr Holiday (estimated)", + "2017-08-31": "Arafat Day (estimated)", + "2017-09-01": "Eid al-Adha Holiday (estimated)", + "2017-09-02": "Eid al-Adha Holiday (estimated)", + "2017-09-03": "Eid al-Adha Holiday (estimated)", + "2017-09-04": "Eid al-Adha Holiday (estimated) (observed)", + "2017-09-05": "Eid al-Adha Holiday (estimated) (observed)", "2017-09-23": "National Day Holiday", "2017-09-24": "National Day Holiday (observed)", - "2018-06-15": "Eid al-Fitr Holiday* (*estimated)", - "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", - "2018-06-17": "Eid al-Fitr Holiday* (*estimated)", - "2018-06-18": "Eid al-Fitr Holiday* (*estimated)", - "2018-06-19": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2018-06-20": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2018-08-20": "Arafat Day* (*estimated)", - "2018-08-21": "Eid al-Adha Holiday* (*estimated)", - "2018-08-22": "Eid al-Adha Holiday* (*estimated)", - "2018-08-23": "Eid al-Adha Holiday* (*estimated)", + "2018-06-15": "Eid al-Fitr Holiday (estimated)", + "2018-06-16": "Eid al-Fitr Holiday (estimated)", + "2018-06-17": "Eid al-Fitr Holiday (estimated)", + "2018-06-18": "Eid al-Fitr Holiday (estimated)", + "2018-06-19": "Eid al-Fitr Holiday (estimated) (observed)", + "2018-06-20": "Eid al-Fitr Holiday (estimated) (observed)", + "2018-08-20": "Arafat Day (estimated)", + "2018-08-21": "Eid al-Adha Holiday (estimated)", + "2018-08-22": "Eid al-Adha Holiday (estimated)", + "2018-08-23": "Eid al-Adha Holiday (estimated)", "2018-09-23": "National Day Holiday", - "2019-06-04": "Eid al-Fitr Holiday* (*estimated)", - "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", - "2019-06-06": "Eid al-Fitr Holiday* (*estimated)", - "2019-06-07": "Eid al-Fitr Holiday* (*estimated)", - "2019-06-09": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2019-08-10": "Arafat Day* (*estimated)", - "2019-08-11": "Eid al-Adha Holiday* (*estimated)", - "2019-08-12": "Eid al-Adha Holiday* (*estimated)", - "2019-08-13": "Eid al-Adha Holiday* (*estimated)", - "2019-08-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "2019-06-04": "Eid al-Fitr Holiday (estimated)", + "2019-06-05": "Eid al-Fitr Holiday (estimated)", + "2019-06-06": "Eid al-Fitr Holiday (estimated)", + "2019-06-07": "Eid al-Fitr Holiday (estimated)", + "2019-06-09": "Eid al-Fitr Holiday (estimated) (observed)", + "2019-08-10": "Arafat Day (estimated)", + "2019-08-11": "Eid al-Adha Holiday (estimated)", + "2019-08-12": "Eid al-Adha Holiday (estimated)", + "2019-08-13": "Eid al-Adha Holiday (estimated)", + "2019-08-14": "Eid al-Adha Holiday (estimated) (observed)", "2019-09-23": "National Day Holiday", - "2020-05-24": "Eid al-Fitr Holiday* (*estimated)", - "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", - "2020-05-26": "Eid al-Fitr Holiday* (*estimated)", - "2020-05-27": "Eid al-Fitr Holiday* (*estimated)", - "2020-07-30": "Arafat Day* (*estimated)", - "2020-07-31": "Eid al-Adha Holiday* (*estimated)", - "2020-08-01": "Eid al-Adha Holiday* (*estimated)", - "2020-08-02": "Eid al-Adha Holiday* (*estimated)", - "2020-08-03": "Eid al-Adha Holiday* (*estimated) (observed)", - "2020-08-04": "Eid al-Adha Holiday* (*estimated) (observed)", + "2020-05-24": "Eid al-Fitr Holiday (estimated)", + "2020-05-25": "Eid al-Fitr Holiday (estimated)", + "2020-05-26": "Eid al-Fitr Holiday (estimated)", + "2020-05-27": "Eid al-Fitr Holiday (estimated)", + "2020-07-30": "Arafat Day (estimated)", + "2020-07-31": "Eid al-Adha Holiday (estimated)", + "2020-08-01": "Eid al-Adha Holiday (estimated)", + "2020-08-02": "Eid al-Adha Holiday (estimated)", + "2020-08-03": "Eid al-Adha Holiday (estimated) (observed)", + "2020-08-04": "Eid al-Adha Holiday (estimated) (observed)", "2020-09-23": "National Day Holiday", - "2021-05-13": "Eid al-Fitr Holiday* (*estimated)", - "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", - "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", - "2021-05-16": "Eid al-Fitr Holiday* (*estimated)", - "2021-05-17": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2021-05-18": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2021-07-19": "Arafat Day* (*estimated)", - "2021-07-20": "Eid al-Adha Holiday* (*estimated)", - "2021-07-21": "Eid al-Adha Holiday* (*estimated)", - "2021-07-22": "Eid al-Adha Holiday* (*estimated)", + "2021-05-13": "Eid al-Fitr Holiday (estimated)", + "2021-05-14": "Eid al-Fitr Holiday (estimated)", + "2021-05-15": "Eid al-Fitr Holiday (estimated)", + "2021-05-16": "Eid al-Fitr Holiday (estimated)", + "2021-05-17": "Eid al-Fitr Holiday (estimated) (observed)", + "2021-05-18": "Eid al-Fitr Holiday (estimated) (observed)", + "2021-07-19": "Arafat Day (estimated)", + "2021-07-20": "Eid al-Adha Holiday (estimated)", + "2021-07-21": "Eid al-Adha Holiday (estimated)", + "2021-07-22": "Eid al-Adha Holiday (estimated)", "2021-09-23": "National Day Holiday", "2022-02-22": "Founding Day Holiday", - "2022-05-02": "Eid al-Fitr Holiday* (*estimated)", - "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", - "2022-05-04": "Eid al-Fitr Holiday* (*estimated)", - "2022-05-05": "Eid al-Fitr Holiday* (*estimated)", - "2022-07-08": "Arafat Day* (*estimated)", - "2022-07-09": "Eid al-Adha Holiday* (*estimated)", - "2022-07-10": "Eid al-Adha Holiday* (*estimated)", - "2022-07-11": "Eid al-Adha Holiday* (*estimated)", - "2022-07-12": "Eid al-Adha Holiday* (*estimated) (observed)", - "2022-07-13": "Eid al-Adha Holiday* (*estimated) (observed)", + "2022-05-02": "Eid al-Fitr Holiday (estimated)", + "2022-05-03": "Eid al-Fitr Holiday (estimated)", + "2022-05-04": "Eid al-Fitr Holiday (estimated)", + "2022-05-05": "Eid al-Fitr Holiday (estimated)", + "2022-07-08": "Arafat Day (estimated)", + "2022-07-09": "Eid al-Adha Holiday (estimated)", + "2022-07-10": "Eid al-Adha Holiday (estimated)", + "2022-07-11": "Eid al-Adha Holiday (estimated)", + "2022-07-12": "Eid al-Adha Holiday (estimated) (observed)", + "2022-07-13": "Eid al-Adha Holiday (estimated) (observed)", "2022-09-22": "National Day Holiday (observed)", "2022-09-23": "National Day Holiday", "2022-11-23": "A National Day", "2023-02-22": "Founding Day Holiday", - "2023-04-21": "Eid al-Fitr Holiday* (*estimated)", - "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", - "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", - "2023-04-24": "Eid al-Fitr Holiday* (*estimated)", - "2023-04-25": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2023-04-26": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2023-06-27": "Arafat Day* (*estimated)", - "2023-06-28": "Eid al-Adha Holiday* (*estimated)", - "2023-06-29": "Eid al-Adha Holiday* (*estimated)", - "2023-06-30": "Eid al-Adha Holiday* (*estimated)", - "2023-07-02": "Eid al-Adha Holiday* (*estimated) (observed)", + "2023-04-21": "Eid al-Fitr Holiday (estimated)", + "2023-04-22": "Eid al-Fitr Holiday (estimated)", + "2023-04-23": "Eid al-Fitr Holiday (estimated)", + "2023-04-24": "Eid al-Fitr Holiday (estimated)", + "2023-04-25": "Eid al-Fitr Holiday (estimated) (observed)", + "2023-04-26": "Eid al-Fitr Holiday (estimated) (observed)", + "2023-06-27": "Arafat Day (estimated)", + "2023-06-28": "Eid al-Adha Holiday (estimated)", + "2023-06-29": "Eid al-Adha Holiday (estimated)", + "2023-06-30": "Eid al-Adha Holiday (estimated)", + "2023-07-02": "Eid al-Adha Holiday (estimated) (observed)", "2023-09-23": "National Day Holiday", "2023-09-24": "National Day Holiday (observed)", "2024-02-22": "Founding Day Holiday", - "2024-04-10": "Eid al-Fitr Holiday* (*estimated)", - "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", - "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", - "2024-04-13": "Eid al-Fitr Holiday* (*estimated)", - "2024-04-14": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2024-04-15": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2024-06-15": "Arafat Day* (*estimated)", - "2024-06-16": "Eid al-Adha Holiday* (*estimated)", - "2024-06-17": "Eid al-Adha Holiday* (*estimated)", - "2024-06-18": "Eid al-Adha Holiday* (*estimated)", - "2024-06-19": "Eid al-Adha Holiday* (*estimated) (observed)", + "2024-04-10": "Eid al-Fitr Holiday (estimated)", + "2024-04-11": "Eid al-Fitr Holiday (estimated)", + "2024-04-12": "Eid al-Fitr Holiday (estimated)", + "2024-04-13": "Eid al-Fitr Holiday (estimated)", + "2024-04-14": "Eid al-Fitr Holiday (estimated) (observed)", + "2024-04-15": "Eid al-Fitr Holiday (estimated) (observed)", + "2024-06-15": "Arafat Day (estimated)", + "2024-06-16": "Eid al-Adha Holiday (estimated)", + "2024-06-17": "Eid al-Adha Holiday (estimated)", + "2024-06-18": "Eid al-Adha Holiday (estimated)", + "2024-06-19": "Eid al-Adha Holiday (estimated) (observed)", "2024-09-23": "National Day Holiday", "2025-02-22": "Founding Day Holiday", "2025-02-23": "Founding Day Holiday (observed)", - "2025-03-30": "Eid al-Fitr Holiday* (*estimated)", - "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", - "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", - "2025-04-02": "Eid al-Fitr Holiday* (*estimated)", - "2025-06-05": "Arafat Day* (*estimated)", - "2025-06-06": "Eid al-Adha Holiday* (*estimated)", - "2025-06-07": "Eid al-Adha Holiday* (*estimated)", - "2025-06-08": "Eid al-Adha Holiday* (*estimated)", - "2025-06-09": "Eid al-Adha Holiday* (*estimated) (observed)", - "2025-06-10": "Eid al-Adha Holiday* (*estimated) (observed)", + "2025-03-30": "Eid al-Fitr Holiday (estimated)", + "2025-03-31": "Eid al-Fitr Holiday (estimated)", + "2025-04-01": "Eid al-Fitr Holiday (estimated)", + "2025-04-02": "Eid al-Fitr Holiday (estimated)", + "2025-06-05": "Arafat Day (estimated)", + "2025-06-06": "Eid al-Adha Holiday (estimated)", + "2025-06-07": "Eid al-Adha Holiday (estimated)", + "2025-06-08": "Eid al-Adha Holiday (estimated)", + "2025-06-09": "Eid al-Adha Holiday (estimated) (observed)", + "2025-06-10": "Eid al-Adha Holiday (estimated) (observed)", "2025-09-23": "National Day Holiday", "2026-02-22": "Founding Day Holiday", - "2026-03-20": "Eid al-Fitr Holiday* (*estimated)", - "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", - "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", - "2026-03-23": "Eid al-Fitr Holiday* (*estimated)", - "2026-03-24": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2026-03-25": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2026-05-26": "Arafat Day* (*estimated)", - "2026-05-27": "Eid al-Adha Holiday* (*estimated)", - "2026-05-28": "Eid al-Adha Holiday* (*estimated)", - "2026-05-29": "Eid al-Adha Holiday* (*estimated)", - "2026-05-31": "Eid al-Adha Holiday* (*estimated) (observed)", + "2026-03-20": "Eid al-Fitr Holiday (estimated)", + "2026-03-21": "Eid al-Fitr Holiday (estimated)", + "2026-03-22": "Eid al-Fitr Holiday (estimated)", + "2026-03-23": "Eid al-Fitr Holiday (estimated)", + "2026-03-24": "Eid al-Fitr Holiday (estimated) (observed)", + "2026-03-25": "Eid al-Fitr Holiday (estimated) (observed)", + "2026-05-26": "Arafat Day (estimated)", + "2026-05-27": "Eid al-Adha Holiday (estimated)", + "2026-05-28": "Eid al-Adha Holiday (estimated)", + "2026-05-29": "Eid al-Adha Holiday (estimated)", + "2026-05-31": "Eid al-Adha Holiday (estimated) (observed)", "2026-09-23": "National Day Holiday", "2027-02-22": "Founding Day Holiday", - "2027-03-09": "Eid al-Fitr Holiday* (*estimated)", - "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", - "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", - "2027-03-12": "Eid al-Fitr Holiday* (*estimated)", - "2027-03-14": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2027-05-15": "Arafat Day* (*estimated)", - "2027-05-16": "Eid al-Adha Holiday* (*estimated)", - "2027-05-17": "Eid al-Adha Holiday* (*estimated)", - "2027-05-18": "Eid al-Adha Holiday* (*estimated)", - "2027-05-19": "Eid al-Adha Holiday* (*estimated) (observed)", + "2027-03-09": "Eid al-Fitr Holiday (estimated)", + "2027-03-10": "Eid al-Fitr Holiday (estimated)", + "2027-03-11": "Eid al-Fitr Holiday (estimated)", + "2027-03-12": "Eid al-Fitr Holiday (estimated)", + "2027-03-14": "Eid al-Fitr Holiday (estimated) (observed)", + "2027-05-15": "Arafat Day (estimated)", + "2027-05-16": "Eid al-Adha Holiday (estimated)", + "2027-05-17": "Eid al-Adha Holiday (estimated)", + "2027-05-18": "Eid al-Adha Holiday (estimated)", + "2027-05-19": "Eid al-Adha Holiday (estimated) (observed)", "2027-09-23": "National Day Holiday", "2028-02-22": "Founding Day Holiday", - "2028-02-26": "Eid al-Fitr Holiday* (*estimated)", - "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", - "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", - "2028-02-29": "Eid al-Fitr Holiday* (*estimated)", - "2028-03-01": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2028-05-04": "Arafat Day* (*estimated)", - "2028-05-05": "Eid al-Adha Holiday* (*estimated)", - "2028-05-06": "Eid al-Adha Holiday* (*estimated)", - "2028-05-07": "Eid al-Adha Holiday* (*estimated)", - "2028-05-08": "Eid al-Adha Holiday* (*estimated) (observed)", - "2028-05-09": "Eid al-Adha Holiday* (*estimated) (observed)", + "2028-02-26": "Eid al-Fitr Holiday (estimated)", + "2028-02-27": "Eid al-Fitr Holiday (estimated)", + "2028-02-28": "Eid al-Fitr Holiday (estimated)", + "2028-02-29": "Eid al-Fitr Holiday (estimated)", + "2028-03-01": "Eid al-Fitr Holiday (estimated) (observed)", + "2028-05-04": "Arafat Day (estimated)", + "2028-05-05": "Eid al-Adha Holiday (estimated)", + "2028-05-06": "Eid al-Adha Holiday (estimated)", + "2028-05-07": "Eid al-Adha Holiday (estimated)", + "2028-05-08": "Eid al-Adha Holiday (estimated) (observed)", + "2028-05-09": "Eid al-Adha Holiday (estimated) (observed)", "2028-09-23": "National Day Holiday", "2028-09-24": "National Day Holiday (observed)", - "2029-02-14": "Eid al-Fitr Holiday* (*estimated)", - "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", - "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", - "2029-02-17": "Eid al-Fitr Holiday* (*estimated)", - "2029-02-18": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2029-02-19": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2029-02-14": "Eid al-Fitr Holiday (estimated)", + "2029-02-15": "Eid al-Fitr Holiday (estimated)", + "2029-02-16": "Eid al-Fitr Holiday (estimated)", + "2029-02-17": "Eid al-Fitr Holiday (estimated)", + "2029-02-18": "Eid al-Fitr Holiday (estimated) (observed)", + "2029-02-19": "Eid al-Fitr Holiday (estimated) (observed)", "2029-02-22": "Founding Day Holiday", - "2029-04-23": "Arafat Day* (*estimated)", - "2029-04-24": "Eid al-Adha Holiday* (*estimated)", - "2029-04-25": "Eid al-Adha Holiday* (*estimated)", - "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-04-23": "Arafat Day (estimated)", + "2029-04-24": "Eid al-Adha Holiday (estimated)", + "2029-04-25": "Eid al-Adha Holiday (estimated)", + "2029-04-26": "Eid al-Adha Holiday (estimated)", "2029-09-23": "National Day Holiday", - "2030-02-04": "Eid al-Fitr Holiday* (*estimated)", - "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", - "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", - "2030-02-07": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-04": "Eid al-Fitr Holiday (estimated)", + "2030-02-05": "Eid al-Fitr Holiday (estimated)", + "2030-02-06": "Eid al-Fitr Holiday (estimated)", + "2030-02-07": "Eid al-Fitr Holiday (estimated)", "2030-02-21": "Founding Day Holiday (observed)", "2030-02-22": "Founding Day Holiday", - "2030-04-12": "Arafat Day* (*estimated)", - "2030-04-13": "Eid al-Adha Holiday* (*estimated)", - "2030-04-14": "Eid al-Adha Holiday* (*estimated)", - "2030-04-15": "Eid al-Adha Holiday* (*estimated)", - "2030-04-16": "Eid al-Adha Holiday* (*estimated) (observed)", - "2030-04-17": "Eid al-Adha Holiday* (*estimated) (observed)", + "2030-04-12": "Arafat Day (estimated)", + "2030-04-13": "Eid al-Adha Holiday (estimated)", + "2030-04-14": "Eid al-Adha Holiday (estimated)", + "2030-04-15": "Eid al-Adha Holiday (estimated)", + "2030-04-16": "Eid al-Adha Holiday (estimated) (observed)", + "2030-04-17": "Eid al-Adha Holiday (estimated) (observed)", "2030-09-23": "National Day Holiday", - "2031-01-24": "Eid al-Fitr Holiday* (*estimated)", - "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", - "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", - "2031-01-27": "Eid al-Fitr Holiday* (*estimated)", - "2031-01-28": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2031-01-29": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2031-01-24": "Eid al-Fitr Holiday (estimated)", + "2031-01-25": "Eid al-Fitr Holiday (estimated)", + "2031-01-26": "Eid al-Fitr Holiday (estimated)", + "2031-01-27": "Eid al-Fitr Holiday (estimated)", + "2031-01-28": "Eid al-Fitr Holiday (estimated) (observed)", + "2031-01-29": "Eid al-Fitr Holiday (estimated) (observed)", "2031-02-22": "Founding Day Holiday", "2031-02-23": "Founding Day Holiday (observed)", - "2031-04-01": "Arafat Day* (*estimated)", - "2031-04-02": "Eid al-Adha Holiday* (*estimated)", - "2031-04-03": "Eid al-Adha Holiday* (*estimated)", - "2031-04-04": "Eid al-Adha Holiday* (*estimated)", - "2031-04-06": "Eid al-Adha Holiday* (*estimated) (observed)", + "2031-04-01": "Arafat Day (estimated)", + "2031-04-02": "Eid al-Adha Holiday (estimated)", + "2031-04-03": "Eid al-Adha Holiday (estimated)", + "2031-04-04": "Eid al-Adha Holiday (estimated)", + "2031-04-06": "Eid al-Adha Holiday (estimated) (observed)", "2031-09-23": "National Day Holiday", - "2032-01-14": "Eid al-Fitr Holiday* (*estimated)", - "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", - "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", - "2032-01-17": "Eid al-Fitr Holiday* (*estimated)", - "2032-01-18": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2032-01-19": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2032-01-14": "Eid al-Fitr Holiday (estimated)", + "2032-01-15": "Eid al-Fitr Holiday (estimated)", + "2032-01-16": "Eid al-Fitr Holiday (estimated)", + "2032-01-17": "Eid al-Fitr Holiday (estimated)", + "2032-01-18": "Eid al-Fitr Holiday (estimated) (observed)", + "2032-01-19": "Eid al-Fitr Holiday (estimated) (observed)", "2032-02-22": "Founding Day Holiday", - "2032-03-21": "Arafat Day* (*estimated)", - "2032-03-22": "Eid al-Adha Holiday* (*estimated)", - "2032-03-23": "Eid al-Adha Holiday* (*estimated)", - "2032-03-24": "Eid al-Adha Holiday* (*estimated)", + "2032-03-21": "Arafat Day (estimated)", + "2032-03-22": "Eid al-Adha Holiday (estimated)", + "2032-03-23": "Eid al-Adha Holiday (estimated)", + "2032-03-24": "Eid al-Adha Holiday (estimated)", "2032-09-23": "National Day Holiday", - "2033-01-02": "Eid al-Fitr Holiday* (*estimated)", - "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", - "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", - "2033-01-05": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-02": "Eid al-Fitr Holiday (estimated)", + "2033-01-03": "Eid al-Fitr Holiday (estimated)", + "2033-01-04": "Eid al-Fitr Holiday (estimated)", + "2033-01-05": "Eid al-Fitr Holiday (estimated)", "2033-02-22": "Founding Day Holiday", - "2033-03-10": "Arafat Day* (*estimated)", - "2033-03-11": "Eid al-Adha Holiday* (*estimated)", - "2033-03-12": "Eid al-Adha Holiday* (*estimated)", - "2033-03-13": "Eid al-Adha Holiday* (*estimated)", - "2033-03-14": "Eid al-Adha Holiday* (*estimated) (observed)", - "2033-03-15": "Eid al-Adha Holiday* (*estimated) (observed)", + "2033-03-10": "Arafat Day (estimated)", + "2033-03-11": "Eid al-Adha Holiday (estimated)", + "2033-03-12": "Eid al-Adha Holiday (estimated)", + "2033-03-13": "Eid al-Adha Holiday (estimated)", + "2033-03-14": "Eid al-Adha Holiday (estimated) (observed)", + "2033-03-15": "Eid al-Adha Holiday (estimated) (observed)", "2033-09-22": "National Day Holiday (observed)", "2033-09-23": "National Day Holiday", - "2033-12-23": "Eid al-Fitr Holiday* (*estimated)", - "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", - "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", - "2033-12-26": "Eid al-Fitr Holiday* (*estimated)", - "2033-12-27": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2033-12-28": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2033-12-23": "Eid al-Fitr Holiday (estimated)", + "2033-12-24": "Eid al-Fitr Holiday (estimated)", + "2033-12-25": "Eid al-Fitr Holiday (estimated)", + "2033-12-26": "Eid al-Fitr Holiday (estimated)", + "2033-12-27": "Eid al-Fitr Holiday (estimated) (observed)", + "2033-12-28": "Eid al-Fitr Holiday (estimated) (observed)", "2034-02-22": "Founding Day Holiday", - "2034-02-28": "Arafat Day* (*estimated)", - "2034-03-01": "Eid al-Adha Holiday* (*estimated)", - "2034-03-02": "Eid al-Adha Holiday* (*estimated)", - "2034-03-03": "Eid al-Adha Holiday* (*estimated)", - "2034-03-05": "Eid al-Adha Holiday* (*estimated) (observed)", + "2034-02-28": "Arafat Day (estimated)", + "2034-03-01": "Eid al-Adha Holiday (estimated)", + "2034-03-02": "Eid al-Adha Holiday (estimated)", + "2034-03-03": "Eid al-Adha Holiday (estimated)", + "2034-03-05": "Eid al-Adha Holiday (estimated) (observed)", "2034-09-23": "National Day Holiday", "2034-09-24": "National Day Holiday (observed)", - "2034-12-12": "Eid al-Fitr Holiday* (*estimated)", - "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", - "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", - "2034-12-15": "Eid al-Fitr Holiday* (*estimated)", - "2034-12-17": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2035-02-17": "Arafat Day* (*estimated)", - "2035-02-18": "Eid al-Adha Holiday* (*estimated)", - "2035-02-19": "Eid al-Adha Holiday* (*estimated)", - "2035-02-20": "Eid al-Adha Holiday* (*estimated)", - "2035-02-21": "Eid al-Adha Holiday* (*estimated) (observed)", + "2034-12-12": "Eid al-Fitr Holiday (estimated)", + "2034-12-13": "Eid al-Fitr Holiday (estimated)", + "2034-12-14": "Eid al-Fitr Holiday (estimated)", + "2034-12-15": "Eid al-Fitr Holiday (estimated)", + "2034-12-17": "Eid al-Fitr Holiday (estimated) (observed)", + "2035-02-17": "Arafat Day (estimated)", + "2035-02-18": "Eid al-Adha Holiday (estimated)", + "2035-02-19": "Eid al-Adha Holiday (estimated)", + "2035-02-20": "Eid al-Adha Holiday (estimated)", + "2035-02-21": "Eid al-Adha Holiday (estimated) (observed)", "2035-02-22": "Founding Day Holiday", "2035-09-23": "National Day Holiday", - "2035-12-01": "Eid al-Fitr Holiday* (*estimated)", - "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", - "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", - "2035-12-04": "Eid al-Fitr Holiday* (*estimated)", - "2035-12-05": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2036-02-06": "Arafat Day* (*estimated)", - "2036-02-07": "Eid al-Adha Holiday* (*estimated)", - "2036-02-08": "Eid al-Adha Holiday* (*estimated)", - "2036-02-09": "Eid al-Adha Holiday* (*estimated)", - "2036-02-10": "Eid al-Adha Holiday* (*estimated) (observed)", - "2036-02-11": "Eid al-Adha Holiday* (*estimated) (observed)", + "2035-12-01": "Eid al-Fitr Holiday (estimated)", + "2035-12-02": "Eid al-Fitr Holiday (estimated)", + "2035-12-03": "Eid al-Fitr Holiday (estimated)", + "2035-12-04": "Eid al-Fitr Holiday (estimated)", + "2035-12-05": "Eid al-Fitr Holiday (estimated) (observed)", + "2036-02-06": "Arafat Day (estimated)", + "2036-02-07": "Eid al-Adha Holiday (estimated)", + "2036-02-08": "Eid al-Adha Holiday (estimated)", + "2036-02-09": "Eid al-Adha Holiday (estimated)", + "2036-02-10": "Eid al-Adha Holiday (estimated) (observed)", + "2036-02-11": "Eid al-Adha Holiday (estimated) (observed)", "2036-02-21": "Founding Day Holiday (observed)", "2036-02-22": "Founding Day Holiday", "2036-09-23": "National Day Holiday", - "2036-11-19": "Eid al-Fitr Holiday* (*estimated)", - "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", - "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", - "2036-11-22": "Eid al-Fitr Holiday* (*estimated)", - "2036-11-23": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2036-11-24": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2037-01-25": "Arafat Day* (*estimated)", - "2037-01-26": "Eid al-Adha Holiday* (*estimated)", - "2037-01-27": "Eid al-Adha Holiday* (*estimated)", - "2037-01-28": "Eid al-Adha Holiday* (*estimated)", + "2036-11-19": "Eid al-Fitr Holiday (estimated)", + "2036-11-20": "Eid al-Fitr Holiday (estimated)", + "2036-11-21": "Eid al-Fitr Holiday (estimated)", + "2036-11-22": "Eid al-Fitr Holiday (estimated)", + "2036-11-23": "Eid al-Fitr Holiday (estimated) (observed)", + "2036-11-24": "Eid al-Fitr Holiday (estimated) (observed)", + "2037-01-25": "Arafat Day (estimated)", + "2037-01-26": "Eid al-Adha Holiday (estimated)", + "2037-01-27": "Eid al-Adha Holiday (estimated)", + "2037-01-28": "Eid al-Adha Holiday (estimated)", "2037-02-22": "Founding Day Holiday", "2037-09-23": "National Day Holiday", - "2037-11-08": "Eid al-Fitr Holiday* (*estimated)", - "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", - "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", - "2037-11-11": "Eid al-Fitr Holiday* (*estimated)", - "2038-01-15": "Arafat Day* (*estimated)", - "2038-01-16": "Eid al-Adha Holiday* (*estimated)", - "2038-01-17": "Eid al-Adha Holiday* (*estimated)", - "2038-01-18": "Eid al-Adha Holiday* (*estimated)", - "2038-01-19": "Eid al-Adha Holiday* (*estimated) (observed)", - "2038-01-20": "Eid al-Adha Holiday* (*estimated) (observed)", + "2037-11-08": "Eid al-Fitr Holiday (estimated)", + "2037-11-09": "Eid al-Fitr Holiday (estimated)", + "2037-11-10": "Eid al-Fitr Holiday (estimated)", + "2037-11-11": "Eid al-Fitr Holiday (estimated)", + "2038-01-15": "Arafat Day (estimated)", + "2038-01-16": "Eid al-Adha Holiday (estimated)", + "2038-01-17": "Eid al-Adha Holiday (estimated)", + "2038-01-18": "Eid al-Adha Holiday (estimated)", + "2038-01-19": "Eid al-Adha Holiday (estimated) (observed)", + "2038-01-20": "Eid al-Adha Holiday (estimated) (observed)", "2038-02-22": "Founding Day Holiday", "2038-09-23": "National Day Holiday", - "2038-10-29": "Eid al-Fitr Holiday* (*estimated)", - "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", - "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", - "2038-11-01": "Eid al-Fitr Holiday* (*estimated)", - "2038-11-02": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2038-11-03": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2039-01-04": "Arafat Day* (*estimated)", - "2039-01-05": "Eid al-Adha Holiday* (*estimated)", - "2039-01-06": "Eid al-Adha Holiday* (*estimated)", - "2039-01-07": "Eid al-Adha Holiday* (*estimated)", - "2039-01-09": "Eid al-Adha Holiday* (*estimated) (observed)", + "2038-10-29": "Eid al-Fitr Holiday (estimated)", + "2038-10-30": "Eid al-Fitr Holiday (estimated)", + "2038-10-31": "Eid al-Fitr Holiday (estimated)", + "2038-11-01": "Eid al-Fitr Holiday (estimated)", + "2038-11-02": "Eid al-Fitr Holiday (estimated) (observed)", + "2038-11-03": "Eid al-Fitr Holiday (estimated) (observed)", + "2039-01-04": "Arafat Day (estimated)", + "2039-01-05": "Eid al-Adha Holiday (estimated)", + "2039-01-06": "Eid al-Adha Holiday (estimated)", + "2039-01-07": "Eid al-Adha Holiday (estimated)", + "2039-01-09": "Eid al-Adha Holiday (estimated) (observed)", "2039-02-22": "Founding Day Holiday", "2039-09-22": "National Day Holiday (observed)", "2039-09-23": "National Day Holiday", - "2039-10-19": "Eid al-Fitr Holiday* (*estimated)", - "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", - "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", - "2039-10-22": "Eid al-Fitr Holiday* (*estimated)", - "2039-10-23": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2039-10-24": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2039-12-25": "Arafat Day* (*estimated)", - "2039-12-26": "Eid al-Adha Holiday* (*estimated)", - "2039-12-27": "Eid al-Adha Holiday* (*estimated)", - "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2039-10-19": "Eid al-Fitr Holiday (estimated)", + "2039-10-20": "Eid al-Fitr Holiday (estimated)", + "2039-10-21": "Eid al-Fitr Holiday (estimated)", + "2039-10-22": "Eid al-Fitr Holiday (estimated)", + "2039-10-23": "Eid al-Fitr Holiday (estimated) (observed)", + "2039-10-24": "Eid al-Fitr Holiday (estimated) (observed)", + "2039-12-25": "Arafat Day (estimated)", + "2039-12-26": "Eid al-Adha Holiday (estimated)", + "2039-12-27": "Eid al-Adha Holiday (estimated)", + "2039-12-28": "Eid al-Adha Holiday (estimated)", "2040-02-22": "Founding Day Holiday", "2040-09-23": "National Day Holiday", - "2040-10-07": "Eid al-Fitr Holiday* (*estimated)", - "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", - "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", - "2040-10-10": "Eid al-Fitr Holiday* (*estimated)", - "2040-12-13": "Arafat Day* (*estimated)", - "2040-12-14": "Eid al-Adha Holiday* (*estimated)", - "2040-12-15": "Eid al-Adha Holiday* (*estimated)", - "2040-12-16": "Eid al-Adha Holiday* (*estimated)", - "2040-12-17": "Eid al-Adha Holiday* (*estimated) (observed)", - "2040-12-18": "Eid al-Adha Holiday* (*estimated) (observed)", + "2040-10-07": "Eid al-Fitr Holiday (estimated)", + "2040-10-08": "Eid al-Fitr Holiday (estimated)", + "2040-10-09": "Eid al-Fitr Holiday (estimated)", + "2040-10-10": "Eid al-Fitr Holiday (estimated)", + "2040-12-13": "Arafat Day (estimated)", + "2040-12-14": "Eid al-Adha Holiday (estimated)", + "2040-12-15": "Eid al-Adha Holiday (estimated)", + "2040-12-16": "Eid al-Adha Holiday (estimated)", + "2040-12-17": "Eid al-Adha Holiday (estimated) (observed)", + "2040-12-18": "Eid al-Adha Holiday (estimated) (observed)", "2041-02-21": "Founding Day Holiday (observed)", "2041-02-22": "Founding Day Holiday", "2041-09-23": "National Day Holiday", - "2041-09-26": "Eid al-Fitr Holiday* (*estimated)", - "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", - "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", - "2041-09-29": "Eid al-Fitr Holiday* (*estimated)", - "2041-09-30": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2041-10-01": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2041-12-03": "Arafat Day* (*estimated)", - "2041-12-04": "Eid al-Adha Holiday* (*estimated)", - "2041-12-05": "Eid al-Adha Holiday* (*estimated)", - "2041-12-06": "Eid al-Adha Holiday* (*estimated)", - "2041-12-08": "Eid al-Adha Holiday* (*estimated) (observed)", + "2041-09-26": "Eid al-Fitr Holiday (estimated)", + "2041-09-27": "Eid al-Fitr Holiday (estimated)", + "2041-09-28": "Eid al-Fitr Holiday (estimated)", + "2041-09-29": "Eid al-Fitr Holiday (estimated)", + "2041-09-30": "Eid al-Fitr Holiday (estimated) (observed)", + "2041-10-01": "Eid al-Fitr Holiday (estimated) (observed)", + "2041-12-03": "Arafat Day (estimated)", + "2041-12-04": "Eid al-Adha Holiday (estimated)", + "2041-12-05": "Eid al-Adha Holiday (estimated)", + "2041-12-06": "Eid al-Adha Holiday (estimated)", + "2041-12-08": "Eid al-Adha Holiday (estimated) (observed)", "2042-02-22": "Founding Day Holiday", "2042-02-23": "Founding Day Holiday (observed)", - "2042-09-15": "Eid al-Fitr Holiday* (*estimated)", - "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", - "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", - "2042-09-18": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-15": "Eid al-Fitr Holiday (estimated)", + "2042-09-16": "Eid al-Fitr Holiday (estimated)", + "2042-09-17": "Eid al-Fitr Holiday (estimated)", + "2042-09-18": "Eid al-Fitr Holiday (estimated)", "2042-09-23": "National Day Holiday", - "2042-11-22": "Arafat Day* (*estimated)", - "2042-11-23": "Eid al-Adha Holiday* (*estimated)", - "2042-11-24": "Eid al-Adha Holiday* (*estimated)", - "2042-11-25": "Eid al-Adha Holiday* (*estimated)", - "2042-11-26": "Eid al-Adha Holiday* (*estimated) (observed)", + "2042-11-22": "Arafat Day (estimated)", + "2042-11-23": "Eid al-Adha Holiday (estimated)", + "2042-11-24": "Eid al-Adha Holiday (estimated)", + "2042-11-25": "Eid al-Adha Holiday (estimated)", + "2042-11-26": "Eid al-Adha Holiday (estimated) (observed)", "2043-02-22": "Founding Day Holiday", - "2043-09-04": "Eid al-Fitr Holiday* (*estimated)", - "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", - "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", - "2043-09-07": "Eid al-Fitr Holiday* (*estimated)", - "2043-09-08": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2043-09-09": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2043-09-04": "Eid al-Fitr Holiday (estimated)", + "2043-09-05": "Eid al-Fitr Holiday (estimated)", + "2043-09-06": "Eid al-Fitr Holiday (estimated)", + "2043-09-07": "Eid al-Fitr Holiday (estimated)", + "2043-09-08": "Eid al-Fitr Holiday (estimated) (observed)", + "2043-09-09": "Eid al-Fitr Holiday (estimated) (observed)", "2043-09-23": "National Day Holiday", - "2043-11-11": "Arafat Day* (*estimated)", - "2043-11-12": "Eid al-Adha Holiday* (*estimated)", - "2043-11-13": "Eid al-Adha Holiday* (*estimated)", - "2043-11-14": "Eid al-Adha Holiday* (*estimated)", - "2043-11-15": "Eid al-Adha Holiday* (*estimated) (observed)", - "2043-11-16": "Eid al-Adha Holiday* (*estimated) (observed)", + "2043-11-11": "Arafat Day (estimated)", + "2043-11-12": "Eid al-Adha Holiday (estimated)", + "2043-11-13": "Eid al-Adha Holiday (estimated)", + "2043-11-14": "Eid al-Adha Holiday (estimated)", + "2043-11-15": "Eid al-Adha Holiday (estimated) (observed)", + "2043-11-16": "Eid al-Adha Holiday (estimated) (observed)", "2044-02-22": "Founding Day Holiday", - "2044-08-24": "Eid al-Fitr Holiday* (*estimated)", - "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", - "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", - "2044-08-27": "Eid al-Fitr Holiday* (*estimated)", - "2044-08-28": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2044-08-29": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2044-08-24": "Eid al-Fitr Holiday (estimated)", + "2044-08-25": "Eid al-Fitr Holiday (estimated)", + "2044-08-26": "Eid al-Fitr Holiday (estimated)", + "2044-08-27": "Eid al-Fitr Holiday (estimated)", + "2044-08-28": "Eid al-Fitr Holiday (estimated) (observed)", + "2044-08-29": "Eid al-Fitr Holiday (estimated) (observed)", "2044-09-22": "National Day Holiday (observed)", "2044-09-23": "National Day Holiday", - "2044-10-30": "Arafat Day* (*estimated)", - "2044-10-31": "Eid al-Adha Holiday* (*estimated)", - "2044-11-01": "Eid al-Adha Holiday* (*estimated)", - "2044-11-02": "Eid al-Adha Holiday* (*estimated)", + "2044-10-30": "Arafat Day (estimated)", + "2044-10-31": "Eid al-Adha Holiday (estimated)", + "2044-11-01": "Eid al-Adha Holiday (estimated)", + "2044-11-02": "Eid al-Adha Holiday (estimated)", "2045-02-22": "Founding Day Holiday", - "2045-08-14": "Eid al-Fitr Holiday* (*estimated)", - "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", - "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", - "2045-08-17": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-14": "Eid al-Fitr Holiday (estimated)", + "2045-08-15": "Eid al-Fitr Holiday (estimated)", + "2045-08-16": "Eid al-Fitr Holiday (estimated)", + "2045-08-17": "Eid al-Fitr Holiday (estimated)", "2045-09-23": "National Day Holiday", "2045-09-24": "National Day Holiday (observed)", - "2045-10-20": "Arafat Day* (*estimated)", - "2045-10-21": "Eid al-Adha Holiday* (*estimated)", - "2045-10-22": "Eid al-Adha Holiday* (*estimated)", - "2045-10-23": "Eid al-Adha Holiday* (*estimated)", - "2045-10-24": "Eid al-Adha Holiday* (*estimated) (observed)", - "2045-10-25": "Eid al-Adha Holiday* (*estimated) (observed)", + "2045-10-20": "Arafat Day (estimated)", + "2045-10-21": "Eid al-Adha Holiday (estimated)", + "2045-10-22": "Eid al-Adha Holiday (estimated)", + "2045-10-23": "Eid al-Adha Holiday (estimated)", + "2045-10-24": "Eid al-Adha Holiday (estimated) (observed)", + "2045-10-25": "Eid al-Adha Holiday (estimated) (observed)", "2046-02-22": "Founding Day Holiday", - "2046-08-03": "Eid al-Fitr Holiday* (*estimated)", - "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", - "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", - "2046-08-06": "Eid al-Fitr Holiday* (*estimated)", - "2046-08-07": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2046-08-08": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2046-08-03": "Eid al-Fitr Holiday (estimated)", + "2046-08-04": "Eid al-Fitr Holiday (estimated)", + "2046-08-05": "Eid al-Fitr Holiday (estimated)", + "2046-08-06": "Eid al-Fitr Holiday (estimated)", + "2046-08-07": "Eid al-Fitr Holiday (estimated) (observed)", + "2046-08-08": "Eid al-Fitr Holiday (estimated) (observed)", "2046-09-23": "National Day Holiday", - "2046-10-09": "Arafat Day* (*estimated)", - "2046-10-10": "Eid al-Adha Holiday* (*estimated)", - "2046-10-11": "Eid al-Adha Holiday* (*estimated)", - "2046-10-12": "Eid al-Adha Holiday* (*estimated)", - "2046-10-14": "Eid al-Adha Holiday* (*estimated) (observed)", + "2046-10-09": "Arafat Day (estimated)", + "2046-10-10": "Eid al-Adha Holiday (estimated)", + "2046-10-11": "Eid al-Adha Holiday (estimated)", + "2046-10-12": "Eid al-Adha Holiday (estimated)", + "2046-10-14": "Eid al-Adha Holiday (estimated) (observed)", "2047-02-21": "Founding Day Holiday (observed)", "2047-02-22": "Founding Day Holiday", - "2047-07-24": "Eid al-Fitr Holiday* (*estimated)", - "2047-07-25": "Eid al-Fitr Holiday* (*estimated)", - "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", - "2047-07-27": "Eid al-Fitr Holiday* (*estimated)", - "2047-07-28": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2047-07-29": "Eid al-Fitr Holiday* (*estimated) (observed)", + "2047-07-24": "Eid al-Fitr Holiday (estimated)", + "2047-07-25": "Eid al-Fitr Holiday (estimated)", + "2047-07-26": "Eid al-Fitr Holiday (estimated)", + "2047-07-27": "Eid al-Fitr Holiday (estimated)", + "2047-07-28": "Eid al-Fitr Holiday (estimated) (observed)", + "2047-07-29": "Eid al-Fitr Holiday (estimated) (observed)", "2047-09-23": "National Day Holiday", - "2047-09-29": "Arafat Day* (*estimated)", - "2047-09-30": "Eid al-Adha Holiday* (*estimated)", - "2047-10-01": "Eid al-Adha Holiday* (*estimated)", - "2047-10-02": "Eid al-Adha Holiday* (*estimated)", + "2047-09-29": "Arafat Day (estimated)", + "2047-09-30": "Eid al-Adha Holiday (estimated)", + "2047-10-01": "Eid al-Adha Holiday (estimated)", + "2047-10-02": "Eid al-Adha Holiday (estimated)", "2048-02-22": "Founding Day Holiday", "2048-02-23": "Founding Day Holiday (observed)", - "2048-07-12": "Eid al-Fitr Holiday* (*estimated)", - "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", - "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", - "2048-07-15": "Eid al-Fitr Holiday* (*estimated)", - "2048-09-18": "Arafat Day* (*estimated)", - "2048-09-19": "Eid al-Adha Holiday* (*estimated)", - "2048-09-20": "Eid al-Adha Holiday* (*estimated)", - "2048-09-21": "Eid al-Adha Holiday* (*estimated)", - "2048-09-22": "Eid al-Adha Holiday* (*estimated) (observed)", - "2048-09-23": "Eid al-Adha Holiday* (*estimated) (observed)", + "2048-07-12": "Eid al-Fitr Holiday (estimated)", + "2048-07-13": "Eid al-Fitr Holiday (estimated)", + "2048-07-14": "Eid al-Fitr Holiday (estimated)", + "2048-07-15": "Eid al-Fitr Holiday (estimated)", + "2048-09-18": "Arafat Day (estimated)", + "2048-09-19": "Eid al-Adha Holiday (estimated)", + "2048-09-20": "Eid al-Adha Holiday (estimated)", + "2048-09-21": "Eid al-Adha Holiday (estimated)", + "2048-09-22": "Eid al-Adha Holiday (estimated) (observed)", + "2048-09-23": "Eid al-Adha Holiday (estimated) (observed)", "2049-02-22": "Founding Day Holiday", - "2049-07-01": "Eid al-Fitr Holiday* (*estimated)", - "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", - "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", - "2049-07-04": "Eid al-Fitr Holiday* (*estimated)", - "2049-07-05": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2049-07-06": "Eid al-Fitr Holiday* (*estimated) (observed)", - "2049-09-07": "Arafat Day* (*estimated)", - "2049-09-08": "Eid al-Adha Holiday* (*estimated)", - "2049-09-09": "Eid al-Adha Holiday* (*estimated)", - "2049-09-10": "Eid al-Adha Holiday* (*estimated)", - "2049-09-12": "Eid al-Adha Holiday* (*estimated) (observed)", + "2049-07-01": "Eid al-Fitr Holiday (estimated)", + "2049-07-02": "Eid al-Fitr Holiday (estimated)", + "2049-07-03": "Eid al-Fitr Holiday (estimated)", + "2049-07-04": "Eid al-Fitr Holiday (estimated)", + "2049-07-05": "Eid al-Fitr Holiday (estimated) (observed)", + "2049-07-06": "Eid al-Fitr Holiday (estimated) (observed)", + "2049-09-07": "Arafat Day (estimated)", + "2049-09-08": "Eid al-Adha Holiday (estimated)", + "2049-09-09": "Eid al-Adha Holiday (estimated)", + "2049-09-10": "Eid al-Adha Holiday (estimated)", + "2049-09-12": "Eid al-Adha Holiday (estimated) (observed)", "2049-09-23": "National Day Holiday", "2050-02-22": "Founding Day Holiday", - "2050-06-20": "Eid al-Fitr Holiday* (*estimated)", - "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", - "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", - "2050-06-23": "Eid al-Fitr Holiday* (*estimated)", - "2050-08-27": "Arafat Day* (*estimated)", - "2050-08-28": "Eid al-Adha Holiday* (*estimated)", - "2050-08-29": "Eid al-Adha Holiday* (*estimated)", - "2050-08-30": "Eid al-Adha Holiday* (*estimated)", - "2050-08-31": "Eid al-Adha Holiday* (*estimated) (observed)", + "2050-06-20": "Eid al-Fitr Holiday (estimated)", + "2050-06-21": "Eid al-Fitr Holiday (estimated)", + "2050-06-22": "Eid al-Fitr Holiday (estimated)", + "2050-06-23": "Eid al-Fitr Holiday (estimated)", + "2050-08-27": "Arafat Day (estimated)", + "2050-08-28": "Eid al-Adha Holiday (estimated)", + "2050-08-29": "Eid al-Adha Holiday (estimated)", + "2050-08-30": "Eid al-Adha Holiday (estimated)", + "2050-08-31": "Eid al-Adha Holiday (estimated) (observed)", "2050-09-22": "National Day Holiday (observed)", "2050-09-23": "National Day Holiday" } diff --git a/snapshots/countries/SG_COMMON.json b/snapshots/countries/SG_COMMON.json index 4e1d5ea6f..57edb172d 100644 --- a/snapshots/countries/SG_COMMON.json +++ b/snapshots/countries/SG_COMMON.json @@ -1,638 +1,638 @@ { "1950-01-01": "New Year's Day", - "1950-02-17": "Chinese New Year* (*estimated)", - "1950-02-18": "Chinese New Year* (*estimated)", + "1950-02-17": "Chinese New Year (estimated)", + "1950-02-18": "Chinese New Year (estimated)", "1950-04-07": "Good Friday", "1950-04-08": "Holy Saturday", "1950-04-10": "Easter Monday", "1950-05-01": "Labour Day", - "1950-05-31": "Vesak Day* (*estimated)", - "1950-07-16": "Hari Raya Puasa* (*estimated)", - "1950-07-17": "Second day of Hari Raya Puasa* (*estimated)", + "1950-05-31": "Vesak Day (estimated)", + "1950-07-16": "Hari Raya Puasa (estimated)", + "1950-07-17": "Second day of Hari Raya Puasa (estimated)", "1950-08-09": "National Day", - "1950-09-23": "Hari Raya Haji* (*estimated)", + "1950-09-23": "Hari Raya Haji (estimated)", "1950-11-08": "Deepavali", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", - "1951-02-06": "Chinese New Year* (*estimated)", - "1951-02-07": "Chinese New Year* (*estimated)", + "1951-02-06": "Chinese New Year (estimated)", + "1951-02-07": "Chinese New Year (estimated)", "1951-03-23": "Good Friday", "1951-03-24": "Holy Saturday", "1951-03-26": "Easter Monday", "1951-05-01": "Labour Day", - "1951-05-20": "Vesak Day* (*estimated)", - "1951-07-06": "Hari Raya Puasa* (*estimated)", - "1951-07-07": "Second day of Hari Raya Puasa* (*estimated)", + "1951-05-20": "Vesak Day (estimated)", + "1951-07-06": "Hari Raya Puasa (estimated)", + "1951-07-07": "Second day of Hari Raya Puasa (estimated)", "1951-08-09": "National Day", - "1951-09-12": "Hari Raya Haji* (*estimated)", + "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-28": "Deepavali", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", - "1952-01-27": "Chinese New Year* (*estimated)", - "1952-01-28": "Chinese New Year* (*estimated)", + "1952-01-27": "Chinese New Year (estimated)", + "1952-01-28": "Chinese New Year (estimated)", "1952-04-11": "Good Friday", "1952-04-12": "Holy Saturday", "1952-04-14": "Easter Monday", "1952-05-01": "Labour Day", - "1952-05-08": "Vesak Day* (*estimated)", - "1952-06-23": "Hari Raya Puasa* (*estimated)", - "1952-06-24": "Second day of Hari Raya Puasa* (*estimated)", + "1952-05-08": "Vesak Day (estimated)", + "1952-06-23": "Hari Raya Puasa (estimated)", + "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-09": "National Day", - "1952-08-31": "Hari Raya Haji* (*estimated)", + "1952-08-31": "Hari Raya Haji (estimated)", "1952-11-15": "Deepavali", "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1953-01-01": "New Year's Day", - "1953-02-14": "Chinese New Year* (*estimated)", - "1953-02-15": "Chinese New Year* (*estimated)", + "1953-02-14": "Chinese New Year (estimated)", + "1953-02-15": "Chinese New Year (estimated)", "1953-04-03": "Good Friday", "1953-04-04": "Holy Saturday", "1953-04-06": "Easter Monday", "1953-05-01": "Labour Day", - "1953-05-27": "Vesak Day* (*estimated)", - "1953-06-13": "Hari Raya Puasa* (*estimated)", - "1953-06-14": "Second day of Hari Raya Puasa* (*estimated)", + "1953-05-27": "Vesak Day (estimated)", + "1953-06-13": "Hari Raya Puasa (estimated)", + "1953-06-14": "Second day of Hari Raya Puasa (estimated)", "1953-08-09": "National Day", - "1953-08-20": "Hari Raya Haji* (*estimated)", + "1953-08-20": "Hari Raya Haji (estimated)", "1953-11-05": "Deepavali", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", "1954-01-01": "New Year's Day", - "1954-02-03": "Chinese New Year* (*estimated)", - "1954-02-04": "Chinese New Year* (*estimated)", + "1954-02-03": "Chinese New Year (estimated)", + "1954-02-04": "Chinese New Year (estimated)", "1954-04-16": "Good Friday", "1954-04-17": "Holy Saturday", "1954-04-19": "Easter Monday", "1954-05-01": "Labour Day", - "1954-05-17": "Vesak Day* (*estimated)", - "1954-06-02": "Hari Raya Puasa* (*estimated)", - "1954-06-03": "Second day of Hari Raya Puasa* (*estimated)", - "1954-08-09": "Hari Raya Haji* (*estimated); National Day", + "1954-05-17": "Vesak Day (estimated)", + "1954-06-02": "Hari Raya Puasa (estimated)", + "1954-06-03": "Second day of Hari Raya Puasa (estimated)", + "1954-08-09": "Hari Raya Haji (estimated); National Day", "1954-10-25": "Deepavali", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", "1955-01-01": "New Year's Day", - "1955-01-24": "Chinese New Year* (*estimated)", - "1955-01-25": "Chinese New Year* (*estimated)", + "1955-01-24": "Chinese New Year (estimated)", + "1955-01-25": "Chinese New Year (estimated)", "1955-04-08": "Good Friday", "1955-04-09": "Holy Saturday", "1955-04-11": "Easter Monday", "1955-05-01": "Labour Day", - "1955-05-23": "Hari Raya Puasa* (*estimated)", - "1955-05-24": "Second day of Hari Raya Puasa* (*estimated)", - "1955-06-05": "Vesak Day* (*estimated)", - "1955-07-30": "Hari Raya Haji* (*estimated)", + "1955-05-23": "Hari Raya Puasa (estimated)", + "1955-05-24": "Second day of Hari Raya Puasa (estimated)", + "1955-06-05": "Vesak Day (estimated)", + "1955-07-30": "Hari Raya Haji (estimated)", "1955-08-09": "National Day", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", "1956-01-01": "New Year's Day", - "1956-02-12": "Chinese New Year* (*estimated)", - "1956-02-13": "Chinese New Year* (*estimated)", + "1956-02-12": "Chinese New Year (estimated)", + "1956-02-13": "Chinese New Year (estimated)", "1956-03-30": "Good Friday", "1956-03-31": "Holy Saturday", "1956-04-02": "Easter Monday", "1956-05-01": "Labour Day", - "1956-05-11": "Hari Raya Puasa* (*estimated)", - "1956-05-12": "Second day of Hari Raya Puasa* (*estimated)", - "1956-05-24": "Vesak Day* (*estimated)", - "1956-07-19": "Hari Raya Haji* (*estimated)", + "1956-05-11": "Hari Raya Puasa (estimated)", + "1956-05-12": "Second day of Hari Raya Puasa (estimated)", + "1956-05-24": "Vesak Day (estimated)", + "1956-07-19": "Hari Raya Haji (estimated)", "1956-08-09": "National Day", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", - "1957-01-31": "Chinese New Year* (*estimated)", - "1957-02-01": "Chinese New Year* (*estimated)", + "1957-01-31": "Chinese New Year (estimated)", + "1957-02-01": "Chinese New Year (estimated)", "1957-04-19": "Good Friday", "1957-04-20": "Holy Saturday", "1957-04-22": "Easter Monday", - "1957-05-01": "Hari Raya Puasa* (*estimated); Labour Day", - "1957-05-02": "Second day of Hari Raya Puasa* (*estimated)", - "1957-05-14": "Vesak Day* (*estimated)", - "1957-07-08": "Hari Raya Haji* (*estimated)", + "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", + "1957-05-02": "Second day of Hari Raya Puasa (estimated)", + "1957-05-14": "Vesak Day (estimated)", + "1957-07-08": "Hari Raya Haji (estimated)", "1957-08-09": "National Day", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1957-12-26": "Boxing Day", "1958-01-01": "New Year's Day", - "1958-02-18": "Chinese New Year* (*estimated)", - "1958-02-19": "Chinese New Year* (*estimated)", + "1958-02-18": "Chinese New Year (estimated)", + "1958-02-19": "Chinese New Year (estimated)", "1958-04-04": "Good Friday", "1958-04-05": "Holy Saturday", "1958-04-07": "Easter Monday", - "1958-04-20": "Hari Raya Puasa* (*estimated)", - "1958-04-21": "Second day of Hari Raya Puasa* (*estimated)", + "1958-04-20": "Hari Raya Puasa (estimated)", + "1958-04-21": "Second day of Hari Raya Puasa (estimated)", "1958-05-01": "Labour Day", - "1958-06-02": "Vesak Day* (*estimated)", - "1958-06-27": "Hari Raya Haji* (*estimated)", + "1958-06-02": "Vesak Day (estimated)", + "1958-06-27": "Hari Raya Haji (estimated)", "1958-08-09": "National Day", "1958-11-09": "Deepavali", "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1959-01-01": "New Year's Day", - "1959-02-08": "Chinese New Year* (*estimated)", - "1959-02-09": "Chinese New Year* (*estimated)", + "1959-02-08": "Chinese New Year (estimated)", + "1959-02-09": "Chinese New Year (estimated)", "1959-03-27": "Good Friday", "1959-03-28": "Holy Saturday", "1959-03-30": "Easter Monday", - "1959-04-10": "Hari Raya Puasa* (*estimated)", - "1959-04-11": "Second day of Hari Raya Puasa* (*estimated)", + "1959-04-10": "Hari Raya Puasa (estimated)", + "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", - "1959-05-22": "Vesak Day* (*estimated)", - "1959-06-17": "Hari Raya Haji* (*estimated)", + "1959-05-22": "Vesak Day (estimated)", + "1959-06-17": "Hari Raya Haji (estimated)", "1959-08-09": "National Day", "1959-10-30": "Deepavali", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", "1960-01-01": "New Year's Day", - "1960-01-28": "Chinese New Year* (*estimated)", - "1960-01-29": "Chinese New Year* (*estimated)", - "1960-03-28": "Hari Raya Puasa* (*estimated)", - "1960-03-29": "Second day of Hari Raya Puasa* (*estimated)", + "1960-01-28": "Chinese New Year (estimated)", + "1960-01-29": "Chinese New Year (estimated)", + "1960-03-28": "Hari Raya Puasa (estimated)", + "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-04-15": "Good Friday", "1960-04-16": "Holy Saturday", "1960-04-18": "Easter Monday", "1960-05-01": "Labour Day", - "1960-05-10": "Vesak Day* (*estimated)", - "1960-06-04": "Hari Raya Haji* (*estimated)", + "1960-05-10": "Vesak Day (estimated)", + "1960-06-04": "Hari Raya Haji (estimated)", "1960-08-09": "National Day", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", "1961-01-01": "New Year's Day", - "1961-02-15": "Chinese New Year* (*estimated)", - "1961-02-16": "Chinese New Year* (*estimated)", - "1961-03-18": "Hari Raya Puasa* (*estimated)", - "1961-03-19": "Second day of Hari Raya Puasa* (*estimated)", + "1961-02-15": "Chinese New Year (estimated)", + "1961-02-16": "Chinese New Year (estimated)", + "1961-03-18": "Hari Raya Puasa (estimated)", + "1961-03-19": "Second day of Hari Raya Puasa (estimated)", "1961-03-31": "Good Friday", "1961-04-01": "Holy Saturday", "1961-04-03": "Easter Monday", "1961-05-01": "Labour Day", - "1961-05-25": "Hari Raya Haji* (*estimated)", - "1961-05-29": "Vesak Day* (*estimated)", + "1961-05-25": "Hari Raya Haji (estimated)", + "1961-05-29": "Vesak Day (estimated)", "1961-08-09": "National Day", "1961-11-06": "Deepavali", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", - "1962-02-05": "Chinese New Year* (*estimated)", - "1962-02-06": "Chinese New Year* (*estimated)", - "1962-03-07": "Hari Raya Puasa* (*estimated)", - "1962-03-08": "Second day of Hari Raya Puasa* (*estimated)", + "1962-02-05": "Chinese New Year (estimated)", + "1962-02-06": "Chinese New Year (estimated)", + "1962-03-07": "Hari Raya Puasa (estimated)", + "1962-03-08": "Second day of Hari Raya Puasa (estimated)", "1962-04-20": "Good Friday", "1962-04-21": "Holy Saturday", "1962-04-23": "Easter Monday", "1962-05-01": "Labour Day", - "1962-05-14": "Hari Raya Haji* (*estimated)", - "1962-05-18": "Vesak Day* (*estimated)", + "1962-05-14": "Hari Raya Haji (estimated)", + "1962-05-18": "Vesak Day (estimated)", "1962-08-09": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", - "1963-01-25": "Chinese New Year* (*estimated)", - "1963-01-26": "Chinese New Year* (*estimated)", - "1963-02-24": "Hari Raya Puasa* (*estimated)", - "1963-02-25": "Second day of Hari Raya Puasa* (*estimated)", + "1963-01-25": "Chinese New Year (estimated)", + "1963-01-26": "Chinese New Year (estimated)", + "1963-02-24": "Hari Raya Puasa (estimated)", + "1963-02-25": "Second day of Hari Raya Puasa (estimated)", "1963-04-12": "Good Friday", "1963-04-13": "Holy Saturday", "1963-04-15": "Easter Monday", "1963-05-01": "Labour Day", - "1963-05-03": "Hari Raya Haji* (*estimated)", - "1963-05-08": "Vesak Day* (*estimated)", + "1963-05-03": "Hari Raya Haji (estimated)", + "1963-05-08": "Vesak Day (estimated)", "1963-08-09": "National Day", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", - "1964-02-13": "Chinese New Year* (*estimated)", - "1964-02-14": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1964-02-15": "Second day of Hari Raya Puasa* (*estimated)", + "1964-02-13": "Chinese New Year (estimated)", + "1964-02-14": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1964-02-15": "Second day of Hari Raya Puasa (estimated)", "1964-03-27": "Good Friday", "1964-03-28": "Holy Saturday", "1964-03-30": "Easter Monday", - "1964-04-22": "Hari Raya Haji* (*estimated)", + "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-26": "Vesak Day* (*estimated)", + "1964-05-26": "Vesak Day (estimated)", "1964-08-09": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1965-02-03": "Chinese New Year* (*estimated); Second day of Hari Raya Puasa* (*estimated)", - "1965-04-11": "Hari Raya Haji* (*estimated)", + "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1965-02-03": "Chinese New Year (estimated); Second day of Hari Raya Puasa (estimated)", + "1965-04-11": "Hari Raya Haji (estimated)", "1965-04-16": "Good Friday", "1965-04-17": "Holy Saturday", "1965-04-19": "Easter Monday", "1965-05-01": "Labour Day", - "1965-05-15": "Vesak Day* (*estimated)", + "1965-05-15": "Vesak Day (estimated)", "1965-08-09": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", "1966-01-01": "New Year's Day", - "1966-01-21": "Chinese New Year* (*estimated)", - "1966-01-22": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1966-01-23": "Second day of Hari Raya Puasa* (*estimated)", - "1966-04-01": "Hari Raya Haji* (*estimated)", + "1966-01-21": "Chinese New Year (estimated)", + "1966-01-22": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1966-01-23": "Second day of Hari Raya Puasa (estimated)", + "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-08": "Good Friday", "1966-04-09": "Holy Saturday", "1966-04-11": "Easter Monday", "1966-05-01": "Labour Day", - "1966-06-03": "Vesak Day* (*estimated)", + "1966-06-03": "Vesak Day (estimated)", "1966-08-09": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", "1967-01-01": "New Year's Day", - "1967-01-12": "Hari Raya Puasa* (*estimated)", - "1967-01-13": "Second day of Hari Raya Puasa* (*estimated)", - "1967-02-09": "Chinese New Year* (*estimated)", - "1967-02-10": "Chinese New Year* (*estimated)", - "1967-03-21": "Hari Raya Haji* (*estimated)", + "1967-01-12": "Hari Raya Puasa (estimated)", + "1967-01-13": "Second day of Hari Raya Puasa (estimated)", + "1967-02-09": "Chinese New Year (estimated)", + "1967-02-10": "Chinese New Year (estimated)", + "1967-03-21": "Hari Raya Haji (estimated)", "1967-03-24": "Good Friday", "1967-03-25": "Holy Saturday", "1967-03-27": "Easter Monday", "1967-05-01": "Labour Day", - "1967-05-23": "Vesak Day* (*estimated)", + "1967-05-23": "Vesak Day (estimated)", "1967-08-09": "National Day", "1967-10-31": "Deepavali", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", - "1968-01-01": "Hari Raya Puasa* (*estimated); New Year's Day", - "1968-01-02": "Second day of Hari Raya Puasa* (*estimated)", - "1968-01-30": "Chinese New Year* (*estimated)", - "1968-01-31": "Chinese New Year* (*estimated)", - "1968-03-09": "Hari Raya Haji* (*estimated)", + "1968-01-01": "Hari Raya Puasa (estimated); New Year's Day", + "1968-01-02": "Second day of Hari Raya Puasa (estimated)", + "1968-01-30": "Chinese New Year (estimated)", + "1968-01-31": "Chinese New Year (estimated)", + "1968-03-09": "Hari Raya Haji (estimated)", "1968-04-12": "Good Friday", "1968-04-13": "Holy Saturday", "1968-04-15": "Easter Monday", "1968-05-01": "Labour Day", - "1968-05-11": "Vesak Day* (*estimated)", + "1968-05-11": "Vesak Day (estimated)", "1968-08-09": "National Day", "1968-11-18": "Deepavali", - "1968-12-21": "Hari Raya Puasa* (*estimated)", - "1968-12-22": "Second day of Hari Raya Puasa* (*estimated)", + "1968-12-21": "Hari Raya Puasa (estimated)", + "1968-12-22": "Second day of Hari Raya Puasa (estimated)", "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", - "1969-02-17": "Chinese New Year* (*estimated)", - "1969-02-18": "Chinese New Year* (*estimated)", - "1969-02-27": "Hari Raya Haji* (*estimated)", + "1969-02-17": "Chinese New Year (estimated)", + "1969-02-18": "Chinese New Year (estimated)", + "1969-02-27": "Hari Raya Haji (estimated)", "1969-04-04": "Good Friday", "1969-05-01": "Labour Day", - "1969-05-30": "Vesak Day* (*estimated)", + "1969-05-30": "Vesak Day (estimated)", "1969-08-09": "National Day", "1969-11-08": "Deepavali", - "1969-12-10": "Hari Raya Puasa* (*estimated)", + "1969-12-10": "Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-06": "Chinese New Year* (*estimated)", - "1970-02-07": "Chinese New Year* (*estimated)", - "1970-02-16": "Hari Raya Haji* (*estimated)", + "1970-02-06": "Chinese New Year (estimated)", + "1970-02-07": "Chinese New Year (estimated)", + "1970-02-16": "Hari Raya Haji (estimated)", "1970-03-27": "Good Friday", "1970-05-01": "Labour Day", - "1970-05-19": "Vesak Day* (*estimated)", + "1970-05-19": "Vesak Day (estimated)", "1970-08-09": "National Day", "1970-10-28": "Deepavali", - "1970-11-30": "Hari Raya Puasa* (*estimated)", + "1970-11-30": "Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-01-27": "Chinese New Year* (*estimated)", - "1971-01-28": "Chinese New Year* (*estimated)", - "1971-02-06": "Hari Raya Haji* (*estimated)", + "1971-01-27": "Chinese New Year (estimated)", + "1971-01-28": "Chinese New Year (estimated)", + "1971-02-06": "Hari Raya Haji (estimated)", "1971-04-09": "Good Friday", "1971-05-01": "Labour Day", - "1971-05-09": "Vesak Day* (*estimated)", + "1971-05-09": "Vesak Day (estimated)", "1971-08-09": "National Day", "1971-11-16": "Deepavali", - "1971-11-19": "Hari Raya Puasa* (*estimated)", + "1971-11-19": "Hari Raya Puasa (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Hari Raya Haji* (*estimated)", - "1972-02-15": "Chinese New Year* (*estimated)", - "1972-02-16": "Chinese New Year* (*estimated)", + "1972-01-26": "Hari Raya Haji (estimated)", + "1972-02-15": "Chinese New Year (estimated)", + "1972-02-16": "Chinese New Year (estimated)", "1972-03-31": "Good Friday", "1972-05-01": "Labour Day", - "1972-05-27": "Vesak Day* (*estimated)", + "1972-05-27": "Vesak Day (estimated)", "1972-08-09": "National Day", "1972-11-04": "Deepavali", - "1972-11-07": "Hari Raya Puasa* (*estimated)", + "1972-11-07": "Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Hari Raya Haji* (*estimated)", - "1973-02-03": "Chinese New Year* (*estimated)", - "1973-02-04": "Chinese New Year* (*estimated)", + "1973-01-14": "Hari Raya Haji (estimated)", + "1973-02-03": "Chinese New Year (estimated)", + "1973-02-04": "Chinese New Year (estimated)", "1973-04-20": "Good Friday", "1973-05-01": "Labour Day", - "1973-05-17": "Vesak Day* (*estimated)", + "1973-05-17": "Vesak Day (estimated)", "1973-08-09": "National Day", "1973-10-24": "Deepavali", - "1973-10-27": "Hari Raya Puasa* (*estimated)", + "1973-10-27": "Hari Raya Puasa (estimated)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Hari Raya Haji* (*estimated)", - "1974-01-23": "Chinese New Year* (*estimated)", - "1974-01-24": "Chinese New Year* (*estimated)", + "1974-01-03": "Hari Raya Haji (estimated)", + "1974-01-23": "Chinese New Year (estimated)", + "1974-01-24": "Chinese New Year (estimated)", "1974-04-12": "Good Friday", "1974-05-01": "Labour Day", - "1974-05-06": "Vesak Day* (*estimated)", + "1974-05-06": "Vesak Day (estimated)", "1974-08-09": "National Day", - "1974-10-16": "Hari Raya Puasa* (*estimated)", + "1974-10-16": "Hari Raya Puasa (estimated)", "1974-11-12": "Deepavali", - "1974-12-24": "Hari Raya Haji* (*estimated)", + "1974-12-24": "Hari Raya Haji (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", - "1975-02-11": "Chinese New Year* (*estimated)", - "1975-02-12": "Chinese New Year* (*estimated)", + "1975-02-11": "Chinese New Year (estimated)", + "1975-02-12": "Chinese New Year (estimated)", "1975-03-28": "Good Friday", "1975-05-01": "Labour Day", - "1975-05-25": "Vesak Day* (*estimated)", + "1975-05-25": "Vesak Day (estimated)", "1975-08-09": "National Day", - "1975-10-06": "Hari Raya Puasa* (*estimated)", + "1975-10-06": "Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-12-13": "Hari Raya Haji* (*estimated)", + "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", - "1976-01-31": "Chinese New Year* (*estimated)", - "1976-02-01": "Chinese New Year* (*estimated)", + "1976-01-31": "Chinese New Year (estimated)", + "1976-02-01": "Chinese New Year (estimated)", "1976-04-16": "Good Friday", "1976-05-01": "Labour Day", - "1976-05-13": "Vesak Day* (*estimated)", + "1976-05-13": "Vesak Day (estimated)", "1976-08-09": "National Day", - "1976-09-24": "Hari Raya Puasa* (*estimated)", + "1976-09-24": "Hari Raya Puasa (estimated)", "1976-11-19": "Deepavali", - "1976-12-01": "Hari Raya Haji* (*estimated)", + "1976-12-01": "Hari Raya Haji (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-02-18": "Chinese New Year* (*estimated)", - "1977-02-19": "Chinese New Year* (*estimated)", + "1977-02-18": "Chinese New Year (estimated)", + "1977-02-19": "Chinese New Year (estimated)", "1977-04-08": "Good Friday", "1977-05-01": "Labour Day", - "1977-06-01": "Vesak Day* (*estimated)", + "1977-06-01": "Vesak Day (estimated)", "1977-08-09": "National Day", - "1977-09-14": "Hari Raya Puasa* (*estimated)", + "1977-09-14": "Hari Raya Puasa (estimated)", "1977-11-09": "Deepavali", - "1977-11-21": "Hari Raya Haji* (*estimated)", + "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-25": "Christmas Day", "1978-01-01": "New Year's Day", - "1978-02-07": "Chinese New Year* (*estimated)", - "1978-02-08": "Chinese New Year* (*estimated)", + "1978-02-07": "Chinese New Year (estimated)", + "1978-02-08": "Chinese New Year (estimated)", "1978-03-24": "Good Friday", "1978-05-01": "Labour Day", - "1978-05-21": "Vesak Day* (*estimated)", + "1978-05-21": "Vesak Day (estimated)", "1978-08-09": "National Day", - "1978-09-03": "Hari Raya Puasa* (*estimated)", + "1978-09-03": "Hari Raya Puasa (estimated)", "1978-10-30": "Deepavali", - "1978-11-10": "Hari Raya Haji* (*estimated)", + "1978-11-10": "Hari Raya Haji (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-01-28": "Chinese New Year* (*estimated)", - "1979-01-29": "Chinese New Year* (*estimated)", + "1979-01-28": "Chinese New Year (estimated)", + "1979-01-29": "Chinese New Year (estimated)", "1979-04-13": "Good Friday", "1979-05-01": "Labour Day", - "1979-05-10": "Vesak Day* (*estimated)", + "1979-05-10": "Vesak Day (estimated)", "1979-08-09": "National Day", - "1979-08-23": "Hari Raya Puasa* (*estimated)", - "1979-10-31": "Hari Raya Haji* (*estimated)", + "1979-08-23": "Hari Raya Puasa (estimated)", + "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-02-16": "Chinese New Year* (*estimated)", - "1980-02-17": "Chinese New Year* (*estimated)", + "1980-02-16": "Chinese New Year (estimated)", + "1980-02-17": "Chinese New Year (estimated)", "1980-04-04": "Good Friday", "1980-05-01": "Labour Day", - "1980-05-28": "Vesak Day* (*estimated)", + "1980-05-28": "Vesak Day (estimated)", "1980-08-09": "National Day", - "1980-08-12": "Hari Raya Puasa* (*estimated)", - "1980-10-19": "Hari Raya Haji* (*estimated)", + "1980-08-12": "Hari Raya Puasa (estimated)", + "1980-10-19": "Hari Raya Haji (estimated)", "1980-11-06": "Deepavali", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-02-05": "Chinese New Year* (*estimated)", - "1981-02-06": "Chinese New Year* (*estimated)", + "1981-02-05": "Chinese New Year (estimated)", + "1981-02-06": "Chinese New Year (estimated)", "1981-04-17": "Good Friday", "1981-05-01": "Labour Day", - "1981-05-18": "Vesak Day* (*estimated)", - "1981-08-01": "Hari Raya Puasa* (*estimated)", + "1981-05-18": "Vesak Day (estimated)", + "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-09": "National Day", - "1981-10-08": "Hari Raya Haji* (*estimated)", + "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-25": "Chinese New Year* (*estimated)", - "1982-01-26": "Chinese New Year* (*estimated)", + "1982-01-25": "Chinese New Year (estimated)", + "1982-01-26": "Chinese New Year (estimated)", "1982-04-09": "Good Friday", "1982-05-01": "Labour Day", - "1982-05-08": "Vesak Day* (*estimated)", - "1982-07-21": "Hari Raya Puasa* (*estimated)", + "1982-05-08": "Vesak Day (estimated)", + "1982-07-21": "Hari Raya Puasa (estimated)", "1982-08-09": "National Day", - "1982-09-27": "Hari Raya Haji* (*estimated)", + "1982-09-27": "Hari Raya Haji (estimated)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", "1983-01-01": "New Year's Day", - "1983-02-13": "Chinese New Year* (*estimated)", - "1983-02-14": "Chinese New Year* (*estimated)", + "1983-02-13": "Chinese New Year (estimated)", + "1983-02-14": "Chinese New Year (estimated)", "1983-04-01": "Good Friday", "1983-05-01": "Labour Day", - "1983-05-27": "Vesak Day* (*estimated)", - "1983-07-11": "Hari Raya Puasa* (*estimated)", + "1983-05-27": "Vesak Day (estimated)", + "1983-07-11": "Hari Raya Puasa (estimated)", "1983-08-09": "National Day", - "1983-09-17": "Hari Raya Haji* (*estimated)", + "1983-09-17": "Hari Raya Haji (estimated)", "1983-11-03": "Deepavali", "1983-12-25": "Christmas Day", "1984-01-01": "New Year's Day", - "1984-02-02": "Chinese New Year* (*estimated)", - "1984-02-03": "Chinese New Year* (*estimated)", + "1984-02-02": "Chinese New Year (estimated)", + "1984-02-03": "Chinese New Year (estimated)", "1984-04-20": "Good Friday", "1984-05-01": "Labour Day", - "1984-05-15": "Vesak Day* (*estimated)", - "1984-06-30": "Hari Raya Puasa* (*estimated)", + "1984-05-15": "Vesak Day (estimated)", + "1984-06-30": "Hari Raya Puasa (estimated)", "1984-08-09": "National Day", - "1984-09-05": "Hari Raya Haji* (*estimated)", + "1984-09-05": "Hari Raya Haji (estimated)", "1984-10-22": "Deepavali", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", - "1985-02-20": "Chinese New Year* (*estimated)", - "1985-02-21": "Chinese New Year* (*estimated)", + "1985-02-20": "Chinese New Year (estimated)", + "1985-02-21": "Chinese New Year (estimated)", "1985-04-05": "Good Friday", "1985-05-01": "Labour Day", - "1985-06-03": "Vesak Day* (*estimated)", - "1985-06-19": "Hari Raya Puasa* (*estimated)", + "1985-06-03": "Vesak Day (estimated)", + "1985-06-19": "Hari Raya Puasa (estimated)", "1985-08-09": "National Day", - "1985-08-26": "Hari Raya Haji* (*estimated)", + "1985-08-26": "Hari Raya Haji (estimated)", "1985-11-10": "Deepavali", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", - "1986-02-09": "Chinese New Year* (*estimated)", - "1986-02-10": "Chinese New Year* (*estimated)", + "1986-02-09": "Chinese New Year (estimated)", + "1986-02-10": "Chinese New Year (estimated)", "1986-03-28": "Good Friday", "1986-05-01": "Labour Day", - "1986-05-23": "Vesak Day* (*estimated)", - "1986-06-08": "Hari Raya Puasa* (*estimated)", + "1986-05-23": "Vesak Day (estimated)", + "1986-06-08": "Hari Raya Puasa (estimated)", "1986-08-09": "National Day", - "1986-08-15": "Hari Raya Haji* (*estimated)", + "1986-08-15": "Hari Raya Haji (estimated)", "1986-10-31": "Deepavali", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", - "1987-01-29": "Chinese New Year* (*estimated)", - "1987-01-30": "Chinese New Year* (*estimated)", + "1987-01-29": "Chinese New Year (estimated)", + "1987-01-30": "Chinese New Year (estimated)", "1987-04-17": "Good Friday", "1987-05-01": "Labour Day", - "1987-05-12": "Vesak Day* (*estimated)", - "1987-05-28": "Hari Raya Puasa* (*estimated)", - "1987-08-04": "Hari Raya Haji* (*estimated)", + "1987-05-12": "Vesak Day (estimated)", + "1987-05-28": "Hari Raya Puasa (estimated)", + "1987-08-04": "Hari Raya Haji (estimated)", "1987-08-09": "National Day", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", - "1988-02-17": "Chinese New Year* (*estimated)", - "1988-02-18": "Chinese New Year* (*estimated)", + "1988-02-17": "Chinese New Year (estimated)", + "1988-02-18": "Chinese New Year (estimated)", "1988-04-01": "Good Friday", "1988-05-01": "Labour Day", - "1988-05-16": "Hari Raya Puasa* (*estimated)", - "1988-05-30": "Vesak Day* (*estimated)", - "1988-07-23": "Hari Raya Haji* (*estimated)", + "1988-05-16": "Hari Raya Puasa (estimated)", + "1988-05-30": "Vesak Day (estimated)", + "1988-07-23": "Hari Raya Haji (estimated)", "1988-08-09": "National Day", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1989-01-01": "New Year's Day", - "1989-02-06": "Chinese New Year* (*estimated)", - "1989-02-07": "Chinese New Year* (*estimated)", + "1989-02-06": "Chinese New Year (estimated)", + "1989-02-07": "Chinese New Year (estimated)", "1989-03-24": "Good Friday", "1989-05-01": "Labour Day", - "1989-05-06": "Hari Raya Puasa* (*estimated)", - "1989-05-19": "Vesak Day* (*estimated)", - "1989-07-13": "Hari Raya Haji* (*estimated)", + "1989-05-06": "Hari Raya Puasa (estimated)", + "1989-05-19": "Vesak Day (estimated)", + "1989-07-13": "Hari Raya Haji (estimated)", "1989-08-09": "National Day", "1989-10-27": "Deepavali", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", - "1990-01-27": "Chinese New Year* (*estimated)", - "1990-01-28": "Chinese New Year* (*estimated)", + "1990-01-27": "Chinese New Year (estimated)", + "1990-01-28": "Chinese New Year (estimated)", "1990-04-13": "Good Friday", - "1990-04-26": "Hari Raya Puasa* (*estimated)", + "1990-04-26": "Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", - "1990-05-09": "Vesak Day* (*estimated)", - "1990-07-02": "Hari Raya Haji* (*estimated)", + "1990-05-09": "Vesak Day (estimated)", + "1990-07-02": "Hari Raya Haji (estimated)", "1990-08-09": "National Day", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", - "1991-02-15": "Chinese New Year* (*estimated)", - "1991-02-16": "Chinese New Year* (*estimated)", + "1991-02-15": "Chinese New Year (estimated)", + "1991-02-16": "Chinese New Year (estimated)", "1991-03-29": "Good Friday", - "1991-04-15": "Hari Raya Puasa* (*estimated)", + "1991-04-15": "Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", - "1991-05-28": "Vesak Day* (*estimated)", - "1991-06-22": "Hari Raya Haji* (*estimated)", + "1991-05-28": "Vesak Day (estimated)", + "1991-06-22": "Hari Raya Haji (estimated)", "1991-08-09": "National Day", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", - "1992-02-04": "Chinese New Year* (*estimated)", - "1992-02-05": "Chinese New Year* (*estimated)", - "1992-04-04": "Hari Raya Puasa* (*estimated)", + "1992-02-04": "Chinese New Year (estimated)", + "1992-02-05": "Chinese New Year (estimated)", + "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-17": "Good Friday", "1992-05-01": "Labour Day", - "1992-05-17": "Vesak Day* (*estimated)", - "1992-06-11": "Hari Raya Haji* (*estimated)", + "1992-05-17": "Vesak Day (estimated)", + "1992-06-11": "Hari Raya Haji (estimated)", "1992-08-09": "National Day", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", - "1993-01-23": "Chinese New Year* (*estimated)", - "1993-01-24": "Chinese New Year* (*estimated)", - "1993-03-24": "Hari Raya Puasa* (*estimated)", + "1993-01-23": "Chinese New Year (estimated)", + "1993-01-24": "Chinese New Year (estimated)", + "1993-03-24": "Hari Raya Puasa (estimated)", "1993-04-09": "Good Friday", "1993-05-01": "Labour Day", - "1993-05-31": "Hari Raya Haji* (*estimated)", - "1993-06-04": "Vesak Day* (*estimated)", + "1993-05-31": "Hari Raya Haji (estimated)", + "1993-06-04": "Vesak Day (estimated)", "1993-08-09": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", - "1994-02-10": "Chinese New Year* (*estimated)", - "1994-02-11": "Chinese New Year* (*estimated)", - "1994-03-13": "Hari Raya Puasa* (*estimated)", + "1994-02-10": "Chinese New Year (estimated)", + "1994-02-11": "Chinese New Year (estimated)", + "1994-03-13": "Hari Raya Puasa (estimated)", "1994-04-01": "Good Friday", "1994-05-01": "Labour Day", - "1994-05-20": "Hari Raya Haji* (*estimated)", - "1994-05-25": "Vesak Day* (*estimated)", + "1994-05-20": "Hari Raya Haji (estimated)", + "1994-05-25": "Vesak Day (estimated)", "1994-08-09": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", "1995-01-01": "New Year's Day", - "1995-01-31": "Chinese New Year* (*estimated)", - "1995-02-01": "Chinese New Year* (*estimated)", - "1995-03-02": "Hari Raya Puasa* (*estimated)", + "1995-01-31": "Chinese New Year (estimated)", + "1995-02-01": "Chinese New Year (estimated)", + "1995-03-02": "Hari Raya Puasa (estimated)", "1995-04-14": "Good Friday", "1995-05-01": "Labour Day", - "1995-05-09": "Hari Raya Haji* (*estimated)", - "1995-05-14": "Vesak Day* (*estimated)", + "1995-05-09": "Hari Raya Haji (estimated)", + "1995-05-14": "Vesak Day (estimated)", "1995-08-09": "National Day", "1995-11-20": "Deepavali", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1996-02-20": "Chinese New Year* (*estimated)", + "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1996-02-20": "Chinese New Year (estimated)", "1996-04-05": "Good Friday", - "1996-04-27": "Hari Raya Haji* (*estimated)", + "1996-04-27": "Hari Raya Haji (estimated)", "1996-05-01": "Labour Day", - "1996-05-31": "Vesak Day* (*estimated)", + "1996-05-31": "Vesak Day (estimated)", "1996-08-09": "National Day", "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-02-07": "Chinese New Year* (*estimated)", - "1997-02-08": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", + "1997-02-07": "Chinese New Year (estimated)", + "1997-02-08": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1997-03-28": "Good Friday", - "1997-04-17": "Hari Raya Haji* (*estimated)", + "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", - "1997-05-21": "Vesak Day* (*estimated)", + "1997-05-21": "Vesak Day (estimated)", "1997-08-09": "National Day", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-28": "Chinese New Year* (*estimated)", - "1998-01-29": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "1998-04-07": "Hari Raya Haji* (*estimated)", + "1998-01-28": "Chinese New Year (estimated)", + "1998-01-29": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "1998-04-07": "Hari Raya Haji (estimated)", "1998-04-10": "Good Friday", "1998-05-01": "Labour Day", - "1998-05-10": "Vesak Day* (*estimated)", - "1998-05-11": "Vesak Day* (*estimated) (Observed)", + "1998-05-10": "Vesak Day (estimated)", + "1998-05-11": "Vesak Day (estimated) (Observed)", "1998-08-09": "National Day", "1998-08-10": "National Day (Observed)", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Hari Raya Puasa* (*estimated)", - "1999-02-16": "Chinese New Year* (*estimated)", - "1999-02-17": "Chinese New Year* (*estimated)", - "1999-03-27": "Hari Raya Haji* (*estimated)", + "1999-01-18": "Hari Raya Puasa (estimated)", + "1999-02-16": "Chinese New Year (estimated)", + "1999-02-17": "Chinese New Year (estimated)", + "1999-03-27": "Hari Raya Haji (estimated)", "1999-04-02": "Good Friday", "1999-05-01": "Labour Day", - "1999-05-29": "Vesak Day* (*estimated)", + "1999-05-29": "Vesak Day (estimated)", "1999-08-09": "National Day", "1999-11-06": "Deepavali", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Hari Raya Puasa* (*estimated)", - "2000-02-05": "Chinese New Year* (*estimated)", - "2000-02-06": "Chinese New Year* (*estimated)", - "2000-02-07": "Chinese New Year* (*estimated) (Observed)", - "2000-03-16": "Hari Raya Haji* (*estimated)", + "2000-01-08": "Hari Raya Puasa (estimated)", + "2000-02-05": "Chinese New Year (estimated)", + "2000-02-06": "Chinese New Year (estimated)", + "2000-02-07": "Chinese New Year (estimated) (Observed)", + "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-21": "Good Friday", "2000-05-01": "Labour Day", - "2000-05-18": "Vesak Day* (*estimated)", + "2000-05-18": "Vesak Day (estimated)", "2000-08-09": "National Day", "2000-10-25": "Deepavali", "2000-12-25": "Christmas Day", - "2000-12-27": "Hari Raya Puasa* (*estimated)", + "2000-12-27": "Hari Raya Puasa (estimated)", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year", "2001-01-25": "Chinese New Year", @@ -948,327 +948,327 @@ "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", - "2025-01-29": "Chinese New Year* (*estimated)", - "2025-01-30": "Chinese New Year* (*estimated)", - "2025-03-30": "Hari Raya Puasa* (*estimated)", - "2025-03-31": "Hari Raya Puasa* (*estimated) (Observed)", + "2025-01-29": "Chinese New Year (estimated)", + "2025-01-30": "Chinese New Year (estimated)", + "2025-03-30": "Hari Raya Puasa (estimated)", + "2025-03-31": "Hari Raya Puasa (estimated) (Observed)", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", - "2025-05-11": "Vesak Day* (*estimated)", - "2025-05-12": "Vesak Day* (*estimated) (Observed)", - "2025-06-06": "Hari Raya Haji* (*estimated)", + "2025-05-11": "Vesak Day (estimated)", + "2025-05-12": "Vesak Day (estimated) (Observed)", + "2025-06-06": "Hari Raya Haji (estimated)", "2025-08-09": "National Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", - "2026-02-17": "Chinese New Year* (*estimated)", - "2026-02-18": "Chinese New Year* (*estimated)", - "2026-03-20": "Hari Raya Puasa* (*estimated)", + "2026-02-17": "Chinese New Year (estimated)", + "2026-02-18": "Chinese New Year (estimated)", + "2026-03-20": "Hari Raya Puasa (estimated)", "2026-04-03": "Good Friday", "2026-05-01": "Labour Day", - "2026-05-27": "Hari Raya Haji* (*estimated)", - "2026-05-31": "Vesak Day* (*estimated)", - "2026-06-01": "Vesak Day* (*estimated) (Observed)", + "2026-05-27": "Hari Raya Haji (estimated)", + "2026-05-31": "Vesak Day (estimated)", + "2026-06-01": "Vesak Day (estimated) (Observed)", "2026-08-09": "National Day", "2026-08-10": "National Day (Observed)", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", - "2027-02-06": "Chinese New Year* (*estimated)", - "2027-02-07": "Chinese New Year* (*estimated)", - "2027-02-08": "Chinese New Year* (*estimated) (Observed)", - "2027-03-09": "Hari Raya Puasa* (*estimated)", + "2027-02-06": "Chinese New Year (estimated)", + "2027-02-07": "Chinese New Year (estimated)", + "2027-02-08": "Chinese New Year (estimated) (Observed)", + "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-26": "Good Friday", "2027-05-01": "Labour Day", - "2027-05-16": "Hari Raya Haji* (*estimated)", - "2027-05-17": "Hari Raya Haji* (*estimated) (Observed)", - "2027-05-20": "Vesak Day* (*estimated)", + "2027-05-16": "Hari Raya Haji (estimated)", + "2027-05-17": "Hari Raya Haji (estimated) (Observed)", + "2027-05-20": "Vesak Day (estimated)", "2027-08-09": "National Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", - "2028-01-26": "Chinese New Year* (*estimated)", - "2028-01-27": "Chinese New Year* (*estimated)", - "2028-02-26": "Hari Raya Puasa* (*estimated)", + "2028-01-26": "Chinese New Year (estimated)", + "2028-01-27": "Chinese New Year (estimated)", + "2028-02-26": "Hari Raya Puasa (estimated)", "2028-04-14": "Good Friday", "2028-05-01": "Labour Day", - "2028-05-05": "Hari Raya Haji* (*estimated)", - "2028-05-09": "Vesak Day* (*estimated)", + "2028-05-05": "Hari Raya Haji (estimated)", + "2028-05-09": "Vesak Day (estimated)", "2028-08-09": "National Day", "2028-11-14": "Deepavali", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-13": "Chinese New Year* (*estimated)", - "2029-02-14": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", + "2029-02-13": "Chinese New Year (estimated)", + "2029-02-14": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "2029-03-30": "Good Friday", - "2029-04-24": "Hari Raya Haji* (*estimated)", + "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", - "2029-05-27": "Vesak Day* (*estimated)", - "2029-05-28": "Vesak Day* (*estimated) (Observed)", + "2029-05-27": "Vesak Day (estimated)", + "2029-05-28": "Vesak Day (estimated) (Observed)", "2029-08-09": "National Day", "2029-11-04": "Deepavali", "2029-11-05": "Deepavali (Observed)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-02-03": "Chinese New Year* (*estimated)", - "2030-02-04": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "2030-02-05": "Chinese New Year* (*estimated) (Observed)", - "2030-04-13": "Hari Raya Haji* (*estimated)", + "2030-02-03": "Chinese New Year (estimated)", + "2030-02-04": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "2030-02-05": "Chinese New Year (estimated) (Observed)", + "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-19": "Good Friday", "2030-05-01": "Labour Day", - "2030-05-16": "Vesak Day* (*estimated)", + "2030-05-16": "Vesak Day (estimated)", "2030-08-09": "National Day", "2030-10-25": "Deepavali", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-23": "Chinese New Year* (*estimated)", - "2031-01-24": "Chinese New Year* (*estimated); Hari Raya Puasa* (*estimated)", - "2031-04-02": "Hari Raya Haji* (*estimated)", + "2031-01-23": "Chinese New Year (estimated)", + "2031-01-24": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", + "2031-04-02": "Hari Raya Haji (estimated)", "2031-04-11": "Good Friday", "2031-05-01": "Labour Day", - "2031-06-04": "Vesak Day* (*estimated)", + "2031-06-04": "Vesak Day (estimated)", "2031-08-09": "National Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Hari Raya Puasa* (*estimated)", - "2032-02-11": "Chinese New Year* (*estimated)", - "2032-02-12": "Chinese New Year* (*estimated)", - "2032-03-22": "Hari Raya Haji* (*estimated)", + "2032-01-14": "Hari Raya Puasa (estimated)", + "2032-02-11": "Chinese New Year (estimated)", + "2032-02-12": "Chinese New Year (estimated)", + "2032-03-22": "Hari Raya Haji (estimated)", "2032-03-26": "Good Friday", "2032-05-01": "Labour Day", - "2032-05-23": "Vesak Day* (*estimated)", - "2032-05-24": "Vesak Day* (*estimated) (Observed)", + "2032-05-23": "Vesak Day (estimated)", + "2032-05-24": "Vesak Day (estimated) (Observed)", "2032-08-09": "National Day", "2032-11-01": "Deepavali", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Hari Raya Puasa* (*estimated)", - "2033-01-03": "Hari Raya Puasa* (*estimated) (Observed)", - "2033-01-31": "Chinese New Year* (*estimated)", - "2033-02-01": "Chinese New Year* (*estimated)", - "2033-03-11": "Hari Raya Haji* (*estimated)", + "2033-01-02": "Hari Raya Puasa (estimated)", + "2033-01-03": "Hari Raya Puasa (estimated) (Observed)", + "2033-01-31": "Chinese New Year (estimated)", + "2033-02-01": "Chinese New Year (estimated)", + "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day (Observed)", - "2033-05-13": "Vesak Day* (*estimated)", + "2033-05-13": "Vesak Day (estimated)", "2033-08-09": "National Day", "2033-10-21": "Deepavali", - "2033-12-23": "Hari Raya Puasa* (*estimated)", + "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day (Observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day (Observed)", - "2034-02-19": "Chinese New Year* (*estimated)", - "2034-02-20": "Chinese New Year* (*estimated)", - "2034-02-21": "Chinese New Year* (*estimated) (Observed)", - "2034-03-01": "Hari Raya Haji* (*estimated)", + "2034-02-19": "Chinese New Year (estimated)", + "2034-02-20": "Chinese New Year (estimated)", + "2034-02-21": "Chinese New Year (estimated) (Observed)", + "2034-03-01": "Hari Raya Haji (estimated)", "2034-04-07": "Good Friday", "2034-05-01": "Labour Day", - "2034-06-01": "Vesak Day* (*estimated)", + "2034-06-01": "Vesak Day (estimated)", "2034-08-09": "National Day", "2034-11-09": "Deepavali", - "2034-12-12": "Hari Raya Puasa* (*estimated)", + "2034-12-12": "Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-08": "Chinese New Year* (*estimated)", - "2035-02-09": "Chinese New Year* (*estimated)", - "2035-02-18": "Hari Raya Haji* (*estimated)", - "2035-02-19": "Hari Raya Haji* (*estimated) (Observed)", + "2035-02-08": "Chinese New Year (estimated)", + "2035-02-09": "Chinese New Year (estimated)", + "2035-02-18": "Hari Raya Haji (estimated)", + "2035-02-19": "Hari Raya Haji (estimated) (Observed)", "2035-03-23": "Good Friday", "2035-05-01": "Labour Day", - "2035-05-22": "Vesak Day* (*estimated)", + "2035-05-22": "Vesak Day (estimated)", "2035-08-09": "National Day", "2035-10-29": "Deepavali", - "2035-12-01": "Hari Raya Puasa* (*estimated)", + "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-01-28": "Chinese New Year* (*estimated)", - "2036-01-29": "Chinese New Year* (*estimated)", - "2036-02-07": "Hari Raya Haji* (*estimated)", + "2036-01-28": "Chinese New Year (estimated)", + "2036-01-29": "Chinese New Year (estimated)", + "2036-02-07": "Hari Raya Haji (estimated)", "2036-04-11": "Good Friday", "2036-05-01": "Labour Day", - "2036-05-10": "Vesak Day* (*estimated)", + "2036-05-10": "Vesak Day (estimated)", "2036-08-09": "National Day", "2036-11-16": "Deepavali", "2036-11-17": "Deepavali (Observed)", - "2036-11-19": "Hari Raya Puasa* (*estimated)", + "2036-11-19": "Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Hari Raya Haji* (*estimated)", - "2037-02-15": "Chinese New Year* (*estimated)", - "2037-02-16": "Chinese New Year* (*estimated)", - "2037-02-17": "Chinese New Year* (*estimated) (Observed)", + "2037-01-26": "Hari Raya Haji (estimated)", + "2037-02-15": "Chinese New Year (estimated)", + "2037-02-16": "Chinese New Year (estimated)", + "2037-02-17": "Chinese New Year (estimated) (Observed)", "2037-04-03": "Good Friday", "2037-05-01": "Labour Day", - "2037-05-29": "Vesak Day* (*estimated)", + "2037-05-29": "Vesak Day (estimated)", "2037-08-09": "National Day", "2037-08-10": "National Day (Observed)", "2037-11-05": "Deepavali", - "2037-11-08": "Hari Raya Puasa* (*estimated)", - "2037-11-09": "Hari Raya Puasa* (*estimated) (Observed)", + "2037-11-08": "Hari Raya Puasa (estimated)", + "2037-11-09": "Hari Raya Puasa (estimated) (Observed)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Hari Raya Haji* (*estimated)", - "2038-02-04": "Chinese New Year* (*estimated)", - "2038-02-05": "Chinese New Year* (*estimated)", + "2038-01-16": "Hari Raya Haji (estimated)", + "2038-02-04": "Chinese New Year (estimated)", + "2038-02-05": "Chinese New Year (estimated)", "2038-04-23": "Good Friday", "2038-05-01": "Labour Day", - "2038-05-18": "Vesak Day* (*estimated)", + "2038-05-18": "Vesak Day (estimated)", "2038-08-09": "National Day", "2038-10-26": "Deepavali", - "2038-10-29": "Hari Raya Puasa* (*estimated)", + "2038-10-29": "Hari Raya Puasa (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Hari Raya Haji* (*estimated)", - "2039-01-24": "Chinese New Year* (*estimated)", - "2039-01-25": "Chinese New Year* (*estimated)", + "2039-01-05": "Hari Raya Haji (estimated)", + "2039-01-24": "Chinese New Year (estimated)", + "2039-01-25": "Chinese New Year (estimated)", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day (Observed)", - "2039-05-07": "Vesak Day* (*estimated)", + "2039-05-07": "Vesak Day (estimated)", "2039-08-09": "National Day", - "2039-10-19": "Hari Raya Puasa* (*estimated)", + "2039-10-19": "Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", - "2039-12-26": "Hari Raya Haji* (*estimated)", + "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Christmas Day (Observed)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day (Observed)", - "2040-02-12": "Chinese New Year* (*estimated)", - "2040-02-13": "Chinese New Year* (*estimated)", - "2040-02-14": "Chinese New Year* (*estimated) (Observed)", + "2040-02-12": "Chinese New Year (estimated)", + "2040-02-13": "Chinese New Year (estimated)", + "2040-02-14": "Chinese New Year (estimated) (Observed)", "2040-03-30": "Good Friday", "2040-05-01": "Labour Day", - "2040-05-25": "Vesak Day* (*estimated)", + "2040-05-25": "Vesak Day (estimated)", "2040-08-09": "National Day", - "2040-10-07": "Hari Raya Puasa* (*estimated)", - "2040-10-08": "Hari Raya Puasa* (*estimated) (Observed)", + "2040-10-07": "Hari Raya Puasa (estimated)", + "2040-10-08": "Hari Raya Puasa (estimated) (Observed)", "2040-11-03": "Deepavali", - "2040-12-14": "Hari Raya Haji* (*estimated)", + "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", - "2041-02-01": "Chinese New Year* (*estimated)", - "2041-02-02": "Chinese New Year* (*estimated)", + "2041-02-01": "Chinese New Year (estimated)", + "2041-02-02": "Chinese New Year (estimated)", "2041-04-19": "Good Friday", "2041-05-01": "Labour Day", - "2041-05-14": "Vesak Day* (*estimated)", + "2041-05-14": "Vesak Day (estimated)", "2041-08-09": "National Day", - "2041-09-26": "Hari Raya Puasa* (*estimated)", + "2041-09-26": "Hari Raya Puasa (estimated)", "2041-10-23": "Deepavali", - "2041-12-04": "Hari Raya Haji* (*estimated)", + "2041-12-04": "Hari Raya Haji (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", - "2042-01-22": "Chinese New Year* (*estimated)", - "2042-01-23": "Chinese New Year* (*estimated)", + "2042-01-22": "Chinese New Year (estimated)", + "2042-01-23": "Chinese New Year (estimated)", "2042-04-04": "Good Friday", "2042-05-01": "Labour Day", - "2042-06-02": "Vesak Day* (*estimated)", + "2042-06-02": "Vesak Day (estimated)", "2042-08-09": "National Day", - "2042-09-15": "Hari Raya Puasa* (*estimated)", + "2042-09-15": "Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", - "2042-11-23": "Hari Raya Haji* (*estimated)", - "2042-11-24": "Hari Raya Haji* (*estimated) (Observed)", + "2042-11-23": "Hari Raya Haji (estimated)", + "2042-11-24": "Hari Raya Haji (estimated) (Observed)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-10": "Chinese New Year* (*estimated)", - "2043-02-11": "Chinese New Year* (*estimated)", + "2043-02-10": "Chinese New Year (estimated)", + "2043-02-11": "Chinese New Year (estimated)", "2043-03-27": "Good Friday", "2043-05-01": "Labour Day", - "2043-05-23": "Vesak Day* (*estimated)", + "2043-05-23": "Vesak Day (estimated)", "2043-08-09": "National Day", "2043-08-10": "National Day (Observed)", - "2043-09-04": "Hari Raya Puasa* (*estimated)", + "2043-09-04": "Hari Raya Puasa (estimated)", "2043-10-31": "Deepavali", - "2043-11-12": "Hari Raya Haji* (*estimated)", + "2043-11-12": "Hari Raya Haji (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-01-30": "Chinese New Year* (*estimated)", - "2044-01-31": "Chinese New Year* (*estimated)", - "2044-02-01": "Chinese New Year* (*estimated) (Observed)", + "2044-01-30": "Chinese New Year (estimated)", + "2044-01-31": "Chinese New Year (estimated)", + "2044-02-01": "Chinese New Year (estimated) (Observed)", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day (Observed)", - "2044-05-12": "Vesak Day* (*estimated)", + "2044-05-12": "Vesak Day (estimated)", "2044-08-09": "National Day", - "2044-08-24": "Hari Raya Puasa* (*estimated)", - "2044-10-31": "Hari Raya Haji* (*estimated)", + "2044-08-24": "Hari Raya Puasa (estimated)", + "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day (Observed)", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day (Observed)", - "2045-02-17": "Chinese New Year* (*estimated)", - "2045-02-18": "Chinese New Year* (*estimated)", + "2045-02-17": "Chinese New Year (estimated)", + "2045-02-18": "Chinese New Year (estimated)", "2045-04-07": "Good Friday", "2045-05-01": "Labour Day", - "2045-05-31": "Vesak Day* (*estimated)", + "2045-05-31": "Vesak Day (estimated)", "2045-08-09": "National Day", - "2045-08-14": "Hari Raya Puasa* (*estimated)", - "2045-10-21": "Hari Raya Haji* (*estimated)", + "2045-08-14": "Hari Raya Puasa (estimated)", + "2045-10-21": "Hari Raya Haji (estimated)", "2045-11-07": "Deepavali", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-02-06": "Chinese New Year* (*estimated)", - "2046-02-07": "Chinese New Year* (*estimated)", + "2046-02-06": "Chinese New Year (estimated)", + "2046-02-07": "Chinese New Year (estimated)", "2046-03-23": "Good Friday", "2046-05-01": "Labour Day", - "2046-05-20": "Vesak Day* (*estimated)", - "2046-05-21": "Vesak Day* (*estimated) (Observed)", - "2046-08-03": "Hari Raya Puasa* (*estimated)", + "2046-05-20": "Vesak Day (estimated)", + "2046-05-21": "Vesak Day (estimated) (Observed)", + "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-09": "National Day", - "2046-10-10": "Hari Raya Haji* (*estimated)", + "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-26": "Chinese New Year* (*estimated)", - "2047-01-27": "Chinese New Year* (*estimated)", - "2047-01-28": "Chinese New Year* (*estimated) (Observed)", + "2047-01-26": "Chinese New Year (estimated)", + "2047-01-27": "Chinese New Year (estimated)", + "2047-01-28": "Chinese New Year (estimated) (Observed)", "2047-04-12": "Good Friday", "2047-05-01": "Labour Day", - "2047-05-09": "Vesak Day* (*estimated)", - "2047-07-24": "Hari Raya Puasa* (*estimated)", + "2047-05-09": "Vesak Day (estimated)", + "2047-07-24": "Hari Raya Puasa (estimated)", "2047-08-09": "National Day", - "2047-09-30": "Hari Raya Haji* (*estimated)", + "2047-09-30": "Hari Raya Haji (estimated)", "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", - "2048-02-14": "Chinese New Year* (*estimated)", - "2048-02-15": "Chinese New Year* (*estimated)", + "2048-02-14": "Chinese New Year (estimated)", + "2048-02-15": "Chinese New Year (estimated)", "2048-04-03": "Good Friday", "2048-05-01": "Labour Day", - "2048-05-27": "Vesak Day* (*estimated)", - "2048-07-12": "Hari Raya Puasa* (*estimated)", - "2048-07-13": "Hari Raya Puasa* (*estimated) (Observed)", + "2048-05-27": "Vesak Day (estimated)", + "2048-07-12": "Hari Raya Puasa (estimated)", + "2048-07-13": "Hari Raya Puasa (estimated) (Observed)", "2048-08-09": "National Day", "2048-08-10": "National Day (Observed)", - "2048-09-19": "Hari Raya Haji* (*estimated)", + "2048-09-19": "Hari Raya Haji (estimated)", "2048-11-04": "Deepavali", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", - "2049-02-02": "Chinese New Year* (*estimated)", - "2049-02-03": "Chinese New Year* (*estimated)", + "2049-02-02": "Chinese New Year (estimated)", + "2049-02-03": "Chinese New Year (estimated)", "2049-04-16": "Good Friday", "2049-05-01": "Labour Day", - "2049-05-16": "Vesak Day* (*estimated)", - "2049-05-17": "Vesak Day* (*estimated) (Observed)", - "2049-07-01": "Hari Raya Puasa* (*estimated)", + "2049-05-16": "Vesak Day (estimated)", + "2049-05-17": "Vesak Day (estimated) (Observed)", + "2049-07-01": "Hari Raya Puasa (estimated)", "2049-08-09": "National Day", - "2049-09-08": "Hari Raya Haji* (*estimated)", + "2049-09-08": "Hari Raya Haji (estimated)", "2049-10-25": "Deepavali", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", - "2050-01-23": "Chinese New Year* (*estimated)", - "2050-01-24": "Chinese New Year* (*estimated)", - "2050-01-25": "Chinese New Year* (*estimated) (Observed)", + "2050-01-23": "Chinese New Year (estimated)", + "2050-01-24": "Chinese New Year (estimated)", + "2050-01-25": "Chinese New Year (estimated) (Observed)", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day (Observed)", - "2050-06-04": "Vesak Day* (*estimated)", - "2050-06-20": "Hari Raya Puasa* (*estimated)", + "2050-06-04": "Vesak Day (estimated)", + "2050-06-20": "Hari Raya Puasa (estimated)", "2050-08-09": "National Day", - "2050-08-28": "Hari Raya Haji* (*estimated)", - "2050-08-29": "Hari Raya Haji* (*estimated) (Observed)", + "2050-08-28": "Hari Raya Haji (estimated)", + "2050-08-29": "Hari Raya Haji (estimated) (Observed)", "2050-11-12": "Deepavali", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day (Observed)" diff --git a/snapshots/countries/TD_COMMON.json b/snapshots/countries/TD_COMMON.json index b3d2fbaa7..02f71a1f9 100644 --- a/snapshots/countries/TD_COMMON.json +++ b/snapshots/countries/TD_COMMON.json @@ -2,307 +2,307 @@ "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day (Observed)", "1961-03-08": "International Women's Day", - "1961-03-18": "Eid al-Fitr* (*estimated)", + "1961-03-18": "Eid al-Fitr (estimated)", "1961-04-03": "Easter Monday", "1961-05-01": "Labour Day", - "1961-05-25": "Eid al-Adha* (*estimated)", + "1961-05-25": "Eid al-Adha (estimated)", "1961-08-11": "Independence Day", - "1961-08-23": "Mawlid* (*estimated)", + "1961-08-23": "Mawlid (estimated)", "1961-11-01": "All Saints' Day", "1961-11-28": "Republic Day", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", "1962-03-08": "International Women's Day", "1962-04-23": "Easter Monday", "1962-05-01": "Labour Day", - "1962-05-14": "Eid al-Adha* (*estimated)", + "1962-05-14": "Eid al-Adha (estimated)", "1962-08-11": "Independence Day", - "1962-08-12": "Mawlid* (*estimated)", + "1962-08-12": "Mawlid (estimated)", "1962-11-01": "All Saints' Day", "1962-11-28": "Republic Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", "1963-03-08": "International Women's Day", "1963-04-15": "Easter Monday", "1963-05-01": "Labour Day", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-08-02": "Mawlid* (*estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-08-02": "Mawlid (estimated)", "1963-08-11": "Independence Day", "1963-08-12": "Independence Day (Observed)", "1963-11-01": "All Saints' Day", "1963-11-28": "Republic Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-08": "International Women's Day", "1964-03-09": "International Women's Day (Observed)", "1964-03-30": "Easter Monday", - "1964-04-22": "Eid al-Adha* (*estimated)", + "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", - "1964-07-21": "Mawlid* (*estimated)", + "1964-07-21": "Mawlid (estimated)", "1964-08-11": "Independence Day", "1964-11-01": "All Saints' Day", "1964-11-28": "Republic Day", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", "1965-03-08": "International Women's Day", - "1965-04-11": "Eid al-Adha* (*estimated)", + "1965-04-11": "Eid al-Adha (estimated)", "1965-04-19": "Easter Monday", "1965-05-01": "Labour Day", - "1965-07-10": "Mawlid* (*estimated)", + "1965-07-10": "Mawlid (estimated)", "1965-08-11": "Independence Day", "1965-11-01": "All Saints' Day", "1965-11-28": "Republic Day", "1965-11-29": "Republic Day (Observed)", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", "1966-03-08": "International Women's Day", - "1966-04-01": "Eid al-Adha* (*estimated)", + "1966-04-01": "Eid al-Adha (estimated)", "1966-04-11": "Easter Monday", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day (Observed)", - "1966-07-01": "Mawlid* (*estimated)", + "1966-07-01": "Mawlid (estimated)", "1966-08-11": "Independence Day", "1966-11-01": "All Saints' Day", "1966-11-28": "Republic Day", "1966-12-25": "Christmas Day", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day (Observed)", - "1967-01-12": "Eid al-Fitr* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", "1967-03-08": "International Women's Day", - "1967-03-21": "Eid al-Adha* (*estimated)", + "1967-03-21": "Eid al-Adha (estimated)", "1967-03-27": "Easter Monday", "1967-05-01": "Labour Day", - "1967-06-19": "Mawlid* (*estimated)", + "1967-06-19": "Mawlid (estimated)", "1967-08-11": "Independence Day", "1967-11-01": "All Saints' Day", "1967-11-28": "Republic Day", "1967-12-25": "Christmas Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-03-08": "International Women's Day", - "1968-03-09": "Eid al-Adha* (*estimated)", + "1968-03-09": "Eid al-Adha (estimated)", "1968-04-15": "Easter Monday", "1968-05-01": "Labour Day", - "1968-06-08": "Mawlid* (*estimated)", + "1968-06-08": "Mawlid (estimated)", "1968-08-11": "Independence Day", "1968-08-12": "Independence Day (Observed)", "1968-11-01": "All Saints' Day", "1968-11-28": "Republic Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", - "1969-02-27": "Eid al-Adha* (*estimated)", + "1969-02-27": "Eid al-Adha (estimated)", "1969-03-08": "International Women's Day", "1969-04-07": "Easter Monday", "1969-05-01": "Labour Day", - "1969-05-28": "Mawlid* (*estimated)", + "1969-05-28": "Mawlid (estimated)", "1969-08-11": "Independence Day", "1969-11-01": "All Saints' Day", "1969-11-28": "Republic Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-16": "Eid al-Adha* (*estimated)", + "1970-02-16": "Eid al-Adha (estimated)", "1970-03-08": "International Women's Day", "1970-03-09": "International Women's Day (Observed)", "1970-03-30": "Easter Monday", "1970-05-01": "Labour Day", - "1970-05-18": "Mawlid* (*estimated)", + "1970-05-18": "Mawlid (estimated)", "1970-08-11": "Independence Day", "1970-11-01": "All Saints' Day", "1970-11-28": "Republic Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", - "1971-02-06": "Eid al-Adha* (*estimated)", + "1971-02-06": "Eid al-Adha (estimated)", "1971-03-08": "International Women's Day", "1971-04-12": "Easter Monday", "1971-05-01": "Labour Day", - "1971-05-07": "Mawlid* (*estimated)", + "1971-05-07": "Mawlid (estimated)", "1971-08-11": "Independence Day", "1971-11-01": "All Saints' Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", "1971-11-28": "Republic Day", "1971-11-29": "Republic Day (Observed)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", - "1972-01-26": "Eid al-Adha* (*estimated)", + "1972-01-26": "Eid al-Adha (estimated)", "1972-03-08": "International Women's Day", "1972-04-03": "Easter Monday", - "1972-04-25": "Mawlid* (*estimated)", + "1972-04-25": "Mawlid (estimated)", "1972-05-01": "Labour Day", "1972-08-11": "Independence Day", "1972-11-01": "All Saints' Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", "1972-11-28": "Republic Day", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", - "1973-01-14": "Eid al-Adha* (*estimated)", + "1973-01-14": "Eid al-Adha (estimated)", "1973-03-08": "International Women's Day", - "1973-04-15": "Mawlid* (*estimated)", + "1973-04-15": "Mawlid (estimated)", "1973-04-23": "Easter Monday", "1973-05-01": "Labour Day", "1973-08-11": "Independence Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", "1973-11-01": "All Saints' Day", "1973-11-28": "Republic Day", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", - "1974-01-03": "Eid al-Adha* (*estimated)", + "1974-01-03": "Eid al-Adha (estimated)", "1974-03-08": "International Women's Day", - "1974-04-04": "Mawlid* (*estimated)", + "1974-04-04": "Mawlid (estimated)", "1974-04-15": "Easter Monday", "1974-05-01": "Labour Day", "1974-08-11": "Independence Day", "1974-08-12": "Independence Day (Observed)", - "1974-10-16": "Eid al-Fitr* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", "1974-11-01": "All Saints' Day", "1974-11-28": "Republic Day", - "1974-12-24": "Eid al-Adha* (*estimated)", + "1974-12-24": "Eid al-Adha (estimated)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-03-08": "International Women's Day", - "1975-03-24": "Mawlid* (*estimated)", + "1975-03-24": "Mawlid (estimated)", "1975-03-31": "Easter Monday", "1975-05-01": "Labour Day", "1975-08-11": "Independence Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", "1975-11-01": "All Saints' Day", "1975-11-28": "Republic Day", - "1975-12-13": "Eid al-Adha* (*estimated)", + "1975-12-13": "Eid al-Adha (estimated)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-03-08": "International Women's Day", - "1976-03-12": "Mawlid* (*estimated)", + "1976-03-12": "Mawlid (estimated)", "1976-04-19": "Easter Monday", "1976-05-01": "Labour Day", "1976-08-11": "Independence Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", "1976-11-01": "All Saints' Day", "1976-11-28": "Republic Day", "1976-11-29": "Republic Day (Observed)", - "1976-12-01": "Eid al-Adha* (*estimated)", + "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", - "1977-03-02": "Mawlid* (*estimated)", + "1977-03-02": "Mawlid (estimated)", "1977-03-08": "International Women's Day", "1977-04-11": "Easter Monday", "1977-05-01": "Labour Day", "1977-05-02": "Labour Day (Observed)", "1977-08-11": "Independence Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", "1977-11-01": "All Saints' Day", - "1977-11-21": "Eid al-Adha* (*estimated)", + "1977-11-21": "Eid al-Adha (estimated)", "1977-11-28": "Republic Day", "1977-12-25": "Christmas Day", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day (Observed)", - "1978-02-19": "Mawlid* (*estimated)", + "1978-02-19": "Mawlid (estimated)", "1978-03-08": "International Women's Day", "1978-03-27": "Easter Monday", "1978-05-01": "Labour Day", "1978-08-11": "Independence Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", "1978-11-01": "All Saints' Day", - "1978-11-10": "Eid al-Adha* (*estimated)", + "1978-11-10": "Eid al-Adha (estimated)", "1978-11-28": "Republic Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", - "1979-02-09": "Mawlid* (*estimated)", + "1979-02-09": "Mawlid (estimated)", "1979-03-08": "International Women's Day", "1979-04-16": "Easter Monday", "1979-05-01": "Labour Day", "1979-08-11": "Independence Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", "1979-11-01": "All Saints' Day", "1979-11-28": "Republic Day", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", - "1980-01-30": "Mawlid* (*estimated)", + "1980-01-30": "Mawlid (estimated)", "1980-03-08": "International Women's Day", "1980-04-07": "Easter Monday", "1980-05-01": "Labour Day", "1980-08-11": "Independence Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", "1980-11-01": "All Saints' Day", "1980-11-28": "Republic Day", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", - "1981-01-18": "Mawlid* (*estimated)", + "1981-01-18": "Mawlid (estimated)", "1981-03-08": "International Women's Day", "1981-03-09": "International Women's Day (Observed)", "1981-04-20": "Easter Monday", "1981-05-01": "Labour Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", "1981-08-11": "Independence Day", - "1981-10-08": "Eid al-Adha* (*estimated)", + "1981-10-08": "Eid al-Adha (estimated)", "1981-11-01": "All Saints' Day", "1981-11-28": "Republic Day", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", - "1982-01-07": "Mawlid* (*estimated)", + "1982-01-07": "Mawlid (estimated)", "1982-03-08": "International Women's Day", "1982-04-12": "Easter Monday", "1982-05-01": "Labour Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", "1982-08-11": "Independence Day", - "1982-09-27": "Eid al-Adha* (*estimated)", + "1982-09-27": "Eid al-Adha (estimated)", "1982-11-01": "All Saints' Day", "1982-11-28": "Republic Day", "1982-11-29": "Republic Day (Observed)", "1982-12-25": "Christmas Day", - "1982-12-27": "Mawlid* (*estimated)", + "1982-12-27": "Mawlid (estimated)", "1983-01-01": "New Year's Day", "1983-03-08": "International Women's Day", "1983-04-04": "Easter Monday", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day (Observed)", - "1983-07-11": "Eid al-Fitr* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", "1983-08-11": "Independence Day", - "1983-09-17": "Eid al-Adha* (*estimated)", + "1983-09-17": "Eid al-Adha (estimated)", "1983-11-01": "All Saints' Day", "1983-11-28": "Republic Day", - "1983-12-16": "Mawlid* (*estimated)", + "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day (Observed)", "1984-03-08": "International Women's Day", "1984-04-23": "Easter Monday", "1984-05-01": "Labour Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", "1984-08-11": "Independence Day", - "1984-09-05": "Eid al-Adha* (*estimated)", + "1984-09-05": "Eid al-Adha (estimated)", "1984-11-01": "All Saints' Day", "1984-11-28": "Republic Day", - "1984-12-04": "Mawlid* (*estimated)", + "1984-12-04": "Mawlid (estimated)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-03-08": "International Women's Day", "1985-04-08": "Easter Monday", "1985-05-01": "Labour Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", "1985-08-11": "Independence Day", "1985-08-12": "Independence Day (Observed)", - "1985-08-26": "Eid al-Adha* (*estimated)", + "1985-08-26": "Eid al-Adha (estimated)", "1985-11-01": "All Saints' Day", - "1985-11-24": "Mawlid* (*estimated)", + "1985-11-24": "Mawlid (estimated)", "1985-11-28": "Republic Day", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-03-08": "International Women's Day", "1986-03-31": "Easter Monday", "1986-05-01": "Labour Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", "1986-08-11": "Independence Day", - "1986-08-15": "Eid al-Adha* (*estimated)", + "1986-08-15": "Eid al-Adha (estimated)", "1986-11-01": "All Saints' Day", - "1986-11-14": "Mawlid* (*estimated)", + "1986-11-14": "Mawlid (estimated)", "1986-11-28": "Republic Day", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", @@ -310,11 +310,11 @@ "1987-03-09": "International Women's Day (Observed)", "1987-04-20": "Easter Monday", "1987-05-01": "Labour Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", "1987-08-11": "Independence Day", "1987-11-01": "All Saints' Day", - "1987-11-03": "Mawlid* (*estimated)", + "1987-11-03": "Mawlid (estimated)", "1987-11-28": "Republic Day", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", @@ -322,10 +322,10 @@ "1988-04-04": "Easter Monday", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day (Observed)", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", "1988-08-11": "Independence Day", - "1988-10-22": "Mawlid* (*estimated)", + "1988-10-22": "Mawlid (estimated)", "1988-11-01": "All Saints' Day", "1988-11-28": "Republic Day", "1988-12-25": "Christmas Day", @@ -334,33 +334,33 @@ "1989-03-08": "International Women's Day", "1989-03-27": "Easter Monday", "1989-05-01": "Labour Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", "1989-08-11": "Independence Day", - "1989-10-11": "Mawlid* (*estimated)", + "1989-10-11": "Mawlid (estimated)", "1989-11-01": "All Saints' Day", "1989-11-28": "Republic Day", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-03-08": "International Women's Day", "1990-04-16": "Easter Monday", - "1990-04-26": "Eid al-Fitr* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "Labour Day", - "1990-07-02": "Eid al-Adha* (*estimated)", + "1990-07-02": "Eid al-Adha (estimated)", "1990-08-11": "Independence Day", - "1990-10-01": "Mawlid* (*estimated)", + "1990-10-01": "Mawlid (estimated)", "1990-11-01": "All Saints' Day", "1990-11-28": "Republic Day", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-03-08": "International Women's Day", "1991-04-01": "Easter Monday", - "1991-04-15": "Eid al-Fitr* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "Labour Day", - "1991-06-22": "Eid al-Adha* (*estimated)", + "1991-06-22": "Eid al-Adha (estimated)", "1991-08-11": "Independence Day", "1991-08-12": "Independence Day (Observed)", - "1991-09-20": "Mawlid* (*estimated)", + "1991-09-20": "Mawlid (estimated)", "1991-11-01": "All Saints' Day", "1991-11-28": "Republic Day", "1991-12-01": "Freedom and Democracy Day", @@ -369,24 +369,24 @@ "1992-01-01": "New Year's Day", "1992-03-08": "International Women's Day", "1992-03-09": "International Women's Day (Observed)", - "1992-04-04": "Eid al-Fitr* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-20": "Easter Monday", "1992-05-01": "Labour Day", - "1992-06-11": "Eid al-Adha* (*estimated)", + "1992-06-11": "Eid al-Adha (estimated)", "1992-08-11": "Independence Day", - "1992-09-09": "Mawlid* (*estimated)", + "1992-09-09": "Mawlid (estimated)", "1992-11-01": "All Saints' Day", "1992-11-28": "Republic Day", "1992-12-01": "Freedom and Democracy Day", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-03-08": "International Women's Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-12": "Easter Monday", "1993-05-01": "Labour Day", - "1993-05-31": "Eid al-Adha* (*estimated)", + "1993-05-31": "Eid al-Adha (estimated)", "1993-08-11": "Independence Day", - "1993-08-29": "Mawlid* (*estimated)", + "1993-08-29": "Mawlid (estimated)", "1993-11-01": "All Saints' Day", "1993-11-28": "Republic Day", "1993-11-29": "Republic Day (Observed)", @@ -394,37 +394,37 @@ "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-03-08": "International Women's Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-04": "Easter Monday", "1994-05-01": "Labour Day", "1994-05-02": "Labour Day (Observed)", - "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", "1994-08-11": "Independence Day", - "1994-08-19": "Mawlid* (*estimated)", + "1994-08-19": "Mawlid (estimated)", "1994-11-01": "All Saints' Day", "1994-11-28": "Republic Day", "1994-12-01": "Freedom and Democracy Day", "1994-12-25": "Christmas Day", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day (Observed)", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-08": "International Women's Day", "1995-04-17": "Easter Monday", "1995-05-01": "Labour Day", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-08-08": "Mawlid* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-08-08": "Mawlid (estimated)", "1995-08-11": "Independence Day", "1995-11-01": "All Saints' Day", "1995-11-28": "Republic Day", "1995-12-01": "Freedom and Democracy Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-08": "International Women's Day", "1996-04-08": "Easter Monday", - "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", "1996-05-01": "Labour Day", - "1996-07-27": "Mawlid* (*estimated)", + "1996-07-27": "Mawlid (estimated)", "1996-08-11": "Independence Day", "1996-08-12": "Independence Day (Observed)", "1996-11-01": "All Saints' Day", @@ -433,37 +433,37 @@ "1996-12-02": "Freedom and Democracy Day (Observed)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-08": "International Women's Day", "1997-03-31": "Easter Monday", - "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", "1997-05-01": "Labour Day", - "1997-07-16": "Mawlid* (*estimated)", + "1997-07-16": "Mawlid (estimated)", "1997-08-11": "Independence Day", "1997-11-01": "All Saints' Day", "1997-11-28": "Republic Day", "1997-12-01": "Freedom and Democracy Day", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-08": "International Women's Day", "1998-03-09": "International Women's Day (Observed)", - "1998-04-07": "Eid al-Adha* (*estimated)", + "1998-04-07": "Eid al-Adha (estimated)", "1998-04-13": "Easter Monday", "1998-05-01": "Labour Day", - "1998-07-06": "Mawlid* (*estimated)", + "1998-07-06": "Mawlid (estimated)", "1998-08-11": "Independence Day", "1998-11-01": "All Saints' Day", "1998-11-28": "Republic Day", "1998-12-01": "Freedom and Democracy Day", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-03-08": "International Women's Day", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-05": "Easter Monday", "1999-05-01": "Labour Day", - "1999-06-26": "Mawlid* (*estimated)", + "1999-06-26": "Mawlid (estimated)", "1999-08-11": "Independence Day", "1999-11-01": "All Saints' Day", "1999-11-28": "Republic Day", @@ -471,192 +471,192 @@ "1999-12-01": "Freedom and Democracy Day", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-03-08": "International Women's Day", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-04-24": "Easter Monday", "2000-05-01": "Labour Day", - "2000-06-14": "Mawlid* (*estimated)", + "2000-06-14": "Mawlid (estimated)", "2000-08-11": "Independence Day", "2000-11-01": "All Saints' Day", "2000-11-28": "Republic Day", "2000-12-01": "Freedom and Democracy Day", "2000-12-25": "Christmas Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", - "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", "2001-03-08": "International Women's Day", "2001-04-16": "Easter Monday", "2001-05-01": "Labour Day", - "2001-06-04": "Mawlid* (*estimated)", + "2001-06-04": "Mawlid (estimated)", "2001-08-11": "Independence Day", "2001-11-01": "All Saints' Day", "2001-11-28": "Republic Day", "2001-12-01": "Freedom and Democracy Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", - "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", "2002-03-08": "International Women's Day", "2002-04-01": "Easter Monday", "2002-05-01": "Labour Day", - "2002-05-24": "Mawlid* (*estimated)", + "2002-05-24": "Mawlid (estimated)", "2002-08-11": "Independence Day", "2002-08-12": "Independence Day (Observed)", "2002-11-01": "All Saints' Day", "2002-11-28": "Republic Day", "2002-12-01": "Freedom and Democracy Day", "2002-12-02": "Freedom and Democracy Day (Observed)", - "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", - "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", "2003-03-08": "International Women's Day", "2003-04-21": "Easter Monday", "2003-05-01": "Labour Day", - "2003-05-13": "Mawlid* (*estimated)", + "2003-05-13": "Mawlid (estimated)", "2003-08-11": "Independence Day", "2003-11-01": "All Saints' Day", - "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", "2003-11-28": "Republic Day", "2003-12-01": "Freedom and Democracy Day", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", - "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", "2004-03-08": "International Women's Day", "2004-04-12": "Easter Monday", - "2004-05-01": "Labour Day; Mawlid* (*estimated)", + "2004-05-01": "Labour Day; Mawlid (estimated)", "2004-08-11": "Independence Day", "2004-11-01": "All Saints' Day", - "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", "2004-11-28": "Republic Day", "2004-11-29": "Republic Day (Observed)", "2004-12-01": "Freedom and Democracy Day", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", - "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", "2005-03-08": "International Women's Day", "2005-03-28": "Easter Monday", - "2005-04-21": "Mawlid* (*estimated)", + "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", "2005-05-02": "Labour Day (Observed)", "2005-08-11": "Independence Day", "2005-11-01": "All Saints' Day", - "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", "2005-11-28": "Republic Day", "2005-12-01": "Freedom and Democracy Day", "2005-12-25": "Christmas Day", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day (Observed)", - "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", "2006-03-08": "International Women's Day", - "2006-04-10": "Mawlid* (*estimated)", + "2006-04-10": "Mawlid (estimated)", "2006-04-17": "Easter Monday", "2006-05-01": "Labour Day", "2006-08-11": "Independence Day", - "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", "2006-11-01": "All Saints' Day", "2006-11-28": "Republic Day", "2006-12-01": "Freedom and Democracy Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", "2007-01-01": "New Year's Day", "2007-03-08": "International Women's Day", - "2007-03-31": "Mawlid* (*estimated)", + "2007-03-31": "Mawlid (estimated)", "2007-04-09": "Easter Monday", "2007-05-01": "Labour Day", "2007-08-11": "Independence Day", - "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", "2007-11-01": "All Saints' Day", "2007-11-28": "Republic Day", "2007-12-01": "Freedom and Democracy Day", - "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-03-08": "International Women's Day", - "2008-03-20": "Mawlid* (*estimated)", + "2008-03-20": "Mawlid (estimated)", "2008-03-24": "Easter Monday", "2008-05-01": "Labour Day", "2008-08-11": "Independence Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", "2008-11-01": "All Saints' Day", "2008-11-28": "Republic Day", "2008-12-01": "Freedom and Democracy Day", - "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-03-08": "International Women's Day", - "2009-03-09": "International Women's Day (Observed); Mawlid* (*estimated)", + "2009-03-09": "International Women's Day (Observed); Mawlid (estimated)", "2009-04-13": "Easter Monday", "2009-05-01": "Labour Day", "2009-08-11": "Independence Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", "2009-11-01": "All Saints' Day", - "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", "2009-11-28": "Republic Day", "2009-12-01": "Freedom and Democracy Day", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", - "2010-02-26": "Mawlid* (*estimated)", + "2010-02-26": "Mawlid (estimated)", "2010-03-08": "International Women's Day", "2010-04-05": "Easter Monday", "2010-05-01": "Labour Day", "2010-08-11": "Independence Day", - "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", "2010-11-01": "All Saints' Day", - "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", "2010-11-28": "Republic Day", "2010-11-29": "Republic Day (Observed)", "2010-12-01": "Freedom and Democracy Day", "2010-12-25": "Christmas Day", "2011-01-01": "New Year's Day", - "2011-02-15": "Mawlid* (*estimated)", + "2011-02-15": "Mawlid (estimated)", "2011-03-08": "International Women's Day", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", "2011-05-02": "Labour Day (Observed)", "2011-08-11": "Independence Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", "2011-11-01": "All Saints' Day", - "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", "2011-11-28": "Republic Day", "2011-12-01": "Freedom and Democracy Day", "2011-12-25": "Christmas Day", "2012-01-01": "New Year's Day", "2012-01-02": "New Year's Day (Observed)", - "2012-02-04": "Mawlid* (*estimated)", + "2012-02-04": "Mawlid (estimated)", "2012-03-08": "International Women's Day", "2012-04-09": "Easter Monday", "2012-05-01": "Labour Day", "2012-08-11": "Independence Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", "2012-11-01": "All Saints' Day", "2012-11-28": "Republic Day", "2012-12-01": "Freedom and Democracy Day", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", - "2013-01-24": "Mawlid* (*estimated)", + "2013-01-24": "Mawlid (estimated)", "2013-03-08": "International Women's Day", "2013-04-01": "Easter Monday", "2013-05-01": "Labour Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", "2013-08-11": "Independence Day", "2013-08-12": "Independence Day (Observed)", - "2013-10-15": "Eid al-Adha* (*estimated)", + "2013-10-15": "Eid al-Adha (estimated)", "2013-11-01": "All Saints' Day", "2013-11-28": "Republic Day", "2013-12-01": "Freedom and Democracy Day", "2013-12-02": "Freedom and Democracy Day (Observed)", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", - "2014-01-13": "Mawlid* (*estimated)", + "2014-01-13": "Mawlid (estimated)", "2014-03-08": "International Women's Day", "2014-04-21": "Easter Monday", "2014-05-01": "Labour Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", "2014-08-11": "Independence Day", - "2014-10-04": "Eid al-Adha* (*estimated)", + "2014-10-04": "Eid al-Adha (estimated)", "2014-11-01": "All Saints' Day", "2014-11-28": "Republic Day", "2014-12-01": "Freedom and Democracy Day", @@ -772,7 +772,7 @@ "2023-05-01": "Labour Day", "2023-06-28": "Eid al-Adha", "2023-08-11": "Independence Day", - "2023-09-27": "Mawlid* (*estimated)", + "2023-09-27": "Mawlid (estimated)", "2023-11-01": "All Saints' Day", "2023-11-28": "Republic Day", "2023-12-01": "Freedom and Democracy Day", @@ -780,12 +780,12 @@ "2024-01-01": "New Year's Day", "2024-03-08": "International Women's Day", "2024-04-01": "Easter Monday", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "Labour Day", - "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", "2024-08-11": "Independence Day", "2024-08-12": "Independence Day (Observed)", - "2024-09-15": "Mawlid* (*estimated)", + "2024-09-15": "Mawlid (estimated)", "2024-11-01": "All Saints' Day", "2024-11-28": "Republic Day", "2024-12-01": "Freedom and Democracy Day", @@ -793,12 +793,12 @@ "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-03-08": "International Women's Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", "2025-04-21": "Easter Monday", "2025-05-01": "Labour Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-08-11": "Independence Day", - "2025-09-04": "Mawlid* (*estimated)", + "2025-09-04": "Mawlid (estimated)", "2025-11-01": "All Saints' Day", "2025-11-28": "Republic Day", "2025-12-01": "Freedom and Democracy Day", @@ -806,60 +806,60 @@ "2026-01-01": "New Year's Day", "2026-03-08": "International Women's Day", "2026-03-09": "International Women's Day (Observed)", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-06": "Easter Monday", "2026-05-01": "Labour Day", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-08-11": "Independence Day", - "2026-08-25": "Mawlid* (*estimated)", + "2026-08-25": "Mawlid (estimated)", "2026-11-01": "All Saints' Day", "2026-11-28": "Republic Day", "2026-12-01": "Freedom and Democracy Day", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-03-08": "International Women's Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-29": "Easter Monday", "2027-05-01": "Labour Day", - "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", "2027-08-11": "Independence Day", - "2027-08-14": "Mawlid* (*estimated)", + "2027-08-14": "Mawlid (estimated)", "2027-11-01": "All Saints' Day", "2027-11-28": "Republic Day", "2027-11-29": "Republic Day (Observed)", "2027-12-01": "Freedom and Democracy Day", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-03-08": "International Women's Day", "2028-04-17": "Easter Monday", "2028-05-01": "Labour Day", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-08-03": "Mawlid* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-08-03": "Mawlid (estimated)", "2028-08-11": "Independence Day", "2028-11-01": "All Saints' Day", "2028-11-28": "Republic Day", "2028-12-01": "Freedom and Democracy Day", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-08": "International Women's Day", "2029-04-02": "Easter Monday", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", - "2029-07-24": "Mawlid* (*estimated)", + "2029-07-24": "Mawlid (estimated)", "2029-08-11": "Independence Day", "2029-11-01": "All Saints' Day", "2029-11-28": "Republic Day", "2029-12-01": "Freedom and Democracy Day", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", "2030-03-08": "International Women's Day", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-22": "Easter Monday", "2030-05-01": "Labour Day", - "2030-07-13": "Mawlid* (*estimated)", + "2030-07-13": "Mawlid (estimated)", "2030-08-11": "Independence Day", "2030-08-12": "Independence Day (Observed)", "2030-11-01": "All Saints' Day", @@ -868,24 +868,24 @@ "2030-12-02": "Freedom and Democracy Day (Observed)", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", "2031-03-08": "International Women's Day", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-14": "Easter Monday", "2031-05-01": "Labour Day", - "2031-07-02": "Mawlid* (*estimated)", + "2031-07-02": "Mawlid (estimated)", "2031-08-11": "Independence Day", "2031-11-01": "All Saints' Day", "2031-11-28": "Republic Day", "2031-12-01": "Freedom and Democracy Day", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", "2032-03-08": "International Women's Day", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-29": "Easter Monday", "2032-05-01": "Labour Day", - "2032-06-20": "Mawlid* (*estimated)", + "2032-06-20": "Mawlid (estimated)", "2032-08-11": "Independence Day", "2032-11-01": "All Saints' Day", "2032-11-28": "Republic Day", @@ -893,236 +893,236 @@ "2032-12-01": "Freedom and Democracy Day", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", "2033-03-08": "International Women's Day", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day (Observed)", - "2033-06-09": "Mawlid* (*estimated)", + "2033-06-09": "Mawlid (estimated)", "2033-08-11": "Independence Day", "2033-11-01": "All Saints' Day", "2033-11-28": "Republic Day", "2033-12-01": "Freedom and Democracy Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day (Observed)", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-03-08": "International Women's Day", "2034-04-10": "Easter Monday", "2034-05-01": "Labour Day", - "2034-05-30": "Mawlid* (*estimated)", + "2034-05-30": "Mawlid (estimated)", "2034-08-11": "Independence Day", "2034-11-01": "All Saints' Day", "2034-11-28": "Republic Day", "2034-12-01": "Freedom and Democracy Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", - "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", "2035-03-08": "International Women's Day", "2035-03-26": "Easter Monday", "2035-05-01": "Labour Day", - "2035-05-20": "Mawlid* (*estimated)", + "2035-05-20": "Mawlid (estimated)", "2035-08-11": "Independence Day", "2035-11-01": "All Saints' Day", "2035-11-28": "Republic Day", - "2035-12-01": "Eid al-Fitr* (*estimated); Freedom and Democracy Day", + "2035-12-01": "Eid al-Fitr (estimated); Freedom and Democracy Day", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-03-08": "International Women's Day", "2036-04-14": "Easter Monday", "2036-05-01": "Labour Day", - "2036-05-08": "Mawlid* (*estimated)", + "2036-05-08": "Mawlid (estimated)", "2036-08-11": "Independence Day", "2036-11-01": "All Saints' Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-11-28": "Republic Day", "2036-12-01": "Freedom and Democracy Day", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-03-08": "International Women's Day", "2037-03-09": "International Women's Day (Observed)", "2037-04-06": "Easter Monday", - "2037-04-28": "Mawlid* (*estimated)", + "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", "2037-08-11": "Independence Day", "2037-11-01": "All Saints' Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", "2037-11-28": "Republic Day", "2037-12-01": "Freedom and Democracy Day", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-03-08": "International Women's Day", - "2038-04-17": "Mawlid* (*estimated)", + "2038-04-17": "Mawlid (estimated)", "2038-04-26": "Easter Monday", "2038-05-01": "Labour Day", "2038-08-11": "Independence Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-11-01": "All Saints' Day", "2038-11-28": "Republic Day", "2038-11-29": "Republic Day (Observed)", "2038-12-01": "Freedom and Democracy Day", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-03-08": "International Women's Day", - "2039-04-06": "Mawlid* (*estimated)", + "2039-04-06": "Mawlid (estimated)", "2039-04-11": "Easter Monday", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day (Observed)", "2039-08-11": "Independence Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-11-01": "All Saints' Day", "2039-11-28": "Republic Day", "2039-12-01": "Freedom and Democracy Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Eid al-Adha* (*estimated)", + "2039-12-26": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day (Observed)", "2040-03-08": "International Women's Day", - "2040-03-25": "Mawlid* (*estimated)", + "2040-03-25": "Mawlid (estimated)", "2040-04-02": "Easter Monday", "2040-05-01": "Labour Day", "2040-08-11": "Independence Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", "2040-11-01": "All Saints' Day", "2040-11-28": "Republic Day", "2040-12-01": "Freedom and Democracy Day", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-03-08": "International Women's Day", - "2041-03-15": "Mawlid* (*estimated)", + "2041-03-15": "Mawlid (estimated)", "2041-04-22": "Easter Monday", "2041-05-01": "Labour Day", "2041-08-11": "Independence Day", "2041-08-12": "Independence Day (Observed)", - "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", "2041-11-01": "All Saints' Day", "2041-11-28": "Republic Day", "2041-12-01": "Freedom and Democracy Day", "2041-12-02": "Freedom and Democracy Day (Observed)", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", - "2042-03-04": "Mawlid* (*estimated)", + "2042-03-04": "Mawlid (estimated)", "2042-03-08": "International Women's Day", "2042-04-07": "Easter Monday", "2042-05-01": "Labour Day", "2042-08-11": "Independence Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", "2042-11-01": "All Saints' Day", - "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", "2042-11-28": "Republic Day", "2042-12-01": "Freedom and Democracy Day", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", - "2043-02-22": "Mawlid* (*estimated)", + "2043-02-22": "Mawlid (estimated)", "2043-03-08": "International Women's Day", "2043-03-09": "International Women's Day (Observed)", "2043-03-30": "Easter Monday", "2043-05-01": "Labour Day", "2043-08-11": "Independence Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", "2043-11-01": "All Saints' Day", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-11-28": "Republic Day", "2043-12-01": "Freedom and Democracy Day", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", - "2044-02-11": "Mawlid* (*estimated)", + "2044-02-11": "Mawlid (estimated)", "2044-03-08": "International Women's Day", "2044-04-18": "Easter Monday", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day (Observed)", "2044-08-11": "Independence Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-11-01": "All Saints' Day", "2044-11-28": "Republic Day", "2044-12-01": "Freedom and Democracy Day", "2044-12-25": "Christmas Day", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day (Observed)", - "2045-01-30": "Mawlid* (*estimated)", + "2045-01-30": "Mawlid (estimated)", "2045-03-08": "International Women's Day", "2045-04-10": "Easter Monday", "2045-05-01": "Labour Day", "2045-08-11": "Independence Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-11-01": "All Saints' Day", "2045-11-28": "Republic Day", "2045-12-01": "Freedom and Democracy Day", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", - "2046-01-19": "Mawlid* (*estimated)", + "2046-01-19": "Mawlid (estimated)", "2046-03-08": "International Women's Day", "2046-03-26": "Easter Monday", "2046-05-01": "Labour Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-11": "Independence Day", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-11-01": "All Saints' Day", "2046-11-28": "Republic Day", "2046-12-01": "Freedom and Democracy Day", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Mawlid* (*estimated)", + "2047-01-08": "Mawlid (estimated)", "2047-03-08": "International Women's Day", "2047-04-15": "Easter Monday", "2047-05-01": "Labour Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-08-11": "Independence Day", "2047-08-12": "Independence Day (Observed)", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-11-01": "All Saints' Day", "2047-11-28": "Republic Day", "2047-12-01": "Freedom and Democracy Day", "2047-12-02": "Freedom and Democracy Day (Observed)", "2047-12-25": "Christmas Day", - "2047-12-29": "Mawlid* (*estimated)", + "2047-12-29": "Mawlid (estimated)", "2048-01-01": "New Year's Day", "2048-03-08": "International Women's Day", "2048-03-09": "International Women's Day (Observed)", "2048-04-06": "Easter Monday", "2048-05-01": "Labour Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", "2048-08-11": "Independence Day", - "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-11-01": "All Saints' Day", "2048-11-28": "Republic Day", "2048-12-01": "Freedom and Democracy Day", - "2048-12-18": "Mawlid* (*estimated)", + "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-03-08": "International Women's Day", "2049-04-19": "Easter Monday", "2049-05-01": "Labour Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", "2049-08-11": "Independence Day", - "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-11-01": "All Saints' Day", "2049-11-28": "Republic Day", "2049-11-29": "Republic Day (Observed)", "2049-12-01": "Freedom and Democracy Day", - "2049-12-07": "Mawlid* (*estimated)", + "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-03-08": "International Women's Day", "2050-04-11": "Easter Monday", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day (Observed)", - "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-11": "Independence Day", - "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", "2050-11-01": "All Saints' Day", - "2050-11-26": "Mawlid* (*estimated)", + "2050-11-26": "Mawlid (estimated)", "2050-11-28": "Republic Day", "2050-12-01": "Freedom and Democracy Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/TL_COMMON.json b/snapshots/countries/TL_COMMON.json index e63dbab1c..15f903968 100644 --- a/snapshots/countries/TL_COMMON.json +++ b/snapshots/countries/TL_COMMON.json @@ -1,6 +1,6 @@ { "2006-01-01": "New Year's Day", - "2006-01-10": "Idul Adha* (*estimated)", + "2006-01-10": "Idul Adha (estimated)", "2006-03-01": "Ash Wednesday", "2006-04-13": "Holy Thursday", "2006-04-14": "Holy Friday", @@ -11,7 +11,7 @@ "2006-06-15": "Corpus Christi", "2006-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2006-08-30": "Popular Consultation Day", - "2006-10-23": "Idul Fitri* (*estimated)", + "2006-10-23": "Idul Fitri (estimated)", "2006-11-01": "All Saints' Day", "2006-11-02": "All Souls' Day", "2006-11-03": "National Women's Day", @@ -21,7 +21,7 @@ "2006-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", "2006-12-10": "World Human Rights Day", "2006-12-25": "Christmas Day", - "2006-12-31": "Idul Adha* (*estimated)", + "2006-12-31": "Idul Adha (estimated)", "2007-01-01": "New Year's Day", "2007-02-21": "Ash Wednesday", "2007-04-05": "Holy Thursday", @@ -33,7 +33,7 @@ "2007-06-07": "Corpus Christi", "2007-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2007-08-30": "Popular Consultation Day", - "2007-10-13": "Idul Fitri* (*estimated)", + "2007-10-13": "Idul Fitri (estimated)", "2007-11-01": "All Saints' Day", "2007-11-02": "All Souls' Day", "2007-11-03": "National Women's Day", @@ -42,7 +42,7 @@ "2007-12-07": "National Heroes Day", "2007-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", "2007-12-10": "World Human Rights Day", - "2007-12-20": "Idul Adha* (*estimated)", + "2007-12-20": "Idul Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-02-06": "Ash Wednesday", @@ -54,14 +54,14 @@ "2008-06-01": "World Children's Day", "2008-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2008-08-30": "Popular Consultation Day", - "2008-10-01": "Idul Fitri* (*estimated)", + "2008-10-01": "Idul Fitri (estimated)", "2008-11-01": "All Saints' Day", "2008-11-02": "All Souls' Day", "2008-11-03": "National Women's Day", "2008-11-12": "National Youth Day", "2008-11-28": "Proclamation of Independence Day", "2008-12-07": "National Heroes Day", - "2008-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness; Idul Adha* (*estimated)", + "2008-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness; Idul Adha (estimated)", "2008-12-10": "World Human Rights Day", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", @@ -75,12 +75,12 @@ "2009-06-11": "Corpus Christi", "2009-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2009-08-30": "Popular Consultation Day", - "2009-09-20": "Idul Fitri* (*estimated)", + "2009-09-20": "Idul Fitri (estimated)", "2009-11-01": "All Saints' Day", "2009-11-02": "All Souls' Day", "2009-11-03": "National Women's Day", "2009-11-12": "National Youth Day", - "2009-11-27": "Idul Adha* (*estimated)", + "2009-11-27": "Idul Adha (estimated)", "2009-11-28": "Proclamation of Independence Day", "2009-12-07": "National Heroes Day", "2009-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", @@ -97,12 +97,12 @@ "2010-06-03": "Corpus Christi", "2010-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2010-08-30": "Popular Consultation Day", - "2010-09-10": "Idul Fitri* (*estimated)", + "2010-09-10": "Idul Fitri (estimated)", "2010-11-01": "All Saints' Day", "2010-11-02": "All Souls' Day", "2010-11-03": "National Holidays (Special); National Women's Day", "2010-11-12": "National Youth Day", - "2010-11-16": "Idul Adha* (*estimated)", + "2010-11-16": "Idul Adha (estimated)", "2010-11-28": "Proclamation of Independence Day", "2010-12-07": "National Heroes Day", "2010-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", @@ -473,13 +473,13 @@ "2024-03-03": "Veteran's Day", "2024-03-28": "Holy Thursday", "2024-03-29": "Holy Friday", - "2024-04-10": "Idul Fitri* (*estimated)", + "2024-04-10": "Idul Fitri (estimated)", "2024-05-01": "World Labor Day", "2024-05-09": "The Day of Ascension of Jesus Christ into Heaven", "2024-05-20": "Restoration of Independence Day", "2024-05-30": "Corpus Christi", "2024-06-01": "World Children's Day", - "2024-06-16": "Idul Adha* (*estimated)", + "2024-06-16": "Idul Adha (estimated)", "2024-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2024-08-30": "Popular Consultation Day", "2024-11-01": "All Saints' Day", @@ -495,14 +495,14 @@ "2025-01-01": "New Year's Day", "2025-03-03": "Veteran's Day", "2025-03-05": "Ash Wednesday", - "2025-03-30": "Idul Fitri* (*estimated)", + "2025-03-30": "Idul Fitri (estimated)", "2025-04-17": "Holy Thursday", "2025-04-18": "Holy Friday", "2025-05-01": "World Labor Day", "2025-05-20": "Restoration of Independence Day", "2025-05-29": "The Day of Ascension of Jesus Christ into Heaven", "2025-06-01": "World Children's Day", - "2025-06-06": "Idul Adha* (*estimated)", + "2025-06-06": "Idul Adha (estimated)", "2025-06-19": "Corpus Christi", "2025-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2025-08-30": "Popular Consultation Day", @@ -519,13 +519,13 @@ "2026-01-01": "New Year's Day", "2026-02-18": "Ash Wednesday", "2026-03-03": "Veteran's Day", - "2026-03-20": "Idul Fitri* (*estimated)", + "2026-03-20": "Idul Fitri (estimated)", "2026-04-02": "Holy Thursday", "2026-04-03": "Holy Friday", "2026-05-01": "World Labor Day", "2026-05-14": "The Day of Ascension of Jesus Christ into Heaven", "2026-05-20": "Restoration of Independence Day", - "2026-05-27": "Idul Adha* (*estimated)", + "2026-05-27": "Idul Adha (estimated)", "2026-06-01": "World Children's Day", "2026-06-04": "Corpus Christi", "2026-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", @@ -543,12 +543,12 @@ "2027-01-01": "New Year's Day", "2027-02-10": "Ash Wednesday", "2027-03-03": "Veteran's Day", - "2027-03-09": "Idul Fitri* (*estimated)", + "2027-03-09": "Idul Fitri (estimated)", "2027-03-25": "Holy Thursday", "2027-03-26": "Holy Friday", "2027-05-01": "World Labor Day", "2027-05-06": "The Day of Ascension of Jesus Christ into Heaven", - "2027-05-16": "Idul Adha* (*estimated)", + "2027-05-16": "Idul Adha (estimated)", "2027-05-20": "Restoration of Independence Day", "2027-05-27": "Corpus Christi", "2027-06-01": "World Children's Day", @@ -565,13 +565,13 @@ "2027-12-25": "Christmas Day", "2027-12-31": "National Heroes Day", "2028-01-01": "New Year's Day", - "2028-02-26": "Idul Fitri* (*estimated)", + "2028-02-26": "Idul Fitri (estimated)", "2028-03-01": "Ash Wednesday", "2028-03-03": "Veteran's Day", "2028-04-13": "Holy Thursday", "2028-04-14": "Holy Friday", "2028-05-01": "World Labor Day", - "2028-05-05": "Idul Adha* (*estimated)", + "2028-05-05": "Idul Adha (estimated)", "2028-05-20": "Restoration of Independence Day", "2028-05-25": "The Day of Ascension of Jesus Christ into Heaven", "2028-06-01": "World Children's Day", @@ -589,11 +589,11 @@ "2028-12-25": "Christmas Day", "2028-12-31": "National Heroes Day", "2029-01-01": "New Year's Day", - "2029-02-14": "Ash Wednesday; Idul Fitri* (*estimated)", + "2029-02-14": "Ash Wednesday; Idul Fitri (estimated)", "2029-03-03": "Veteran's Day", "2029-03-29": "Holy Thursday", "2029-03-30": "Holy Friday", - "2029-04-24": "Idul Adha* (*estimated)", + "2029-04-24": "Idul Adha (estimated)", "2029-05-01": "World Labor Day", "2029-05-10": "The Day of Ascension of Jesus Christ into Heaven", "2029-05-20": "Restoration of Independence Day", @@ -612,10 +612,10 @@ "2029-12-25": "Christmas Day", "2029-12-31": "National Heroes Day", "2030-01-01": "New Year's Day", - "2030-02-04": "Idul Fitri* (*estimated)", + "2030-02-04": "Idul Fitri (estimated)", "2030-03-03": "Veteran's Day", "2030-03-06": "Ash Wednesday", - "2030-04-13": "Idul Adha* (*estimated)", + "2030-04-13": "Idul Adha (estimated)", "2030-04-18": "Holy Thursday", "2030-04-19": "Holy Friday", "2030-05-01": "World Labor Day", @@ -636,10 +636,10 @@ "2030-12-25": "Christmas Day", "2030-12-31": "National Heroes Day", "2031-01-01": "New Year's Day", - "2031-01-24": "Idul Fitri* (*estimated)", + "2031-01-24": "Idul Fitri (estimated)", "2031-02-26": "Ash Wednesday", "2031-03-03": "Veteran's Day", - "2031-04-02": "Idul Adha* (*estimated)", + "2031-04-02": "Idul Adha (estimated)", "2031-04-10": "Holy Thursday", "2031-04-11": "Holy Friday", "2031-05-01": "World Labor Day", @@ -660,10 +660,10 @@ "2031-12-25": "Christmas Day", "2031-12-31": "National Heroes Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Idul Fitri* (*estimated)", + "2032-01-14": "Idul Fitri (estimated)", "2032-02-11": "Ash Wednesday", "2032-03-03": "Veteran's Day", - "2032-03-22": "Idul Adha* (*estimated)", + "2032-03-22": "Idul Adha (estimated)", "2032-03-25": "Holy Thursday", "2032-03-26": "Holy Friday", "2032-05-01": "World Labor Day", @@ -684,10 +684,10 @@ "2032-12-25": "Christmas Day", "2032-12-31": "National Heroes Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Idul Fitri* (*estimated)", + "2033-01-02": "Idul Fitri (estimated)", "2033-03-02": "Ash Wednesday", "2033-03-03": "Veteran's Day", - "2033-03-11": "Idul Adha* (*estimated)", + "2033-03-11": "Idul Adha (estimated)", "2033-04-14": "Holy Thursday", "2033-04-15": "Holy Friday", "2033-05-01": "World Labor Day", @@ -705,12 +705,12 @@ "2033-12-07": "Memorial Day", "2033-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", "2033-12-10": "World Human Rights Day", - "2033-12-23": "Idul Fitri* (*estimated)", + "2033-12-23": "Idul Fitri (estimated)", "2033-12-25": "Christmas Day", "2033-12-31": "National Heroes Day", "2034-01-01": "New Year's Day", "2034-02-22": "Ash Wednesday", - "2034-03-01": "Idul Adha* (*estimated)", + "2034-03-01": "Idul Adha (estimated)", "2034-03-03": "Veteran's Day", "2034-04-06": "Holy Thursday", "2034-04-07": "Holy Friday", @@ -729,12 +729,12 @@ "2034-12-07": "Memorial Day", "2034-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", "2034-12-10": "World Human Rights Day", - "2034-12-12": "Idul Fitri* (*estimated)", + "2034-12-12": "Idul Fitri (estimated)", "2034-12-25": "Christmas Day", "2034-12-31": "National Heroes Day", "2035-01-01": "New Year's Day", "2035-02-07": "Ash Wednesday", - "2035-02-18": "Idul Adha* (*estimated)", + "2035-02-18": "Idul Adha (estimated)", "2035-03-03": "Veteran's Day", "2035-03-22": "Holy Thursday", "2035-03-23": "Holy Friday", @@ -750,14 +750,14 @@ "2035-11-03": "National Women's Day", "2035-11-12": "National Youth Day", "2035-11-28": "Proclamation of Independence Day", - "2035-12-01": "Idul Fitri* (*estimated)", + "2035-12-01": "Idul Fitri (estimated)", "2035-12-07": "Memorial Day", "2035-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", "2035-12-10": "World Human Rights Day", "2035-12-25": "Christmas Day", "2035-12-31": "National Heroes Day", "2036-01-01": "New Year's Day", - "2036-02-07": "Idul Adha* (*estimated)", + "2036-02-07": "Idul Adha (estimated)", "2036-02-27": "Ash Wednesday", "2036-03-03": "Veteran's Day", "2036-04-10": "Holy Thursday", @@ -773,7 +773,7 @@ "2036-11-02": "All Souls' Day", "2036-11-03": "National Women's Day", "2036-11-12": "National Youth Day", - "2036-11-19": "Idul Fitri* (*estimated)", + "2036-11-19": "Idul Fitri (estimated)", "2036-11-28": "Proclamation of Independence Day", "2036-12-07": "Memorial Day", "2036-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", @@ -781,7 +781,7 @@ "2036-12-25": "Christmas Day", "2036-12-31": "National Heroes Day", "2037-01-01": "New Year's Day", - "2037-01-26": "Idul Adha* (*estimated)", + "2037-01-26": "Idul Adha (estimated)", "2037-02-18": "Ash Wednesday", "2037-03-03": "Veteran's Day", "2037-04-02": "Holy Thursday", @@ -796,7 +796,7 @@ "2037-11-01": "All Saints' Day", "2037-11-02": "All Souls' Day", "2037-11-03": "National Women's Day", - "2037-11-08": "Idul Fitri* (*estimated)", + "2037-11-08": "Idul Fitri (estimated)", "2037-11-12": "National Youth Day", "2037-11-28": "Proclamation of Independence Day", "2037-12-07": "Memorial Day", @@ -805,7 +805,7 @@ "2037-12-25": "Christmas Day", "2037-12-31": "National Heroes Day", "2038-01-01": "New Year's Day", - "2038-01-16": "Idul Adha* (*estimated)", + "2038-01-16": "Idul Adha (estimated)", "2038-03-03": "Veteran's Day", "2038-03-10": "Ash Wednesday", "2038-04-22": "Holy Thursday", @@ -817,7 +817,7 @@ "2038-06-24": "Corpus Christi", "2038-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2038-08-30": "Popular Consultation Day", - "2038-10-29": "Idul Fitri* (*estimated)", + "2038-10-29": "Idul Fitri (estimated)", "2038-11-01": "All Saints' Day", "2038-11-02": "All Souls' Day", "2038-11-03": "National Women's Day", @@ -829,7 +829,7 @@ "2038-12-25": "Christmas Day", "2038-12-31": "National Heroes Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Idul Adha* (*estimated)", + "2039-01-05": "Idul Adha (estimated)", "2039-02-23": "Ash Wednesday", "2039-03-03": "Veteran's Day", "2039-04-07": "Holy Thursday", @@ -841,7 +841,7 @@ "2039-06-09": "Corpus Christi", "2039-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2039-08-30": "Popular Consultation Day", - "2039-10-19": "Idul Fitri* (*estimated)", + "2039-10-19": "Idul Fitri (estimated)", "2039-11-01": "All Saints' Day", "2039-11-02": "All Souls' Day", "2039-11-03": "National Women's Day", @@ -851,7 +851,7 @@ "2039-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", "2039-12-10": "World Human Rights Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Idul Adha* (*estimated)", + "2039-12-26": "Idul Adha (estimated)", "2039-12-31": "National Heroes Day", "2040-01-01": "New Year's Day", "2040-02-15": "Ash Wednesday", @@ -865,7 +865,7 @@ "2040-06-01": "World Children's Day", "2040-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2040-08-30": "Popular Consultation Day", - "2040-10-07": "Idul Fitri* (*estimated)", + "2040-10-07": "Idul Fitri (estimated)", "2040-11-01": "All Saints' Day", "2040-11-02": "All Souls' Day", "2040-11-03": "National Women's Day", @@ -874,7 +874,7 @@ "2040-12-07": "Memorial Day", "2040-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", "2040-12-10": "World Human Rights Day", - "2040-12-14": "Idul Adha* (*estimated)", + "2040-12-14": "Idul Adha (estimated)", "2040-12-25": "Christmas Day", "2040-12-31": "National Heroes Day", "2041-01-01": "New Year's Day", @@ -889,13 +889,13 @@ "2041-06-20": "Corpus Christi", "2041-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2041-08-30": "Popular Consultation Day", - "2041-09-26": "Idul Fitri* (*estimated)", + "2041-09-26": "Idul Fitri (estimated)", "2041-11-01": "All Saints' Day", "2041-11-02": "All Souls' Day", "2041-11-03": "National Women's Day", "2041-11-12": "National Youth Day", "2041-11-28": "Proclamation of Independence Day", - "2041-12-04": "Idul Adha* (*estimated)", + "2041-12-04": "Idul Adha (estimated)", "2041-12-07": "Memorial Day", "2041-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", "2041-12-10": "World Human Rights Day", @@ -913,12 +913,12 @@ "2042-06-05": "Corpus Christi", "2042-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2042-08-30": "Popular Consultation Day", - "2042-09-15": "Idul Fitri* (*estimated)", + "2042-09-15": "Idul Fitri (estimated)", "2042-11-01": "All Saints' Day", "2042-11-02": "All Souls' Day", "2042-11-03": "National Women's Day", "2042-11-12": "National Youth Day", - "2042-11-23": "Idul Adha* (*estimated)", + "2042-11-23": "Idul Adha (estimated)", "2042-11-28": "Proclamation of Independence Day", "2042-12-07": "Memorial Day", "2042-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", @@ -937,11 +937,11 @@ "2043-06-01": "World Children's Day", "2043-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2043-08-30": "Popular Consultation Day", - "2043-09-04": "Idul Fitri* (*estimated)", + "2043-09-04": "Idul Fitri (estimated)", "2043-11-01": "All Saints' Day", "2043-11-02": "All Souls' Day", "2043-11-03": "National Women's Day", - "2043-11-12": "Idul Adha* (*estimated); National Youth Day", + "2043-11-12": "Idul Adha (estimated); National Youth Day", "2043-11-28": "Proclamation of Independence Day", "2043-12-07": "Memorial Day", "2043-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", @@ -959,9 +959,9 @@ "2044-06-01": "World Children's Day", "2044-06-16": "Corpus Christi", "2044-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", - "2044-08-24": "Idul Fitri* (*estimated)", + "2044-08-24": "Idul Fitri (estimated)", "2044-08-30": "Popular Consultation Day", - "2044-10-31": "Idul Adha* (*estimated)", + "2044-10-31": "Idul Adha (estimated)", "2044-11-01": "All Saints' Day", "2044-11-02": "All Souls' Day", "2044-11-03": "National Women's Day", @@ -982,10 +982,10 @@ "2045-05-20": "Restoration of Independence Day", "2045-06-01": "World Children's Day", "2045-06-08": "Corpus Christi", - "2045-08-14": "Idul Fitri* (*estimated)", + "2045-08-14": "Idul Fitri (estimated)", "2045-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2045-08-30": "Popular Consultation Day", - "2045-10-21": "Idul Adha* (*estimated)", + "2045-10-21": "Idul Adha (estimated)", "2045-11-01": "All Saints' Day", "2045-11-02": "All Souls' Day", "2045-11-03": "National Women's Day", @@ -1006,10 +1006,10 @@ "2046-05-20": "Restoration of Independence Day", "2046-05-24": "Corpus Christi", "2046-06-01": "World Children's Day", - "2046-08-03": "Idul Fitri* (*estimated)", + "2046-08-03": "Idul Fitri (estimated)", "2046-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2046-08-30": "Popular Consultation Day", - "2046-10-10": "Idul Adha* (*estimated)", + "2046-10-10": "Idul Adha (estimated)", "2046-11-01": "All Saints' Day", "2046-11-02": "All Souls' Day", "2046-11-03": "National Women's Day", @@ -1030,10 +1030,10 @@ "2047-05-23": "The Day of Ascension of Jesus Christ into Heaven", "2047-06-01": "World Children's Day", "2047-06-13": "Corpus Christi", - "2047-07-24": "Idul Fitri* (*estimated)", + "2047-07-24": "Idul Fitri (estimated)", "2047-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2047-08-30": "Popular Consultation Day", - "2047-09-30": "Idul Adha* (*estimated)", + "2047-09-30": "Idul Adha (estimated)", "2047-11-01": "All Saints' Day", "2047-11-02": "All Souls' Day", "2047-11-03": "National Women's Day", @@ -1054,10 +1054,10 @@ "2048-05-20": "Restoration of Independence Day", "2048-06-01": "World Children's Day", "2048-06-04": "Corpus Christi", - "2048-07-12": "Idul Fitri* (*estimated)", + "2048-07-12": "Idul Fitri (estimated)", "2048-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2048-08-30": "Popular Consultation Day", - "2048-09-19": "Idul Adha* (*estimated)", + "2048-09-19": "Idul Adha (estimated)", "2048-11-01": "All Saints' Day", "2048-11-02": "All Souls' Day", "2048-11-03": "National Women's Day", @@ -1077,10 +1077,10 @@ "2049-05-27": "The Day of Ascension of Jesus Christ into Heaven", "2049-06-01": "World Children's Day", "2049-06-17": "Corpus Christi", - "2049-07-01": "Idul Fitri* (*estimated)", + "2049-07-01": "Idul Fitri (estimated)", "2049-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2049-08-30": "Popular Consultation Day", - "2049-09-08": "Idul Adha* (*estimated)", + "2049-09-08": "Idul Adha (estimated)", "2049-11-01": "All Saints' Day", "2049-11-02": "All Souls' Day", "2049-11-03": "National Women's Day", @@ -1101,9 +1101,9 @@ "2050-05-20": "Restoration of Independence Day", "2050-06-01": "World Children's Day", "2050-06-09": "Corpus Christi", - "2050-06-20": "Idul Fitri* (*estimated)", + "2050-06-20": "Idul Fitri (estimated)", "2050-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", - "2050-08-28": "Idul Adha* (*estimated)", + "2050-08-28": "Idul Adha (estimated)", "2050-08-30": "Popular Consultation Day", "2050-11-01": "All Saints' Day", "2050-11-02": "All Souls' Day", diff --git a/snapshots/countries/TN_COMMON.json b/snapshots/countries/TN_COMMON.json index e02c6893b..69792f013 100644 --- a/snapshots/countries/TN_COMMON.json +++ b/snapshots/countries/TN_COMMON.json @@ -1,1726 +1,1726 @@ { - "1950-01-01": "New Year's Day; Prophet's Birthday* (*estimated)", + "1950-01-01": "New Year's Day; Prophet's Birthday (estimated)", "1950-01-14": "Revolution and Youth Day", "1950-03-20": "Independence Day", "1950-04-09": "Martyrs' Day", "1950-05-01": "Labor Day", - "1950-07-16": "Eid al-Fitr* (*estimated)", - "1950-07-17": "Eid al-Fitr Holiday* (*estimated)", - "1950-07-18": "Eid al-Fitr Holiday* (*estimated)", + "1950-07-16": "Eid al-Fitr (estimated)", + "1950-07-17": "Eid al-Fitr Holiday (estimated)", + "1950-07-18": "Eid al-Fitr Holiday (estimated)", "1950-07-25": "Republic Day", "1950-08-13": "Women's Day", - "1950-09-22": "Arafat Day* (*estimated)", - "1950-09-23": "Eid al-Adha* (*estimated)", - "1950-09-24": "Eid al-Adha Holiday* (*estimated)", - "1950-09-25": "Eid al-Adha Holiday* (*estimated)", - "1950-10-13": "Islamic New Year* (*estimated)", + "1950-09-22": "Arafat Day (estimated)", + "1950-09-23": "Eid al-Adha (estimated)", + "1950-09-24": "Eid al-Adha Holiday (estimated)", + "1950-09-25": "Eid al-Adha Holiday (estimated)", + "1950-10-13": "Islamic New Year (estimated)", "1950-10-15": "Evacuation Day", - "1950-12-22": "Prophet's Birthday* (*estimated)", + "1950-12-22": "Prophet's Birthday (estimated)", "1951-01-01": "New Year's Day", "1951-01-14": "Revolution and Youth Day", "1951-03-20": "Independence Day", "1951-04-09": "Martyrs' Day", "1951-05-01": "Labor Day", - "1951-07-06": "Eid al-Fitr* (*estimated)", - "1951-07-07": "Eid al-Fitr Holiday* (*estimated)", - "1951-07-08": "Eid al-Fitr Holiday* (*estimated)", + "1951-07-06": "Eid al-Fitr (estimated)", + "1951-07-07": "Eid al-Fitr Holiday (estimated)", + "1951-07-08": "Eid al-Fitr Holiday (estimated)", "1951-07-25": "Republic Day", "1951-08-13": "Women's Day", - "1951-09-11": "Arafat Day* (*estimated)", - "1951-09-12": "Eid al-Adha* (*estimated)", - "1951-09-13": "Eid al-Adha Holiday* (*estimated)", - "1951-09-14": "Eid al-Adha Holiday* (*estimated)", - "1951-10-02": "Islamic New Year* (*estimated)", + "1951-09-11": "Arafat Day (estimated)", + "1951-09-12": "Eid al-Adha (estimated)", + "1951-09-13": "Eid al-Adha Holiday (estimated)", + "1951-09-14": "Eid al-Adha Holiday (estimated)", + "1951-10-02": "Islamic New Year (estimated)", "1951-10-15": "Evacuation Day", - "1951-12-11": "Prophet's Birthday* (*estimated)", + "1951-12-11": "Prophet's Birthday (estimated)", "1952-01-01": "New Year's Day", "1952-01-14": "Revolution and Youth Day", "1952-03-20": "Independence Day", "1952-04-09": "Martyrs' Day", "1952-05-01": "Labor Day", - "1952-06-23": "Eid al-Fitr* (*estimated)", - "1952-06-24": "Eid al-Fitr Holiday* (*estimated)", - "1952-06-25": "Eid al-Fitr Holiday* (*estimated)", + "1952-06-23": "Eid al-Fitr (estimated)", + "1952-06-24": "Eid al-Fitr Holiday (estimated)", + "1952-06-25": "Eid al-Fitr Holiday (estimated)", "1952-07-25": "Republic Day", "1952-08-13": "Women's Day", - "1952-08-30": "Arafat Day* (*estimated)", - "1952-08-31": "Eid al-Adha* (*estimated)", - "1952-09-01": "Eid al-Adha Holiday* (*estimated)", - "1952-09-02": "Eid al-Adha Holiday* (*estimated)", - "1952-09-21": "Islamic New Year* (*estimated)", + "1952-08-30": "Arafat Day (estimated)", + "1952-08-31": "Eid al-Adha (estimated)", + "1952-09-01": "Eid al-Adha Holiday (estimated)", + "1952-09-02": "Eid al-Adha Holiday (estimated)", + "1952-09-21": "Islamic New Year (estimated)", "1952-10-15": "Evacuation Day", - "1952-11-30": "Prophet's Birthday* (*estimated)", + "1952-11-30": "Prophet's Birthday (estimated)", "1953-01-01": "New Year's Day", "1953-01-14": "Revolution and Youth Day", "1953-03-20": "Independence Day", "1953-04-09": "Martyrs' Day", "1953-05-01": "Labor Day", - "1953-06-13": "Eid al-Fitr* (*estimated)", - "1953-06-14": "Eid al-Fitr Holiday* (*estimated)", - "1953-06-15": "Eid al-Fitr Holiday* (*estimated)", + "1953-06-13": "Eid al-Fitr (estimated)", + "1953-06-14": "Eid al-Fitr Holiday (estimated)", + "1953-06-15": "Eid al-Fitr Holiday (estimated)", "1953-07-25": "Republic Day", "1953-08-13": "Women's Day", - "1953-08-19": "Arafat Day* (*estimated)", - "1953-08-20": "Eid al-Adha* (*estimated)", - "1953-08-21": "Eid al-Adha Holiday* (*estimated)", - "1953-08-22": "Eid al-Adha Holiday* (*estimated)", - "1953-09-10": "Islamic New Year* (*estimated)", + "1953-08-19": "Arafat Day (estimated)", + "1953-08-20": "Eid al-Adha (estimated)", + "1953-08-21": "Eid al-Adha Holiday (estimated)", + "1953-08-22": "Eid al-Adha Holiday (estimated)", + "1953-09-10": "Islamic New Year (estimated)", "1953-10-15": "Evacuation Day", - "1953-11-19": "Prophet's Birthday* (*estimated)", + "1953-11-19": "Prophet's Birthday (estimated)", "1954-01-01": "New Year's Day", "1954-01-14": "Revolution and Youth Day", "1954-03-20": "Independence Day", "1954-04-09": "Martyrs' Day", "1954-05-01": "Labor Day", - "1954-06-02": "Eid al-Fitr* (*estimated)", - "1954-06-03": "Eid al-Fitr Holiday* (*estimated)", - "1954-06-04": "Eid al-Fitr Holiday* (*estimated)", + "1954-06-02": "Eid al-Fitr (estimated)", + "1954-06-03": "Eid al-Fitr Holiday (estimated)", + "1954-06-04": "Eid al-Fitr Holiday (estimated)", "1954-07-25": "Republic Day", - "1954-08-08": "Arafat Day* (*estimated)", - "1954-08-09": "Eid al-Adha* (*estimated)", - "1954-08-10": "Eid al-Adha Holiday* (*estimated)", - "1954-08-11": "Eid al-Adha Holiday* (*estimated)", + "1954-08-08": "Arafat Day (estimated)", + "1954-08-09": "Eid al-Adha (estimated)", + "1954-08-10": "Eid al-Adha Holiday (estimated)", + "1954-08-11": "Eid al-Adha Holiday (estimated)", "1954-08-13": "Women's Day", - "1954-08-30": "Islamic New Year* (*estimated)", + "1954-08-30": "Islamic New Year (estimated)", "1954-10-15": "Evacuation Day", - "1954-11-08": "Prophet's Birthday* (*estimated)", + "1954-11-08": "Prophet's Birthday (estimated)", "1955-01-01": "New Year's Day", "1955-01-14": "Revolution and Youth Day", "1955-03-20": "Independence Day", "1955-04-09": "Martyrs' Day", "1955-05-01": "Labor Day", - "1955-05-23": "Eid al-Fitr* (*estimated)", - "1955-05-24": "Eid al-Fitr Holiday* (*estimated)", - "1955-05-25": "Eid al-Fitr Holiday* (*estimated)", + "1955-05-23": "Eid al-Fitr (estimated)", + "1955-05-24": "Eid al-Fitr Holiday (estimated)", + "1955-05-25": "Eid al-Fitr Holiday (estimated)", "1955-07-25": "Republic Day", - "1955-07-29": "Arafat Day* (*estimated)", - "1955-07-30": "Eid al-Adha* (*estimated)", - "1955-07-31": "Eid al-Adha Holiday* (*estimated)", - "1955-08-01": "Eid al-Adha Holiday* (*estimated)", + "1955-07-29": "Arafat Day (estimated)", + "1955-07-30": "Eid al-Adha (estimated)", + "1955-07-31": "Eid al-Adha Holiday (estimated)", + "1955-08-01": "Eid al-Adha Holiday (estimated)", "1955-08-13": "Women's Day", - "1955-08-20": "Islamic New Year* (*estimated)", + "1955-08-20": "Islamic New Year (estimated)", "1955-10-15": "Evacuation Day", - "1955-10-29": "Prophet's Birthday* (*estimated)", + "1955-10-29": "Prophet's Birthday (estimated)", "1956-01-01": "New Year's Day", "1956-01-14": "Revolution and Youth Day", "1956-03-20": "Independence Day", "1956-04-09": "Martyrs' Day", "1956-05-01": "Labor Day", - "1956-05-11": "Eid al-Fitr* (*estimated)", - "1956-05-12": "Eid al-Fitr Holiday* (*estimated)", - "1956-05-13": "Eid al-Fitr Holiday* (*estimated)", - "1956-07-18": "Arafat Day* (*estimated)", - "1956-07-19": "Eid al-Adha* (*estimated)", - "1956-07-20": "Eid al-Adha Holiday* (*estimated)", - "1956-07-21": "Eid al-Adha Holiday* (*estimated)", + "1956-05-11": "Eid al-Fitr (estimated)", + "1956-05-12": "Eid al-Fitr Holiday (estimated)", + "1956-05-13": "Eid al-Fitr Holiday (estimated)", + "1956-07-18": "Arafat Day (estimated)", + "1956-07-19": "Eid al-Adha (estimated)", + "1956-07-20": "Eid al-Adha Holiday (estimated)", + "1956-07-21": "Eid al-Adha Holiday (estimated)", "1956-07-25": "Republic Day", - "1956-08-08": "Islamic New Year* (*estimated)", + "1956-08-08": "Islamic New Year (estimated)", "1956-08-13": "Women's Day", "1956-10-15": "Evacuation Day", - "1956-10-17": "Prophet's Birthday* (*estimated)", + "1956-10-17": "Prophet's Birthday (estimated)", "1957-01-01": "New Year's Day", "1957-01-14": "Revolution and Youth Day", "1957-03-20": "Independence Day", "1957-04-09": "Martyrs' Day", - "1957-05-01": "Eid al-Fitr* (*estimated); Labor Day", - "1957-05-02": "Eid al-Fitr Holiday* (*estimated)", - "1957-05-03": "Eid al-Fitr Holiday* (*estimated)", - "1957-07-07": "Arafat Day* (*estimated)", - "1957-07-08": "Eid al-Adha* (*estimated)", - "1957-07-09": "Eid al-Adha Holiday* (*estimated)", - "1957-07-10": "Eid al-Adha Holiday* (*estimated)", + "1957-05-01": "Eid al-Fitr (estimated); Labor Day", + "1957-05-02": "Eid al-Fitr Holiday (estimated)", + "1957-05-03": "Eid al-Fitr Holiday (estimated)", + "1957-07-07": "Arafat Day (estimated)", + "1957-07-08": "Eid al-Adha (estimated)", + "1957-07-09": "Eid al-Adha Holiday (estimated)", + "1957-07-10": "Eid al-Adha Holiday (estimated)", "1957-07-25": "Republic Day", - "1957-07-28": "Islamic New Year* (*estimated)", + "1957-07-28": "Islamic New Year (estimated)", "1957-08-13": "Women's Day", - "1957-10-06": "Prophet's Birthday* (*estimated)", + "1957-10-06": "Prophet's Birthday (estimated)", "1957-10-15": "Evacuation Day", "1958-01-01": "New Year's Day", "1958-01-14": "Revolution and Youth Day", "1958-03-20": "Independence Day", "1958-04-09": "Martyrs' Day", - "1958-04-20": "Eid al-Fitr* (*estimated)", - "1958-04-21": "Eid al-Fitr Holiday* (*estimated)", - "1958-04-22": "Eid al-Fitr Holiday* (*estimated)", + "1958-04-20": "Eid al-Fitr (estimated)", + "1958-04-21": "Eid al-Fitr Holiday (estimated)", + "1958-04-22": "Eid al-Fitr Holiday (estimated)", "1958-05-01": "Labor Day", - "1958-06-26": "Arafat Day* (*estimated)", - "1958-06-27": "Eid al-Adha* (*estimated)", - "1958-06-28": "Eid al-Adha Holiday* (*estimated)", - "1958-06-29": "Eid al-Adha Holiday* (*estimated)", - "1958-07-18": "Islamic New Year* (*estimated)", + "1958-06-26": "Arafat Day (estimated)", + "1958-06-27": "Eid al-Adha (estimated)", + "1958-06-28": "Eid al-Adha Holiday (estimated)", + "1958-06-29": "Eid al-Adha Holiday (estimated)", + "1958-07-18": "Islamic New Year (estimated)", "1958-07-25": "Republic Day", "1958-08-13": "Women's Day", - "1958-09-26": "Prophet's Birthday* (*estimated)", + "1958-09-26": "Prophet's Birthday (estimated)", "1958-10-15": "Evacuation Day", "1959-01-01": "New Year's Day", "1959-01-14": "Revolution and Youth Day", "1959-03-20": "Independence Day", "1959-04-09": "Martyrs' Day", - "1959-04-10": "Eid al-Fitr* (*estimated)", - "1959-04-11": "Eid al-Fitr Holiday* (*estimated)", - "1959-04-12": "Eid al-Fitr Holiday* (*estimated)", + "1959-04-10": "Eid al-Fitr (estimated)", + "1959-04-11": "Eid al-Fitr Holiday (estimated)", + "1959-04-12": "Eid al-Fitr Holiday (estimated)", "1959-05-01": "Labor Day", - "1959-06-16": "Arafat Day* (*estimated)", - "1959-06-17": "Eid al-Adha* (*estimated)", - "1959-06-18": "Eid al-Adha Holiday* (*estimated)", - "1959-06-19": "Eid al-Adha Holiday* (*estimated)", - "1959-07-07": "Islamic New Year* (*estimated)", + "1959-06-16": "Arafat Day (estimated)", + "1959-06-17": "Eid al-Adha (estimated)", + "1959-06-18": "Eid al-Adha Holiday (estimated)", + "1959-06-19": "Eid al-Adha Holiday (estimated)", + "1959-07-07": "Islamic New Year (estimated)", "1959-07-25": "Republic Day", "1959-08-13": "Women's Day", - "1959-09-15": "Prophet's Birthday* (*estimated)", + "1959-09-15": "Prophet's Birthday (estimated)", "1959-10-15": "Evacuation Day", "1960-01-01": "New Year's Day", "1960-01-14": "Revolution and Youth Day", "1960-03-20": "Independence Day", - "1960-03-28": "Eid al-Fitr* (*estimated)", - "1960-03-29": "Eid al-Fitr Holiday* (*estimated)", - "1960-03-30": "Eid al-Fitr Holiday* (*estimated)", + "1960-03-28": "Eid al-Fitr (estimated)", + "1960-03-29": "Eid al-Fitr Holiday (estimated)", + "1960-03-30": "Eid al-Fitr Holiday (estimated)", "1960-04-09": "Martyrs' Day", "1960-05-01": "Labor Day", - "1960-06-03": "Arafat Day* (*estimated)", - "1960-06-04": "Eid al-Adha* (*estimated)", - "1960-06-05": "Eid al-Adha Holiday* (*estimated)", - "1960-06-06": "Eid al-Adha Holiday* (*estimated)", - "1960-06-25": "Islamic New Year* (*estimated)", + "1960-06-03": "Arafat Day (estimated)", + "1960-06-04": "Eid al-Adha (estimated)", + "1960-06-05": "Eid al-Adha Holiday (estimated)", + "1960-06-06": "Eid al-Adha Holiday (estimated)", + "1960-06-25": "Islamic New Year (estimated)", "1960-07-25": "Republic Day", "1960-08-13": "Women's Day", - "1960-09-03": "Prophet's Birthday* (*estimated)", + "1960-09-03": "Prophet's Birthday (estimated)", "1960-10-15": "Evacuation Day", "1961-01-01": "New Year's Day", "1961-01-14": "Revolution and Youth Day", - "1961-03-18": "Eid al-Fitr* (*estimated)", - "1961-03-19": "Eid al-Fitr Holiday* (*estimated)", - "1961-03-20": "Eid al-Fitr Holiday* (*estimated); Independence Day", + "1961-03-18": "Eid al-Fitr (estimated)", + "1961-03-19": "Eid al-Fitr Holiday (estimated)", + "1961-03-20": "Eid al-Fitr Holiday (estimated); Independence Day", "1961-04-09": "Martyrs' Day", "1961-05-01": "Labor Day", - "1961-05-24": "Arafat Day* (*estimated)", - "1961-05-25": "Eid al-Adha* (*estimated)", - "1961-05-26": "Eid al-Adha Holiday* (*estimated)", - "1961-05-27": "Eid al-Adha Holiday* (*estimated)", - "1961-06-14": "Islamic New Year* (*estimated)", + "1961-05-24": "Arafat Day (estimated)", + "1961-05-25": "Eid al-Adha (estimated)", + "1961-05-26": "Eid al-Adha Holiday (estimated)", + "1961-05-27": "Eid al-Adha Holiday (estimated)", + "1961-06-14": "Islamic New Year (estimated)", "1961-07-25": "Republic Day", "1961-08-13": "Women's Day", - "1961-08-23": "Prophet's Birthday* (*estimated)", + "1961-08-23": "Prophet's Birthday (estimated)", "1961-10-15": "Evacuation Day", "1962-01-01": "New Year's Day", "1962-01-14": "Revolution and Youth Day", - "1962-03-07": "Eid al-Fitr* (*estimated)", - "1962-03-08": "Eid al-Fitr Holiday* (*estimated)", - "1962-03-09": "Eid al-Fitr Holiday* (*estimated)", + "1962-03-07": "Eid al-Fitr (estimated)", + "1962-03-08": "Eid al-Fitr Holiday (estimated)", + "1962-03-09": "Eid al-Fitr Holiday (estimated)", "1962-03-20": "Independence Day", "1962-04-09": "Martyrs' Day", "1962-05-01": "Labor Day", - "1962-05-13": "Arafat Day* (*estimated)", - "1962-05-14": "Eid al-Adha* (*estimated)", - "1962-05-15": "Eid al-Adha Holiday* (*estimated)", - "1962-05-16": "Eid al-Adha Holiday* (*estimated)", - "1962-06-03": "Islamic New Year* (*estimated)", + "1962-05-13": "Arafat Day (estimated)", + "1962-05-14": "Eid al-Adha (estimated)", + "1962-05-15": "Eid al-Adha Holiday (estimated)", + "1962-05-16": "Eid al-Adha Holiday (estimated)", + "1962-06-03": "Islamic New Year (estimated)", "1962-07-25": "Republic Day", - "1962-08-12": "Prophet's Birthday* (*estimated)", + "1962-08-12": "Prophet's Birthday (estimated)", "1962-08-13": "Women's Day", "1962-10-15": "Evacuation Day", "1963-01-01": "New Year's Day", "1963-01-14": "Revolution and Youth Day", - "1963-02-24": "Eid al-Fitr* (*estimated)", - "1963-02-25": "Eid al-Fitr Holiday* (*estimated)", - "1963-02-26": "Eid al-Fitr Holiday* (*estimated)", + "1963-02-24": "Eid al-Fitr (estimated)", + "1963-02-25": "Eid al-Fitr Holiday (estimated)", + "1963-02-26": "Eid al-Fitr Holiday (estimated)", "1963-03-20": "Independence Day", "1963-04-09": "Martyrs' Day", "1963-05-01": "Labor Day", - "1963-05-02": "Arafat Day* (*estimated)", - "1963-05-03": "Eid al-Adha* (*estimated)", - "1963-05-04": "Eid al-Adha Holiday* (*estimated)", - "1963-05-05": "Eid al-Adha Holiday* (*estimated)", - "1963-05-24": "Islamic New Year* (*estimated)", + "1963-05-02": "Arafat Day (estimated)", + "1963-05-03": "Eid al-Adha (estimated)", + "1963-05-04": "Eid al-Adha Holiday (estimated)", + "1963-05-05": "Eid al-Adha Holiday (estimated)", + "1963-05-24": "Islamic New Year (estimated)", "1963-07-25": "Republic Day", - "1963-08-02": "Prophet's Birthday* (*estimated)", + "1963-08-02": "Prophet's Birthday (estimated)", "1963-08-13": "Women's Day", "1963-10-15": "Evacuation Day", "1964-01-01": "New Year's Day", "1964-01-14": "Revolution and Youth Day", - "1964-02-14": "Eid al-Fitr* (*estimated)", - "1964-02-15": "Eid al-Fitr Holiday* (*estimated)", - "1964-02-16": "Eid al-Fitr Holiday* (*estimated)", + "1964-02-14": "Eid al-Fitr (estimated)", + "1964-02-15": "Eid al-Fitr Holiday (estimated)", + "1964-02-16": "Eid al-Fitr Holiday (estimated)", "1964-03-20": "Independence Day", "1964-04-09": "Martyrs' Day", - "1964-04-21": "Arafat Day* (*estimated)", - "1964-04-22": "Eid al-Adha* (*estimated)", - "1964-04-23": "Eid al-Adha Holiday* (*estimated)", - "1964-04-24": "Eid al-Adha Holiday* (*estimated)", + "1964-04-21": "Arafat Day (estimated)", + "1964-04-22": "Eid al-Adha (estimated)", + "1964-04-23": "Eid al-Adha Holiday (estimated)", + "1964-04-24": "Eid al-Adha Holiday (estimated)", "1964-05-01": "Labor Day", - "1964-05-12": "Islamic New Year* (*estimated)", - "1964-07-21": "Prophet's Birthday* (*estimated)", + "1964-05-12": "Islamic New Year (estimated)", + "1964-07-21": "Prophet's Birthday (estimated)", "1964-07-25": "Republic Day", "1964-08-13": "Women's Day", "1964-10-15": "Evacuation Day", "1965-01-01": "New Year's Day", "1965-01-14": "Revolution and Youth Day", - "1965-02-02": "Eid al-Fitr* (*estimated)", - "1965-02-03": "Eid al-Fitr Holiday* (*estimated)", - "1965-02-04": "Eid al-Fitr Holiday* (*estimated)", + "1965-02-02": "Eid al-Fitr (estimated)", + "1965-02-03": "Eid al-Fitr Holiday (estimated)", + "1965-02-04": "Eid al-Fitr Holiday (estimated)", "1965-03-20": "Independence Day", "1965-04-09": "Martyrs' Day", - "1965-04-10": "Arafat Day* (*estimated)", - "1965-04-11": "Eid al-Adha* (*estimated)", - "1965-04-12": "Eid al-Adha Holiday* (*estimated)", - "1965-04-13": "Eid al-Adha Holiday* (*estimated)", - "1965-05-01": "Islamic New Year* (*estimated); Labor Day", - "1965-07-10": "Prophet's Birthday* (*estimated)", + "1965-04-10": "Arafat Day (estimated)", + "1965-04-11": "Eid al-Adha (estimated)", + "1965-04-12": "Eid al-Adha Holiday (estimated)", + "1965-04-13": "Eid al-Adha Holiday (estimated)", + "1965-05-01": "Islamic New Year (estimated); Labor Day", + "1965-07-10": "Prophet's Birthday (estimated)", "1965-07-25": "Republic Day", "1965-08-13": "Women's Day", "1965-10-15": "Evacuation Day", "1966-01-01": "New Year's Day", "1966-01-14": "Revolution and Youth Day", - "1966-01-22": "Eid al-Fitr* (*estimated)", - "1966-01-23": "Eid al-Fitr Holiday* (*estimated)", - "1966-01-24": "Eid al-Fitr Holiday* (*estimated)", + "1966-01-22": "Eid al-Fitr (estimated)", + "1966-01-23": "Eid al-Fitr Holiday (estimated)", + "1966-01-24": "Eid al-Fitr Holiday (estimated)", "1966-03-20": "Independence Day", - "1966-03-31": "Arafat Day* (*estimated)", - "1966-04-01": "Eid al-Adha* (*estimated)", - "1966-04-02": "Eid al-Adha Holiday* (*estimated)", - "1966-04-03": "Eid al-Adha Holiday* (*estimated)", + "1966-03-31": "Arafat Day (estimated)", + "1966-04-01": "Eid al-Adha (estimated)", + "1966-04-02": "Eid al-Adha Holiday (estimated)", + "1966-04-03": "Eid al-Adha Holiday (estimated)", "1966-04-09": "Martyrs' Day", - "1966-04-21": "Islamic New Year* (*estimated)", + "1966-04-21": "Islamic New Year (estimated)", "1966-05-01": "Labor Day", - "1966-07-01": "Prophet's Birthday* (*estimated)", + "1966-07-01": "Prophet's Birthday (estimated)", "1966-07-25": "Republic Day", "1966-08-13": "Women's Day", "1966-10-15": "Evacuation Day", "1967-01-01": "New Year's Day", - "1967-01-12": "Eid al-Fitr* (*estimated)", - "1967-01-13": "Eid al-Fitr Holiday* (*estimated)", - "1967-01-14": "Eid al-Fitr Holiday* (*estimated); Revolution and Youth Day", - "1967-03-20": "Arafat Day* (*estimated); Independence Day", - "1967-03-21": "Eid al-Adha* (*estimated)", - "1967-03-22": "Eid al-Adha Holiday* (*estimated)", - "1967-03-23": "Eid al-Adha Holiday* (*estimated)", + "1967-01-12": "Eid al-Fitr (estimated)", + "1967-01-13": "Eid al-Fitr Holiday (estimated)", + "1967-01-14": "Eid al-Fitr Holiday (estimated); Revolution and Youth Day", + "1967-03-20": "Arafat Day (estimated); Independence Day", + "1967-03-21": "Eid al-Adha (estimated)", + "1967-03-22": "Eid al-Adha Holiday (estimated)", + "1967-03-23": "Eid al-Adha Holiday (estimated)", "1967-04-09": "Martyrs' Day", - "1967-04-11": "Islamic New Year* (*estimated)", + "1967-04-11": "Islamic New Year (estimated)", "1967-05-01": "Labor Day", - "1967-06-19": "Prophet's Birthday* (*estimated)", + "1967-06-19": "Prophet's Birthday (estimated)", "1967-07-25": "Republic Day", "1967-08-13": "Women's Day", "1967-10-15": "Evacuation Day", - "1968-01-01": "Eid al-Fitr* (*estimated); New Year's Day", - "1968-01-02": "Eid al-Fitr Holiday* (*estimated)", - "1968-01-03": "Eid al-Fitr Holiday* (*estimated)", + "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", + "1968-01-02": "Eid al-Fitr Holiday (estimated)", + "1968-01-03": "Eid al-Fitr Holiday (estimated)", "1968-01-14": "Revolution and Youth Day", - "1968-03-08": "Arafat Day* (*estimated)", - "1968-03-09": "Eid al-Adha* (*estimated)", - "1968-03-10": "Eid al-Adha Holiday* (*estimated)", - "1968-03-11": "Eid al-Adha Holiday* (*estimated)", + "1968-03-08": "Arafat Day (estimated)", + "1968-03-09": "Eid al-Adha (estimated)", + "1968-03-10": "Eid al-Adha Holiday (estimated)", + "1968-03-11": "Eid al-Adha Holiday (estimated)", "1968-03-20": "Independence Day", - "1968-03-30": "Islamic New Year* (*estimated)", + "1968-03-30": "Islamic New Year (estimated)", "1968-04-09": "Martyrs' Day", "1968-05-01": "Labor Day", - "1968-06-08": "Prophet's Birthday* (*estimated)", + "1968-06-08": "Prophet's Birthday (estimated)", "1968-07-25": "Republic Day", "1968-08-13": "Women's Day", "1968-10-15": "Evacuation Day", - "1968-12-21": "Eid al-Fitr* (*estimated)", - "1968-12-22": "Eid al-Fitr Holiday* (*estimated)", - "1968-12-23": "Eid al-Fitr Holiday* (*estimated)", + "1968-12-21": "Eid al-Fitr (estimated)", + "1968-12-22": "Eid al-Fitr Holiday (estimated)", + "1968-12-23": "Eid al-Fitr Holiday (estimated)", "1969-01-01": "New Year's Day", "1969-01-14": "Revolution and Youth Day", - "1969-02-26": "Arafat Day* (*estimated)", - "1969-02-27": "Eid al-Adha* (*estimated)", - "1969-02-28": "Eid al-Adha Holiday* (*estimated)", - "1969-03-01": "Eid al-Adha Holiday* (*estimated)", - "1969-03-19": "Islamic New Year* (*estimated)", + "1969-02-26": "Arafat Day (estimated)", + "1969-02-27": "Eid al-Adha (estimated)", + "1969-02-28": "Eid al-Adha Holiday (estimated)", + "1969-03-01": "Eid al-Adha Holiday (estimated)", + "1969-03-19": "Islamic New Year (estimated)", "1969-03-20": "Independence Day", "1969-04-09": "Martyrs' Day", "1969-05-01": "Labor Day", - "1969-05-28": "Prophet's Birthday* (*estimated)", + "1969-05-28": "Prophet's Birthday (estimated)", "1969-07-25": "Republic Day", "1969-08-13": "Women's Day", "1969-10-15": "Evacuation Day", - "1969-12-10": "Eid al-Fitr* (*estimated)", - "1969-12-11": "Eid al-Fitr Holiday* (*estimated)", - "1969-12-12": "Eid al-Fitr Holiday* (*estimated)", + "1969-12-10": "Eid al-Fitr (estimated)", + "1969-12-11": "Eid al-Fitr Holiday (estimated)", + "1969-12-12": "Eid al-Fitr Holiday (estimated)", "1970-01-01": "New Year's Day", "1970-01-14": "Revolution and Youth Day", - "1970-02-15": "Arafat Day* (*estimated)", - "1970-02-16": "Eid al-Adha* (*estimated)", - "1970-02-17": "Eid al-Adha Holiday* (*estimated)", - "1970-02-18": "Eid al-Adha Holiday* (*estimated)", - "1970-03-09": "Islamic New Year* (*estimated)", + "1970-02-15": "Arafat Day (estimated)", + "1970-02-16": "Eid al-Adha (estimated)", + "1970-02-17": "Eid al-Adha Holiday (estimated)", + "1970-02-18": "Eid al-Adha Holiday (estimated)", + "1970-03-09": "Islamic New Year (estimated)", "1970-03-20": "Independence Day", "1970-04-09": "Martyrs' Day", "1970-05-01": "Labor Day", - "1970-05-18": "Prophet's Birthday* (*estimated)", + "1970-05-18": "Prophet's Birthday (estimated)", "1970-07-25": "Republic Day", "1970-08-13": "Women's Day", "1970-10-15": "Evacuation Day", - "1970-11-30": "Eid al-Fitr* (*estimated)", - "1970-12-01": "Eid al-Fitr Holiday* (*estimated)", - "1970-12-02": "Eid al-Fitr Holiday* (*estimated)", + "1970-11-30": "Eid al-Fitr (estimated)", + "1970-12-01": "Eid al-Fitr Holiday (estimated)", + "1970-12-02": "Eid al-Fitr Holiday (estimated)", "1971-01-01": "New Year's Day", "1971-01-14": "Revolution and Youth Day", - "1971-02-05": "Arafat Day* (*estimated)", - "1971-02-06": "Eid al-Adha* (*estimated)", - "1971-02-07": "Eid al-Adha Holiday* (*estimated)", - "1971-02-08": "Eid al-Adha Holiday* (*estimated)", - "1971-02-26": "Islamic New Year* (*estimated)", + "1971-02-05": "Arafat Day (estimated)", + "1971-02-06": "Eid al-Adha (estimated)", + "1971-02-07": "Eid al-Adha Holiday (estimated)", + "1971-02-08": "Eid al-Adha Holiday (estimated)", + "1971-02-26": "Islamic New Year (estimated)", "1971-03-20": "Independence Day", "1971-04-09": "Martyrs' Day", "1971-05-01": "Labor Day", - "1971-05-07": "Prophet's Birthday* (*estimated)", + "1971-05-07": "Prophet's Birthday (estimated)", "1971-07-25": "Republic Day", "1971-08-13": "Women's Day", "1971-10-15": "Evacuation Day", - "1971-11-19": "Eid al-Fitr* (*estimated)", - "1971-11-20": "Eid al-Fitr Holiday* (*estimated)", - "1971-11-21": "Eid al-Fitr Holiday* (*estimated)", + "1971-11-19": "Eid al-Fitr (estimated)", + "1971-11-20": "Eid al-Fitr Holiday (estimated)", + "1971-11-21": "Eid al-Fitr Holiday (estimated)", "1972-01-01": "New Year's Day", "1972-01-14": "Revolution and Youth Day", - "1972-01-25": "Arafat Day* (*estimated)", - "1972-01-26": "Eid al-Adha* (*estimated)", - "1972-01-27": "Eid al-Adha Holiday* (*estimated)", - "1972-01-28": "Eid al-Adha Holiday* (*estimated)", - "1972-02-16": "Islamic New Year* (*estimated)", + "1972-01-25": "Arafat Day (estimated)", + "1972-01-26": "Eid al-Adha (estimated)", + "1972-01-27": "Eid al-Adha Holiday (estimated)", + "1972-01-28": "Eid al-Adha Holiday (estimated)", + "1972-02-16": "Islamic New Year (estimated)", "1972-03-20": "Independence Day", "1972-04-09": "Martyrs' Day", - "1972-04-25": "Prophet's Birthday* (*estimated)", + "1972-04-25": "Prophet's Birthday (estimated)", "1972-05-01": "Labor Day", "1972-07-25": "Republic Day", "1972-08-13": "Women's Day", "1972-10-15": "Evacuation Day", - "1972-11-07": "Eid al-Fitr* (*estimated)", - "1972-11-08": "Eid al-Fitr Holiday* (*estimated)", - "1972-11-09": "Eid al-Fitr Holiday* (*estimated)", + "1972-11-07": "Eid al-Fitr (estimated)", + "1972-11-08": "Eid al-Fitr Holiday (estimated)", + "1972-11-09": "Eid al-Fitr Holiday (estimated)", "1973-01-01": "New Year's Day", - "1973-01-13": "Arafat Day* (*estimated)", - "1973-01-14": "Eid al-Adha* (*estimated); Revolution and Youth Day", - "1973-01-15": "Eid al-Adha Holiday* (*estimated)", - "1973-01-16": "Eid al-Adha Holiday* (*estimated)", - "1973-02-04": "Islamic New Year* (*estimated)", + "1973-01-13": "Arafat Day (estimated)", + "1973-01-14": "Eid al-Adha (estimated); Revolution and Youth Day", + "1973-01-15": "Eid al-Adha Holiday (estimated)", + "1973-01-16": "Eid al-Adha Holiday (estimated)", + "1973-02-04": "Islamic New Year (estimated)", "1973-03-20": "Independence Day", "1973-04-09": "Martyrs' Day", - "1973-04-15": "Prophet's Birthday* (*estimated)", + "1973-04-15": "Prophet's Birthday (estimated)", "1973-05-01": "Labor Day", "1973-07-25": "Republic Day", "1973-08-13": "Women's Day", "1973-10-15": "Evacuation Day", - "1973-10-27": "Eid al-Fitr* (*estimated)", - "1973-10-28": "Eid al-Fitr Holiday* (*estimated)", - "1973-10-29": "Eid al-Fitr Holiday* (*estimated)", + "1973-10-27": "Eid al-Fitr (estimated)", + "1973-10-28": "Eid al-Fitr Holiday (estimated)", + "1973-10-29": "Eid al-Fitr Holiday (estimated)", "1974-01-01": "New Year's Day", - "1974-01-02": "Arafat Day* (*estimated)", - "1974-01-03": "Eid al-Adha* (*estimated)", - "1974-01-04": "Eid al-Adha Holiday* (*estimated)", - "1974-01-05": "Eid al-Adha Holiday* (*estimated)", + "1974-01-02": "Arafat Day (estimated)", + "1974-01-03": "Eid al-Adha (estimated)", + "1974-01-04": "Eid al-Adha Holiday (estimated)", + "1974-01-05": "Eid al-Adha Holiday (estimated)", "1974-01-14": "Revolution and Youth Day", - "1974-01-24": "Islamic New Year* (*estimated)", + "1974-01-24": "Islamic New Year (estimated)", "1974-03-20": "Independence Day", - "1974-04-04": "Prophet's Birthday* (*estimated)", + "1974-04-04": "Prophet's Birthday (estimated)", "1974-04-09": "Martyrs' Day", "1974-05-01": "Labor Day", "1974-07-25": "Republic Day", "1974-08-13": "Women's Day", "1974-10-15": "Evacuation Day", - "1974-10-16": "Eid al-Fitr* (*estimated)", - "1974-10-17": "Eid al-Fitr Holiday* (*estimated)", - "1974-10-18": "Eid al-Fitr Holiday* (*estimated)", - "1974-12-23": "Arafat Day* (*estimated)", - "1974-12-24": "Eid al-Adha* (*estimated)", - "1974-12-25": "Eid al-Adha Holiday* (*estimated)", - "1974-12-26": "Eid al-Adha Holiday* (*estimated)", + "1974-10-16": "Eid al-Fitr (estimated)", + "1974-10-17": "Eid al-Fitr Holiday (estimated)", + "1974-10-18": "Eid al-Fitr Holiday (estimated)", + "1974-12-23": "Arafat Day (estimated)", + "1974-12-24": "Eid al-Adha (estimated)", + "1974-12-25": "Eid al-Adha Holiday (estimated)", + "1974-12-26": "Eid al-Adha Holiday (estimated)", "1975-01-01": "New Year's Day", - "1975-01-13": "Islamic New Year* (*estimated)", + "1975-01-13": "Islamic New Year (estimated)", "1975-01-14": "Revolution and Youth Day", "1975-03-20": "Independence Day", - "1975-03-24": "Prophet's Birthday* (*estimated)", + "1975-03-24": "Prophet's Birthday (estimated)", "1975-04-09": "Martyrs' Day", "1975-05-01": "Labor Day", "1975-07-25": "Republic Day", "1975-08-13": "Women's Day", - "1975-10-06": "Eid al-Fitr* (*estimated)", - "1975-10-07": "Eid al-Fitr Holiday* (*estimated)", - "1975-10-08": "Eid al-Fitr Holiday* (*estimated)", + "1975-10-06": "Eid al-Fitr (estimated)", + "1975-10-07": "Eid al-Fitr Holiday (estimated)", + "1975-10-08": "Eid al-Fitr Holiday (estimated)", "1975-10-15": "Evacuation Day", - "1975-12-12": "Arafat Day* (*estimated)", - "1975-12-13": "Eid al-Adha* (*estimated)", - "1975-12-14": "Eid al-Adha Holiday* (*estimated)", - "1975-12-15": "Eid al-Adha Holiday* (*estimated)", + "1975-12-12": "Arafat Day (estimated)", + "1975-12-13": "Eid al-Adha (estimated)", + "1975-12-14": "Eid al-Adha Holiday (estimated)", + "1975-12-15": "Eid al-Adha Holiday (estimated)", "1976-01-01": "New Year's Day", - "1976-01-02": "Islamic New Year* (*estimated)", + "1976-01-02": "Islamic New Year (estimated)", "1976-01-14": "Revolution and Youth Day", - "1976-03-12": "Prophet's Birthday* (*estimated)", + "1976-03-12": "Prophet's Birthday (estimated)", "1976-03-20": "Independence Day", "1976-04-09": "Martyrs' Day", "1976-05-01": "Labor Day", "1976-07-25": "Republic Day", "1976-08-13": "Women's Day", - "1976-09-24": "Eid al-Fitr* (*estimated)", - "1976-09-25": "Eid al-Fitr Holiday* (*estimated)", - "1976-09-26": "Eid al-Fitr Holiday* (*estimated)", + "1976-09-24": "Eid al-Fitr (estimated)", + "1976-09-25": "Eid al-Fitr Holiday (estimated)", + "1976-09-26": "Eid al-Fitr Holiday (estimated)", "1976-10-15": "Evacuation Day", - "1976-11-30": "Arafat Day* (*estimated)", - "1976-12-01": "Eid al-Adha* (*estimated)", - "1976-12-02": "Eid al-Adha Holiday* (*estimated)", - "1976-12-03": "Eid al-Adha Holiday* (*estimated)", - "1976-12-22": "Islamic New Year* (*estimated)", + "1976-11-30": "Arafat Day (estimated)", + "1976-12-01": "Eid al-Adha (estimated)", + "1976-12-02": "Eid al-Adha Holiday (estimated)", + "1976-12-03": "Eid al-Adha Holiday (estimated)", + "1976-12-22": "Islamic New Year (estimated)", "1977-01-01": "New Year's Day", "1977-01-14": "Revolution and Youth Day", - "1977-03-02": "Prophet's Birthday* (*estimated)", + "1977-03-02": "Prophet's Birthday (estimated)", "1977-03-20": "Independence Day", "1977-04-09": "Martyrs' Day", "1977-05-01": "Labor Day", "1977-07-25": "Republic Day", "1977-08-13": "Women's Day", - "1977-09-14": "Eid al-Fitr* (*estimated)", - "1977-09-15": "Eid al-Fitr Holiday* (*estimated)", - "1977-09-16": "Eid al-Fitr Holiday* (*estimated)", + "1977-09-14": "Eid al-Fitr (estimated)", + "1977-09-15": "Eid al-Fitr Holiday (estimated)", + "1977-09-16": "Eid al-Fitr Holiday (estimated)", "1977-10-15": "Evacuation Day", - "1977-11-20": "Arafat Day* (*estimated)", - "1977-11-21": "Eid al-Adha* (*estimated)", - "1977-11-22": "Eid al-Adha Holiday* (*estimated)", - "1977-11-23": "Eid al-Adha Holiday* (*estimated)", - "1977-12-11": "Islamic New Year* (*estimated)", + "1977-11-20": "Arafat Day (estimated)", + "1977-11-21": "Eid al-Adha (estimated)", + "1977-11-22": "Eid al-Adha Holiday (estimated)", + "1977-11-23": "Eid al-Adha Holiday (estimated)", + "1977-12-11": "Islamic New Year (estimated)", "1978-01-01": "New Year's Day", "1978-01-14": "Revolution and Youth Day", - "1978-02-19": "Prophet's Birthday* (*estimated)", + "1978-02-19": "Prophet's Birthday (estimated)", "1978-03-20": "Independence Day", "1978-04-09": "Martyrs' Day", "1978-05-01": "Labor Day", "1978-07-25": "Republic Day", "1978-08-13": "Women's Day", - "1978-09-03": "Eid al-Fitr* (*estimated)", - "1978-09-04": "Eid al-Fitr Holiday* (*estimated)", - "1978-09-05": "Eid al-Fitr Holiday* (*estimated)", + "1978-09-03": "Eid al-Fitr (estimated)", + "1978-09-04": "Eid al-Fitr Holiday (estimated)", + "1978-09-05": "Eid al-Fitr Holiday (estimated)", "1978-10-15": "Evacuation Day", - "1978-11-09": "Arafat Day* (*estimated)", - "1978-11-10": "Eid al-Adha* (*estimated)", - "1978-11-11": "Eid al-Adha Holiday* (*estimated)", - "1978-11-12": "Eid al-Adha Holiday* (*estimated)", - "1978-12-01": "Islamic New Year* (*estimated)", + "1978-11-09": "Arafat Day (estimated)", + "1978-11-10": "Eid al-Adha (estimated)", + "1978-11-11": "Eid al-Adha Holiday (estimated)", + "1978-11-12": "Eid al-Adha Holiday (estimated)", + "1978-12-01": "Islamic New Year (estimated)", "1979-01-01": "New Year's Day", "1979-01-14": "Revolution and Youth Day", - "1979-02-09": "Prophet's Birthday* (*estimated)", + "1979-02-09": "Prophet's Birthday (estimated)", "1979-03-20": "Independence Day", "1979-04-09": "Martyrs' Day", "1979-05-01": "Labor Day", "1979-07-25": "Republic Day", "1979-08-13": "Women's Day", - "1979-08-23": "Eid al-Fitr* (*estimated)", - "1979-08-24": "Eid al-Fitr Holiday* (*estimated)", - "1979-08-25": "Eid al-Fitr Holiday* (*estimated)", + "1979-08-23": "Eid al-Fitr (estimated)", + "1979-08-24": "Eid al-Fitr Holiday (estimated)", + "1979-08-25": "Eid al-Fitr Holiday (estimated)", "1979-10-15": "Evacuation Day", - "1979-10-30": "Arafat Day* (*estimated)", - "1979-10-31": "Eid al-Adha* (*estimated)", - "1979-11-01": "Eid al-Adha Holiday* (*estimated)", - "1979-11-02": "Eid al-Adha Holiday* (*estimated)", - "1979-11-20": "Islamic New Year* (*estimated)", + "1979-10-30": "Arafat Day (estimated)", + "1979-10-31": "Eid al-Adha (estimated)", + "1979-11-01": "Eid al-Adha Holiday (estimated)", + "1979-11-02": "Eid al-Adha Holiday (estimated)", + "1979-11-20": "Islamic New Year (estimated)", "1980-01-01": "New Year's Day", "1980-01-14": "Revolution and Youth Day", - "1980-01-30": "Prophet's Birthday* (*estimated)", + "1980-01-30": "Prophet's Birthday (estimated)", "1980-03-20": "Independence Day", "1980-04-09": "Martyrs' Day", "1980-05-01": "Labor Day", "1980-07-25": "Republic Day", - "1980-08-12": "Eid al-Fitr* (*estimated)", - "1980-08-13": "Eid al-Fitr Holiday* (*estimated); Women's Day", - "1980-08-14": "Eid al-Fitr Holiday* (*estimated)", + "1980-08-12": "Eid al-Fitr (estimated)", + "1980-08-13": "Eid al-Fitr Holiday (estimated); Women's Day", + "1980-08-14": "Eid al-Fitr Holiday (estimated)", "1980-10-15": "Evacuation Day", - "1980-10-18": "Arafat Day* (*estimated)", - "1980-10-19": "Eid al-Adha* (*estimated)", - "1980-10-20": "Eid al-Adha Holiday* (*estimated)", - "1980-10-21": "Eid al-Adha Holiday* (*estimated)", - "1980-11-09": "Islamic New Year* (*estimated)", + "1980-10-18": "Arafat Day (estimated)", + "1980-10-19": "Eid al-Adha (estimated)", + "1980-10-20": "Eid al-Adha Holiday (estimated)", + "1980-10-21": "Eid al-Adha Holiday (estimated)", + "1980-11-09": "Islamic New Year (estimated)", "1981-01-01": "New Year's Day", "1981-01-14": "Revolution and Youth Day", - "1981-01-18": "Prophet's Birthday* (*estimated)", + "1981-01-18": "Prophet's Birthday (estimated)", "1981-03-20": "Independence Day", "1981-04-09": "Martyrs' Day", "1981-05-01": "Labor Day", "1981-07-25": "Republic Day", - "1981-08-01": "Eid al-Fitr* (*estimated)", - "1981-08-02": "Eid al-Fitr Holiday* (*estimated)", - "1981-08-03": "Eid al-Fitr Holiday* (*estimated)", + "1981-08-01": "Eid al-Fitr (estimated)", + "1981-08-02": "Eid al-Fitr Holiday (estimated)", + "1981-08-03": "Eid al-Fitr Holiday (estimated)", "1981-08-13": "Women's Day", - "1981-10-07": "Arafat Day* (*estimated)", - "1981-10-08": "Eid al-Adha* (*estimated)", - "1981-10-09": "Eid al-Adha Holiday* (*estimated)", - "1981-10-10": "Eid al-Adha Holiday* (*estimated)", + "1981-10-07": "Arafat Day (estimated)", + "1981-10-08": "Eid al-Adha (estimated)", + "1981-10-09": "Eid al-Adha Holiday (estimated)", + "1981-10-10": "Eid al-Adha Holiday (estimated)", "1981-10-15": "Evacuation Day", - "1981-10-28": "Islamic New Year* (*estimated)", + "1981-10-28": "Islamic New Year (estimated)", "1982-01-01": "New Year's Day", - "1982-01-07": "Prophet's Birthday* (*estimated)", + "1982-01-07": "Prophet's Birthday (estimated)", "1982-01-14": "Revolution and Youth Day", "1982-03-20": "Independence Day", "1982-04-09": "Martyrs' Day", "1982-05-01": "Labor Day", - "1982-07-21": "Eid al-Fitr* (*estimated)", - "1982-07-22": "Eid al-Fitr Holiday* (*estimated)", - "1982-07-23": "Eid al-Fitr Holiday* (*estimated)", + "1982-07-21": "Eid al-Fitr (estimated)", + "1982-07-22": "Eid al-Fitr Holiday (estimated)", + "1982-07-23": "Eid al-Fitr Holiday (estimated)", "1982-07-25": "Republic Day", "1982-08-13": "Women's Day", - "1982-09-26": "Arafat Day* (*estimated)", - "1982-09-27": "Eid al-Adha* (*estimated)", - "1982-09-28": "Eid al-Adha Holiday* (*estimated)", - "1982-09-29": "Eid al-Adha Holiday* (*estimated)", + "1982-09-26": "Arafat Day (estimated)", + "1982-09-27": "Eid al-Adha (estimated)", + "1982-09-28": "Eid al-Adha Holiday (estimated)", + "1982-09-29": "Eid al-Adha Holiday (estimated)", "1982-10-15": "Evacuation Day", - "1982-10-18": "Islamic New Year* (*estimated)", - "1982-12-27": "Prophet's Birthday* (*estimated)", + "1982-10-18": "Islamic New Year (estimated)", + "1982-12-27": "Prophet's Birthday (estimated)", "1983-01-01": "New Year's Day", "1983-01-14": "Revolution and Youth Day", "1983-03-20": "Independence Day", "1983-04-09": "Martyrs' Day", "1983-05-01": "Labor Day", - "1983-07-11": "Eid al-Fitr* (*estimated)", - "1983-07-12": "Eid al-Fitr Holiday* (*estimated)", - "1983-07-13": "Eid al-Fitr Holiday* (*estimated)", + "1983-07-11": "Eid al-Fitr (estimated)", + "1983-07-12": "Eid al-Fitr Holiday (estimated)", + "1983-07-13": "Eid al-Fitr Holiday (estimated)", "1983-07-25": "Republic Day", "1983-08-13": "Women's Day", - "1983-09-16": "Arafat Day* (*estimated)", - "1983-09-17": "Eid al-Adha* (*estimated)", - "1983-09-18": "Eid al-Adha Holiday* (*estimated)", - "1983-09-19": "Eid al-Adha Holiday* (*estimated)", - "1983-10-07": "Islamic New Year* (*estimated)", + "1983-09-16": "Arafat Day (estimated)", + "1983-09-17": "Eid al-Adha (estimated)", + "1983-09-18": "Eid al-Adha Holiday (estimated)", + "1983-09-19": "Eid al-Adha Holiday (estimated)", + "1983-10-07": "Islamic New Year (estimated)", "1983-10-15": "Evacuation Day", - "1983-12-16": "Prophet's Birthday* (*estimated)", + "1983-12-16": "Prophet's Birthday (estimated)", "1984-01-01": "New Year's Day", "1984-01-14": "Revolution and Youth Day", "1984-03-20": "Independence Day", "1984-04-09": "Martyrs' Day", "1984-05-01": "Labor Day", - "1984-06-30": "Eid al-Fitr* (*estimated)", - "1984-07-01": "Eid al-Fitr Holiday* (*estimated)", - "1984-07-02": "Eid al-Fitr Holiday* (*estimated)", + "1984-06-30": "Eid al-Fitr (estimated)", + "1984-07-01": "Eid al-Fitr Holiday (estimated)", + "1984-07-02": "Eid al-Fitr Holiday (estimated)", "1984-07-25": "Republic Day", "1984-08-13": "Women's Day", - "1984-09-04": "Arafat Day* (*estimated)", - "1984-09-05": "Eid al-Adha* (*estimated)", - "1984-09-06": "Eid al-Adha Holiday* (*estimated)", - "1984-09-07": "Eid al-Adha Holiday* (*estimated)", - "1984-09-26": "Islamic New Year* (*estimated)", + "1984-09-04": "Arafat Day (estimated)", + "1984-09-05": "Eid al-Adha (estimated)", + "1984-09-06": "Eid al-Adha Holiday (estimated)", + "1984-09-07": "Eid al-Adha Holiday (estimated)", + "1984-09-26": "Islamic New Year (estimated)", "1984-10-15": "Evacuation Day", - "1984-12-04": "Prophet's Birthday* (*estimated)", + "1984-12-04": "Prophet's Birthday (estimated)", "1985-01-01": "New Year's Day", "1985-01-14": "Revolution and Youth Day", "1985-03-20": "Independence Day", "1985-04-09": "Martyrs' Day", "1985-05-01": "Labor Day", - "1985-06-19": "Eid al-Fitr* (*estimated)", - "1985-06-20": "Eid al-Fitr Holiday* (*estimated)", - "1985-06-21": "Eid al-Fitr Holiday* (*estimated)", + "1985-06-19": "Eid al-Fitr (estimated)", + "1985-06-20": "Eid al-Fitr Holiday (estimated)", + "1985-06-21": "Eid al-Fitr Holiday (estimated)", "1985-07-25": "Republic Day", "1985-08-13": "Women's Day", - "1985-08-25": "Arafat Day* (*estimated)", - "1985-08-26": "Eid al-Adha* (*estimated)", - "1985-08-27": "Eid al-Adha Holiday* (*estimated)", - "1985-08-28": "Eid al-Adha Holiday* (*estimated)", - "1985-09-15": "Islamic New Year* (*estimated)", + "1985-08-25": "Arafat Day (estimated)", + "1985-08-26": "Eid al-Adha (estimated)", + "1985-08-27": "Eid al-Adha Holiday (estimated)", + "1985-08-28": "Eid al-Adha Holiday (estimated)", + "1985-09-15": "Islamic New Year (estimated)", "1985-10-15": "Evacuation Day", - "1985-11-24": "Prophet's Birthday* (*estimated)", + "1985-11-24": "Prophet's Birthday (estimated)", "1986-01-01": "New Year's Day", "1986-01-14": "Revolution and Youth Day", "1986-03-20": "Independence Day", "1986-04-09": "Martyrs' Day", "1986-05-01": "Labor Day", - "1986-06-08": "Eid al-Fitr* (*estimated)", - "1986-06-09": "Eid al-Fitr Holiday* (*estimated)", - "1986-06-10": "Eid al-Fitr Holiday* (*estimated)", + "1986-06-08": "Eid al-Fitr (estimated)", + "1986-06-09": "Eid al-Fitr Holiday (estimated)", + "1986-06-10": "Eid al-Fitr Holiday (estimated)", "1986-07-25": "Republic Day", "1986-08-13": "Women's Day", - "1986-08-14": "Arafat Day* (*estimated)", - "1986-08-15": "Eid al-Adha* (*estimated)", - "1986-08-16": "Eid al-Adha Holiday* (*estimated)", - "1986-08-17": "Eid al-Adha Holiday* (*estimated)", - "1986-09-05": "Islamic New Year* (*estimated)", + "1986-08-14": "Arafat Day (estimated)", + "1986-08-15": "Eid al-Adha (estimated)", + "1986-08-16": "Eid al-Adha Holiday (estimated)", + "1986-08-17": "Eid al-Adha Holiday (estimated)", + "1986-09-05": "Islamic New Year (estimated)", "1986-10-15": "Evacuation Day", - "1986-11-14": "Prophet's Birthday* (*estimated)", + "1986-11-14": "Prophet's Birthday (estimated)", "1987-01-01": "New Year's Day", "1987-01-14": "Revolution and Youth Day", "1987-03-20": "Independence Day", "1987-04-09": "Martyrs' Day", "1987-05-01": "Labor Day", - "1987-05-28": "Eid al-Fitr* (*estimated)", - "1987-05-29": "Eid al-Fitr Holiday* (*estimated)", - "1987-05-30": "Eid al-Fitr Holiday* (*estimated)", + "1987-05-28": "Eid al-Fitr (estimated)", + "1987-05-29": "Eid al-Fitr Holiday (estimated)", + "1987-05-30": "Eid al-Fitr Holiday (estimated)", "1987-07-25": "Republic Day", - "1987-08-03": "Arafat Day* (*estimated)", - "1987-08-04": "Eid al-Adha* (*estimated)", - "1987-08-05": "Eid al-Adha Holiday* (*estimated)", - "1987-08-06": "Eid al-Adha Holiday* (*estimated)", + "1987-08-03": "Arafat Day (estimated)", + "1987-08-04": "Eid al-Adha (estimated)", + "1987-08-05": "Eid al-Adha Holiday (estimated)", + "1987-08-06": "Eid al-Adha Holiday (estimated)", "1987-08-13": "Women's Day", - "1987-08-25": "Islamic New Year* (*estimated)", + "1987-08-25": "Islamic New Year (estimated)", "1987-10-15": "Evacuation Day", - "1987-11-03": "Prophet's Birthday* (*estimated)", + "1987-11-03": "Prophet's Birthday (estimated)", "1988-01-01": "New Year's Day", "1988-01-14": "Revolution and Youth Day", "1988-03-20": "Independence Day", "1988-04-09": "Martyrs' Day", "1988-05-01": "Labor Day", - "1988-05-16": "Eid al-Fitr* (*estimated)", - "1988-05-17": "Eid al-Fitr Holiday* (*estimated)", - "1988-05-18": "Eid al-Fitr Holiday* (*estimated)", - "1988-07-22": "Arafat Day* (*estimated)", - "1988-07-23": "Eid al-Adha* (*estimated)", - "1988-07-24": "Eid al-Adha Holiday* (*estimated)", - "1988-07-25": "Eid al-Adha Holiday* (*estimated); Republic Day", - "1988-08-13": "Islamic New Year* (*estimated); Women's Day", + "1988-05-16": "Eid al-Fitr (estimated)", + "1988-05-17": "Eid al-Fitr Holiday (estimated)", + "1988-05-18": "Eid al-Fitr Holiday (estimated)", + "1988-07-22": "Arafat Day (estimated)", + "1988-07-23": "Eid al-Adha (estimated)", + "1988-07-24": "Eid al-Adha Holiday (estimated)", + "1988-07-25": "Eid al-Adha Holiday (estimated); Republic Day", + "1988-08-13": "Islamic New Year (estimated); Women's Day", "1988-10-15": "Evacuation Day", - "1988-10-22": "Prophet's Birthday* (*estimated)", + "1988-10-22": "Prophet's Birthday (estimated)", "1989-01-01": "New Year's Day", "1989-01-14": "Revolution and Youth Day", "1989-03-20": "Independence Day", "1989-04-09": "Martyrs' Day", "1989-05-01": "Labor Day", - "1989-05-06": "Eid al-Fitr* (*estimated)", - "1989-05-07": "Eid al-Fitr Holiday* (*estimated)", - "1989-05-08": "Eid al-Fitr Holiday* (*estimated)", - "1989-07-12": "Arafat Day* (*estimated)", - "1989-07-13": "Eid al-Adha* (*estimated)", - "1989-07-14": "Eid al-Adha Holiday* (*estimated)", - "1989-07-15": "Eid al-Adha Holiday* (*estimated)", + "1989-05-06": "Eid al-Fitr (estimated)", + "1989-05-07": "Eid al-Fitr Holiday (estimated)", + "1989-05-08": "Eid al-Fitr Holiday (estimated)", + "1989-07-12": "Arafat Day (estimated)", + "1989-07-13": "Eid al-Adha (estimated)", + "1989-07-14": "Eid al-Adha Holiday (estimated)", + "1989-07-15": "Eid al-Adha Holiday (estimated)", "1989-07-25": "Republic Day", - "1989-08-02": "Islamic New Year* (*estimated)", + "1989-08-02": "Islamic New Year (estimated)", "1989-08-13": "Women's Day", - "1989-10-11": "Prophet's Birthday* (*estimated)", + "1989-10-11": "Prophet's Birthday (estimated)", "1989-10-15": "Evacuation Day", "1990-01-01": "New Year's Day", "1990-01-14": "Revolution and Youth Day", "1990-03-20": "Independence Day", "1990-04-09": "Martyrs' Day", - "1990-04-26": "Eid al-Fitr* (*estimated)", - "1990-04-27": "Eid al-Fitr Holiday* (*estimated)", - "1990-04-28": "Eid al-Fitr Holiday* (*estimated)", + "1990-04-26": "Eid al-Fitr (estimated)", + "1990-04-27": "Eid al-Fitr Holiday (estimated)", + "1990-04-28": "Eid al-Fitr Holiday (estimated)", "1990-05-01": "Labor Day", - "1990-07-01": "Arafat Day* (*estimated)", - "1990-07-02": "Eid al-Adha* (*estimated)", - "1990-07-03": "Eid al-Adha Holiday* (*estimated)", - "1990-07-04": "Eid al-Adha Holiday* (*estimated)", - "1990-07-23": "Islamic New Year* (*estimated)", + "1990-07-01": "Arafat Day (estimated)", + "1990-07-02": "Eid al-Adha (estimated)", + "1990-07-03": "Eid al-Adha Holiday (estimated)", + "1990-07-04": "Eid al-Adha Holiday (estimated)", + "1990-07-23": "Islamic New Year (estimated)", "1990-07-25": "Republic Day", "1990-08-13": "Women's Day", - "1990-10-01": "Prophet's Birthday* (*estimated)", + "1990-10-01": "Prophet's Birthday (estimated)", "1990-10-15": "Evacuation Day", "1991-01-01": "New Year's Day", "1991-01-14": "Revolution and Youth Day", "1991-03-20": "Independence Day", "1991-04-09": "Martyrs' Day", - "1991-04-15": "Eid al-Fitr* (*estimated)", - "1991-04-16": "Eid al-Fitr Holiday* (*estimated)", - "1991-04-17": "Eid al-Fitr Holiday* (*estimated)", + "1991-04-15": "Eid al-Fitr (estimated)", + "1991-04-16": "Eid al-Fitr Holiday (estimated)", + "1991-04-17": "Eid al-Fitr Holiday (estimated)", "1991-05-01": "Labor Day", - "1991-06-21": "Arafat Day* (*estimated)", - "1991-06-22": "Eid al-Adha* (*estimated)", - "1991-06-23": "Eid al-Adha Holiday* (*estimated)", - "1991-06-24": "Eid al-Adha Holiday* (*estimated)", - "1991-07-12": "Islamic New Year* (*estimated)", + "1991-06-21": "Arafat Day (estimated)", + "1991-06-22": "Eid al-Adha (estimated)", + "1991-06-23": "Eid al-Adha Holiday (estimated)", + "1991-06-24": "Eid al-Adha Holiday (estimated)", + "1991-07-12": "Islamic New Year (estimated)", "1991-07-25": "Republic Day", "1991-08-13": "Women's Day", - "1991-09-20": "Prophet's Birthday* (*estimated)", + "1991-09-20": "Prophet's Birthday (estimated)", "1991-10-15": "Evacuation Day", "1992-01-01": "New Year's Day", "1992-01-14": "Revolution and Youth Day", "1992-03-20": "Independence Day", - "1992-04-04": "Eid al-Fitr* (*estimated)", - "1992-04-05": "Eid al-Fitr Holiday* (*estimated)", - "1992-04-06": "Eid al-Fitr Holiday* (*estimated)", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-04-05": "Eid al-Fitr Holiday (estimated)", + "1992-04-06": "Eid al-Fitr Holiday (estimated)", "1992-04-09": "Martyrs' Day", "1992-05-01": "Labor Day", - "1992-06-10": "Arafat Day* (*estimated)", - "1992-06-11": "Eid al-Adha* (*estimated)", - "1992-06-12": "Eid al-Adha Holiday* (*estimated)", - "1992-06-13": "Eid al-Adha Holiday* (*estimated)", - "1992-07-01": "Islamic New Year* (*estimated)", + "1992-06-10": "Arafat Day (estimated)", + "1992-06-11": "Eid al-Adha (estimated)", + "1992-06-12": "Eid al-Adha Holiday (estimated)", + "1992-06-13": "Eid al-Adha Holiday (estimated)", + "1992-07-01": "Islamic New Year (estimated)", "1992-07-25": "Republic Day", "1992-08-13": "Women's Day", - "1992-09-09": "Prophet's Birthday* (*estimated)", + "1992-09-09": "Prophet's Birthday (estimated)", "1992-10-15": "Evacuation Day", "1993-01-01": "New Year's Day", "1993-01-14": "Revolution and Youth Day", "1993-03-20": "Independence Day", - "1993-03-24": "Eid al-Fitr* (*estimated)", - "1993-03-25": "Eid al-Fitr Holiday* (*estimated)", - "1993-03-26": "Eid al-Fitr Holiday* (*estimated)", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-03-25": "Eid al-Fitr Holiday (estimated)", + "1993-03-26": "Eid al-Fitr Holiday (estimated)", "1993-04-09": "Martyrs' Day", "1993-05-01": "Labor Day", - "1993-05-30": "Arafat Day* (*estimated)", - "1993-05-31": "Eid al-Adha* (*estimated)", - "1993-06-01": "Eid al-Adha Holiday* (*estimated)", - "1993-06-02": "Eid al-Adha Holiday* (*estimated)", - "1993-06-21": "Islamic New Year* (*estimated)", + "1993-05-30": "Arafat Day (estimated)", + "1993-05-31": "Eid al-Adha (estimated)", + "1993-06-01": "Eid al-Adha Holiday (estimated)", + "1993-06-02": "Eid al-Adha Holiday (estimated)", + "1993-06-21": "Islamic New Year (estimated)", "1993-07-25": "Republic Day", "1993-08-13": "Women's Day", - "1993-08-29": "Prophet's Birthday* (*estimated)", + "1993-08-29": "Prophet's Birthday (estimated)", "1993-10-15": "Evacuation Day", "1994-01-01": "New Year's Day", "1994-01-14": "Revolution and Youth Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", - "1994-03-14": "Eid al-Fitr Holiday* (*estimated)", - "1994-03-15": "Eid al-Fitr Holiday* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-14": "Eid al-Fitr Holiday (estimated)", + "1994-03-15": "Eid al-Fitr Holiday (estimated)", "1994-03-20": "Independence Day", "1994-04-09": "Martyrs' Day", "1994-05-01": "Labor Day", - "1994-05-19": "Arafat Day* (*estimated)", - "1994-05-20": "Eid al-Adha* (*estimated)", - "1994-05-21": "Eid al-Adha Holiday* (*estimated)", - "1994-05-22": "Eid al-Adha Holiday* (*estimated)", - "1994-06-10": "Islamic New Year* (*estimated)", + "1994-05-19": "Arafat Day (estimated)", + "1994-05-20": "Eid al-Adha (estimated)", + "1994-05-21": "Eid al-Adha Holiday (estimated)", + "1994-05-22": "Eid al-Adha Holiday (estimated)", + "1994-06-10": "Islamic New Year (estimated)", "1994-07-25": "Republic Day", "1994-08-13": "Women's Day", - "1994-08-19": "Prophet's Birthday* (*estimated)", + "1994-08-19": "Prophet's Birthday (estimated)", "1994-10-15": "Evacuation Day", "1995-01-01": "New Year's Day", "1995-01-14": "Revolution and Youth Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", - "1995-03-03": "Eid al-Fitr Holiday* (*estimated)", - "1995-03-04": "Eid al-Fitr Holiday* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", + "1995-03-03": "Eid al-Fitr Holiday (estimated)", + "1995-03-04": "Eid al-Fitr Holiday (estimated)", "1995-03-20": "Independence Day", "1995-04-09": "Martyrs' Day", "1995-05-01": "Labor Day", - "1995-05-08": "Arafat Day* (*estimated)", - "1995-05-09": "Eid al-Adha* (*estimated)", - "1995-05-10": "Eid al-Adha Holiday* (*estimated)", - "1995-05-11": "Eid al-Adha Holiday* (*estimated)", - "1995-05-30": "Islamic New Year* (*estimated)", + "1995-05-08": "Arafat Day (estimated)", + "1995-05-09": "Eid al-Adha (estimated)", + "1995-05-10": "Eid al-Adha Holiday (estimated)", + "1995-05-11": "Eid al-Adha Holiday (estimated)", + "1995-05-30": "Islamic New Year (estimated)", "1995-07-25": "Republic Day", - "1995-08-08": "Prophet's Birthday* (*estimated)", + "1995-08-08": "Prophet's Birthday (estimated)", "1995-08-13": "Women's Day", "1995-10-15": "Evacuation Day", "1996-01-01": "New Year's Day", "1996-01-14": "Revolution and Youth Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", - "1996-02-20": "Eid al-Fitr Holiday* (*estimated)", - "1996-02-21": "Eid al-Fitr Holiday* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", + "1996-02-20": "Eid al-Fitr Holiday (estimated)", + "1996-02-21": "Eid al-Fitr Holiday (estimated)", "1996-03-20": "Independence Day", "1996-04-09": "Martyrs' Day", - "1996-04-26": "Arafat Day* (*estimated)", - "1996-04-27": "Eid al-Adha* (*estimated)", - "1996-04-28": "Eid al-Adha Holiday* (*estimated)", - "1996-04-29": "Eid al-Adha Holiday* (*estimated)", + "1996-04-26": "Arafat Day (estimated)", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-04-28": "Eid al-Adha Holiday (estimated)", + "1996-04-29": "Eid al-Adha Holiday (estimated)", "1996-05-01": "Labor Day", - "1996-05-18": "Islamic New Year* (*estimated)", + "1996-05-18": "Islamic New Year (estimated)", "1996-07-25": "Republic Day", - "1996-07-27": "Prophet's Birthday* (*estimated)", + "1996-07-27": "Prophet's Birthday (estimated)", "1996-08-13": "Women's Day", "1996-10-15": "Evacuation Day", "1997-01-01": "New Year's Day", "1997-01-14": "Revolution and Youth Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", - "1997-02-09": "Eid al-Fitr Holiday* (*estimated)", - "1997-02-10": "Eid al-Fitr Holiday* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", + "1997-02-09": "Eid al-Fitr Holiday (estimated)", + "1997-02-10": "Eid al-Fitr Holiday (estimated)", "1997-03-20": "Independence Day", "1997-04-09": "Martyrs' Day", - "1997-04-16": "Arafat Day* (*estimated)", - "1997-04-17": "Eid al-Adha* (*estimated)", - "1997-04-18": "Eid al-Adha Holiday* (*estimated)", - "1997-04-19": "Eid al-Adha Holiday* (*estimated)", + "1997-04-16": "Arafat Day (estimated)", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-04-18": "Eid al-Adha Holiday (estimated)", + "1997-04-19": "Eid al-Adha Holiday (estimated)", "1997-05-01": "Labor Day", - "1997-05-07": "Islamic New Year* (*estimated)", - "1997-07-16": "Prophet's Birthday* (*estimated)", + "1997-05-07": "Islamic New Year (estimated)", + "1997-07-16": "Prophet's Birthday (estimated)", "1997-07-25": "Republic Day", "1997-08-13": "Women's Day", "1997-10-15": "Evacuation Day", "1998-01-01": "New Year's Day", "1998-01-14": "Revolution and Youth Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-01-30": "Eid al-Fitr Holiday* (*estimated)", - "1998-01-31": "Eid al-Fitr Holiday* (*estimated)", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-01-30": "Eid al-Fitr Holiday (estimated)", + "1998-01-31": "Eid al-Fitr Holiday (estimated)", "1998-03-20": "Independence Day", - "1998-04-06": "Arafat Day* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated)", - "1998-04-08": "Eid al-Adha Holiday* (*estimated)", - "1998-04-09": "Eid al-Adha Holiday* (*estimated); Martyrs' Day", - "1998-04-27": "Islamic New Year* (*estimated)", + "1998-04-06": "Arafat Day (estimated)", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-04-08": "Eid al-Adha Holiday (estimated)", + "1998-04-09": "Eid al-Adha Holiday (estimated); Martyrs' Day", + "1998-04-27": "Islamic New Year (estimated)", "1998-05-01": "Labor Day", - "1998-07-06": "Prophet's Birthday* (*estimated)", + "1998-07-06": "Prophet's Birthday (estimated)", "1998-07-25": "Republic Day", "1998-08-13": "Women's Day", "1998-10-15": "Evacuation Day", "1999-01-01": "New Year's Day", "1999-01-14": "Revolution and Youth Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-01-19": "Eid al-Fitr Holiday* (*estimated)", - "1999-01-20": "Eid al-Fitr Holiday* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-01-19": "Eid al-Fitr Holiday (estimated)", + "1999-01-20": "Eid al-Fitr Holiday (estimated)", "1999-03-20": "Independence Day", - "1999-03-26": "Arafat Day* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", - "1999-03-28": "Eid al-Adha Holiday* (*estimated)", - "1999-03-29": "Eid al-Adha Holiday* (*estimated)", + "1999-03-26": "Arafat Day (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-03-28": "Eid al-Adha Holiday (estimated)", + "1999-03-29": "Eid al-Adha Holiday (estimated)", "1999-04-09": "Martyrs' Day", - "1999-04-17": "Islamic New Year* (*estimated)", + "1999-04-17": "Islamic New Year (estimated)", "1999-05-01": "Labor Day", - "1999-06-26": "Prophet's Birthday* (*estimated)", + "1999-06-26": "Prophet's Birthday (estimated)", "1999-07-25": "Republic Day", "1999-08-13": "Women's Day", "1999-10-15": "Evacuation Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", - "2000-01-09": "Eid al-Fitr Holiday* (*estimated)", - "2000-01-10": "Eid al-Fitr Holiday* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", + "2000-01-09": "Eid al-Fitr Holiday (estimated)", + "2000-01-10": "Eid al-Fitr Holiday (estimated)", "2000-01-14": "Revolution and Youth Day", - "2000-03-15": "Arafat Day* (*estimated)", - "2000-03-16": "Eid al-Adha* (*estimated)", - "2000-03-17": "Eid al-Adha Holiday* (*estimated)", - "2000-03-18": "Eid al-Adha Holiday* (*estimated)", + "2000-03-15": "Arafat Day (estimated)", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-17": "Eid al-Adha Holiday (estimated)", + "2000-03-18": "Eid al-Adha Holiday (estimated)", "2000-03-20": "Independence Day", - "2000-04-06": "Islamic New Year* (*estimated)", + "2000-04-06": "Islamic New Year (estimated)", "2000-04-09": "Martyrs' Day", "2000-05-01": "Labor Day", - "2000-06-14": "Prophet's Birthday* (*estimated)", + "2000-06-14": "Prophet's Birthday (estimated)", "2000-07-25": "Republic Day", "2000-08-13": "Women's Day", "2000-10-15": "Evacuation Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", - "2000-12-28": "Eid al-Fitr Holiday* (*estimated)", - "2000-12-29": "Eid al-Fitr Holiday* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2000-12-28": "Eid al-Fitr Holiday (estimated)", + "2000-12-29": "Eid al-Fitr Holiday (estimated)", "2001-01-01": "New Year's Day", "2001-01-14": "Revolution and Youth Day", - "2001-03-04": "Arafat Day* (*estimated)", - "2001-03-05": "Eid al-Adha* (*estimated)", - "2001-03-06": "Eid al-Adha Holiday* (*estimated)", - "2001-03-07": "Eid al-Adha Holiday* (*estimated)", + "2001-03-04": "Arafat Day (estimated)", + "2001-03-05": "Eid al-Adha (estimated)", + "2001-03-06": "Eid al-Adha Holiday (estimated)", + "2001-03-07": "Eid al-Adha Holiday (estimated)", "2001-03-20": "Independence Day", - "2001-03-26": "Islamic New Year* (*estimated)", + "2001-03-26": "Islamic New Year (estimated)", "2001-04-09": "Martyrs' Day", "2001-05-01": "Labor Day", - "2001-06-04": "Prophet's Birthday* (*estimated)", + "2001-06-04": "Prophet's Birthday (estimated)", "2001-07-25": "Republic Day", "2001-08-13": "Women's Day", "2001-10-15": "Evacuation Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", - "2001-12-17": "Eid al-Fitr Holiday* (*estimated)", - "2001-12-18": "Eid al-Fitr Holiday* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2001-12-17": "Eid al-Fitr Holiday (estimated)", + "2001-12-18": "Eid al-Fitr Holiday (estimated)", "2002-01-01": "New Year's Day", "2002-01-14": "Revolution and Youth Day", - "2002-02-21": "Arafat Day* (*estimated)", - "2002-02-22": "Eid al-Adha* (*estimated)", - "2002-02-23": "Eid al-Adha Holiday* (*estimated)", - "2002-02-24": "Eid al-Adha Holiday* (*estimated)", - "2002-03-15": "Islamic New Year* (*estimated)", + "2002-02-21": "Arafat Day (estimated)", + "2002-02-22": "Eid al-Adha (estimated)", + "2002-02-23": "Eid al-Adha Holiday (estimated)", + "2002-02-24": "Eid al-Adha Holiday (estimated)", + "2002-03-15": "Islamic New Year (estimated)", "2002-03-20": "Independence Day", "2002-04-09": "Martyrs' Day", "2002-05-01": "Labor Day", - "2002-05-24": "Prophet's Birthday* (*estimated)", + "2002-05-24": "Prophet's Birthday (estimated)", "2002-07-25": "Republic Day", "2002-08-13": "Women's Day", "2002-10-15": "Evacuation Day", - "2002-12-05": "Eid al-Fitr* (*estimated)", - "2002-12-06": "Eid al-Fitr Holiday* (*estimated)", - "2002-12-07": "Eid al-Fitr Holiday* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", + "2002-12-06": "Eid al-Fitr Holiday (estimated)", + "2002-12-07": "Eid al-Fitr Holiday (estimated)", "2003-01-01": "New Year's Day", "2003-01-14": "Revolution and Youth Day", - "2003-02-10": "Arafat Day* (*estimated)", - "2003-02-11": "Eid al-Adha* (*estimated)", - "2003-02-12": "Eid al-Adha Holiday* (*estimated)", - "2003-02-13": "Eid al-Adha Holiday* (*estimated)", - "2003-03-04": "Islamic New Year* (*estimated)", + "2003-02-10": "Arafat Day (estimated)", + "2003-02-11": "Eid al-Adha (estimated)", + "2003-02-12": "Eid al-Adha Holiday (estimated)", + "2003-02-13": "Eid al-Adha Holiday (estimated)", + "2003-03-04": "Islamic New Year (estimated)", "2003-03-20": "Independence Day", "2003-04-09": "Martyrs' Day", "2003-05-01": "Labor Day", - "2003-05-13": "Prophet's Birthday* (*estimated)", + "2003-05-13": "Prophet's Birthday (estimated)", "2003-07-25": "Republic Day", "2003-08-13": "Women's Day", "2003-10-15": "Evacuation Day", - "2003-11-25": "Eid al-Fitr* (*estimated)", - "2003-11-26": "Eid al-Fitr Holiday* (*estimated)", - "2003-11-27": "Eid al-Fitr Holiday* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", + "2003-11-26": "Eid al-Fitr Holiday (estimated)", + "2003-11-27": "Eid al-Fitr Holiday (estimated)", "2004-01-01": "New Year's Day", "2004-01-14": "Revolution and Youth Day", - "2004-01-31": "Arafat Day* (*estimated)", - "2004-02-01": "Eid al-Adha* (*estimated)", - "2004-02-02": "Eid al-Adha Holiday* (*estimated)", - "2004-02-03": "Eid al-Adha Holiday* (*estimated)", - "2004-02-21": "Islamic New Year* (*estimated)", + "2004-01-31": "Arafat Day (estimated)", + "2004-02-01": "Eid al-Adha (estimated)", + "2004-02-02": "Eid al-Adha Holiday (estimated)", + "2004-02-03": "Eid al-Adha Holiday (estimated)", + "2004-02-21": "Islamic New Year (estimated)", "2004-03-20": "Independence Day", "2004-04-09": "Martyrs' Day", - "2004-05-01": "Labor Day; Prophet's Birthday* (*estimated)", + "2004-05-01": "Labor Day; Prophet's Birthday (estimated)", "2004-07-25": "Republic Day", "2004-08-13": "Women's Day", "2004-10-15": "Evacuation Day", - "2004-11-14": "Eid al-Fitr* (*estimated)", - "2004-11-15": "Eid al-Fitr Holiday* (*estimated)", - "2004-11-16": "Eid al-Fitr Holiday* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", + "2004-11-15": "Eid al-Fitr Holiday (estimated)", + "2004-11-16": "Eid al-Fitr Holiday (estimated)", "2005-01-01": "New Year's Day", "2005-01-14": "Revolution and Youth Day", - "2005-01-20": "Arafat Day* (*estimated)", - "2005-01-21": "Eid al-Adha* (*estimated)", - "2005-01-22": "Eid al-Adha Holiday* (*estimated)", - "2005-01-23": "Eid al-Adha Holiday* (*estimated)", - "2005-02-10": "Islamic New Year* (*estimated)", + "2005-01-20": "Arafat Day (estimated)", + "2005-01-21": "Eid al-Adha (estimated)", + "2005-01-22": "Eid al-Adha Holiday (estimated)", + "2005-01-23": "Eid al-Adha Holiday (estimated)", + "2005-02-10": "Islamic New Year (estimated)", "2005-03-20": "Independence Day", "2005-04-09": "Martyrs' Day", - "2005-04-21": "Prophet's Birthday* (*estimated)", + "2005-04-21": "Prophet's Birthday (estimated)", "2005-05-01": "Labor Day", "2005-07-25": "Republic Day", "2005-08-13": "Women's Day", "2005-10-15": "Evacuation Day", - "2005-11-03": "Eid al-Fitr* (*estimated)", - "2005-11-04": "Eid al-Fitr Holiday* (*estimated)", - "2005-11-05": "Eid al-Fitr Holiday* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", + "2005-11-04": "Eid al-Fitr Holiday (estimated)", + "2005-11-05": "Eid al-Fitr Holiday (estimated)", "2006-01-01": "New Year's Day", - "2006-01-09": "Arafat Day* (*estimated)", - "2006-01-10": "Eid al-Adha* (*estimated)", - "2006-01-11": "Eid al-Adha Holiday* (*estimated)", - "2006-01-12": "Eid al-Adha Holiday* (*estimated)", + "2006-01-09": "Arafat Day (estimated)", + "2006-01-10": "Eid al-Adha (estimated)", + "2006-01-11": "Eid al-Adha Holiday (estimated)", + "2006-01-12": "Eid al-Adha Holiday (estimated)", "2006-01-14": "Revolution and Youth Day", - "2006-01-31": "Islamic New Year* (*estimated)", + "2006-01-31": "Islamic New Year (estimated)", "2006-03-20": "Independence Day", "2006-04-09": "Martyrs' Day", - "2006-04-10": "Prophet's Birthday* (*estimated)", + "2006-04-10": "Prophet's Birthday (estimated)", "2006-05-01": "Labor Day", "2006-07-25": "Republic Day", "2006-08-13": "Women's Day", "2006-10-15": "Evacuation Day", - "2006-10-23": "Eid al-Fitr* (*estimated)", - "2006-10-24": "Eid al-Fitr Holiday* (*estimated)", - "2006-10-25": "Eid al-Fitr Holiday* (*estimated)", - "2006-12-30": "Arafat Day* (*estimated)", - "2006-12-31": "Eid al-Adha* (*estimated)", - "2007-01-01": "Eid al-Adha Holiday* (*estimated); New Year's Day", - "2007-01-02": "Eid al-Adha Holiday* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", + "2006-10-24": "Eid al-Fitr Holiday (estimated)", + "2006-10-25": "Eid al-Fitr Holiday (estimated)", + "2006-12-30": "Arafat Day (estimated)", + "2006-12-31": "Eid al-Adha (estimated)", + "2007-01-01": "Eid al-Adha Holiday (estimated); New Year's Day", + "2007-01-02": "Eid al-Adha Holiday (estimated)", "2007-01-14": "Revolution and Youth Day", - "2007-01-20": "Islamic New Year* (*estimated)", + "2007-01-20": "Islamic New Year (estimated)", "2007-03-20": "Independence Day", - "2007-03-31": "Prophet's Birthday* (*estimated)", + "2007-03-31": "Prophet's Birthday (estimated)", "2007-04-09": "Martyrs' Day", "2007-05-01": "Labor Day", "2007-07-25": "Republic Day", "2007-08-13": "Women's Day", - "2007-10-13": "Eid al-Fitr* (*estimated)", - "2007-10-14": "Eid al-Fitr Holiday* (*estimated)", - "2007-10-15": "Eid al-Fitr Holiday* (*estimated); Evacuation Day", - "2007-12-19": "Arafat Day* (*estimated)", - "2007-12-20": "Eid al-Adha* (*estimated)", - "2007-12-21": "Eid al-Adha Holiday* (*estimated)", - "2007-12-22": "Eid al-Adha Holiday* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", + "2007-10-14": "Eid al-Fitr Holiday (estimated)", + "2007-10-15": "Eid al-Fitr Holiday (estimated); Evacuation Day", + "2007-12-19": "Arafat Day (estimated)", + "2007-12-20": "Eid al-Adha (estimated)", + "2007-12-21": "Eid al-Adha Holiday (estimated)", + "2007-12-22": "Eid al-Adha Holiday (estimated)", "2008-01-01": "New Year's Day", - "2008-01-10": "Islamic New Year* (*estimated)", + "2008-01-10": "Islamic New Year (estimated)", "2008-01-14": "Revolution and Youth Day", - "2008-03-20": "Independence Day; Prophet's Birthday* (*estimated)", + "2008-03-20": "Independence Day; Prophet's Birthday (estimated)", "2008-04-09": "Martyrs' Day", "2008-05-01": "Labor Day", "2008-07-25": "Republic Day", "2008-08-13": "Women's Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", - "2008-10-02": "Eid al-Fitr Holiday* (*estimated)", - "2008-10-03": "Eid al-Fitr Holiday* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", + "2008-10-02": "Eid al-Fitr Holiday (estimated)", + "2008-10-03": "Eid al-Fitr Holiday (estimated)", "2008-10-15": "Evacuation Day", - "2008-12-07": "Arafat Day* (*estimated)", - "2008-12-08": "Eid al-Adha* (*estimated)", - "2008-12-09": "Eid al-Adha Holiday* (*estimated)", - "2008-12-10": "Eid al-Adha Holiday* (*estimated)", - "2008-12-29": "Islamic New Year* (*estimated)", + "2008-12-07": "Arafat Day (estimated)", + "2008-12-08": "Eid al-Adha (estimated)", + "2008-12-09": "Eid al-Adha Holiday (estimated)", + "2008-12-10": "Eid al-Adha Holiday (estimated)", + "2008-12-29": "Islamic New Year (estimated)", "2009-01-01": "New Year's Day", "2009-01-14": "Revolution and Youth Day", - "2009-03-09": "Prophet's Birthday* (*estimated)", + "2009-03-09": "Prophet's Birthday (estimated)", "2009-03-20": "Independence Day", "2009-04-09": "Martyrs' Day", "2009-05-01": "Labor Day", "2009-07-25": "Republic Day", "2009-08-13": "Women's Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", - "2009-09-21": "Eid al-Fitr Holiday* (*estimated)", - "2009-09-22": "Eid al-Fitr Holiday* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", + "2009-09-21": "Eid al-Fitr Holiday (estimated)", + "2009-09-22": "Eid al-Fitr Holiday (estimated)", "2009-10-15": "Evacuation Day", - "2009-11-26": "Arafat Day* (*estimated)", - "2009-11-27": "Eid al-Adha* (*estimated)", - "2009-11-28": "Eid al-Adha Holiday* (*estimated)", - "2009-11-29": "Eid al-Adha Holiday* (*estimated)", - "2009-12-18": "Islamic New Year* (*estimated)", + "2009-11-26": "Arafat Day (estimated)", + "2009-11-27": "Eid al-Adha (estimated)", + "2009-11-28": "Eid al-Adha Holiday (estimated)", + "2009-11-29": "Eid al-Adha Holiday (estimated)", + "2009-12-18": "Islamic New Year (estimated)", "2010-01-01": "New Year's Day", "2010-01-14": "Revolution and Youth Day", - "2010-02-26": "Prophet's Birthday* (*estimated)", + "2010-02-26": "Prophet's Birthday (estimated)", "2010-03-20": "Independence Day", "2010-04-09": "Martyrs' Day", "2010-05-01": "Labor Day", "2010-07-25": "Republic Day", "2010-08-13": "Women's Day", - "2010-09-10": "Eid al-Fitr* (*estimated)", - "2010-09-11": "Eid al-Fitr Holiday* (*estimated)", - "2010-09-12": "Eid al-Fitr Holiday* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", + "2010-09-11": "Eid al-Fitr Holiday (estimated)", + "2010-09-12": "Eid al-Fitr Holiday (estimated)", "2010-10-15": "Evacuation Day", - "2010-11-15": "Arafat Day* (*estimated)", - "2010-11-16": "Eid al-Adha* (*estimated)", - "2010-11-17": "Eid al-Adha Holiday* (*estimated)", - "2010-11-18": "Eid al-Adha Holiday* (*estimated)", - "2010-12-07": "Islamic New Year* (*estimated)", + "2010-11-15": "Arafat Day (estimated)", + "2010-11-16": "Eid al-Adha (estimated)", + "2010-11-17": "Eid al-Adha Holiday (estimated)", + "2010-11-18": "Eid al-Adha Holiday (estimated)", + "2010-12-07": "Islamic New Year (estimated)", "2011-01-01": "New Year's Day", "2011-01-14": "Revolution and Youth Day", - "2011-02-15": "Prophet's Birthday* (*estimated)", + "2011-02-15": "Prophet's Birthday (estimated)", "2011-03-20": "Independence Day", "2011-04-09": "Martyrs' Day", "2011-05-01": "Labor Day", "2011-07-25": "Republic Day", "2011-08-13": "Women's Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", - "2011-08-31": "Eid al-Fitr Holiday* (*estimated)", - "2011-09-01": "Eid al-Fitr Holiday* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", + "2011-08-31": "Eid al-Fitr Holiday (estimated)", + "2011-09-01": "Eid al-Fitr Holiday (estimated)", "2011-10-15": "Evacuation Day", - "2011-11-05": "Arafat Day* (*estimated)", - "2011-11-06": "Eid al-Adha* (*estimated)", - "2011-11-07": "Eid al-Adha Holiday* (*estimated)", - "2011-11-08": "Eid al-Adha Holiday* (*estimated)", - "2011-11-26": "Islamic New Year* (*estimated)", + "2011-11-05": "Arafat Day (estimated)", + "2011-11-06": "Eid al-Adha (estimated)", + "2011-11-07": "Eid al-Adha Holiday (estimated)", + "2011-11-08": "Eid al-Adha Holiday (estimated)", + "2011-11-26": "Islamic New Year (estimated)", "2012-01-01": "New Year's Day", "2012-01-14": "Revolution and Youth Day", - "2012-02-04": "Prophet's Birthday* (*estimated)", + "2012-02-04": "Prophet's Birthday (estimated)", "2012-03-20": "Independence Day", "2012-04-09": "Martyrs' Day", "2012-05-01": "Labor Day", "2012-07-25": "Republic Day", "2012-08-13": "Women's Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", - "2012-08-20": "Eid al-Fitr Holiday* (*estimated)", - "2012-08-21": "Eid al-Fitr Holiday* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", + "2012-08-20": "Eid al-Fitr Holiday (estimated)", + "2012-08-21": "Eid al-Fitr Holiday (estimated)", "2012-10-15": "Evacuation Day", - "2012-10-25": "Arafat Day* (*estimated)", - "2012-10-26": "Eid al-Adha* (*estimated)", - "2012-10-27": "Eid al-Adha Holiday* (*estimated)", - "2012-10-28": "Eid al-Adha Holiday* (*estimated)", - "2012-11-15": "Islamic New Year* (*estimated)", + "2012-10-25": "Arafat Day (estimated)", + "2012-10-26": "Eid al-Adha (estimated)", + "2012-10-27": "Eid al-Adha Holiday (estimated)", + "2012-10-28": "Eid al-Adha Holiday (estimated)", + "2012-11-15": "Islamic New Year (estimated)", "2013-01-01": "New Year's Day", "2013-01-14": "Revolution and Youth Day", - "2013-01-24": "Prophet's Birthday* (*estimated)", + "2013-01-24": "Prophet's Birthday (estimated)", "2013-03-20": "Independence Day", "2013-04-09": "Martyrs' Day", "2013-05-01": "Labor Day", "2013-07-25": "Republic Day", - "2013-08-08": "Eid al-Fitr* (*estimated)", - "2013-08-09": "Eid al-Fitr Holiday* (*estimated)", - "2013-08-10": "Eid al-Fitr Holiday* (*estimated)", + "2013-08-08": "Eid al-Fitr (estimated)", + "2013-08-09": "Eid al-Fitr Holiday (estimated)", + "2013-08-10": "Eid al-Fitr Holiday (estimated)", "2013-08-13": "Women's Day", - "2013-10-14": "Arafat Day* (*estimated)", - "2013-10-15": "Eid al-Adha* (*estimated); Evacuation Day", - "2013-10-16": "Eid al-Adha Holiday* (*estimated)", - "2013-10-17": "Eid al-Adha Holiday* (*estimated)", - "2013-11-04": "Islamic New Year* (*estimated)", + "2013-10-14": "Arafat Day (estimated)", + "2013-10-15": "Eid al-Adha (estimated); Evacuation Day", + "2013-10-16": "Eid al-Adha Holiday (estimated)", + "2013-10-17": "Eid al-Adha Holiday (estimated)", + "2013-11-04": "Islamic New Year (estimated)", "2014-01-01": "New Year's Day", - "2014-01-13": "Prophet's Birthday* (*estimated)", + "2014-01-13": "Prophet's Birthday (estimated)", "2014-01-14": "Revolution and Youth Day", "2014-03-20": "Independence Day", "2014-04-09": "Martyrs' Day", "2014-05-01": "Labor Day", "2014-07-25": "Republic Day", - "2014-07-28": "Eid al-Fitr* (*estimated)", - "2014-07-29": "Eid al-Fitr Holiday* (*estimated)", - "2014-07-30": "Eid al-Fitr Holiday* (*estimated)", + "2014-07-28": "Eid al-Fitr (estimated)", + "2014-07-29": "Eid al-Fitr Holiday (estimated)", + "2014-07-30": "Eid al-Fitr Holiday (estimated)", "2014-08-13": "Women's Day", - "2014-10-03": "Arafat Day* (*estimated)", - "2014-10-04": "Eid al-Adha* (*estimated)", - "2014-10-05": "Eid al-Adha Holiday* (*estimated)", - "2014-10-06": "Eid al-Adha Holiday* (*estimated)", + "2014-10-03": "Arafat Day (estimated)", + "2014-10-04": "Eid al-Adha (estimated)", + "2014-10-05": "Eid al-Adha Holiday (estimated)", + "2014-10-06": "Eid al-Adha Holiday (estimated)", "2014-10-15": "Evacuation Day", - "2014-10-25": "Islamic New Year* (*estimated)", + "2014-10-25": "Islamic New Year (estimated)", "2015-01-01": "New Year's Day", - "2015-01-03": "Prophet's Birthday* (*estimated)", + "2015-01-03": "Prophet's Birthday (estimated)", "2015-01-14": "Revolution and Youth Day", "2015-03-20": "Independence Day", "2015-04-09": "Martyrs' Day", "2015-05-01": "Labor Day", - "2015-07-17": "Eid al-Fitr* (*estimated)", - "2015-07-18": "Eid al-Fitr Holiday* (*estimated)", - "2015-07-19": "Eid al-Fitr Holiday* (*estimated)", + "2015-07-17": "Eid al-Fitr (estimated)", + "2015-07-18": "Eid al-Fitr Holiday (estimated)", + "2015-07-19": "Eid al-Fitr Holiday (estimated)", "2015-07-25": "Republic Day", "2015-08-13": "Women's Day", - "2015-09-22": "Arafat Day* (*estimated)", - "2015-09-23": "Eid al-Adha* (*estimated)", - "2015-09-24": "Eid al-Adha Holiday* (*estimated)", - "2015-09-25": "Eid al-Adha Holiday* (*estimated)", - "2015-10-14": "Islamic New Year* (*estimated)", + "2015-09-22": "Arafat Day (estimated)", + "2015-09-23": "Eid al-Adha (estimated)", + "2015-09-24": "Eid al-Adha Holiday (estimated)", + "2015-09-25": "Eid al-Adha Holiday (estimated)", + "2015-10-14": "Islamic New Year (estimated)", "2015-10-15": "Evacuation Day", - "2015-12-23": "Prophet's Birthday* (*estimated)", + "2015-12-23": "Prophet's Birthday (estimated)", "2016-01-01": "New Year's Day", "2016-01-14": "Revolution and Youth Day", "2016-03-20": "Independence Day", "2016-04-09": "Martyrs' Day", "2016-05-01": "Labor Day", - "2016-07-06": "Eid al-Fitr* (*estimated)", - "2016-07-07": "Eid al-Fitr Holiday* (*estimated)", - "2016-07-08": "Eid al-Fitr Holiday* (*estimated)", + "2016-07-06": "Eid al-Fitr (estimated)", + "2016-07-07": "Eid al-Fitr Holiday (estimated)", + "2016-07-08": "Eid al-Fitr Holiday (estimated)", "2016-07-25": "Republic Day", "2016-08-13": "Women's Day", - "2016-09-10": "Arafat Day* (*estimated)", - "2016-09-11": "Eid al-Adha* (*estimated)", - "2016-09-12": "Eid al-Adha Holiday* (*estimated)", - "2016-09-13": "Eid al-Adha Holiday* (*estimated)", - "2016-10-02": "Islamic New Year* (*estimated)", + "2016-09-10": "Arafat Day (estimated)", + "2016-09-11": "Eid al-Adha (estimated)", + "2016-09-12": "Eid al-Adha Holiday (estimated)", + "2016-09-13": "Eid al-Adha Holiday (estimated)", + "2016-10-02": "Islamic New Year (estimated)", "2016-10-15": "Evacuation Day", - "2016-12-11": "Prophet's Birthday* (*estimated)", + "2016-12-11": "Prophet's Birthday (estimated)", "2017-01-01": "New Year's Day", "2017-01-14": "Revolution and Youth Day", "2017-03-20": "Independence Day", "2017-04-09": "Martyrs' Day", "2017-05-01": "Labor Day", - "2017-06-25": "Eid al-Fitr* (*estimated)", - "2017-06-26": "Eid al-Fitr Holiday* (*estimated)", - "2017-06-27": "Eid al-Fitr Holiday* (*estimated)", + "2017-06-25": "Eid al-Fitr (estimated)", + "2017-06-26": "Eid al-Fitr Holiday (estimated)", + "2017-06-27": "Eid al-Fitr Holiday (estimated)", "2017-07-25": "Republic Day", "2017-08-13": "Women's Day", - "2017-08-31": "Arafat Day* (*estimated)", - "2017-09-01": "Eid al-Adha* (*estimated)", - "2017-09-02": "Eid al-Adha Holiday* (*estimated)", - "2017-09-03": "Eid al-Adha Holiday* (*estimated)", - "2017-09-21": "Islamic New Year* (*estimated)", + "2017-08-31": "Arafat Day (estimated)", + "2017-09-01": "Eid al-Adha (estimated)", + "2017-09-02": "Eid al-Adha Holiday (estimated)", + "2017-09-03": "Eid al-Adha Holiday (estimated)", + "2017-09-21": "Islamic New Year (estimated)", "2017-10-15": "Evacuation Day", - "2017-11-30": "Prophet's Birthday* (*estimated)", + "2017-11-30": "Prophet's Birthday (estimated)", "2018-01-01": "New Year's Day", "2018-01-14": "Revolution and Youth Day", "2018-03-20": "Independence Day", "2018-04-09": "Martyrs' Day", "2018-05-01": "Labor Day", - "2018-06-15": "Eid al-Fitr* (*estimated)", - "2018-06-16": "Eid al-Fitr Holiday* (*estimated)", - "2018-06-17": "Eid al-Fitr Holiday* (*estimated)", + "2018-06-15": "Eid al-Fitr (estimated)", + "2018-06-16": "Eid al-Fitr Holiday (estimated)", + "2018-06-17": "Eid al-Fitr Holiday (estimated)", "2018-07-25": "Republic Day", "2018-08-13": "Women's Day", - "2018-08-20": "Arafat Day* (*estimated)", - "2018-08-21": "Eid al-Adha* (*estimated)", - "2018-08-22": "Eid al-Adha Holiday* (*estimated)", - "2018-08-23": "Eid al-Adha Holiday* (*estimated)", - "2018-09-11": "Islamic New Year* (*estimated)", + "2018-08-20": "Arafat Day (estimated)", + "2018-08-21": "Eid al-Adha (estimated)", + "2018-08-22": "Eid al-Adha Holiday (estimated)", + "2018-08-23": "Eid al-Adha Holiday (estimated)", + "2018-09-11": "Islamic New Year (estimated)", "2018-10-15": "Evacuation Day", - "2018-11-20": "Prophet's Birthday* (*estimated)", + "2018-11-20": "Prophet's Birthday (estimated)", "2019-01-01": "New Year's Day", "2019-01-14": "Revolution and Youth Day", "2019-03-20": "Independence Day", "2019-04-09": "Martyrs' Day", "2019-05-01": "Labor Day", - "2019-06-04": "Eid al-Fitr* (*estimated)", - "2019-06-05": "Eid al-Fitr Holiday* (*estimated)", - "2019-06-06": "Eid al-Fitr Holiday* (*estimated)", + "2019-06-04": "Eid al-Fitr (estimated)", + "2019-06-05": "Eid al-Fitr Holiday (estimated)", + "2019-06-06": "Eid al-Fitr Holiday (estimated)", "2019-07-25": "Republic Day", - "2019-08-10": "Arafat Day* (*estimated)", - "2019-08-11": "Eid al-Adha* (*estimated)", - "2019-08-12": "Eid al-Adha Holiday* (*estimated)", - "2019-08-13": "Eid al-Adha Holiday* (*estimated); Women's Day", - "2019-08-31": "Islamic New Year* (*estimated)", + "2019-08-10": "Arafat Day (estimated)", + "2019-08-11": "Eid al-Adha (estimated)", + "2019-08-12": "Eid al-Adha Holiday (estimated)", + "2019-08-13": "Eid al-Adha Holiday (estimated); Women's Day", + "2019-08-31": "Islamic New Year (estimated)", "2019-10-15": "Evacuation Day", - "2019-11-09": "Prophet's Birthday* (*estimated)", + "2019-11-09": "Prophet's Birthday (estimated)", "2020-01-01": "New Year's Day", "2020-01-14": "Revolution and Youth Day", "2020-03-20": "Independence Day", "2020-04-09": "Martyrs' Day", "2020-05-01": "Labor Day", - "2020-05-24": "Eid al-Fitr* (*estimated)", - "2020-05-25": "Eid al-Fitr Holiday* (*estimated)", - "2020-05-26": "Eid al-Fitr Holiday* (*estimated)", + "2020-05-24": "Eid al-Fitr (estimated)", + "2020-05-25": "Eid al-Fitr Holiday (estimated)", + "2020-05-26": "Eid al-Fitr Holiday (estimated)", "2020-07-25": "Republic Day", - "2020-07-30": "Arafat Day* (*estimated)", - "2020-07-31": "Eid al-Adha* (*estimated)", - "2020-08-01": "Eid al-Adha Holiday* (*estimated)", - "2020-08-02": "Eid al-Adha Holiday* (*estimated)", + "2020-07-30": "Arafat Day (estimated)", + "2020-07-31": "Eid al-Adha (estimated)", + "2020-08-01": "Eid al-Adha Holiday (estimated)", + "2020-08-02": "Eid al-Adha Holiday (estimated)", "2020-08-13": "Women's Day", - "2020-08-20": "Islamic New Year* (*estimated)", + "2020-08-20": "Islamic New Year (estimated)", "2020-10-15": "Evacuation Day", - "2020-10-29": "Prophet's Birthday* (*estimated)", + "2020-10-29": "Prophet's Birthday (estimated)", "2021-01-01": "New Year's Day", "2021-01-14": "Revolution and Youth Day", "2021-03-20": "Independence Day", "2021-04-09": "Martyrs' Day", "2021-05-01": "Labor Day", - "2021-05-13": "Eid al-Fitr* (*estimated)", - "2021-05-14": "Eid al-Fitr Holiday* (*estimated)", - "2021-05-15": "Eid al-Fitr Holiday* (*estimated)", - "2021-07-19": "Arafat Day* (*estimated)", - "2021-07-20": "Eid al-Adha* (*estimated)", - "2021-07-21": "Eid al-Adha Holiday* (*estimated)", - "2021-07-22": "Eid al-Adha Holiday* (*estimated)", + "2021-05-13": "Eid al-Fitr (estimated)", + "2021-05-14": "Eid al-Fitr Holiday (estimated)", + "2021-05-15": "Eid al-Fitr Holiday (estimated)", + "2021-07-19": "Arafat Day (estimated)", + "2021-07-20": "Eid al-Adha (estimated)", + "2021-07-21": "Eid al-Adha Holiday (estimated)", + "2021-07-22": "Eid al-Adha Holiday (estimated)", "2021-07-25": "Republic Day", - "2021-08-09": "Islamic New Year* (*estimated)", + "2021-08-09": "Islamic New Year (estimated)", "2021-08-13": "Women's Day", "2021-10-15": "Evacuation Day", - "2021-10-18": "Prophet's Birthday* (*estimated)", + "2021-10-18": "Prophet's Birthday (estimated)", "2022-01-01": "New Year's Day", "2022-01-14": "Revolution and Youth Day", "2022-03-20": "Independence Day", "2022-04-09": "Martyrs' Day", "2022-05-01": "Labor Day", - "2022-05-02": "Eid al-Fitr* (*estimated)", - "2022-05-03": "Eid al-Fitr Holiday* (*estimated)", - "2022-05-04": "Eid al-Fitr Holiday* (*estimated)", - "2022-07-08": "Arafat Day* (*estimated)", - "2022-07-09": "Eid al-Adha* (*estimated)", - "2022-07-10": "Eid al-Adha Holiday* (*estimated)", - "2022-07-11": "Eid al-Adha Holiday* (*estimated)", + "2022-05-02": "Eid al-Fitr (estimated)", + "2022-05-03": "Eid al-Fitr Holiday (estimated)", + "2022-05-04": "Eid al-Fitr Holiday (estimated)", + "2022-07-08": "Arafat Day (estimated)", + "2022-07-09": "Eid al-Adha (estimated)", + "2022-07-10": "Eid al-Adha Holiday (estimated)", + "2022-07-11": "Eid al-Adha Holiday (estimated)", "2022-07-25": "Republic Day", - "2022-07-30": "Islamic New Year* (*estimated)", + "2022-07-30": "Islamic New Year (estimated)", "2022-08-13": "Women's Day", - "2022-10-08": "Prophet's Birthday* (*estimated)", + "2022-10-08": "Prophet's Birthday (estimated)", "2022-10-15": "Evacuation Day", "2023-01-01": "New Year's Day", "2023-01-14": "Revolution and Youth Day", "2023-03-20": "Independence Day", "2023-04-09": "Martyrs' Day", - "2023-04-21": "Eid al-Fitr* (*estimated)", - "2023-04-22": "Eid al-Fitr Holiday* (*estimated)", - "2023-04-23": "Eid al-Fitr Holiday* (*estimated)", + "2023-04-21": "Eid al-Fitr (estimated)", + "2023-04-22": "Eid al-Fitr Holiday (estimated)", + "2023-04-23": "Eid al-Fitr Holiday (estimated)", "2023-05-01": "Labor Day", - "2023-06-27": "Arafat Day* (*estimated)", - "2023-06-28": "Eid al-Adha* (*estimated)", - "2023-06-29": "Eid al-Adha Holiday* (*estimated)", - "2023-06-30": "Eid al-Adha Holiday* (*estimated)", - "2023-07-19": "Islamic New Year* (*estimated)", + "2023-06-27": "Arafat Day (estimated)", + "2023-06-28": "Eid al-Adha (estimated)", + "2023-06-29": "Eid al-Adha Holiday (estimated)", + "2023-06-30": "Eid al-Adha Holiday (estimated)", + "2023-07-19": "Islamic New Year (estimated)", "2023-07-25": "Republic Day", "2023-08-13": "Women's Day", - "2023-09-27": "Prophet's Birthday* (*estimated)", + "2023-09-27": "Prophet's Birthday (estimated)", "2023-10-15": "Evacuation Day", "2024-01-01": "New Year's Day", "2024-01-14": "Revolution and Youth Day", "2024-03-20": "Independence Day", "2024-04-09": "Martyrs' Day", - "2024-04-10": "Eid al-Fitr* (*estimated)", - "2024-04-11": "Eid al-Fitr Holiday* (*estimated)", - "2024-04-12": "Eid al-Fitr Holiday* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Eid al-Fitr Holiday (estimated)", + "2024-04-12": "Eid al-Fitr Holiday (estimated)", "2024-05-01": "Labor Day", - "2024-06-15": "Arafat Day* (*estimated)", - "2024-06-16": "Eid al-Adha* (*estimated)", - "2024-06-17": "Eid al-Adha Holiday* (*estimated)", - "2024-06-18": "Eid al-Adha Holiday* (*estimated)", - "2024-07-07": "Islamic New Year* (*estimated)", + "2024-06-15": "Arafat Day (estimated)", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha Holiday (estimated)", + "2024-06-18": "Eid al-Adha Holiday (estimated)", + "2024-07-07": "Islamic New Year (estimated)", "2024-07-25": "Republic Day", "2024-08-13": "Women's Day", - "2024-09-15": "Prophet's Birthday* (*estimated)", + "2024-09-15": "Prophet's Birthday (estimated)", "2024-10-15": "Evacuation Day", "2025-01-01": "New Year's Day", "2025-01-14": "Revolution and Youth Day", "2025-03-20": "Independence Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", - "2025-03-31": "Eid al-Fitr Holiday* (*estimated)", - "2025-04-01": "Eid al-Fitr Holiday* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr Holiday (estimated)", + "2025-04-01": "Eid al-Fitr Holiday (estimated)", "2025-04-09": "Martyrs' Day", "2025-05-01": "Labor Day", - "2025-06-05": "Arafat Day* (*estimated)", - "2025-06-06": "Eid al-Adha* (*estimated)", - "2025-06-07": "Eid al-Adha Holiday* (*estimated)", - "2025-06-08": "Eid al-Adha Holiday* (*estimated)", - "2025-06-26": "Islamic New Year* (*estimated)", + "2025-06-05": "Arafat Day (estimated)", + "2025-06-06": "Eid al-Adha (estimated)", + "2025-06-07": "Eid al-Adha Holiday (estimated)", + "2025-06-08": "Eid al-Adha Holiday (estimated)", + "2025-06-26": "Islamic New Year (estimated)", "2025-07-25": "Republic Day", "2025-08-13": "Women's Day", - "2025-09-04": "Prophet's Birthday* (*estimated)", + "2025-09-04": "Prophet's Birthday (estimated)", "2025-10-15": "Evacuation Day", "2026-01-01": "New Year's Day", "2026-01-14": "Revolution and Youth Day", - "2026-03-20": "Eid al-Fitr* (*estimated); Independence Day", - "2026-03-21": "Eid al-Fitr Holiday* (*estimated)", - "2026-03-22": "Eid al-Fitr Holiday* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated); Independence Day", + "2026-03-21": "Eid al-Fitr Holiday (estimated)", + "2026-03-22": "Eid al-Fitr Holiday (estimated)", "2026-04-09": "Martyrs' Day", "2026-05-01": "Labor Day", - "2026-05-26": "Arafat Day* (*estimated)", - "2026-05-27": "Eid al-Adha* (*estimated)", - "2026-05-28": "Eid al-Adha Holiday* (*estimated)", - "2026-05-29": "Eid al-Adha Holiday* (*estimated)", - "2026-06-16": "Islamic New Year* (*estimated)", + "2026-05-26": "Arafat Day (estimated)", + "2026-05-27": "Eid al-Adha (estimated)", + "2026-05-28": "Eid al-Adha Holiday (estimated)", + "2026-05-29": "Eid al-Adha Holiday (estimated)", + "2026-06-16": "Islamic New Year (estimated)", "2026-07-25": "Republic Day", "2026-08-13": "Women's Day", - "2026-08-25": "Prophet's Birthday* (*estimated)", + "2026-08-25": "Prophet's Birthday (estimated)", "2026-10-15": "Evacuation Day", "2027-01-01": "New Year's Day", "2027-01-14": "Revolution and Youth Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", - "2027-03-10": "Eid al-Fitr Holiday* (*estimated)", - "2027-03-11": "Eid al-Fitr Holiday* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-10": "Eid al-Fitr Holiday (estimated)", + "2027-03-11": "Eid al-Fitr Holiday (estimated)", "2027-03-20": "Independence Day", "2027-04-09": "Martyrs' Day", "2027-05-01": "Labor Day", - "2027-05-15": "Arafat Day* (*estimated)", - "2027-05-16": "Eid al-Adha* (*estimated)", - "2027-05-17": "Eid al-Adha Holiday* (*estimated)", - "2027-05-18": "Eid al-Adha Holiday* (*estimated)", - "2027-06-06": "Islamic New Year* (*estimated)", + "2027-05-15": "Arafat Day (estimated)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha Holiday (estimated)", + "2027-05-18": "Eid al-Adha Holiday (estimated)", + "2027-06-06": "Islamic New Year (estimated)", "2027-07-25": "Republic Day", "2027-08-13": "Women's Day", - "2027-08-14": "Prophet's Birthday* (*estimated)", + "2027-08-14": "Prophet's Birthday (estimated)", "2027-10-15": "Evacuation Day", "2028-01-01": "New Year's Day", "2028-01-14": "Revolution and Youth Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", - "2028-02-27": "Eid al-Fitr Holiday* (*estimated)", - "2028-02-28": "Eid al-Fitr Holiday* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-27": "Eid al-Fitr Holiday (estimated)", + "2028-02-28": "Eid al-Fitr Holiday (estimated)", "2028-03-20": "Independence Day", "2028-04-09": "Martyrs' Day", "2028-05-01": "Labor Day", - "2028-05-04": "Arafat Day* (*estimated)", - "2028-05-05": "Eid al-Adha* (*estimated)", - "2028-05-06": "Eid al-Adha Holiday* (*estimated)", - "2028-05-07": "Eid al-Adha Holiday* (*estimated)", - "2028-05-25": "Islamic New Year* (*estimated)", + "2028-05-04": "Arafat Day (estimated)", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-06": "Eid al-Adha Holiday (estimated)", + "2028-05-07": "Eid al-Adha Holiday (estimated)", + "2028-05-25": "Islamic New Year (estimated)", "2028-07-25": "Republic Day", - "2028-08-03": "Prophet's Birthday* (*estimated)", + "2028-08-03": "Prophet's Birthday (estimated)", "2028-08-13": "Women's Day", "2028-10-15": "Evacuation Day", "2029-01-01": "New Year's Day", "2029-01-14": "Revolution and Youth Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", - "2029-02-15": "Eid al-Fitr Holiday* (*estimated)", - "2029-02-16": "Eid al-Fitr Holiday* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", + "2029-02-15": "Eid al-Fitr Holiday (estimated)", + "2029-02-16": "Eid al-Fitr Holiday (estimated)", "2029-03-20": "Independence Day", "2029-04-09": "Martyrs' Day", - "2029-04-23": "Arafat Day* (*estimated)", - "2029-04-24": "Eid al-Adha* (*estimated)", - "2029-04-25": "Eid al-Adha Holiday* (*estimated)", - "2029-04-26": "Eid al-Adha Holiday* (*estimated)", + "2029-04-23": "Arafat Day (estimated)", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-04-25": "Eid al-Adha Holiday (estimated)", + "2029-04-26": "Eid al-Adha Holiday (estimated)", "2029-05-01": "Labor Day", - "2029-05-14": "Islamic New Year* (*estimated)", - "2029-07-24": "Prophet's Birthday* (*estimated)", + "2029-05-14": "Islamic New Year (estimated)", + "2029-07-24": "Prophet's Birthday (estimated)", "2029-07-25": "Republic Day", "2029-08-13": "Women's Day", "2029-10-15": "Evacuation Day", "2030-01-01": "New Year's Day", "2030-01-14": "Revolution and Youth Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", - "2030-02-05": "Eid al-Fitr Holiday* (*estimated)", - "2030-02-06": "Eid al-Fitr Holiday* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", + "2030-02-05": "Eid al-Fitr Holiday (estimated)", + "2030-02-06": "Eid al-Fitr Holiday (estimated)", "2030-03-20": "Independence Day", "2030-04-09": "Martyrs' Day", - "2030-04-12": "Arafat Day* (*estimated)", - "2030-04-13": "Eid al-Adha* (*estimated)", - "2030-04-14": "Eid al-Adha Holiday* (*estimated)", - "2030-04-15": "Eid al-Adha Holiday* (*estimated)", + "2030-04-12": "Arafat Day (estimated)", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-14": "Eid al-Adha Holiday (estimated)", + "2030-04-15": "Eid al-Adha Holiday (estimated)", "2030-05-01": "Labor Day", - "2030-05-03": "Islamic New Year* (*estimated)", - "2030-07-13": "Prophet's Birthday* (*estimated)", + "2030-05-03": "Islamic New Year (estimated)", + "2030-07-13": "Prophet's Birthday (estimated)", "2030-07-25": "Republic Day", "2030-08-13": "Women's Day", "2030-10-15": "Evacuation Day", "2031-01-01": "New Year's Day", "2031-01-14": "Revolution and Youth Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-01-25": "Eid al-Fitr Holiday* (*estimated)", - "2031-01-26": "Eid al-Fitr Holiday* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-01-25": "Eid al-Fitr Holiday (estimated)", + "2031-01-26": "Eid al-Fitr Holiday (estimated)", "2031-03-20": "Independence Day", - "2031-04-01": "Arafat Day* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", - "2031-04-03": "Eid al-Adha Holiday* (*estimated)", - "2031-04-04": "Eid al-Adha Holiday* (*estimated)", + "2031-04-01": "Arafat Day (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-04-03": "Eid al-Adha Holiday (estimated)", + "2031-04-04": "Eid al-Adha Holiday (estimated)", "2031-04-09": "Martyrs' Day", - "2031-04-23": "Islamic New Year* (*estimated)", + "2031-04-23": "Islamic New Year (estimated)", "2031-05-01": "Labor Day", - "2031-07-02": "Prophet's Birthday* (*estimated)", + "2031-07-02": "Prophet's Birthday (estimated)", "2031-07-25": "Republic Day", "2031-08-13": "Women's Day", "2031-10-15": "Evacuation Day", "2032-01-01": "New Year's Day", - "2032-01-14": "Eid al-Fitr* (*estimated); Revolution and Youth Day", - "2032-01-15": "Eid al-Fitr Holiday* (*estimated)", - "2032-01-16": "Eid al-Fitr Holiday* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated); Revolution and Youth Day", + "2032-01-15": "Eid al-Fitr Holiday (estimated)", + "2032-01-16": "Eid al-Fitr Holiday (estimated)", "2032-03-20": "Independence Day", - "2032-03-21": "Arafat Day* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", - "2032-03-23": "Eid al-Adha Holiday* (*estimated)", - "2032-03-24": "Eid al-Adha Holiday* (*estimated)", + "2032-03-21": "Arafat Day (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Eid al-Adha Holiday (estimated)", + "2032-03-24": "Eid al-Adha Holiday (estimated)", "2032-04-09": "Martyrs' Day", - "2032-04-11": "Islamic New Year* (*estimated)", + "2032-04-11": "Islamic New Year (estimated)", "2032-05-01": "Labor Day", - "2032-06-20": "Prophet's Birthday* (*estimated)", + "2032-06-20": "Prophet's Birthday (estimated)", "2032-07-25": "Republic Day", "2032-08-13": "Women's Day", "2032-10-15": "Evacuation Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr Holiday* (*estimated)", - "2033-01-04": "Eid al-Fitr Holiday* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr Holiday (estimated)", + "2033-01-04": "Eid al-Fitr Holiday (estimated)", "2033-01-14": "Revolution and Youth Day", - "2033-03-10": "Arafat Day* (*estimated)", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha Holiday* (*estimated)", - "2033-03-13": "Eid al-Adha Holiday* (*estimated)", + "2033-03-10": "Arafat Day (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha Holiday (estimated)", + "2033-03-13": "Eid al-Adha Holiday (estimated)", "2033-03-20": "Independence Day", - "2033-04-01": "Islamic New Year* (*estimated)", + "2033-04-01": "Islamic New Year (estimated)", "2033-04-09": "Martyrs' Day", "2033-05-01": "Labor Day", - "2033-06-09": "Prophet's Birthday* (*estimated)", + "2033-06-09": "Prophet's Birthday (estimated)", "2033-07-25": "Republic Day", "2033-08-13": "Women's Day", "2033-10-15": "Evacuation Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr Holiday* (*estimated)", - "2033-12-25": "Eid al-Fitr Holiday* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr Holiday (estimated)", + "2033-12-25": "Eid al-Fitr Holiday (estimated)", "2034-01-01": "New Year's Day", "2034-01-14": "Revolution and Youth Day", - "2034-02-28": "Arafat Day* (*estimated)", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha Holiday* (*estimated)", - "2034-03-03": "Eid al-Adha Holiday* (*estimated)", + "2034-02-28": "Arafat Day (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha Holiday (estimated)", + "2034-03-03": "Eid al-Adha Holiday (estimated)", "2034-03-20": "Independence Day", - "2034-03-21": "Islamic New Year* (*estimated)", + "2034-03-21": "Islamic New Year (estimated)", "2034-04-09": "Martyrs' Day", "2034-05-01": "Labor Day", - "2034-05-30": "Prophet's Birthday* (*estimated)", + "2034-05-30": "Prophet's Birthday (estimated)", "2034-07-25": "Republic Day", "2034-08-13": "Women's Day", "2034-10-15": "Evacuation Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr Holiday* (*estimated)", - "2034-12-14": "Eid al-Fitr Holiday* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr Holiday (estimated)", + "2034-12-14": "Eid al-Fitr Holiday (estimated)", "2035-01-01": "New Year's Day", "2035-01-14": "Revolution and Youth Day", - "2035-02-17": "Arafat Day* (*estimated)", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha Holiday* (*estimated)", - "2035-02-20": "Eid al-Adha Holiday* (*estimated)", - "2035-03-11": "Islamic New Year* (*estimated)", + "2035-02-17": "Arafat Day (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha Holiday (estimated)", + "2035-02-20": "Eid al-Adha Holiday (estimated)", + "2035-03-11": "Islamic New Year (estimated)", "2035-03-20": "Independence Day", "2035-04-09": "Martyrs' Day", "2035-05-01": "Labor Day", - "2035-05-20": "Prophet's Birthday* (*estimated)", + "2035-05-20": "Prophet's Birthday (estimated)", "2035-07-25": "Republic Day", "2035-08-13": "Women's Day", "2035-10-15": "Evacuation Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr Holiday* (*estimated)", - "2035-12-03": "Eid al-Fitr Holiday* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr Holiday (estimated)", + "2035-12-03": "Eid al-Fitr Holiday (estimated)", "2036-01-01": "New Year's Day", "2036-01-14": "Revolution and Youth Day", - "2036-02-06": "Arafat Day* (*estimated)", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha Holiday* (*estimated)", - "2036-02-09": "Eid al-Adha Holiday* (*estimated)", - "2036-02-28": "Islamic New Year* (*estimated)", + "2036-02-06": "Arafat Day (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha Holiday (estimated)", + "2036-02-09": "Eid al-Adha Holiday (estimated)", + "2036-02-28": "Islamic New Year (estimated)", "2036-03-20": "Independence Day", "2036-04-09": "Martyrs' Day", "2036-05-01": "Labor Day", - "2036-05-08": "Prophet's Birthday* (*estimated)", + "2036-05-08": "Prophet's Birthday (estimated)", "2036-07-25": "Republic Day", "2036-08-13": "Women's Day", "2036-10-15": "Evacuation Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr Holiday* (*estimated)", - "2036-11-21": "Eid al-Fitr Holiday* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr Holiday (estimated)", + "2036-11-21": "Eid al-Fitr Holiday (estimated)", "2037-01-01": "New Year's Day", "2037-01-14": "Revolution and Youth Day", - "2037-01-25": "Arafat Day* (*estimated)", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha Holiday* (*estimated)", - "2037-01-28": "Eid al-Adha Holiday* (*estimated)", - "2037-02-16": "Islamic New Year* (*estimated)", + "2037-01-25": "Arafat Day (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha Holiday (estimated)", + "2037-01-28": "Eid al-Adha Holiday (estimated)", + "2037-02-16": "Islamic New Year (estimated)", "2037-03-20": "Independence Day", "2037-04-09": "Martyrs' Day", - "2037-04-28": "Prophet's Birthday* (*estimated)", + "2037-04-28": "Prophet's Birthday (estimated)", "2037-05-01": "Labor Day", "2037-07-25": "Republic Day", "2037-08-13": "Women's Day", "2037-10-15": "Evacuation Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr Holiday* (*estimated)", - "2037-11-10": "Eid al-Fitr Holiday* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr Holiday (estimated)", + "2037-11-10": "Eid al-Fitr Holiday (estimated)", "2038-01-01": "New Year's Day", "2038-01-14": "Revolution and Youth Day", - "2038-01-15": "Arafat Day* (*estimated)", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha Holiday* (*estimated)", - "2038-01-18": "Eid al-Adha Holiday* (*estimated)", - "2038-02-05": "Islamic New Year* (*estimated)", + "2038-01-15": "Arafat Day (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha Holiday (estimated)", + "2038-01-18": "Eid al-Adha Holiday (estimated)", + "2038-02-05": "Islamic New Year (estimated)", "2038-03-20": "Independence Day", "2038-04-09": "Martyrs' Day", - "2038-04-17": "Prophet's Birthday* (*estimated)", + "2038-04-17": "Prophet's Birthday (estimated)", "2038-05-01": "Labor Day", "2038-07-25": "Republic Day", "2038-08-13": "Women's Day", "2038-10-15": "Evacuation Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", - "2038-10-30": "Eid al-Fitr Holiday* (*estimated)", - "2038-10-31": "Eid al-Fitr Holiday* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", + "2038-10-30": "Eid al-Fitr Holiday (estimated)", + "2038-10-31": "Eid al-Fitr Holiday (estimated)", "2039-01-01": "New Year's Day", - "2039-01-04": "Arafat Day* (*estimated)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha Holiday* (*estimated)", - "2039-01-07": "Eid al-Adha Holiday* (*estimated)", + "2039-01-04": "Arafat Day (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha Holiday (estimated)", + "2039-01-07": "Eid al-Adha Holiday (estimated)", "2039-01-14": "Revolution and Youth Day", - "2039-01-26": "Islamic New Year* (*estimated)", + "2039-01-26": "Islamic New Year (estimated)", "2039-03-20": "Independence Day", - "2039-04-06": "Prophet's Birthday* (*estimated)", + "2039-04-06": "Prophet's Birthday (estimated)", "2039-04-09": "Martyrs' Day", "2039-05-01": "Labor Day", "2039-07-25": "Republic Day", "2039-08-13": "Women's Day", "2039-10-15": "Evacuation Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr Holiday* (*estimated)", - "2039-10-21": "Eid al-Fitr Holiday* (*estimated)", - "2039-12-25": "Arafat Day* (*estimated)", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha Holiday* (*estimated)", - "2039-12-28": "Eid al-Adha Holiday* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr Holiday (estimated)", + "2039-10-21": "Eid al-Fitr Holiday (estimated)", + "2039-12-25": "Arafat Day (estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha Holiday (estimated)", + "2039-12-28": "Eid al-Adha Holiday (estimated)", "2040-01-01": "New Year's Day", "2040-01-14": "Revolution and Youth Day", - "2040-01-15": "Islamic New Year* (*estimated)", + "2040-01-15": "Islamic New Year (estimated)", "2040-03-20": "Independence Day", - "2040-03-25": "Prophet's Birthday* (*estimated)", + "2040-03-25": "Prophet's Birthday (estimated)", "2040-04-09": "Martyrs' Day", "2040-05-01": "Labor Day", "2040-07-25": "Republic Day", "2040-08-13": "Women's Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr Holiday* (*estimated)", - "2040-10-09": "Eid al-Fitr Holiday* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr Holiday (estimated)", + "2040-10-09": "Eid al-Fitr Holiday (estimated)", "2040-10-15": "Evacuation Day", - "2040-12-13": "Arafat Day* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha Holiday* (*estimated)", - "2040-12-16": "Eid al-Adha Holiday* (*estimated)", + "2040-12-13": "Arafat Day (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha Holiday (estimated)", + "2040-12-16": "Eid al-Adha Holiday (estimated)", "2041-01-01": "New Year's Day", - "2041-01-04": "Islamic New Year* (*estimated)", + "2041-01-04": "Islamic New Year (estimated)", "2041-01-14": "Revolution and Youth Day", - "2041-03-15": "Prophet's Birthday* (*estimated)", + "2041-03-15": "Prophet's Birthday (estimated)", "2041-03-20": "Independence Day", "2041-04-09": "Martyrs' Day", "2041-05-01": "Labor Day", "2041-07-25": "Republic Day", "2041-08-13": "Women's Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr Holiday* (*estimated)", - "2041-09-28": "Eid al-Fitr Holiday* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr Holiday (estimated)", + "2041-09-28": "Eid al-Fitr Holiday (estimated)", "2041-10-15": "Evacuation Day", - "2041-12-03": "Arafat Day* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha Holiday* (*estimated)", - "2041-12-06": "Eid al-Adha Holiday* (*estimated)", - "2041-12-24": "Islamic New Year* (*estimated)", + "2041-12-03": "Arafat Day (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha Holiday (estimated)", + "2041-12-06": "Eid al-Adha Holiday (estimated)", + "2041-12-24": "Islamic New Year (estimated)", "2042-01-01": "New Year's Day", "2042-01-14": "Revolution and Youth Day", - "2042-03-04": "Prophet's Birthday* (*estimated)", + "2042-03-04": "Prophet's Birthday (estimated)", "2042-03-20": "Independence Day", "2042-04-09": "Martyrs' Day", "2042-05-01": "Labor Day", "2042-07-25": "Republic Day", "2042-08-13": "Women's Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr Holiday* (*estimated)", - "2042-09-17": "Eid al-Fitr Holiday* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr Holiday (estimated)", + "2042-09-17": "Eid al-Fitr Holiday (estimated)", "2042-10-15": "Evacuation Day", - "2042-11-22": "Arafat Day* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha Holiday* (*estimated)", - "2042-11-25": "Eid al-Adha Holiday* (*estimated)", - "2042-12-14": "Islamic New Year* (*estimated)", + "2042-11-22": "Arafat Day (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha Holiday (estimated)", + "2042-11-25": "Eid al-Adha Holiday (estimated)", + "2042-12-14": "Islamic New Year (estimated)", "2043-01-01": "New Year's Day", "2043-01-14": "Revolution and Youth Day", - "2043-02-22": "Prophet's Birthday* (*estimated)", + "2043-02-22": "Prophet's Birthday (estimated)", "2043-03-20": "Independence Day", "2043-04-09": "Martyrs' Day", "2043-05-01": "Labor Day", "2043-07-25": "Republic Day", "2043-08-13": "Women's Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr Holiday* (*estimated)", - "2043-09-06": "Eid al-Fitr Holiday* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr Holiday (estimated)", + "2043-09-06": "Eid al-Fitr Holiday (estimated)", "2043-10-15": "Evacuation Day", - "2043-11-11": "Arafat Day* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha Holiday* (*estimated)", - "2043-11-14": "Eid al-Adha Holiday* (*estimated)", - "2043-12-03": "Islamic New Year* (*estimated)", + "2043-11-11": "Arafat Day (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha Holiday (estimated)", + "2043-11-14": "Eid al-Adha Holiday (estimated)", + "2043-12-03": "Islamic New Year (estimated)", "2044-01-01": "New Year's Day", "2044-01-14": "Revolution and Youth Day", - "2044-02-11": "Prophet's Birthday* (*estimated)", + "2044-02-11": "Prophet's Birthday (estimated)", "2044-03-20": "Independence Day", "2044-04-09": "Martyrs' Day", "2044-05-01": "Labor Day", "2044-07-25": "Republic Day", "2044-08-13": "Women's Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr Holiday* (*estimated)", - "2044-08-26": "Eid al-Fitr Holiday* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr Holiday (estimated)", + "2044-08-26": "Eid al-Fitr Holiday (estimated)", "2044-10-15": "Evacuation Day", - "2044-10-30": "Arafat Day* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha Holiday* (*estimated)", - "2044-11-02": "Eid al-Adha Holiday* (*estimated)", - "2044-11-21": "Islamic New Year* (*estimated)", + "2044-10-30": "Arafat Day (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha Holiday (estimated)", + "2044-11-02": "Eid al-Adha Holiday (estimated)", + "2044-11-21": "Islamic New Year (estimated)", "2045-01-01": "New Year's Day", "2045-01-14": "Revolution and Youth Day", - "2045-01-30": "Prophet's Birthday* (*estimated)", + "2045-01-30": "Prophet's Birthday (estimated)", "2045-03-20": "Independence Day", "2045-04-09": "Martyrs' Day", "2045-05-01": "Labor Day", "2045-07-25": "Republic Day", "2045-08-13": "Women's Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr Holiday* (*estimated)", - "2045-08-16": "Eid al-Fitr Holiday* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr Holiday (estimated)", + "2045-08-16": "Eid al-Fitr Holiday (estimated)", "2045-10-15": "Evacuation Day", - "2045-10-20": "Arafat Day* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha Holiday* (*estimated)", - "2045-10-23": "Eid al-Adha Holiday* (*estimated)", - "2045-11-10": "Islamic New Year* (*estimated)", + "2045-10-20": "Arafat Day (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha Holiday (estimated)", + "2045-10-23": "Eid al-Adha Holiday (estimated)", + "2045-11-10": "Islamic New Year (estimated)", "2046-01-01": "New Year's Day", "2046-01-14": "Revolution and Youth Day", - "2046-01-19": "Prophet's Birthday* (*estimated)", + "2046-01-19": "Prophet's Birthday (estimated)", "2046-03-20": "Independence Day", "2046-04-09": "Martyrs' Day", "2046-05-01": "Labor Day", "2046-07-25": "Republic Day", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr Holiday* (*estimated)", - "2046-08-05": "Eid al-Fitr Holiday* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr Holiday (estimated)", + "2046-08-05": "Eid al-Fitr Holiday (estimated)", "2046-08-13": "Women's Day", - "2046-10-09": "Arafat Day* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha Holiday* (*estimated)", - "2046-10-12": "Eid al-Adha Holiday* (*estimated)", + "2046-10-09": "Arafat Day (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha Holiday (estimated)", + "2046-10-12": "Eid al-Adha Holiday (estimated)", "2046-10-15": "Evacuation Day", - "2046-10-31": "Islamic New Year* (*estimated)", + "2046-10-31": "Islamic New Year (estimated)", "2047-01-01": "New Year's Day", - "2047-01-08": "Prophet's Birthday* (*estimated)", + "2047-01-08": "Prophet's Birthday (estimated)", "2047-01-14": "Revolution and Youth Day", "2047-03-20": "Independence Day", "2047-04-09": "Martyrs' Day", "2047-05-01": "Labor Day", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr Holiday* (*estimated); Republic Day", - "2047-07-26": "Eid al-Fitr Holiday* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr Holiday (estimated); Republic Day", + "2047-07-26": "Eid al-Fitr Holiday (estimated)", "2047-08-13": "Women's Day", - "2047-09-29": "Arafat Day* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha Holiday* (*estimated)", - "2047-10-02": "Eid al-Adha Holiday* (*estimated)", + "2047-09-29": "Arafat Day (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha Holiday (estimated)", + "2047-10-02": "Eid al-Adha Holiday (estimated)", "2047-10-15": "Evacuation Day", - "2047-10-20": "Islamic New Year* (*estimated)", - "2047-12-29": "Prophet's Birthday* (*estimated)", + "2047-10-20": "Islamic New Year (estimated)", + "2047-12-29": "Prophet's Birthday (estimated)", "2048-01-01": "New Year's Day", "2048-01-14": "Revolution and Youth Day", "2048-03-20": "Independence Day", "2048-04-09": "Martyrs' Day", "2048-05-01": "Labor Day", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr Holiday* (*estimated)", - "2048-07-14": "Eid al-Fitr Holiday* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr Holiday (estimated)", + "2048-07-14": "Eid al-Fitr Holiday (estimated)", "2048-07-25": "Republic Day", "2048-08-13": "Women's Day", - "2048-09-18": "Arafat Day* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha Holiday* (*estimated)", - "2048-09-21": "Eid al-Adha Holiday* (*estimated)", - "2048-10-09": "Islamic New Year* (*estimated)", + "2048-09-18": "Arafat Day (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha Holiday (estimated)", + "2048-09-21": "Eid al-Adha Holiday (estimated)", + "2048-10-09": "Islamic New Year (estimated)", "2048-10-15": "Evacuation Day", - "2048-12-18": "Prophet's Birthday* (*estimated)", + "2048-12-18": "Prophet's Birthday (estimated)", "2049-01-01": "New Year's Day", "2049-01-14": "Revolution and Youth Day", "2049-03-20": "Independence Day", "2049-04-09": "Martyrs' Day", "2049-05-01": "Labor Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr Holiday* (*estimated)", - "2049-07-03": "Eid al-Fitr Holiday* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr Holiday (estimated)", + "2049-07-03": "Eid al-Fitr Holiday (estimated)", "2049-07-25": "Republic Day", "2049-08-13": "Women's Day", - "2049-09-07": "Arafat Day* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha Holiday* (*estimated)", - "2049-09-10": "Eid al-Adha Holiday* (*estimated)", - "2049-09-28": "Islamic New Year* (*estimated)", + "2049-09-07": "Arafat Day (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha Holiday (estimated)", + "2049-09-10": "Eid al-Adha Holiday (estimated)", + "2049-09-28": "Islamic New Year (estimated)", "2049-10-15": "Evacuation Day", - "2049-12-07": "Prophet's Birthday* (*estimated)", + "2049-12-07": "Prophet's Birthday (estimated)", "2050-01-01": "New Year's Day", "2050-01-14": "Revolution and Youth Day", "2050-03-20": "Independence Day", "2050-04-09": "Martyrs' Day", "2050-05-01": "Labor Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr Holiday* (*estimated)", - "2050-06-22": "Eid al-Fitr Holiday* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr Holiday (estimated)", + "2050-06-22": "Eid al-Fitr Holiday (estimated)", "2050-07-25": "Republic Day", "2050-08-13": "Women's Day", - "2050-08-27": "Arafat Day* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha Holiday* (*estimated)", - "2050-08-30": "Eid al-Adha Holiday* (*estimated)", - "2050-09-17": "Islamic New Year* (*estimated)", + "2050-08-27": "Arafat Day (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha Holiday (estimated)", + "2050-08-30": "Eid al-Adha Holiday (estimated)", + "2050-09-17": "Islamic New Year (estimated)", "2050-10-15": "Evacuation Day", - "2050-11-26": "Prophet's Birthday* (*estimated)" + "2050-11-26": "Prophet's Birthday (estimated)" } diff --git a/snapshots/countries/TR_COMMON.json b/snapshots/countries/TR_COMMON.json index 63aca917a..c69dd0ea4 100644 --- a/snapshots/countries/TR_COMMON.json +++ b/snapshots/countries/TR_COMMON.json @@ -1336,15 +1336,15 @@ "2032-08-30": "Victory Day", "2032-10-28": "Republic Day (from 1pm)", "2032-10-29": "Republic Day", - "2033-01-01": "Eid al-Fitr (from 1pm)* (*estimated); New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", - "2033-01-03": "Eid al-Fitr* (*estimated)", - "2033-01-04": "Eid al-Fitr* (*estimated)", - "2033-03-10": "Eid al-Adha (from 1pm)* (*estimated)", - "2033-03-11": "Eid al-Adha* (*estimated)", - "2033-03-12": "Eid al-Adha* (*estimated)", - "2033-03-13": "Eid al-Adha* (*estimated)", - "2033-03-14": "Eid al-Adha* (*estimated)", + "2033-01-01": "Eid al-Fitr (from 1pm) (estimated); New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "Eid al-Fitr (estimated)", + "2033-01-04": "Eid al-Fitr (estimated)", + "2033-03-10": "Eid al-Adha (from 1pm) (estimated)", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-12": "Eid al-Adha (estimated)", + "2033-03-13": "Eid al-Adha (estimated)", + "2033-03-14": "Eid al-Adha (estimated)", "2033-04-23": "National Sovereignty and Children's Day", "2033-05-01": "Labour and Solidarity Day", "2033-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", @@ -1352,16 +1352,16 @@ "2033-08-30": "Victory Day", "2033-10-28": "Republic Day (from 1pm)", "2033-10-29": "Republic Day", - "2033-12-22": "Eid al-Fitr (from 1pm)* (*estimated)", - "2033-12-23": "Eid al-Fitr* (*estimated)", - "2033-12-24": "Eid al-Fitr* (*estimated)", - "2033-12-25": "Eid al-Fitr* (*estimated)", + "2033-12-22": "Eid al-Fitr (from 1pm) (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2033-12-24": "Eid al-Fitr (estimated)", + "2033-12-25": "Eid al-Fitr (estimated)", "2034-01-01": "New Year's Day", - "2034-02-28": "Eid al-Adha (from 1pm)* (*estimated)", - "2034-03-01": "Eid al-Adha* (*estimated)", - "2034-03-02": "Eid al-Adha* (*estimated)", - "2034-03-03": "Eid al-Adha* (*estimated)", - "2034-03-04": "Eid al-Adha* (*estimated)", + "2034-02-28": "Eid al-Adha (from 1pm) (estimated)", + "2034-03-01": "Eid al-Adha (estimated)", + "2034-03-02": "Eid al-Adha (estimated)", + "2034-03-03": "Eid al-Adha (estimated)", + "2034-03-04": "Eid al-Adha (estimated)", "2034-04-23": "National Sovereignty and Children's Day", "2034-05-01": "Labour and Solidarity Day", "2034-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", @@ -1369,16 +1369,16 @@ "2034-08-30": "Victory Day", "2034-10-28": "Republic Day (from 1pm)", "2034-10-29": "Republic Day", - "2034-12-11": "Eid al-Fitr (from 1pm)* (*estimated)", - "2034-12-12": "Eid al-Fitr* (*estimated)", - "2034-12-13": "Eid al-Fitr* (*estimated)", - "2034-12-14": "Eid al-Fitr* (*estimated)", + "2034-12-11": "Eid al-Fitr (from 1pm) (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2034-12-13": "Eid al-Fitr (estimated)", + "2034-12-14": "Eid al-Fitr (estimated)", "2035-01-01": "New Year's Day", - "2035-02-17": "Eid al-Adha (from 1pm)* (*estimated)", - "2035-02-18": "Eid al-Adha* (*estimated)", - "2035-02-19": "Eid al-Adha* (*estimated)", - "2035-02-20": "Eid al-Adha* (*estimated)", - "2035-02-21": "Eid al-Adha* (*estimated)", + "2035-02-17": "Eid al-Adha (from 1pm) (estimated)", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated)", + "2035-02-20": "Eid al-Adha (estimated)", + "2035-02-21": "Eid al-Adha (estimated)", "2035-04-23": "National Sovereignty and Children's Day", "2035-05-01": "Labour and Solidarity Day", "2035-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", @@ -1386,16 +1386,16 @@ "2035-08-30": "Victory Day", "2035-10-28": "Republic Day (from 1pm)", "2035-10-29": "Republic Day", - "2035-11-30": "Eid al-Fitr (from 1pm)* (*estimated)", - "2035-12-01": "Eid al-Fitr* (*estimated)", - "2035-12-02": "Eid al-Fitr* (*estimated)", - "2035-12-03": "Eid al-Fitr* (*estimated)", + "2035-11-30": "Eid al-Fitr (from 1pm) (estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-02": "Eid al-Fitr (estimated)", + "2035-12-03": "Eid al-Fitr (estimated)", "2036-01-01": "New Year's Day", - "2036-02-06": "Eid al-Adha (from 1pm)* (*estimated)", - "2036-02-07": "Eid al-Adha* (*estimated)", - "2036-02-08": "Eid al-Adha* (*estimated)", - "2036-02-09": "Eid al-Adha* (*estimated)", - "2036-02-10": "Eid al-Adha* (*estimated)", + "2036-02-06": "Eid al-Adha (from 1pm) (estimated)", + "2036-02-07": "Eid al-Adha (estimated)", + "2036-02-08": "Eid al-Adha (estimated)", + "2036-02-09": "Eid al-Adha (estimated)", + "2036-02-10": "Eid al-Adha (estimated)", "2036-04-23": "National Sovereignty and Children's Day", "2036-05-01": "Labour and Solidarity Day", "2036-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", @@ -1403,16 +1403,16 @@ "2036-08-30": "Victory Day", "2036-10-28": "Republic Day (from 1pm)", "2036-10-29": "Republic Day", - "2036-11-18": "Eid al-Fitr (from 1pm)* (*estimated)", - "2036-11-19": "Eid al-Fitr* (*estimated)", - "2036-11-20": "Eid al-Fitr* (*estimated)", - "2036-11-21": "Eid al-Fitr* (*estimated)", + "2036-11-18": "Eid al-Fitr (from 1pm) (estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", + "2036-11-20": "Eid al-Fitr (estimated)", + "2036-11-21": "Eid al-Fitr (estimated)", "2037-01-01": "New Year's Day", - "2037-01-25": "Eid al-Adha (from 1pm)* (*estimated)", - "2037-01-26": "Eid al-Adha* (*estimated)", - "2037-01-27": "Eid al-Adha* (*estimated)", - "2037-01-28": "Eid al-Adha* (*estimated)", - "2037-01-29": "Eid al-Adha* (*estimated)", + "2037-01-25": "Eid al-Adha (from 1pm) (estimated)", + "2037-01-26": "Eid al-Adha (estimated)", + "2037-01-27": "Eid al-Adha (estimated)", + "2037-01-28": "Eid al-Adha (estimated)", + "2037-01-29": "Eid al-Adha (estimated)", "2037-04-23": "National Sovereignty and Children's Day", "2037-05-01": "Labour and Solidarity Day", "2037-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", @@ -1420,147 +1420,147 @@ "2037-08-30": "Victory Day", "2037-10-28": "Republic Day (from 1pm)", "2037-10-29": "Republic Day", - "2037-11-07": "Eid al-Fitr (from 1pm)* (*estimated)", - "2037-11-08": "Eid al-Fitr* (*estimated)", - "2037-11-09": "Eid al-Fitr* (*estimated)", - "2037-11-10": "Eid al-Fitr* (*estimated)", + "2037-11-07": "Eid al-Fitr (from 1pm) (estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated)", + "2037-11-10": "Eid al-Fitr (estimated)", "2038-01-01": "New Year's Day", - "2038-01-15": "Eid al-Adha (from 1pm)* (*estimated)", - "2038-01-16": "Eid al-Adha* (*estimated)", - "2038-01-17": "Eid al-Adha* (*estimated)", - "2038-01-18": "Eid al-Adha* (*estimated)", - "2038-01-19": "Eid al-Adha* (*estimated)", + "2038-01-15": "Eid al-Adha (from 1pm) (estimated)", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-17": "Eid al-Adha (estimated)", + "2038-01-18": "Eid al-Adha (estimated)", + "2038-01-19": "Eid al-Adha (estimated)", "2038-04-23": "National Sovereignty and Children's Day", "2038-05-01": "Labour and Solidarity Day", "2038-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2038-07-15": "Democracy and National Unity Day", "2038-08-30": "Victory Day", - "2038-10-28": "Eid al-Fitr (from 1pm)* (*estimated); Republic Day (from 1pm)", - "2038-10-29": "Eid al-Fitr* (*estimated); Republic Day", - "2038-10-30": "Eid al-Fitr* (*estimated)", - "2038-10-31": "Eid al-Fitr* (*estimated)", + "2038-10-28": "Eid al-Fitr (from 1pm) (estimated); Republic Day (from 1pm)", + "2038-10-29": "Eid al-Fitr (estimated); Republic Day", + "2038-10-30": "Eid al-Fitr (estimated)", + "2038-10-31": "Eid al-Fitr (estimated)", "2039-01-01": "New Year's Day", - "2039-01-04": "Eid al-Adha (from 1pm)* (*estimated)", - "2039-01-05": "Eid al-Adha* (*estimated)", - "2039-01-06": "Eid al-Adha* (*estimated)", - "2039-01-07": "Eid al-Adha* (*estimated)", - "2039-01-08": "Eid al-Adha* (*estimated)", + "2039-01-04": "Eid al-Adha (from 1pm) (estimated)", + "2039-01-05": "Eid al-Adha (estimated)", + "2039-01-06": "Eid al-Adha (estimated)", + "2039-01-07": "Eid al-Adha (estimated)", + "2039-01-08": "Eid al-Adha (estimated)", "2039-04-23": "National Sovereignty and Children's Day", "2039-05-01": "Labour and Solidarity Day", "2039-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2039-07-15": "Democracy and National Unity Day", "2039-08-30": "Victory Day", - "2039-10-18": "Eid al-Fitr (from 1pm)* (*estimated)", - "2039-10-19": "Eid al-Fitr* (*estimated)", - "2039-10-20": "Eid al-Fitr* (*estimated)", - "2039-10-21": "Eid al-Fitr* (*estimated)", + "2039-10-18": "Eid al-Fitr (from 1pm) (estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", + "2039-10-20": "Eid al-Fitr (estimated)", + "2039-10-21": "Eid al-Fitr (estimated)", "2039-10-28": "Republic Day (from 1pm)", "2039-10-29": "Republic Day", - "2039-12-25": "Eid al-Adha (from 1pm)* (*estimated)", - "2039-12-26": "Eid al-Adha* (*estimated)", - "2039-12-27": "Eid al-Adha* (*estimated)", - "2039-12-28": "Eid al-Adha* (*estimated)", - "2039-12-29": "Eid al-Adha* (*estimated)", + "2039-12-25": "Eid al-Adha (from 1pm) (estimated)", + "2039-12-26": "Eid al-Adha (estimated)", + "2039-12-27": "Eid al-Adha (estimated)", + "2039-12-28": "Eid al-Adha (estimated)", + "2039-12-29": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-04-23": "National Sovereignty and Children's Day", "2040-05-01": "Labour and Solidarity Day", "2040-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2040-07-15": "Democracy and National Unity Day", "2040-08-30": "Victory Day", - "2040-10-06": "Eid al-Fitr (from 1pm)* (*estimated)", - "2040-10-07": "Eid al-Fitr* (*estimated)", - "2040-10-08": "Eid al-Fitr* (*estimated)", - "2040-10-09": "Eid al-Fitr* (*estimated)", + "2040-10-06": "Eid al-Fitr (from 1pm) (estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated)", + "2040-10-09": "Eid al-Fitr (estimated)", "2040-10-28": "Republic Day (from 1pm)", "2040-10-29": "Republic Day", - "2040-12-13": "Eid al-Adha (from 1pm)* (*estimated)", - "2040-12-14": "Eid al-Adha* (*estimated)", - "2040-12-15": "Eid al-Adha* (*estimated)", - "2040-12-16": "Eid al-Adha* (*estimated)", - "2040-12-17": "Eid al-Adha* (*estimated)", + "2040-12-13": "Eid al-Adha (from 1pm) (estimated)", + "2040-12-14": "Eid al-Adha (estimated)", + "2040-12-15": "Eid al-Adha (estimated)", + "2040-12-16": "Eid al-Adha (estimated)", + "2040-12-17": "Eid al-Adha (estimated)", "2041-01-01": "New Year's Day", "2041-04-23": "National Sovereignty and Children's Day", "2041-05-01": "Labour and Solidarity Day", "2041-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2041-07-15": "Democracy and National Unity Day", "2041-08-30": "Victory Day", - "2041-09-25": "Eid al-Fitr (from 1pm)* (*estimated)", - "2041-09-26": "Eid al-Fitr* (*estimated)", - "2041-09-27": "Eid al-Fitr* (*estimated)", - "2041-09-28": "Eid al-Fitr* (*estimated)", + "2041-09-25": "Eid al-Fitr (from 1pm) (estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-09-27": "Eid al-Fitr (estimated)", + "2041-09-28": "Eid al-Fitr (estimated)", "2041-10-28": "Republic Day (from 1pm)", "2041-10-29": "Republic Day", - "2041-12-03": "Eid al-Adha (from 1pm)* (*estimated)", - "2041-12-04": "Eid al-Adha* (*estimated)", - "2041-12-05": "Eid al-Adha* (*estimated)", - "2041-12-06": "Eid al-Adha* (*estimated)", - "2041-12-07": "Eid al-Adha* (*estimated)", + "2041-12-03": "Eid al-Adha (from 1pm) (estimated)", + "2041-12-04": "Eid al-Adha (estimated)", + "2041-12-05": "Eid al-Adha (estimated)", + "2041-12-06": "Eid al-Adha (estimated)", + "2041-12-07": "Eid al-Adha (estimated)", "2042-01-01": "New Year's Day", "2042-04-23": "National Sovereignty and Children's Day", "2042-05-01": "Labour and Solidarity Day", "2042-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2042-07-15": "Democracy and National Unity Day", "2042-08-30": "Victory Day", - "2042-09-14": "Eid al-Fitr (from 1pm)* (*estimated)", - "2042-09-15": "Eid al-Fitr* (*estimated)", - "2042-09-16": "Eid al-Fitr* (*estimated)", - "2042-09-17": "Eid al-Fitr* (*estimated)", + "2042-09-14": "Eid al-Fitr (from 1pm) (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-09-16": "Eid al-Fitr (estimated)", + "2042-09-17": "Eid al-Fitr (estimated)", "2042-10-28": "Republic Day (from 1pm)", "2042-10-29": "Republic Day", - "2042-11-22": "Eid al-Adha (from 1pm)* (*estimated)", - "2042-11-23": "Eid al-Adha* (*estimated)", - "2042-11-24": "Eid al-Adha* (*estimated)", - "2042-11-25": "Eid al-Adha* (*estimated)", - "2042-11-26": "Eid al-Adha* (*estimated)", + "2042-11-22": "Eid al-Adha (from 1pm) (estimated)", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated)", + "2042-11-25": "Eid al-Adha (estimated)", + "2042-11-26": "Eid al-Adha (estimated)", "2043-01-01": "New Year's Day", "2043-04-23": "National Sovereignty and Children's Day", "2043-05-01": "Labour and Solidarity Day", "2043-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2043-07-15": "Democracy and National Unity Day", "2043-08-30": "Victory Day", - "2043-09-03": "Eid al-Fitr (from 1pm)* (*estimated)", - "2043-09-04": "Eid al-Fitr* (*estimated)", - "2043-09-05": "Eid al-Fitr* (*estimated)", - "2043-09-06": "Eid al-Fitr* (*estimated)", + "2043-09-03": "Eid al-Fitr (from 1pm) (estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-09-05": "Eid al-Fitr (estimated)", + "2043-09-06": "Eid al-Fitr (estimated)", "2043-10-28": "Republic Day (from 1pm)", "2043-10-29": "Republic Day", - "2043-11-11": "Eid al-Adha (from 1pm)* (*estimated)", - "2043-11-12": "Eid al-Adha* (*estimated)", - "2043-11-13": "Eid al-Adha* (*estimated)", - "2043-11-14": "Eid al-Adha* (*estimated)", - "2043-11-15": "Eid al-Adha* (*estimated)", + "2043-11-11": "Eid al-Adha (from 1pm) (estimated)", + "2043-11-12": "Eid al-Adha (estimated)", + "2043-11-13": "Eid al-Adha (estimated)", + "2043-11-14": "Eid al-Adha (estimated)", + "2043-11-15": "Eid al-Adha (estimated)", "2044-01-01": "New Year's Day", "2044-04-23": "National Sovereignty and Children's Day", "2044-05-01": "Labour and Solidarity Day", "2044-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2044-07-15": "Democracy and National Unity Day", - "2044-08-23": "Eid al-Fitr (from 1pm)* (*estimated)", - "2044-08-24": "Eid al-Fitr* (*estimated)", - "2044-08-25": "Eid al-Fitr* (*estimated)", - "2044-08-26": "Eid al-Fitr* (*estimated)", + "2044-08-23": "Eid al-Fitr (from 1pm) (estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", + "2044-08-25": "Eid al-Fitr (estimated)", + "2044-08-26": "Eid al-Fitr (estimated)", "2044-08-30": "Victory Day", "2044-10-28": "Republic Day (from 1pm)", "2044-10-29": "Republic Day", - "2044-10-30": "Eid al-Adha (from 1pm)* (*estimated)", - "2044-10-31": "Eid al-Adha* (*estimated)", - "2044-11-01": "Eid al-Adha* (*estimated)", - "2044-11-02": "Eid al-Adha* (*estimated)", - "2044-11-03": "Eid al-Adha* (*estimated)", + "2044-10-30": "Eid al-Adha (from 1pm) (estimated)", + "2044-10-31": "Eid al-Adha (estimated)", + "2044-11-01": "Eid al-Adha (estimated)", + "2044-11-02": "Eid al-Adha (estimated)", + "2044-11-03": "Eid al-Adha (estimated)", "2045-01-01": "New Year's Day", "2045-04-23": "National Sovereignty and Children's Day", "2045-05-01": "Labour and Solidarity Day", "2045-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2045-07-15": "Democracy and National Unity Day", - "2045-08-13": "Eid al-Fitr (from 1pm)* (*estimated)", - "2045-08-14": "Eid al-Fitr* (*estimated)", - "2045-08-15": "Eid al-Fitr* (*estimated)", - "2045-08-16": "Eid al-Fitr* (*estimated)", + "2045-08-13": "Eid al-Fitr (from 1pm) (estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", + "2045-08-15": "Eid al-Fitr (estimated)", + "2045-08-16": "Eid al-Fitr (estimated)", "2045-08-30": "Victory Day", - "2045-10-20": "Eid al-Adha (from 1pm)* (*estimated)", - "2045-10-21": "Eid al-Adha* (*estimated)", - "2045-10-22": "Eid al-Adha* (*estimated)", - "2045-10-23": "Eid al-Adha* (*estimated)", - "2045-10-24": "Eid al-Adha* (*estimated)", + "2045-10-20": "Eid al-Adha (from 1pm) (estimated)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-22": "Eid al-Adha (estimated)", + "2045-10-23": "Eid al-Adha (estimated)", + "2045-10-24": "Eid al-Adha (estimated)", "2045-10-28": "Republic Day (from 1pm)", "2045-10-29": "Republic Day", "2046-01-01": "New Year's Day", @@ -1568,16 +1568,16 @@ "2046-05-01": "Labour and Solidarity Day", "2046-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2046-07-15": "Democracy and National Unity Day", - "2046-08-02": "Eid al-Fitr (from 1pm)* (*estimated)", - "2046-08-03": "Eid al-Fitr* (*estimated)", - "2046-08-04": "Eid al-Fitr* (*estimated)", - "2046-08-05": "Eid al-Fitr* (*estimated)", + "2046-08-02": "Eid al-Fitr (from 1pm) (estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", + "2046-08-04": "Eid al-Fitr (estimated)", + "2046-08-05": "Eid al-Fitr (estimated)", "2046-08-30": "Victory Day", - "2046-10-09": "Eid al-Adha (from 1pm)* (*estimated)", - "2046-10-10": "Eid al-Adha* (*estimated)", - "2046-10-11": "Eid al-Adha* (*estimated)", - "2046-10-12": "Eid al-Adha* (*estimated)", - "2046-10-13": "Eid al-Adha* (*estimated)", + "2046-10-09": "Eid al-Adha (from 1pm) (estimated)", + "2046-10-10": "Eid al-Adha (estimated)", + "2046-10-11": "Eid al-Adha (estimated)", + "2046-10-12": "Eid al-Adha (estimated)", + "2046-10-13": "Eid al-Adha (estimated)", "2046-10-28": "Republic Day (from 1pm)", "2046-10-29": "Republic Day", "2047-01-01": "New Year's Day", @@ -1585,66 +1585,66 @@ "2047-05-01": "Labour and Solidarity Day", "2047-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", "2047-07-15": "Democracy and National Unity Day", - "2047-07-23": "Eid al-Fitr (from 1pm)* (*estimated)", - "2047-07-24": "Eid al-Fitr* (*estimated)", - "2047-07-25": "Eid al-Fitr* (*estimated)", - "2047-07-26": "Eid al-Fitr* (*estimated)", + "2047-07-23": "Eid al-Fitr (from 1pm) (estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", + "2047-07-25": "Eid al-Fitr (estimated)", + "2047-07-26": "Eid al-Fitr (estimated)", "2047-08-30": "Victory Day", - "2047-09-29": "Eid al-Adha (from 1pm)* (*estimated)", - "2047-09-30": "Eid al-Adha* (*estimated)", - "2047-10-01": "Eid al-Adha* (*estimated)", - "2047-10-02": "Eid al-Adha* (*estimated)", - "2047-10-03": "Eid al-Adha* (*estimated)", + "2047-09-29": "Eid al-Adha (from 1pm) (estimated)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Eid al-Adha (estimated)", + "2047-10-02": "Eid al-Adha (estimated)", + "2047-10-03": "Eid al-Adha (estimated)", "2047-10-28": "Republic Day (from 1pm)", "2047-10-29": "Republic Day", "2048-01-01": "New Year's Day", "2048-04-23": "National Sovereignty and Children's Day", "2048-05-01": "Labour and Solidarity Day", "2048-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", - "2048-07-11": "Eid al-Fitr (from 1pm)* (*estimated)", - "2048-07-12": "Eid al-Fitr* (*estimated)", - "2048-07-13": "Eid al-Fitr* (*estimated)", - "2048-07-14": "Eid al-Fitr* (*estimated)", + "2048-07-11": "Eid al-Fitr (from 1pm) (estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated)", + "2048-07-14": "Eid al-Fitr (estimated)", "2048-07-15": "Democracy and National Unity Day", "2048-08-30": "Victory Day", - "2048-09-18": "Eid al-Adha (from 1pm)* (*estimated)", - "2048-09-19": "Eid al-Adha* (*estimated)", - "2048-09-20": "Eid al-Adha* (*estimated)", - "2048-09-21": "Eid al-Adha* (*estimated)", - "2048-09-22": "Eid al-Adha* (*estimated)", + "2048-09-18": "Eid al-Adha (from 1pm) (estimated)", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-20": "Eid al-Adha (estimated)", + "2048-09-21": "Eid al-Adha (estimated)", + "2048-09-22": "Eid al-Adha (estimated)", "2048-10-28": "Republic Day (from 1pm)", "2048-10-29": "Republic Day", "2049-01-01": "New Year's Day", "2049-04-23": "National Sovereignty and Children's Day", "2049-05-01": "Labour and Solidarity Day", "2049-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", - "2049-06-30": "Eid al-Fitr (from 1pm)* (*estimated)", - "2049-07-01": "Eid al-Fitr* (*estimated)", - "2049-07-02": "Eid al-Fitr* (*estimated)", - "2049-07-03": "Eid al-Fitr* (*estimated)", + "2049-06-30": "Eid al-Fitr (from 1pm) (estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", + "2049-07-02": "Eid al-Fitr (estimated)", + "2049-07-03": "Eid al-Fitr (estimated)", "2049-07-15": "Democracy and National Unity Day", "2049-08-30": "Victory Day", - "2049-09-07": "Eid al-Adha (from 1pm)* (*estimated)", - "2049-09-08": "Eid al-Adha* (*estimated)", - "2049-09-09": "Eid al-Adha* (*estimated)", - "2049-09-10": "Eid al-Adha* (*estimated)", - "2049-09-11": "Eid al-Adha* (*estimated)", + "2049-09-07": "Eid al-Adha (from 1pm) (estimated)", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-09-09": "Eid al-Adha (estimated)", + "2049-09-10": "Eid al-Adha (estimated)", + "2049-09-11": "Eid al-Adha (estimated)", "2049-10-28": "Republic Day (from 1pm)", "2049-10-29": "Republic Day", "2050-01-01": "New Year's Day", "2050-04-23": "National Sovereignty and Children's Day", "2050-05-01": "Labour and Solidarity Day", "2050-05-19": "Commemoration of Atat\u00fcrk, Youth and Sports Day", - "2050-06-19": "Eid al-Fitr (from 1pm)* (*estimated)", - "2050-06-20": "Eid al-Fitr* (*estimated)", - "2050-06-21": "Eid al-Fitr* (*estimated)", - "2050-06-22": "Eid al-Fitr* (*estimated)", + "2050-06-19": "Eid al-Fitr (from 1pm) (estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-06-21": "Eid al-Fitr (estimated)", + "2050-06-22": "Eid al-Fitr (estimated)", "2050-07-15": "Democracy and National Unity Day", - "2050-08-27": "Eid al-Adha (from 1pm)* (*estimated)", - "2050-08-28": "Eid al-Adha* (*estimated)", - "2050-08-29": "Eid al-Adha* (*estimated)", - "2050-08-30": "Eid al-Adha* (*estimated); Victory Day", - "2050-08-31": "Eid al-Adha* (*estimated)", + "2050-08-27": "Eid al-Adha (from 1pm) (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated)", + "2050-08-30": "Eid al-Adha (estimated); Victory Day", + "2050-08-31": "Eid al-Adha (estimated)", "2050-10-28": "Republic Day (from 1pm)", "2050-10-29": "Republic Day" } diff --git a/snapshots/countries/TZ_COMMON.json b/snapshots/countries/TZ_COMMON.json index 93d85fc93..8db5ccf1a 100644 --- a/snapshots/countries/TZ_COMMON.json +++ b/snapshots/countries/TZ_COMMON.json @@ -1,76 +1,76 @@ { "1994-01-01": "New Year's Day", "1994-01-12": "Zanzibar Revolution Day", - "1994-03-13": "Eid al-Fitr* (*estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-01": "Good Friday", "1994-04-03": "Easter Sunday", "1994-04-04": "Easter Monday", "1994-04-07": "The Sheikh Abeid Amani Karume Day", "1994-04-26": "Union Celebrations", "1994-05-01": "Worker's Day", - "1994-05-20": "Eid al-Adha* (*estimated)", + "1994-05-20": "Eid al-Adha (estimated)", "1994-07-07": "International Trade Fair", "1994-08-08": "Peasants Day", - "1994-08-19": "Maulid Day* (*estimated)", + "1994-08-19": "Maulid Day (estimated)", "1994-12-09": "Independence and Republic Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", "1995-01-01": "New Year's Day", "1995-01-12": "Zanzibar Revolution Day", - "1995-03-02": "Eid al-Fitr* (*estimated)", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-04-07": "The Sheikh Abeid Amani Karume Day", "1995-04-14": "Good Friday", "1995-04-16": "Easter Sunday", "1995-04-17": "Easter Monday", "1995-04-26": "Union Celebrations", "1995-05-01": "Worker's Day", - "1995-05-09": "Eid al-Adha* (*estimated)", + "1995-05-09": "Eid al-Adha (estimated)", "1995-07-07": "International Trade Fair", - "1995-08-08": "Maulid Day* (*estimated); Peasants Day", + "1995-08-08": "Maulid Day (estimated); Peasants Day", "1995-12-09": "Independence and Republic Day", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", "1996-01-12": "Zanzibar Revolution Day", - "1996-02-19": "Eid al-Fitr* (*estimated)", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-04-05": "Good Friday", "1996-04-07": "Easter Sunday; The Sheikh Abeid Amani Karume Day", "1996-04-08": "Easter Monday", "1996-04-26": "Union Celebrations", - "1996-04-27": "Eid al-Adha* (*estimated)", + "1996-04-27": "Eid al-Adha (estimated)", "1996-05-01": "Worker's Day", "1996-07-07": "International Trade Fair", - "1996-07-27": "Maulid Day* (*estimated)", + "1996-07-27": "Maulid Day (estimated)", "1996-08-08": "Peasants Day", "1996-12-09": "Independence and Republic Day", "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", "1997-01-12": "Zanzibar Revolution Day", - "1997-02-08": "Eid al-Fitr* (*estimated)", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-28": "Good Friday", "1997-03-30": "Easter Sunday", "1997-03-31": "Easter Monday", "1997-04-07": "The Sheikh Abeid Amani Karume Day", - "1997-04-17": "Eid al-Adha* (*estimated)", + "1997-04-17": "Eid al-Adha (estimated)", "1997-04-26": "Union Celebrations", "1997-05-01": "Worker's Day", "1997-07-07": "International Trade Fair", - "1997-07-16": "Maulid Day* (*estimated)", + "1997-07-16": "Maulid Day (estimated)", "1997-08-08": "Peasants Day", "1997-12-09": "Independence and Republic Day", "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1998-01-01": "New Year's Day", "1998-01-12": "Zanzibar Revolution Day", - "1998-01-29": "Eid al-Fitr* (*estimated)", - "1998-04-07": "Eid al-Adha* (*estimated); The Sheikh Abeid Amani Karume Day", + "1998-01-29": "Eid al-Fitr (estimated)", + "1998-04-07": "Eid al-Adha (estimated); The Sheikh Abeid Amani Karume Day", "1998-04-10": "Good Friday", "1998-04-12": "Easter Sunday", "1998-04-13": "Easter Monday", "1998-04-26": "Union Celebrations", "1998-05-01": "Worker's Day", - "1998-07-06": "Maulid Day* (*estimated)", + "1998-07-06": "Maulid Day (estimated)", "1998-07-07": "International Trade Fair", "1998-08-08": "Peasants Day", "1998-12-09": "Independence and Republic Day", @@ -78,125 +78,125 @@ "1998-12-26": "Boxing Day", "1999-01-01": "New Year's Day", "1999-01-12": "Zanzibar Revolution Day", - "1999-01-18": "Eid al-Fitr* (*estimated)", - "1999-03-27": "Eid al-Adha* (*estimated)", + "1999-01-18": "Eid al-Fitr (estimated)", + "1999-03-27": "Eid al-Adha (estimated)", "1999-04-02": "Good Friday", "1999-04-04": "Easter Sunday", "1999-04-05": "Easter Monday", "1999-04-07": "The Sheikh Abeid Amani Karume Day", "1999-04-26": "Union Celebrations", "1999-05-01": "Worker's Day", - "1999-06-26": "Maulid Day* (*estimated)", + "1999-06-26": "Maulid Day (estimated)", "1999-07-07": "International Trade Fair", "1999-08-08": "Peasants Day", "1999-12-09": "Independence and Republic Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", "2000-01-01": "New Year's Day", - "2000-01-08": "Eid al-Fitr* (*estimated)", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-01-12": "Zanzibar Revolution Day", - "2000-03-16": "Eid al-Adha* (*estimated)", + "2000-03-16": "Eid al-Adha (estimated)", "2000-04-07": "The Sheikh Abeid Amani Karume Day", "2000-04-21": "Good Friday", "2000-04-23": "Easter Sunday", "2000-04-24": "Easter Monday", "2000-04-26": "Union Celebrations", "2000-05-01": "Worker's Day", - "2000-06-14": "Maulid Day* (*estimated)", + "2000-06-14": "Maulid Day (estimated)", "2000-07-07": "International Trade Fair", "2000-08-08": "Peasants Day", "2000-12-09": "Independence and Republic Day", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", - "2000-12-27": "Eid al-Fitr* (*estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-01-12": "Zanzibar Revolution Day", - "2001-03-05": "Eid al-Adha* (*estimated)", + "2001-03-05": "Eid al-Adha (estimated)", "2001-04-07": "The Sheikh Abeid Amani Karume Day", "2001-04-13": "Good Friday", "2001-04-15": "Easter Sunday", "2001-04-16": "Easter Monday", "2001-04-26": "Union Celebrations", "2001-05-01": "Worker's Day", - "2001-06-04": "Maulid Day* (*estimated)", + "2001-06-04": "Maulid Day (estimated)", "2001-07-07": "International Trade Fair", "2001-08-08": "Peasants Day", "2001-12-09": "Independence and Republic Day", - "2001-12-16": "Eid al-Fitr* (*estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-01-12": "Zanzibar Revolution Day", - "2002-02-22": "Eid al-Adha* (*estimated)", + "2002-02-22": "Eid al-Adha (estimated)", "2002-03-29": "Good Friday", "2002-03-31": "Easter Sunday", "2002-04-01": "Easter Monday", "2002-04-07": "The Sheikh Abeid Amani Karume Day", "2002-04-26": "Union Celebrations", "2002-05-01": "Worker's Day", - "2002-05-24": "Maulid Day* (*estimated)", + "2002-05-24": "Maulid Day (estimated)", "2002-07-07": "International Trade Fair", "2002-08-08": "Peasants Day", "2002-08-25": "National Population and Housing Census Day", - "2002-12-05": "Eid al-Fitr* (*estimated)", + "2002-12-05": "Eid al-Fitr (estimated)", "2002-12-09": "Independence and Republic Day", "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", "2003-01-12": "Zanzibar Revolution Day", - "2003-02-11": "Eid al-Adha* (*estimated)", + "2003-02-11": "Eid al-Adha (estimated)", "2003-04-07": "The Sheikh Abeid Amani Karume Day", "2003-04-18": "Good Friday", "2003-04-20": "Easter Sunday", "2003-04-21": "Easter Monday", "2003-04-26": "Union Celebrations", "2003-05-01": "Worker's Day", - "2003-05-13": "Maulid Day* (*estimated)", + "2003-05-13": "Maulid Day (estimated)", "2003-07-07": "International Trade Fair", "2003-08-08": "Peasants Day", "2003-10-14": "The Mwalimu Nyerere Day", - "2003-11-25": "Eid al-Fitr* (*estimated)", + "2003-11-25": "Eid al-Fitr (estimated)", "2003-12-09": "Independence and Republic Day", "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2004-01-01": "New Year's Day", "2004-01-12": "Zanzibar Revolution Day", - "2004-02-01": "Eid al-Adha* (*estimated)", + "2004-02-01": "Eid al-Adha (estimated)", "2004-04-07": "The Sheikh Abeid Amani Karume Day", "2004-04-09": "Good Friday", "2004-04-11": "Easter Sunday", "2004-04-12": "Easter Monday", "2004-04-26": "Union Celebrations", - "2004-05-01": "Maulid Day* (*estimated); Worker's Day", + "2004-05-01": "Maulid Day (estimated); Worker's Day", "2004-07-07": "International Trade Fair", "2004-08-08": "Peasants Day", "2004-10-14": "The Mwalimu Nyerere Day", - "2004-11-14": "Eid al-Fitr* (*estimated)", + "2004-11-14": "Eid al-Fitr (estimated)", "2004-12-09": "Independence and Republic Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", "2005-01-01": "New Year's Day", "2005-01-12": "Zanzibar Revolution Day", - "2005-01-21": "Eid al-Adha* (*estimated)", + "2005-01-21": "Eid al-Adha (estimated)", "2005-03-25": "Good Friday", "2005-03-27": "Easter Sunday", "2005-03-28": "Easter Monday", "2005-04-07": "The Sheikh Abeid Amani Karume Day", - "2005-04-21": "Maulid Day* (*estimated)", + "2005-04-21": "Maulid Day (estimated)", "2005-04-26": "Union Celebrations", "2005-05-01": "Worker's Day", "2005-07-07": "International Trade Fair", "2005-08-08": "Peasants Day", "2005-10-14": "The Mwalimu Nyerere Day", - "2005-11-03": "Eid al-Fitr* (*estimated)", + "2005-11-03": "Eid al-Fitr (estimated)", "2005-12-09": "Independence and Republic Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", "2006-01-01": "New Year's Day", - "2006-01-10": "Eid al-Adha* (*estimated)", + "2006-01-10": "Eid al-Adha (estimated)", "2006-01-12": "Zanzibar Revolution Day", "2006-04-07": "The Sheikh Abeid Amani Karume Day", - "2006-04-10": "Maulid Day* (*estimated)", + "2006-04-10": "Maulid Day (estimated)", "2006-04-14": "Good Friday", "2006-04-16": "Easter Sunday", "2006-04-17": "Easter Monday", @@ -205,14 +205,14 @@ "2006-07-07": "International Trade Fair", "2006-08-08": "Peasants Day", "2006-10-14": "The Mwalimu Nyerere Day", - "2006-10-23": "Eid al-Fitr* (*estimated)", + "2006-10-23": "Eid al-Fitr (estimated)", "2006-12-09": "Independence and Republic Day", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", - "2006-12-31": "Eid al-Adha* (*estimated)", + "2006-12-31": "Eid al-Adha (estimated)", "2007-01-01": "New Year's Day", "2007-01-12": "Zanzibar Revolution Day", - "2007-03-31": "Maulid Day* (*estimated)", + "2007-03-31": "Maulid Day (estimated)", "2007-04-06": "Good Friday", "2007-04-07": "The Sheikh Abeid Amani Karume Day", "2007-04-08": "Easter Sunday", @@ -221,15 +221,15 @@ "2007-05-01": "Worker's Day", "2007-07-07": "International Trade Fair", "2007-08-08": "Peasants Day", - "2007-10-13": "Eid al-Fitr* (*estimated)", + "2007-10-13": "Eid al-Fitr (estimated)", "2007-10-14": "The Mwalimu Nyerere Day", "2007-12-09": "Independence and Republic Day", - "2007-12-20": "Eid al-Adha* (*estimated)", + "2007-12-20": "Eid al-Adha (estimated)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", "2008-01-12": "Zanzibar Revolution Day", - "2008-03-20": "Maulid Day* (*estimated)", + "2008-03-20": "Maulid Day (estimated)", "2008-03-21": "Good Friday", "2008-03-23": "Easter Sunday", "2008-03-24": "Easter Monday", @@ -238,15 +238,15 @@ "2008-05-01": "Worker's Day", "2008-07-07": "International Trade Fair", "2008-08-08": "Peasants Day", - "2008-10-01": "Eid al-Fitr* (*estimated)", + "2008-10-01": "Eid al-Fitr (estimated)", "2008-10-14": "The Mwalimu Nyerere Day", - "2008-12-08": "Eid al-Adha* (*estimated)", + "2008-12-08": "Eid al-Adha (estimated)", "2008-12-09": "Independence and Republic Day", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2009-01-01": "New Year's Day", "2009-01-12": "Zanzibar Revolution Day", - "2009-03-09": "Maulid Day* (*estimated)", + "2009-03-09": "Maulid Day (estimated)", "2009-04-07": "The Sheikh Abeid Amani Karume Day", "2009-04-10": "Good Friday", "2009-04-12": "Easter Sunday", @@ -255,15 +255,15 @@ "2009-05-01": "Worker's Day", "2009-07-07": "International Trade Fair", "2009-08-08": "Peasants Day", - "2009-09-20": "Eid al-Fitr* (*estimated)", + "2009-09-20": "Eid al-Fitr (estimated)", "2009-10-14": "The Mwalimu Nyerere Day", - "2009-11-27": "Eid al-Adha* (*estimated)", + "2009-11-27": "Eid al-Adha (estimated)", "2009-12-09": "Independence and Republic Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2010-01-01": "New Year's Day", "2010-01-12": "Zanzibar Revolution Day", - "2010-02-26": "Maulid Day* (*estimated)", + "2010-02-26": "Maulid Day (estimated)", "2010-04-02": "Good Friday", "2010-04-04": "Easter Sunday", "2010-04-05": "Easter Monday", @@ -272,15 +272,15 @@ "2010-05-01": "Worker's Day", "2010-07-07": "International Trade Fair", "2010-08-08": "Peasants Day", - "2010-09-10": "Eid al-Fitr* (*estimated)", + "2010-09-10": "Eid al-Fitr (estimated)", "2010-10-14": "The Mwalimu Nyerere Day", - "2010-11-16": "Eid al-Adha* (*estimated)", + "2010-11-16": "Eid al-Adha (estimated)", "2010-12-09": "Independence and Republic Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2011-01-01": "New Year's Day", "2011-01-12": "Zanzibar Revolution Day", - "2011-02-15": "Maulid Day* (*estimated)", + "2011-02-15": "Maulid Day (estimated)", "2011-04-07": "The Sheikh Abeid Amani Karume Day", "2011-04-22": "Good Friday", "2011-04-24": "Easter Sunday", @@ -289,15 +289,15 @@ "2011-05-01": "Worker's Day", "2011-07-07": "International Trade Fair", "2011-08-08": "Peasants Day", - "2011-08-30": "Eid al-Fitr* (*estimated)", + "2011-08-30": "Eid al-Fitr (estimated)", "2011-10-14": "The Mwalimu Nyerere Day", - "2011-11-06": "Eid al-Adha* (*estimated)", + "2011-11-06": "Eid al-Adha (estimated)", "2011-12-09": "Independence and Republic Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2012-01-01": "New Year's Day", "2012-01-12": "Zanzibar Revolution Day", - "2012-02-04": "Maulid Day* (*estimated)", + "2012-02-04": "Maulid Day (estimated)", "2012-04-06": "Good Friday", "2012-04-07": "The Sheikh Abeid Amani Karume Day", "2012-04-08": "Easter Sunday", @@ -306,9 +306,9 @@ "2012-05-01": "Worker's Day", "2012-07-07": "International Trade Fair", "2012-08-08": "Peasants Day", - "2012-08-19": "Eid al-Fitr* (*estimated)", + "2012-08-19": "Eid al-Fitr (estimated)", "2012-10-14": "The Mwalimu Nyerere Day", - "2012-10-26": "Eid al-Adha* (*estimated)", + "2012-10-26": "Eid al-Adha (estimated)", "2012-12-09": "Independence and Republic Day", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", @@ -508,80 +508,80 @@ "2024-03-31": "Easter Sunday", "2024-04-01": "Easter Monday", "2024-04-07": "The Sheikh Abeid Amani Karume Day", - "2024-04-10": "Eid al-Fitr* (*estimated)", + "2024-04-10": "Eid al-Fitr (estimated)", "2024-04-26": "Union Celebrations", "2024-05-01": "Worker's Day", - "2024-06-16": "Eid al-Adha* (*estimated)", + "2024-06-16": "Eid al-Adha (estimated)", "2024-07-07": "International Trade Fair", "2024-08-08": "Peasants Day", - "2024-09-15": "Maulid Day* (*estimated)", + "2024-09-15": "Maulid Day (estimated)", "2024-10-14": "The Mwalimu Nyerere Day", "2024-12-09": "Independence and Republic Day", "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-12": "Zanzibar Revolution Day", - "2025-03-30": "Eid al-Fitr* (*estimated)", + "2025-03-30": "Eid al-Fitr (estimated)", "2025-04-07": "The Sheikh Abeid Amani Karume Day", "2025-04-18": "Good Friday", "2025-04-20": "Easter Sunday", "2025-04-21": "Easter Monday", "2025-04-26": "Union Celebrations", "2025-05-01": "Worker's Day", - "2025-06-06": "Eid al-Adha* (*estimated)", + "2025-06-06": "Eid al-Adha (estimated)", "2025-07-07": "International Trade Fair", "2025-08-08": "Peasants Day", - "2025-09-04": "Maulid Day* (*estimated)", + "2025-09-04": "Maulid Day (estimated)", "2025-10-14": "The Mwalimu Nyerere Day", "2025-12-09": "Independence and Republic Day", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2026-01-01": "New Year's Day", "2026-01-12": "Zanzibar Revolution Day", - "2026-03-20": "Eid al-Fitr* (*estimated)", + "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-03": "Good Friday", "2026-04-05": "Easter Sunday", "2026-04-06": "Easter Monday", "2026-04-07": "The Sheikh Abeid Amani Karume Day", "2026-04-26": "Union Celebrations", "2026-05-01": "Worker's Day", - "2026-05-27": "Eid al-Adha* (*estimated)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-07-07": "International Trade Fair", "2026-08-08": "Peasants Day", - "2026-08-25": "Maulid Day* (*estimated)", + "2026-08-25": "Maulid Day (estimated)", "2026-10-14": "The Mwalimu Nyerere Day", "2026-12-09": "Independence and Republic Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2027-01-01": "New Year's Day", "2027-01-12": "Zanzibar Revolution Day", - "2027-03-09": "Eid al-Fitr* (*estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-26": "Good Friday", "2027-03-28": "Easter Sunday", "2027-03-29": "Easter Monday", "2027-04-07": "The Sheikh Abeid Amani Karume Day", "2027-04-26": "Union Celebrations", "2027-05-01": "Worker's Day", - "2027-05-16": "Eid al-Adha* (*estimated)", + "2027-05-16": "Eid al-Adha (estimated)", "2027-07-07": "International Trade Fair", "2027-08-08": "Peasants Day", - "2027-08-14": "Maulid Day* (*estimated)", + "2027-08-14": "Maulid Day (estimated)", "2027-10-14": "The Mwalimu Nyerere Day", "2027-12-09": "Independence and Republic Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2028-01-01": "New Year's Day", "2028-01-12": "Zanzibar Revolution Day", - "2028-02-26": "Eid al-Fitr* (*estimated)", + "2028-02-26": "Eid al-Fitr (estimated)", "2028-04-07": "The Sheikh Abeid Amani Karume Day", "2028-04-14": "Good Friday", "2028-04-16": "Easter Sunday", "2028-04-17": "Easter Monday", "2028-04-26": "Union Celebrations", "2028-05-01": "Worker's Day", - "2028-05-05": "Eid al-Adha* (*estimated)", + "2028-05-05": "Eid al-Adha (estimated)", "2028-07-07": "International Trade Fair", - "2028-08-03": "Maulid Day* (*estimated)", + "2028-08-03": "Maulid Day (estimated)", "2028-08-08": "Peasants Day", "2028-10-14": "The Mwalimu Nyerere Day", "2028-12-09": "Independence and Republic Day", @@ -589,16 +589,16 @@ "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", "2029-01-12": "Zanzibar Revolution Day", - "2029-02-14": "Eid al-Fitr* (*estimated)", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-30": "Good Friday", "2029-04-01": "Easter Sunday", "2029-04-02": "Easter Monday", "2029-04-07": "The Sheikh Abeid Amani Karume Day", - "2029-04-24": "Eid al-Adha* (*estimated)", + "2029-04-24": "Eid al-Adha (estimated)", "2029-04-26": "Union Celebrations", "2029-05-01": "Worker's Day", "2029-07-07": "International Trade Fair", - "2029-07-24": "Maulid Day* (*estimated)", + "2029-07-24": "Maulid Day (estimated)", "2029-08-08": "Peasants Day", "2029-10-14": "The Mwalimu Nyerere Day", "2029-12-09": "Independence and Republic Day", @@ -606,16 +606,16 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-01-12": "Zanzibar Revolution Day", - "2030-02-04": "Eid al-Fitr* (*estimated)", + "2030-02-04": "Eid al-Fitr (estimated)", "2030-04-07": "The Sheikh Abeid Amani Karume Day", - "2030-04-13": "Eid al-Adha* (*estimated)", + "2030-04-13": "Eid al-Adha (estimated)", "2030-04-19": "Good Friday", "2030-04-21": "Easter Sunday", "2030-04-22": "Easter Monday", "2030-04-26": "Union Celebrations", "2030-05-01": "Worker's Day", "2030-07-07": "International Trade Fair", - "2030-07-13": "Maulid Day* (*estimated)", + "2030-07-13": "Maulid Day (estimated)", "2030-08-08": "Peasants Day", "2030-10-14": "The Mwalimu Nyerere Day", "2030-12-09": "Independence and Republic Day", @@ -623,15 +623,15 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-12": "Zanzibar Revolution Day", - "2031-01-24": "Eid al-Fitr* (*estimated)", - "2031-04-02": "Eid al-Adha* (*estimated)", + "2031-01-24": "Eid al-Fitr (estimated)", + "2031-04-02": "Eid al-Adha (estimated)", "2031-04-07": "The Sheikh Abeid Amani Karume Day", "2031-04-11": "Good Friday", "2031-04-13": "Easter Sunday", "2031-04-14": "Easter Monday", "2031-04-26": "Union Celebrations", "2031-05-01": "Worker's Day", - "2031-07-02": "Maulid Day* (*estimated)", + "2031-07-02": "Maulid Day (estimated)", "2031-07-07": "International Trade Fair", "2031-08-08": "Peasants Day", "2031-10-14": "The Mwalimu Nyerere Day", @@ -640,15 +640,15 @@ "2031-12-26": "Boxing Day", "2032-01-01": "New Year's Day", "2032-01-12": "Zanzibar Revolution Day", - "2032-01-14": "Eid al-Fitr* (*estimated)", - "2032-03-22": "Eid al-Adha* (*estimated)", + "2032-01-14": "Eid al-Fitr (estimated)", + "2032-03-22": "Eid al-Adha (estimated)", "2032-03-26": "Good Friday", "2032-03-28": "Easter Sunday", "2032-03-29": "Easter Monday", "2032-04-07": "The Sheikh Abeid Amani Karume Day", "2032-04-26": "Union Celebrations", "2032-05-01": "Worker's Day", - "2032-06-20": "Maulid Day* (*estimated)", + "2032-06-20": "Maulid Day (estimated)", "2032-07-07": "International Trade Fair", "2032-08-08": "Peasants Day", "2032-10-14": "The Mwalimu Nyerere Day", @@ -656,95 +656,95 @@ "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2033-01-01": "New Year's Day", - "2033-01-02": "Eid al-Fitr* (*estimated)", + "2033-01-02": "Eid al-Fitr (estimated)", "2033-01-12": "Zanzibar Revolution Day", - "2033-03-11": "Eid al-Adha* (*estimated)", + "2033-03-11": "Eid al-Adha (estimated)", "2033-04-07": "The Sheikh Abeid Amani Karume Day", "2033-04-15": "Good Friday", "2033-04-17": "Easter Sunday", "2033-04-18": "Easter Monday", "2033-04-26": "Union Celebrations", "2033-05-01": "Worker's Day", - "2033-06-09": "Maulid Day* (*estimated)", + "2033-06-09": "Maulid Day (estimated)", "2033-07-07": "International Trade Fair", "2033-08-08": "Peasants Day", "2033-10-14": "The Mwalimu Nyerere Day", "2033-12-09": "Independence and Republic Day", - "2033-12-23": "Eid al-Fitr* (*estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2034-01-01": "New Year's Day", "2034-01-12": "Zanzibar Revolution Day", - "2034-03-01": "Eid al-Adha* (*estimated)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-04-07": "Good Friday; The Sheikh Abeid Amani Karume Day", "2034-04-09": "Easter Sunday", "2034-04-10": "Easter Monday", "2034-04-26": "Union Celebrations", "2034-05-01": "Worker's Day", - "2034-05-30": "Maulid Day* (*estimated)", + "2034-05-30": "Maulid Day (estimated)", "2034-07-07": "International Trade Fair", "2034-08-08": "Peasants Day", "2034-10-14": "The Mwalimu Nyerere Day", "2034-12-09": "Independence and Republic Day", - "2034-12-12": "Eid al-Fitr* (*estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", "2035-01-12": "Zanzibar Revolution Day", - "2035-02-18": "Eid al-Adha* (*estimated)", + "2035-02-18": "Eid al-Adha (estimated)", "2035-03-23": "Good Friday", "2035-03-25": "Easter Sunday", "2035-03-26": "Easter Monday", "2035-04-07": "The Sheikh Abeid Amani Karume Day", "2035-04-26": "Union Celebrations", "2035-05-01": "Worker's Day", - "2035-05-20": "Maulid Day* (*estimated)", + "2035-05-20": "Maulid Day (estimated)", "2035-07-07": "International Trade Fair", "2035-08-08": "Peasants Day", "2035-10-14": "The Mwalimu Nyerere Day", - "2035-12-01": "Eid al-Fitr* (*estimated)", + "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-09": "Independence and Republic Day", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-12": "Zanzibar Revolution Day", - "2036-02-07": "Eid al-Adha* (*estimated)", + "2036-02-07": "Eid al-Adha (estimated)", "2036-04-07": "The Sheikh Abeid Amani Karume Day", "2036-04-11": "Good Friday", "2036-04-13": "Easter Sunday", "2036-04-14": "Easter Monday", "2036-04-26": "Union Celebrations", "2036-05-01": "Worker's Day", - "2036-05-08": "Maulid Day* (*estimated)", + "2036-05-08": "Maulid Day (estimated)", "2036-07-07": "International Trade Fair", "2036-08-08": "Peasants Day", "2036-10-14": "The Mwalimu Nyerere Day", - "2036-11-19": "Eid al-Fitr* (*estimated)", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-12-09": "Independence and Republic Day", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2037-01-01": "New Year's Day", "2037-01-12": "Zanzibar Revolution Day", - "2037-01-26": "Eid al-Adha* (*estimated)", + "2037-01-26": "Eid al-Adha (estimated)", "2037-04-03": "Good Friday", "2037-04-05": "Easter Sunday", "2037-04-06": "Easter Monday", "2037-04-07": "The Sheikh Abeid Amani Karume Day", "2037-04-26": "Union Celebrations", - "2037-04-28": "Maulid Day* (*estimated)", + "2037-04-28": "Maulid Day (estimated)", "2037-05-01": "Worker's Day", "2037-07-07": "International Trade Fair", "2037-08-08": "Peasants Day", "2037-10-14": "The Mwalimu Nyerere Day", - "2037-11-08": "Eid al-Fitr* (*estimated)", + "2037-11-08": "Eid al-Fitr (estimated)", "2037-12-09": "Independence and Republic Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2038-01-01": "New Year's Day", "2038-01-12": "Zanzibar Revolution Day", - "2038-01-16": "Eid al-Adha* (*estimated)", + "2038-01-16": "Eid al-Adha (estimated)", "2038-04-07": "The Sheikh Abeid Amani Karume Day", - "2038-04-17": "Maulid Day* (*estimated)", + "2038-04-17": "Maulid Day (estimated)", "2038-04-23": "Good Friday", "2038-04-25": "Easter Sunday", "2038-04-26": "Easter Monday; Union Celebrations", @@ -752,14 +752,14 @@ "2038-07-07": "International Trade Fair", "2038-08-08": "Peasants Day", "2038-10-14": "The Mwalimu Nyerere Day", - "2038-10-29": "Eid al-Fitr* (*estimated)", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-09": "Independence and Republic Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2039-01-01": "New Year's Day", - "2039-01-05": "Eid al-Adha* (*estimated)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-01-12": "Zanzibar Revolution Day", - "2039-04-06": "Maulid Day* (*estimated)", + "2039-04-06": "Maulid Day (estimated)", "2039-04-07": "The Sheikh Abeid Amani Karume Day", "2039-04-08": "Good Friday", "2039-04-10": "Easter Sunday", @@ -769,13 +769,13 @@ "2039-07-07": "International Trade Fair", "2039-08-08": "Peasants Day", "2039-10-14": "The Mwalimu Nyerere Day", - "2039-10-19": "Eid al-Fitr* (*estimated)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-12-09": "Independence and Republic Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Eid al-Adha* (*estimated)", + "2039-12-26": "Boxing Day; Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-12": "Zanzibar Revolution Day", - "2040-03-25": "Maulid Day* (*estimated)", + "2040-03-25": "Maulid Day (estimated)", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", "2040-04-02": "Easter Monday", @@ -784,15 +784,15 @@ "2040-05-01": "Worker's Day", "2040-07-07": "International Trade Fair", "2040-08-08": "Peasants Day", - "2040-10-07": "Eid al-Fitr* (*estimated)", + "2040-10-07": "Eid al-Fitr (estimated)", "2040-10-14": "The Mwalimu Nyerere Day", "2040-12-09": "Independence and Republic Day", - "2040-12-14": "Eid al-Adha* (*estimated)", + "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-01-12": "Zanzibar Revolution Day", - "2041-03-15": "Maulid Day* (*estimated)", + "2041-03-15": "Maulid Day (estimated)", "2041-04-07": "The Sheikh Abeid Amani Karume Day", "2041-04-19": "Good Friday", "2041-04-21": "Easter Sunday", @@ -801,15 +801,15 @@ "2041-05-01": "Worker's Day", "2041-07-07": "International Trade Fair", "2041-08-08": "Peasants Day", - "2041-09-26": "Eid al-Fitr* (*estimated)", + "2041-09-26": "Eid al-Fitr (estimated)", "2041-10-14": "The Mwalimu Nyerere Day", - "2041-12-04": "Eid al-Adha* (*estimated)", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-09": "Independence and Republic Day", "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-12": "Zanzibar Revolution Day", - "2042-03-04": "Maulid Day* (*estimated)", + "2042-03-04": "Maulid Day (estimated)", "2042-04-04": "Good Friday", "2042-04-06": "Easter Sunday", "2042-04-07": "Easter Monday; The Sheikh Abeid Amani Karume Day", @@ -817,15 +817,15 @@ "2042-05-01": "Worker's Day", "2042-07-07": "International Trade Fair", "2042-08-08": "Peasants Day", - "2042-09-15": "Eid al-Fitr* (*estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", "2042-10-14": "The Mwalimu Nyerere Day", - "2042-11-23": "Eid al-Adha* (*estimated)", + "2042-11-23": "Eid al-Adha (estimated)", "2042-12-09": "Independence and Republic Day", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2043-01-01": "New Year's Day", "2043-01-12": "Zanzibar Revolution Day", - "2043-02-22": "Maulid Day* (*estimated)", + "2043-02-22": "Maulid Day (estimated)", "2043-03-27": "Good Friday", "2043-03-29": "Easter Sunday", "2043-03-30": "Easter Monday", @@ -834,15 +834,15 @@ "2043-05-01": "Worker's Day", "2043-07-07": "International Trade Fair", "2043-08-08": "Peasants Day", - "2043-09-04": "Eid al-Fitr* (*estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", "2043-10-14": "The Mwalimu Nyerere Day", - "2043-11-12": "Eid al-Adha* (*estimated)", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-09": "Independence and Republic Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2044-01-01": "New Year's Day", "2044-01-12": "Zanzibar Revolution Day", - "2044-02-11": "Maulid Day* (*estimated)", + "2044-02-11": "Maulid Day (estimated)", "2044-04-07": "The Sheikh Abeid Amani Karume Day", "2044-04-15": "Good Friday", "2044-04-17": "Easter Sunday", @@ -851,15 +851,15 @@ "2044-05-01": "Worker's Day", "2044-07-07": "International Trade Fair", "2044-08-08": "Peasants Day", - "2044-08-24": "Eid al-Fitr* (*estimated)", + "2044-08-24": "Eid al-Fitr (estimated)", "2044-10-14": "The Mwalimu Nyerere Day", - "2044-10-31": "Eid al-Adha* (*estimated)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-12-09": "Independence and Republic Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2045-01-01": "New Year's Day", "2045-01-12": "Zanzibar Revolution Day", - "2045-01-30": "Maulid Day* (*estimated)", + "2045-01-30": "Maulid Day (estimated)", "2045-04-07": "Good Friday; The Sheikh Abeid Amani Karume Day", "2045-04-09": "Easter Sunday", "2045-04-10": "Easter Monday", @@ -867,15 +867,15 @@ "2045-05-01": "Worker's Day", "2045-07-07": "International Trade Fair", "2045-08-08": "Peasants Day", - "2045-08-14": "Eid al-Fitr* (*estimated)", + "2045-08-14": "Eid al-Fitr (estimated)", "2045-10-14": "The Mwalimu Nyerere Day", - "2045-10-21": "Eid al-Adha* (*estimated)", + "2045-10-21": "Eid al-Adha (estimated)", "2045-12-09": "Independence and Republic Day", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", "2046-01-12": "Zanzibar Revolution Day", - "2046-01-19": "Maulid Day* (*estimated)", + "2046-01-19": "Maulid Day (estimated)", "2046-03-23": "Good Friday", "2046-03-25": "Easter Sunday", "2046-03-26": "Easter Monday", @@ -883,15 +883,15 @@ "2046-04-26": "Union Celebrations", "2046-05-01": "Worker's Day", "2046-07-07": "International Trade Fair", - "2046-08-03": "Eid al-Fitr* (*estimated)", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-08": "Peasants Day", - "2046-10-10": "Eid al-Adha* (*estimated)", + "2046-10-10": "Eid al-Adha (estimated)", "2046-10-14": "The Mwalimu Nyerere Day", "2046-12-09": "Independence and Republic Day", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", - "2047-01-08": "Maulid Day* (*estimated)", + "2047-01-08": "Maulid Day (estimated)", "2047-01-12": "Zanzibar Revolution Day", "2047-04-07": "The Sheikh Abeid Amani Karume Day", "2047-04-12": "Good Friday", @@ -900,14 +900,14 @@ "2047-04-26": "Union Celebrations", "2047-05-01": "Worker's Day", "2047-07-07": "International Trade Fair", - "2047-07-24": "Eid al-Fitr* (*estimated)", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-08-08": "Peasants Day", - "2047-09-30": "Eid al-Adha* (*estimated)", + "2047-09-30": "Eid al-Adha (estimated)", "2047-10-14": "The Mwalimu Nyerere Day", "2047-12-09": "Independence and Republic Day", "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", - "2047-12-29": "Maulid Day* (*estimated)", + "2047-12-29": "Maulid Day (estimated)", "2048-01-01": "New Year's Day", "2048-01-12": "Zanzibar Revolution Day", "2048-04-03": "Good Friday", @@ -917,12 +917,12 @@ "2048-04-26": "Union Celebrations", "2048-05-01": "Worker's Day", "2048-07-07": "International Trade Fair", - "2048-07-12": "Eid al-Fitr* (*estimated)", + "2048-07-12": "Eid al-Fitr (estimated)", "2048-08-08": "Peasants Day", - "2048-09-19": "Eid al-Adha* (*estimated)", + "2048-09-19": "Eid al-Adha (estimated)", "2048-10-14": "The Mwalimu Nyerere Day", "2048-12-09": "Independence and Republic Day", - "2048-12-18": "Maulid Day* (*estimated)", + "2048-12-18": "Maulid Day (estimated)", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2049-01-01": "New Year's Day", @@ -933,12 +933,12 @@ "2049-04-19": "Easter Monday", "2049-04-26": "Union Celebrations", "2049-05-01": "Worker's Day", - "2049-07-01": "Eid al-Fitr* (*estimated)", + "2049-07-01": "Eid al-Fitr (estimated)", "2049-07-07": "International Trade Fair", "2049-08-08": "Peasants Day", - "2049-09-08": "Eid al-Adha* (*estimated)", + "2049-09-08": "Eid al-Adha (estimated)", "2049-10-14": "The Mwalimu Nyerere Day", - "2049-12-07": "Maulid Day* (*estimated)", + "2049-12-07": "Maulid Day (estimated)", "2049-12-09": "Independence and Republic Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", @@ -950,12 +950,12 @@ "2050-04-11": "Easter Monday", "2050-04-26": "Union Celebrations", "2050-05-01": "Worker's Day", - "2050-06-20": "Eid al-Fitr* (*estimated)", + "2050-06-20": "Eid al-Fitr (estimated)", "2050-07-07": "International Trade Fair", "2050-08-08": "Peasants Day", - "2050-08-28": "Eid al-Adha* (*estimated)", + "2050-08-28": "Eid al-Adha (estimated)", "2050-10-14": "The Mwalimu Nyerere Day", - "2050-11-26": "Maulid Day* (*estimated)", + "2050-11-26": "Maulid Day (estimated)", "2050-12-09": "Independence and Republic Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day" diff --git a/snapshots/countries/UZ_COMMON.json b/snapshots/countries/UZ_COMMON.json index ce957e0e9..4d3f37c0a 100644 --- a/snapshots/countries/UZ_COMMON.json +++ b/snapshots/countries/UZ_COMMON.json @@ -3,26 +3,26 @@ "1950-03-08": "Women's Day", "1950-03-21": "Nauryz", "1950-05-09": "Memorial Day", - "1950-07-16": "Ramadan Khait* (*estimated)", + "1950-07-16": "Ramadan Khait (estimated)", "1950-09-01": "Independence Day", - "1950-09-23": "Kurban Khait* (*estimated)", + "1950-09-23": "Kurban Khait (estimated)", "1950-10-01": "Teacher's Day", "1950-12-08": "Constitution Day", "1951-01-01": "New Year", "1951-03-08": "Women's Day", "1951-03-21": "Nauryz", "1951-05-09": "Memorial Day", - "1951-07-06": "Ramadan Khait* (*estimated)", + "1951-07-06": "Ramadan Khait (estimated)", "1951-09-01": "Independence Day", - "1951-09-12": "Kurban Khait* (*estimated)", + "1951-09-12": "Kurban Khait (estimated)", "1951-10-01": "Teacher's Day", "1951-12-08": "Constitution Day", "1952-01-01": "New Year", "1952-03-08": "Women's Day", "1952-03-21": "Nauryz", "1952-05-09": "Memorial Day", - "1952-06-23": "Ramadan Khait* (*estimated)", - "1952-08-31": "Kurban Khait* (*estimated)", + "1952-06-23": "Ramadan Khait (estimated)", + "1952-08-31": "Kurban Khait (estimated)", "1952-09-01": "Independence Day", "1952-10-01": "Teacher's Day", "1952-12-08": "Constitution Day", @@ -30,8 +30,8 @@ "1953-03-08": "Women's Day", "1953-03-21": "Nauryz", "1953-05-09": "Memorial Day", - "1953-06-13": "Ramadan Khait* (*estimated)", - "1953-08-20": "Kurban Khait* (*estimated)", + "1953-06-13": "Ramadan Khait (estimated)", + "1953-08-20": "Kurban Khait (estimated)", "1953-09-01": "Independence Day", "1953-10-01": "Teacher's Day", "1953-12-08": "Constitution Day", @@ -39,8 +39,8 @@ "1954-03-08": "Women's Day", "1954-03-21": "Nauryz", "1954-05-09": "Memorial Day", - "1954-06-02": "Ramadan Khait* (*estimated)", - "1954-08-09": "Kurban Khait* (*estimated)", + "1954-06-02": "Ramadan Khait (estimated)", + "1954-08-09": "Kurban Khait (estimated)", "1954-09-01": "Independence Day", "1954-10-01": "Teacher's Day", "1954-12-08": "Constitution Day", @@ -48,8 +48,8 @@ "1955-03-08": "Women's Day", "1955-03-21": "Nauryz", "1955-05-09": "Memorial Day", - "1955-05-23": "Ramadan Khait* (*estimated)", - "1955-07-30": "Kurban Khait* (*estimated)", + "1955-05-23": "Ramadan Khait (estimated)", + "1955-07-30": "Kurban Khait (estimated)", "1955-09-01": "Independence Day", "1955-10-01": "Teacher's Day", "1955-12-08": "Constitution Day", @@ -57,269 +57,269 @@ "1956-03-08": "Women's Day", "1956-03-21": "Nauryz", "1956-05-09": "Memorial Day", - "1956-05-11": "Ramadan Khait* (*estimated)", - "1956-07-19": "Kurban Khait* (*estimated)", + "1956-05-11": "Ramadan Khait (estimated)", + "1956-07-19": "Kurban Khait (estimated)", "1956-09-01": "Independence Day", "1956-10-01": "Teacher's Day", "1956-12-08": "Constitution Day", "1957-01-01": "New Year", "1957-03-08": "Women's Day", "1957-03-21": "Nauryz", - "1957-05-01": "Ramadan Khait* (*estimated)", + "1957-05-01": "Ramadan Khait (estimated)", "1957-05-09": "Memorial Day", - "1957-07-08": "Kurban Khait* (*estimated)", + "1957-07-08": "Kurban Khait (estimated)", "1957-09-01": "Independence Day", "1957-10-01": "Teacher's Day", "1957-12-08": "Constitution Day", "1958-01-01": "New Year", "1958-03-08": "Women's Day", "1958-03-21": "Nauryz", - "1958-04-20": "Ramadan Khait* (*estimated)", + "1958-04-20": "Ramadan Khait (estimated)", "1958-05-09": "Memorial Day", - "1958-06-27": "Kurban Khait* (*estimated)", + "1958-06-27": "Kurban Khait (estimated)", "1958-09-01": "Independence Day", "1958-10-01": "Teacher's Day", "1958-12-08": "Constitution Day", "1959-01-01": "New Year", "1959-03-08": "Women's Day", "1959-03-21": "Nauryz", - "1959-04-10": "Ramadan Khait* (*estimated)", + "1959-04-10": "Ramadan Khait (estimated)", "1959-05-09": "Memorial Day", - "1959-06-17": "Kurban Khait* (*estimated)", + "1959-06-17": "Kurban Khait (estimated)", "1959-09-01": "Independence Day", "1959-10-01": "Teacher's Day", "1959-12-08": "Constitution Day", "1960-01-01": "New Year", "1960-03-08": "Women's Day", "1960-03-21": "Nauryz", - "1960-03-28": "Ramadan Khait* (*estimated)", + "1960-03-28": "Ramadan Khait (estimated)", "1960-05-09": "Memorial Day", - "1960-06-04": "Kurban Khait* (*estimated)", + "1960-06-04": "Kurban Khait (estimated)", "1960-09-01": "Independence Day", "1960-10-01": "Teacher's Day", "1960-12-08": "Constitution Day", "1961-01-01": "New Year", "1961-03-08": "Women's Day", - "1961-03-18": "Ramadan Khait* (*estimated)", + "1961-03-18": "Ramadan Khait (estimated)", "1961-03-21": "Nauryz", "1961-05-09": "Memorial Day", - "1961-05-25": "Kurban Khait* (*estimated)", + "1961-05-25": "Kurban Khait (estimated)", "1961-09-01": "Independence Day", "1961-10-01": "Teacher's Day", "1961-12-08": "Constitution Day", "1962-01-01": "New Year", - "1962-03-07": "Ramadan Khait* (*estimated)", + "1962-03-07": "Ramadan Khait (estimated)", "1962-03-08": "Women's Day", "1962-03-21": "Nauryz", "1962-05-09": "Memorial Day", - "1962-05-14": "Kurban Khait* (*estimated)", + "1962-05-14": "Kurban Khait (estimated)", "1962-09-01": "Independence Day", "1962-10-01": "Teacher's Day", "1962-12-08": "Constitution Day", "1963-01-01": "New Year", - "1963-02-24": "Ramadan Khait* (*estimated)", + "1963-02-24": "Ramadan Khait (estimated)", "1963-03-08": "Women's Day", "1963-03-21": "Nauryz", - "1963-05-03": "Kurban Khait* (*estimated)", + "1963-05-03": "Kurban Khait (estimated)", "1963-05-09": "Memorial Day", "1963-09-01": "Independence Day", "1963-10-01": "Teacher's Day", "1963-12-08": "Constitution Day", "1964-01-01": "New Year", - "1964-02-14": "Ramadan Khait* (*estimated)", + "1964-02-14": "Ramadan Khait (estimated)", "1964-03-08": "Women's Day", "1964-03-21": "Nauryz", - "1964-04-22": "Kurban Khait* (*estimated)", + "1964-04-22": "Kurban Khait (estimated)", "1964-05-09": "Memorial Day", "1964-09-01": "Independence Day", "1964-10-01": "Teacher's Day", "1964-12-08": "Constitution Day", "1965-01-01": "New Year", - "1965-02-02": "Ramadan Khait* (*estimated)", + "1965-02-02": "Ramadan Khait (estimated)", "1965-03-08": "Women's Day", "1965-03-21": "Nauryz", - "1965-04-11": "Kurban Khait* (*estimated)", + "1965-04-11": "Kurban Khait (estimated)", "1965-05-09": "Memorial Day", "1965-09-01": "Independence Day", "1965-10-01": "Teacher's Day", "1965-12-08": "Constitution Day", "1966-01-01": "New Year", - "1966-01-22": "Ramadan Khait* (*estimated)", + "1966-01-22": "Ramadan Khait (estimated)", "1966-03-08": "Women's Day", "1966-03-21": "Nauryz", - "1966-04-01": "Kurban Khait* (*estimated)", + "1966-04-01": "Kurban Khait (estimated)", "1966-05-09": "Memorial Day", "1966-09-01": "Independence Day", "1966-10-01": "Teacher's Day", "1966-12-08": "Constitution Day", "1967-01-01": "New Year", - "1967-01-12": "Ramadan Khait* (*estimated)", + "1967-01-12": "Ramadan Khait (estimated)", "1967-03-08": "Women's Day", - "1967-03-21": "Kurban Khait* (*estimated); Nauryz", + "1967-03-21": "Kurban Khait (estimated); Nauryz", "1967-05-09": "Memorial Day", "1967-09-01": "Independence Day", "1967-10-01": "Teacher's Day", "1967-12-08": "Constitution Day", - "1968-01-01": "New Year; Ramadan Khait* (*estimated)", + "1968-01-01": "New Year; Ramadan Khait (estimated)", "1968-03-08": "Women's Day", - "1968-03-09": "Kurban Khait* (*estimated)", + "1968-03-09": "Kurban Khait (estimated)", "1968-03-21": "Nauryz", "1968-05-09": "Memorial Day", "1968-09-01": "Independence Day", "1968-10-01": "Teacher's Day", "1968-12-08": "Constitution Day", - "1968-12-21": "Ramadan Khait* (*estimated)", + "1968-12-21": "Ramadan Khait (estimated)", "1969-01-01": "New Year", - "1969-02-27": "Kurban Khait* (*estimated)", + "1969-02-27": "Kurban Khait (estimated)", "1969-03-08": "Women's Day", "1969-03-21": "Nauryz", "1969-05-09": "Memorial Day", "1969-09-01": "Independence Day", "1969-10-01": "Teacher's Day", "1969-12-08": "Constitution Day", - "1969-12-10": "Ramadan Khait* (*estimated)", + "1969-12-10": "Ramadan Khait (estimated)", "1970-01-01": "New Year", - "1970-02-16": "Kurban Khait* (*estimated)", + "1970-02-16": "Kurban Khait (estimated)", "1970-03-08": "Women's Day", "1970-03-21": "Nauryz", "1970-05-09": "Memorial Day", "1970-09-01": "Independence Day", "1970-10-01": "Teacher's Day", - "1970-11-30": "Ramadan Khait* (*estimated)", + "1970-11-30": "Ramadan Khait (estimated)", "1970-12-08": "Constitution Day", "1971-01-01": "New Year", - "1971-02-06": "Kurban Khait* (*estimated)", + "1971-02-06": "Kurban Khait (estimated)", "1971-03-08": "Women's Day", "1971-03-21": "Nauryz", "1971-05-09": "Memorial Day", "1971-09-01": "Independence Day", "1971-10-01": "Teacher's Day", - "1971-11-19": "Ramadan Khait* (*estimated)", + "1971-11-19": "Ramadan Khait (estimated)", "1971-12-08": "Constitution Day", "1972-01-01": "New Year", - "1972-01-26": "Kurban Khait* (*estimated)", + "1972-01-26": "Kurban Khait (estimated)", "1972-03-08": "Women's Day", "1972-03-21": "Nauryz", "1972-05-09": "Memorial Day", "1972-09-01": "Independence Day", "1972-10-01": "Teacher's Day", - "1972-11-07": "Ramadan Khait* (*estimated)", + "1972-11-07": "Ramadan Khait (estimated)", "1972-12-08": "Constitution Day", "1973-01-01": "New Year", - "1973-01-14": "Kurban Khait* (*estimated)", + "1973-01-14": "Kurban Khait (estimated)", "1973-03-08": "Women's Day", "1973-03-21": "Nauryz", "1973-05-09": "Memorial Day", "1973-09-01": "Independence Day", "1973-10-01": "Teacher's Day", - "1973-10-27": "Ramadan Khait* (*estimated)", + "1973-10-27": "Ramadan Khait (estimated)", "1973-12-08": "Constitution Day", "1974-01-01": "New Year", - "1974-01-03": "Kurban Khait* (*estimated)", + "1974-01-03": "Kurban Khait (estimated)", "1974-03-08": "Women's Day", "1974-03-21": "Nauryz", "1974-05-09": "Memorial Day", "1974-09-01": "Independence Day", "1974-10-01": "Teacher's Day", - "1974-10-16": "Ramadan Khait* (*estimated)", + "1974-10-16": "Ramadan Khait (estimated)", "1974-12-08": "Constitution Day", - "1974-12-24": "Kurban Khait* (*estimated)", + "1974-12-24": "Kurban Khait (estimated)", "1975-01-01": "New Year", "1975-03-08": "Women's Day", "1975-03-21": "Nauryz", "1975-05-09": "Memorial Day", "1975-09-01": "Independence Day", "1975-10-01": "Teacher's Day", - "1975-10-06": "Ramadan Khait* (*estimated)", + "1975-10-06": "Ramadan Khait (estimated)", "1975-12-08": "Constitution Day", - "1975-12-13": "Kurban Khait* (*estimated)", + "1975-12-13": "Kurban Khait (estimated)", "1976-01-01": "New Year", "1976-03-08": "Women's Day", "1976-03-21": "Nauryz", "1976-05-09": "Memorial Day", "1976-09-01": "Independence Day", - "1976-09-24": "Ramadan Khait* (*estimated)", + "1976-09-24": "Ramadan Khait (estimated)", "1976-10-01": "Teacher's Day", - "1976-12-01": "Kurban Khait* (*estimated)", + "1976-12-01": "Kurban Khait (estimated)", "1976-12-08": "Constitution Day", "1977-01-01": "New Year", "1977-03-08": "Women's Day", "1977-03-21": "Nauryz", "1977-05-09": "Memorial Day", "1977-09-01": "Independence Day", - "1977-09-14": "Ramadan Khait* (*estimated)", + "1977-09-14": "Ramadan Khait (estimated)", "1977-10-01": "Teacher's Day", - "1977-11-21": "Kurban Khait* (*estimated)", + "1977-11-21": "Kurban Khait (estimated)", "1977-12-08": "Constitution Day", "1978-01-01": "New Year", "1978-03-08": "Women's Day", "1978-03-21": "Nauryz", "1978-05-09": "Memorial Day", "1978-09-01": "Independence Day", - "1978-09-03": "Ramadan Khait* (*estimated)", + "1978-09-03": "Ramadan Khait (estimated)", "1978-10-01": "Teacher's Day", - "1978-11-10": "Kurban Khait* (*estimated)", + "1978-11-10": "Kurban Khait (estimated)", "1978-12-08": "Constitution Day", "1979-01-01": "New Year", "1979-03-08": "Women's Day", "1979-03-21": "Nauryz", "1979-05-09": "Memorial Day", - "1979-08-23": "Ramadan Khait* (*estimated)", + "1979-08-23": "Ramadan Khait (estimated)", "1979-09-01": "Independence Day", "1979-10-01": "Teacher's Day", - "1979-10-31": "Kurban Khait* (*estimated)", + "1979-10-31": "Kurban Khait (estimated)", "1979-12-08": "Constitution Day", "1980-01-01": "New Year", "1980-03-08": "Women's Day", "1980-03-21": "Nauryz", "1980-05-09": "Memorial Day", - "1980-08-12": "Ramadan Khait* (*estimated)", + "1980-08-12": "Ramadan Khait (estimated)", "1980-09-01": "Independence Day", "1980-10-01": "Teacher's Day", - "1980-10-19": "Kurban Khait* (*estimated)", + "1980-10-19": "Kurban Khait (estimated)", "1980-12-08": "Constitution Day", "1981-01-01": "New Year", "1981-03-08": "Women's Day", "1981-03-21": "Nauryz", "1981-05-09": "Memorial Day", - "1981-08-01": "Ramadan Khait* (*estimated)", + "1981-08-01": "Ramadan Khait (estimated)", "1981-09-01": "Independence Day", "1981-10-01": "Teacher's Day", - "1981-10-08": "Kurban Khait* (*estimated)", + "1981-10-08": "Kurban Khait (estimated)", "1981-12-08": "Constitution Day", "1982-01-01": "New Year", "1982-03-08": "Women's Day", "1982-03-21": "Nauryz", "1982-05-09": "Memorial Day", - "1982-07-21": "Ramadan Khait* (*estimated)", + "1982-07-21": "Ramadan Khait (estimated)", "1982-09-01": "Independence Day", - "1982-09-27": "Kurban Khait* (*estimated)", + "1982-09-27": "Kurban Khait (estimated)", "1982-10-01": "Teacher's Day", "1982-12-08": "Constitution Day", "1983-01-01": "New Year", "1983-03-08": "Women's Day", "1983-03-21": "Nauryz", "1983-05-09": "Memorial Day", - "1983-07-11": "Ramadan Khait* (*estimated)", + "1983-07-11": "Ramadan Khait (estimated)", "1983-09-01": "Independence Day", - "1983-09-17": "Kurban Khait* (*estimated)", + "1983-09-17": "Kurban Khait (estimated)", "1983-10-01": "Teacher's Day", "1983-12-08": "Constitution Day", "1984-01-01": "New Year", "1984-03-08": "Women's Day", "1984-03-21": "Nauryz", "1984-05-09": "Memorial Day", - "1984-06-30": "Ramadan Khait* (*estimated)", + "1984-06-30": "Ramadan Khait (estimated)", "1984-09-01": "Independence Day", - "1984-09-05": "Kurban Khait* (*estimated)", + "1984-09-05": "Kurban Khait (estimated)", "1984-10-01": "Teacher's Day", "1984-12-08": "Constitution Day", "1985-01-01": "New Year", "1985-03-08": "Women's Day", "1985-03-21": "Nauryz", "1985-05-09": "Memorial Day", - "1985-06-19": "Ramadan Khait* (*estimated)", - "1985-08-26": "Kurban Khait* (*estimated)", + "1985-06-19": "Ramadan Khait (estimated)", + "1985-08-26": "Kurban Khait (estimated)", "1985-09-01": "Independence Day", "1985-10-01": "Teacher's Day", "1985-12-08": "Constitution Day", @@ -327,8 +327,8 @@ "1986-03-08": "Women's Day", "1986-03-21": "Nauryz", "1986-05-09": "Memorial Day", - "1986-06-08": "Ramadan Khait* (*estimated)", - "1986-08-15": "Kurban Khait* (*estimated)", + "1986-06-08": "Ramadan Khait (estimated)", + "1986-08-15": "Kurban Khait (estimated)", "1986-09-01": "Independence Day", "1986-10-01": "Teacher's Day", "1986-12-08": "Constitution Day", @@ -336,8 +336,8 @@ "1987-03-08": "Women's Day", "1987-03-21": "Nauryz", "1987-05-09": "Memorial Day", - "1987-05-28": "Ramadan Khait* (*estimated)", - "1987-08-04": "Kurban Khait* (*estimated)", + "1987-05-28": "Ramadan Khait (estimated)", + "1987-08-04": "Kurban Khait (estimated)", "1987-09-01": "Independence Day", "1987-10-01": "Teacher's Day", "1987-12-08": "Constitution Day", @@ -345,276 +345,276 @@ "1988-03-08": "Women's Day", "1988-03-21": "Nauryz", "1988-05-09": "Memorial Day", - "1988-05-16": "Ramadan Khait* (*estimated)", - "1988-07-23": "Kurban Khait* (*estimated)", + "1988-05-16": "Ramadan Khait (estimated)", + "1988-07-23": "Kurban Khait (estimated)", "1988-09-01": "Independence Day", "1988-10-01": "Teacher's Day", "1988-12-08": "Constitution Day", "1989-01-01": "New Year", "1989-03-08": "Women's Day", "1989-03-21": "Nauryz", - "1989-05-06": "Ramadan Khait* (*estimated)", + "1989-05-06": "Ramadan Khait (estimated)", "1989-05-09": "Memorial Day", - "1989-07-13": "Kurban Khait* (*estimated)", + "1989-07-13": "Kurban Khait (estimated)", "1989-09-01": "Independence Day", "1989-10-01": "Teacher's Day", "1989-12-08": "Constitution Day", "1990-01-01": "New Year", "1990-03-08": "Women's Day", "1990-03-21": "Nauryz", - "1990-04-26": "Ramadan Khait* (*estimated)", + "1990-04-26": "Ramadan Khait (estimated)", "1990-05-09": "Memorial Day", - "1990-07-02": "Kurban Khait* (*estimated)", + "1990-07-02": "Kurban Khait (estimated)", "1990-09-01": "Independence Day", "1990-10-01": "Teacher's Day", "1990-12-08": "Constitution Day", "1991-01-01": "New Year", "1991-03-08": "Women's Day", "1991-03-21": "Nauryz", - "1991-04-15": "Ramadan Khait* (*estimated)", + "1991-04-15": "Ramadan Khait (estimated)", "1991-05-09": "Memorial Day", - "1991-06-22": "Kurban Khait* (*estimated)", + "1991-06-22": "Kurban Khait (estimated)", "1991-09-01": "Independence Day", "1991-10-01": "Teacher's Day", "1991-12-08": "Constitution Day", "1992-01-01": "New Year", "1992-03-08": "Women's Day", "1992-03-21": "Nauryz", - "1992-04-04": "Ramadan Khait* (*estimated)", + "1992-04-04": "Ramadan Khait (estimated)", "1992-05-09": "Memorial Day", - "1992-06-11": "Kurban Khait* (*estimated)", + "1992-06-11": "Kurban Khait (estimated)", "1992-09-01": "Independence Day", "1992-10-01": "Teacher's Day", "1992-12-08": "Constitution Day", "1993-01-01": "New Year", "1993-03-08": "Women's Day", "1993-03-21": "Nauryz", - "1993-03-24": "Ramadan Khait* (*estimated)", + "1993-03-24": "Ramadan Khait (estimated)", "1993-05-09": "Memorial Day", - "1993-05-31": "Kurban Khait* (*estimated)", + "1993-05-31": "Kurban Khait (estimated)", "1993-09-01": "Independence Day", "1993-10-01": "Teacher's Day", "1993-12-08": "Constitution Day", "1994-01-01": "New Year", "1994-03-08": "Women's Day", - "1994-03-13": "Ramadan Khait* (*estimated)", + "1994-03-13": "Ramadan Khait (estimated)", "1994-03-21": "Nauryz", "1994-05-09": "Memorial Day", - "1994-05-20": "Kurban Khait* (*estimated)", + "1994-05-20": "Kurban Khait (estimated)", "1994-09-01": "Independence Day", "1994-10-01": "Teacher's Day", "1994-12-08": "Constitution Day", "1995-01-01": "New Year", - "1995-03-02": "Ramadan Khait* (*estimated)", + "1995-03-02": "Ramadan Khait (estimated)", "1995-03-08": "Women's Day", "1995-03-21": "Nauryz", - "1995-05-09": "Kurban Khait* (*estimated); Memorial Day", + "1995-05-09": "Kurban Khait (estimated); Memorial Day", "1995-09-01": "Independence Day", "1995-10-01": "Teacher's Day", "1995-12-08": "Constitution Day", "1996-01-01": "New Year", - "1996-02-19": "Ramadan Khait* (*estimated)", + "1996-02-19": "Ramadan Khait (estimated)", "1996-03-08": "Women's Day", "1996-03-21": "Nauryz", - "1996-04-27": "Kurban Khait* (*estimated)", + "1996-04-27": "Kurban Khait (estimated)", "1996-05-09": "Memorial Day", "1996-09-01": "Independence Day", "1996-10-01": "Teacher's Day", "1996-12-08": "Constitution Day", "1997-01-01": "New Year", - "1997-02-08": "Ramadan Khait* (*estimated)", + "1997-02-08": "Ramadan Khait (estimated)", "1997-03-08": "Women's Day", "1997-03-21": "Nauryz", - "1997-04-17": "Kurban Khait* (*estimated)", + "1997-04-17": "Kurban Khait (estimated)", "1997-05-09": "Memorial Day", "1997-09-01": "Independence Day", "1997-10-01": "Teacher's Day", "1997-12-08": "Constitution Day", "1998-01-01": "New Year", - "1998-01-29": "Ramadan Khait* (*estimated)", + "1998-01-29": "Ramadan Khait (estimated)", "1998-03-08": "Women's Day", "1998-03-21": "Nauryz", - "1998-04-07": "Kurban Khait* (*estimated)", + "1998-04-07": "Kurban Khait (estimated)", "1998-05-09": "Memorial Day", "1998-09-01": "Independence Day", "1998-10-01": "Teacher's Day", "1998-12-08": "Constitution Day", "1999-01-01": "New Year", - "1999-01-18": "Ramadan Khait* (*estimated)", + "1999-01-18": "Ramadan Khait (estimated)", "1999-03-08": "Women's Day", "1999-03-21": "Nauryz", - "1999-03-27": "Kurban Khait* (*estimated)", + "1999-03-27": "Kurban Khait (estimated)", "1999-05-09": "Memorial Day", "1999-09-01": "Independence Day", "1999-10-01": "Teacher's Day", "1999-12-08": "Constitution Day", "2000-01-01": "New Year", - "2000-01-08": "Ramadan Khait* (*estimated)", + "2000-01-08": "Ramadan Khait (estimated)", "2000-03-08": "Women's Day", - "2000-03-16": "Kurban Khait* (*estimated)", + "2000-03-16": "Kurban Khait (estimated)", "2000-03-21": "Nauryz", "2000-05-09": "Memorial Day", "2000-09-01": "Independence Day", "2000-10-01": "Teacher's Day", "2000-12-08": "Constitution Day", - "2000-12-27": "Ramadan Khait* (*estimated)", + "2000-12-27": "Ramadan Khait (estimated)", "2001-01-01": "New Year", - "2001-03-05": "Kurban Khait* (*estimated)", + "2001-03-05": "Kurban Khait (estimated)", "2001-03-08": "Women's Day", "2001-03-21": "Nauryz", "2001-05-09": "Memorial Day", "2001-09-01": "Independence Day", "2001-10-01": "Teacher's Day", "2001-12-08": "Constitution Day", - "2001-12-16": "Ramadan Khait* (*estimated)", + "2001-12-16": "Ramadan Khait (estimated)", "2002-01-01": "New Year", - "2002-02-22": "Kurban Khait* (*estimated)", + "2002-02-22": "Kurban Khait (estimated)", "2002-03-08": "Women's Day", "2002-03-21": "Nauryz", "2002-05-09": "Memorial Day", "2002-09-01": "Independence Day", "2002-10-01": "Teacher's Day", - "2002-12-05": "Ramadan Khait* (*estimated)", + "2002-12-05": "Ramadan Khait (estimated)", "2002-12-08": "Constitution Day", "2003-01-01": "New Year", - "2003-02-11": "Kurban Khait* (*estimated)", + "2003-02-11": "Kurban Khait (estimated)", "2003-03-08": "Women's Day", "2003-03-21": "Nauryz", "2003-05-09": "Memorial Day", "2003-09-01": "Independence Day", "2003-10-01": "Teacher's Day", - "2003-11-25": "Ramadan Khait* (*estimated)", + "2003-11-25": "Ramadan Khait (estimated)", "2003-12-08": "Constitution Day", "2004-01-01": "New Year", - "2004-02-01": "Kurban Khait* (*estimated)", + "2004-02-01": "Kurban Khait (estimated)", "2004-03-08": "Women's Day", "2004-03-21": "Nauryz", "2004-05-09": "Memorial Day", "2004-09-01": "Independence Day", "2004-10-01": "Teacher's Day", - "2004-11-14": "Ramadan Khait* (*estimated)", + "2004-11-14": "Ramadan Khait (estimated)", "2004-12-08": "Constitution Day", "2005-01-01": "New Year", - "2005-01-21": "Kurban Khait* (*estimated)", + "2005-01-21": "Kurban Khait (estimated)", "2005-03-08": "Women's Day", "2005-03-21": "Nauryz", "2005-05-09": "Memorial Day", "2005-09-01": "Independence Day", "2005-10-01": "Teacher's Day", - "2005-11-03": "Ramadan Khait* (*estimated)", + "2005-11-03": "Ramadan Khait (estimated)", "2005-12-08": "Constitution Day", "2006-01-01": "New Year", - "2006-01-10": "Kurban Khait* (*estimated)", + "2006-01-10": "Kurban Khait (estimated)", "2006-03-08": "Women's Day", "2006-03-21": "Nauryz", "2006-05-09": "Memorial Day", "2006-09-01": "Independence Day", "2006-10-01": "Teacher's Day", - "2006-10-23": "Ramadan Khait* (*estimated)", + "2006-10-23": "Ramadan Khait (estimated)", "2006-12-08": "Constitution Day", - "2006-12-31": "Kurban Khait* (*estimated)", + "2006-12-31": "Kurban Khait (estimated)", "2007-01-01": "New Year", "2007-03-08": "Women's Day", "2007-03-21": "Nauryz", "2007-05-09": "Memorial Day", "2007-09-01": "Independence Day", "2007-10-01": "Teacher's Day", - "2007-10-13": "Ramadan Khait* (*estimated)", + "2007-10-13": "Ramadan Khait (estimated)", "2007-12-08": "Constitution Day", - "2007-12-20": "Kurban Khait* (*estimated)", + "2007-12-20": "Kurban Khait (estimated)", "2008-01-01": "New Year", "2008-03-08": "Women's Day", "2008-03-21": "Nauryz", "2008-05-09": "Memorial Day", "2008-09-01": "Independence Day", - "2008-10-01": "Ramadan Khait* (*estimated); Teacher's Day", - "2008-12-08": "Constitution Day; Kurban Khait* (*estimated)", + "2008-10-01": "Ramadan Khait (estimated); Teacher's Day", + "2008-12-08": "Constitution Day; Kurban Khait (estimated)", "2009-01-01": "New Year", "2009-03-08": "Women's Day", "2009-03-21": "Nauryz", "2009-05-09": "Memorial Day", "2009-09-01": "Independence Day", - "2009-09-20": "Ramadan Khait* (*estimated)", + "2009-09-20": "Ramadan Khait (estimated)", "2009-10-01": "Teacher's Day", - "2009-11-27": "Kurban Khait* (*estimated)", + "2009-11-27": "Kurban Khait (estimated)", "2009-12-08": "Constitution Day", "2010-01-01": "New Year", "2010-03-08": "Women's Day", "2010-03-21": "Nauryz", "2010-05-09": "Memorial Day", "2010-09-01": "Independence Day", - "2010-09-10": "Ramadan Khait* (*estimated)", + "2010-09-10": "Ramadan Khait (estimated)", "2010-10-01": "Teacher's Day", - "2010-11-16": "Kurban Khait* (*estimated)", + "2010-11-16": "Kurban Khait (estimated)", "2010-12-08": "Constitution Day", "2011-01-01": "New Year", "2011-03-08": "Women's Day", "2011-03-21": "Nauryz", "2011-05-09": "Memorial Day", - "2011-08-30": "Ramadan Khait* (*estimated)", + "2011-08-30": "Ramadan Khait (estimated)", "2011-09-01": "Independence Day", "2011-10-01": "Teacher's Day", - "2011-11-06": "Kurban Khait* (*estimated)", + "2011-11-06": "Kurban Khait (estimated)", "2011-12-08": "Constitution Day", "2012-01-01": "New Year", "2012-03-08": "Women's Day", "2012-03-21": "Nauryz", "2012-05-09": "Memorial Day", - "2012-08-19": "Ramadan Khait* (*estimated)", + "2012-08-19": "Ramadan Khait (estimated)", "2012-09-01": "Independence Day", "2012-10-01": "Teacher's Day", - "2012-10-26": "Kurban Khait* (*estimated)", + "2012-10-26": "Kurban Khait (estimated)", "2012-12-08": "Constitution Day", "2013-01-01": "New Year", "2013-03-08": "Women's Day", "2013-03-21": "Nauryz", "2013-05-09": "Memorial Day", - "2013-08-08": "Ramadan Khait* (*estimated)", + "2013-08-08": "Ramadan Khait (estimated)", "2013-09-01": "Independence Day", "2013-10-01": "Teacher's Day", - "2013-10-15": "Kurban Khait* (*estimated)", + "2013-10-15": "Kurban Khait (estimated)", "2013-12-08": "Constitution Day", "2014-01-01": "New Year", "2014-03-08": "Women's Day", "2014-03-21": "Nauryz", "2014-05-09": "Memorial Day", - "2014-07-28": "Ramadan Khait* (*estimated)", + "2014-07-28": "Ramadan Khait (estimated)", "2014-09-01": "Independence Day", "2014-10-01": "Teacher's Day", - "2014-10-04": "Kurban Khait* (*estimated)", + "2014-10-04": "Kurban Khait (estimated)", "2014-12-08": "Constitution Day", "2015-01-01": "New Year", "2015-03-08": "Women's Day", "2015-03-21": "Nauryz", "2015-05-09": "Memorial Day", - "2015-07-17": "Ramadan Khait* (*estimated)", + "2015-07-17": "Ramadan Khait (estimated)", "2015-09-01": "Independence Day", - "2015-09-23": "Kurban Khait* (*estimated)", + "2015-09-23": "Kurban Khait (estimated)", "2015-10-01": "Teacher's Day", "2015-12-08": "Constitution Day", "2016-01-01": "New Year", "2016-03-08": "Women's Day", "2016-03-21": "Nauryz", "2016-05-09": "Memorial Day", - "2016-07-06": "Ramadan Khait* (*estimated)", + "2016-07-06": "Ramadan Khait (estimated)", "2016-09-01": "Independence Day", - "2016-09-11": "Kurban Khait* (*estimated)", + "2016-09-11": "Kurban Khait (estimated)", "2016-10-01": "Teacher's Day", "2016-12-08": "Constitution Day", "2017-01-01": "New Year", "2017-03-08": "Women's Day", "2017-03-21": "Nauryz", "2017-05-09": "Memorial Day", - "2017-06-25": "Ramadan Khait* (*estimated)", - "2017-09-01": "Independence Day; Kurban Khait* (*estimated)", + "2017-06-25": "Ramadan Khait (estimated)", + "2017-09-01": "Independence Day; Kurban Khait (estimated)", "2017-10-01": "Teacher's Day", "2017-12-08": "Constitution Day", "2018-01-01": "New Year", "2018-03-08": "Women's Day", "2018-03-21": "Nauryz", "2018-05-09": "Memorial Day", - "2018-06-15": "Ramadan Khait* (*estimated)", - "2018-08-21": "Kurban Khait* (*estimated)", + "2018-06-15": "Ramadan Khait (estimated)", + "2018-08-21": "Kurban Khait (estimated)", "2018-09-01": "Independence Day", "2018-10-01": "Teacher's Day", "2018-12-08": "Constitution Day", @@ -622,8 +622,8 @@ "2019-03-08": "Women's Day", "2019-03-21": "Nauryz", "2019-05-09": "Memorial Day", - "2019-06-04": "Ramadan Khait* (*estimated)", - "2019-08-11": "Kurban Khait* (*estimated)", + "2019-06-04": "Ramadan Khait (estimated)", + "2019-08-11": "Kurban Khait (estimated)", "2019-09-01": "Independence Day", "2019-10-01": "Teacher's Day", "2019-12-08": "Constitution Day", @@ -631,8 +631,8 @@ "2020-03-08": "Women's Day", "2020-03-21": "Nauryz", "2020-05-09": "Memorial Day", - "2020-05-24": "Ramadan Khait* (*estimated)", - "2020-07-31": "Kurban Khait* (*estimated)", + "2020-05-24": "Ramadan Khait (estimated)", + "2020-07-31": "Kurban Khait (estimated)", "2020-09-01": "Independence Day", "2020-10-01": "Teacher's Day", "2020-12-08": "Constitution Day", @@ -640,271 +640,271 @@ "2021-03-08": "Women's Day", "2021-03-21": "Nauryz", "2021-05-09": "Memorial Day", - "2021-05-13": "Ramadan Khait* (*estimated)", - "2021-07-20": "Kurban Khait* (*estimated)", + "2021-05-13": "Ramadan Khait (estimated)", + "2021-07-20": "Kurban Khait (estimated)", "2021-09-01": "Independence Day", "2021-10-01": "Teacher's Day", "2021-12-08": "Constitution Day", "2022-01-01": "New Year", "2022-03-08": "Women's Day", "2022-03-21": "Nauryz", - "2022-05-02": "Ramadan Khait* (*estimated)", + "2022-05-02": "Ramadan Khait (estimated)", "2022-05-09": "Memorial Day", - "2022-07-09": "Kurban Khait* (*estimated)", + "2022-07-09": "Kurban Khait (estimated)", "2022-09-01": "Independence Day", "2022-10-01": "Teacher's Day", "2022-12-08": "Constitution Day", "2023-01-01": "New Year", "2023-03-08": "Women's Day", "2023-03-21": "Nauryz", - "2023-04-21": "Ramadan Khait* (*estimated)", + "2023-04-21": "Ramadan Khait (estimated)", "2023-05-09": "Memorial Day", - "2023-06-28": "Kurban Khait* (*estimated)", + "2023-06-28": "Kurban Khait (estimated)", "2023-09-01": "Independence Day", "2023-10-01": "Teacher's Day", "2023-12-08": "Constitution Day", "2024-01-01": "New Year", "2024-03-08": "Women's Day", "2024-03-21": "Nauryz", - "2024-04-10": "Ramadan Khait* (*estimated)", + "2024-04-10": "Ramadan Khait (estimated)", "2024-05-09": "Memorial Day", - "2024-06-16": "Kurban Khait* (*estimated)", + "2024-06-16": "Kurban Khait (estimated)", "2024-09-01": "Independence Day", "2024-10-01": "Teacher's Day", "2024-12-08": "Constitution Day", "2025-01-01": "New Year", "2025-03-08": "Women's Day", "2025-03-21": "Nauryz", - "2025-03-30": "Ramadan Khait* (*estimated)", + "2025-03-30": "Ramadan Khait (estimated)", "2025-05-09": "Memorial Day", - "2025-06-06": "Kurban Khait* (*estimated)", + "2025-06-06": "Kurban Khait (estimated)", "2025-09-01": "Independence Day", "2025-10-01": "Teacher's Day", "2025-12-08": "Constitution Day", "2026-01-01": "New Year", "2026-03-08": "Women's Day", - "2026-03-20": "Ramadan Khait* (*estimated)", + "2026-03-20": "Ramadan Khait (estimated)", "2026-03-21": "Nauryz", "2026-05-09": "Memorial Day", - "2026-05-27": "Kurban Khait* (*estimated)", + "2026-05-27": "Kurban Khait (estimated)", "2026-09-01": "Independence Day", "2026-10-01": "Teacher's Day", "2026-12-08": "Constitution Day", "2027-01-01": "New Year", "2027-03-08": "Women's Day", - "2027-03-09": "Ramadan Khait* (*estimated)", + "2027-03-09": "Ramadan Khait (estimated)", "2027-03-21": "Nauryz", "2027-05-09": "Memorial Day", - "2027-05-16": "Kurban Khait* (*estimated)", + "2027-05-16": "Kurban Khait (estimated)", "2027-09-01": "Independence Day", "2027-10-01": "Teacher's Day", "2027-12-08": "Constitution Day", "2028-01-01": "New Year", - "2028-02-26": "Ramadan Khait* (*estimated)", + "2028-02-26": "Ramadan Khait (estimated)", "2028-03-08": "Women's Day", "2028-03-21": "Nauryz", - "2028-05-05": "Kurban Khait* (*estimated)", + "2028-05-05": "Kurban Khait (estimated)", "2028-05-09": "Memorial Day", "2028-09-01": "Independence Day", "2028-10-01": "Teacher's Day", "2028-12-08": "Constitution Day", "2029-01-01": "New Year", - "2029-02-14": "Ramadan Khait* (*estimated)", + "2029-02-14": "Ramadan Khait (estimated)", "2029-03-08": "Women's Day", "2029-03-21": "Nauryz", - "2029-04-24": "Kurban Khait* (*estimated)", + "2029-04-24": "Kurban Khait (estimated)", "2029-05-09": "Memorial Day", "2029-09-01": "Independence Day", "2029-10-01": "Teacher's Day", "2029-12-08": "Constitution Day", "2030-01-01": "New Year", - "2030-02-04": "Ramadan Khait* (*estimated)", + "2030-02-04": "Ramadan Khait (estimated)", "2030-03-08": "Women's Day", "2030-03-21": "Nauryz", - "2030-04-13": "Kurban Khait* (*estimated)", + "2030-04-13": "Kurban Khait (estimated)", "2030-05-09": "Memorial Day", "2030-09-01": "Independence Day", "2030-10-01": "Teacher's Day", "2030-12-08": "Constitution Day", "2031-01-01": "New Year", - "2031-01-24": "Ramadan Khait* (*estimated)", + "2031-01-24": "Ramadan Khait (estimated)", "2031-03-08": "Women's Day", "2031-03-21": "Nauryz", - "2031-04-02": "Kurban Khait* (*estimated)", + "2031-04-02": "Kurban Khait (estimated)", "2031-05-09": "Memorial Day", "2031-09-01": "Independence Day", "2031-10-01": "Teacher's Day", "2031-12-08": "Constitution Day", "2032-01-01": "New Year", - "2032-01-14": "Ramadan Khait* (*estimated)", + "2032-01-14": "Ramadan Khait (estimated)", "2032-03-08": "Women's Day", "2032-03-21": "Nauryz", - "2032-03-22": "Kurban Khait* (*estimated)", + "2032-03-22": "Kurban Khait (estimated)", "2032-05-09": "Memorial Day", "2032-09-01": "Independence Day", "2032-10-01": "Teacher's Day", "2032-12-08": "Constitution Day", "2033-01-01": "New Year", - "2033-01-02": "Ramadan Khait* (*estimated)", + "2033-01-02": "Ramadan Khait (estimated)", "2033-03-08": "Women's Day", - "2033-03-11": "Kurban Khait* (*estimated)", + "2033-03-11": "Kurban Khait (estimated)", "2033-03-21": "Nauryz", "2033-05-09": "Memorial Day", "2033-09-01": "Independence Day", "2033-10-01": "Teacher's Day", "2033-12-08": "Constitution Day", - "2033-12-23": "Ramadan Khait* (*estimated)", + "2033-12-23": "Ramadan Khait (estimated)", "2034-01-01": "New Year", - "2034-03-01": "Kurban Khait* (*estimated)", + "2034-03-01": "Kurban Khait (estimated)", "2034-03-08": "Women's Day", "2034-03-21": "Nauryz", "2034-05-09": "Memorial Day", "2034-09-01": "Independence Day", "2034-10-01": "Teacher's Day", "2034-12-08": "Constitution Day", - "2034-12-12": "Ramadan Khait* (*estimated)", + "2034-12-12": "Ramadan Khait (estimated)", "2035-01-01": "New Year", - "2035-02-18": "Kurban Khait* (*estimated)", + "2035-02-18": "Kurban Khait (estimated)", "2035-03-08": "Women's Day", "2035-03-21": "Nauryz", "2035-05-09": "Memorial Day", "2035-09-01": "Independence Day", "2035-10-01": "Teacher's Day", - "2035-12-01": "Ramadan Khait* (*estimated)", + "2035-12-01": "Ramadan Khait (estimated)", "2035-12-08": "Constitution Day", "2036-01-01": "New Year", - "2036-02-07": "Kurban Khait* (*estimated)", + "2036-02-07": "Kurban Khait (estimated)", "2036-03-08": "Women's Day", "2036-03-21": "Nauryz", "2036-05-09": "Memorial Day", "2036-09-01": "Independence Day", "2036-10-01": "Teacher's Day", - "2036-11-19": "Ramadan Khait* (*estimated)", + "2036-11-19": "Ramadan Khait (estimated)", "2036-12-08": "Constitution Day", "2037-01-01": "New Year", - "2037-01-26": "Kurban Khait* (*estimated)", + "2037-01-26": "Kurban Khait (estimated)", "2037-03-08": "Women's Day", "2037-03-21": "Nauryz", "2037-05-09": "Memorial Day", "2037-09-01": "Independence Day", "2037-10-01": "Teacher's Day", - "2037-11-08": "Ramadan Khait* (*estimated)", + "2037-11-08": "Ramadan Khait (estimated)", "2037-12-08": "Constitution Day", "2038-01-01": "New Year", - "2038-01-16": "Kurban Khait* (*estimated)", + "2038-01-16": "Kurban Khait (estimated)", "2038-03-08": "Women's Day", "2038-03-21": "Nauryz", "2038-05-09": "Memorial Day", "2038-09-01": "Independence Day", "2038-10-01": "Teacher's Day", - "2038-10-29": "Ramadan Khait* (*estimated)", + "2038-10-29": "Ramadan Khait (estimated)", "2038-12-08": "Constitution Day", "2039-01-01": "New Year", - "2039-01-05": "Kurban Khait* (*estimated)", + "2039-01-05": "Kurban Khait (estimated)", "2039-03-08": "Women's Day", "2039-03-21": "Nauryz", "2039-05-09": "Memorial Day", "2039-09-01": "Independence Day", "2039-10-01": "Teacher's Day", - "2039-10-19": "Ramadan Khait* (*estimated)", + "2039-10-19": "Ramadan Khait (estimated)", "2039-12-08": "Constitution Day", - "2039-12-26": "Kurban Khait* (*estimated)", + "2039-12-26": "Kurban Khait (estimated)", "2040-01-01": "New Year", "2040-03-08": "Women's Day", "2040-03-21": "Nauryz", "2040-05-09": "Memorial Day", "2040-09-01": "Independence Day", "2040-10-01": "Teacher's Day", - "2040-10-07": "Ramadan Khait* (*estimated)", + "2040-10-07": "Ramadan Khait (estimated)", "2040-12-08": "Constitution Day", - "2040-12-14": "Kurban Khait* (*estimated)", + "2040-12-14": "Kurban Khait (estimated)", "2041-01-01": "New Year", "2041-03-08": "Women's Day", "2041-03-21": "Nauryz", "2041-05-09": "Memorial Day", "2041-09-01": "Independence Day", - "2041-09-26": "Ramadan Khait* (*estimated)", + "2041-09-26": "Ramadan Khait (estimated)", "2041-10-01": "Teacher's Day", - "2041-12-04": "Kurban Khait* (*estimated)", + "2041-12-04": "Kurban Khait (estimated)", "2041-12-08": "Constitution Day", "2042-01-01": "New Year", "2042-03-08": "Women's Day", "2042-03-21": "Nauryz", "2042-05-09": "Memorial Day", "2042-09-01": "Independence Day", - "2042-09-15": "Ramadan Khait* (*estimated)", + "2042-09-15": "Ramadan Khait (estimated)", "2042-10-01": "Teacher's Day", - "2042-11-23": "Kurban Khait* (*estimated)", + "2042-11-23": "Kurban Khait (estimated)", "2042-12-08": "Constitution Day", "2043-01-01": "New Year", "2043-03-08": "Women's Day", "2043-03-21": "Nauryz", "2043-05-09": "Memorial Day", "2043-09-01": "Independence Day", - "2043-09-04": "Ramadan Khait* (*estimated)", + "2043-09-04": "Ramadan Khait (estimated)", "2043-10-01": "Teacher's Day", - "2043-11-12": "Kurban Khait* (*estimated)", + "2043-11-12": "Kurban Khait (estimated)", "2043-12-08": "Constitution Day", "2044-01-01": "New Year", "2044-03-08": "Women's Day", "2044-03-21": "Nauryz", "2044-05-09": "Memorial Day", - "2044-08-24": "Ramadan Khait* (*estimated)", + "2044-08-24": "Ramadan Khait (estimated)", "2044-09-01": "Independence Day", "2044-10-01": "Teacher's Day", - "2044-10-31": "Kurban Khait* (*estimated)", + "2044-10-31": "Kurban Khait (estimated)", "2044-12-08": "Constitution Day", "2045-01-01": "New Year", "2045-03-08": "Women's Day", "2045-03-21": "Nauryz", "2045-05-09": "Memorial Day", - "2045-08-14": "Ramadan Khait* (*estimated)", + "2045-08-14": "Ramadan Khait (estimated)", "2045-09-01": "Independence Day", "2045-10-01": "Teacher's Day", - "2045-10-21": "Kurban Khait* (*estimated)", + "2045-10-21": "Kurban Khait (estimated)", "2045-12-08": "Constitution Day", "2046-01-01": "New Year", "2046-03-08": "Women's Day", "2046-03-21": "Nauryz", "2046-05-09": "Memorial Day", - "2046-08-03": "Ramadan Khait* (*estimated)", + "2046-08-03": "Ramadan Khait (estimated)", "2046-09-01": "Independence Day", "2046-10-01": "Teacher's Day", - "2046-10-10": "Kurban Khait* (*estimated)", + "2046-10-10": "Kurban Khait (estimated)", "2046-12-08": "Constitution Day", "2047-01-01": "New Year", "2047-03-08": "Women's Day", "2047-03-21": "Nauryz", "2047-05-09": "Memorial Day", - "2047-07-24": "Ramadan Khait* (*estimated)", + "2047-07-24": "Ramadan Khait (estimated)", "2047-09-01": "Independence Day", - "2047-09-30": "Kurban Khait* (*estimated)", + "2047-09-30": "Kurban Khait (estimated)", "2047-10-01": "Teacher's Day", "2047-12-08": "Constitution Day", "2048-01-01": "New Year", "2048-03-08": "Women's Day", "2048-03-21": "Nauryz", "2048-05-09": "Memorial Day", - "2048-07-12": "Ramadan Khait* (*estimated)", + "2048-07-12": "Ramadan Khait (estimated)", "2048-09-01": "Independence Day", - "2048-09-19": "Kurban Khait* (*estimated)", + "2048-09-19": "Kurban Khait (estimated)", "2048-10-01": "Teacher's Day", "2048-12-08": "Constitution Day", "2049-01-01": "New Year", "2049-03-08": "Women's Day", "2049-03-21": "Nauryz", "2049-05-09": "Memorial Day", - "2049-07-01": "Ramadan Khait* (*estimated)", + "2049-07-01": "Ramadan Khait (estimated)", "2049-09-01": "Independence Day", - "2049-09-08": "Kurban Khait* (*estimated)", + "2049-09-08": "Kurban Khait (estimated)", "2049-10-01": "Teacher's Day", "2049-12-08": "Constitution Day", "2050-01-01": "New Year", "2050-03-08": "Women's Day", "2050-03-21": "Nauryz", "2050-05-09": "Memorial Day", - "2050-06-20": "Ramadan Khait* (*estimated)", - "2050-08-28": "Kurban Khait* (*estimated)", + "2050-06-20": "Ramadan Khait (estimated)", + "2050-08-28": "Kurban Khait (estimated)", "2050-09-01": "Independence Day", "2050-10-01": "Teacher's Day", "2050-12-08": "Constitution Day" From 58cd972d6a5f96ab170241945504ecf878a96925 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Fri, 5 Jan 2024 20:06:40 +0200 Subject: [PATCH 10/23] Update Uzbekistan holidays, add l10n support (#1622) --- README.rst | 2 +- holidays/countries/uzbekistan.py | 208 +++- holidays/locale/en_US/LC_MESSAGES/UZ.po | 80 ++ holidays/locale/uk/LC_MESSAGES/UZ.po | 80 ++ holidays/locale/uz/LC_MESSAGES/UZ.po | 80 ++ snapshots/countries/UZ_COMMON.json | 1209 +++++++++-------------- tests/countries/test_uzbekistan.py | 197 +++- 7 files changed, 1085 insertions(+), 771 deletions(-) create mode 100644 holidays/locale/en_US/LC_MESSAGES/UZ.po create mode 100644 holidays/locale/uk/LC_MESSAGES/UZ.po create mode 100644 holidays/locale/uz/LC_MESSAGES/UZ.po diff --git a/README.rst b/README.rst index 113ff3f2d..84cd2a36f 100644 --- a/README.rst +++ b/README.rst @@ -846,7 +846,7 @@ All other default values are highlighted with bold: * - Uzbekistan - UZ - - - + - en_US, uk, **uz** - * - Vanuatu - VU diff --git a/holidays/countries/uzbekistan.py b/holidays/countries/uzbekistan.py index 3058b3d12..f3ad8294b 100644 --- a/holidays/countries/uzbekistan.py +++ b/holidays/countries/uzbekistan.py @@ -9,51 +9,87 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) -from holidays.groups import InternationalHolidays, IslamicHolidays -from holidays.holiday_base import HolidayBase +from datetime import date +from gettext import gettext as tr +from holidays.calendars import _CustomIslamicHolidays +from holidays.calendars.gregorian import JAN, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC +from holidays.groups import InternationalHolidays, IslamicHolidays, StaticHolidays +from holidays.observed_holiday_base import ObservedHolidayBase, SAT_SUN_TO_NEXT_WORKDAY -class Uzbekistan(HolidayBase, InternationalHolidays, IslamicHolidays): + +class Uzbekistan(ObservedHolidayBase, InternationalHolidays, IslamicHolidays, StaticHolidays): """ - https://www.officeholidays.com/countries/uzbekistan + References: + - https://en.wikipedia.org/wiki/Public_holidays_in_Uzbekistan + - `Labor Code 21.12.1995 `_ + - `Labor Code 28.10.2022 `_ """ country = "UZ" + default_language = "uz" + # Estimated label. + estimated_label = tr("%s (taxminiy)") + # %s (Observed). + observed_label = tr("%s (ko‘chirilgan)") + supported_languages = ("en_US", "uk", "uz") def __init__(self, *args, **kwargs): InternationalHolidays.__init__(self) - IslamicHolidays.__init__(self) + IslamicHolidays.__init__(self, UzbekistanIslamicHolidays) + StaticHolidays.__init__(self, UzbekistanStaticHolidays) + kwargs.setdefault("observed_rule", SAT_SUN_TO_NEXT_WORKDAY) super().__init__(*args, **kwargs) + def _is_observed(self, dt: date) -> bool: + # Commencement of the new Labor Code + return dt >= date(2023, APR, 30) + def _populate_public_holidays(self): - # New Year - self._add_new_years_day("New Year") + if self._year <= 1991: + return None + dts_observed = set() + + # New Year's Day. + dts_observed.add(self._add_new_years_day(tr("Yangi yil"))) - # Women's Day - self._add_womens_day("Women's Day") + # Women's Day. + dts_observed.add(self._add_womens_day(tr("Xotin-qizlar kuni"))) - # Nauryz Holiday - self._add_holiday_mar_21("Nauryz") + # Nowruz. + dts_observed.add(self._add_holiday_mar_21(tr("Navro‘z bayrami"))) - # Ramadan Khait - # Date of observance is announced yearly, This is an estimate. - self._add_eid_al_fitr_day("Ramadan Khait") + dts_observed.add( + self._add_world_war_two_victory_day( + # Day of Memory and Honor. + tr("Xotira va qadrlash kuni") + if self._year >= 1999 + # Victory Day. + else tr("G‘alaba kuni") + ) + ) - # Memorial Day - self._add_world_war_two_victory_day("Memorial Day") + # Independence Day. + dts_observed.add(self._add_holiday_sep_1(tr("Mustaqillik kuni"))) - # Kurban Khait - # Date of observance is announced yearly, This is an estimate. - self._add_eid_al_adha_day("Kurban Khait") + if self._year >= 1997: + # Teachers and Instructors Day. + dts_observed.add(self._add_holiday_oct_1(tr("O‘qituvchi va murabbiylar kuni"))) - # Independence Day - self._add_holiday_sep_1("Independence Day") + if self._year >= 1993: + dts_observed.add( + # Constitution Day. + self._add_holiday_dec_8(tr("O‘zbekiston Respublikasi Konstitutsiyasi kuni")) + ) - # Teacher's Day - self._add_holiday_oct_1("Teacher's Day") + # Eid al-Fitr. + dts_observed.update(self._add_eid_al_fitr_day(tr("Ro‘za hayit"))) - # Constitution Day - self._add_holiday_dec_8("Constitution Day") + # Eid al-Adha. + dts_observed.update(self._add_eid_al_adha_day(tr("Qurbon hayit"))) + + if self.observed and self._year >= 2023: + self._populate_observed(dts_observed) class UZ(Uzbekistan): @@ -62,3 +98,125 @@ class UZ(Uzbekistan): class UZB(Uzbekistan): pass + + +class UzbekistanIslamicHolidays(_CustomIslamicHolidays): + EID_AL_ADHA_DATES = { + 2006: ((JAN, 10), (DEC, 30)), + 2007: (DEC, 19), + 2008: (DEC, 8), + 2009: (NOV, 27), + 2010: (NOV, 16), + 2011: (NOV, 6), + 2012: (OCT, 26), + 2013: (OCT, 15), + 2014: (OCT, 4), + 2015: (SEP, 24), + 2016: (SEP, 12), + 2017: (SEP, 1), + 2018: (AUG, 21), + 2019: (AUG, 11), + 2020: (JUL, 31), + 2021: (JUL, 20), + 2022: (JUL, 9), + 2023: (JUN, 28), + } + + EID_AL_FITR_DATES = { + 2006: (OCT, 23), + 2007: (OCT, 13), + 2008: (OCT, 1), + 2009: (SEP, 21), + 2010: (SEP, 10), + 2011: (AUG, 31), + 2012: (AUG, 19), + 2013: (AUG, 9), + 2014: (JUL, 28), + 2015: (JUL, 18), + 2016: (JUL, 6), + 2017: (JUN, 26), + 2018: (JUN, 15), + 2019: (JUN, 5), + 2020: (MAY, 24), + 2021: (MAY, 13), + 2022: (MAY, 2), + 2023: (APR, 21), + } + + +class UzbekistanStaticHolidays: + # Date format (see strftime() Format Codes) + substituted_date_format = tr("%d/%m %Y") + # Day off (substituted from %s). + substituted_label = tr("Dam olish kuni (%s dan ko‘chirilgan)") + + # Additional day off by Presidential decree. + additional_day_off = tr("Prezidentining farmoni bilan qo‘shimcha dam olish kuni") + special_public_holidays = { + 2018: ( + (JAN, 2, additional_day_off), + (JAN, 3, JAN, 6), + (MAR, 19, MAR, 17), + (MAR, 22, MAR, 24), + (MAR, 30, additional_day_off), + (AUG, 23, AUG, 25), + (AUG, 24, AUG, 26), + (AUG, 31, additional_day_off), + (SEP, 3, SEP, 8), + (SEP, 4, SEP, 15), + (DEC, 31, DEC, 29), + ), + 2019: ( + (JAN, 2, additional_day_off), + (JAN, 3, JAN, 5), + (MAR, 22, additional_day_off), + (JUN, 6, JUN, 1), + (SEP, 2, additional_day_off), + (SEP, 3, SEP, 7), + (DEC, 31, DEC, 28), + ), + 2020: ( + (JAN, 2, JAN, 4), + (MAR, 23, additional_day_off), + (AUG, 31, AUG, 29), + ), + 2021: ( + (MAR, 22, MAR, 27), + (MAY, 14, additional_day_off), + (JUL, 21, JUL, 17), + (JUL, 22, JUL, 24), + (SEP, 2, additional_day_off), + (SEP, 3, additional_day_off), + (DEC, 31, additional_day_off), + ), + 2022: ( + (JAN, 3, additional_day_off), + (JAN, 4, JAN, 8), + (MAR, 22, additional_day_off), + (MAR, 23, additional_day_off), + (MAY, 3, additional_day_off), + (MAY, 4, MAY, 7), + (JUL, 11, additional_day_off), + (JUL, 12, JUL, 16), + (SEP, 2, additional_day_off), + ), + 2023: ( + (JAN, 2, additional_day_off), + (JAN, 3, JAN, 7), + (MAR, 20, MAR, 11), + (MAR, 22, MAR, 25), + (APR, 24, additional_day_off), + (JUN, 29, additional_day_off), + (JUN, 30, additional_day_off), + ), + 2024: ( + (JAN, 2, JAN, 6), + (MAR, 22, additional_day_off), + (APR, 11, additional_day_off), + (APR, 12, APR, 13), + (JUN, 18, additional_day_off), + (SEP, 3, additional_day_off), + (DEC, 30, DEC, 14), + (DEC, 31, additional_day_off), + ), + } diff --git a/holidays/locale/en_US/LC_MESSAGES/UZ.po b/holidays/locale/en_US/LC_MESSAGES/UZ.po new file mode 100644 index 000000000..1332081e8 --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/UZ.po @@ -0,0 +1,80 @@ +# Uzbekistan holidays en_US localization. +# Authors: ~Jhellico , (c) 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.41\n" +"POT-Creation-Date: 2023-12-31 21:12+0200\n" +"PO-Revision-Date: 2024-01-02 12:46+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Python Holidays Localization Team\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Lingua 4.15.0\n" +"X-Generator: Poedit 3.4\n" + +#. New Year's Day. +msgid "Yangi yil" +msgstr "New Year's Day" + +#. Women's Day. +msgid "Xotin-qizlar kuni" +msgstr "Women's Day" + +#. Nowruz. +msgid "Navro‘z bayrami" +msgstr "Nowruz" + +#. Day of Memory and Honor. +msgid "Xotira va qadrlash kuni" +msgstr "Day of Memory and Honor" + +#. Victory Day. +msgid "G‘alaba kuni" +msgstr "Victory Day" + +#. Independence Day. +msgid "Mustaqillik kuni" +msgstr "Independence Day" + +#. Teachers and Instructors Day. +msgid "O‘qituvchi va murabbiylar kuni" +msgstr "Teachers and Instructors Day" + +#. Constitution Day. +msgid "O‘zbekiston Respublikasi Konstitutsiyasi kuni" +msgstr "Constitution Day" + +#. Eid al-Fitr. +msgid "Ro‘za hayit" +msgstr "Eid al-Fitr" + +#. Eid al-Adha. +msgid "Qurbon hayit" +msgstr "Eid al-Adha" + +#. Estimated label. +#, c-format +msgid "%s (taxminiy)" +msgstr "%s (estimated)" + +#. %s (Observed). +#, c-format +msgid "%s (ko‘chirilgan)" +msgstr "%s (Observed)" + +#. Date format (see strftime() Format Codes) +msgid "%d/%m %Y" +msgstr "%m/%d/%Y" + +#. Day off (substituted from %s). +#, c-format +msgid "Dam olish kuni (%s dan ko‘chirilgan)" +msgstr "Day off (substituted from %s)" + +#. Additional day off by Presidential decree. +msgid "Prezidentining farmoni bilan qo‘shimcha dam olish kuni" +msgstr "Additional day off by Presidential decree" diff --git a/holidays/locale/uk/LC_MESSAGES/UZ.po b/holidays/locale/uk/LC_MESSAGES/UZ.po new file mode 100644 index 000000000..fd64cda86 --- /dev/null +++ b/holidays/locale/uk/LC_MESSAGES/UZ.po @@ -0,0 +1,80 @@ +# Uzbekistan holidays uk localization. +# Authors: ~Jhellico , (c) 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.41\n" +"POT-Creation-Date: 2023-12-31 21:12+0200\n" +"PO-Revision-Date: 2024-01-02 12:46+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Python Holidays Localization Team\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"Generated-By: Lingua 4.15.0\n" +"X-Generator: Poedit 3.4\n" + +#. New Year's Day. +msgid "Yangi yil" +msgstr "Новий рік" + +#. Women's Day. +msgid "Xotin-qizlar kuni" +msgstr "Жіночий день" + +#. Nowruz. +msgid "Navro‘z bayrami" +msgstr "Свято Новруз" + +#. Day of Memory and Honor. +msgid "Xotira va qadrlash kuni" +msgstr "День памʼяті і шани" + +#. Victory Day. +msgid "G‘alaba kuni" +msgstr "День Перемоги" + +#. Independence Day. +msgid "Mustaqillik kuni" +msgstr "День Незалежності" + +#. Teachers and Instructors Day. +msgid "O‘qituvchi va murabbiylar kuni" +msgstr "День Вчителя і Наставника" + +#. Constitution Day. +msgid "O‘zbekiston Respublikasi Konstitutsiyasi kuni" +msgstr "День Конституції Республіки Узбекистан" + +#. Eid al-Fitr. +msgid "Ro‘za hayit" +msgstr "Рамазан-байрам" + +#. Eid al-Adha. +msgid "Qurbon hayit" +msgstr "Курбан-байрам" + +#. Estimated label. +#, c-format +msgid "%s (taxminiy)" +msgstr "%s (орієнтовно)" + +#. %s (Observed). +#, c-format +msgid "%s (ko‘chirilgan)" +msgstr "%s (вихідний)" + +#. Date format (see strftime() Format Codes) +msgid "%d/%m %Y" +msgstr "%d.%m.%Y" + +#. Day off (substituted from %s). +#, c-format +msgid "Dam olish kuni (%s dan ko‘chirilgan)" +msgstr "Вихідний день (перенесено з %s)" + +#. Additional day off by Presidential decree. +msgid "Prezidentining farmoni bilan qo‘shimcha dam olish kuni" +msgstr "Додатковий вихідний згідно указу Президента" diff --git a/holidays/locale/uz/LC_MESSAGES/UZ.po b/holidays/locale/uz/LC_MESSAGES/UZ.po new file mode 100644 index 000000000..9d6ac7113 --- /dev/null +++ b/holidays/locale/uz/LC_MESSAGES/UZ.po @@ -0,0 +1,80 @@ +# Uzbekistan holidays. +# Authors: ~Jhellico , (c) 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.41\n" +"POT-Creation-Date: 2023-12-31 21:12+0200\n" +"PO-Revision-Date: 2024-01-02 12:46+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Python Holidays Localization Team\n" +"Language: uz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Lingua 4.15.0\n" +"X-Generator: Poedit 3.4\n" + +#. New Year's Day. +msgid "Yangi yil" +msgstr "" + +#. Women's Day. +msgid "Xotin-qizlar kuni" +msgstr "" + +#. Nowruz. +msgid "Navro‘z bayrami" +msgstr "" + +#. Day of Memory and Honor. +msgid "Xotira va qadrlash kuni" +msgstr "" + +#. Victory Day. +msgid "G‘alaba kuni" +msgstr "" + +#. Independence Day. +msgid "Mustaqillik kuni" +msgstr "" + +#. Teachers and Instructors Day. +msgid "O‘qituvchi va murabbiylar kuni" +msgstr "" + +#. Constitution Day. +msgid "O‘zbekiston Respublikasi Konstitutsiyasi kuni" +msgstr "" + +#. Eid al-Fitr. +msgid "Ro‘za hayit" +msgstr "" + +#. Eid al-Adha. +msgid "Qurbon hayit" +msgstr "" + +#. Estimated label. +#, c-format +msgid "%s (taxminiy)" +msgstr "" + +#. %s (Observed). +#, c-format +msgid "%s (ko‘chirilgan)" +msgstr "" + +#. Date format (see strftime() Format Codes) +msgid "%d/%m %Y" +msgstr "" + +#. Day off (substituted from %s). +#, c-format +msgid "Dam olish kuni (%s dan ko‘chirilgan)" +msgstr "" + +#. Additional day off by Presidential decree. +msgid "Prezidentining farmoni bilan qo‘shimcha dam olish kuni" +msgstr "" diff --git a/snapshots/countries/UZ_COMMON.json b/snapshots/countries/UZ_COMMON.json index 4d3f37c0a..2831a9eb8 100644 --- a/snapshots/countries/UZ_COMMON.json +++ b/snapshots/countries/UZ_COMMON.json @@ -1,911 +1,650 @@ { - "1950-01-01": "New Year", - "1950-03-08": "Women's Day", - "1950-03-21": "Nauryz", - "1950-05-09": "Memorial Day", - "1950-07-16": "Ramadan Khait (estimated)", - "1950-09-01": "Independence Day", - "1950-09-23": "Kurban Khait (estimated)", - "1950-10-01": "Teacher's Day", - "1950-12-08": "Constitution Day", - "1951-01-01": "New Year", - "1951-03-08": "Women's Day", - "1951-03-21": "Nauryz", - "1951-05-09": "Memorial Day", - "1951-07-06": "Ramadan Khait (estimated)", - "1951-09-01": "Independence Day", - "1951-09-12": "Kurban Khait (estimated)", - "1951-10-01": "Teacher's Day", - "1951-12-08": "Constitution Day", - "1952-01-01": "New Year", - "1952-03-08": "Women's Day", - "1952-03-21": "Nauryz", - "1952-05-09": "Memorial Day", - "1952-06-23": "Ramadan Khait (estimated)", - "1952-08-31": "Kurban Khait (estimated)", - "1952-09-01": "Independence Day", - "1952-10-01": "Teacher's Day", - "1952-12-08": "Constitution Day", - "1953-01-01": "New Year", - "1953-03-08": "Women's Day", - "1953-03-21": "Nauryz", - "1953-05-09": "Memorial Day", - "1953-06-13": "Ramadan Khait (estimated)", - "1953-08-20": "Kurban Khait (estimated)", - "1953-09-01": "Independence Day", - "1953-10-01": "Teacher's Day", - "1953-12-08": "Constitution Day", - "1954-01-01": "New Year", - "1954-03-08": "Women's Day", - "1954-03-21": "Nauryz", - "1954-05-09": "Memorial Day", - "1954-06-02": "Ramadan Khait (estimated)", - "1954-08-09": "Kurban Khait (estimated)", - "1954-09-01": "Independence Day", - "1954-10-01": "Teacher's Day", - "1954-12-08": "Constitution Day", - "1955-01-01": "New Year", - "1955-03-08": "Women's Day", - "1955-03-21": "Nauryz", - "1955-05-09": "Memorial Day", - "1955-05-23": "Ramadan Khait (estimated)", - "1955-07-30": "Kurban Khait (estimated)", - "1955-09-01": "Independence Day", - "1955-10-01": "Teacher's Day", - "1955-12-08": "Constitution Day", - "1956-01-01": "New Year", - "1956-03-08": "Women's Day", - "1956-03-21": "Nauryz", - "1956-05-09": "Memorial Day", - "1956-05-11": "Ramadan Khait (estimated)", - "1956-07-19": "Kurban Khait (estimated)", - "1956-09-01": "Independence Day", - "1956-10-01": "Teacher's Day", - "1956-12-08": "Constitution Day", - "1957-01-01": "New Year", - "1957-03-08": "Women's Day", - "1957-03-21": "Nauryz", - "1957-05-01": "Ramadan Khait (estimated)", - "1957-05-09": "Memorial Day", - "1957-07-08": "Kurban Khait (estimated)", - "1957-09-01": "Independence Day", - "1957-10-01": "Teacher's Day", - "1957-12-08": "Constitution Day", - "1958-01-01": "New Year", - "1958-03-08": "Women's Day", - "1958-03-21": "Nauryz", - "1958-04-20": "Ramadan Khait (estimated)", - "1958-05-09": "Memorial Day", - "1958-06-27": "Kurban Khait (estimated)", - "1958-09-01": "Independence Day", - "1958-10-01": "Teacher's Day", - "1958-12-08": "Constitution Day", - "1959-01-01": "New Year", - "1959-03-08": "Women's Day", - "1959-03-21": "Nauryz", - "1959-04-10": "Ramadan Khait (estimated)", - "1959-05-09": "Memorial Day", - "1959-06-17": "Kurban Khait (estimated)", - "1959-09-01": "Independence Day", - "1959-10-01": "Teacher's Day", - "1959-12-08": "Constitution Day", - "1960-01-01": "New Year", - "1960-03-08": "Women's Day", - "1960-03-21": "Nauryz", - "1960-03-28": "Ramadan Khait (estimated)", - "1960-05-09": "Memorial Day", - "1960-06-04": "Kurban Khait (estimated)", - "1960-09-01": "Independence Day", - "1960-10-01": "Teacher's Day", - "1960-12-08": "Constitution Day", - "1961-01-01": "New Year", - "1961-03-08": "Women's Day", - "1961-03-18": "Ramadan Khait (estimated)", - "1961-03-21": "Nauryz", - "1961-05-09": "Memorial Day", - "1961-05-25": "Kurban Khait (estimated)", - "1961-09-01": "Independence Day", - "1961-10-01": "Teacher's Day", - "1961-12-08": "Constitution Day", - "1962-01-01": "New Year", - "1962-03-07": "Ramadan Khait (estimated)", - "1962-03-08": "Women's Day", - "1962-03-21": "Nauryz", - "1962-05-09": "Memorial Day", - "1962-05-14": "Kurban Khait (estimated)", - "1962-09-01": "Independence Day", - "1962-10-01": "Teacher's Day", - "1962-12-08": "Constitution Day", - "1963-01-01": "New Year", - "1963-02-24": "Ramadan Khait (estimated)", - "1963-03-08": "Women's Day", - "1963-03-21": "Nauryz", - "1963-05-03": "Kurban Khait (estimated)", - "1963-05-09": "Memorial Day", - "1963-09-01": "Independence Day", - "1963-10-01": "Teacher's Day", - "1963-12-08": "Constitution Day", - "1964-01-01": "New Year", - "1964-02-14": "Ramadan Khait (estimated)", - "1964-03-08": "Women's Day", - "1964-03-21": "Nauryz", - "1964-04-22": "Kurban Khait (estimated)", - "1964-05-09": "Memorial Day", - "1964-09-01": "Independence Day", - "1964-10-01": "Teacher's Day", - "1964-12-08": "Constitution Day", - "1965-01-01": "New Year", - "1965-02-02": "Ramadan Khait (estimated)", - "1965-03-08": "Women's Day", - "1965-03-21": "Nauryz", - "1965-04-11": "Kurban Khait (estimated)", - "1965-05-09": "Memorial Day", - "1965-09-01": "Independence Day", - "1965-10-01": "Teacher's Day", - "1965-12-08": "Constitution Day", - "1966-01-01": "New Year", - "1966-01-22": "Ramadan Khait (estimated)", - "1966-03-08": "Women's Day", - "1966-03-21": "Nauryz", - "1966-04-01": "Kurban Khait (estimated)", - "1966-05-09": "Memorial Day", - "1966-09-01": "Independence Day", - "1966-10-01": "Teacher's Day", - "1966-12-08": "Constitution Day", - "1967-01-01": "New Year", - "1967-01-12": "Ramadan Khait (estimated)", - "1967-03-08": "Women's Day", - "1967-03-21": "Kurban Khait (estimated); Nauryz", - "1967-05-09": "Memorial Day", - "1967-09-01": "Independence Day", - "1967-10-01": "Teacher's Day", - "1967-12-08": "Constitution Day", - "1968-01-01": "New Year; Ramadan Khait (estimated)", - "1968-03-08": "Women's Day", - "1968-03-09": "Kurban Khait (estimated)", - "1968-03-21": "Nauryz", - "1968-05-09": "Memorial Day", - "1968-09-01": "Independence Day", - "1968-10-01": "Teacher's Day", - "1968-12-08": "Constitution Day", - "1968-12-21": "Ramadan Khait (estimated)", - "1969-01-01": "New Year", - "1969-02-27": "Kurban Khait (estimated)", - "1969-03-08": "Women's Day", - "1969-03-21": "Nauryz", - "1969-05-09": "Memorial Day", - "1969-09-01": "Independence Day", - "1969-10-01": "Teacher's Day", - "1969-12-08": "Constitution Day", - "1969-12-10": "Ramadan Khait (estimated)", - "1970-01-01": "New Year", - "1970-02-16": "Kurban Khait (estimated)", - "1970-03-08": "Women's Day", - "1970-03-21": "Nauryz", - "1970-05-09": "Memorial Day", - "1970-09-01": "Independence Day", - "1970-10-01": "Teacher's Day", - "1970-11-30": "Ramadan Khait (estimated)", - "1970-12-08": "Constitution Day", - "1971-01-01": "New Year", - "1971-02-06": "Kurban Khait (estimated)", - "1971-03-08": "Women's Day", - "1971-03-21": "Nauryz", - "1971-05-09": "Memorial Day", - "1971-09-01": "Independence Day", - "1971-10-01": "Teacher's Day", - "1971-11-19": "Ramadan Khait (estimated)", - "1971-12-08": "Constitution Day", - "1972-01-01": "New Year", - "1972-01-26": "Kurban Khait (estimated)", - "1972-03-08": "Women's Day", - "1972-03-21": "Nauryz", - "1972-05-09": "Memorial Day", - "1972-09-01": "Independence Day", - "1972-10-01": "Teacher's Day", - "1972-11-07": "Ramadan Khait (estimated)", - "1972-12-08": "Constitution Day", - "1973-01-01": "New Year", - "1973-01-14": "Kurban Khait (estimated)", - "1973-03-08": "Women's Day", - "1973-03-21": "Nauryz", - "1973-05-09": "Memorial Day", - "1973-09-01": "Independence Day", - "1973-10-01": "Teacher's Day", - "1973-10-27": "Ramadan Khait (estimated)", - "1973-12-08": "Constitution Day", - "1974-01-01": "New Year", - "1974-01-03": "Kurban Khait (estimated)", - "1974-03-08": "Women's Day", - "1974-03-21": "Nauryz", - "1974-05-09": "Memorial Day", - "1974-09-01": "Independence Day", - "1974-10-01": "Teacher's Day", - "1974-10-16": "Ramadan Khait (estimated)", - "1974-12-08": "Constitution Day", - "1974-12-24": "Kurban Khait (estimated)", - "1975-01-01": "New Year", - "1975-03-08": "Women's Day", - "1975-03-21": "Nauryz", - "1975-05-09": "Memorial Day", - "1975-09-01": "Independence Day", - "1975-10-01": "Teacher's Day", - "1975-10-06": "Ramadan Khait (estimated)", - "1975-12-08": "Constitution Day", - "1975-12-13": "Kurban Khait (estimated)", - "1976-01-01": "New Year", - "1976-03-08": "Women's Day", - "1976-03-21": "Nauryz", - "1976-05-09": "Memorial Day", - "1976-09-01": "Independence Day", - "1976-09-24": "Ramadan Khait (estimated)", - "1976-10-01": "Teacher's Day", - "1976-12-01": "Kurban Khait (estimated)", - "1976-12-08": "Constitution Day", - "1977-01-01": "New Year", - "1977-03-08": "Women's Day", - "1977-03-21": "Nauryz", - "1977-05-09": "Memorial Day", - "1977-09-01": "Independence Day", - "1977-09-14": "Ramadan Khait (estimated)", - "1977-10-01": "Teacher's Day", - "1977-11-21": "Kurban Khait (estimated)", - "1977-12-08": "Constitution Day", - "1978-01-01": "New Year", - "1978-03-08": "Women's Day", - "1978-03-21": "Nauryz", - "1978-05-09": "Memorial Day", - "1978-09-01": "Independence Day", - "1978-09-03": "Ramadan Khait (estimated)", - "1978-10-01": "Teacher's Day", - "1978-11-10": "Kurban Khait (estimated)", - "1978-12-08": "Constitution Day", - "1979-01-01": "New Year", - "1979-03-08": "Women's Day", - "1979-03-21": "Nauryz", - "1979-05-09": "Memorial Day", - "1979-08-23": "Ramadan Khait (estimated)", - "1979-09-01": "Independence Day", - "1979-10-01": "Teacher's Day", - "1979-10-31": "Kurban Khait (estimated)", - "1979-12-08": "Constitution Day", - "1980-01-01": "New Year", - "1980-03-08": "Women's Day", - "1980-03-21": "Nauryz", - "1980-05-09": "Memorial Day", - "1980-08-12": "Ramadan Khait (estimated)", - "1980-09-01": "Independence Day", - "1980-10-01": "Teacher's Day", - "1980-10-19": "Kurban Khait (estimated)", - "1980-12-08": "Constitution Day", - "1981-01-01": "New Year", - "1981-03-08": "Women's Day", - "1981-03-21": "Nauryz", - "1981-05-09": "Memorial Day", - "1981-08-01": "Ramadan Khait (estimated)", - "1981-09-01": "Independence Day", - "1981-10-01": "Teacher's Day", - "1981-10-08": "Kurban Khait (estimated)", - "1981-12-08": "Constitution Day", - "1982-01-01": "New Year", - "1982-03-08": "Women's Day", - "1982-03-21": "Nauryz", - "1982-05-09": "Memorial Day", - "1982-07-21": "Ramadan Khait (estimated)", - "1982-09-01": "Independence Day", - "1982-09-27": "Kurban Khait (estimated)", - "1982-10-01": "Teacher's Day", - "1982-12-08": "Constitution Day", - "1983-01-01": "New Year", - "1983-03-08": "Women's Day", - "1983-03-21": "Nauryz", - "1983-05-09": "Memorial Day", - "1983-07-11": "Ramadan Khait (estimated)", - "1983-09-01": "Independence Day", - "1983-09-17": "Kurban Khait (estimated)", - "1983-10-01": "Teacher's Day", - "1983-12-08": "Constitution Day", - "1984-01-01": "New Year", - "1984-03-08": "Women's Day", - "1984-03-21": "Nauryz", - "1984-05-09": "Memorial Day", - "1984-06-30": "Ramadan Khait (estimated)", - "1984-09-01": "Independence Day", - "1984-09-05": "Kurban Khait (estimated)", - "1984-10-01": "Teacher's Day", - "1984-12-08": "Constitution Day", - "1985-01-01": "New Year", - "1985-03-08": "Women's Day", - "1985-03-21": "Nauryz", - "1985-05-09": "Memorial Day", - "1985-06-19": "Ramadan Khait (estimated)", - "1985-08-26": "Kurban Khait (estimated)", - "1985-09-01": "Independence Day", - "1985-10-01": "Teacher's Day", - "1985-12-08": "Constitution Day", - "1986-01-01": "New Year", - "1986-03-08": "Women's Day", - "1986-03-21": "Nauryz", - "1986-05-09": "Memorial Day", - "1986-06-08": "Ramadan Khait (estimated)", - "1986-08-15": "Kurban Khait (estimated)", - "1986-09-01": "Independence Day", - "1986-10-01": "Teacher's Day", - "1986-12-08": "Constitution Day", - "1987-01-01": "New Year", - "1987-03-08": "Women's Day", - "1987-03-21": "Nauryz", - "1987-05-09": "Memorial Day", - "1987-05-28": "Ramadan Khait (estimated)", - "1987-08-04": "Kurban Khait (estimated)", - "1987-09-01": "Independence Day", - "1987-10-01": "Teacher's Day", - "1987-12-08": "Constitution Day", - "1988-01-01": "New Year", - "1988-03-08": "Women's Day", - "1988-03-21": "Nauryz", - "1988-05-09": "Memorial Day", - "1988-05-16": "Ramadan Khait (estimated)", - "1988-07-23": "Kurban Khait (estimated)", - "1988-09-01": "Independence Day", - "1988-10-01": "Teacher's Day", - "1988-12-08": "Constitution Day", - "1989-01-01": "New Year", - "1989-03-08": "Women's Day", - "1989-03-21": "Nauryz", - "1989-05-06": "Ramadan Khait (estimated)", - "1989-05-09": "Memorial Day", - "1989-07-13": "Kurban Khait (estimated)", - "1989-09-01": "Independence Day", - "1989-10-01": "Teacher's Day", - "1989-12-08": "Constitution Day", - "1990-01-01": "New Year", - "1990-03-08": "Women's Day", - "1990-03-21": "Nauryz", - "1990-04-26": "Ramadan Khait (estimated)", - "1990-05-09": "Memorial Day", - "1990-07-02": "Kurban Khait (estimated)", - "1990-09-01": "Independence Day", - "1990-10-01": "Teacher's Day", - "1990-12-08": "Constitution Day", - "1991-01-01": "New Year", - "1991-03-08": "Women's Day", - "1991-03-21": "Nauryz", - "1991-04-15": "Ramadan Khait (estimated)", - "1991-05-09": "Memorial Day", - "1991-06-22": "Kurban Khait (estimated)", - "1991-09-01": "Independence Day", - "1991-10-01": "Teacher's Day", - "1991-12-08": "Constitution Day", - "1992-01-01": "New Year", + "1992-01-01": "New Year's Day", "1992-03-08": "Women's Day", - "1992-03-21": "Nauryz", - "1992-04-04": "Ramadan Khait (estimated)", - "1992-05-09": "Memorial Day", - "1992-06-11": "Kurban Khait (estimated)", + "1992-03-21": "Nowruz", + "1992-04-04": "Eid al-Fitr (estimated)", + "1992-05-09": "Victory Day", + "1992-06-11": "Eid al-Adha (estimated)", "1992-09-01": "Independence Day", - "1992-10-01": "Teacher's Day", - "1992-12-08": "Constitution Day", - "1993-01-01": "New Year", + "1993-01-01": "New Year's Day", "1993-03-08": "Women's Day", - "1993-03-21": "Nauryz", - "1993-03-24": "Ramadan Khait (estimated)", - "1993-05-09": "Memorial Day", - "1993-05-31": "Kurban Khait (estimated)", + "1993-03-21": "Nowruz", + "1993-03-24": "Eid al-Fitr (estimated)", + "1993-05-09": "Victory Day", + "1993-05-31": "Eid al-Adha (estimated)", "1993-09-01": "Independence Day", - "1993-10-01": "Teacher's Day", "1993-12-08": "Constitution Day", - "1994-01-01": "New Year", + "1994-01-01": "New Year's Day", "1994-03-08": "Women's Day", - "1994-03-13": "Ramadan Khait (estimated)", - "1994-03-21": "Nauryz", - "1994-05-09": "Memorial Day", - "1994-05-20": "Kurban Khait (estimated)", + "1994-03-13": "Eid al-Fitr (estimated)", + "1994-03-21": "Nowruz", + "1994-05-09": "Victory Day", + "1994-05-20": "Eid al-Adha (estimated)", "1994-09-01": "Independence Day", - "1994-10-01": "Teacher's Day", "1994-12-08": "Constitution Day", - "1995-01-01": "New Year", - "1995-03-02": "Ramadan Khait (estimated)", + "1995-01-01": "New Year's Day", + "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-08": "Women's Day", - "1995-03-21": "Nauryz", - "1995-05-09": "Kurban Khait (estimated); Memorial Day", + "1995-03-21": "Nowruz", + "1995-05-09": "Eid al-Adha (estimated); Victory Day", "1995-09-01": "Independence Day", - "1995-10-01": "Teacher's Day", "1995-12-08": "Constitution Day", - "1996-01-01": "New Year", - "1996-02-19": "Ramadan Khait (estimated)", + "1996-01-01": "New Year's Day", + "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-08": "Women's Day", - "1996-03-21": "Nauryz", - "1996-04-27": "Kurban Khait (estimated)", - "1996-05-09": "Memorial Day", + "1996-03-21": "Nowruz", + "1996-04-27": "Eid al-Adha (estimated)", + "1996-05-09": "Victory Day", "1996-09-01": "Independence Day", - "1996-10-01": "Teacher's Day", "1996-12-08": "Constitution Day", - "1997-01-01": "New Year", - "1997-02-08": "Ramadan Khait (estimated)", + "1997-01-01": "New Year's Day", + "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-08": "Women's Day", - "1997-03-21": "Nauryz", - "1997-04-17": "Kurban Khait (estimated)", - "1997-05-09": "Memorial Day", + "1997-03-21": "Nowruz", + "1997-04-17": "Eid al-Adha (estimated)", + "1997-05-09": "Victory Day", "1997-09-01": "Independence Day", - "1997-10-01": "Teacher's Day", + "1997-10-01": "Teachers and Instructors Day", "1997-12-08": "Constitution Day", - "1998-01-01": "New Year", - "1998-01-29": "Ramadan Khait (estimated)", + "1998-01-01": "New Year's Day", + "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-08": "Women's Day", - "1998-03-21": "Nauryz", - "1998-04-07": "Kurban Khait (estimated)", - "1998-05-09": "Memorial Day", + "1998-03-21": "Nowruz", + "1998-04-07": "Eid al-Adha (estimated)", + "1998-05-09": "Victory Day", "1998-09-01": "Independence Day", - "1998-10-01": "Teacher's Day", + "1998-10-01": "Teachers and Instructors Day", "1998-12-08": "Constitution Day", - "1999-01-01": "New Year", - "1999-01-18": "Ramadan Khait (estimated)", + "1999-01-01": "New Year's Day", + "1999-01-18": "Eid al-Fitr (estimated)", "1999-03-08": "Women's Day", - "1999-03-21": "Nauryz", - "1999-03-27": "Kurban Khait (estimated)", - "1999-05-09": "Memorial Day", + "1999-03-21": "Nowruz", + "1999-03-27": "Eid al-Adha (estimated)", + "1999-05-09": "Day of Memory and Honor", "1999-09-01": "Independence Day", - "1999-10-01": "Teacher's Day", + "1999-10-01": "Teachers and Instructors Day", "1999-12-08": "Constitution Day", - "2000-01-01": "New Year", - "2000-01-08": "Ramadan Khait (estimated)", + "2000-01-01": "New Year's Day", + "2000-01-08": "Eid al-Fitr (estimated)", "2000-03-08": "Women's Day", - "2000-03-16": "Kurban Khait (estimated)", - "2000-03-21": "Nauryz", - "2000-05-09": "Memorial Day", + "2000-03-16": "Eid al-Adha (estimated)", + "2000-03-21": "Nowruz", + "2000-05-09": "Day of Memory and Honor", "2000-09-01": "Independence Day", - "2000-10-01": "Teacher's Day", + "2000-10-01": "Teachers and Instructors Day", "2000-12-08": "Constitution Day", - "2000-12-27": "Ramadan Khait (estimated)", - "2001-01-01": "New Year", - "2001-03-05": "Kurban Khait (estimated)", + "2000-12-27": "Eid al-Fitr (estimated)", + "2001-01-01": "New Year's Day", + "2001-03-05": "Eid al-Adha (estimated)", "2001-03-08": "Women's Day", - "2001-03-21": "Nauryz", - "2001-05-09": "Memorial Day", + "2001-03-21": "Nowruz", + "2001-05-09": "Day of Memory and Honor", "2001-09-01": "Independence Day", - "2001-10-01": "Teacher's Day", + "2001-10-01": "Teachers and Instructors Day", "2001-12-08": "Constitution Day", - "2001-12-16": "Ramadan Khait (estimated)", - "2002-01-01": "New Year", - "2002-02-22": "Kurban Khait (estimated)", + "2001-12-16": "Eid al-Fitr (estimated)", + "2002-01-01": "New Year's Day", + "2002-02-22": "Eid al-Adha (estimated)", "2002-03-08": "Women's Day", - "2002-03-21": "Nauryz", - "2002-05-09": "Memorial Day", + "2002-03-21": "Nowruz", + "2002-05-09": "Day of Memory and Honor", "2002-09-01": "Independence Day", - "2002-10-01": "Teacher's Day", - "2002-12-05": "Ramadan Khait (estimated)", + "2002-10-01": "Teachers and Instructors Day", + "2002-12-05": "Eid al-Fitr (estimated)", "2002-12-08": "Constitution Day", - "2003-01-01": "New Year", - "2003-02-11": "Kurban Khait (estimated)", + "2003-01-01": "New Year's Day", + "2003-02-11": "Eid al-Adha (estimated)", "2003-03-08": "Women's Day", - "2003-03-21": "Nauryz", - "2003-05-09": "Memorial Day", + "2003-03-21": "Nowruz", + "2003-05-09": "Day of Memory and Honor", "2003-09-01": "Independence Day", - "2003-10-01": "Teacher's Day", - "2003-11-25": "Ramadan Khait (estimated)", + "2003-10-01": "Teachers and Instructors Day", + "2003-11-25": "Eid al-Fitr (estimated)", "2003-12-08": "Constitution Day", - "2004-01-01": "New Year", - "2004-02-01": "Kurban Khait (estimated)", + "2004-01-01": "New Year's Day", + "2004-02-01": "Eid al-Adha (estimated)", "2004-03-08": "Women's Day", - "2004-03-21": "Nauryz", - "2004-05-09": "Memorial Day", + "2004-03-21": "Nowruz", + "2004-05-09": "Day of Memory and Honor", "2004-09-01": "Independence Day", - "2004-10-01": "Teacher's Day", - "2004-11-14": "Ramadan Khait (estimated)", + "2004-10-01": "Teachers and Instructors Day", + "2004-11-14": "Eid al-Fitr (estimated)", "2004-12-08": "Constitution Day", - "2005-01-01": "New Year", - "2005-01-21": "Kurban Khait (estimated)", + "2005-01-01": "New Year's Day", + "2005-01-21": "Eid al-Adha (estimated)", "2005-03-08": "Women's Day", - "2005-03-21": "Nauryz", - "2005-05-09": "Memorial Day", + "2005-03-21": "Nowruz", + "2005-05-09": "Day of Memory and Honor", "2005-09-01": "Independence Day", - "2005-10-01": "Teacher's Day", - "2005-11-03": "Ramadan Khait (estimated)", + "2005-10-01": "Teachers and Instructors Day", + "2005-11-03": "Eid al-Fitr (estimated)", "2005-12-08": "Constitution Day", - "2006-01-01": "New Year", - "2006-01-10": "Kurban Khait (estimated)", + "2006-01-01": "New Year's Day", + "2006-01-10": "Eid al-Adha", "2006-03-08": "Women's Day", - "2006-03-21": "Nauryz", - "2006-05-09": "Memorial Day", + "2006-03-21": "Nowruz", + "2006-05-09": "Day of Memory and Honor", "2006-09-01": "Independence Day", - "2006-10-01": "Teacher's Day", - "2006-10-23": "Ramadan Khait (estimated)", + "2006-10-01": "Teachers and Instructors Day", + "2006-10-23": "Eid al-Fitr", "2006-12-08": "Constitution Day", - "2006-12-31": "Kurban Khait (estimated)", - "2007-01-01": "New Year", + "2006-12-30": "Eid al-Adha", + "2007-01-01": "New Year's Day", "2007-03-08": "Women's Day", - "2007-03-21": "Nauryz", - "2007-05-09": "Memorial Day", + "2007-03-21": "Nowruz", + "2007-05-09": "Day of Memory and Honor", "2007-09-01": "Independence Day", - "2007-10-01": "Teacher's Day", - "2007-10-13": "Ramadan Khait (estimated)", + "2007-10-01": "Teachers and Instructors Day", + "2007-10-13": "Eid al-Fitr", "2007-12-08": "Constitution Day", - "2007-12-20": "Kurban Khait (estimated)", - "2008-01-01": "New Year", + "2007-12-19": "Eid al-Adha", + "2008-01-01": "New Year's Day", "2008-03-08": "Women's Day", - "2008-03-21": "Nauryz", - "2008-05-09": "Memorial Day", + "2008-03-21": "Nowruz", + "2008-05-09": "Day of Memory and Honor", "2008-09-01": "Independence Day", - "2008-10-01": "Ramadan Khait (estimated); Teacher's Day", - "2008-12-08": "Constitution Day; Kurban Khait (estimated)", - "2009-01-01": "New Year", + "2008-10-01": "Eid al-Fitr; Teachers and Instructors Day", + "2008-12-08": "Constitution Day; Eid al-Adha", + "2009-01-01": "New Year's Day", "2009-03-08": "Women's Day", - "2009-03-21": "Nauryz", - "2009-05-09": "Memorial Day", + "2009-03-21": "Nowruz", + "2009-05-09": "Day of Memory and Honor", "2009-09-01": "Independence Day", - "2009-09-20": "Ramadan Khait (estimated)", - "2009-10-01": "Teacher's Day", - "2009-11-27": "Kurban Khait (estimated)", + "2009-09-21": "Eid al-Fitr", + "2009-10-01": "Teachers and Instructors Day", + "2009-11-27": "Eid al-Adha", "2009-12-08": "Constitution Day", - "2010-01-01": "New Year", + "2010-01-01": "New Year's Day", "2010-03-08": "Women's Day", - "2010-03-21": "Nauryz", - "2010-05-09": "Memorial Day", + "2010-03-21": "Nowruz", + "2010-05-09": "Day of Memory and Honor", "2010-09-01": "Independence Day", - "2010-09-10": "Ramadan Khait (estimated)", - "2010-10-01": "Teacher's Day", - "2010-11-16": "Kurban Khait (estimated)", + "2010-09-10": "Eid al-Fitr", + "2010-10-01": "Teachers and Instructors Day", + "2010-11-16": "Eid al-Adha", "2010-12-08": "Constitution Day", - "2011-01-01": "New Year", + "2011-01-01": "New Year's Day", "2011-03-08": "Women's Day", - "2011-03-21": "Nauryz", - "2011-05-09": "Memorial Day", - "2011-08-30": "Ramadan Khait (estimated)", + "2011-03-21": "Nowruz", + "2011-05-09": "Day of Memory and Honor", + "2011-08-31": "Eid al-Fitr", "2011-09-01": "Independence Day", - "2011-10-01": "Teacher's Day", - "2011-11-06": "Kurban Khait (estimated)", + "2011-10-01": "Teachers and Instructors Day", + "2011-11-06": "Eid al-Adha", "2011-12-08": "Constitution Day", - "2012-01-01": "New Year", + "2012-01-01": "New Year's Day", "2012-03-08": "Women's Day", - "2012-03-21": "Nauryz", - "2012-05-09": "Memorial Day", - "2012-08-19": "Ramadan Khait (estimated)", + "2012-03-21": "Nowruz", + "2012-05-09": "Day of Memory and Honor", + "2012-08-19": "Eid al-Fitr", "2012-09-01": "Independence Day", - "2012-10-01": "Teacher's Day", - "2012-10-26": "Kurban Khait (estimated)", + "2012-10-01": "Teachers and Instructors Day", + "2012-10-26": "Eid al-Adha", "2012-12-08": "Constitution Day", - "2013-01-01": "New Year", + "2013-01-01": "New Year's Day", "2013-03-08": "Women's Day", - "2013-03-21": "Nauryz", - "2013-05-09": "Memorial Day", - "2013-08-08": "Ramadan Khait (estimated)", + "2013-03-21": "Nowruz", + "2013-05-09": "Day of Memory and Honor", + "2013-08-09": "Eid al-Fitr", "2013-09-01": "Independence Day", - "2013-10-01": "Teacher's Day", - "2013-10-15": "Kurban Khait (estimated)", + "2013-10-01": "Teachers and Instructors Day", + "2013-10-15": "Eid al-Adha", "2013-12-08": "Constitution Day", - "2014-01-01": "New Year", + "2014-01-01": "New Year's Day", "2014-03-08": "Women's Day", - "2014-03-21": "Nauryz", - "2014-05-09": "Memorial Day", - "2014-07-28": "Ramadan Khait (estimated)", + "2014-03-21": "Nowruz", + "2014-05-09": "Day of Memory and Honor", + "2014-07-28": "Eid al-Fitr", "2014-09-01": "Independence Day", - "2014-10-01": "Teacher's Day", - "2014-10-04": "Kurban Khait (estimated)", + "2014-10-01": "Teachers and Instructors Day", + "2014-10-04": "Eid al-Adha", "2014-12-08": "Constitution Day", - "2015-01-01": "New Year", + "2015-01-01": "New Year's Day", "2015-03-08": "Women's Day", - "2015-03-21": "Nauryz", - "2015-05-09": "Memorial Day", - "2015-07-17": "Ramadan Khait (estimated)", + "2015-03-21": "Nowruz", + "2015-05-09": "Day of Memory and Honor", + "2015-07-18": "Eid al-Fitr", "2015-09-01": "Independence Day", - "2015-09-23": "Kurban Khait (estimated)", - "2015-10-01": "Teacher's Day", + "2015-09-24": "Eid al-Adha", + "2015-10-01": "Teachers and Instructors Day", "2015-12-08": "Constitution Day", - "2016-01-01": "New Year", + "2016-01-01": "New Year's Day", "2016-03-08": "Women's Day", - "2016-03-21": "Nauryz", - "2016-05-09": "Memorial Day", - "2016-07-06": "Ramadan Khait (estimated)", + "2016-03-21": "Nowruz", + "2016-05-09": "Day of Memory and Honor", + "2016-07-06": "Eid al-Fitr", "2016-09-01": "Independence Day", - "2016-09-11": "Kurban Khait (estimated)", - "2016-10-01": "Teacher's Day", + "2016-09-12": "Eid al-Adha", + "2016-10-01": "Teachers and Instructors Day", "2016-12-08": "Constitution Day", - "2017-01-01": "New Year", + "2017-01-01": "New Year's Day", "2017-03-08": "Women's Day", - "2017-03-21": "Nauryz", - "2017-05-09": "Memorial Day", - "2017-06-25": "Ramadan Khait (estimated)", - "2017-09-01": "Independence Day; Kurban Khait (estimated)", - "2017-10-01": "Teacher's Day", + "2017-03-21": "Nowruz", + "2017-05-09": "Day of Memory and Honor", + "2017-06-26": "Eid al-Fitr", + "2017-09-01": "Eid al-Adha; Independence Day", + "2017-10-01": "Teachers and Instructors Day", "2017-12-08": "Constitution Day", - "2018-01-01": "New Year", + "2018-01-01": "New Year's Day", + "2018-01-02": "Additional day off by Presidential decree", + "2018-01-03": "Day off (substituted from 01/06/2018)", "2018-03-08": "Women's Day", - "2018-03-21": "Nauryz", - "2018-05-09": "Memorial Day", - "2018-06-15": "Ramadan Khait (estimated)", - "2018-08-21": "Kurban Khait (estimated)", + "2018-03-19": "Day off (substituted from 03/17/2018)", + "2018-03-21": "Nowruz", + "2018-03-22": "Day off (substituted from 03/24/2018)", + "2018-03-30": "Additional day off by Presidential decree", + "2018-05-09": "Day of Memory and Honor", + "2018-06-15": "Eid al-Fitr", + "2018-08-21": "Eid al-Adha", + "2018-08-23": "Day off (substituted from 08/25/2018)", + "2018-08-24": "Day off (substituted from 08/26/2018)", + "2018-08-31": "Additional day off by Presidential decree", "2018-09-01": "Independence Day", - "2018-10-01": "Teacher's Day", + "2018-09-03": "Day off (substituted from 09/08/2018)", + "2018-09-04": "Day off (substituted from 09/15/2018)", + "2018-10-01": "Teachers and Instructors Day", "2018-12-08": "Constitution Day", - "2019-01-01": "New Year", + "2018-12-31": "Day off (substituted from 12/29/2018)", + "2019-01-01": "New Year's Day", + "2019-01-02": "Additional day off by Presidential decree", + "2019-01-03": "Day off (substituted from 01/05/2019)", "2019-03-08": "Women's Day", - "2019-03-21": "Nauryz", - "2019-05-09": "Memorial Day", - "2019-06-04": "Ramadan Khait (estimated)", - "2019-08-11": "Kurban Khait (estimated)", + "2019-03-21": "Nowruz", + "2019-03-22": "Additional day off by Presidential decree", + "2019-05-09": "Day of Memory and Honor", + "2019-06-05": "Eid al-Fitr", + "2019-06-06": "Day off (substituted from 06/01/2019)", + "2019-08-11": "Eid al-Adha", "2019-09-01": "Independence Day", - "2019-10-01": "Teacher's Day", + "2019-09-02": "Additional day off by Presidential decree", + "2019-09-03": "Day off (substituted from 09/07/2019)", + "2019-10-01": "Teachers and Instructors Day", "2019-12-08": "Constitution Day", - "2020-01-01": "New Year", + "2019-12-31": "Day off (substituted from 12/28/2019)", + "2020-01-01": "New Year's Day", + "2020-01-02": "Day off (substituted from 01/04/2020)", "2020-03-08": "Women's Day", - "2020-03-21": "Nauryz", - "2020-05-09": "Memorial Day", - "2020-05-24": "Ramadan Khait (estimated)", - "2020-07-31": "Kurban Khait (estimated)", + "2020-03-21": "Nowruz", + "2020-03-23": "Additional day off by Presidential decree", + "2020-05-09": "Day of Memory and Honor", + "2020-05-24": "Eid al-Fitr", + "2020-07-31": "Eid al-Adha", + "2020-08-31": "Day off (substituted from 08/29/2020)", "2020-09-01": "Independence Day", - "2020-10-01": "Teacher's Day", + "2020-10-01": "Teachers and Instructors Day", "2020-12-08": "Constitution Day", - "2021-01-01": "New Year", + "2021-01-01": "New Year's Day", "2021-03-08": "Women's Day", - "2021-03-21": "Nauryz", - "2021-05-09": "Memorial Day", - "2021-05-13": "Ramadan Khait (estimated)", - "2021-07-20": "Kurban Khait (estimated)", + "2021-03-21": "Nowruz", + "2021-03-22": "Day off (substituted from 03/27/2021)", + "2021-05-09": "Day of Memory and Honor", + "2021-05-13": "Eid al-Fitr", + "2021-05-14": "Additional day off by Presidential decree", + "2021-07-20": "Eid al-Adha", + "2021-07-21": "Day off (substituted from 07/17/2021)", + "2021-07-22": "Day off (substituted from 07/24/2021)", "2021-09-01": "Independence Day", - "2021-10-01": "Teacher's Day", + "2021-09-02": "Additional day off by Presidential decree", + "2021-09-03": "Additional day off by Presidential decree", + "2021-10-01": "Teachers and Instructors Day", "2021-12-08": "Constitution Day", - "2022-01-01": "New Year", + "2021-12-31": "Additional day off by Presidential decree", + "2022-01-01": "New Year's Day", + "2022-01-03": "Additional day off by Presidential decree", + "2022-01-04": "Day off (substituted from 01/08/2022)", "2022-03-08": "Women's Day", - "2022-03-21": "Nauryz", - "2022-05-02": "Ramadan Khait (estimated)", - "2022-05-09": "Memorial Day", - "2022-07-09": "Kurban Khait (estimated)", + "2022-03-21": "Nowruz", + "2022-03-22": "Additional day off by Presidential decree", + "2022-03-23": "Additional day off by Presidential decree", + "2022-05-02": "Eid al-Fitr", + "2022-05-03": "Additional day off by Presidential decree", + "2022-05-04": "Day off (substituted from 05/07/2022)", + "2022-05-09": "Day of Memory and Honor", + "2022-07-09": "Eid al-Adha", + "2022-07-11": "Additional day off by Presidential decree", + "2022-07-12": "Day off (substituted from 07/16/2022)", "2022-09-01": "Independence Day", - "2022-10-01": "Teacher's Day", + "2022-09-02": "Additional day off by Presidential decree", + "2022-10-01": "Teachers and Instructors Day", "2022-12-08": "Constitution Day", - "2023-01-01": "New Year", + "2023-01-01": "New Year's Day", + "2023-01-02": "Additional day off by Presidential decree", + "2023-01-03": "Day off (substituted from 01/07/2023)", "2023-03-08": "Women's Day", - "2023-03-21": "Nauryz", - "2023-04-21": "Ramadan Khait (estimated)", - "2023-05-09": "Memorial Day", - "2023-06-28": "Kurban Khait (estimated)", + "2023-03-20": "Day off (substituted from 03/11/2023)", + "2023-03-21": "Nowruz", + "2023-03-22": "Day off (substituted from 03/25/2023)", + "2023-04-21": "Eid al-Fitr", + "2023-04-24": "Additional day off by Presidential decree", + "2023-05-09": "Day of Memory and Honor", + "2023-06-28": "Eid al-Adha", + "2023-06-29": "Additional day off by Presidential decree", + "2023-06-30": "Additional day off by Presidential decree", "2023-09-01": "Independence Day", - "2023-10-01": "Teacher's Day", + "2023-10-01": "Teachers and Instructors Day", + "2023-10-02": "Teachers and Instructors Day (Observed)", "2023-12-08": "Constitution Day", - "2024-01-01": "New Year", + "2024-01-01": "New Year's Day", + "2024-01-02": "Day off (substituted from 01/06/2024)", "2024-03-08": "Women's Day", - "2024-03-21": "Nauryz", - "2024-04-10": "Ramadan Khait (estimated)", - "2024-05-09": "Memorial Day", - "2024-06-16": "Kurban Khait (estimated)", + "2024-03-21": "Nowruz", + "2024-03-22": "Additional day off by Presidential decree", + "2024-04-10": "Eid al-Fitr (estimated)", + "2024-04-11": "Additional day off by Presidential decree", + "2024-04-12": "Day off (substituted from 04/13/2024)", + "2024-05-09": "Day of Memory and Honor", + "2024-06-16": "Eid al-Adha (estimated)", + "2024-06-17": "Eid al-Adha (estimated) (Observed)", + "2024-06-18": "Additional day off by Presidential decree", "2024-09-01": "Independence Day", - "2024-10-01": "Teacher's Day", + "2024-09-02": "Independence Day (Observed)", + "2024-09-03": "Additional day off by Presidential decree", + "2024-10-01": "Teachers and Instructors Day", "2024-12-08": "Constitution Day", - "2025-01-01": "New Year", + "2024-12-09": "Constitution Day (Observed)", + "2024-12-30": "Day off (substituted from 12/14/2024)", + "2024-12-31": "Additional day off by Presidential decree", + "2025-01-01": "New Year's Day", "2025-03-08": "Women's Day", - "2025-03-21": "Nauryz", - "2025-03-30": "Ramadan Khait (estimated)", - "2025-05-09": "Memorial Day", - "2025-06-06": "Kurban Khait (estimated)", + "2025-03-10": "Women's Day (Observed)", + "2025-03-21": "Nowruz", + "2025-03-30": "Eid al-Fitr (estimated)", + "2025-03-31": "Eid al-Fitr (estimated) (Observed)", + "2025-05-09": "Day of Memory and Honor", + "2025-06-06": "Eid al-Adha (estimated)", "2025-09-01": "Independence Day", - "2025-10-01": "Teacher's Day", + "2025-10-01": "Teachers and Instructors Day", "2025-12-08": "Constitution Day", - "2026-01-01": "New Year", + "2026-01-01": "New Year's Day", "2026-03-08": "Women's Day", - "2026-03-20": "Ramadan Khait (estimated)", - "2026-03-21": "Nauryz", - "2026-05-09": "Memorial Day", - "2026-05-27": "Kurban Khait (estimated)", + "2026-03-09": "Women's Day (Observed)", + "2026-03-20": "Eid al-Fitr (estimated)", + "2026-03-21": "Nowruz", + "2026-03-23": "Nowruz (Observed)", + "2026-05-09": "Day of Memory and Honor", + "2026-05-11": "Day of Memory and Honor (Observed)", + "2026-05-27": "Eid al-Adha (estimated)", "2026-09-01": "Independence Day", - "2026-10-01": "Teacher's Day", + "2026-10-01": "Teachers and Instructors Day", "2026-12-08": "Constitution Day", - "2027-01-01": "New Year", + "2027-01-01": "New Year's Day", "2027-03-08": "Women's Day", - "2027-03-09": "Ramadan Khait (estimated)", - "2027-03-21": "Nauryz", - "2027-05-09": "Memorial Day", - "2027-05-16": "Kurban Khait (estimated)", + "2027-03-09": "Eid al-Fitr (estimated)", + "2027-03-21": "Nowruz", + "2027-03-22": "Nowruz (Observed)", + "2027-05-09": "Day of Memory and Honor", + "2027-05-10": "Day of Memory and Honor (Observed)", + "2027-05-16": "Eid al-Adha (estimated)", + "2027-05-17": "Eid al-Adha (estimated) (Observed)", "2027-09-01": "Independence Day", - "2027-10-01": "Teacher's Day", + "2027-10-01": "Teachers and Instructors Day", "2027-12-08": "Constitution Day", - "2028-01-01": "New Year", - "2028-02-26": "Ramadan Khait (estimated)", + "2028-01-01": "New Year's Day", + "2028-01-03": "New Year's Day (Observed)", + "2028-02-26": "Eid al-Fitr (estimated)", + "2028-02-28": "Eid al-Fitr (estimated) (Observed)", "2028-03-08": "Women's Day", - "2028-03-21": "Nauryz", - "2028-05-05": "Kurban Khait (estimated)", - "2028-05-09": "Memorial Day", + "2028-03-21": "Nowruz", + "2028-05-05": "Eid al-Adha (estimated)", + "2028-05-09": "Day of Memory and Honor", "2028-09-01": "Independence Day", - "2028-10-01": "Teacher's Day", + "2028-10-01": "Teachers and Instructors Day", + "2028-10-02": "Teachers and Instructors Day (Observed)", "2028-12-08": "Constitution Day", - "2029-01-01": "New Year", - "2029-02-14": "Ramadan Khait (estimated)", + "2029-01-01": "New Year's Day", + "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-08": "Women's Day", - "2029-03-21": "Nauryz", - "2029-04-24": "Kurban Khait (estimated)", - "2029-05-09": "Memorial Day", + "2029-03-21": "Nowruz", + "2029-04-24": "Eid al-Adha (estimated)", + "2029-05-09": "Day of Memory and Honor", "2029-09-01": "Independence Day", - "2029-10-01": "Teacher's Day", + "2029-09-03": "Independence Day (Observed)", + "2029-10-01": "Teachers and Instructors Day", "2029-12-08": "Constitution Day", - "2030-01-01": "New Year", - "2030-02-04": "Ramadan Khait (estimated)", + "2029-12-10": "Constitution Day (Observed)", + "2030-01-01": "New Year's Day", + "2030-02-04": "Eid al-Fitr (estimated)", "2030-03-08": "Women's Day", - "2030-03-21": "Nauryz", - "2030-04-13": "Kurban Khait (estimated)", - "2030-05-09": "Memorial Day", + "2030-03-21": "Nowruz", + "2030-04-13": "Eid al-Adha (estimated)", + "2030-04-15": "Eid al-Adha (estimated) (Observed)", + "2030-05-09": "Day of Memory and Honor", "2030-09-01": "Independence Day", - "2030-10-01": "Teacher's Day", + "2030-09-02": "Independence Day (Observed)", + "2030-10-01": "Teachers and Instructors Day", "2030-12-08": "Constitution Day", - "2031-01-01": "New Year", - "2031-01-24": "Ramadan Khait (estimated)", + "2030-12-09": "Constitution Day (Observed)", + "2031-01-01": "New Year's Day", + "2031-01-24": "Eid al-Fitr (estimated)", "2031-03-08": "Women's Day", - "2031-03-21": "Nauryz", - "2031-04-02": "Kurban Khait (estimated)", - "2031-05-09": "Memorial Day", + "2031-03-10": "Women's Day (Observed)", + "2031-03-21": "Nowruz", + "2031-04-02": "Eid al-Adha (estimated)", + "2031-05-09": "Day of Memory and Honor", "2031-09-01": "Independence Day", - "2031-10-01": "Teacher's Day", + "2031-10-01": "Teachers and Instructors Day", "2031-12-08": "Constitution Day", - "2032-01-01": "New Year", - "2032-01-14": "Ramadan Khait (estimated)", + "2032-01-01": "New Year's Day", + "2032-01-14": "Eid al-Fitr (estimated)", "2032-03-08": "Women's Day", - "2032-03-21": "Nauryz", - "2032-03-22": "Kurban Khait (estimated)", - "2032-05-09": "Memorial Day", + "2032-03-21": "Nowruz", + "2032-03-22": "Eid al-Adha (estimated)", + "2032-03-23": "Nowruz (Observed)", + "2032-05-09": "Day of Memory and Honor", + "2032-05-10": "Day of Memory and Honor (Observed)", "2032-09-01": "Independence Day", - "2032-10-01": "Teacher's Day", + "2032-10-01": "Teachers and Instructors Day", "2032-12-08": "Constitution Day", - "2033-01-01": "New Year", - "2033-01-02": "Ramadan Khait (estimated)", + "2033-01-01": "New Year's Day", + "2033-01-02": "Eid al-Fitr (estimated)", + "2033-01-03": "New Year's Day (Observed)", + "2033-01-04": "Eid al-Fitr (estimated) (Observed)", "2033-03-08": "Women's Day", - "2033-03-11": "Kurban Khait (estimated)", - "2033-03-21": "Nauryz", - "2033-05-09": "Memorial Day", + "2033-03-11": "Eid al-Adha (estimated)", + "2033-03-21": "Nowruz", + "2033-05-09": "Day of Memory and Honor", "2033-09-01": "Independence Day", - "2033-10-01": "Teacher's Day", + "2033-10-01": "Teachers and Instructors Day", + "2033-10-03": "Teachers and Instructors Day (Observed)", "2033-12-08": "Constitution Day", - "2033-12-23": "Ramadan Khait (estimated)", - "2034-01-01": "New Year", - "2034-03-01": "Kurban Khait (estimated)", + "2033-12-23": "Eid al-Fitr (estimated)", + "2034-01-01": "New Year's Day", + "2034-01-02": "New Year's Day (Observed)", + "2034-03-01": "Eid al-Adha (estimated)", "2034-03-08": "Women's Day", - "2034-03-21": "Nauryz", - "2034-05-09": "Memorial Day", + "2034-03-21": "Nowruz", + "2034-05-09": "Day of Memory and Honor", "2034-09-01": "Independence Day", - "2034-10-01": "Teacher's Day", + "2034-10-01": "Teachers and Instructors Day", + "2034-10-02": "Teachers and Instructors Day (Observed)", "2034-12-08": "Constitution Day", - "2034-12-12": "Ramadan Khait (estimated)", - "2035-01-01": "New Year", - "2035-02-18": "Kurban Khait (estimated)", + "2034-12-12": "Eid al-Fitr (estimated)", + "2035-01-01": "New Year's Day", + "2035-02-18": "Eid al-Adha (estimated)", + "2035-02-19": "Eid al-Adha (estimated) (Observed)", "2035-03-08": "Women's Day", - "2035-03-21": "Nauryz", - "2035-05-09": "Memorial Day", + "2035-03-21": "Nowruz", + "2035-05-09": "Day of Memory and Honor", "2035-09-01": "Independence Day", - "2035-10-01": "Teacher's Day", - "2035-12-01": "Ramadan Khait (estimated)", + "2035-09-03": "Independence Day (Observed)", + "2035-10-01": "Teachers and Instructors Day", + "2035-12-01": "Eid al-Fitr (estimated)", + "2035-12-03": "Eid al-Fitr (estimated) (Observed)", "2035-12-08": "Constitution Day", - "2036-01-01": "New Year", - "2036-02-07": "Kurban Khait (estimated)", + "2035-12-10": "Constitution Day (Observed)", + "2036-01-01": "New Year's Day", + "2036-02-07": "Eid al-Adha (estimated)", "2036-03-08": "Women's Day", - "2036-03-21": "Nauryz", - "2036-05-09": "Memorial Day", + "2036-03-10": "Women's Day (Observed)", + "2036-03-21": "Nowruz", + "2036-05-09": "Day of Memory and Honor", "2036-09-01": "Independence Day", - "2036-10-01": "Teacher's Day", - "2036-11-19": "Ramadan Khait (estimated)", + "2036-10-01": "Teachers and Instructors Day", + "2036-11-19": "Eid al-Fitr (estimated)", "2036-12-08": "Constitution Day", - "2037-01-01": "New Year", - "2037-01-26": "Kurban Khait (estimated)", + "2037-01-01": "New Year's Day", + "2037-01-26": "Eid al-Adha (estimated)", "2037-03-08": "Women's Day", - "2037-03-21": "Nauryz", - "2037-05-09": "Memorial Day", + "2037-03-09": "Women's Day (Observed)", + "2037-03-21": "Nowruz", + "2037-03-23": "Nowruz (Observed)", + "2037-05-09": "Day of Memory and Honor", + "2037-05-11": "Day of Memory and Honor (Observed)", "2037-09-01": "Independence Day", - "2037-10-01": "Teacher's Day", - "2037-11-08": "Ramadan Khait (estimated)", + "2037-10-01": "Teachers and Instructors Day", + "2037-11-08": "Eid al-Fitr (estimated)", + "2037-11-09": "Eid al-Fitr (estimated) (Observed)", "2037-12-08": "Constitution Day", - "2038-01-01": "New Year", - "2038-01-16": "Kurban Khait (estimated)", + "2038-01-01": "New Year's Day", + "2038-01-16": "Eid al-Adha (estimated)", + "2038-01-18": "Eid al-Adha (estimated) (Observed)", "2038-03-08": "Women's Day", - "2038-03-21": "Nauryz", - "2038-05-09": "Memorial Day", + "2038-03-21": "Nowruz", + "2038-03-22": "Nowruz (Observed)", + "2038-05-09": "Day of Memory and Honor", + "2038-05-10": "Day of Memory and Honor (Observed)", "2038-09-01": "Independence Day", - "2038-10-01": "Teacher's Day", - "2038-10-29": "Ramadan Khait (estimated)", + "2038-10-01": "Teachers and Instructors Day", + "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-08": "Constitution Day", - "2039-01-01": "New Year", - "2039-01-05": "Kurban Khait (estimated)", + "2039-01-01": "New Year's Day", + "2039-01-03": "New Year's Day (Observed)", + "2039-01-05": "Eid al-Adha (estimated)", "2039-03-08": "Women's Day", - "2039-03-21": "Nauryz", - "2039-05-09": "Memorial Day", + "2039-03-21": "Nowruz", + "2039-05-09": "Day of Memory and Honor", "2039-09-01": "Independence Day", - "2039-10-01": "Teacher's Day", - "2039-10-19": "Ramadan Khait (estimated)", + "2039-10-01": "Teachers and Instructors Day", + "2039-10-03": "Teachers and Instructors Day (Observed)", + "2039-10-19": "Eid al-Fitr (estimated)", "2039-12-08": "Constitution Day", - "2039-12-26": "Kurban Khait (estimated)", - "2040-01-01": "New Year", + "2039-12-26": "Eid al-Adha (estimated)", + "2040-01-01": "New Year's Day", + "2040-01-02": "New Year's Day (Observed)", "2040-03-08": "Women's Day", - "2040-03-21": "Nauryz", - "2040-05-09": "Memorial Day", + "2040-03-21": "Nowruz", + "2040-05-09": "Day of Memory and Honor", "2040-09-01": "Independence Day", - "2040-10-01": "Teacher's Day", - "2040-10-07": "Ramadan Khait (estimated)", + "2040-09-03": "Independence Day (Observed)", + "2040-10-01": "Teachers and Instructors Day", + "2040-10-07": "Eid al-Fitr (estimated)", + "2040-10-08": "Eid al-Fitr (estimated) (Observed)", "2040-12-08": "Constitution Day", - "2040-12-14": "Kurban Khait (estimated)", - "2041-01-01": "New Year", + "2040-12-10": "Constitution Day (Observed)", + "2040-12-14": "Eid al-Adha (estimated)", + "2041-01-01": "New Year's Day", "2041-03-08": "Women's Day", - "2041-03-21": "Nauryz", - "2041-05-09": "Memorial Day", + "2041-03-21": "Nowruz", + "2041-05-09": "Day of Memory and Honor", "2041-09-01": "Independence Day", - "2041-09-26": "Ramadan Khait (estimated)", - "2041-10-01": "Teacher's Day", - "2041-12-04": "Kurban Khait (estimated)", + "2041-09-02": "Independence Day (Observed)", + "2041-09-26": "Eid al-Fitr (estimated)", + "2041-10-01": "Teachers and Instructors Day", + "2041-12-04": "Eid al-Adha (estimated)", "2041-12-08": "Constitution Day", - "2042-01-01": "New Year", + "2041-12-09": "Constitution Day (Observed)", + "2042-01-01": "New Year's Day", "2042-03-08": "Women's Day", - "2042-03-21": "Nauryz", - "2042-05-09": "Memorial Day", + "2042-03-10": "Women's Day (Observed)", + "2042-03-21": "Nowruz", + "2042-05-09": "Day of Memory and Honor", "2042-09-01": "Independence Day", - "2042-09-15": "Ramadan Khait (estimated)", - "2042-10-01": "Teacher's Day", - "2042-11-23": "Kurban Khait (estimated)", + "2042-09-15": "Eid al-Fitr (estimated)", + "2042-10-01": "Teachers and Instructors Day", + "2042-11-23": "Eid al-Adha (estimated)", + "2042-11-24": "Eid al-Adha (estimated) (Observed)", "2042-12-08": "Constitution Day", - "2043-01-01": "New Year", + "2043-01-01": "New Year's Day", "2043-03-08": "Women's Day", - "2043-03-21": "Nauryz", - "2043-05-09": "Memorial Day", + "2043-03-09": "Women's Day (Observed)", + "2043-03-21": "Nowruz", + "2043-03-23": "Nowruz (Observed)", + "2043-05-09": "Day of Memory and Honor", + "2043-05-11": "Day of Memory and Honor (Observed)", "2043-09-01": "Independence Day", - "2043-09-04": "Ramadan Khait (estimated)", - "2043-10-01": "Teacher's Day", - "2043-11-12": "Kurban Khait (estimated)", + "2043-09-04": "Eid al-Fitr (estimated)", + "2043-10-01": "Teachers and Instructors Day", + "2043-11-12": "Eid al-Adha (estimated)", "2043-12-08": "Constitution Day", - "2044-01-01": "New Year", + "2044-01-01": "New Year's Day", "2044-03-08": "Women's Day", - "2044-03-21": "Nauryz", - "2044-05-09": "Memorial Day", - "2044-08-24": "Ramadan Khait (estimated)", + "2044-03-21": "Nowruz", + "2044-05-09": "Day of Memory and Honor", + "2044-08-24": "Eid al-Fitr (estimated)", "2044-09-01": "Independence Day", - "2044-10-01": "Teacher's Day", - "2044-10-31": "Kurban Khait (estimated)", + "2044-10-01": "Teachers and Instructors Day", + "2044-10-03": "Teachers and Instructors Day (Observed)", + "2044-10-31": "Eid al-Adha (estimated)", "2044-12-08": "Constitution Day", - "2045-01-01": "New Year", + "2045-01-01": "New Year's Day", + "2045-01-02": "New Year's Day (Observed)", "2045-03-08": "Women's Day", - "2045-03-21": "Nauryz", - "2045-05-09": "Memorial Day", - "2045-08-14": "Ramadan Khait (estimated)", + "2045-03-21": "Nowruz", + "2045-05-09": "Day of Memory and Honor", + "2045-08-14": "Eid al-Fitr (estimated)", "2045-09-01": "Independence Day", - "2045-10-01": "Teacher's Day", - "2045-10-21": "Kurban Khait (estimated)", + "2045-10-01": "Teachers and Instructors Day", + "2045-10-02": "Teachers and Instructors Day (Observed)", + "2045-10-21": "Eid al-Adha (estimated)", + "2045-10-23": "Eid al-Adha (estimated) (Observed)", "2045-12-08": "Constitution Day", - "2046-01-01": "New Year", + "2046-01-01": "New Year's Day", "2046-03-08": "Women's Day", - "2046-03-21": "Nauryz", - "2046-05-09": "Memorial Day", - "2046-08-03": "Ramadan Khait (estimated)", + "2046-03-21": "Nowruz", + "2046-05-09": "Day of Memory and Honor", + "2046-08-03": "Eid al-Fitr (estimated)", "2046-09-01": "Independence Day", - "2046-10-01": "Teacher's Day", - "2046-10-10": "Kurban Khait (estimated)", + "2046-09-03": "Independence Day (Observed)", + "2046-10-01": "Teachers and Instructors Day", + "2046-10-10": "Eid al-Adha (estimated)", "2046-12-08": "Constitution Day", - "2047-01-01": "New Year", + "2046-12-10": "Constitution Day (Observed)", + "2047-01-01": "New Year's Day", "2047-03-08": "Women's Day", - "2047-03-21": "Nauryz", - "2047-05-09": "Memorial Day", - "2047-07-24": "Ramadan Khait (estimated)", + "2047-03-21": "Nowruz", + "2047-05-09": "Day of Memory and Honor", + "2047-07-24": "Eid al-Fitr (estimated)", "2047-09-01": "Independence Day", - "2047-09-30": "Kurban Khait (estimated)", - "2047-10-01": "Teacher's Day", + "2047-09-02": "Independence Day (Observed)", + "2047-09-30": "Eid al-Adha (estimated)", + "2047-10-01": "Teachers and Instructors Day", "2047-12-08": "Constitution Day", - "2048-01-01": "New Year", + "2047-12-09": "Constitution Day (Observed)", + "2048-01-01": "New Year's Day", "2048-03-08": "Women's Day", - "2048-03-21": "Nauryz", - "2048-05-09": "Memorial Day", - "2048-07-12": "Ramadan Khait (estimated)", + "2048-03-09": "Women's Day (Observed)", + "2048-03-21": "Nowruz", + "2048-03-23": "Nowruz (Observed)", + "2048-05-09": "Day of Memory and Honor", + "2048-05-11": "Day of Memory and Honor (Observed)", + "2048-07-12": "Eid al-Fitr (estimated)", + "2048-07-13": "Eid al-Fitr (estimated) (Observed)", "2048-09-01": "Independence Day", - "2048-09-19": "Kurban Khait (estimated)", - "2048-10-01": "Teacher's Day", + "2048-09-19": "Eid al-Adha (estimated)", + "2048-09-21": "Eid al-Adha (estimated) (Observed)", + "2048-10-01": "Teachers and Instructors Day", "2048-12-08": "Constitution Day", - "2049-01-01": "New Year", + "2049-01-01": "New Year's Day", "2049-03-08": "Women's Day", - "2049-03-21": "Nauryz", - "2049-05-09": "Memorial Day", - "2049-07-01": "Ramadan Khait (estimated)", + "2049-03-21": "Nowruz", + "2049-03-22": "Nowruz (Observed)", + "2049-05-09": "Day of Memory and Honor", + "2049-05-10": "Day of Memory and Honor (Observed)", + "2049-07-01": "Eid al-Fitr (estimated)", "2049-09-01": "Independence Day", - "2049-09-08": "Kurban Khait (estimated)", - "2049-10-01": "Teacher's Day", + "2049-09-08": "Eid al-Adha (estimated)", + "2049-10-01": "Teachers and Instructors Day", "2049-12-08": "Constitution Day", - "2050-01-01": "New Year", + "2050-01-01": "New Year's Day", + "2050-01-03": "New Year's Day (Observed)", "2050-03-08": "Women's Day", - "2050-03-21": "Nauryz", - "2050-05-09": "Memorial Day", - "2050-06-20": "Ramadan Khait (estimated)", - "2050-08-28": "Kurban Khait (estimated)", + "2050-03-21": "Nowruz", + "2050-05-09": "Day of Memory and Honor", + "2050-06-20": "Eid al-Fitr (estimated)", + "2050-08-28": "Eid al-Adha (estimated)", + "2050-08-29": "Eid al-Adha (estimated) (Observed)", "2050-09-01": "Independence Day", - "2050-10-01": "Teacher's Day", + "2050-10-01": "Teachers and Instructors Day", + "2050-10-03": "Teachers and Instructors Day (Observed)", "2050-12-08": "Constitution Day" } diff --git a/tests/countries/test_uzbekistan.py b/tests/countries/test_uzbekistan.py index 5996f034c..0c0988722 100644 --- a/tests/countries/test_uzbekistan.py +++ b/tests/countries/test_uzbekistan.py @@ -16,21 +16,198 @@ class TestUzbekistan(TestCase): @classmethod def setUpClass(cls): - super().setUpClass(Uzbekistan) + super().setUpClass(Uzbekistan, years=range(1992, 2050)) def test_country_aliases(self): self.assertCountryAliases(Uzbekistan, UZ, UZB) + def test_no_holidays(self): + self.assertNoHolidays(Uzbekistan(years=1991)) + + def test_new_years_day(self): + self.assertHolidayName("Yangi yil", (f"{year}-01-01" for year in range(1992, 2050))) + + def test_womens_day(self): + self.assertHolidayName( + "Xotin-qizlar kuni", (f"{year}-03-08" for year in range(1992, 2050)) + ) + + def test_nowruz(self): + self.assertHolidayName("Navro‘z bayrami", (f"{year}-03-21" for year in range(1992, 2050))) + + def test_memory_and_honor_day(self): + name_1 = "G‘alaba kuni" + name_2 = "Xotira va qadrlash kuni" + self.assertHolidayName(name_1, (f"{year}-05-09" for year in range(1992, 1999))) + self.assertHolidayName(name_2, (f"{year}-05-09" for year in range(1999, 2050))) + self.assertNoHolidayName(name_1, range(1999, 2050)) + self.assertNoHolidayName(name_2, range(1992, 1999)) + + def test_independence_day(self): + self.assertHolidayName("Mustaqillik kuni", (f"{year}-09-01" for year in range(1992, 2050))) + + def test_teachers_and_instructors_day(self): + name = "O‘qituvchi va murabbiylar kuni" + self.assertHolidayName(name, (f"{year}-10-01" for year in range(1997, 2050))) + self.assertNoHolidayName(name, range(1992, 1997)) + + def test_constitution_day(self): + name = "O‘zbekiston Respublikasi Konstitutsiyasi kuni" + self.assertHolidayName(name, (f"{year}-12-08" for year in range(1993, 2050))) + self.assertNoHolidayName(name, 1992) + + def test_eid_al_fitr(self): + self.assertHolidayName( + "Ro‘za hayit", + "2020-05-24", + "2021-05-13", + "2022-05-02", + "2023-04-21", + ) + + def test_eid_al_adha(self): + self.assertHolidayName( + "Qurbon hayit", + "2006-01-10", + "2006-12-30", + "2020-07-31", + "2021-07-20", + "2022-07-09", + "2023-06-28", + ) + + def test_observed(self): + dt = ( + "2023-10-02", + "2024-06-17", + "2024-09-02", + "2024-12-09", + ) + self.assertHoliday(dt) + self.assertNoNonObservedHoliday(dt) + def test2020(self): + self.assertHolidayDates( + Uzbekistan(years=2020), + "2020-01-01", + "2020-01-02", + "2020-03-08", + "2020-03-21", + "2020-03-23", + "2020-05-09", + "2020-05-24", + "2020-07-31", + "2020-08-31", + "2020-09-01", + "2020-10-01", + "2020-12-08", + ) + + def test2021(self): + self.assertHolidayDates( + Uzbekistan(years=2021), + "2021-01-01", + "2021-03-08", + "2021-03-21", + "2021-03-22", + "2021-05-09", + "2021-05-13", + "2021-05-14", + "2021-07-20", + "2021-07-21", + "2021-07-22", + "2021-09-01", + "2021-09-02", + "2021-09-03", + "2021-10-01", + "2021-12-08", + "2021-12-31", + ) + + def test2022(self): self.assertHolidays( Uzbekistan(years=2022), - ("2022-01-01", "New Year"), - ("2022-03-08", "Women's Day"), - ("2022-03-21", "Nauryz"), - ("2022-05-02", "Ramadan Khait (estimated)"), - ("2022-05-09", "Memorial Day"), - ("2022-07-09", "Kurban Khait (estimated)"), - ("2022-09-01", "Independence Day"), - ("2022-10-01", "Teacher's Day"), - ("2022-12-08", "Constitution Day"), + ("2022-01-01", "Yangi yil"), + ("2022-01-03", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2022-01-04", "Dam olish kuni (08/01 2022 dan ko‘chirilgan)"), + ("2022-03-08", "Xotin-qizlar kuni"), + ("2022-03-21", "Navro‘z bayrami"), + ("2022-03-22", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2022-03-23", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2022-05-02", "Ro‘za hayit"), + ("2022-05-03", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2022-05-04", "Dam olish kuni (07/05 2022 dan ko‘chirilgan)"), + ("2022-05-09", "Xotira va qadrlash kuni"), + ("2022-07-09", "Qurbon hayit"), + ("2022-07-11", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2022-07-12", "Dam olish kuni (16/07 2022 dan ko‘chirilgan)"), + ("2022-09-01", "Mustaqillik kuni"), + ("2022-09-02", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2022-10-01", "O‘qituvchi va murabbiylar kuni"), + ("2022-12-08", "O‘zbekiston Respublikasi Konstitutsiyasi kuni"), + ) + + def test_l10n_default(self): + self.assertLocalizedHolidays( + ("2023-01-01", "Yangi yil"), + ("2023-01-02", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2023-01-03", "Dam olish kuni (07/01 2023 dan ko‘chirilgan)"), + ("2023-03-08", "Xotin-qizlar kuni"), + ("2023-03-20", "Dam olish kuni (11/03 2023 dan ko‘chirilgan)"), + ("2023-03-21", "Navro‘z bayrami"), + ("2023-03-22", "Dam olish kuni (25/03 2023 dan ko‘chirilgan)"), + ("2023-04-21", "Ro‘za hayit"), + ("2023-04-24", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2023-05-09", "Xotira va qadrlash kuni"), + ("2023-06-28", "Qurbon hayit"), + ("2023-06-29", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2023-06-30", "Prezidentining farmoni bilan qo‘shimcha dam olish kuni"), + ("2023-09-01", "Mustaqillik kuni"), + ("2023-10-01", "O‘qituvchi va murabbiylar kuni"), + ("2023-10-02", "O‘qituvchi va murabbiylar kuni (ko‘chirilgan)"), + ("2023-12-08", "O‘zbekiston Respublikasi Konstitutsiyasi kuni"), + ) + + def test_l10n_en_us(self): + self.assertLocalizedHolidays( + "en_US", + ("2023-01-01", "New Year's Day"), + ("2023-01-02", "Additional day off by Presidential decree"), + ("2023-01-03", "Day off (substituted from 01/07/2023)"), + ("2023-03-08", "Women's Day"), + ("2023-03-20", "Day off (substituted from 03/11/2023)"), + ("2023-03-21", "Nowruz"), + ("2023-03-22", "Day off (substituted from 03/25/2023)"), + ("2023-04-21", "Eid al-Fitr"), + ("2023-04-24", "Additional day off by Presidential decree"), + ("2023-05-09", "Day of Memory and Honor"), + ("2023-06-28", "Eid al-Adha"), + ("2023-06-29", "Additional day off by Presidential decree"), + ("2023-06-30", "Additional day off by Presidential decree"), + ("2023-09-01", "Independence Day"), + ("2023-10-01", "Teachers and Instructors Day"), + ("2023-10-02", "Teachers and Instructors Day (Observed)"), + ("2023-12-08", "Constitution Day"), + ) + + def test_l10n_uk(self): + self.assertLocalizedHolidays( + "uk", + ("2023-01-01", "Новий рік"), + ("2023-01-02", "Додатковий вихідний згідно указу Президента"), + ("2023-01-03", "Вихідний день (перенесено з 07.01.2023)"), + ("2023-03-08", "Жіночий день"), + ("2023-03-20", "Вихідний день (перенесено з 11.03.2023)"), + ("2023-03-21", "Свято Новруз"), + ("2023-03-22", "Вихідний день (перенесено з 25.03.2023)"), + ("2023-04-21", "Рамазан-байрам"), + ("2023-04-24", "Додатковий вихідний згідно указу Президента"), + ("2023-05-09", "День памʼяті і шани"), + ("2023-06-28", "Курбан-байрам"), + ("2023-06-29", "Додатковий вихідний згідно указу Президента"), + ("2023-06-30", "Додатковий вихідний згідно указу Президента"), + ("2023-09-01", "День Незалежності"), + ("2023-10-01", "День Вчителя і Наставника"), + ("2023-10-02", "День Вчителя і Наставника (вихідний)"), + ("2023-12-08", "День Конституції Республіки Узбекистан"), ) From 0c1b6b0a82dc857a3bc8246614e299920849a9d0 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Fri, 5 Jan 2024 20:57:05 +0200 Subject: [PATCH 11/23] Refactor Thai calendar (#1628) --- holidays/calendars/thai.py | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/holidays/calendars/thai.py b/holidays/calendars/thai.py index 95d405f74..ba34a25f8 100644 --- a/holidays/calendars/thai.py +++ b/holidays/calendars/thai.py @@ -222,19 +222,14 @@ def _get_start_date(self, year: int) -> Optional[date]: if year < _ThaiLunisolar.START_YEAR or year > _ThaiLunisolar.END_YEAR: return None - iter_start_date = _ThaiLunisolar.START_DATE - iter_start_year = _ThaiLunisolar.START_YEAR - - while iter_start_year < year: - if iter_start_year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: - delta_days = +384 - elif iter_start_year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: - delta_days = +355 - else: - delta_days = +354 - iter_start_date += td(days=delta_days) - iter_start_year += 1 - return iter_start_date + delta_days = 354 * (year - _ThaiLunisolar.START_YEAR) + for iter_year in range(_ThaiLunisolar.START_YEAR, year): + if iter_year in _ThaiLunisolar.ATHIKAMAT_YEARS_GREGORIAN: + delta_days += 30 + elif iter_year in _ThaiLunisolar.ATHIKAWAN_YEARS_GREGORIAN: + delta_days += 1 + + return _ThaiLunisolar.START_DATE + td(days=delta_days) def makha_bucha_date(self, year: int, calendar=None) -> Optional[date]: """ From 464a50348522523389996639498995470cd51646 Mon Sep 17 00:00:00 2001 From: Nate Harris Date: Fri, 5 Jan 2024 20:18:38 -0700 Subject: [PATCH 12/23] Update US holidays: add CO Cesar Chavez Day (#1629) --- holidays/countries/united_states.py | 4 +++- tests/countries/test_united_states.py | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/holidays/countries/united_states.py b/holidays/countries/united_states.py index d6568f287..204cf6ee5 100644 --- a/holidays/countries/united_states.py +++ b/holidays/countries/united_states.py @@ -316,7 +316,9 @@ def _populate_subdiv_ca_public_holidays(self): self._add_holiday_1_day_past_4th_thu_of_nov("Day After Thanksgiving") def _populate_subdiv_co_public_holidays(self): - pass + # Cesar Chavez Day + if self._year >= 2001: + self._add_holiday_mar_31("Cesar Chavez Day") def _populate_subdiv_ct_public_holidays(self): # Lincoln's Birthday diff --git a/tests/countries/test_united_states.py b/tests/countries/test_united_states.py index cdc7a8abd..43bece7be 100644 --- a/tests/countries/test_united_states.py +++ b/tests/countries/test_united_states.py @@ -953,6 +953,10 @@ def test_cesar_chavez_day(self): self.assertNoNonObservedHolidayName( f"{name} (Observed)", UnitedStates(subdiv="CA", observed=False), obs_dt ) + self.assertHolidayName( + name, self.state_hols["CO"], (f"{year}-03-31" for year in range(2001, 2050)) + ) + self.assertNoHolidayName(name, self.state_hols["CO"], range(1865, 2001)) self.assertHolidayName( name, self.state_hols["TX"], (f"{year}-03-31" for year in range(2000, 2050)) ) From cfab69d4dc79602b82ea25a47f040a13177c9dd7 Mon Sep 17 00:00:00 2001 From: Niyuzhou <133763785+peter-ni-noob@users.noreply.github.com> Date: Sun, 7 Jan 2024 03:26:09 +0800 Subject: [PATCH 13/23] Fix dev env setup issues (#1627) Co-authored-by: niyuzhou <2860437760@qq.com> Co-authored-by: ~Jhellico --- Makefile | 1 + scripts/generate_release_notes.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0c2d4ee82..fc9afd171 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,7 @@ setup: pre-commit install --hook-type pre-commit pre-commit install --hook-type pre-push make l10n + make package snapshot: scripts/l10n/generate_mo_files.py diff --git a/scripts/generate_release_notes.py b/scripts/generate_release_notes.py index 45a0fd53c..c8ff8a770 100755 --- a/scripts/generate_release_notes.py +++ b/scripts/generate_release_notes.py @@ -79,7 +79,8 @@ def __init__(self) -> None: arg_parser.add_argument( "-v", "--verbose", - action=argparse.BooleanOptionalAction, + action="store_true", + default=False, help="Verbose output", ) self.args = arg_parser.parse_args() From 097692c90855d24060e1abccc83f041a6ff5877f Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Sat, 6 Jan 2024 11:26:39 -0800 Subject: [PATCH 14/23] Update estimated label uk l10n (#1635) --- holidays/locale/uk/LC_MESSAGES/AZ.po | 2 +- holidays/locale/uk/LC_MESSAGES/ID.po | 2 +- holidays/locale/uk/LC_MESSAGES/TR.po | 2 +- holidays/locale/uk/LC_MESSAGES/UZ.po | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/holidays/locale/uk/LC_MESSAGES/AZ.po b/holidays/locale/uk/LC_MESSAGES/AZ.po index 0bf8e9209..f504e07ae 100644 --- a/holidays/locale/uk/LC_MESSAGES/AZ.po +++ b/holidays/locale/uk/LC_MESSAGES/AZ.po @@ -19,7 +19,7 @@ msgstr "" #. Estimated label. #, c-format msgid "%s (təxmini)" -msgstr "%s (орієнтовно)" +msgstr "%s (приблизна дата)" #. %s (Observed). #, c-format diff --git a/holidays/locale/uk/LC_MESSAGES/ID.po b/holidays/locale/uk/LC_MESSAGES/ID.po index 45adda366..21de1b046 100644 --- a/holidays/locale/uk/LC_MESSAGES/ID.po +++ b/holidays/locale/uk/LC_MESSAGES/ID.po @@ -18,7 +18,7 @@ msgstr "" #, c-format msgid "%s (perkiraan)" -msgstr "%s (орієнтовно)" +msgstr "%s (приблизна дата)" #. Election Day. msgid "Hari Pemilihan" diff --git a/holidays/locale/uk/LC_MESSAGES/TR.po b/holidays/locale/uk/LC_MESSAGES/TR.po index ccf1fd411..7b57dcc73 100644 --- a/holidays/locale/uk/LC_MESSAGES/TR.po +++ b/holidays/locale/uk/LC_MESSAGES/TR.po @@ -18,7 +18,7 @@ msgstr "" #. Estimated label. #, c-format msgid "%s (tahmini)" -msgstr "%s (орієнтовно)" +msgstr "%s (приблизна дата)" #. New Year's Day. msgid "Yılbaşı" diff --git a/holidays/locale/uk/LC_MESSAGES/UZ.po b/holidays/locale/uk/LC_MESSAGES/UZ.po index fd64cda86..0290f9128 100644 --- a/holidays/locale/uk/LC_MESSAGES/UZ.po +++ b/holidays/locale/uk/LC_MESSAGES/UZ.po @@ -59,7 +59,7 @@ msgstr "Курбан-байрам" #. Estimated label. #, c-format msgid "%s (taxminiy)" -msgstr "%s (орієнтовно)" +msgstr "%s (приблизна дата)" #. %s (Observed). #, c-format From 5b307c1930cdaa698585a231dd5f9671679da1e5 Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Mon, 8 Jan 2024 08:22:08 -0800 Subject: [PATCH 15/23] Unify observed labels format (#1636) --- docs/source/examples.rst | 2 +- holidays/countries/albania.py | 2 +- holidays/countries/angola.py | 4 +- holidays/countries/argentina.py | 4 +- holidays/countries/australia.py | 2 +- holidays/countries/azerbaijan.py | 2 +- holidays/countries/bahamas.py | 18 +- holidays/countries/barbados.py | 2 +- holidays/countries/belize.py | 2 +- holidays/countries/bolivia.py | 4 +- holidays/countries/bosnia_and_herzegovina.py | 2 +- holidays/countries/botswana.py | 2 +- holidays/countries/brunei.py | 2 +- holidays/countries/bulgaria.py | 2 +- holidays/countries/burkina_faso.py | 2 +- holidays/countries/burundi.py | 2 +- holidays/countries/cameroon.py | 2 +- holidays/countries/canada.py | 4 +- holidays/countries/chad.py | 2 +- holidays/countries/china.py | 2 +- holidays/countries/colombia.py | 4 +- holidays/countries/costa_rica.py | 4 +- holidays/countries/cuba.py | 4 +- holidays/countries/ecuador.py | 4 +- holidays/countries/eswatini.py | 2 +- holidays/countries/greece.py | 2 +- holidays/countries/ireland.py | 2 +- holidays/countries/israel.py | 2 +- holidays/countries/jamaica.py | 2 +- holidays/countries/kazakhstan.py | 2 +- holidays/countries/kenya.py | 2 +- holidays/countries/latvia.py | 2 +- holidays/countries/malawi.py | 2 +- holidays/countries/malaysia.py | 2 +- holidays/countries/monaco.py | 4 +- holidays/countries/montenegro.py | 2 +- holidays/countries/mozambique.py | 4 +- holidays/countries/namibia.py | 4 +- holidays/countries/new_zealand.py | 2 +- holidays/countries/nigeria.py | 2 +- holidays/countries/panama.py | 2 +- holidays/countries/papua_new_guinea.py | 2 +- holidays/countries/saudi_arabia.py | 2 +- holidays/countries/serbia.py | 2 +- holidays/countries/singapore.py | 2 +- holidays/countries/south_africa.py | 2 +- holidays/countries/taiwan.py | 2 +- holidays/countries/tonga.py | 4 +- holidays/countries/ukraine.py | 2 +- holidays/countries/united_kingdom.py | 2 +- holidays/countries/united_states.py | 2 +- holidays/countries/vanuatu.py | 2 +- holidays/countries/vietnam.py | 2 +- holidays/countries/zambia.py | 2 +- holidays/countries/zimbabwe.py | 2 +- holidays/financial/ny_stock_exchange.py | 2 +- holidays/holiday_base.py | 2 +- holidays/locale/ar/LC_MESSAGES/CA.po | 4 +- holidays/locale/ar/LC_MESSAGES/SA.po | 2 +- holidays/locale/ar/LC_MESSAGES/UA.po | 2 +- holidays/locale/az/LC_MESSAGES/AZ.po | 2 +- holidays/locale/bg/LC_MESSAGES/BG.po | 2 +- holidays/locale/bs/LC_MESSAGES/BA.po | 2 +- holidays/locale/el/LC_MESSAGES/GR.po | 2 +- holidays/locale/en_CA/LC_MESSAGES/CA.po | 4 +- holidays/locale/en_US/LC_MESSAGES/AO.po | 6 +- holidays/locale/en_US/LC_MESSAGES/AR.po | 8 +- holidays/locale/en_US/LC_MESSAGES/AZ.po | 4 +- holidays/locale/en_US/LC_MESSAGES/BA.po | 4 +- holidays/locale/en_US/LC_MESSAGES/BG.po | 4 +- holidays/locale/en_US/LC_MESSAGES/BN.po | 6 +- holidays/locale/en_US/LC_MESSAGES/BO.po | 8 +- holidays/locale/en_US/LC_MESSAGES/CA.po | 6 +- holidays/locale/en_US/LC_MESSAGES/CN.po | 4 +- holidays/locale/en_US/LC_MESSAGES/CO.po | 8 +- holidays/locale/en_US/LC_MESSAGES/CR.po | 8 +- holidays/locale/en_US/LC_MESSAGES/CU.po | 6 +- holidays/locale/en_US/LC_MESSAGES/EC.po | 8 +- holidays/locale/en_US/LC_MESSAGES/GR.po | 4 +- holidays/locale/en_US/LC_MESSAGES/IL.po | 4 +- holidays/locale/en_US/LC_MESSAGES/LV.po | 4 +- holidays/locale/en_US/LC_MESSAGES/MC.po | 8 +- holidays/locale/en_US/LC_MESSAGES/MZ.po | 8 +- holidays/locale/en_US/LC_MESSAGES/RS.po | 4 +- holidays/locale/en_US/LC_MESSAGES/SA.po | 2 +- holidays/locale/en_US/LC_MESSAGES/TO.po | 8 +- holidays/locale/en_US/LC_MESSAGES/TW.po | 4 +- holidays/locale/en_US/LC_MESSAGES/UA.po | 4 +- holidays/locale/es/LC_MESSAGES/AR.po | 6 +- holidays/locale/es/LC_MESSAGES/BO.po | 6 +- holidays/locale/es/LC_MESSAGES/CO.po | 6 +- holidays/locale/es/LC_MESSAGES/CR.po | 6 +- holidays/locale/es/LC_MESSAGES/CU.po | 4 +- holidays/locale/es/LC_MESSAGES/EC.po | 6 +- holidays/locale/fr/LC_MESSAGES/CA.po | 4 +- holidays/locale/fr/LC_MESSAGES/MC.po | 6 +- holidays/locale/he/LC_MESSAGES/IL.po | 2 +- holidays/locale/lv/LC_MESSAGES/LV.po | 2 +- holidays/locale/ms/LC_MESSAGES/BN.po | 4 +- holidays/locale/pot/UA.pot | 2 +- holidays/locale/pt_AO/LC_MESSAGES/AO.po | 6 +- holidays/locale/pt_MZ/LC_MESSAGES/MZ.po | 6 +- holidays/locale/sr/LC_MESSAGES/BA.po | 2 +- holidays/locale/sr/LC_MESSAGES/RS.po | 2 +- holidays/locale/th/LC_MESSAGES/BN.po | 4 +- holidays/locale/th/LC_MESSAGES/CA.po | 4 +- holidays/locale/th/LC_MESSAGES/CN.po | 2 +- holidays/locale/th/LC_MESSAGES/TW.po | 2 +- holidays/locale/to/LC_MESSAGES/TO.po | 6 +- holidays/locale/uk/LC_MESSAGES/AO.po | 6 +- holidays/locale/uk/LC_MESSAGES/AR.po | 6 +- holidays/locale/uk/LC_MESSAGES/AZ.po | 2 +- holidays/locale/uk/LC_MESSAGES/BA.po | 2 +- holidays/locale/uk/LC_MESSAGES/BG.po | 2 +- holidays/locale/uk/LC_MESSAGES/BO.po | 6 +- holidays/locale/uk/LC_MESSAGES/CO.po | 6 +- holidays/locale/uk/LC_MESSAGES/CR.po | 6 +- holidays/locale/uk/LC_MESSAGES/CU.po | 4 +- holidays/locale/uk/LC_MESSAGES/EC.po | 6 +- holidays/locale/uk/LC_MESSAGES/GR.po | 2 +- holidays/locale/uk/LC_MESSAGES/IL.po | 2 +- holidays/locale/uk/LC_MESSAGES/LV.po | 2 +- holidays/locale/uk/LC_MESSAGES/MC.po | 6 +- holidays/locale/uk/LC_MESSAGES/MZ.po | 6 +- holidays/locale/uk/LC_MESSAGES/UA.po | 2 +- holidays/locale/zh_CN/LC_MESSAGES/CN.po | 2 +- holidays/locale/zh_CN/LC_MESSAGES/TW.po | 2 +- holidays/locale/zh_TW/LC_MESSAGES/CN.po | 2 +- holidays/locale/zh_TW/LC_MESSAGES/TW.po | 2 +- holidays/utils.py | 2 +- snapshots/countries/AL_COMMON.json | 922 +++++++------- snapshots/countries/AR_COMMON.json | 164 +-- snapshots/countries/AS_COMMON.json | 334 ++--- snapshots/countries/AU_ACT.json | 260 ++-- snapshots/countries/AU_COMMON.json | 232 ++-- snapshots/countries/AU_NSW.json | 232 ++-- snapshots/countries/AU_NT.json | 290 ++--- snapshots/countries/AU_QLD.json | 260 ++-- snapshots/countries/AU_SA.json | 260 ++-- snapshots/countries/AU_TAS.json | 232 ++-- snapshots/countries/AU_VIC.json | 232 ++-- snapshots/countries/AU_WA.json | 290 ++--- snapshots/countries/AZ_COMMON.json | 466 +++---- snapshots/countries/BA_BIH.json | 60 +- snapshots/countries/BA_BRC.json | 204 +-- snapshots/countries/BA_SRP.json | 56 +- snapshots/countries/BB_COMMON.json | 198 +-- snapshots/countries/BF_COMMON.json | 242 ++-- snapshots/countries/BG_COMMON.json | 196 +-- snapshots/countries/BI_COMMON.json | 290 ++--- snapshots/countries/BN_COMMON.json | 554 ++++---- snapshots/countries/BO_B.json | 128 +- snapshots/countries/BO_C.json | 128 +- snapshots/countries/BO_COMMON.json | 128 +- snapshots/countries/BO_H.json | 128 +- snapshots/countries/BO_L.json | 128 +- snapshots/countries/BO_N.json | 128 +- snapshots/countries/BO_O.json | 128 +- snapshots/countries/BO_P.json | 128 +- snapshots/countries/BO_S.json | 128 +- snapshots/countries/BO_T.json | 128 +- snapshots/countries/BS_COMMON.json | 258 ++-- snapshots/countries/BW_COMMON.json | 128 +- snapshots/countries/BZ_COMMON.json | 420 +++---- snapshots/countries/CA_AB.json | 336 ++--- snapshots/countries/CA_BC.json | 336 ++--- snapshots/countries/CA_COMMON.json | 336 ++--- snapshots/countries/CA_MB.json | 336 ++--- snapshots/countries/CA_NB.json | 336 ++--- snapshots/countries/CA_NL.json | 336 ++--- snapshots/countries/CA_NS.json | 336 ++--- snapshots/countries/CA_NT.json | 336 ++--- snapshots/countries/CA_NU.json | 336 ++--- snapshots/countries/CA_ON.json | 336 ++--- snapshots/countries/CA_PE.json | 336 ++--- snapshots/countries/CA_QC.json | 366 +++--- snapshots/countries/CA_SK.json | 336 ++--- snapshots/countries/CA_YT.json | 336 ++--- snapshots/countries/CM_COMMON.json | 230 ++-- snapshots/countries/CN_COMMON.json | 318 ++--- snapshots/countries/CO_COMMON.json | 1182 +++++++++--------- snapshots/countries/CR_COMMON.json | 134 +- snapshots/countries/CU_COMMON.json | 70 +- snapshots/countries/EC_COMMON.json | 282 ++--- snapshots/countries/GB_COMMON.json | 160 +-- snapshots/countries/GB_ENG.json | 160 +-- snapshots/countries/GB_NIR.json | 276 ++-- snapshots/countries/GB_SCT.json | 272 ++-- snapshots/countries/GB_WLS.json | 160 +-- snapshots/countries/GR_COMMON.json | 58 +- snapshots/countries/GU_COMMON.json | 248 ++-- snapshots/countries/IE_COMMON.json | 174 +-- snapshots/countries/IL_COMMON.json | 338 ++--- snapshots/countries/IM_COMMON.json | 160 +-- snapshots/countries/JM_COMMON.json | 190 +-- snapshots/countries/KE_COMMON.json | 176 +-- snapshots/countries/KZ_COMMON.json | 352 +++--- snapshots/countries/LV_COMMON.json | 48 +- snapshots/countries/MC_COMMON.json | 176 +-- snapshots/countries/ME_COMMON.json | 230 ++-- snapshots/countries/MP_COMMON.json | 422 +++---- snapshots/countries/MW_COMMON.json | 266 ++-- snapshots/countries/MY_COMMON.json | 334 ++--- snapshots/countries/MY_JHR.json | 374 +++--- snapshots/countries/MY_KDH.json | 388 +++--- snapshots/countries/MY_KTN.json | 532 ++++---- snapshots/countries/MY_KUL.json | 440 +++---- snapshots/countries/MY_LBN.json | 402 +++--- snapshots/countries/MY_MLK.json | 422 +++---- snapshots/countries/MY_NSN.json | 440 +++---- snapshots/countries/MY_PHG.json | 422 +++---- snapshots/countries/MY_PJY.json | 440 +++---- snapshots/countries/MY_PLS.json | 430 +++---- snapshots/countries/MY_PNG.json | 434 +++---- snapshots/countries/MY_PRK.json | 422 +++---- snapshots/countries/MY_SBH.json | 362 +++--- snapshots/countries/MY_SGR.json | 452 +++---- snapshots/countries/MY_SWK.json | 410 +++--- snapshots/countries/MY_TRG.json | 598 ++++----- snapshots/countries/MZ_COMMON.json | 194 +-- snapshots/countries/NA_COMMON.json | 134 +- snapshots/countries/NG_COMMON.json | 238 ++-- snapshots/countries/NZ_AUK.json | 276 ++-- snapshots/countries/NZ_BOP.json | 276 ++-- snapshots/countries/NZ_CAN.json | 276 ++-- snapshots/countries/NZ_CIT.json | 276 ++-- snapshots/countries/NZ_COMMON.json | 276 ++-- snapshots/countries/NZ_GIS.json | 276 ++-- snapshots/countries/NZ_HKB.json | 276 ++-- snapshots/countries/NZ_MBH.json | 276 ++-- snapshots/countries/NZ_MWT.json | 276 ++-- snapshots/countries/NZ_NSN.json | 276 ++-- snapshots/countries/NZ_NTL.json | 276 ++-- snapshots/countries/NZ_OTA.json | 276 ++-- snapshots/countries/NZ_STL.json | 276 ++-- snapshots/countries/NZ_TAS.json | 276 ++-- snapshots/countries/NZ_TKI.json | 276 ++-- snapshots/countries/NZ_WGN.json | 276 ++-- snapshots/countries/NZ_WKO.json | 276 ++-- snapshots/countries/NZ_WTC.json | 276 ++-- snapshots/countries/PA_COMMON.json | 182 +-- snapshots/countries/PG_COMMON.json | 154 +-- snapshots/countries/PR_COMMON.json | 334 ++--- snapshots/countries/RS_COMMON.json | 202 +-- snapshots/countries/SG_COMMON.json | 170 +-- snapshots/countries/SZ_COMMON.json | 72 +- snapshots/countries/TD_COMMON.json | 148 +-- snapshots/countries/TO_COMMON.json | 292 ++--- snapshots/countries/TW_COMMON.json | 142 +-- snapshots/countries/UA_COMMON.json | 218 ++-- snapshots/countries/UK_COMMON.json | 160 +-- snapshots/countries/UK_ENG.json | 160 +-- snapshots/countries/UK_NIR.json | 276 ++-- snapshots/countries/UK_SCT.json | 272 ++-- snapshots/countries/UK_WLS.json | 160 +-- snapshots/countries/UM_COMMON.json | 248 ++-- snapshots/countries/US_AK.json | 306 ++--- snapshots/countries/US_AL.json | 248 ++-- snapshots/countries/US_AR.json | 248 ++-- snapshots/countries/US_AS.json | 334 ++--- snapshots/countries/US_AZ.json | 248 ++-- snapshots/countries/US_CA.json | 286 ++--- snapshots/countries/US_CO.json | 298 +++-- snapshots/countries/US_COMMON.json | 248 ++-- snapshots/countries/US_CT.json | 294 ++--- snapshots/countries/US_DC.json | 284 ++--- snapshots/countries/US_DE.json | 248 ++-- snapshots/countries/US_FL.json | 248 ++-- snapshots/countries/US_GA.json | 248 ++-- snapshots/countries/US_GU.json | 248 ++-- snapshots/countries/US_HI.json | 330 ++--- snapshots/countries/US_IA.json | 294 ++--- snapshots/countries/US_ID.json | 248 ++-- snapshots/countries/US_IL.json | 294 ++--- snapshots/countries/US_IN.json | 248 ++-- snapshots/countries/US_KS.json | 280 ++--- snapshots/countries/US_KY.json | 260 ++-- snapshots/countries/US_LA.json | 256 ++-- snapshots/countries/US_MA.json | 306 ++--- snapshots/countries/US_MD.json | 256 ++-- snapshots/countries/US_ME.json | 248 ++-- snapshots/countries/US_MI.json | 292 ++--- snapshots/countries/US_MN.json | 248 ++-- snapshots/countries/US_MO.json | 306 ++--- snapshots/countries/US_MP.json | 422 +++---- snapshots/countries/US_MS.json | 248 ++-- snapshots/countries/US_MT.json | 248 ++-- snapshots/countries/US_NC.json | 314 ++--- snapshots/countries/US_ND.json | 248 ++-- snapshots/countries/US_NE.json | 248 ++-- snapshots/countries/US_NH.json | 248 ++-- snapshots/countries/US_NJ.json | 294 ++--- snapshots/countries/US_NM.json | 248 ++-- snapshots/countries/US_NV.json | 278 ++-- snapshots/countries/US_NY.json | 294 ++--- snapshots/countries/US_OH.json | 248 ++-- snapshots/countries/US_OK.json | 248 ++-- snapshots/countries/US_OR.json | 248 ++-- snapshots/countries/US_PA.json | 248 ++-- snapshots/countries/US_PR.json | 334 ++--- snapshots/countries/US_RI.json | 248 ++-- snapshots/countries/US_SC.json | 248 ++-- snapshots/countries/US_SD.json | 248 ++-- snapshots/countries/US_TN.json | 248 ++-- snapshots/countries/US_TX.json | 308 ++--- snapshots/countries/US_UM.json | 248 ++-- snapshots/countries/US_UT.json | 306 ++--- snapshots/countries/US_VA.json | 256 ++-- snapshots/countries/US_VI.json | 248 ++-- snapshots/countries/US_VT.json | 306 ++--- snapshots/countries/US_WA.json | 248 ++-- snapshots/countries/US_WI.json | 292 ++--- snapshots/countries/US_WV.json | 306 ++--- snapshots/countries/US_WY.json | 248 ++-- snapshots/countries/VI_COMMON.json | 248 ++-- snapshots/countries/VN_COMMON.json | 260 ++-- snapshots/countries/VU_COMMON.json | 218 ++-- snapshots/countries/ZA_COMMON.json | 146 +-- snapshots/countries/ZM_COMMON.json | 188 +-- snapshots/countries/ZW_COMMON.json | 138 +- snapshots/financial/NYSE.json | 200 +-- snapshots/financial/XNYS.json | 200 +-- tests/countries/test_albania.py | 20 +- tests/countries/test_american_samoa.py | 2 +- tests/countries/test_angola.py | 44 +- tests/countries/test_argentina.py | 16 +- tests/countries/test_australia.py | 18 +- tests/countries/test_azerbaijan.py | 8 +- tests/countries/test_bahamas.py | 16 +- tests/countries/test_barbados.py | 24 +- tests/countries/test_belize.py | 38 +- tests/countries/test_bolivia.py | 28 +- tests/countries/test_brunei.py | 26 +- tests/countries/test_bulgaria.py | 8 +- tests/countries/test_burkina_faso.py | 6 +- tests/countries/test_cameroon.py | 4 +- tests/countries/test_canada.py | 34 +- tests/countries/test_chad.py | 2 +- tests/countries/test_china.py | 10 +- tests/countries/test_colombia.py | 36 +- tests/countries/test_costa_rica.py | 26 +- tests/countries/test_cuba.py | 4 +- tests/countries/test_ecuador.py | 36 +- tests/countries/test_greece.py | 2 +- tests/countries/test_ireland.py | 6 +- tests/countries/test_isle_of_man.py | 6 +- tests/countries/test_israel.py | 4 +- tests/countries/test_jamaica.py | 4 +- tests/countries/test_malaysia.py | 8 +- tests/countries/test_monaco.py | 8 +- tests/countries/test_montenegro.py | 12 +- tests/countries/test_mozambique.py | 8 +- tests/countries/test_new_zealand.py | 12 +- tests/countries/test_panama.py | 8 +- tests/countries/test_papua_new_guinea.py | 16 +- tests/countries/test_puerto_rico.py | 2 +- tests/countries/test_serbia.py | 4 +- tests/countries/test_singapore.py | 28 +- tests/countries/test_taiwan.py | 2 +- tests/countries/test_tonga.py | 52 +- tests/countries/test_ukraine.py | 10 +- tests/countries/test_united_kingdom.py | 20 +- tests/countries/test_united_states.py | 104 +- tests/countries/test_vanuatu.py | 26 +- tests/countries/test_zambia.py | 4 +- tests/countries/test_zimbabwe.py | 4 +- tests/financial/test_ny_stock_exchange.py | 2 +- tests/test_holiday_base.py | 6 +- 368 files changed, 26804 insertions(+), 26754 deletions(-) diff --git a/docs/source/examples.rst b/docs/source/examples.rst index f007686ce..2d6c084c8 100644 --- a/docs/source/examples.rst +++ b/docs/source/examples.rst @@ -109,7 +109,7 @@ will include January 2nd, 2012 as a holiday: >>> date(2012, 1, 2) in us_holidays True >>> us_holidays.get(date(2012 ,1, 2)) - "New Year's Day (Observed)" + "New Year's Day (observed)" The values of :py:attr:`observed` and :py:attr:`expand` can be changed on the fly and the holiday list will be adjusted accordingly: diff --git a/holidays/countries/albania.py b/holidays/countries/albania.py index d54ee8abf..a5b81dac2 100644 --- a/holidays/countries/albania.py +++ b/holidays/countries/albania.py @@ -29,7 +29,7 @@ class Albania( """ country = "AL" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/angola.py b/holidays/countries/angola.py index 5fae52c9e..950355619 100644 --- a/holidays/countries/angola.py +++ b/holidays/countries/angola.py @@ -43,8 +43,8 @@ class Angola(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Stat country = "AO" default_language = "pt_AO" supported_languages = ("en_US", "pt_AO", "uk") - # %s (Observed). - observed_label = tr("%s (Ponte)") + # %s (observed). + observed_label = tr("%s (ponte)") def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/argentina.py b/holidays/countries/argentina.py index 3a39940cb..e2a242acb 100644 --- a/holidays/countries/argentina.py +++ b/holidays/countries/argentina.py @@ -70,8 +70,8 @@ class Argentina(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, S country = "AR" default_language = "es" supported_languages = ("en_US", "es", "uk") - # %s (Observed). - observed_label = tr("%s (Observado)") + # %s (observed). + observed_label = tr("%s (observado)") def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/australia.py b/holidays/countries/australia.py index 423571ec9..bb1681ef2 100644 --- a/holidays/countries/australia.py +++ b/holidays/countries/australia.py @@ -26,7 +26,7 @@ class Australia(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, S """ country = "AU" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" subdivisions = ("ACT", "NSW", "NT", "QLD", "SA", "TAS", "VIC", "WA") @property diff --git a/holidays/countries/azerbaijan.py b/holidays/countries/azerbaijan.py index 30b6a9219..12928d92b 100644 --- a/holidays/countries/azerbaijan.py +++ b/holidays/countries/azerbaijan.py @@ -32,7 +32,7 @@ class Azerbaijan(ObservedHolidayBase, InternationalHolidays, IslamicHolidays, St default_language = "az" # Estimated label. estimated_label = tr("%s (təxmini)") - # %s (Observed). + # %s (observed). observed_label = tr("%s (müşahidə olunur)") supported_categories = (PUBLIC, WORKDAY) supported_languages = ("az", "en_US", "uk") diff --git a/holidays/countries/bahamas.py b/holidays/countries/bahamas.py index aefe3dd7c..48d6e137c 100644 --- a/holidays/countries/bahamas.py +++ b/holidays/countries/bahamas.py @@ -37,7 +37,7 @@ class Bahamas(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Sta """ country = "BS" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) @@ -53,9 +53,9 @@ def _populate_public_holidays(self): # New Year's Day. # Pre-2012 Observance: - # - If TUE, New Year's Day (Observed) prev MON. - # - If WED or THU, New Year's Day (Observed) next FRI. - # 2012 and beyond Observance: If SUN, New Year's Day (Observed) next MON (not for SAT). + # - If TUE, New Year's Day (observed) prev MON. + # - If WED or THU, New Year's Day (observed) next FRI. + # 2012 and beyond Observance: If SUN, New Year's Day (observed) next MON (not for SAT). self._add_observed( self._add_new_years_day("New Year's Day"), rule=SUN_TO_NEXT_MON @@ -93,8 +93,8 @@ def _populate_public_holidays(self): # Known as "Discovery Day" prior to 2013, with its date fixed as Oct 12 annually. # Got its name changed on Oct 11, 2013 under Majority Rule (Public Holiday) Act 2013. # Pre-2013 Observance: - # - If TUE, Discovery Day (Observed) prev MON. - # - If WED or THU, Discovery Day (Observed) next FRI. + # - If TUE, Discovery Day (observed) prev MON. + # - If WED or THU, Discovery Day (observed) next FRI. if self._year >= 2013: self._add_holiday_2nd_mon_of_oct("National Heroes Day") else: @@ -105,9 +105,9 @@ def _populate_public_holidays(self): # Christmas Holidays Exception Rules. # Observance Exception: - # FRI-SAT -> Boxing Day (Observed) next MON. - # SAT-SUN -> Boxing Day (Observed) next MON. - # SUN-MON -> Christmas Day (Observed) next TUE. + # FRI-SAT -> Boxing Day (observed) next MON. + # SAT-SUN -> Boxing Day (observed) next MON. + # SUN-MON -> Christmas Day (observed) next TUE. # Christmas Day. self._add_observed(self._add_christmas_day("Christmas Day"), rule=SUN_TO_NEXT_TUE) diff --git a/holidays/countries/barbados.py b/holidays/countries/barbados.py index 8625eab42..edcae8ece 100644 --- a/holidays/countries/barbados.py +++ b/holidays/countries/barbados.py @@ -31,7 +31,7 @@ class Barbados(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, St """ country = "BB" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/belize.py b/holidays/countries/belize.py index 1c992cec3..7d8b2d1a1 100644 --- a/holidays/countries/belize.py +++ b/holidays/countries/belize.py @@ -28,7 +28,7 @@ class Belize(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): """ country = "BZ" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/bolivia.py b/holidays/countries/bolivia.py index daa01ea14..50e76e427 100644 --- a/holidays/countries/bolivia.py +++ b/holidays/countries/bolivia.py @@ -39,8 +39,8 @@ class Bolivia(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): country = "BO" default_language = "es" supported_languages = ("en_US", "es", "uk") - # %s (Observed). - observed_label = tr("%s (Observado)") + # %s (observed). + observed_label = tr("%s (observado)") subdivisions = ( "B", # El Beni "C", # Cochabamba diff --git a/holidays/countries/bosnia_and_herzegovina.py b/holidays/countries/bosnia_and_herzegovina.py index b4c90e0cc..14542b681 100644 --- a/holidays/countries/bosnia_and_herzegovina.py +++ b/holidays/countries/bosnia_and_herzegovina.py @@ -57,7 +57,7 @@ class BosniaAndHerzegovina( country = "BA" default_language = "bs" supported_languages = ("bs", "en_US", "sr", "uk") - # %s (Observed). + # %s (observed). observed_label = tr("%s (preneseno)") subdivisions = ( "BIH", # Federacija Bosne i Hercegovine diff --git a/holidays/countries/botswana.py b/holidays/countries/botswana.py index 08a70d128..bbfb92393 100644 --- a/holidays/countries/botswana.py +++ b/holidays/countries/botswana.py @@ -25,7 +25,7 @@ class Botswana(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, St """ country = "BW" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/brunei.py b/holidays/countries/brunei.py index d47a9732d..d469282ea 100644 --- a/holidays/countries/brunei.py +++ b/holidays/countries/brunei.py @@ -68,7 +68,7 @@ class Brunei( country = "BN" default_language = "ms" estimated_label = tr("%s (anggaran)") - observed_label = tr("%s - Diperhatikan") + observed_label = tr("%s (diperhatikan)") supported_languages = ("en_US", "ms", "th") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/bulgaria.py b/holidays/countries/bulgaria.py index d913a7ce8..c3f0a32eb 100644 --- a/holidays/countries/bulgaria.py +++ b/holidays/countries/bulgaria.py @@ -44,7 +44,7 @@ class Bulgaria(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): country = "BG" default_language = "bg" - # %s (Observed). + # %s (observed). observed_label = tr("%s (почивен ден)") supported_categories = (PUBLIC, SCHOOL) supported_languages = ("bg", "en_US", "uk") diff --git a/holidays/countries/burkina_faso.py b/holidays/countries/burkina_faso.py index e6ad0010a..3b53a9392 100644 --- a/holidays/countries/burkina_faso.py +++ b/holidays/countries/burkina_faso.py @@ -22,7 +22,7 @@ class BurkinaFaso(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, """ country = "BF" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/burundi.py b/holidays/countries/burundi.py index e682adfa6..685517c10 100644 --- a/holidays/countries/burundi.py +++ b/holidays/countries/burundi.py @@ -26,7 +26,7 @@ class Burundi(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Isl """ country = "BI" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/cameroon.py b/holidays/countries/cameroon.py index 35c5c4068..0870f5ee0 100644 --- a/holidays/countries/cameroon.py +++ b/holidays/countries/cameroon.py @@ -31,7 +31,7 @@ class Cameroon( """ country = "CM" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/canada.py b/holidays/countries/canada.py index c3ce2f0d8..6733549b3 100644 --- a/holidays/countries/canada.py +++ b/holidays/countries/canada.py @@ -41,8 +41,8 @@ class Canada(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Stat country = "CA" default_language = "en_CA" - # %s (Observed). - observed_label = tr("%s (Observed)") + # %s (observed). + observed_label = tr("%s (observed)") supported_categories = (GOVERNMENT, OPTIONAL, PUBLIC) subdivisions = ( "AB", diff --git a/holidays/countries/chad.py b/holidays/countries/chad.py index e8e90c2b3..eeeb1e910 100644 --- a/holidays/countries/chad.py +++ b/holidays/countries/chad.py @@ -30,7 +30,7 @@ class Chad( """ country = "TD" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/china.py b/holidays/countries/china.py index 5ecb145b2..fafccc842 100644 --- a/holidays/countries/china.py +++ b/holidays/countries/china.py @@ -60,7 +60,7 @@ class China(ObservedHolidayBase, ChineseCalendarHolidays, InternationalHolidays, """ country = "CN" - # %s (Observed). + # %s (observed). observed_label = tr("%s(观察日)") supported_categories = (PUBLIC, HALF_DAY) default_language = "zh_CN" diff --git a/holidays/countries/colombia.py b/holidays/countries/colombia.py index 1c36cbbab..9a084ec7f 100644 --- a/holidays/countries/colombia.py +++ b/holidays/countries/colombia.py @@ -40,8 +40,8 @@ class Colombia(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): country = "CO" default_language = "es" - # %s (Observed). - observed_label = tr("%s (Observado)") + # %s (observed). + observed_label = tr("%s (observado)") supported_languages = ("en_US", "es", "uk") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/costa_rica.py b/holidays/countries/costa_rica.py index 39a686510..2afcd8146 100644 --- a/holidays/countries/costa_rica.py +++ b/holidays/countries/costa_rica.py @@ -34,8 +34,8 @@ class CostaRica(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): country = "CR" default_language = "es" - # %s (Observed). - observed_label = tr("%s (Observado)") + # %s (observed). + observed_label = tr("%s (observado)") supported_languages = ("en_US", "es", "uk") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/cuba.py b/holidays/countries/cuba.py index 16a1bfb06..61f815899 100644 --- a/holidays/countries/cuba.py +++ b/holidays/countries/cuba.py @@ -32,8 +32,8 @@ class Cuba(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): country = "CU" default_language = "es" - # %s Observed. - observed_label = tr("%s (Observado)") + # %s observed. + observed_label = tr("%s (observado)") supported_languages = ("en_US", "es", "uk") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/ecuador.py b/holidays/countries/ecuador.py index 893a8484e..ecb5d3dac 100644 --- a/holidays/countries/ecuador.py +++ b/holidays/countries/ecuador.py @@ -31,8 +31,8 @@ class Ecuador(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): country = "EC" default_language = "es" - # %s (Observed). - observed_label = tr("%s (Observado)") + # %s (observed). + observed_label = tr("%s (observado)") supported_languages = ("en_US", "es", "uk") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/eswatini.py b/holidays/countries/eswatini.py index cf758e3b5..baf115895 100644 --- a/holidays/countries/eswatini.py +++ b/holidays/countries/eswatini.py @@ -23,7 +23,7 @@ class Eswatini(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, St """ country = "SZ" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/greece.py b/holidays/countries/greece.py index 2c481d8e8..ee3d08710 100644 --- a/holidays/countries/greece.py +++ b/holidays/countries/greece.py @@ -27,7 +27,7 @@ class Greece(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): country = "GR" default_language = "el" - # %s (Observed). + # %s (observed). observed_label = tr("%s (παρατηρήθηκε)") supported_categories = (HALF_DAY, PUBLIC) supported_languages = ("el", "en_US", "uk") diff --git a/holidays/countries/ireland.py b/holidays/countries/ireland.py index 1cc18622a..9ef6cf781 100644 --- a/holidays/countries/ireland.py +++ b/holidays/countries/ireland.py @@ -26,7 +26,7 @@ class Ireland(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Sta """ country = "IE" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/israel.py b/holidays/countries/israel.py index 8d31032f6..3561a6a94 100644 --- a/holidays/countries/israel.py +++ b/holidays/countries/israel.py @@ -49,7 +49,7 @@ class Israel(ObservedHolidayBase): country = "IL" default_language = "he" - # %s (Observed). + # %s (observed). observed_label = tr("(נצפה) %s") supported_categories = (OPTIONAL, PUBLIC, SCHOOL) supported_languages = ("en_US", "he", "uk") diff --git a/holidays/countries/jamaica.py b/holidays/countries/jamaica.py index 19d811d24..681449a38 100644 --- a/holidays/countries/jamaica.py +++ b/holidays/countries/jamaica.py @@ -25,7 +25,7 @@ class Jamaica(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): """ country = "JM" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/kazakhstan.py b/holidays/countries/kazakhstan.py index 8f1da5ba8..ffdb8948a 100644 --- a/holidays/countries/kazakhstan.py +++ b/holidays/countries/kazakhstan.py @@ -24,7 +24,7 @@ class Kazakhstan(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, """ country = "KZ" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self, JULIAN_CALENDAR) diff --git a/holidays/countries/kenya.py b/holidays/countries/kenya.py index 99622613b..e20ead946 100644 --- a/holidays/countries/kenya.py +++ b/holidays/countries/kenya.py @@ -22,7 +22,7 @@ class Kenya(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Stati """ country = "KE" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/latvia.py b/holidays/countries/latvia.py index fa7645106..fe7a9986a 100644 --- a/holidays/countries/latvia.py +++ b/holidays/countries/latvia.py @@ -26,7 +26,7 @@ class Latvia(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Stat country = "LV" default_language = "lv" - # %s (Observed). + # %s (observed). observed_label = tr("%s (brīvdiena)") supported_languages = ("en_US", "lv", "uk") diff --git a/holidays/countries/malawi.py b/holidays/countries/malawi.py index fea11e0c4..f2be7eda0 100644 --- a/holidays/countries/malawi.py +++ b/holidays/countries/malawi.py @@ -24,7 +24,7 @@ class Malawi(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): """ country = "MW" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/malaysia.py b/holidays/countries/malaysia.py index c86c1b250..2a40a5301 100644 --- a/holidays/countries/malaysia.py +++ b/holidays/countries/malaysia.py @@ -59,7 +59,7 @@ class Malaysia( StaticHolidays, ): country = "MY" - observed_label = "%s [In lieu]" + observed_label = "%s (in lieu)" subdivisions = ( "JHR", "KDH", diff --git a/holidays/countries/monaco.py b/holidays/countries/monaco.py index 663f2410e..ac22fcf61 100644 --- a/holidays/countries/monaco.py +++ b/holidays/countries/monaco.py @@ -24,8 +24,8 @@ class Monaco(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Stat country = "MC" default_language = "fr" - # %s (Observed). - observed_label = tr("%s (Observé)") + # %s (observed). + observed_label = tr("%s (observé)") supported_languages = ("en_US", "fr", "uk") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/montenegro.py b/holidays/countries/montenegro.py index 70f0d31cf..8a13fba26 100644 --- a/holidays/countries/montenegro.py +++ b/holidays/countries/montenegro.py @@ -24,7 +24,7 @@ class Montenegro(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): """ country = "ME" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self, calendar=JULIAN_CALENDAR) diff --git a/holidays/countries/mozambique.py b/holidays/countries/mozambique.py index deff38ff7..8176eed5d 100644 --- a/holidays/countries/mozambique.py +++ b/holidays/countries/mozambique.py @@ -18,8 +18,8 @@ class Mozambique(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): country = "MZ" default_language = "pt_MZ" - # %s (Observed). - observed_label = tr("%s (Ponte)") + # %s (observed). + observed_label = tr("%s (ponte)") supported_languages = ("en_US", "pt_MZ", "uk") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/namibia.py b/holidays/countries/namibia.py index e34fb210d..37c4d1d8e 100644 --- a/holidays/countries/namibia.py +++ b/holidays/countries/namibia.py @@ -27,8 +27,8 @@ class Namibia(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Sta """ country = "NA" - # %s (Observed). - observed_label = "%s (Observed)" + # %s (observed). + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/new_zealand.py b/holidays/countries/new_zealand.py index 741d4b3e1..1b126bd23 100644 --- a/holidays/countries/new_zealand.py +++ b/holidays/countries/new_zealand.py @@ -24,7 +24,7 @@ class NewZealand(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, StaticHolidays): country = "NZ" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" subdivisions = ( # https://en.wikipedia.org/wiki/ISO_3166-2:NZ "AUK", # Auckland / Tāmaki-makaurau diff --git a/holidays/countries/nigeria.py b/holidays/countries/nigeria.py index 9b09a0a5d..e719d353e 100644 --- a/holidays/countries/nigeria.py +++ b/holidays/countries/nigeria.py @@ -27,7 +27,7 @@ class Nigeria( """ country = "NG" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/panama.py b/holidays/countries/panama.py index 58fc13e32..a69e277e9 100644 --- a/holidays/countries/panama.py +++ b/holidays/countries/panama.py @@ -21,7 +21,7 @@ class Panama(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): """ country = "PA" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/papua_new_guinea.py b/holidays/countries/papua_new_guinea.py index ecfa07f0d..4acbf9a30 100644 --- a/holidays/countries/papua_new_guinea.py +++ b/holidays/countries/papua_new_guinea.py @@ -40,7 +40,7 @@ class PapuaNewGuinea( """ country = "PG" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/saudi_arabia.py b/holidays/countries/saudi_arabia.py index 7158572b7..80b614945 100644 --- a/holidays/countries/saudi_arabia.py +++ b/holidays/countries/saudi_arabia.py @@ -47,7 +47,7 @@ class SaudiArabia(ObservedHolidayBase, IslamicHolidays, StaticHolidays): default_language = "ar" # Estimated label. estimated_label = tr("(تقدير) %s") - # %s (Observed). + # %s (observed). observed_label = tr("(ملاحظة) %s") supported_languages = ("ar", "en_US") diff --git a/holidays/countries/serbia.py b/holidays/countries/serbia.py index 80efb1f76..0dff79136 100644 --- a/holidays/countries/serbia.py +++ b/holidays/countries/serbia.py @@ -26,7 +26,7 @@ class Serbia(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): country = "RS" default_language = "sr" - # %s (Observed). + # %s (observed). observed_label = tr("%s (слободан дан)") supported_languages = ("en_US", "sr") diff --git a/holidays/countries/singapore.py b/holidays/countries/singapore.py index 53e6b6954..adfe0494a 100644 --- a/holidays/countries/singapore.py +++ b/holidays/countries/singapore.py @@ -39,7 +39,7 @@ class Singapore( StaticHolidays, ): country = "SG" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): """ diff --git a/holidays/countries/south_africa.py b/holidays/countries/south_africa.py index 9569319c3..c09e6072a 100644 --- a/holidays/countries/south_africa.py +++ b/holidays/countries/south_africa.py @@ -22,7 +22,7 @@ class SouthAfrica(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, """ country = "ZA" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/taiwan.py b/holidays/countries/taiwan.py index 7e043ee3f..b13d29a14 100644 --- a/holidays/countries/taiwan.py +++ b/holidays/countries/taiwan.py @@ -32,7 +32,7 @@ class Taiwan(ObservedHolidayBase, ChineseCalendarHolidays, InternationalHolidays """ country = "TW" - # %s (Observed). + # %s (observed). observed_label = tr("%s (慶祝)") default_language = "zh_TW" supported_languages = ("en_US", "th", "zh_CN", "zh_TW") diff --git a/holidays/countries/tonga.py b/holidays/countries/tonga.py index 95eab1335..61738d5ac 100644 --- a/holidays/countries/tonga.py +++ b/holidays/countries/tonga.py @@ -71,8 +71,8 @@ class Tonga(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Stati country = "TO" default_language = "to" - # %s (Observed). - observed_label = tr("%s (Fakatokanga'i)") + # %s (observed). + observed_label = tr("%s (fakatokanga'i)") supported_languages = ("en_US", "to") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/ukraine.py b/holidays/countries/ukraine.py index 7cfb80add..65cf290a7 100644 --- a/holidays/countries/ukraine.py +++ b/holidays/countries/ukraine.py @@ -42,7 +42,7 @@ class Ukraine(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Sta country = "UA" default_language = "uk" - # %s (Observed). + # %s (observed). observed_label = tr("%s (вихідний)") supported_languages = ("ar", "en_US", "uk") diff --git a/holidays/countries/united_kingdom.py b/holidays/countries/united_kingdom.py index cc8a7bfcc..f158607ba 100644 --- a/holidays/countries/united_kingdom.py +++ b/holidays/countries/united_kingdom.py @@ -30,7 +30,7 @@ class UnitedKingdom(ObservedHolidayBase, ChristianHolidays, InternationalHoliday """ country = "GB" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" subdivisions: Union[Tuple[()], Tuple[str, ...]] = ( "ENG", # England "NIR", # Northern Ireland diff --git a/holidays/countries/united_states.py b/holidays/countries/united_states.py index 204cf6ee5..0a7b3e114 100644 --- a/holidays/countries/united_states.py +++ b/holidays/countries/united_states.py @@ -42,7 +42,7 @@ class UnitedStates(ObservedHolidayBase, ChristianHolidays, InternationalHolidays """ country = "US" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" subdivisions: Union[Tuple[()], Tuple[str, ...]] = ( "AK", # Alaska. "AL", # Alabama. diff --git a/holidays/countries/vanuatu.py b/holidays/countries/vanuatu.py index cf13d83d9..4bace4115 100644 --- a/holidays/countries/vanuatu.py +++ b/holidays/countries/vanuatu.py @@ -22,7 +22,7 @@ class Vanuatu(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Sta """ country = "VU" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/vietnam.py b/holidays/countries/vietnam.py index 6419f7a26..7e92170b5 100644 --- a/holidays/countries/vietnam.py +++ b/holidays/countries/vietnam.py @@ -21,7 +21,7 @@ class Vietnam(ObservedHolidayBase, ChineseCalendarHolidays, InternationalHoliday """ country = "VN" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChineseCalendarHolidays.__init__(self) diff --git a/holidays/countries/zambia.py b/holidays/countries/zambia.py index 053473654..8c96c3a82 100644 --- a/holidays/countries/zambia.py +++ b/holidays/countries/zambia.py @@ -23,7 +23,7 @@ class Zambia(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, Stat """ country = "ZM" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/countries/zimbabwe.py b/holidays/countries/zimbabwe.py index 6f5d6b7e7..7bd950095 100644 --- a/holidays/countries/zimbabwe.py +++ b/holidays/countries/zimbabwe.py @@ -20,7 +20,7 @@ class Zimbabwe(ObservedHolidayBase, ChristianHolidays, InternationalHolidays): """ country = "ZW" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/financial/ny_stock_exchange.py b/holidays/financial/ny_stock_exchange.py index b8d138f03..cd3c00a1b 100644 --- a/holidays/financial/ny_stock_exchange.py +++ b/holidays/financial/ny_stock_exchange.py @@ -30,7 +30,7 @@ class NewYorkStockExchange( """ market = "NYSE" - observed_label = "%s (Observed)" + observed_label = "%s (observed)" def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) diff --git a/holidays/holiday_base.py b/holidays/holiday_base.py index 0574db3fa..8ff17af65 100644 --- a/holidays/holiday_base.py +++ b/holidays/holiday_base.py @@ -144,7 +144,7 @@ class HolidayBase(Dict[date, str]): (datetime.date(2020, 2, 17), "Washington's Birthday") (datetime.date(2020, 5, 25), 'Memorial Day') (datetime.date(2020, 7, 4), 'Independence Day') - (datetime.date(2020, 7, 3), 'Independence Day (Observed)') + (datetime.date(2020, 7, 3), 'Independence Day (observed)') (datetime.date(2020, 9, 7), 'Labor Day') (datetime.date(2020, 10, 12), 'Columbus Day') (datetime.date(2020, 11, 11), 'Veterans Day') diff --git a/holidays/locale/ar/LC_MESSAGES/CA.po b/holidays/locale/ar/LC_MESSAGES/CA.po index e8067485d..91040b520 100644 --- a/holidays/locale/ar/LC_MESSAGES/CA.po +++ b/holidays/locale/ar/LC_MESSAGES/CA.po @@ -16,9 +16,9 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observed)" +msgid "%s (observed)" msgstr "(تمت ملاحظته) %s" #. New Year's Day. diff --git a/holidays/locale/ar/LC_MESSAGES/SA.po b/holidays/locale/ar/LC_MESSAGES/SA.po index 7316b0d37..966418cc0 100644 --- a/holidays/locale/ar/LC_MESSAGES/SA.po +++ b/holidays/locale/ar/LC_MESSAGES/SA.po @@ -21,7 +21,7 @@ msgstr "" msgid "(تقدير) %s" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format msgid "(ملاحظة) %s" msgstr "" diff --git a/holidays/locale/ar/LC_MESSAGES/UA.po b/holidays/locale/ar/LC_MESSAGES/UA.po index eaeb6b0ea..56292748c 100644 --- a/holidays/locale/ar/LC_MESSAGES/UA.po +++ b/holidays/locale/ar/LC_MESSAGES/UA.po @@ -25,7 +25,7 @@ msgstr "%d/%m/%Y" msgid "Вихідний день (перенесено з %s)" msgstr "يوم عطلة (استبدل من %s)" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (вихідний)" msgstr "(يوم عطلة) %s" diff --git a/holidays/locale/az/LC_MESSAGES/AZ.po b/holidays/locale/az/LC_MESSAGES/AZ.po index a3038865d..d24d745e6 100644 --- a/holidays/locale/az/LC_MESSAGES/AZ.po +++ b/holidays/locale/az/LC_MESSAGES/AZ.po @@ -21,7 +21,7 @@ msgstr "" msgid "%s (təxmini)" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (müşahidə olunur)" msgstr "" diff --git a/holidays/locale/bg/LC_MESSAGES/BG.po b/holidays/locale/bg/LC_MESSAGES/BG.po index 4e77e0142..3395775ca 100644 --- a/holidays/locale/bg/LC_MESSAGES/BG.po +++ b/holidays/locale/bg/LC_MESSAGES/BG.po @@ -66,7 +66,7 @@ msgstr "" msgid "Рождество Христово" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (почивен ден)" msgstr "" diff --git a/holidays/locale/bs/LC_MESSAGES/BA.po b/holidays/locale/bs/LC_MESSAGES/BA.po index 66c6d3e29..1171efe73 100644 --- a/holidays/locale/bs/LC_MESSAGES/BA.po +++ b/holidays/locale/bs/LC_MESSAGES/BA.po @@ -16,7 +16,7 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (preneseno)" msgstr "" diff --git a/holidays/locale/el/LC_MESSAGES/GR.po b/holidays/locale/el/LC_MESSAGES/GR.po index c7efcbade..e53c504db 100644 --- a/holidays/locale/el/LC_MESSAGES/GR.po +++ b/holidays/locale/el/LC_MESSAGES/GR.po @@ -48,7 +48,7 @@ msgstr "" msgid "Εργατική Πρωτομαγιά" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (παρατηρήθηκε)" msgstr "" diff --git a/holidays/locale/en_CA/LC_MESSAGES/CA.po b/holidays/locale/en_CA/LC_MESSAGES/CA.po index d923a0549..e4b42d3b4 100644 --- a/holidays/locale/en_CA/LC_MESSAGES/CA.po +++ b/holidays/locale/en_CA/LC_MESSAGES/CA.po @@ -16,9 +16,9 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observed)" +msgid "%s (observed)" msgstr "" #. New Year's Day. diff --git a/holidays/locale/en_US/LC_MESSAGES/AO.po b/holidays/locale/en_US/LC_MESSAGES/AO.po index 382f9f183..35dbfdf6f 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AO.po +++ b/holidays/locale/en_US/LC_MESSAGES/AO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-07-19 18:14+0300\n" "PO-Revision-Date: 2023-07-19 18:20+0300\n" "Last-Translator: ~Jhellico \n" @@ -20,9 +20,9 @@ msgstr "" msgid "Dia de eleições gerais" msgstr "General Election Day" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Ponte)" +msgid "%s (ponte)" msgstr "Day off for %s" #. New Year's Day. diff --git a/holidays/locale/en_US/LC_MESSAGES/AR.po b/holidays/locale/en_US/LC_MESSAGES/AR.po index ecf07494c..38f9a793d 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AR.po +++ b/holidays/locale/en_US/LC_MESSAGES/AR.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:39+0700\n" "PO-Revision-Date: 2023-05-03 18:36-0700\n" "Last-Translator: Arkadii Yakovets \n" @@ -122,7 +122,7 @@ msgstr "Columbus day" msgid "Día de la Soberanía Nacional" msgstr "National Sovereignty Day" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" -msgstr "%s (Observed)" +msgid "%s (observado)" +msgstr "%s (observed)" diff --git a/holidays/locale/en_US/LC_MESSAGES/AZ.po b/holidays/locale/en_US/LC_MESSAGES/AZ.po index e195ea25c..1d0122ec7 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/AZ.po @@ -21,10 +21,10 @@ msgstr "" msgid "%s (təxmini)" msgstr "%s (estimated)" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (müşahidə olunur)" -msgstr "%s (Observed)" +msgstr "%s (observed)" #. New Year's Day. msgid "Yeni il bayramı" diff --git a/holidays/locale/en_US/LC_MESSAGES/BA.po b/holidays/locale/en_US/LC_MESSAGES/BA.po index 6d8ebe842..68cec48cd 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BA.po +++ b/holidays/locale/en_US/LC_MESSAGES/BA.po @@ -16,10 +16,10 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (preneseno)" -msgstr "%s (Observed)" +msgstr "%s (observed)" #. Orthodox Good Friday. msgid "Veliki petak (Pravoslavni)" diff --git a/holidays/locale/en_US/LC_MESSAGES/BG.po b/holidays/locale/en_US/LC_MESSAGES/BG.po index f40f177ef..494cec947 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BG.po +++ b/holidays/locale/en_US/LC_MESSAGES/BG.po @@ -66,10 +66,10 @@ msgstr "Christmas Eve" msgid "Рождество Христово" msgstr "Christmas Day" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (почивен ден)" -msgstr "%s (Observed)" +msgstr "%s (observed)" #. National Awakening Day. msgid "Ден на народните будители" diff --git a/holidays/locale/en_US/LC_MESSAGES/BN.po b/holidays/locale/en_US/LC_MESSAGES/BN.po index dcdc3868a..a2fd191ae 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BN.po +++ b/holidays/locale/en_US/LC_MESSAGES/BN.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:37+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" @@ -24,8 +24,8 @@ msgid "%s (anggaran)" msgstr "%s (estimated)" #, c-format -msgid "%s - Diperhatikan" -msgstr "%s (Observed)" +msgid "%s (diperhatikan)" +msgstr "%s (observed)" #. New Year's Day msgid "Awal Tahun Masihi" diff --git a/holidays/locale/en_US/LC_MESSAGES/BO.po b/holidays/locale/en_US/LC_MESSAGES/BO.po index 383b9ef56..7c054556b 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BO.po +++ b/holidays/locale/en_US/LC_MESSAGES/BO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-07-22 18:47+0300\n" "PO-Revision-Date: 2023-07-22 18:51+0300\n" "Last-Translator: ~Jhellico \n" @@ -16,10 +16,10 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" -msgstr "%s (Observed)" +msgid "%s (observado)" +msgstr "%s (observed)" #. New Year's Day. msgid "Año Nuevo" diff --git a/holidays/locale/en_US/LC_MESSAGES/CA.po b/holidays/locale/en_US/LC_MESSAGES/CA.po index dceaf0e98..fddb9f61e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CA.po +++ b/holidays/locale/en_US/LC_MESSAGES/CA.po @@ -16,10 +16,10 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observed)" -msgstr "%s (Observed)" +msgid "%s (observed)" +msgstr "%s (observed)" #. New Year's Day. msgid "New Year's Day" diff --git a/holidays/locale/en_US/LC_MESSAGES/CN.po b/holidays/locale/en_US/LC_MESSAGES/CN.po index 56cda3ffe..80f19a6df 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CN.po +++ b/holidays/locale/en_US/LC_MESSAGES/CN.po @@ -16,10 +16,10 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s(观察日)" -msgstr "%s (Observed)" +msgstr "%s (observed)" #. New Year's Day. msgid "元旦" diff --git a/holidays/locale/en_US/LC_MESSAGES/CO.po b/holidays/locale/en_US/LC_MESSAGES/CO.po index dbf11fd47..9defe414e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CO.po +++ b/holidays/locale/en_US/LC_MESSAGES/CO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-02-19 17:09+0200\n" "PO-Revision-Date: 2023-05-03 18:38-0700\n" "Last-Translator: Arkadii Yakovets \n" @@ -88,7 +88,7 @@ msgstr "Corpus Christi" msgid "Sagrado Corazón" msgstr "Sacred Heart" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" -msgstr "%s (Observed)" +msgid "%s (observado)" +msgstr "%s (observed)" diff --git a/holidays/locale/en_US/LC_MESSAGES/CR.po b/holidays/locale/en_US/LC_MESSAGES/CR.po index b10592fca..c5be2c8d4 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CR.po +++ b/holidays/locale/en_US/LC_MESSAGES/CR.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.26\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-22 22:55+0200\n" "PO-Revision-Date: 2023-05-03 18:39-0700\n" "Last-Translator: Arkadii Yakovets \n" @@ -16,10 +16,10 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.3\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" -msgstr "%s (Observed)" +msgid "%s (observado)" +msgstr "%s (observed)" #. New Year's Day. msgid "Año Nuevo" diff --git a/holidays/locale/en_US/LC_MESSAGES/CU.po b/holidays/locale/en_US/LC_MESSAGES/CU.po index 32c384eb6..1b3d70fe3 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CU.po +++ b/holidays/locale/en_US/LC_MESSAGES/CU.po @@ -16,10 +16,10 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.2.2\n" -#. %s Observed. +#. %s observed. #, c-format -msgid "%s (Observado)" -msgstr "%s (Observed)" +msgid "%s (observado)" +msgstr "%s (observed)" #. Liberation Day. msgid "Triunfo de la Revolución" diff --git a/holidays/locale/en_US/LC_MESSAGES/EC.po b/holidays/locale/en_US/LC_MESSAGES/EC.po index 1e6ed6d6c..06cce69d1 100644 --- a/holidays/locale/en_US/LC_MESSAGES/EC.po +++ b/holidays/locale/en_US/LC_MESSAGES/EC.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-04-02 18:54+0300\n" "PO-Revision-Date: 2023-04-02 18:58+0300\n" "Last-Translator: ~Jhellico \n" @@ -56,7 +56,7 @@ msgstr "Independence of Cuenca" msgid "Día de Navidad" msgstr "Christmas Day" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" -msgstr "%s (Observed)" +msgid "%s (observado)" +msgstr "%s (observed)" diff --git a/holidays/locale/en_US/LC_MESSAGES/GR.po b/holidays/locale/en_US/LC_MESSAGES/GR.po index c008d0c56..6ac99caa9 100644 --- a/holidays/locale/en_US/LC_MESSAGES/GR.po +++ b/holidays/locale/en_US/LC_MESSAGES/GR.po @@ -48,10 +48,10 @@ msgstr "Easter Monday" msgid "Εργατική Πρωτομαγιά" msgstr "Labor Day" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (παρατηρήθηκε)" -msgstr "%s (Observed)" +msgstr "%s (observed)" #. Dormition of the Mother of God. msgid "Κοίμηση της Θεοτόκου" diff --git a/holidays/locale/en_US/LC_MESSAGES/IL.po b/holidays/locale/en_US/LC_MESSAGES/IL.po index b12d83d91..bb89b7b32 100644 --- a/holidays/locale/en_US/LC_MESSAGES/IL.po +++ b/holidays/locale/en_US/LC_MESSAGES/IL.po @@ -87,7 +87,7 @@ msgstr "Ta'anit Ester" msgid "ל\"ג בעומר" msgstr "Lag BaOmer" -#. %s (Observed). +#. %s (observed). #, c-format msgid "(נצפה) %s" -msgstr "%s (Observed)" +msgstr "%s (observed)" diff --git a/holidays/locale/en_US/LC_MESSAGES/LV.po b/holidays/locale/en_US/LC_MESSAGES/LV.po index ea05f6e7a..02c08d260 100644 --- a/holidays/locale/en_US/LC_MESSAGES/LV.po +++ b/holidays/locale/en_US/LC_MESSAGES/LV.po @@ -33,10 +33,10 @@ msgstr "" "Day the Latvian hockey team won the bronze medal at the 2023 World Ice " "Hockey Championship" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (brīvdiena)" -msgstr "%s (Observed)" +msgstr "%s (observed)" #. New Year's Day. msgid "Jaunais Gads" diff --git a/holidays/locale/en_US/LC_MESSAGES/MC.po b/holidays/locale/en_US/LC_MESSAGES/MC.po index 2b0f39d1d..ea8c34c9e 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MC.po +++ b/holidays/locale/en_US/LC_MESSAGES/MC.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-02-20 11:58+0200\n" "PO-Revision-Date: 2023-02-20 12:13+0200\n" "Last-Translator: ~Jhellico \n" @@ -20,10 +20,10 @@ msgstr "" msgid "Jour férié" msgstr "Public holiday" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observé)" -msgstr "%s (Observed)" +msgid "%s (observé)" +msgstr "%s (observed)" #. New Year's Day. msgid "Le jour de l'An" diff --git a/holidays/locale/en_US/LC_MESSAGES/MZ.po b/holidays/locale/en_US/LC_MESSAGES/MZ.po index 4ff97ade6..2d97aa7c3 100644 --- a/holidays/locale/en_US/LC_MESSAGES/MZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/MZ.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-07-21 19:22+0300\n" "PO-Revision-Date: 2023-07-21 19:26+0300\n" "Last-Translator: ~Jhellico \n" @@ -16,10 +16,10 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Ponte)" -msgstr "%s (Observed)" +msgid "%s (ponte)" +msgstr "%s (observed)" #. International Fraternalism Day. msgid "Dia da Fraternidade universal" diff --git a/holidays/locale/en_US/LC_MESSAGES/RS.po b/holidays/locale/en_US/LC_MESSAGES/RS.po index b8fc64cf3..623ff13b0 100644 --- a/holidays/locale/en_US/LC_MESSAGES/RS.po +++ b/holidays/locale/en_US/LC_MESSAGES/RS.po @@ -51,7 +51,7 @@ msgstr "Easter Sunday" msgid "Други дан Васкрса" msgstr "Easter Monday" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (слободан дан)" -msgstr "%s (Observed)" +msgstr "%s (observed)" diff --git a/holidays/locale/en_US/LC_MESSAGES/SA.po b/holidays/locale/en_US/LC_MESSAGES/SA.po index 113b73693..2d4b2f2ec 100644 --- a/holidays/locale/en_US/LC_MESSAGES/SA.po +++ b/holidays/locale/en_US/LC_MESSAGES/SA.po @@ -21,7 +21,7 @@ msgstr "" msgid "(تقدير) %s" msgstr "%s (estimated)" -#. %s (Observed). +#. %s (observed). #, c-format msgid "(ملاحظة) %s" msgstr "%s (observed)" diff --git a/holidays/locale/en_US/LC_MESSAGES/TO.po b/holidays/locale/en_US/LC_MESSAGES/TO.po index 2c5b66647..1f62e5e06 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TO.po +++ b/holidays/locale/en_US/LC_MESSAGES/TO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.36\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-10-24 19:30+0700\n" "PO-Revision-Date: 2023-10-24 19:36+0700\n" "Last-Translator: PPsyrius \n" @@ -16,10 +16,10 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Fakatokanga'i)" -msgstr "%s (Observed)" +msgid "%s (fakatokanga'i)" +msgstr "%s (observed)" #. New Year's Day. msgid "'Uluaki 'Aho 'o e Ta'u Fo'ou" diff --git a/holidays/locale/en_US/LC_MESSAGES/TW.po b/holidays/locale/en_US/LC_MESSAGES/TW.po index 910d9ed94..d6a951251 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TW.po +++ b/holidays/locale/en_US/LC_MESSAGES/TW.po @@ -16,10 +16,10 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4.1\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (慶祝)" -msgstr "%s (Observed)" +msgstr "%s (observed)" #. Founding Day of the Republic of China. msgid "中華民國開國紀念日" diff --git a/holidays/locale/en_US/LC_MESSAGES/UA.po b/holidays/locale/en_US/LC_MESSAGES/UA.po index ff4fe240a..11f4e2c34 100644 --- a/holidays/locale/en_US/LC_MESSAGES/UA.po +++ b/holidays/locale/en_US/LC_MESSAGES/UA.po @@ -26,10 +26,10 @@ msgstr "%m/%d/%Y" msgid "Вихідний день (перенесено з %s)" msgstr "Day off (substituted from %s)" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (вихідний)" -msgstr "%s (Observed)" +msgstr "%s (observed)" #. New Year's Day. msgid "Новий рік" diff --git a/holidays/locale/es/LC_MESSAGES/AR.po b/holidays/locale/es/LC_MESSAGES/AR.po index fa8953b34..16d9b0c5b 100644 --- a/holidays/locale/es/LC_MESSAGES/AR.po +++ b/holidays/locale/es/LC_MESSAGES/AR.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:39+0700\n" "PO-Revision-Date: 2023-05-03 18:35-0700\n" "Last-Translator: Arkadii Yakovets \n" @@ -118,7 +118,7 @@ msgstr "" msgid "Día de la Soberanía Nacional" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "" diff --git a/holidays/locale/es/LC_MESSAGES/BO.po b/holidays/locale/es/LC_MESSAGES/BO.po index c4333a928..f375e95ae 100644 --- a/holidays/locale/es/LC_MESSAGES/BO.po +++ b/holidays/locale/es/LC_MESSAGES/BO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-07-22 18:47+0300\n" "PO-Revision-Date: 2023-07-22 18:49+0300\n" "Last-Translator: ~Jhellico \n" @@ -16,9 +16,9 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "" #. New Year's Day. diff --git a/holidays/locale/es/LC_MESSAGES/CO.po b/holidays/locale/es/LC_MESSAGES/CO.po index 2e9c002fe..6afebd884 100644 --- a/holidays/locale/es/LC_MESSAGES/CO.po +++ b/holidays/locale/es/LC_MESSAGES/CO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-02-19 17:09+0200\n" "PO-Revision-Date: 2023-02-19 17:16+0200\n" "Last-Translator: ~Jhellico \n" @@ -88,7 +88,7 @@ msgstr "" msgid "Sagrado Corazón" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "" diff --git a/holidays/locale/es/LC_MESSAGES/CR.po b/holidays/locale/es/LC_MESSAGES/CR.po index 00b691441..00ecebddf 100644 --- a/holidays/locale/es/LC_MESSAGES/CR.po +++ b/holidays/locale/es/LC_MESSAGES/CR.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.26\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-22 22:55+0200\n" "PO-Revision-Date: 2023-05-03 18:39-0700\n" "Last-Translator: Arkadii Yakovets \n" @@ -16,9 +16,9 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.3\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "" #. New Year's Day. diff --git a/holidays/locale/es/LC_MESSAGES/CU.po b/holidays/locale/es/LC_MESSAGES/CU.po index 03eb51b3d..410ca47bf 100644 --- a/holidays/locale/es/LC_MESSAGES/CU.po +++ b/holidays/locale/es/LC_MESSAGES/CU.po @@ -16,9 +16,9 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.2.2\n" -#. %s Observed. +#. %s observed. #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "" #. Liberation Day. diff --git a/holidays/locale/es/LC_MESSAGES/EC.po b/holidays/locale/es/LC_MESSAGES/EC.po index fb6b0e850..d4e84d6cf 100644 --- a/holidays/locale/es/LC_MESSAGES/EC.po +++ b/holidays/locale/es/LC_MESSAGES/EC.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-04-02 18:54+0300\n" "PO-Revision-Date: 2023-04-02 18:55+0300\n" "Last-Translator: ~Jhellico \n" @@ -56,7 +56,7 @@ msgstr "" msgid "Día de Navidad" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "" diff --git a/holidays/locale/fr/LC_MESSAGES/CA.po b/holidays/locale/fr/LC_MESSAGES/CA.po index dcf3eab2c..e96f71377 100644 --- a/holidays/locale/fr/LC_MESSAGES/CA.po +++ b/holidays/locale/fr/LC_MESSAGES/CA.po @@ -16,9 +16,9 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observed)" +msgid "%s (observed)" msgstr "%s (Observé)" #. New Year's Day. diff --git a/holidays/locale/fr/LC_MESSAGES/MC.po b/holidays/locale/fr/LC_MESSAGES/MC.po index 511e016c3..35ac639c8 100644 --- a/holidays/locale/fr/LC_MESSAGES/MC.po +++ b/holidays/locale/fr/LC_MESSAGES/MC.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-02-20 11:58+0200\n" "PO-Revision-Date: 2023-02-20 12:00+0200\n" "Last-Translator: ~Jhellico \n" @@ -20,9 +20,9 @@ msgstr "" msgid "Jour férié" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observé)" +msgid "%s (observé)" msgstr "" #. New Year's Day. diff --git a/holidays/locale/he/LC_MESSAGES/IL.po b/holidays/locale/he/LC_MESSAGES/IL.po index a72706bcd..b7c72477d 100644 --- a/holidays/locale/he/LC_MESSAGES/IL.po +++ b/holidays/locale/he/LC_MESSAGES/IL.po @@ -87,7 +87,7 @@ msgstr "" msgid "ל\"ג בעומר" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format msgid "(נצפה) %s" msgstr "" diff --git a/holidays/locale/lv/LC_MESSAGES/LV.po b/holidays/locale/lv/LC_MESSAGES/LV.po index ae20fd01d..1f4082685 100644 --- a/holidays/locale/lv/LC_MESSAGES/LV.po +++ b/holidays/locale/lv/LC_MESSAGES/LV.po @@ -31,7 +31,7 @@ msgid "" " hokeja čempionātā" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (brīvdiena)" msgstr "" diff --git a/holidays/locale/ms/LC_MESSAGES/BN.po b/holidays/locale/ms/LC_MESSAGES/BN.po index 683b8b946..11a76aec2 100644 --- a/holidays/locale/ms/LC_MESSAGES/BN.po +++ b/holidays/locale/ms/LC_MESSAGES/BN.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:37+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" @@ -24,7 +24,7 @@ msgid "%s (anggaran)" msgstr "" #, c-format -msgid "%s - Diperhatikan" +msgid "%s (diperhatikan)" msgstr "" #. New Year's Day diff --git a/holidays/locale/pot/UA.pot b/holidays/locale/pot/UA.pot index fed91938b..f5630b812 100644 --- a/holidays/locale/pot/UA.pot +++ b/holidays/locale/pot/UA.pot @@ -15,7 +15,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Lingua 4.15.0\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (вихідний)" msgstr "" diff --git a/holidays/locale/pt_AO/LC_MESSAGES/AO.po b/holidays/locale/pt_AO/LC_MESSAGES/AO.po index 1c98775fb..5a7332012 100644 --- a/holidays/locale/pt_AO/LC_MESSAGES/AO.po +++ b/holidays/locale/pt_AO/LC_MESSAGES/AO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-07-19 18:14+0300\n" "PO-Revision-Date: 2023-07-19 18:17+0300\n" "Last-Translator: ~Jhellico \n" @@ -20,9 +20,9 @@ msgstr "" msgid "Dia de eleições gerais" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Ponte)" +msgid "%s (ponte)" msgstr "" #. New Year's Day. diff --git a/holidays/locale/pt_MZ/LC_MESSAGES/MZ.po b/holidays/locale/pt_MZ/LC_MESSAGES/MZ.po index 58bcfaf8b..dedf6c539 100644 --- a/holidays/locale/pt_MZ/LC_MESSAGES/MZ.po +++ b/holidays/locale/pt_MZ/LC_MESSAGES/MZ.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-07-21 19:22+0300\n" "PO-Revision-Date: 2023-07-21 19:22+0300\n" "Last-Translator: ~Jhellico \n" @@ -16,9 +16,9 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Ponte)" +msgid "%s (ponte)" msgstr "" #. International Fraternalism Day. diff --git a/holidays/locale/sr/LC_MESSAGES/BA.po b/holidays/locale/sr/LC_MESSAGES/BA.po index 025715739..adab0ea47 100644 --- a/holidays/locale/sr/LC_MESSAGES/BA.po +++ b/holidays/locale/sr/LC_MESSAGES/BA.po @@ -16,7 +16,7 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (preneseno)" msgstr "%s (пренешено)" diff --git a/holidays/locale/sr/LC_MESSAGES/RS.po b/holidays/locale/sr/LC_MESSAGES/RS.po index 803c5558c..1e541e055 100644 --- a/holidays/locale/sr/LC_MESSAGES/RS.po +++ b/holidays/locale/sr/LC_MESSAGES/RS.po @@ -51,7 +51,7 @@ msgstr "" msgid "Други дан Васкрса" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (слободан дан)" msgstr "" diff --git a/holidays/locale/th/LC_MESSAGES/BN.po b/holidays/locale/th/LC_MESSAGES/BN.po index 7c2d7a9f8..a83eb4f16 100644 --- a/holidays/locale/th/LC_MESSAGES/BN.po +++ b/holidays/locale/th/LC_MESSAGES/BN.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.27\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:37+0700\n" "PO-Revision-Date: \n" "Last-Translator: PPsyrius \n" @@ -24,7 +24,7 @@ msgid "%s (anggaran)" msgstr "%s (โดยประมาณ)" #, c-format -msgid "%s - Diperhatikan" +msgid "%s (diperhatikan)" msgstr "ชดเชย%s" #. New Year's Day diff --git a/holidays/locale/th/LC_MESSAGES/CA.po b/holidays/locale/th/LC_MESSAGES/CA.po index d0bdfe823..8850d48dc 100644 --- a/holidays/locale/th/LC_MESSAGES/CA.po +++ b/holidays/locale/th/LC_MESSAGES/CA.po @@ -20,9 +20,9 @@ msgstr "" msgid "New Year's Day" msgstr "วันขึ้นปีใหม่" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observed)" +msgid "%s (observed)" msgstr "ชดเชย%s" #. Family Day. diff --git a/holidays/locale/th/LC_MESSAGES/CN.po b/holidays/locale/th/LC_MESSAGES/CN.po index a39cef18f..5940da580 100644 --- a/holidays/locale/th/LC_MESSAGES/CN.po +++ b/holidays/locale/th/LC_MESSAGES/CN.po @@ -16,7 +16,7 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s(观察日)" msgstr "ชดเชย%s" diff --git a/holidays/locale/th/LC_MESSAGES/TW.po b/holidays/locale/th/LC_MESSAGES/TW.po index 3d075871c..943e0bcbe 100644 --- a/holidays/locale/th/LC_MESSAGES/TW.po +++ b/holidays/locale/th/LC_MESSAGES/TW.po @@ -16,7 +16,7 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4.1\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (慶祝)" msgstr "ชดเชย%s" diff --git a/holidays/locale/to/LC_MESSAGES/TO.po b/holidays/locale/to/LC_MESSAGES/TO.po index 00592eee0..7b5c83d9f 100644 --- a/holidays/locale/to/LC_MESSAGES/TO.po +++ b/holidays/locale/to/LC_MESSAGES/TO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.36\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-10-24 19:30+0700\n" "PO-Revision-Date: 2023-10-24 19:38+0700\n" "Last-Translator: PPsyrius \n" @@ -16,9 +16,9 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Fakatokanga'i)" +msgid "%s (fakatokanga'i)" msgstr "" #. New Year's Day. diff --git a/holidays/locale/uk/LC_MESSAGES/AO.po b/holidays/locale/uk/LC_MESSAGES/AO.po index 7f12f21dc..8b5458ce3 100644 --- a/holidays/locale/uk/LC_MESSAGES/AO.po +++ b/holidays/locale/uk/LC_MESSAGES/AO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-07-19 18:14+0300\n" "PO-Revision-Date: 2023-07-19 18:30+0300\n" "Last-Translator: ~Jhellico \n" @@ -20,9 +20,9 @@ msgstr "" msgid "Dia de eleições gerais" msgstr "День загальних виборів" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Ponte)" +msgid "%s (ponte)" msgstr "Вихідний за %s" #. New Year's Day. diff --git a/holidays/locale/uk/LC_MESSAGES/AR.po b/holidays/locale/uk/LC_MESSAGES/AR.po index 5aedd70ba..83591a5ce 100644 --- a/holidays/locale/uk/LC_MESSAGES/AR.po +++ b/holidays/locale/uk/LC_MESSAGES/AR.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:39+0700\n" "PO-Revision-Date: 2023-05-03 18:36-0700\n" "Last-Translator: Arkadii Yakovets \n" @@ -121,7 +121,7 @@ msgstr "День Колумба" msgid "Día de la Soberanía Nacional" msgstr "День національного суверенітету" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "%s (вихідний)" diff --git a/holidays/locale/uk/LC_MESSAGES/AZ.po b/holidays/locale/uk/LC_MESSAGES/AZ.po index f504e07ae..6cdf87233 100644 --- a/holidays/locale/uk/LC_MESSAGES/AZ.po +++ b/holidays/locale/uk/LC_MESSAGES/AZ.po @@ -21,7 +21,7 @@ msgstr "" msgid "%s (təxmini)" msgstr "%s (приблизна дата)" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (müşahidə olunur)" msgstr "%s (вихідний)" diff --git a/holidays/locale/uk/LC_MESSAGES/BA.po b/holidays/locale/uk/LC_MESSAGES/BA.po index 233f763eb..b499fec42 100644 --- a/holidays/locale/uk/LC_MESSAGES/BA.po +++ b/holidays/locale/uk/LC_MESSAGES/BA.po @@ -16,7 +16,7 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (preneseno)" msgstr "%s (вихідний)" diff --git a/holidays/locale/uk/LC_MESSAGES/BG.po b/holidays/locale/uk/LC_MESSAGES/BG.po index b62ca5206..b11edfb89 100644 --- a/holidays/locale/uk/LC_MESSAGES/BG.po +++ b/holidays/locale/uk/LC_MESSAGES/BG.po @@ -68,7 +68,7 @@ msgstr "Святий вечір" msgid "Рождество Христово" msgstr "Різдво Христове" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (почивен ден)" msgstr "%s (вихідний)" diff --git a/holidays/locale/uk/LC_MESSAGES/BO.po b/holidays/locale/uk/LC_MESSAGES/BO.po index 894a3d9d8..bdbe746cd 100644 --- a/holidays/locale/uk/LC_MESSAGES/BO.po +++ b/holidays/locale/uk/LC_MESSAGES/BO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-07-22 18:47+0300\n" "PO-Revision-Date: 2023-07-22 18:59+0300\n" "Last-Translator: ~Jhellico \n" @@ -16,9 +16,9 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "%s (вихідний)" #. New Year's Day. diff --git a/holidays/locale/uk/LC_MESSAGES/CO.po b/holidays/locale/uk/LC_MESSAGES/CO.po index 49125527c..9d5ff295e 100644 --- a/holidays/locale/uk/LC_MESSAGES/CO.po +++ b/holidays/locale/uk/LC_MESSAGES/CO.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.25\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-01 15:30-0800\n" "PO-Revision-Date: 2023-05-03 18:38-0700\n" "Last-Translator: Arkadii Yakovets \n" @@ -88,7 +88,7 @@ msgstr "Свято Тіла і Крові Христових" msgid "Sagrado Corazón" msgstr "Свято Найсвятішого Серця Ісуса" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "%s (вихідний)" diff --git a/holidays/locale/uk/LC_MESSAGES/CR.po b/holidays/locale/uk/LC_MESSAGES/CR.po index 2582ff44e..df0b9a221 100644 --- a/holidays/locale/uk/LC_MESSAGES/CR.po +++ b/holidays/locale/uk/LC_MESSAGES/CR.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.26\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-22 22:55+0200\n" "PO-Revision-Date: 2023-05-03 18:42-0700\n" "Last-Translator: Arkadii Yakovets \n" @@ -16,9 +16,9 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.3\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "%s (вихідний)" #. New Year's Day. diff --git a/holidays/locale/uk/LC_MESSAGES/CU.po b/holidays/locale/uk/LC_MESSAGES/CU.po index 285692878..86c9e3b0b 100644 --- a/holidays/locale/uk/LC_MESSAGES/CU.po +++ b/holidays/locale/uk/LC_MESSAGES/CU.po @@ -16,9 +16,9 @@ msgstr "" "Generated-By: pygettext.py 1.5\n" "X-Generator: Poedit 3.2.2\n" -#. %s Observed. +#. %s observed. #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "%s (вихідний)" #. Liberation Day. diff --git a/holidays/locale/uk/LC_MESSAGES/EC.po b/holidays/locale/uk/LC_MESSAGES/EC.po index 08845ae58..48bc8dd21 100644 --- a/holidays/locale/uk/LC_MESSAGES/EC.po +++ b/holidays/locale/uk/LC_MESSAGES/EC.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.23\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-04-02 18:54+0300\n" "PO-Revision-Date: 2023-04-02 19:02+0300\n" "Last-Translator: ~Jhellico \n" @@ -56,7 +56,7 @@ msgstr "День незалежності Куенки" msgid "Día de Navidad" msgstr "Різдво Христове" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observado)" +msgid "%s (observado)" msgstr "%s (вихідний)" diff --git a/holidays/locale/uk/LC_MESSAGES/GR.po b/holidays/locale/uk/LC_MESSAGES/GR.po index 7c68d2099..0599de088 100644 --- a/holidays/locale/uk/LC_MESSAGES/GR.po +++ b/holidays/locale/uk/LC_MESSAGES/GR.po @@ -48,7 +48,7 @@ msgstr "День Святого Духа" msgid "Εργατική Πρωτομαγιά" msgstr "День праці" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (παρατηρήθηκε)" msgstr "%s (вихідний)" diff --git a/holidays/locale/uk/LC_MESSAGES/IL.po b/holidays/locale/uk/LC_MESSAGES/IL.po index 31f6bbfe1..6c1fd070a 100644 --- a/holidays/locale/uk/LC_MESSAGES/IL.po +++ b/holidays/locale/uk/LC_MESSAGES/IL.po @@ -87,7 +87,7 @@ msgstr "Тааніт-Естер" msgid "ל\"ג בעומר" msgstr "Лаг ба-Омер" -#. %s (Observed). +#. %s (observed). #, c-format msgid "(נצפה) %s" msgstr "%s (вихідний)" diff --git a/holidays/locale/uk/LC_MESSAGES/LV.po b/holidays/locale/uk/LC_MESSAGES/LV.po index 624e6df21..2134d11ad 100644 --- a/holidays/locale/uk/LC_MESSAGES/LV.po +++ b/holidays/locale/uk/LC_MESSAGES/LV.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "День здобуття збірною Латвії з хокею бронзової медалі Чемпіонату світу" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (brīvdiena)" msgstr "%s (вихідний)" diff --git a/holidays/locale/uk/LC_MESSAGES/MC.po b/holidays/locale/uk/LC_MESSAGES/MC.po index 95f876064..75577cc46 100644 --- a/holidays/locale/uk/LC_MESSAGES/MC.po +++ b/holidays/locale/uk/LC_MESSAGES/MC.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-02-20 11:58+0200\n" "PO-Revision-Date: 2023-03-05 13:25+0200\n" "Last-Translator: ~Jhellico \n" @@ -20,9 +20,9 @@ msgstr "" msgid "Jour férié" msgstr "Державне свято" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Observé)" +msgid "%s (observé)" msgstr "%s (вихідний)" #. New Year's Day. diff --git a/holidays/locale/uk/LC_MESSAGES/MZ.po b/holidays/locale/uk/LC_MESSAGES/MZ.po index 3408abb47..cd935f749 100644 --- a/holidays/locale/uk/LC_MESSAGES/MZ.po +++ b/holidays/locale/uk/LC_MESSAGES/MZ.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-07-21 19:22+0300\n" "PO-Revision-Date: 2023-07-21 19:30+0300\n" "Last-Translator: ~Jhellico \n" @@ -16,9 +16,9 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" -#. %s (Observed). +#. %s (observed). #, c-format -msgid "%s (Ponte)" +msgid "%s (ponte)" msgstr "%s (вихідний)" #. International Fraternalism Day. diff --git a/holidays/locale/uk/LC_MESSAGES/UA.po b/holidays/locale/uk/LC_MESSAGES/UA.po index 3b092b592..376542cee 100644 --- a/holidays/locale/uk/LC_MESSAGES/UA.po +++ b/holidays/locale/uk/LC_MESSAGES/UA.po @@ -25,7 +25,7 @@ msgstr "" msgid "Вихідний день (перенесено з %s)" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (вихідний)" msgstr "" diff --git a/holidays/locale/zh_CN/LC_MESSAGES/CN.po b/holidays/locale/zh_CN/LC_MESSAGES/CN.po index 9e903f4b6..f0d5414eb 100644 --- a/holidays/locale/zh_CN/LC_MESSAGES/CN.po +++ b/holidays/locale/zh_CN/LC_MESSAGES/CN.po @@ -16,7 +16,7 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s(观察日)" msgstr "" diff --git a/holidays/locale/zh_CN/LC_MESSAGES/TW.po b/holidays/locale/zh_CN/LC_MESSAGES/TW.po index 97d3f208b..7c5b9e449 100644 --- a/holidays/locale/zh_CN/LC_MESSAGES/TW.po +++ b/holidays/locale/zh_CN/LC_MESSAGES/TW.po @@ -16,7 +16,7 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4.1\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (慶祝)" msgstr "%s (庆祝)" diff --git a/holidays/locale/zh_TW/LC_MESSAGES/CN.po b/holidays/locale/zh_TW/LC_MESSAGES/CN.po index d514082c6..0a972ca76 100644 --- a/holidays/locale/zh_TW/LC_MESSAGES/CN.po +++ b/holidays/locale/zh_TW/LC_MESSAGES/CN.po @@ -16,7 +16,7 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s(观察日)" msgstr "%s(觀察日)" diff --git a/holidays/locale/zh_TW/LC_MESSAGES/TW.po b/holidays/locale/zh_TW/LC_MESSAGES/TW.po index dae07efd8..d83fdbd86 100644 --- a/holidays/locale/zh_TW/LC_MESSAGES/TW.po +++ b/holidays/locale/zh_TW/LC_MESSAGES/TW.po @@ -16,7 +16,7 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4.1\n" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (慶祝)" msgstr "" diff --git a/holidays/utils.py b/holidays/utils.py index f6a3833e5..4970d3dc8 100755 --- a/holidays/utils.py +++ b/holidays/utils.py @@ -146,7 +146,7 @@ def country_holidays( (datetime.date(2020, 2, 17), "Washington's Birthday") (datetime.date(2020, 5, 25), 'Memorial Day') (datetime.date(2020, 7, 4), 'Independence Day') - (datetime.date(2020, 7, 3), 'Independence Day (Observed)') + (datetime.date(2020, 7, 3), 'Independence Day (observed)') (datetime.date(2020, 9, 7), 'Labor Day') (datetime.date(2020, 10, 12), 'Columbus Day') (datetime.date(2020, 11, 11), 'Veterans Day') diff --git a/snapshots/countries/AL_COMMON.json b/snapshots/countries/AL_COMMON.json index d4a014750..a18883cd3 100644 --- a/snapshots/countries/AL_COMMON.json +++ b/snapshots/countries/AL_COMMON.json @@ -1,23 +1,23 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-09": "Catholic Easter; Orthodox Easter", - "1950-04-10": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1950-04-10": "Catholic Easter (observed); Orthodox Easter (observed)", "1950-05-01": "May Day", "1950-07-16": "Eid al-Fitr (estimated)", - "1950-07-17": "Eid al-Fitr (estimated) (Observed)", + "1950-07-17": "Eid al-Fitr (estimated) (observed)", "1950-09-23": "Eid al-Adha (estimated)", - "1950-09-25": "Eid al-Adha (estimated) (Observed)", + "1950-09-25": "Eid al-Adha (estimated) (observed)", "1950-11-28": "Independence Day", "1950-11-29": "Liberation Day", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", "1951-01-02": "New Year's Day", "1951-03-25": "Catholic Easter", - "1951-03-26": "Catholic Easter (Observed)", + "1951-03-26": "Catholic Easter (observed)", "1951-04-29": "Orthodox Easter", - "1951-04-30": "Orthodox Easter (Observed)", + "1951-04-30": "Orthodox Easter (observed)", "1951-05-01": "May Day", "1951-07-06": "Eid al-Fitr (estimated)", "1951-09-12": "Eid al-Adha (estimated)", @@ -27,71 +27,71 @@ "1952-01-01": "New Year's Day", "1952-01-02": "New Year's Day", "1952-04-13": "Catholic Easter", - "1952-04-14": "Catholic Easter (Observed)", + "1952-04-14": "Catholic Easter (observed)", "1952-04-20": "Orthodox Easter", - "1952-04-21": "Orthodox Easter (Observed)", + "1952-04-21": "Orthodox Easter (observed)", "1952-05-01": "May Day", "1952-06-23": "Eid al-Fitr (estimated)", "1952-08-31": "Eid al-Adha (estimated)", - "1952-09-01": "Eid al-Adha (estimated) (Observed)", + "1952-09-01": "Eid al-Adha (estimated) (observed)", "1952-11-28": "Independence Day", "1952-11-29": "Liberation Day", - "1952-12-01": "Liberation Day (Observed)", + "1952-12-01": "Liberation Day (observed)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-01-02": "New Year's Day", "1953-04-05": "Catholic Easter; Orthodox Easter", - "1953-04-06": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1953-04-06": "Catholic Easter (observed); Orthodox Easter (observed)", "1953-05-01": "May Day", "1953-06-13": "Eid al-Fitr (estimated)", - "1953-06-15": "Eid al-Fitr (estimated) (Observed)", + "1953-06-15": "Eid al-Fitr (estimated) (observed)", "1953-08-20": "Eid al-Adha (estimated)", "1953-11-28": "Independence Day", "1953-11-29": "Liberation Day", - "1953-11-30": "Independence Day (Observed)", - "1953-12-01": "Liberation Day (Observed)", + "1953-11-30": "Independence Day (observed)", + "1953-12-01": "Liberation Day (observed)", "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", "1954-01-02": "New Year's Day", - "1954-01-04": "New Year's Day (Observed)", + "1954-01-04": "New Year's Day (observed)", "1954-04-18": "Catholic Easter", - "1954-04-19": "Catholic Easter (Observed)", + "1954-04-19": "Catholic Easter (observed)", "1954-04-25": "Orthodox Easter", - "1954-04-26": "Orthodox Easter (Observed)", + "1954-04-26": "Orthodox Easter (observed)", "1954-05-01": "May Day", - "1954-05-03": "May Day (Observed)", + "1954-05-03": "May Day (observed)", "1954-06-02": "Eid al-Fitr (estimated)", "1954-08-09": "Eid al-Adha (estimated)", "1954-11-28": "Independence Day", "1954-11-29": "Liberation Day", - "1954-11-30": "Independence Day (Observed)", + "1954-11-30": "Independence Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-27": "Christmas Day (Observed)", + "1954-12-27": "Christmas Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "New Year's Day (observed)", "1955-04-10": "Catholic Easter", - "1955-04-11": "Catholic Easter (Observed)", + "1955-04-11": "Catholic Easter (observed)", "1955-04-17": "Orthodox Easter", - "1955-04-18": "Orthodox Easter (Observed)", + "1955-04-18": "Orthodox Easter (observed)", "1955-05-01": "May Day", - "1955-05-02": "May Day (Observed)", + "1955-05-02": "May Day (observed)", "1955-05-23": "Eid al-Fitr (estimated)", "1955-07-30": "Eid al-Adha (estimated)", - "1955-08-01": "Eid al-Adha (estimated) (Observed)", + "1955-08-01": "Eid al-Adha (estimated) (observed)", "1955-11-28": "Independence Day", "1955-11-29": "Liberation Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-04-01": "Catholic Easter", - "1956-04-02": "Catholic Easter (Observed)", + "1956-04-02": "Catholic Easter (observed)", "1956-05-01": "May Day", "1956-05-06": "Orthodox Easter", - "1956-05-07": "Orthodox Easter (Observed)", + "1956-05-07": "Orthodox Easter (observed)", "1956-05-11": "Eid al-Fitr (estimated)", "1956-07-19": "Eid al-Adha (estimated)", "1956-11-28": "Independence Day", @@ -100,7 +100,7 @@ "1957-01-01": "New Year's Day", "1957-01-02": "New Year's Day", "1957-04-21": "Catholic Easter; Orthodox Easter", - "1957-04-22": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1957-04-22": "Catholic Easter (observed); Orthodox Easter (observed)", "1957-05-01": "Eid al-Fitr (estimated); May Day", "1957-07-08": "Eid al-Adha (estimated)", "1957-11-28": "Independence Day", @@ -109,54 +109,54 @@ "1958-01-01": "New Year's Day", "1958-01-02": "New Year's Day", "1958-04-06": "Catholic Easter", - "1958-04-07": "Catholic Easter (Observed)", + "1958-04-07": "Catholic Easter (observed)", "1958-04-13": "Orthodox Easter", - "1958-04-14": "Orthodox Easter (Observed)", + "1958-04-14": "Orthodox Easter (observed)", "1958-04-20": "Eid al-Fitr (estimated)", - "1958-04-21": "Eid al-Fitr (estimated) (Observed)", + "1958-04-21": "Eid al-Fitr (estimated) (observed)", "1958-05-01": "May Day", "1958-06-27": "Eid al-Adha (estimated)", "1958-11-28": "Independence Day", "1958-11-29": "Liberation Day", - "1958-12-01": "Liberation Day (Observed)", + "1958-12-01": "Liberation Day (observed)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-01-02": "New Year's Day", "1959-03-29": "Catholic Easter", - "1959-03-30": "Catholic Easter (Observed)", + "1959-03-30": "Catholic Easter (observed)", "1959-04-10": "Eid al-Fitr (estimated)", "1959-05-01": "May Day", "1959-05-03": "Orthodox Easter", - "1959-05-04": "Orthodox Easter (Observed)", + "1959-05-04": "Orthodox Easter (observed)", "1959-06-17": "Eid al-Adha (estimated)", "1959-11-28": "Independence Day", "1959-11-29": "Liberation Day", - "1959-11-30": "Independence Day (Observed)", - "1959-12-01": "Liberation Day (Observed)", + "1959-11-30": "Independence Day (observed)", + "1959-12-01": "Liberation Day (observed)", "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-01-02": "New Year's Day", - "1960-01-04": "New Year's Day (Observed)", + "1960-01-04": "New Year's Day (observed)", "1960-03-28": "Eid al-Fitr (estimated)", "1960-04-17": "Catholic Easter; Orthodox Easter", - "1960-04-18": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1960-04-18": "Catholic Easter (observed); Orthodox Easter (observed)", "1960-05-01": "May Day", - "1960-05-02": "May Day (Observed)", + "1960-05-02": "May Day (observed)", "1960-06-04": "Eid al-Adha (estimated)", - "1960-06-06": "Eid al-Adha (estimated) (Observed)", + "1960-06-06": "Eid al-Adha (estimated) (observed)", "1960-11-28": "Independence Day", "1960-11-29": "Liberation Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-18": "Eid al-Fitr (estimated)", - "1961-03-20": "Eid al-Fitr (estimated) (Observed)", + "1961-03-20": "Eid al-Fitr (estimated) (observed)", "1961-04-02": "Catholic Easter", - "1961-04-03": "Catholic Easter (Observed)", + "1961-04-03": "Catholic Easter (observed)", "1961-04-09": "Orthodox Easter", - "1961-04-10": "Orthodox Easter (Observed)", + "1961-04-10": "Orthodox Easter (observed)", "1961-05-01": "May Day", "1961-05-25": "Eid al-Adha (estimated)", "1961-11-28": "Independence Day", @@ -166,9 +166,9 @@ "1962-01-02": "New Year's Day", "1962-03-07": "Eid al-Fitr (estimated)", "1962-04-22": "Catholic Easter", - "1962-04-23": "Catholic Easter (Observed)", + "1962-04-23": "Catholic Easter (observed)", "1962-04-29": "Orthodox Easter", - "1962-04-30": "Orthodox Easter (Observed)", + "1962-04-30": "Orthodox Easter (observed)", "1962-05-01": "May Day", "1962-05-14": "Eid al-Adha (estimated)", "1962-11-28": "Independence Day", @@ -177,9 +177,9 @@ "1963-01-01": "New Year's Day", "1963-01-02": "New Year's Day", "1963-02-24": "Eid al-Fitr (estimated)", - "1963-02-25": "Eid al-Fitr (estimated) (Observed)", + "1963-02-25": "Eid al-Fitr (estimated) (observed)", "1963-04-14": "Catholic Easter; Orthodox Easter", - "1963-04-15": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1963-04-15": "Catholic Easter (observed); Orthodox Easter (observed)", "1963-05-01": "May Day", "1963-05-03": "Eid al-Adha (estimated)", "1963-11-28": "Independence Day", @@ -189,128 +189,128 @@ "1964-01-02": "New Year's Day", "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-29": "Catholic Easter", - "1964-03-30": "Catholic Easter (Observed)", + "1964-03-30": "Catholic Easter (observed)", "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "May Day", "1964-05-03": "Orthodox Easter", - "1964-05-04": "Orthodox Easter (Observed)", + "1964-05-04": "Orthodox Easter (observed)", "1964-11-28": "Independence Day", "1964-11-29": "Liberation Day", - "1964-11-30": "Independence Day (Observed)", - "1964-12-01": "Liberation Day (Observed)", + "1964-11-30": "Independence Day (observed)", + "1964-12-01": "Liberation Day (observed)", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-01-02": "New Year's Day", - "1965-01-04": "New Year's Day (Observed)", + "1965-01-04": "New Year's Day (observed)", "1965-02-02": "Eid al-Fitr (estimated)", "1965-04-11": "Eid al-Adha (estimated)", - "1965-04-12": "Eid al-Adha (estimated) (Observed)", + "1965-04-12": "Eid al-Adha (estimated) (observed)", "1965-04-18": "Catholic Easter", - "1965-04-19": "Catholic Easter (Observed)", + "1965-04-19": "Catholic Easter (observed)", "1965-04-25": "Orthodox Easter", - "1965-04-26": "Orthodox Easter (Observed)", + "1965-04-26": "Orthodox Easter (observed)", "1965-05-01": "May Day", - "1965-05-03": "May Day (Observed)", + "1965-05-03": "May Day (observed)", "1965-11-28": "Independence Day", "1965-11-29": "Liberation Day", - "1965-11-30": "Independence Day (Observed)", + "1965-11-30": "Independence Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-27": "Christmas Day (Observed)", + "1965-12-27": "Christmas Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "New Year's Day (observed)", "1966-01-22": "Eid al-Fitr (estimated)", - "1966-01-24": "Eid al-Fitr (estimated) (Observed)", + "1966-01-24": "Eid al-Fitr (estimated) (observed)", "1966-04-01": "Eid al-Adha (estimated)", "1966-04-10": "Catholic Easter; Orthodox Easter", - "1966-04-11": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1966-04-11": "Catholic Easter (observed); Orthodox Easter (observed)", "1966-05-01": "May Day", - "1966-05-02": "May Day (Observed)", + "1966-05-02": "May Day (observed)", "1966-11-28": "Independence Day", "1966-11-29": "Liberation Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-01-12": "Eid al-Fitr (estimated)", "1967-03-21": "Eid al-Adha (estimated)", "1967-03-26": "Catholic Easter", - "1967-03-27": "Catholic Easter (Observed)", + "1967-03-27": "Catholic Easter (observed)", "1967-04-30": "Orthodox Easter", "1967-05-01": "May Day", - "1967-05-02": "Orthodox Easter (Observed)", + "1967-05-02": "Orthodox Easter (observed)", "1967-11-28": "Independence Day", "1967-11-29": "Liberation Day", "1967-12-25": "Christmas Day", "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-01-02": "New Year's Day", "1968-03-09": "Eid al-Adha (estimated)", - "1968-03-11": "Eid al-Adha (estimated) (Observed)", + "1968-03-11": "Eid al-Adha (estimated) (observed)", "1968-04-14": "Catholic Easter", - "1968-04-15": "Catholic Easter (Observed)", + "1968-04-15": "Catholic Easter (observed)", "1968-04-21": "Orthodox Easter", - "1968-04-22": "Orthodox Easter (Observed)", + "1968-04-22": "Orthodox Easter (observed)", "1968-05-01": "May Day", "1968-11-28": "Independence Day", "1968-11-29": "Liberation Day", "1968-12-21": "Eid al-Fitr (estimated)", - "1968-12-23": "Eid al-Fitr (estimated) (Observed)", + "1968-12-23": "Eid al-Fitr (estimated) (observed)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-01-02": "New Year's Day", "1969-02-27": "Eid al-Adha (estimated)", "1969-04-06": "Catholic Easter", - "1969-04-07": "Catholic Easter (Observed)", + "1969-04-07": "Catholic Easter (observed)", "1969-04-13": "Orthodox Easter", - "1969-04-14": "Orthodox Easter (Observed)", + "1969-04-14": "Orthodox Easter (observed)", "1969-05-01": "May Day", "1969-11-28": "Independence Day", "1969-11-29": "Liberation Day", - "1969-12-01": "Liberation Day (Observed)", + "1969-12-01": "Liberation Day (observed)", "1969-12-10": "Eid al-Fitr (estimated)", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-01-02": "New Year's Day", "1970-02-16": "Eid al-Adha (estimated)", "1970-03-29": "Catholic Easter", - "1970-03-30": "Catholic Easter (Observed)", + "1970-03-30": "Catholic Easter (observed)", "1970-04-26": "Orthodox Easter", - "1970-04-27": "Orthodox Easter (Observed)", + "1970-04-27": "Orthodox Easter (observed)", "1970-05-01": "May Day", "1970-11-28": "Independence Day", "1970-11-29": "Liberation Day", "1970-11-30": "Eid al-Fitr (estimated)", - "1970-12-01": "Independence Day (Observed)", - "1970-12-02": "Liberation Day (Observed)", + "1970-12-01": "Independence Day (observed)", + "1970-12-02": "Liberation Day (observed)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-02": "New Year's Day", - "1971-01-04": "New Year's Day (Observed)", + "1971-01-04": "New Year's Day (observed)", "1971-02-06": "Eid al-Adha (estimated)", - "1971-02-08": "Eid al-Adha (estimated) (Observed)", + "1971-02-08": "Eid al-Adha (estimated) (observed)", "1971-04-11": "Catholic Easter", - "1971-04-12": "Catholic Easter (Observed)", + "1971-04-12": "Catholic Easter (observed)", "1971-04-18": "Orthodox Easter", - "1971-04-19": "Orthodox Easter (Observed)", + "1971-04-19": "Orthodox Easter (observed)", "1971-05-01": "May Day", - "1971-05-03": "May Day (Observed)", + "1971-05-03": "May Day (observed)", "1971-11-19": "Eid al-Fitr (estimated)", "1971-11-28": "Independence Day", "1971-11-29": "Liberation Day", - "1971-11-30": "Independence Day (Observed)", + "1971-11-30": "Independence Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-27": "Christmas Day (Observed)", + "1971-12-27": "Christmas Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "New Year's Day (observed)", "1972-01-26": "Eid al-Adha (estimated)", "1972-04-02": "Catholic Easter", - "1972-04-03": "Catholic Easter (Observed)", + "1972-04-03": "Catholic Easter (observed)", "1972-04-09": "Orthodox Easter", - "1972-04-10": "Orthodox Easter (Observed)", + "1972-04-10": "Orthodox Easter (observed)", "1972-05-01": "May Day", "1972-11-07": "Eid al-Fitr (estimated)", "1972-11-28": "Independence Day", @@ -319,14 +319,14 @@ "1973-01-01": "New Year's Day", "1973-01-02": "New Year's Day", "1973-01-14": "Eid al-Adha (estimated)", - "1973-01-15": "Eid al-Adha (estimated) (Observed)", + "1973-01-15": "Eid al-Adha (estimated) (observed)", "1973-04-22": "Catholic Easter", - "1973-04-23": "Catholic Easter (Observed)", + "1973-04-23": "Catholic Easter (observed)", "1973-04-29": "Orthodox Easter", - "1973-04-30": "Orthodox Easter (Observed)", + "1973-04-30": "Orthodox Easter (observed)", "1973-05-01": "May Day", "1973-10-27": "Eid al-Fitr (estimated)", - "1973-10-29": "Eid al-Fitr (estimated) (Observed)", + "1973-10-29": "Eid al-Fitr (estimated) (observed)", "1973-11-28": "Independence Day", "1973-11-29": "Liberation Day", "1973-12-25": "Christmas Day", @@ -334,7 +334,7 @@ "1974-01-02": "New Year's Day", "1974-01-03": "Eid al-Adha (estimated)", "1974-04-14": "Catholic Easter; Orthodox Easter", - "1974-04-15": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1974-04-15": "Catholic Easter (observed); Orthodox Easter (observed)", "1974-05-01": "May Day", "1974-10-16": "Eid al-Fitr (estimated)", "1974-11-28": "Independence Day", @@ -344,56 +344,56 @@ "1975-01-01": "New Year's Day", "1975-01-02": "New Year's Day", "1975-03-30": "Catholic Easter", - "1975-03-31": "Catholic Easter (Observed)", + "1975-03-31": "Catholic Easter (observed)", "1975-05-01": "May Day", "1975-05-04": "Orthodox Easter", - "1975-05-05": "Orthodox Easter (Observed)", + "1975-05-05": "Orthodox Easter (observed)", "1975-10-06": "Eid al-Fitr (estimated)", "1975-11-28": "Independence Day", "1975-11-29": "Liberation Day", - "1975-12-01": "Liberation Day (Observed)", + "1975-12-01": "Liberation Day (observed)", "1975-12-13": "Eid al-Adha (estimated)", - "1975-12-15": "Eid al-Adha (estimated) (Observed)", + "1975-12-15": "Eid al-Adha (estimated) (observed)", "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-01-02": "New Year's Day", "1976-04-18": "Catholic Easter", - "1976-04-19": "Catholic Easter (Observed)", + "1976-04-19": "Catholic Easter (observed)", "1976-04-25": "Orthodox Easter", - "1976-04-26": "Orthodox Easter (Observed)", + "1976-04-26": "Orthodox Easter (observed)", "1976-05-01": "May Day", - "1976-05-03": "May Day (Observed)", + "1976-05-03": "May Day (observed)", "1976-09-24": "Eid al-Fitr (estimated)", "1976-11-28": "Independence Day", "1976-11-29": "Liberation Day", - "1976-11-30": "Independence Day (Observed)", + "1976-11-30": "Independence Day (observed)", "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", - "1976-12-27": "Christmas Day (Observed)", + "1976-12-27": "Christmas Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "New Year's Day (observed)", "1977-04-10": "Catholic Easter; Orthodox Easter", - "1977-04-11": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1977-04-11": "Catholic Easter (observed); Orthodox Easter (observed)", "1977-05-01": "May Day", - "1977-05-02": "May Day (Observed)", + "1977-05-02": "May Day (observed)", "1977-09-14": "Eid al-Fitr (estimated)", "1977-11-21": "Eid al-Adha (estimated)", "1977-11-28": "Independence Day", "1977-11-29": "Liberation Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-03-26": "Catholic Easter", - "1978-03-27": "Catholic Easter (Observed)", + "1978-03-27": "Catholic Easter (observed)", "1978-04-30": "Orthodox Easter", "1978-05-01": "May Day", - "1978-05-02": "Orthodox Easter (Observed)", + "1978-05-02": "Orthodox Easter (observed)", "1978-09-03": "Eid al-Fitr (estimated)", - "1978-09-04": "Eid al-Fitr (estimated) (Observed)", + "1978-09-04": "Eid al-Fitr (estimated) (observed)", "1978-11-10": "Eid al-Adha (estimated)", "1978-11-28": "Independence Day", "1978-11-29": "Liberation Day", @@ -401,9 +401,9 @@ "1979-01-01": "New Year's Day", "1979-01-02": "New Year's Day", "1979-04-15": "Catholic Easter", - "1979-04-16": "Catholic Easter (Observed)", + "1979-04-16": "Catholic Easter (observed)", "1979-04-22": "Orthodox Easter", - "1979-04-23": "Orthodox Easter (Observed)", + "1979-04-23": "Orthodox Easter (observed)", "1979-05-01": "May Day", "1979-08-23": "Eid al-Fitr (estimated)", "1979-10-31": "Eid al-Adha (estimated)", @@ -413,71 +413,71 @@ "1980-01-01": "New Year's Day", "1980-01-02": "New Year's Day", "1980-04-06": "Catholic Easter; Orthodox Easter", - "1980-04-07": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1980-04-07": "Catholic Easter (observed); Orthodox Easter (observed)", "1980-05-01": "May Day", "1980-08-12": "Eid al-Fitr (estimated)", "1980-10-19": "Eid al-Adha (estimated)", - "1980-10-20": "Eid al-Adha (estimated) (Observed)", + "1980-10-20": "Eid al-Adha (estimated) (observed)", "1980-11-28": "Independence Day", "1980-11-29": "Liberation Day", - "1980-12-01": "Liberation Day (Observed)", + "1980-12-01": "Liberation Day (observed)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-02": "New Year's Day", "1981-04-19": "Catholic Easter", - "1981-04-20": "Catholic Easter (Observed)", + "1981-04-20": "Catholic Easter (observed)", "1981-04-26": "Orthodox Easter", - "1981-04-27": "Orthodox Easter (Observed)", + "1981-04-27": "Orthodox Easter (observed)", "1981-05-01": "May Day", "1981-08-01": "Eid al-Fitr (estimated)", - "1981-08-03": "Eid al-Fitr (estimated) (Observed)", + "1981-08-03": "Eid al-Fitr (estimated) (observed)", "1981-10-08": "Eid al-Adha (estimated)", "1981-11-28": "Independence Day", "1981-11-29": "Liberation Day", - "1981-11-30": "Independence Day (Observed)", - "1981-12-01": "Liberation Day (Observed)", + "1981-11-30": "Independence Day (observed)", + "1981-12-01": "Liberation Day (observed)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", "1982-01-02": "New Year's Day", - "1982-01-04": "New Year's Day (Observed)", + "1982-01-04": "New Year's Day (observed)", "1982-04-11": "Catholic Easter", - "1982-04-12": "Catholic Easter (Observed)", + "1982-04-12": "Catholic Easter (observed)", "1982-04-18": "Orthodox Easter", - "1982-04-19": "Orthodox Easter (Observed)", + "1982-04-19": "Orthodox Easter (observed)", "1982-05-01": "May Day", - "1982-05-03": "May Day (Observed)", + "1982-05-03": "May Day (observed)", "1982-07-21": "Eid al-Fitr (estimated)", "1982-09-27": "Eid al-Adha (estimated)", "1982-11-28": "Independence Day", "1982-11-29": "Liberation Day", - "1982-11-30": "Independence Day (Observed)", + "1982-11-30": "Independence Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-27": "Christmas Day (Observed)", + "1982-12-27": "Christmas Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "New Year's Day (observed)", "1983-04-03": "Catholic Easter", - "1983-04-04": "Catholic Easter (Observed)", + "1983-04-04": "Catholic Easter (observed)", "1983-05-01": "May Day", - "1983-05-02": "May Day (Observed)", + "1983-05-02": "May Day (observed)", "1983-05-08": "Orthodox Easter", - "1983-05-09": "Orthodox Easter (Observed)", + "1983-05-09": "Orthodox Easter (observed)", "1983-07-11": "Eid al-Fitr (estimated)", "1983-09-17": "Eid al-Adha (estimated)", - "1983-09-19": "Eid al-Adha (estimated) (Observed)", + "1983-09-19": "Eid al-Adha (estimated) (observed)", "1983-11-28": "Independence Day", "1983-11-29": "Liberation Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-04-22": "Catholic Easter; Orthodox Easter", - "1984-04-23": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1984-04-23": "Catholic Easter (observed); Orthodox Easter (observed)", "1984-05-01": "May Day", "1984-06-30": "Eid al-Fitr (estimated)", - "1984-07-02": "Eid al-Fitr (estimated) (Observed)", + "1984-07-02": "Eid al-Fitr (estimated) (observed)", "1984-09-05": "Eid al-Adha (estimated)", "1984-11-28": "Independence Day", "1984-11-29": "Liberation Day", @@ -485,9 +485,9 @@ "1985-01-01": "New Year's Day", "1985-01-02": "New Year's Day", "1985-04-07": "Catholic Easter", - "1985-04-08": "Catholic Easter (Observed)", + "1985-04-08": "Catholic Easter (observed)", "1985-04-14": "Orthodox Easter", - "1985-04-15": "Orthodox Easter (Observed)", + "1985-04-15": "Orthodox Easter (observed)", "1985-05-01": "May Day", "1985-06-19": "Eid al-Fitr (estimated)", "1985-08-26": "Eid al-Adha (estimated)", @@ -497,55 +497,55 @@ "1986-01-01": "New Year's Day", "1986-01-02": "New Year's Day", "1986-03-30": "Catholic Easter", - "1986-03-31": "Catholic Easter (Observed)", + "1986-03-31": "Catholic Easter (observed)", "1986-05-01": "May Day", "1986-05-04": "Orthodox Easter", - "1986-05-05": "Orthodox Easter (Observed)", + "1986-05-05": "Orthodox Easter (observed)", "1986-06-08": "Eid al-Fitr (estimated)", - "1986-06-09": "Eid al-Fitr (estimated) (Observed)", + "1986-06-09": "Eid al-Fitr (estimated) (observed)", "1986-08-15": "Eid al-Adha (estimated)", "1986-11-28": "Independence Day", "1986-11-29": "Liberation Day", - "1986-12-01": "Liberation Day (Observed)", + "1986-12-01": "Liberation Day (observed)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-02": "New Year's Day", "1987-04-19": "Catholic Easter; Orthodox Easter", - "1987-04-20": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1987-04-20": "Catholic Easter (observed); Orthodox Easter (observed)", "1987-05-01": "May Day", "1987-05-28": "Eid al-Fitr (estimated)", "1987-08-04": "Eid al-Adha (estimated)", "1987-11-28": "Independence Day", "1987-11-29": "Liberation Day", - "1987-11-30": "Independence Day (Observed)", - "1987-12-01": "Liberation Day (Observed)", + "1987-11-30": "Independence Day (observed)", + "1987-12-01": "Liberation Day (observed)", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-01-02": "New Year's Day", - "1988-01-04": "New Year's Day (Observed)", + "1988-01-04": "New Year's Day (observed)", "1988-04-03": "Catholic Easter", - "1988-04-04": "Catholic Easter (Observed)", + "1988-04-04": "Catholic Easter (observed)", "1988-04-10": "Orthodox Easter", - "1988-04-11": "Orthodox Easter (Observed)", + "1988-04-11": "Orthodox Easter (observed)", "1988-05-01": "May Day", - "1988-05-02": "May Day (Observed)", + "1988-05-02": "May Day (observed)", "1988-05-16": "Eid al-Fitr (estimated)", "1988-07-23": "Eid al-Adha (estimated)", - "1988-07-25": "Eid al-Adha (estimated) (Observed)", + "1988-07-25": "Eid al-Adha (estimated) (observed)", "1988-11-28": "Independence Day", "1988-11-29": "Liberation Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-03-26": "Catholic Easter", - "1989-03-27": "Catholic Easter (Observed)", + "1989-03-27": "Catholic Easter (observed)", "1989-04-30": "Orthodox Easter", "1989-05-01": "May Day", - "1989-05-02": "Orthodox Easter (Observed)", + "1989-05-02": "Orthodox Easter (observed)", "1989-05-06": "Eid al-Fitr (estimated)", - "1989-05-08": "Eid al-Fitr (estimated) (Observed)", + "1989-05-08": "Eid al-Fitr (estimated) (observed)", "1989-07-13": "Eid al-Adha (estimated)", "1989-11-28": "Independence Day", "1989-11-29": "Liberation Day", @@ -553,7 +553,7 @@ "1990-01-01": "New Year's Day", "1990-01-02": "New Year's Day", "1990-04-15": "Catholic Easter; Orthodox Easter", - "1990-04-16": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "1990-04-16": "Catholic Easter (observed); Orthodox Easter (observed)", "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "May Day", "1990-07-02": "Eid al-Adha (estimated)", @@ -563,70 +563,70 @@ "1991-01-01": "New Year's Day", "1991-01-02": "New Year's Day", "1991-03-31": "Catholic Easter", - "1991-04-01": "Catholic Easter (Observed)", + "1991-04-01": "Catholic Easter (observed)", "1991-04-07": "Orthodox Easter", - "1991-04-08": "Orthodox Easter (Observed)", + "1991-04-08": "Orthodox Easter (observed)", "1991-04-15": "Eid al-Fitr (estimated)", "1991-05-01": "May Day", "1991-06-22": "Eid al-Adha (estimated)", - "1991-06-24": "Eid al-Adha (estimated) (Observed)", + "1991-06-24": "Eid al-Adha (estimated) (observed)", "1991-11-28": "Independence Day", "1991-11-29": "Liberation Day", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-02": "New Year's Day", "1992-04-04": "Eid al-Fitr (estimated)", - "1992-04-06": "Eid al-Fitr (estimated) (Observed)", + "1992-04-06": "Eid al-Fitr (estimated) (observed)", "1992-04-19": "Catholic Easter", - "1992-04-20": "Catholic Easter (Observed)", + "1992-04-20": "Catholic Easter (observed)", "1992-04-26": "Orthodox Easter", - "1992-04-27": "Orthodox Easter (Observed)", + "1992-04-27": "Orthodox Easter (observed)", "1992-05-01": "May Day", "1992-06-11": "Eid al-Adha (estimated)", "1992-11-28": "Independence Day", "1992-11-29": "Liberation Day", - "1992-11-30": "Independence Day (Observed)", - "1992-12-01": "Liberation Day (Observed)", + "1992-11-30": "Independence Day (observed)", + "1992-12-01": "Liberation Day (observed)", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-02": "New Year's Day", - "1993-01-04": "New Year's Day (Observed)", + "1993-01-04": "New Year's Day (observed)", "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-11": "Catholic Easter", - "1993-04-12": "Catholic Easter (Observed)", + "1993-04-12": "Catholic Easter (observed)", "1993-04-18": "Orthodox Easter", - "1993-04-19": "Orthodox Easter (Observed)", + "1993-04-19": "Orthodox Easter (observed)", "1993-05-01": "May Day", - "1993-05-03": "May Day (Observed)", + "1993-05-03": "May Day (observed)", "1993-05-31": "Eid al-Adha (estimated)", "1993-11-28": "Independence Day", "1993-11-29": "Liberation Day", - "1993-11-30": "Independence Day (Observed)", + "1993-11-30": "Independence Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-27": "Christmas Day (Observed)", + "1993-12-27": "Christmas Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "New Year's Day (observed)", "1994-03-13": "Eid al-Fitr (estimated)", - "1994-03-14": "Eid al-Fitr (estimated) (Observed)", + "1994-03-14": "Eid al-Fitr (estimated) (observed)", "1994-04-03": "Catholic Easter", - "1994-04-04": "Catholic Easter (Observed)", + "1994-04-04": "Catholic Easter (observed)", "1994-05-01": "May Day; Orthodox Easter", - "1994-05-02": "May Day (Observed); Orthodox Easter (Observed)", + "1994-05-02": "May Day (observed); Orthodox Easter (observed)", "1994-05-20": "Eid al-Adha (estimated)", "1994-11-28": "Independence Day", "1994-11-29": "Liberation Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-03-02": "Eid al-Fitr (estimated)", "1995-04-16": "Catholic Easter", - "1995-04-17": "Catholic Easter (Observed)", + "1995-04-17": "Catholic Easter (observed)", "1995-04-23": "Orthodox Easter", - "1995-04-24": "Orthodox Easter (Observed)", + "1995-04-24": "Orthodox Easter (observed)", "1995-05-01": "May Day", "1995-05-09": "Eid al-Adha (estimated)", "1995-11-28": "Independence Day", @@ -637,11 +637,11 @@ "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-22": "Nevruz", "1996-04-07": "Catholic Easter", - "1996-04-08": "Catholic Easter (Observed)", + "1996-04-08": "Catholic Easter (observed)", "1996-04-14": "Orthodox Easter", - "1996-04-15": "Orthodox Easter (Observed)", + "1996-04-15": "Orthodox Easter (observed)", "1996-04-27": "Eid al-Adha (estimated)", - "1996-04-29": "Eid al-Adha (estimated) (Observed)", + "1996-04-29": "Eid al-Adha (estimated) (observed)", "1996-05-01": "May Day", "1996-11-28": "Independence Day", "1996-11-29": "Liberation Day", @@ -649,66 +649,66 @@ "1997-01-01": "New Year's Day", "1997-01-02": "New Year's Day", "1997-02-08": "Eid al-Fitr (estimated)", - "1997-02-10": "Eid al-Fitr (estimated) (Observed)", + "1997-02-10": "Eid al-Fitr (estimated) (observed)", "1997-03-22": "Nevruz", - "1997-03-24": "Nevruz (Observed)", + "1997-03-24": "Nevruz (observed)", "1997-03-30": "Catholic Easter", - "1997-03-31": "Catholic Easter (Observed)", + "1997-03-31": "Catholic Easter (observed)", "1997-04-17": "Eid al-Adha (estimated)", "1997-04-27": "Orthodox Easter", - "1997-04-28": "Orthodox Easter (Observed)", + "1997-04-28": "Orthodox Easter (observed)", "1997-05-01": "May Day", "1997-11-28": "Independence Day", "1997-11-29": "Liberation Day", - "1997-12-01": "Liberation Day (Observed)", + "1997-12-01": "Liberation Day (observed)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-01-02": "New Year's Day", "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-22": "Nevruz", - "1998-03-23": "Nevruz (Observed)", + "1998-03-23": "Nevruz (observed)", "1998-04-07": "Eid al-Adha (estimated)", "1998-04-12": "Catholic Easter", - "1998-04-13": "Catholic Easter (Observed)", + "1998-04-13": "Catholic Easter (observed)", "1998-04-19": "Orthodox Easter", - "1998-04-20": "Orthodox Easter (Observed)", + "1998-04-20": "Orthodox Easter (observed)", "1998-05-01": "May Day", "1998-11-28": "Independence Day", "1998-11-29": "Liberation Day", - "1998-11-30": "Independence Day (Observed)", - "1998-12-01": "Liberation Day (Observed)", + "1998-11-30": "Independence Day (observed)", + "1998-12-01": "Liberation Day (observed)", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", "1999-01-02": "New Year's Day", - "1999-01-04": "New Year's Day (Observed)", + "1999-01-04": "New Year's Day (observed)", "1999-01-18": "Eid al-Fitr (estimated)", "1999-03-22": "Nevruz", "1999-03-27": "Eid al-Adha (estimated)", - "1999-03-29": "Eid al-Adha (estimated) (Observed)", + "1999-03-29": "Eid al-Adha (estimated) (observed)", "1999-04-04": "Catholic Easter", - "1999-04-05": "Catholic Easter (Observed)", + "1999-04-05": "Catholic Easter (observed)", "1999-04-11": "Orthodox Easter", - "1999-04-12": "Orthodox Easter (Observed)", + "1999-04-12": "Orthodox Easter (observed)", "1999-05-01": "May Day", - "1999-05-03": "May Day (Observed)", + "1999-05-03": "May Day (observed)", "1999-11-28": "Independence Day", "1999-11-29": "Liberation Day", - "1999-11-30": "Independence Day (Observed)", + "1999-11-30": "Independence Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-27": "Christmas Day (Observed)", + "1999-12-27": "Christmas Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "New Year's Day (observed)", "2000-01-08": "Eid al-Fitr (estimated)", - "2000-01-10": "Eid al-Fitr (estimated) (Observed)", + "2000-01-10": "Eid al-Fitr (estimated) (observed)", "2000-03-16": "Eid al-Adha (estimated)", "2000-03-22": "Nevruz", "2000-04-23": "Catholic Easter", - "2000-04-24": "Catholic Easter (Observed)", + "2000-04-24": "Catholic Easter (observed)", "2000-04-30": "Orthodox Easter", "2000-05-01": "May Day", - "2000-05-02": "Orthodox Easter (Observed)", + "2000-05-02": "Orthodox Easter (observed)", "2000-11-28": "Independence Day", "2000-11-29": "Liberation Day", "2000-12-25": "Christmas Day", @@ -718,22 +718,22 @@ "2001-03-05": "Eid al-Adha (estimated)", "2001-03-22": "Nevruz", "2001-04-15": "Catholic Easter; Orthodox Easter", - "2001-04-16": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2001-04-16": "Catholic Easter (observed); Orthodox Easter (observed)", "2001-05-01": "May Day", "2001-11-28": "Independence Day", "2001-11-29": "Liberation Day", "2001-12-16": "Eid al-Fitr (estimated)", - "2001-12-17": "Eid al-Fitr (estimated) (Observed)", + "2001-12-17": "Eid al-Fitr (estimated) (observed)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-02": "New Year's Day", "2002-02-22": "Eid al-Adha (estimated)", "2002-03-22": "Nevruz", "2002-03-31": "Catholic Easter", - "2002-04-01": "Catholic Easter (Observed)", + "2002-04-01": "Catholic Easter (observed)", "2002-05-01": "May Day", "2002-05-05": "Orthodox Easter", - "2002-05-06": "Orthodox Easter (Observed)", + "2002-05-06": "Orthodox Easter (observed)", "2002-11-28": "Independence Day", "2002-11-29": "Liberation Day", "2002-12-05": "Eid al-Fitr (estimated)", @@ -742,63 +742,63 @@ "2003-01-02": "New Year's Day", "2003-02-11": "Eid al-Adha (estimated)", "2003-03-22": "Nevruz", - "2003-03-24": "Nevruz (Observed)", + "2003-03-24": "Nevruz (observed)", "2003-04-20": "Catholic Easter", - "2003-04-21": "Catholic Easter (Observed)", + "2003-04-21": "Catholic Easter (observed)", "2003-04-27": "Orthodox Easter", - "2003-04-28": "Orthodox Easter (Observed)", + "2003-04-28": "Orthodox Easter (observed)", "2003-05-01": "May Day", "2003-11-25": "Eid al-Fitr (estimated)", "2003-11-28": "Independence Day", "2003-11-29": "Liberation Day", - "2003-12-01": "Liberation Day (Observed)", + "2003-12-01": "Liberation Day (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-01-02": "New Year's Day", "2004-02-01": "Eid al-Adha (estimated)", - "2004-02-02": "Eid al-Adha (estimated) (Observed)", + "2004-02-02": "Eid al-Adha (estimated) (observed)", "2004-03-14": "Summer Day", - "2004-03-15": "Summer Day (Observed)", + "2004-03-15": "Summer Day (observed)", "2004-03-22": "Nevruz", "2004-04-11": "Catholic Easter; Orthodox Easter", - "2004-04-12": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2004-04-12": "Catholic Easter (observed); Orthodox Easter (observed)", "2004-05-01": "May Day", - "2004-05-03": "May Day (Observed)", + "2004-05-03": "May Day (observed)", "2004-10-19": "Mother Teresa Beatification Day", "2004-11-14": "Eid al-Fitr (estimated)", - "2004-11-15": "Eid al-Fitr (estimated) (Observed)", + "2004-11-15": "Eid al-Fitr (estimated) (observed)", "2004-11-28": "Independence Day", "2004-11-29": "Liberation Day", - "2004-11-30": "Independence Day (Observed)", + "2004-11-30": "Independence Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-27": "Christmas Day (Observed)", + "2004-12-27": "Christmas Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "New Year's Day (observed)", "2005-01-21": "Eid al-Adha (estimated)", "2005-03-14": "Summer Day", "2005-03-22": "Nevruz", "2005-03-27": "Catholic Easter", - "2005-03-28": "Catholic Easter (Observed)", + "2005-03-28": "Catholic Easter (observed)", "2005-05-01": "May Day; Orthodox Easter", - "2005-05-02": "May Day (Observed); Orthodox Easter (Observed)", + "2005-05-02": "May Day (observed); Orthodox Easter (observed)", "2005-10-19": "Mother Teresa Beatification Day", "2005-11-03": "Eid al-Fitr (estimated)", "2005-11-28": "Independence Day", "2005-11-29": "Liberation Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-10": "Eid al-Adha (estimated)", "2006-03-14": "Summer Day", "2006-03-22": "Nevruz", "2006-04-16": "Catholic Easter", - "2006-04-17": "Catholic Easter (Observed)", + "2006-04-17": "Catholic Easter (observed)", "2006-04-23": "Orthodox Easter", - "2006-04-24": "Orthodox Easter (Observed)", + "2006-04-24": "Orthodox Easter (observed)", "2006-05-01": "May Day", "2006-10-19": "Mother Teresa Beatification Day", "2006-10-23": "Eid al-Fitr (estimated)", @@ -808,14 +808,14 @@ "2006-12-31": "Eid al-Adha (estimated)", "2007-01-01": "New Year's Day", "2007-01-02": "New Year's Day", - "2007-01-03": "Eid al-Adha (Observed)", + "2007-01-03": "Eid al-Adha (observed)", "2007-03-14": "Summer Day", "2007-03-22": "Nevruz", "2007-04-08": "Catholic Easter; Orthodox Easter", - "2007-04-09": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2007-04-09": "Catholic Easter (observed); Orthodox Easter (observed)", "2007-05-01": "May Day", "2007-10-13": "Eid al-Fitr (estimated)", - "2007-10-15": "Eid al-Fitr (estimated) (Observed)", + "2007-10-15": "Eid al-Fitr (estimated) (observed)", "2007-10-19": "Mother Teresa Beatification Day", "2007-11-28": "Independence Day", "2007-11-29": "Liberation Day", @@ -826,181 +826,181 @@ "2008-03-14": "Summer Day", "2008-03-22": "Nevruz", "2008-03-23": "Catholic Easter", - "2008-03-24": "Nevruz (Observed)", - "2008-03-25": "Catholic Easter (Observed)", + "2008-03-24": "Nevruz (observed)", + "2008-03-25": "Catholic Easter (observed)", "2008-04-27": "Orthodox Easter", - "2008-04-28": "Orthodox Easter (Observed)", + "2008-04-28": "Orthodox Easter (observed)", "2008-05-01": "May Day", "2008-10-01": "Eid al-Fitr (estimated)", "2008-10-19": "Mother Teresa Beatification Day", - "2008-10-20": "Mother Teresa Beatification Day (Observed)", + "2008-10-20": "Mother Teresa Beatification Day (observed)", "2008-11-28": "Independence Day", "2008-11-29": "Liberation Day", - "2008-12-01": "Liberation Day (Observed)", + "2008-12-01": "Liberation Day (observed)", "2008-12-08": "Eid al-Adha (estimated)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-01-02": "New Year's Day", "2009-03-14": "Summer Day", - "2009-03-16": "Summer Day (Observed)", + "2009-03-16": "Summer Day (observed)", "2009-03-22": "Nevruz", - "2009-03-23": "Nevruz (Observed)", + "2009-03-23": "Nevruz (observed)", "2009-04-12": "Catholic Easter", - "2009-04-13": "Catholic Easter (Observed)", + "2009-04-13": "Catholic Easter (observed)", "2009-04-19": "Orthodox Easter", - "2009-04-20": "Orthodox Easter (Observed)", + "2009-04-20": "Orthodox Easter (observed)", "2009-05-01": "May Day", "2009-09-20": "Eid al-Fitr (estimated)", - "2009-09-21": "Eid al-Fitr (estimated) (Observed)", + "2009-09-21": "Eid al-Fitr (estimated) (observed)", "2009-10-19": "Mother Teresa Beatification Day", "2009-11-27": "Eid al-Adha (estimated)", "2009-11-28": "Independence Day", "2009-11-29": "Liberation Day", - "2009-11-30": "Independence Day (Observed)", - "2009-12-01": "Liberation Day (Observed)", + "2009-11-30": "Independence Day (observed)", + "2009-12-01": "Liberation Day (observed)", "2009-12-08": "National Youth Day", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-01-02": "New Year's Day", - "2010-01-04": "New Year's Day (Observed)", + "2010-01-04": "New Year's Day (observed)", "2010-03-14": "Summer Day", - "2010-03-15": "Summer Day (Observed)", + "2010-03-15": "Summer Day (observed)", "2010-03-22": "Nevruz", "2010-04-04": "Catholic Easter; Orthodox Easter", - "2010-04-05": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2010-04-05": "Catholic Easter (observed); Orthodox Easter (observed)", "2010-05-01": "May Day", - "2010-05-03": "May Day (Observed)", + "2010-05-03": "May Day (observed)", "2010-09-10": "Eid al-Fitr (estimated)", "2010-10-19": "Mother Teresa Beatification Day", "2010-11-16": "Eid al-Adha (estimated)", "2010-11-28": "Independence Day", "2010-11-29": "Liberation Day", - "2010-11-30": "Independence Day (Observed)", + "2010-11-30": "Independence Day (observed)", "2010-12-08": "National Youth Day", "2010-12-25": "Christmas Day", - "2010-12-27": "Christmas Day (Observed)", + "2010-12-27": "Christmas Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "New Year's Day (observed)", "2011-03-14": "Summer Day", "2011-03-22": "Nevruz", "2011-04-24": "Catholic Easter; Orthodox Easter", - "2011-04-25": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2011-04-25": "Catholic Easter (observed); Orthodox Easter (observed)", "2011-05-01": "May Day", - "2011-05-02": "May Day (Observed)", + "2011-05-02": "May Day (observed)", "2011-08-30": "Eid al-Fitr (estimated)", "2011-10-19": "Mother Teresa Beatification Day", "2011-11-06": "Eid al-Adha (estimated)", - "2011-11-07": "Eid al-Adha (estimated) (Observed)", + "2011-11-07": "Eid al-Adha (estimated) (observed)", "2011-11-28": "Independence Day", "2011-11-29": "Liberation Day", "2011-12-08": "National Youth Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-03-14": "Summer Day", "2012-03-22": "Nevruz", "2012-04-08": "Catholic Easter", - "2012-04-09": "Catholic Easter (Observed)", + "2012-04-09": "Catholic Easter (observed)", "2012-04-15": "Orthodox Easter", - "2012-04-16": "Orthodox Easter (Observed)", + "2012-04-16": "Orthodox Easter (observed)", "2012-05-01": "May Day", "2012-08-19": "Eid al-Fitr (estimated)", - "2012-08-20": "Eid al-Fitr (estimated) (Observed)", + "2012-08-20": "Eid al-Fitr (estimated) (observed)", "2012-10-19": "Mother Teresa Beatification Day", "2012-10-26": "Eid al-Adha (estimated)", "2012-11-28": "Independence Day", "2012-11-29": "Liberation Day", "2012-12-08": "National Youth Day", - "2012-12-10": "National Youth Day (Observed)", + "2012-12-10": "National Youth Day (observed)", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-02": "New Year's Day", "2013-03-14": "Summer Day", "2013-03-22": "Nevruz", "2013-03-31": "Catholic Easter", - "2013-04-01": "Catholic Easter (Observed)", + "2013-04-01": "Catholic Easter (observed)", "2013-05-01": "May Day", "2013-05-05": "Orthodox Easter", - "2013-05-06": "Orthodox Easter (Observed)", + "2013-05-06": "Orthodox Easter (observed)", "2013-08-08": "Eid al-Fitr (estimated)", "2013-10-15": "Eid al-Adha (estimated)", "2013-10-19": "Mother Teresa Beatification Day", - "2013-10-21": "Mother Teresa Beatification Day (Observed)", + "2013-10-21": "Mother Teresa Beatification Day (observed)", "2013-11-28": "Independence Day", "2013-11-29": "Liberation Day", "2013-12-08": "National Youth Day", - "2013-12-09": "National Youth Day (Observed)", + "2013-12-09": "National Youth Day (observed)", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-02": "New Year's Day", "2014-03-14": "Summer Day", "2014-03-22": "Nevruz", - "2014-03-24": "Nevruz (Observed)", + "2014-03-24": "Nevruz (observed)", "2014-04-20": "Catholic Easter; Orthodox Easter", - "2014-04-21": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2014-04-21": "Catholic Easter (observed); Orthodox Easter (observed)", "2014-05-01": "May Day", "2014-07-28": "Eid al-Fitr (estimated)", "2014-10-04": "Eid al-Adha (estimated)", - "2014-10-06": "Eid al-Adha (estimated) (Observed)", + "2014-10-06": "Eid al-Adha (estimated) (observed)", "2014-10-19": "Mother Teresa Beatification Day", - "2014-10-20": "Mother Teresa Beatification Day (Observed)", + "2014-10-20": "Mother Teresa Beatification Day (observed)", "2014-11-28": "Independence Day", "2014-11-29": "Liberation Day", - "2014-12-01": "Liberation Day (Observed)", + "2014-12-01": "Liberation Day (observed)", "2014-12-08": "National Youth Day", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-02": "New Year's Day", "2015-03-14": "Summer Day", - "2015-03-16": "Summer Day (Observed)", + "2015-03-16": "Summer Day (observed)", "2015-03-22": "Nevruz", - "2015-03-23": "Nevruz (Observed)", + "2015-03-23": "Nevruz (observed)", "2015-04-05": "Catholic Easter", - "2015-04-06": "Catholic Easter (Observed)", + "2015-04-06": "Catholic Easter (observed)", "2015-04-12": "Orthodox Easter", - "2015-04-13": "Orthodox Easter (Observed)", + "2015-04-13": "Orthodox Easter (observed)", "2015-05-01": "May Day", "2015-07-17": "Eid al-Fitr (estimated)", "2015-09-23": "Eid al-Adha (estimated)", "2015-10-19": "Mother Teresa Beatification Day", "2015-11-28": "Independence Day", "2015-11-29": "Liberation Day", - "2015-11-30": "Independence Day (Observed)", - "2015-12-01": "Liberation Day (Observed)", + "2015-11-30": "Independence Day (observed)", + "2015-12-01": "Liberation Day (observed)", "2015-12-08": "National Youth Day", "2015-12-25": "Christmas Day", "2016-01-01": "New Year's Day", "2016-01-02": "New Year's Day", - "2016-01-04": "New Year's Day (Observed)", + "2016-01-04": "New Year's Day (observed)", "2016-03-14": "Summer Day", "2016-03-22": "Nevruz", "2016-03-27": "Catholic Easter", - "2016-03-28": "Catholic Easter (Observed)", + "2016-03-28": "Catholic Easter (observed)", "2016-05-01": "May Day; Orthodox Easter", - "2016-05-02": "May Day (Observed); Orthodox Easter (Observed)", + "2016-05-02": "May Day (observed); Orthodox Easter (observed)", "2016-07-06": "Eid al-Fitr (estimated)", "2016-09-11": "Eid al-Adha (estimated)", - "2016-09-12": "Eid al-Adha (estimated) (Observed)", + "2016-09-12": "Eid al-Adha (estimated) (observed)", "2016-10-19": "Mother Teresa Beatification Day", "2016-11-28": "Independence Day", "2016-11-29": "Liberation Day", "2016-12-08": "National Youth Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-03-14": "Summer Day", "2017-03-22": "Nevruz", "2017-04-16": "Catholic Easter; Orthodox Easter", - "2017-04-17": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2017-04-17": "Catholic Easter (observed); Orthodox Easter (observed)", "2017-05-01": "May Day", "2017-06-25": "Eid al-Fitr (estimated)", - "2017-06-26": "Eid al-Fitr (estimated) (Observed)", + "2017-06-26": "Eid al-Fitr (estimated) (observed)", "2017-09-01": "Eid al-Adha (estimated)", "2017-10-19": "Mother Teresa Beatification Day", "2017-11-28": "Independence Day", @@ -1012,9 +1012,9 @@ "2018-03-14": "Summer Day", "2018-03-22": "Nevruz", "2018-04-01": "Catholic Easter", - "2018-04-02": "Catholic Easter (Observed)", + "2018-04-02": "Catholic Easter (observed)", "2018-04-08": "Orthodox Easter", - "2018-04-09": "Orthodox Easter (Observed)", + "2018-04-09": "Orthodox Easter (observed)", "2018-05-01": "May Day", "2018-06-15": "Eid al-Fitr (estimated)", "2018-08-21": "Eid al-Adha (estimated)", @@ -1022,101 +1022,101 @@ "2018-11-28": "Independence Day", "2018-11-29": "Liberation Day", "2018-12-08": "National Youth Day", - "2018-12-10": "National Youth Day (Observed)", + "2018-12-10": "National Youth Day (observed)", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-01-02": "New Year's Day", "2019-03-14": "Summer Day", "2019-03-22": "Nevruz", "2019-04-21": "Catholic Easter", - "2019-04-22": "Catholic Easter (Observed)", + "2019-04-22": "Catholic Easter (observed)", "2019-04-28": "Orthodox Easter", - "2019-04-29": "Orthodox Easter (Observed)", + "2019-04-29": "Orthodox Easter (observed)", "2019-05-01": "May Day", "2019-06-04": "Eid al-Fitr (estimated)", "2019-08-11": "Eid al-Adha (estimated)", - "2019-08-12": "Eid al-Adha (estimated) (Observed)", + "2019-08-12": "Eid al-Adha (estimated) (observed)", "2019-09-05": "Mother Teresa Canonization Day", "2019-11-28": "Independence Day", "2019-11-29": "Liberation Day", "2019-12-08": "National Youth Day", - "2019-12-09": "National Youth Day (Observed)", + "2019-12-09": "National Youth Day (observed)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-02": "New Year's Day", "2020-03-14": "Summer Day", - "2020-03-16": "Summer Day (Observed)", + "2020-03-16": "Summer Day (observed)", "2020-03-22": "Nevruz", - "2020-03-23": "Nevruz (Observed)", + "2020-03-23": "Nevruz (observed)", "2020-04-12": "Catholic Easter", - "2020-04-13": "Catholic Easter (Observed)", + "2020-04-13": "Catholic Easter (observed)", "2020-04-19": "Orthodox Easter", - "2020-04-20": "Orthodox Easter (Observed)", + "2020-04-20": "Orthodox Easter (observed)", "2020-05-01": "May Day", "2020-05-24": "Eid al-Fitr (estimated)", - "2020-05-25": "Eid al-Fitr (estimated) (Observed)", + "2020-05-25": "Eid al-Fitr (estimated) (observed)", "2020-07-31": "Eid al-Adha (estimated)", "2020-09-05": "Mother Teresa Canonization Day", - "2020-09-07": "Mother Teresa Canonization Day (Observed)", + "2020-09-07": "Mother Teresa Canonization Day (observed)", "2020-11-28": "Independence Day", "2020-11-29": "Liberation Day", - "2020-11-30": "Independence Day (Observed)", - "2020-12-01": "Liberation Day (Observed)", + "2020-11-30": "Independence Day (observed)", + "2020-12-01": "Liberation Day (observed)", "2020-12-08": "National Youth Day", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", "2021-01-02": "New Year's Day", - "2021-01-04": "New Year's Day (Observed)", + "2021-01-04": "New Year's Day (observed)", "2021-03-14": "Summer Day", - "2021-03-15": "Summer Day (Observed)", + "2021-03-15": "Summer Day (observed)", "2021-03-22": "Nevruz", "2021-04-04": "Catholic Easter", - "2021-04-05": "Catholic Easter (Observed)", + "2021-04-05": "Catholic Easter (observed)", "2021-05-01": "May Day", "2021-05-02": "Orthodox Easter", - "2021-05-03": "May Day (Observed)", - "2021-05-04": "Orthodox Easter (Observed)", + "2021-05-03": "May Day (observed)", + "2021-05-04": "Orthodox Easter (observed)", "2021-05-13": "Eid al-Fitr (estimated)", "2021-07-20": "Eid al-Adha (estimated)", "2021-09-05": "Mother Teresa Canonization Day", - "2021-09-06": "Mother Teresa Canonization Day (Observed)", + "2021-09-06": "Mother Teresa Canonization Day (observed)", "2021-11-28": "Independence Day", "2021-11-29": "Liberation Day", - "2021-11-30": "Independence Day (Observed)", + "2021-11-30": "Independence Day (observed)", "2021-12-08": "National Youth Day", "2021-12-25": "Christmas Day", - "2021-12-27": "Christmas Day (Observed)", + "2021-12-27": "Christmas Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "New Year's Day (observed)", "2022-03-14": "Summer Day", "2022-03-21": "Public Holiday", "2022-03-22": "Nevruz", "2022-04-17": "Catholic Easter", - "2022-04-18": "Catholic Easter (Observed)", + "2022-04-18": "Catholic Easter (observed)", "2022-04-24": "Orthodox Easter", - "2022-04-25": "Orthodox Easter (Observed)", + "2022-04-25": "Orthodox Easter (observed)", "2022-05-01": "May Day", "2022-05-02": "Eid al-Fitr (estimated)", - "2022-05-03": "May Day (Observed)", + "2022-05-03": "May Day (observed)", "2022-07-09": "Eid al-Adha (estimated)", - "2022-07-11": "Eid al-Adha (estimated) (Observed)", + "2022-07-11": "Eid al-Adha (estimated) (observed)", "2022-09-05": "Mother Teresa Canonization Day", "2022-11-28": "Independence Day", "2022-11-29": "Liberation Day", "2022-12-08": "National Youth Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-03-14": "Summer Day", "2023-03-22": "Nevruz", "2023-04-09": "Catholic Easter", - "2023-04-10": "Catholic Easter (Observed)", + "2023-04-10": "Catholic Easter (observed)", "2023-04-16": "Orthodox Easter", - "2023-04-17": "Orthodox Easter (Observed)", + "2023-04-17": "Orthodox Easter (observed)", "2023-04-21": "Eid al-Fitr (estimated)", "2023-05-01": "May Day", "2023-06-28": "Eid al-Adha (estimated)", @@ -1130,90 +1130,90 @@ "2024-03-14": "Summer Day", "2024-03-22": "Nevruz", "2024-03-31": "Catholic Easter", - "2024-04-01": "Catholic Easter (Observed)", + "2024-04-01": "Catholic Easter (observed)", "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "May Day", "2024-05-05": "Orthodox Easter", - "2024-05-06": "Orthodox Easter (Observed)", + "2024-05-06": "Orthodox Easter (observed)", "2024-06-16": "Eid al-Adha (estimated)", - "2024-06-17": "Eid al-Adha (estimated) (Observed)", + "2024-06-17": "Eid al-Adha (estimated) (observed)", "2024-09-05": "Mother Teresa Canonization Day", "2024-11-28": "Independence Day", "2024-11-29": "Liberation Day", "2024-12-08": "National Youth Day", - "2024-12-09": "National Youth Day (Observed)", + "2024-12-09": "National Youth Day (observed)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-02": "New Year's Day", "2025-03-14": "Summer Day", "2025-03-22": "Nevruz", - "2025-03-24": "Nevruz (Observed)", + "2025-03-24": "Nevruz (observed)", "2025-03-30": "Eid al-Fitr (estimated)", - "2025-03-31": "Eid al-Fitr (estimated) (Observed)", + "2025-03-31": "Eid al-Fitr (estimated) (observed)", "2025-04-20": "Catholic Easter; Orthodox Easter", - "2025-04-21": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2025-04-21": "Catholic Easter (observed); Orthodox Easter (observed)", "2025-05-01": "May Day", "2025-06-06": "Eid al-Adha (estimated)", "2025-09-05": "Mother Teresa Canonization Day", "2025-11-28": "Independence Day", "2025-11-29": "Liberation Day", - "2025-12-01": "Liberation Day (Observed)", + "2025-12-01": "Liberation Day (observed)", "2025-12-08": "National Youth Day", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-01-02": "New Year's Day", "2026-03-14": "Summer Day", - "2026-03-16": "Summer Day (Observed)", + "2026-03-16": "Summer Day (observed)", "2026-03-20": "Eid al-Fitr (estimated)", "2026-03-22": "Nevruz", - "2026-03-23": "Nevruz (Observed)", + "2026-03-23": "Nevruz (observed)", "2026-04-05": "Catholic Easter", - "2026-04-06": "Catholic Easter (Observed)", + "2026-04-06": "Catholic Easter (observed)", "2026-04-12": "Orthodox Easter", - "2026-04-13": "Orthodox Easter (Observed)", + "2026-04-13": "Orthodox Easter (observed)", "2026-05-01": "May Day", "2026-05-27": "Eid al-Adha (estimated)", "2026-09-05": "Mother Teresa Canonization Day", - "2026-09-07": "Mother Teresa Canonization Day (Observed)", + "2026-09-07": "Mother Teresa Canonization Day (observed)", "2026-11-28": "Independence Day", "2026-11-29": "Liberation Day", - "2026-11-30": "Independence Day (Observed)", - "2026-12-01": "Liberation Day (Observed)", + "2026-11-30": "Independence Day (observed)", + "2026-12-01": "Liberation Day (observed)", "2026-12-08": "National Youth Day", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-01-02": "New Year's Day", - "2027-01-04": "New Year's Day (Observed)", + "2027-01-04": "New Year's Day (observed)", "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-14": "Summer Day", - "2027-03-15": "Summer Day (Observed)", + "2027-03-15": "Summer Day (observed)", "2027-03-22": "Nevruz", "2027-03-28": "Catholic Easter", - "2027-03-29": "Catholic Easter (Observed)", + "2027-03-29": "Catholic Easter (observed)", "2027-05-01": "May Day", "2027-05-02": "Orthodox Easter", - "2027-05-03": "May Day (Observed)", - "2027-05-04": "Orthodox Easter (Observed)", + "2027-05-03": "May Day (observed)", + "2027-05-04": "Orthodox Easter (observed)", "2027-05-16": "Eid al-Adha (estimated)", - "2027-05-17": "Eid al-Adha (estimated) (Observed)", + "2027-05-17": "Eid al-Adha (estimated) (observed)", "2027-09-05": "Mother Teresa Canonization Day", - "2027-09-06": "Mother Teresa Canonization Day (Observed)", + "2027-09-06": "Mother Teresa Canonization Day (observed)", "2027-11-28": "Independence Day", "2027-11-29": "Liberation Day", - "2027-11-30": "Independence Day (Observed)", + "2027-11-30": "Independence Day (observed)", "2027-12-08": "National Youth Day", "2027-12-25": "Christmas Day", - "2027-12-27": "Christmas Day (Observed)", + "2027-12-27": "Christmas Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "New Year's Day (observed)", "2028-02-26": "Eid al-Fitr (estimated)", - "2028-02-28": "Eid al-Fitr (estimated) (Observed)", + "2028-02-28": "Eid al-Fitr (estimated) (observed)", "2028-03-14": "Summer Day", "2028-03-22": "Nevruz", "2028-04-16": "Catholic Easter; Orthodox Easter", - "2028-04-17": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2028-04-17": "Catholic Easter (observed); Orthodox Easter (observed)", "2028-05-01": "May Day", "2028-05-05": "Eid al-Adha (estimated)", "2028-09-05": "Mother Teresa Canonization Day", @@ -1227,16 +1227,16 @@ "2029-03-14": "Summer Day", "2029-03-22": "Nevruz", "2029-04-01": "Catholic Easter", - "2029-04-02": "Catholic Easter (Observed)", + "2029-04-02": "Catholic Easter (observed)", "2029-04-08": "Orthodox Easter", - "2029-04-09": "Orthodox Easter (Observed)", + "2029-04-09": "Orthodox Easter (observed)", "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "May Day", "2029-09-05": "Mother Teresa Canonization Day", "2029-11-28": "Independence Day", "2029-11-29": "Liberation Day", "2029-12-08": "National Youth Day", - "2029-12-10": "National Youth Day (Observed)", + "2029-12-10": "National Youth Day (observed)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-02": "New Year's Day", @@ -1244,82 +1244,82 @@ "2030-03-14": "Summer Day", "2030-03-22": "Nevruz", "2030-04-13": "Eid al-Adha (estimated)", - "2030-04-15": "Eid al-Adha (estimated) (Observed)", + "2030-04-15": "Eid al-Adha (estimated) (observed)", "2030-04-21": "Catholic Easter", - "2030-04-22": "Catholic Easter (Observed)", + "2030-04-22": "Catholic Easter (observed)", "2030-04-28": "Orthodox Easter", - "2030-04-29": "Orthodox Easter (Observed)", + "2030-04-29": "Orthodox Easter (observed)", "2030-05-01": "May Day", "2030-09-05": "Mother Teresa Canonization Day", "2030-11-28": "Independence Day", "2030-11-29": "Liberation Day", "2030-12-08": "National Youth Day", - "2030-12-09": "National Youth Day (Observed)", + "2030-12-09": "National Youth Day (observed)", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-02": "New Year's Day", "2031-01-24": "Eid al-Fitr (estimated)", "2031-03-14": "Summer Day", "2031-03-22": "Nevruz", - "2031-03-24": "Nevruz (Observed)", + "2031-03-24": "Nevruz (observed)", "2031-04-02": "Eid al-Adha (estimated)", "2031-04-13": "Catholic Easter; Orthodox Easter", - "2031-04-14": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2031-04-14": "Catholic Easter (observed); Orthodox Easter (observed)", "2031-05-01": "May Day", "2031-09-05": "Mother Teresa Canonization Day", "2031-11-28": "Independence Day", "2031-11-29": "Liberation Day", - "2031-12-01": "Liberation Day (Observed)", + "2031-12-01": "Liberation Day (observed)", "2031-12-08": "National Youth Day", "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", "2032-01-02": "New Year's Day", "2032-01-14": "Eid al-Fitr (estimated)", "2032-03-14": "Summer Day", - "2032-03-15": "Summer Day (Observed)", + "2032-03-15": "Summer Day (observed)", "2032-03-22": "Eid al-Adha (estimated); Nevruz", "2032-03-28": "Catholic Easter", - "2032-03-29": "Catholic Easter (Observed)", + "2032-03-29": "Catholic Easter (observed)", "2032-05-01": "May Day", "2032-05-02": "Orthodox Easter", - "2032-05-03": "May Day (Observed)", - "2032-05-04": "Orthodox Easter (Observed)", + "2032-05-03": "May Day (observed)", + "2032-05-04": "Orthodox Easter (observed)", "2032-09-05": "Mother Teresa Canonization Day", - "2032-09-06": "Mother Teresa Canonization Day (Observed)", + "2032-09-06": "Mother Teresa Canonization Day (observed)", "2032-11-28": "Independence Day", "2032-11-29": "Liberation Day", - "2032-11-30": "Independence Day (Observed)", + "2032-11-30": "Independence Day (observed)", "2032-12-08": "National Youth Day", "2032-12-25": "Christmas Day", - "2032-12-27": "Christmas Day (Observed)", + "2032-12-27": "Christmas Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Eid al-Fitr (estimated) (Observed); New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Eid al-Fitr (estimated) (observed); New Year's Day (observed)", "2033-03-11": "Eid al-Adha (estimated)", "2033-03-14": "Summer Day", "2033-03-22": "Nevruz", "2033-04-17": "Catholic Easter", - "2033-04-18": "Catholic Easter (Observed)", + "2033-04-18": "Catholic Easter (observed)", "2033-04-24": "Orthodox Easter", - "2033-04-25": "Orthodox Easter (Observed)", + "2033-04-25": "Orthodox Easter (observed)", "2033-05-01": "May Day", - "2033-05-02": "May Day (Observed)", + "2033-05-02": "May Day (observed)", "2033-09-05": "Mother Teresa Canonization Day", "2033-11-28": "Independence Day", "2033-11-29": "Liberation Day", "2033-12-08": "National Youth Day", "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-03-01": "Eid al-Adha (estimated)", "2034-03-14": "Summer Day", "2034-03-22": "Nevruz", "2034-04-09": "Catholic Easter; Orthodox Easter", - "2034-04-10": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2034-04-10": "Catholic Easter (observed); Orthodox Easter (observed)", "2034-05-01": "May Day", "2034-09-05": "Mother Teresa Canonization Day", "2034-11-28": "Independence Day", @@ -1330,94 +1330,94 @@ "2035-01-01": "New Year's Day", "2035-01-02": "New Year's Day", "2035-02-18": "Eid al-Adha (estimated)", - "2035-02-19": "Eid al-Adha (estimated) (Observed)", + "2035-02-19": "Eid al-Adha (estimated) (observed)", "2035-03-14": "Summer Day", "2035-03-22": "Nevruz", "2035-03-25": "Catholic Easter", - "2035-03-26": "Catholic Easter (Observed)", + "2035-03-26": "Catholic Easter (observed)", "2035-04-29": "Orthodox Easter", - "2035-04-30": "Orthodox Easter (Observed)", + "2035-04-30": "Orthodox Easter (observed)", "2035-05-01": "May Day", "2035-09-05": "Mother Teresa Canonization Day", "2035-11-28": "Independence Day", "2035-11-29": "Liberation Day", "2035-12-01": "Eid al-Fitr (estimated)", - "2035-12-03": "Eid al-Fitr (estimated) (Observed)", + "2035-12-03": "Eid al-Fitr (estimated) (observed)", "2035-12-08": "National Youth Day", - "2035-12-10": "National Youth Day (Observed)", + "2035-12-10": "National Youth Day (observed)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-02": "New Year's Day", "2036-02-07": "Eid al-Adha (estimated)", "2036-03-14": "Summer Day", "2036-03-22": "Nevruz", - "2036-03-24": "Nevruz (Observed)", + "2036-03-24": "Nevruz (observed)", "2036-04-13": "Catholic Easter", - "2036-04-14": "Catholic Easter (Observed)", + "2036-04-14": "Catholic Easter (observed)", "2036-04-20": "Orthodox Easter", - "2036-04-21": "Orthodox Easter (Observed)", + "2036-04-21": "Orthodox Easter (observed)", "2036-05-01": "May Day", "2036-09-05": "Mother Teresa Canonization Day", "2036-11-19": "Eid al-Fitr (estimated)", "2036-11-28": "Independence Day", "2036-11-29": "Liberation Day", - "2036-12-01": "Liberation Day (Observed)", + "2036-12-01": "Liberation Day (observed)", "2036-12-08": "National Youth Day", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-02": "New Year's Day", "2037-01-26": "Eid al-Adha (estimated)", "2037-03-14": "Summer Day", - "2037-03-16": "Summer Day (Observed)", + "2037-03-16": "Summer Day (observed)", "2037-03-22": "Nevruz", - "2037-03-23": "Nevruz (Observed)", + "2037-03-23": "Nevruz (observed)", "2037-04-05": "Catholic Easter; Orthodox Easter", - "2037-04-06": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2037-04-06": "Catholic Easter (observed); Orthodox Easter (observed)", "2037-05-01": "May Day", "2037-09-05": "Mother Teresa Canonization Day", - "2037-09-07": "Mother Teresa Canonization Day (Observed)", + "2037-09-07": "Mother Teresa Canonization Day (observed)", "2037-11-08": "Eid al-Fitr (estimated)", - "2037-11-09": "Eid al-Fitr (estimated) (Observed)", + "2037-11-09": "Eid al-Fitr (estimated) (observed)", "2037-11-28": "Independence Day", "2037-11-29": "Liberation Day", - "2037-11-30": "Independence Day (Observed)", - "2037-12-01": "Liberation Day (Observed)", + "2037-11-30": "Independence Day (observed)", + "2037-12-01": "Liberation Day (observed)", "2037-12-08": "National Youth Day", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-02": "New Year's Day", - "2038-01-04": "New Year's Day (Observed)", + "2038-01-04": "New Year's Day (observed)", "2038-01-16": "Eid al-Adha (estimated)", - "2038-01-18": "Eid al-Adha (estimated) (Observed)", + "2038-01-18": "Eid al-Adha (estimated) (observed)", "2038-03-14": "Summer Day", - "2038-03-15": "Summer Day (Observed)", + "2038-03-15": "Summer Day (observed)", "2038-03-22": "Nevruz", "2038-04-25": "Catholic Easter; Orthodox Easter", - "2038-04-26": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2038-04-26": "Catholic Easter (observed); Orthodox Easter (observed)", "2038-05-01": "May Day", - "2038-05-03": "May Day (Observed)", + "2038-05-03": "May Day (observed)", "2038-09-05": "Mother Teresa Canonization Day", - "2038-09-06": "Mother Teresa Canonization Day (Observed)", + "2038-09-06": "Mother Teresa Canonization Day (observed)", "2038-10-29": "Eid al-Fitr (estimated)", "2038-11-28": "Independence Day", "2038-11-29": "Liberation Day", - "2038-11-30": "Independence Day (Observed)", + "2038-11-30": "Independence Day (observed)", "2038-12-08": "National Youth Day", "2038-12-25": "Christmas Day", - "2038-12-27": "Christmas Day (Observed)", + "2038-12-27": "Christmas Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "New Year's Day (observed)", "2039-01-05": "Eid al-Adha (estimated)", "2039-03-14": "Summer Day", "2039-03-22": "Nevruz", "2039-04-10": "Catholic Easter", - "2039-04-11": "Catholic Easter (Observed)", + "2039-04-11": "Catholic Easter (observed)", "2039-04-17": "Orthodox Easter", - "2039-04-18": "Orthodox Easter (Observed)", + "2039-04-18": "Orthodox Easter (observed)", "2039-05-01": "May Day", - "2039-05-02": "May Day (Observed)", + "2039-05-02": "May Day (observed)", "2039-09-05": "Mother Teresa Canonization Day", "2039-10-19": "Eid al-Fitr (estimated)", "2039-11-28": "Independence Day", @@ -1425,24 +1425,24 @@ "2039-12-08": "National Youth Day", "2039-12-25": "Christmas Day", "2039-12-26": "Eid al-Adha (estimated)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-03-14": "Summer Day", "2040-03-22": "Nevruz", "2040-04-01": "Catholic Easter", - "2040-04-02": "Catholic Easter (Observed)", + "2040-04-02": "Catholic Easter (observed)", "2040-05-01": "May Day", "2040-05-06": "Orthodox Easter", - "2040-05-07": "Orthodox Easter (Observed)", + "2040-05-07": "Orthodox Easter (observed)", "2040-09-05": "Mother Teresa Canonization Day", "2040-10-07": "Eid al-Fitr (estimated)", - "2040-10-08": "Eid al-Fitr (estimated) (Observed)", + "2040-10-08": "Eid al-Fitr (estimated) (observed)", "2040-11-28": "Independence Day", "2040-11-29": "Liberation Day", "2040-12-08": "National Youth Day", - "2040-12-10": "National Youth Day (Observed)", + "2040-12-10": "National Youth Day (observed)", "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1450,7 +1450,7 @@ "2041-03-14": "Summer Day", "2041-03-22": "Nevruz", "2041-04-21": "Catholic Easter; Orthodox Easter", - "2041-04-22": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2041-04-22": "Catholic Easter (observed); Orthodox Easter (observed)", "2041-05-01": "May Day", "2041-09-05": "Mother Teresa Canonization Day", "2041-09-26": "Eid al-Fitr (estimated)", @@ -1458,59 +1458,59 @@ "2041-11-29": "Liberation Day", "2041-12-04": "Eid al-Adha (estimated)", "2041-12-08": "National Youth Day", - "2041-12-09": "National Youth Day (Observed)", + "2041-12-09": "National Youth Day (observed)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-02": "New Year's Day", "2042-03-14": "Summer Day", "2042-03-22": "Nevruz", - "2042-03-24": "Nevruz (Observed)", + "2042-03-24": "Nevruz (observed)", "2042-04-06": "Catholic Easter", - "2042-04-07": "Catholic Easter (Observed)", + "2042-04-07": "Catholic Easter (observed)", "2042-04-13": "Orthodox Easter", - "2042-04-14": "Orthodox Easter (Observed)", + "2042-04-14": "Orthodox Easter (observed)", "2042-05-01": "May Day", "2042-09-05": "Mother Teresa Canonization Day", "2042-09-15": "Eid al-Fitr (estimated)", "2042-11-23": "Eid al-Adha (estimated)", - "2042-11-24": "Eid al-Adha (estimated) (Observed)", + "2042-11-24": "Eid al-Adha (estimated) (observed)", "2042-11-28": "Independence Day", "2042-11-29": "Liberation Day", - "2042-12-01": "Liberation Day (Observed)", + "2042-12-01": "Liberation Day (observed)", "2042-12-08": "National Youth Day", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-01-02": "New Year's Day", "2043-03-14": "Summer Day", - "2043-03-16": "Summer Day (Observed)", + "2043-03-16": "Summer Day (observed)", "2043-03-22": "Nevruz", - "2043-03-23": "Nevruz (Observed)", + "2043-03-23": "Nevruz (observed)", "2043-03-29": "Catholic Easter", - "2043-03-30": "Catholic Easter (Observed)", + "2043-03-30": "Catholic Easter (observed)", "2043-05-01": "May Day", "2043-05-03": "Orthodox Easter", - "2043-05-04": "Orthodox Easter (Observed)", + "2043-05-04": "Orthodox Easter (observed)", "2043-09-04": "Eid al-Fitr (estimated)", "2043-09-05": "Mother Teresa Canonization Day", - "2043-09-07": "Mother Teresa Canonization Day (Observed)", + "2043-09-07": "Mother Teresa Canonization Day (observed)", "2043-11-12": "Eid al-Adha (estimated)", "2043-11-28": "Independence Day", "2043-11-29": "Liberation Day", - "2043-11-30": "Independence Day (Observed)", - "2043-12-01": "Liberation Day (Observed)", + "2043-11-30": "Independence Day (observed)", + "2043-12-01": "Liberation Day (observed)", "2043-12-08": "National Youth Day", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-01-02": "New Year's Day", - "2044-01-04": "New Year's Day (Observed)", + "2044-01-04": "New Year's Day (observed)", "2044-03-14": "Summer Day", "2044-03-22": "Nevruz", "2044-04-17": "Catholic Easter", - "2044-04-18": "Catholic Easter (Observed)", + "2044-04-18": "Catholic Easter (observed)", "2044-04-24": "Orthodox Easter", - "2044-04-25": "Orthodox Easter (Observed)", + "2044-04-25": "Orthodox Easter (observed)", "2044-05-01": "May Day", - "2044-05-02": "May Day (Observed)", + "2044-05-02": "May Day (observed)", "2044-08-24": "Eid al-Fitr (estimated)", "2044-09-05": "Mother Teresa Canonization Day", "2044-10-31": "Eid al-Adha (estimated)", @@ -1518,19 +1518,19 @@ "2044-11-29": "Liberation Day", "2044-12-08": "National Youth Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-03-14": "Summer Day", "2045-03-22": "Nevruz", "2045-04-09": "Catholic Easter; Orthodox Easter", - "2045-04-10": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2045-04-10": "Catholic Easter (observed); Orthodox Easter (observed)", "2045-05-01": "May Day", "2045-08-14": "Eid al-Fitr (estimated)", "2045-09-05": "Mother Teresa Canonization Day", "2045-10-21": "Eid al-Adha (estimated)", - "2045-10-23": "Eid al-Adha (estimated) (Observed)", + "2045-10-23": "Eid al-Adha (estimated) (observed)", "2045-11-28": "Independence Day", "2045-11-29": "Liberation Day", "2045-12-08": "National Youth Day", @@ -1540,9 +1540,9 @@ "2046-03-14": "Summer Day", "2046-03-22": "Nevruz", "2046-03-25": "Catholic Easter", - "2046-03-26": "Catholic Easter (Observed)", + "2046-03-26": "Catholic Easter (observed)", "2046-04-29": "Orthodox Easter", - "2046-04-30": "Orthodox Easter (Observed)", + "2046-04-30": "Orthodox Easter (observed)", "2046-05-01": "May Day", "2046-08-03": "Eid al-Fitr (estimated)", "2046-09-05": "Mother Teresa Canonization Day", @@ -1550,16 +1550,16 @@ "2046-11-28": "Independence Day", "2046-11-29": "Liberation Day", "2046-12-08": "National Youth Day", - "2046-12-10": "National Youth Day (Observed)", + "2046-12-10": "National Youth Day (observed)", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-01-02": "New Year's Day", "2047-03-14": "Summer Day", "2047-03-22": "Nevruz", "2047-04-14": "Catholic Easter", - "2047-04-15": "Catholic Easter (Observed)", + "2047-04-15": "Catholic Easter (observed)", "2047-04-21": "Orthodox Easter", - "2047-04-22": "Orthodox Easter (Observed)", + "2047-04-22": "Orthodox Easter (observed)", "2047-05-01": "May Day", "2047-07-24": "Eid al-Fitr (estimated)", "2047-09-05": "Mother Teresa Canonization Day", @@ -1567,70 +1567,70 @@ "2047-11-28": "Independence Day", "2047-11-29": "Liberation Day", "2047-12-08": "National Youth Day", - "2047-12-09": "National Youth Day (Observed)", + "2047-12-09": "National Youth Day (observed)", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-01-02": "New Year's Day", "2048-03-14": "Summer Day", - "2048-03-16": "Summer Day (Observed)", + "2048-03-16": "Summer Day (observed)", "2048-03-22": "Nevruz", - "2048-03-23": "Nevruz (Observed)", + "2048-03-23": "Nevruz (observed)", "2048-04-05": "Catholic Easter; Orthodox Easter", - "2048-04-06": "Catholic Easter (Observed); Orthodox Easter (Observed)", + "2048-04-06": "Catholic Easter (observed); Orthodox Easter (observed)", "2048-05-01": "May Day", "2048-07-12": "Eid al-Fitr (estimated)", - "2048-07-13": "Eid al-Fitr (estimated) (Observed)", + "2048-07-13": "Eid al-Fitr (estimated) (observed)", "2048-09-05": "Mother Teresa Canonization Day", - "2048-09-07": "Mother Teresa Canonization Day (Observed)", + "2048-09-07": "Mother Teresa Canonization Day (observed)", "2048-09-19": "Eid al-Adha (estimated)", - "2048-09-21": "Eid al-Adha (estimated) (Observed)", + "2048-09-21": "Eid al-Adha (estimated) (observed)", "2048-11-28": "Independence Day", "2048-11-29": "Liberation Day", - "2048-11-30": "Independence Day (Observed)", - "2048-12-01": "Liberation Day (Observed)", + "2048-11-30": "Independence Day (observed)", + "2048-12-01": "Liberation Day (observed)", "2048-12-08": "National Youth Day", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-01-02": "New Year's Day", - "2049-01-04": "New Year's Day (Observed)", + "2049-01-04": "New Year's Day (observed)", "2049-03-14": "Summer Day", - "2049-03-15": "Summer Day (Observed)", + "2049-03-15": "Summer Day (observed)", "2049-03-22": "Nevruz", "2049-04-18": "Catholic Easter", - "2049-04-19": "Catholic Easter (Observed)", + "2049-04-19": "Catholic Easter (observed)", "2049-04-25": "Orthodox Easter", - "2049-04-26": "Orthodox Easter (Observed)", + "2049-04-26": "Orthodox Easter (observed)", "2049-05-01": "May Day", - "2049-05-03": "May Day (Observed)", + "2049-05-03": "May Day (observed)", "2049-07-01": "Eid al-Fitr (estimated)", "2049-09-05": "Mother Teresa Canonization Day", - "2049-09-06": "Mother Teresa Canonization Day (Observed)", + "2049-09-06": "Mother Teresa Canonization Day (observed)", "2049-09-08": "Eid al-Adha (estimated)", "2049-11-28": "Independence Day", "2049-11-29": "Liberation Day", - "2049-11-30": "Independence Day (Observed)", + "2049-11-30": "Independence Day (observed)", "2049-12-08": "National Youth Day", "2049-12-25": "Christmas Day", - "2049-12-27": "Christmas Day (Observed)", + "2049-12-27": "Christmas Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "New Year's Day (observed)", "2050-03-14": "Summer Day", "2050-03-22": "Nevruz", "2050-04-10": "Catholic Easter", - "2050-04-11": "Catholic Easter (Observed)", + "2050-04-11": "Catholic Easter (observed)", "2050-04-17": "Orthodox Easter", - "2050-04-18": "Orthodox Easter (Observed)", + "2050-04-18": "Orthodox Easter (observed)", "2050-05-01": "May Day", - "2050-05-02": "May Day (Observed)", + "2050-05-02": "May Day (observed)", "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-28": "Eid al-Adha (estimated)", - "2050-08-29": "Eid al-Adha (estimated) (Observed)", + "2050-08-29": "Eid al-Adha (estimated) (observed)", "2050-09-05": "Mother Teresa Canonization Day", "2050-11-28": "Independence Day", "2050-11-29": "Liberation Day", "2050-12-08": "National Youth Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/AR_COMMON.json b/snapshots/countries/AR_COMMON.json index 1cd54b5b9..cc10a7a10 100644 --- a/snapshots/countries/AR_COMMON.json +++ b/snapshots/countries/AR_COMMON.json @@ -685,7 +685,7 @@ "2010-06-21": "Pass to the Immortality of General Don Manuel Belgrano", "2010-07-09": "Independence Day", "2010-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", - "2010-10-11": "Respect for Cultural Diversity Day (Observed)", + "2010-10-11": "Respect for Cultural Diversity Day (observed)", "2010-11-20": "National Sovereignty Day", "2010-12-08": "Immaculate Conception", "2010-12-25": "Christmas", @@ -701,7 +701,7 @@ "2011-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2011-07-09": "Independence Day", "2011-08-22": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", - "2011-10-10": "Respect for Cultural Diversity Day (Observed)", + "2011-10-10": "Respect for Cultural Diversity Day (observed)", "2011-11-20": "National Sovereignty Day", "2011-12-08": "Immaculate Conception", "2011-12-09": "Bridge Public Holiday", @@ -718,10 +718,10 @@ "2012-05-25": "May Revolution Day", "2012-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2012-07-09": "Independence Day", - "2012-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2012-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", "2012-09-24": "Bicentenary of the Battle of Tucum\u00e1n", - "2012-10-15": "Respect for Cultural Diversity Day (Observed)", - "2012-11-19": "National Sovereignty Day (Observed)", + "2012-10-15": "Respect for Cultural Diversity Day (observed)", + "2012-11-19": "National Sovereignty Day (observed)", "2012-12-08": "Immaculate Conception", "2012-12-24": "Bridge Public Holiday", "2012-12-25": "Christmas", @@ -741,7 +741,7 @@ "2013-07-09": "Independence Day", "2013-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2013-10-12": "Respect for Cultural Diversity Day", - "2013-11-18": "National Sovereignty Day (Observed)", + "2013-11-18": "National Sovereignty Day (observed)", "2013-12-08": "Immaculate Conception", "2013-12-25": "Christmas", "2014-01-01": "New Year's Day", @@ -757,7 +757,7 @@ "2014-07-09": "Independence Day", "2014-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2014-10-12": "Respect for Cultural Diversity Day", - "2014-11-24": "National Sovereignty Day (Observed)", + "2014-11-24": "National Sovereignty Day (observed)", "2014-12-08": "Immaculate Conception", "2014-12-25": "Christmas", "2014-12-26": "Bridge Public Holiday", @@ -790,8 +790,8 @@ "2016-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2016-07-08": "Bridge Public Holiday", "2016-07-09": "Independence Day", - "2016-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2016-10-10": "Respect for Cultural Diversity Day (Observed)", + "2016-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2016-10-10": "Respect for Cultural Diversity Day (observed)", "2016-11-28": "National Sovereignty Day", "2016-12-08": "Immaculate Conception", "2016-12-09": "Bridge Public Holiday", @@ -807,8 +807,8 @@ "2017-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2017-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2017-07-09": "Independence Day", - "2017-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2017-10-16": "Respect for Cultural Diversity Day (Observed)", + "2017-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2017-10-16": "Respect for Cultural Diversity Day (observed)", "2017-11-20": "National Sovereignty Day", "2017-12-08": "Immaculate Conception", "2017-12-25": "Christmas", @@ -824,9 +824,9 @@ "2018-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2018-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2018-07-09": "Independence Day", - "2018-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2018-10-15": "Respect for Cultural Diversity Day (Observed)", - "2018-11-19": "National Sovereignty Day (Observed)", + "2018-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2018-10-15": "Respect for Cultural Diversity Day (observed)", + "2018-11-19": "National Sovereignty Day (observed)", "2018-12-08": "Immaculate Conception", "2018-12-24": "Bridge Public Holiday", "2018-12-25": "Christmas", @@ -847,7 +847,7 @@ "2019-08-19": "Bridge Public Holiday", "2019-10-12": "Respect for Cultural Diversity Day", "2019-10-14": "Bridge Public Holiday", - "2019-11-18": "National Sovereignty Day (Observed)", + "2019-11-18": "National Sovereignty Day (observed)", "2019-12-08": "Immaculate Conception", "2019-12-25": "Christmas", "2020-01-01": "New Year's Day", @@ -859,13 +859,13 @@ "2020-04-10": "Good Friday", "2020-05-01": "Labor Day", "2020-05-25": "May Revolution Day", - "2020-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2020-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2020-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2020-07-09": "Independence Day", "2020-07-10": "Bridge Public Holiday", "2020-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2020-10-12": "Respect for Cultural Diversity Day", - "2020-11-23": "National Sovereignty Day (Observed)", + "2020-11-23": "National Sovereignty Day (observed)", "2020-12-07": "Bridge Public Holiday", "2020-12-08": "Immaculate Conception", "2020-12-25": "Christmas", @@ -878,11 +878,11 @@ "2021-05-24": "Bridge Public Holiday", "2021-05-25": "May Revolution Day", "2021-06-20": "Pass to the Immortality of General Don Manuel Belgrano", - "2021-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2021-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2021-07-09": "Independence Day", - "2021-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2021-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", "2021-10-08": "Bridge Public Holiday", - "2021-10-11": "Respect for Cultural Diversity Day (Observed)", + "2021-10-11": "Respect for Cultural Diversity Day (observed)", "2021-11-20": "National Sovereignty Day", "2021-11-22": "Bridge Public Holiday", "2021-12-08": "Immaculate Conception", @@ -899,9 +899,9 @@ "2022-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2022-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2022-07-09": "Independence Day", - "2022-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2022-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", "2022-10-07": "Bridge Public Holiday", - "2022-10-10": "Respect for Cultural Diversity Day (Observed)", + "2022-10-10": "Respect for Cultural Diversity Day (observed)", "2022-11-20": "National Sovereignty Day", "2022-11-21": "Bridge Public Holiday", "2022-12-08": "Immaculate Conception", @@ -920,9 +920,9 @@ "2023-06-19": "Bridge Public Holiday", "2023-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2023-07-09": "Independence Day", - "2023-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", + "2023-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", "2023-10-13": "Bridge Public Holiday", - "2023-10-16": "Respect for Cultural Diversity Day (Observed)", + "2023-10-16": "Respect for Cultural Diversity Day (observed)", "2023-11-20": "National Sovereignty Day", "2023-12-08": "Immaculate Conception", "2023-12-25": "Christmas", @@ -939,7 +939,7 @@ "2024-07-09": "Independence Day", "2024-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2024-10-12": "Respect for Cultural Diversity Day", - "2024-11-18": "National Sovereignty Day (Observed)", + "2024-11-18": "National Sovereignty Day (observed)", "2024-12-08": "Immaculate Conception", "2024-12-25": "Christmas", "2025-01-01": "New Year's Day", @@ -950,12 +950,12 @@ "2025-04-18": "Good Friday", "2025-05-01": "Labor Day", "2025-05-25": "May Revolution Day", - "2025-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2025-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2025-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2025-07-09": "Independence Day", "2025-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2025-10-12": "Respect for Cultural Diversity Day", - "2025-11-24": "National Sovereignty Day (Observed)", + "2025-11-24": "National Sovereignty Day (observed)", "2025-12-08": "Immaculate Conception", "2025-12-25": "Christmas", "2026-01-01": "New Year's Day", @@ -966,12 +966,12 @@ "2026-04-03": "Good Friday", "2026-05-01": "Labor Day", "2026-05-25": "May Revolution Day", - "2026-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2026-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2026-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2026-07-09": "Independence Day", "2026-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2026-10-12": "Respect for Cultural Diversity Day", - "2026-11-23": "National Sovereignty Day (Observed)", + "2026-11-23": "National Sovereignty Day (observed)", "2026-12-08": "Immaculate Conception", "2026-12-25": "Christmas", "2027-01-01": "New Year's Day", @@ -983,10 +983,10 @@ "2027-05-01": "Labor Day", "2027-05-25": "May Revolution Day", "2027-06-20": "Pass to the Immortality of General Don Manuel Belgrano", - "2027-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2027-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2027-07-09": "Independence Day", - "2027-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2027-10-11": "Respect for Cultural Diversity Day (Observed)", + "2027-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2027-10-11": "Respect for Cultural Diversity Day (observed)", "2027-11-20": "National Sovereignty Day", "2027-12-08": "Immaculate Conception", "2027-12-25": "Christmas", @@ -1001,8 +1001,8 @@ "2028-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2028-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2028-07-09": "Independence Day", - "2028-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2028-10-16": "Respect for Cultural Diversity Day (Observed)", + "2028-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2028-10-16": "Respect for Cultural Diversity Day (observed)", "2028-11-20": "National Sovereignty Day", "2028-12-08": "Immaculate Conception", "2028-12-25": "Christmas", @@ -1017,9 +1017,9 @@ "2029-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2029-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2029-07-09": "Independence Day", - "2029-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2029-10-15": "Respect for Cultural Diversity Day (Observed)", - "2029-11-19": "National Sovereignty Day (Observed)", + "2029-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2029-10-15": "Respect for Cultural Diversity Day (observed)", + "2029-11-19": "National Sovereignty Day (observed)", "2029-12-08": "Immaculate Conception", "2029-12-25": "Christmas", "2030-01-01": "New Year's Day", @@ -1035,7 +1035,7 @@ "2030-07-09": "Independence Day", "2030-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2030-10-12": "Respect for Cultural Diversity Day", - "2030-11-18": "National Sovereignty Day (Observed)", + "2030-11-18": "National Sovereignty Day (observed)", "2030-12-08": "Immaculate Conception", "2030-12-25": "Christmas", "2031-01-01": "New Year's Day", @@ -1046,12 +1046,12 @@ "2031-04-11": "Good Friday", "2031-05-01": "Labor Day", "2031-05-25": "May Revolution Day", - "2031-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2031-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2031-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2031-07-09": "Independence Day", "2031-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2031-10-12": "Respect for Cultural Diversity Day", - "2031-11-24": "National Sovereignty Day (Observed)", + "2031-11-24": "National Sovereignty Day (observed)", "2031-12-08": "Immaculate Conception", "2031-12-25": "Christmas", "2032-01-01": "New Year's Day", @@ -1063,10 +1063,10 @@ "2032-05-01": "Labor Day", "2032-05-25": "May Revolution Day", "2032-06-20": "Pass to the Immortality of General Don Manuel Belgrano", - "2032-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2032-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2032-07-09": "Independence Day", - "2032-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2032-10-11": "Respect for Cultural Diversity Day (Observed)", + "2032-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2032-10-11": "Respect for Cultural Diversity Day (observed)", "2032-11-20": "National Sovereignty Day", "2032-12-08": "Immaculate Conception", "2032-12-25": "Christmas", @@ -1081,8 +1081,8 @@ "2033-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2033-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2033-07-09": "Independence Day", - "2033-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2033-10-10": "Respect for Cultural Diversity Day (Observed)", + "2033-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2033-10-10": "Respect for Cultural Diversity Day (observed)", "2033-11-20": "National Sovereignty Day", "2033-12-08": "Immaculate Conception", "2033-12-25": "Christmas", @@ -1097,8 +1097,8 @@ "2034-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2034-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2034-07-09": "Independence Day", - "2034-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2034-10-16": "Respect for Cultural Diversity Day (Observed)", + "2034-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2034-10-16": "Respect for Cultural Diversity Day (observed)", "2034-11-20": "National Sovereignty Day", "2034-12-08": "Immaculate Conception", "2034-12-25": "Christmas", @@ -1113,9 +1113,9 @@ "2035-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2035-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2035-07-09": "Independence Day", - "2035-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2035-10-15": "Respect for Cultural Diversity Day (Observed)", - "2035-11-19": "National Sovereignty Day (Observed)", + "2035-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2035-10-15": "Respect for Cultural Diversity Day (observed)", + "2035-11-19": "National Sovereignty Day (observed)", "2035-12-08": "Immaculate Conception", "2035-12-25": "Christmas", "2036-01-01": "New Year's Day", @@ -1126,12 +1126,12 @@ "2036-04-11": "Good Friday", "2036-05-01": "Labor Day", "2036-05-25": "May Revolution Day", - "2036-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2036-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2036-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2036-07-09": "Independence Day", "2036-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2036-10-12": "Respect for Cultural Diversity Day", - "2036-11-24": "National Sovereignty Day (Observed)", + "2036-11-24": "National Sovereignty Day (observed)", "2036-12-08": "Immaculate Conception", "2036-12-25": "Christmas", "2037-01-01": "New Year's Day", @@ -1142,12 +1142,12 @@ "2037-04-03": "Good Friday", "2037-05-01": "Labor Day", "2037-05-25": "May Revolution Day", - "2037-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2037-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2037-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2037-07-09": "Independence Day", "2037-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2037-10-12": "Respect for Cultural Diversity Day", - "2037-11-23": "National Sovereignty Day (Observed)", + "2037-11-23": "National Sovereignty Day (observed)", "2037-12-08": "Immaculate Conception", "2037-12-25": "Christmas", "2038-01-01": "New Year's Day", @@ -1159,10 +1159,10 @@ "2038-05-01": "Labor Day", "2038-05-25": "May Revolution Day", "2038-06-20": "Pass to the Immortality of General Don Manuel Belgrano", - "2038-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2038-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2038-07-09": "Independence Day", - "2038-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2038-10-11": "Respect for Cultural Diversity Day (Observed)", + "2038-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2038-10-11": "Respect for Cultural Diversity Day (observed)", "2038-11-20": "National Sovereignty Day", "2038-12-08": "Immaculate Conception", "2038-12-25": "Christmas", @@ -1177,8 +1177,8 @@ "2039-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2039-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2039-07-09": "Independence Day", - "2039-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2039-10-10": "Respect for Cultural Diversity Day (Observed)", + "2039-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2039-10-10": "Respect for Cultural Diversity Day (observed)", "2039-11-20": "National Sovereignty Day", "2039-12-08": "Immaculate Conception", "2039-12-25": "Christmas", @@ -1193,9 +1193,9 @@ "2040-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2040-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2040-07-09": "Independence Day", - "2040-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2040-10-15": "Respect for Cultural Diversity Day (Observed)", - "2040-11-19": "National Sovereignty Day (Observed)", + "2040-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2040-10-15": "Respect for Cultural Diversity Day (observed)", + "2040-11-19": "National Sovereignty Day (observed)", "2040-12-08": "Immaculate Conception", "2040-12-25": "Christmas", "2041-01-01": "New Year's Day", @@ -1211,7 +1211,7 @@ "2041-07-09": "Independence Day", "2041-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2041-10-12": "Respect for Cultural Diversity Day", - "2041-11-18": "National Sovereignty Day (Observed)", + "2041-11-18": "National Sovereignty Day (observed)", "2041-12-08": "Immaculate Conception", "2041-12-25": "Christmas", "2042-01-01": "New Year's Day", @@ -1222,12 +1222,12 @@ "2042-04-04": "Good Friday", "2042-05-01": "Labor Day", "2042-05-25": "May Revolution Day", - "2042-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2042-06-16": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2042-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2042-07-09": "Independence Day", "2042-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2042-10-12": "Respect for Cultural Diversity Day", - "2042-11-24": "National Sovereignty Day (Observed)", + "2042-11-24": "National Sovereignty Day (observed)", "2042-12-08": "Immaculate Conception", "2042-12-25": "Christmas", "2043-01-01": "New Year's Day", @@ -1238,12 +1238,12 @@ "2043-04-02": "Veterans Day and the Fallen in the Malvinas War", "2043-05-01": "Labor Day", "2043-05-25": "May Revolution Day", - "2043-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2043-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2043-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2043-07-09": "Independence Day", "2043-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2043-10-12": "Respect for Cultural Diversity Day", - "2043-11-23": "National Sovereignty Day (Observed)", + "2043-11-23": "National Sovereignty Day (observed)", "2043-12-08": "Immaculate Conception", "2043-12-25": "Christmas", "2044-01-01": "New Year's Day", @@ -1257,8 +1257,8 @@ "2044-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2044-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2044-07-09": "Independence Day", - "2044-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2044-10-10": "Respect for Cultural Diversity Day (Observed)", + "2044-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2044-10-10": "Respect for Cultural Diversity Day (observed)", "2044-11-20": "National Sovereignty Day", "2044-12-08": "Immaculate Conception", "2044-12-25": "Christmas", @@ -1273,8 +1273,8 @@ "2045-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2045-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2045-07-09": "Independence Day", - "2045-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2045-10-16": "Respect for Cultural Diversity Day (Observed)", + "2045-08-21": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2045-10-16": "Respect for Cultural Diversity Day (observed)", "2045-11-20": "National Sovereignty Day", "2045-12-08": "Immaculate Conception", "2045-12-25": "Christmas", @@ -1289,9 +1289,9 @@ "2046-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2046-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2046-07-09": "Independence Day", - "2046-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2046-10-15": "Respect for Cultural Diversity Day (Observed)", - "2046-11-19": "National Sovereignty Day (Observed)", + "2046-08-20": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2046-10-15": "Respect for Cultural Diversity Day (observed)", + "2046-11-19": "National Sovereignty Day (observed)", "2046-12-08": "Immaculate Conception", "2046-12-25": "Christmas", "2047-01-01": "New Year's Day", @@ -1307,7 +1307,7 @@ "2047-07-09": "Independence Day", "2047-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2047-10-12": "Respect for Cultural Diversity Day", - "2047-11-18": "National Sovereignty Day (Observed)", + "2047-11-18": "National Sovereignty Day (observed)", "2047-12-08": "Immaculate Conception", "2047-12-25": "Christmas", "2048-01-01": "New Year's Day", @@ -1318,12 +1318,12 @@ "2048-04-03": "Good Friday", "2048-05-01": "Labor Day", "2048-05-25": "May Revolution Day", - "2048-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2048-06-15": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2048-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2048-07-09": "Independence Day", "2048-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", "2048-10-12": "Respect for Cultural Diversity Day", - "2048-11-23": "National Sovereignty Day (Observed)", + "2048-11-23": "National Sovereignty Day (observed)", "2048-12-08": "Immaculate Conception", "2048-12-25": "Christmas", "2049-01-01": "New Year's Day", @@ -1335,10 +1335,10 @@ "2049-05-01": "Labor Day", "2049-05-25": "May Revolution Day", "2049-06-20": "Pass to the Immortality of General Don Manuel Belgrano", - "2049-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (Observed)", + "2049-06-21": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes (observed)", "2049-07-09": "Independence Day", - "2049-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2049-10-11": "Respect for Cultural Diversity Day (Observed)", + "2049-08-16": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2049-10-11": "Respect for Cultural Diversity Day (observed)", "2049-11-20": "National Sovereignty Day", "2049-12-08": "Immaculate Conception", "2049-12-25": "Christmas", @@ -1353,8 +1353,8 @@ "2050-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2050-06-20": "Pass to the Immortality of General Don Manuel Belgrano", "2050-07-09": "Independence Day", - "2050-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (Observed)", - "2050-10-10": "Respect for Cultural Diversity Day (Observed)", + "2050-08-15": "Pass to the Immortality of General Don Jos\u00e9 de San Martin (observed)", + "2050-10-10": "Respect for Cultural Diversity Day (observed)", "2050-11-20": "National Sovereignty Day", "2050-12-08": "Immaculate Conception", "2050-12-25": "Christmas" diff --git a/snapshots/countries/AS_COMMON.json b/snapshots/countries/AS_COMMON.json index 22d42496e..89836307e 100644 --- a/snapshots/countries/AS_COMMON.json +++ b/snapshots/countries/AS_COMMON.json @@ -1,15 +1,15 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", - "1950-12-22": "Christmas Eve (Observed)", + "1950-12-22": "Christmas Eve (observed)", "1950-12-24": "Christmas Eve", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", @@ -19,7 +19,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-24": "Christmas Eve", "1951-12-25": "Christmas Day", @@ -36,7 +36,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -48,15 +48,15 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-23": "Christmas Eve (Observed)", - "1954-12-24": "Christmas Day (Observed); Christmas Eve", + "1954-12-23": "Christmas Eve (observed)", + "1954-12-24": "Christmas Day (observed); Christmas Eve", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -65,19 +65,19 @@ "1955-10-12": "Columbus Day", "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", - "1955-12-23": "Christmas Eve (Observed)", + "1955-12-23": "Christmas Eve (observed)", "1955-12-24": "Christmas Eve", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-24": "Christmas Eve", "1956-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -120,21 +120,21 @@ "1960-10-12": "Columbus Day", "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", - "1960-12-23": "Christmas Eve (Observed)", + "1960-12-23": "Christmas Eve (observed)", "1960-12-24": "Christmas Eve", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", - "1961-12-22": "Christmas Eve (Observed)", + "1961-12-22": "Christmas Eve (observed)", "1961-12-24": "Christmas Eve", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", @@ -144,7 +144,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-24": "Christmas Eve", "1962-12-25": "Christmas Day", @@ -161,7 +161,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -173,15 +173,15 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-23": "Christmas Eve (Observed)", - "1965-12-24": "Christmas Day (Observed); Christmas Eve", + "1965-12-23": "Christmas Eve (observed)", + "1965-12-24": "Christmas Day (observed); Christmas Eve", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -190,21 +190,21 @@ "1966-10-12": "Columbus Day", "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", - "1966-12-23": "Christmas Eve (Observed)", + "1966-12-23": "Christmas Eve (observed)", "1966-12-24": "Christmas Eve", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", - "1967-12-22": "Christmas Eve (Observed)", + "1967-12-22": "Christmas Eve (observed)", "1967-12-24": "Christmas Eve", "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", @@ -230,7 +230,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -242,15 +242,15 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-23": "Christmas Eve (Observed)", - "1971-12-24": "Christmas Day (Observed); Christmas Eve", + "1971-12-23": "Christmas Eve (observed)", + "1971-12-24": "Christmas Day (observed); Christmas Eve", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -259,7 +259,7 @@ "1972-10-09": "Columbus Day", "1972-10-23": "Veterans Day", "1972-11-23": "Thanksgiving", - "1972-12-22": "Christmas Eve (Observed)", + "1972-12-22": "Christmas Eve (observed)", "1972-12-24": "Christmas Eve", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", @@ -296,15 +296,15 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-23": "Christmas Eve (Observed)", - "1976-12-24": "Christmas Day (Observed); Christmas Eve", + "1976-12-23": "Christmas Eve (observed)", + "1976-12-24": "Christmas Day (observed); Christmas Eve", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -313,21 +313,21 @@ "1977-10-10": "Columbus Day", "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", - "1977-12-23": "Christmas Eve (Observed)", + "1977-12-23": "Christmas Eve (observed)", "1977-12-24": "Christmas Eve", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", - "1978-12-22": "Christmas Eve (Observed)", + "1978-12-22": "Christmas Eve (observed)", "1978-12-24": "Christmas Eve", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -337,7 +337,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-24": "Christmas Eve", "1979-12-25": "Christmas Day", @@ -354,7 +354,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -366,15 +366,15 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-23": "Christmas Eve (Observed)", - "1982-12-24": "Christmas Day (Observed); Christmas Eve", + "1982-12-23": "Christmas Eve (observed)", + "1982-12-24": "Christmas Day (observed); Christmas Eve", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -383,19 +383,19 @@ "1983-10-10": "Columbus Day", "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", - "1983-12-23": "Christmas Eve (Observed)", + "1983-12-23": "Christmas Eve (observed)", "1983-12-24": "Christmas Eve", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-24": "Christmas Eve", "1984-12-25": "Christmas Day", @@ -424,7 +424,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -441,22 +441,22 @@ "1988-10-10": "Columbus Day", "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", - "1988-12-23": "Christmas Eve (Observed)", + "1988-12-23": "Christmas Eve (observed)", "1988-12-24": "Christmas Eve", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", - "1989-12-22": "Christmas Eve (Observed)", + "1989-12-22": "Christmas Eve (observed)", "1989-12-24": "Christmas Eve", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -467,7 +467,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-24": "Christmas Eve", "1990-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -499,15 +499,15 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-23": "Christmas Eve (Observed)", - "1993-12-24": "Christmas Day (Observed); Christmas Eve", + "1993-12-23": "Christmas Eve (observed)", + "1993-12-24": "Christmas Day (observed); Christmas Eve", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -517,22 +517,22 @@ "1994-10-10": "Columbus Day", "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", - "1994-12-23": "Christmas Eve (Observed)", + "1994-12-23": "Christmas Eve (observed)", "1994-12-24": "Christmas Eve", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", - "1995-12-22": "Christmas Eve (Observed)", + "1995-12-22": "Christmas Eve (observed)", "1995-12-24": "Christmas Eve", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -561,7 +561,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -574,15 +574,15 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-23": "Christmas Eve (Observed)", - "1999-12-24": "Christmas Day (Observed); Christmas Eve", + "1999-12-23": "Christmas Eve (observed)", + "1999-12-24": "Christmas Day (observed); Christmas Eve", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -590,10 +590,10 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", - "2000-12-22": "Christmas Eve (Observed)", + "2000-12-22": "Christmas Eve (observed)", "2000-12-24": "Christmas Eve", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -604,7 +604,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-24": "Christmas Eve", "2001-12-25": "Christmas Day", @@ -635,15 +635,15 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-23": "Christmas Eve (Observed)", - "2004-12-24": "Christmas Day (Observed); Christmas Eve", + "2004-12-23": "Christmas Eve (observed)", + "2004-12-24": "Christmas Day (observed); Christmas Eve", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -653,22 +653,22 @@ "2005-10-10": "Columbus Day", "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", - "2005-12-23": "Christmas Eve (Observed)", + "2005-12-23": "Christmas Eve (observed)", "2005-12-24": "Christmas Eve", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", - "2006-12-22": "Christmas Eve (Observed)", + "2006-12-22": "Christmas Eve (observed)", "2006-12-24": "Christmas Eve", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -679,7 +679,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-24": "Christmas Eve", "2007-12-25": "Christmas Day", @@ -698,7 +698,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -711,15 +711,15 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-23": "Christmas Eve (Observed)", - "2010-12-24": "Christmas Day (Observed); Christmas Eve", + "2010-12-23": "Christmas Eve (observed)", + "2010-12-24": "Christmas Day (observed); Christmas Eve", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -729,12 +729,12 @@ "2011-10-10": "Columbus Day", "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", - "2011-12-23": "Christmas Eve (Observed)", + "2011-12-23": "Christmas Eve (observed)", "2011-12-24": "Christmas Eve", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -742,7 +742,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-24": "Christmas Eve", "2012-12-25": "Christmas Day", @@ -772,7 +772,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -789,22 +789,22 @@ "2016-10-10": "Columbus Day", "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", - "2016-12-23": "Christmas Eve (Observed)", + "2016-12-23": "Christmas Eve (observed)", "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", - "2017-12-22": "Christmas Eve (Observed)", + "2017-12-22": "Christmas Eve (observed)", "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -815,7 +815,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", @@ -834,7 +834,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -846,35 +846,35 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-23": "Christmas Eve (Observed)", - "2021-12-24": "Christmas Day (Observed); Christmas Eve", + "2021-12-23": "Christmas Eve (observed)", + "2021-12-24": "Christmas Day (observed); Christmas Eve", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", - "2022-12-23": "Christmas Eve (Observed)", + "2022-12-23": "Christmas Eve (observed)", "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -882,10 +882,10 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", - "2023-12-22": "Christmas Eve (Observed)", + "2023-12-22": "Christmas Eve (observed)", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", @@ -917,7 +917,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -929,18 +929,18 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-23": "Christmas Eve (Observed)", - "2027-12-24": "Christmas Day (Observed); Christmas Eve", + "2027-12-23": "Christmas Eve (observed)", + "2027-12-24": "Christmas Day (observed); Christmas Eve", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -949,10 +949,10 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", - "2028-12-22": "Christmas Eve (Observed)", + "2028-12-22": "Christmas Eve (observed)", "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", @@ -964,7 +964,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", @@ -996,35 +996,35 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-23": "Christmas Eve (Observed)", - "2032-12-24": "Christmas Day (Observed); Christmas Eve", + "2032-12-23": "Christmas Eve (observed)", + "2032-12-24": "Christmas Day (observed); Christmas Eve", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", - "2033-12-23": "Christmas Eve (Observed)", + "2033-12-23": "Christmas Eve (observed)", "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -1032,10 +1032,10 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", - "2034-12-22": "Christmas Eve (Observed)", + "2034-12-22": "Christmas Eve (observed)", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", @@ -1047,7 +1047,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", @@ -1068,7 +1068,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1080,35 +1080,35 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-23": "Christmas Eve (Observed)", - "2038-12-24": "Christmas Day (Observed); Christmas Eve", + "2038-12-23": "Christmas Eve (observed)", + "2038-12-24": "Christmas Day (observed); Christmas Eve", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", - "2039-12-23": "Christmas Eve (Observed)", + "2039-12-23": "Christmas Eve (observed)", "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1117,7 +1117,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", @@ -1150,7 +1150,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1163,18 +1163,18 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", - "2044-12-23": "Christmas Eve (Observed)", + "2044-12-23": "Christmas Eve (observed)", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1182,10 +1182,10 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", - "2045-12-22": "Christmas Eve (Observed)", + "2045-12-22": "Christmas Eve (observed)", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", @@ -1197,7 +1197,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", @@ -1218,7 +1218,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1230,31 +1230,31 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-23": "Christmas Eve (Observed)", - "2049-12-24": "Christmas Day (Observed); Christmas Eve", + "2049-12-23": "Christmas Eve (observed)", + "2049-12-24": "Christmas Day (observed); Christmas Eve", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", - "2050-12-23": "Christmas Eve (Observed)", + "2050-12-23": "Christmas Eve (observed)", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/AU_ACT.json b/snapshots/countries/AU_ACT.json index e0f2760cd..0a69116c5 100644 --- a/snapshots/countries/AU_ACT.json +++ b/snapshots/countries/AU_ACT.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-26": "Australia Day", "1950-03-12": "Canberra Day", "1950-04-07": "Good Friday", @@ -26,7 +26,7 @@ "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", "1952-01-26": "Australia Day", - "1952-01-28": "Australia Day (Observed)", + "1952-01-28": "Australia Day (observed)", "1952-03-12": "Canberra Day", "1952-04-11": "Good Friday", "1952-04-12": "Easter Saturday", @@ -49,7 +49,7 @@ "1953-10-05": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-26": "Australia Day", "1954-03-12": "Canberra Day", @@ -58,15 +58,15 @@ "1954-04-18": "Easter Sunday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", - "1954-04-26": "Anzac Day (Observed)", + "1954-04-26": "Anzac Day (observed)", "1954-06-14": "Queen's Birthday", "1954-10-04": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-26": "Australia Day", "1955-03-12": "Canberra Day", "1955-04-08": "Good Friday", @@ -78,9 +78,9 @@ "1955-10-03": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-26": "Australia Day", "1956-03-12": "Canberra Day", "1956-03-30": "Good Friday", @@ -94,7 +94,7 @@ "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", "1957-01-26": "Australia Day", - "1957-01-28": "Australia Day (Observed)", + "1957-01-28": "Australia Day (observed)", "1957-03-12": "Canberra Day", "1957-04-19": "Good Friday", "1957-04-20": "Easter Saturday", @@ -107,7 +107,7 @@ "1957-12-26": "Boxing Day", "1958-01-01": "New Year's Day", "1958-01-26": "Australia Day", - "1958-01-27": "Australia Day (Observed)", + "1958-01-27": "Australia Day (observed)", "1958-03-17": "Canberra Day", "1958-04-04": "Good Friday", "1958-04-05": "Easter Saturday", @@ -130,7 +130,7 @@ "1959-10-05": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-26": "Australia Day", "1960-03-21": "Canberra Day", @@ -143,9 +143,9 @@ "1960-10-03": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-26": "Australia Day", "1961-03-20": "Canberra Day", "1961-03-31": "Good Friday", @@ -171,7 +171,7 @@ "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", "1963-01-26": "Australia Day", - "1963-01-28": "Australia Day (Observed)", + "1963-01-28": "Australia Day (observed)", "1963-03-18": "Canberra Day", "1963-04-12": "Good Friday", "1963-04-13": "Easter Saturday", @@ -184,7 +184,7 @@ "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", "1964-01-26": "Australia Day", - "1964-01-27": "Australia Day (Observed)", + "1964-01-27": "Australia Day (observed)", "1964-03-16": "Canberra Day", "1964-03-27": "Good Friday", "1964-03-28": "Easter Saturday", @@ -195,7 +195,7 @@ "1964-10-05": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-26": "Australia Day", "1965-03-15": "Canberra Day", @@ -204,15 +204,15 @@ "1965-04-18": "Easter Sunday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", - "1965-04-26": "Anzac Day (Observed)", + "1965-04-26": "Anzac Day (observed)", "1965-06-14": "Queen's Birthday", "1965-10-04": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-26": "Australia Day", "1966-03-21": "Canberra Day", "1966-04-08": "Good Friday", @@ -224,9 +224,9 @@ "1966-10-03": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-26": "Australia Day", "1967-03-20": "Canberra Day", "1967-03-24": "Good Friday", @@ -252,7 +252,7 @@ "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", "1969-01-26": "Australia Day", - "1969-01-27": "Australia Day (Observed)", + "1969-01-27": "Australia Day (observed)", "1969-03-17": "Canberra Day", "1969-04-04": "Good Friday", "1969-04-05": "Easter Saturday", @@ -275,7 +275,7 @@ "1970-10-05": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-26": "Australia Day", "1971-03-15": "Canberra Day", @@ -284,15 +284,15 @@ "1971-04-11": "Easter Sunday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", - "1971-04-26": "Anzac Day (Observed)", + "1971-04-26": "Anzac Day (observed)", "1971-06-14": "Queen's Birthday", "1971-10-04": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-26": "Australia Day", "1972-03-20": "Canberra Day", "1972-03-31": "Good Friday", @@ -318,7 +318,7 @@ "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", "1974-01-26": "Australia Day", - "1974-01-28": "Australia Day (Observed)", + "1974-01-28": "Australia Day (observed)", "1974-03-18": "Canberra Day", "1974-04-12": "Good Friday", "1974-04-13": "Easter Saturday", @@ -331,7 +331,7 @@ "1974-12-26": "Boxing Day", "1975-01-01": "New Year's Day", "1975-01-26": "Australia Day", - "1975-01-27": "Australia Day (Observed)", + "1975-01-27": "Australia Day (observed)", "1975-03-17": "Canberra Day", "1975-03-28": "Good Friday", "1975-03-29": "Easter Saturday", @@ -350,15 +350,15 @@ "1976-04-18": "Easter Sunday", "1976-04-19": "Easter Monday", "1976-04-25": "Anzac Day", - "1976-04-26": "Anzac Day (Observed)", + "1976-04-26": "Anzac Day (observed)", "1976-06-14": "Queen's Birthday", "1976-10-04": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-26": "Australia Day", "1977-03-21": "Canberra Day", "1977-04-08": "Good Friday", @@ -370,9 +370,9 @@ "1977-10-03": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-26": "Australia Day", "1978-03-20": "Canberra Day", "1978-03-24": "Good Friday", @@ -398,7 +398,7 @@ "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", "1980-01-26": "Australia Day", - "1980-01-28": "Australia Day (Observed)", + "1980-01-28": "Australia Day (observed)", "1980-03-17": "Canberra Day", "1980-04-04": "Good Friday", "1980-04-05": "Easter Saturday", @@ -421,7 +421,7 @@ "1981-10-05": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-26": "Australia Day", "1982-03-15": "Canberra Day", @@ -430,15 +430,15 @@ "1982-04-11": "Easter Sunday", "1982-04-12": "Easter Monday", "1982-04-25": "Anzac Day", - "1982-04-26": "Anzac Day (Observed)", + "1982-04-26": "Anzac Day (observed)", "1982-06-14": "Queen's Birthday", "1982-10-04": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-26": "Australia Day", "1983-03-21": "Canberra Day", "1983-04-01": "Good Friday", @@ -450,9 +450,9 @@ "1983-10-03": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-26": "Australia Day", "1984-03-19": "Canberra Day", "1984-04-20": "Good Friday", @@ -466,7 +466,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-01-26": "Australia Day", - "1985-01-28": "Australia Day (Observed)", + "1985-01-28": "Australia Day (observed)", "1985-03-18": "Canberra Day", "1985-04-05": "Good Friday", "1985-04-06": "Easter Saturday", @@ -479,7 +479,7 @@ "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", "1986-01-26": "Australia Day", - "1986-01-27": "Australia Day (Observed)", + "1986-01-27": "Australia Day (observed)", "1986-03-17": "Canberra Day", "1986-03-28": "Good Friday", "1986-03-29": "Easter Saturday", @@ -502,7 +502,7 @@ "1987-10-05": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-26": "Australia Day", "1988-03-21": "Canberra Day", @@ -515,9 +515,9 @@ "1988-10-03": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-26": "Australia Day", "1989-03-20": "Canberra Day", "1989-03-24": "Good Friday", @@ -543,7 +543,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-01-26": "Australia Day", - "1991-01-28": "Australia Day (Observed)", + "1991-01-28": "Australia Day (observed)", "1991-03-18": "Canberra Day", "1991-03-29": "Good Friday", "1991-03-30": "Easter Saturday", @@ -556,7 +556,7 @@ "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", "1992-01-26": "Australia Day", - "1992-01-27": "Australia Day (Observed)", + "1992-01-27": "Australia Day (observed)", "1992-03-16": "Canberra Day", "1992-04-17": "Good Friday", "1992-04-18": "Easter Saturday", @@ -567,7 +567,7 @@ "1992-10-05": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-26": "Australia Day", "1993-03-15": "Canberra Day", @@ -576,15 +576,15 @@ "1993-04-11": "Easter Sunday", "1993-04-12": "Easter Monday", "1993-04-25": "Anzac Day", - "1993-04-26": "Anzac Day (Observed)", + "1993-04-26": "Anzac Day (observed)", "1993-06-14": "Queen's Birthday", "1993-10-04": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-26": "Australia Day", "1994-03-21": "Canberra Day", "1994-04-01": "Good Friday", @@ -596,9 +596,9 @@ "1994-10-03": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-26": "Australia Day", "1995-03-20": "Canberra Day", "1995-04-14": "Good Friday", @@ -624,7 +624,7 @@ "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", "1997-01-26": "Australia Day", - "1997-01-27": "Australia Day (Observed)", + "1997-01-27": "Australia Day (observed)", "1997-03-17": "Canberra Day", "1997-03-28": "Good Friday", "1997-03-29": "Easter Saturday", @@ -647,7 +647,7 @@ "1998-10-05": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-26": "Australia Day", "1999-03-15": "Canberra Day", @@ -656,15 +656,15 @@ "1999-04-04": "Easter Sunday", "1999-04-05": "Easter Monday", "1999-04-25": "Anzac Day", - "1999-04-26": "Anzac Day (Observed)", + "1999-04-26": "Anzac Day (observed)", "1999-06-14": "Queen's Birthday", "1999-10-04": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-26": "Australia Day", "2000-03-20": "Canberra Day", "2000-04-21": "Good Friday", @@ -690,7 +690,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-01-26": "Australia Day", - "2002-01-28": "Australia Day (Observed)", + "2002-01-28": "Australia Day (observed)", "2002-03-18": "Canberra Day", "2002-03-29": "Good Friday", "2002-03-30": "Easter Saturday", @@ -703,7 +703,7 @@ "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", "2003-01-26": "Australia Day", - "2003-01-27": "Australia Day (Observed)", + "2003-01-27": "Australia Day (observed)", "2003-03-17": "Canberra Day", "2003-04-18": "Good Friday", "2003-04-19": "Easter Saturday", @@ -722,15 +722,15 @@ "2004-04-11": "Easter Sunday", "2004-04-12": "Easter Monday", "2004-04-25": "Anzac Day", - "2004-04-26": "Anzac Day (Observed)", + "2004-04-26": "Anzac Day (observed)", "2004-06-14": "Queen's Birthday", "2004-10-04": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-26": "Australia Day", "2005-03-21": "Canberra Day", "2005-03-25": "Good Friday", @@ -742,9 +742,9 @@ "2005-10-03": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-26": "Australia Day", "2006-03-20": "Canberra Day", "2006-04-14": "Good Friday", @@ -771,7 +771,7 @@ "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", "2008-01-26": "Australia Day", - "2008-01-28": "Australia Day (Observed)", + "2008-01-28": "Australia Day (observed)", "2008-03-10": "Canberra Day", "2008-03-21": "Good Friday", "2008-03-22": "Easter Saturday", @@ -796,7 +796,7 @@ "2009-11-03": "Family & Community Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-26": "Australia Day", "2010-03-08": "Canberra Day", @@ -805,16 +805,16 @@ "2010-04-04": "Easter Sunday", "2010-04-05": "Easter Monday", "2010-04-25": "Anzac Day", - "2010-04-26": "Anzac Day (Observed)", + "2010-04-26": "Anzac Day (observed)", "2010-06-14": "Queen's Birthday", "2010-09-26": "Family & Community Day", "2010-10-04": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-26": "Australia Day", "2011-03-14": "Canberra Day", "2011-04-22": "Good Friday", @@ -826,9 +826,9 @@ "2011-10-10": "Family & Community Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-26": "Australia Day", "2012-03-12": "Canberra Day", "2012-04-06": "Good Friday", @@ -843,7 +843,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-01-26": "Australia Day", - "2013-01-28": "Australia Day (Observed)", + "2013-01-28": "Australia Day (observed)", "2013-03-11": "Canberra Day", "2013-03-29": "Good Friday", "2013-03-30": "Easter Saturday", @@ -857,7 +857,7 @@ "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", "2014-01-26": "Australia Day", - "2014-01-27": "Australia Day (Observed)", + "2014-01-27": "Australia Day (observed)", "2014-03-10": "Canberra Day", "2014-04-18": "Good Friday", "2014-04-19": "Easter Saturday", @@ -882,7 +882,7 @@ "2015-10-05": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-26": "Australia Day", "2016-03-14": "Canberra Day", @@ -896,9 +896,9 @@ "2016-10-03": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-26": "Australia Day", "2017-03-13": "Canberra Day", "2017-04-14": "Good Friday", @@ -926,7 +926,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-01-26": "Australia Day", - "2019-01-28": "Australia Day (Observed)", + "2019-01-28": "Australia Day (observed)", "2019-03-11": "Canberra Day", "2019-04-19": "Good Friday", "2019-04-20": "Easter Saturday", @@ -940,7 +940,7 @@ "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-01-26": "Australia Day", - "2020-01-27": "Australia Day (Observed)", + "2020-01-27": "Australia Day (observed)", "2020-03-09": "Canberra Day", "2020-04-10": "Good Friday", "2020-04-11": "Easter Saturday", @@ -952,7 +952,7 @@ "2020-10-05": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-26": "Australia Day", "2021-03-08": "Canberra Day", @@ -961,16 +961,16 @@ "2021-04-04": "Easter Sunday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-05-31": "Reconciliation Day", "2021-06-14": "Queen's Birthday", "2021-10-04": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-26": "Australia Day", "2022-03-14": "Canberra Day", "2022-04-15": "Good Friday", @@ -984,9 +984,9 @@ "2022-10-03": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-26": "Australia Day", "2023-03-13": "Canberra Day", "2023-04-07": "Good Friday", @@ -1014,7 +1014,7 @@ "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-26": "Australia Day", - "2025-01-27": "Australia Day (Observed)", + "2025-01-27": "Australia Day (observed)", "2025-03-10": "Canberra Day", "2025-04-18": "Good Friday", "2025-04-19": "Easter Saturday", @@ -1039,7 +1039,7 @@ "2026-10-05": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-26": "Australia Day", "2027-03-08": "Canberra Day", @@ -1048,16 +1048,16 @@ "2027-03-28": "Easter Sunday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-05-31": "Reconciliation Day", "2027-06-14": "King's Birthday", "2027-10-04": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Australia Day", "2028-03-13": "Canberra Day", "2028-04-14": "Good Friday", @@ -1085,7 +1085,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-01-26": "Australia Day", - "2030-01-28": "Australia Day (Observed)", + "2030-01-28": "Australia Day (observed)", "2030-03-11": "Canberra Day", "2030-04-19": "Good Friday", "2030-04-20": "Easter Saturday", @@ -1099,7 +1099,7 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-26": "Australia Day", - "2031-01-27": "Australia Day (Observed)", + "2031-01-27": "Australia Day (observed)", "2031-03-10": "Canberra Day", "2031-04-11": "Good Friday", "2031-04-12": "Easter Saturday", @@ -1119,16 +1119,16 @@ "2032-03-28": "Easter Sunday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-05-31": "Reconciliation Day", "2032-06-14": "King's Birthday", "2032-10-04": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-26": "Australia Day", "2033-03-14": "Canberra Day", "2033-04-15": "Good Friday", @@ -1141,9 +1141,9 @@ "2033-10-03": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-26": "Australia Day", "2034-03-13": "Canberra Day", "2034-04-07": "Good Friday", @@ -1171,7 +1171,7 @@ "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-26": "Australia Day", - "2036-01-28": "Australia Day (Observed)", + "2036-01-28": "Australia Day (observed)", "2036-03-10": "Canberra Day", "2036-04-11": "Good Friday", "2036-04-12": "Easter Saturday", @@ -1196,23 +1196,23 @@ "2037-10-05": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-26": "Australia Day", "2038-03-08": "Canberra Day", "2038-04-23": "Good Friday", "2038-04-24": "Easter Saturday", "2038-04-25": "Anzac Day; Easter Sunday", - "2038-04-26": "Anzac Day (Observed); Easter Monday; Easter Sunday (Observed)", + "2038-04-26": "Anzac Day (observed); Easter Monday; Easter Sunday (observed)", "2038-05-31": "Reconciliation Day", "2038-06-14": "King's Birthday", "2038-10-04": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-26": "Australia Day", "2039-03-14": "Canberra Day", "2039-04-08": "Good Friday", @@ -1225,9 +1225,9 @@ "2039-10-03": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-26": "Australia Day", "2040-03-12": "Canberra Day", "2040-03-30": "Good Friday", @@ -1242,7 +1242,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-01-26": "Australia Day", - "2041-01-28": "Australia Day (Observed)", + "2041-01-28": "Australia Day (observed)", "2041-03-11": "Canberra Day", "2041-04-19": "Good Friday", "2041-04-20": "Easter Saturday", @@ -1256,7 +1256,7 @@ "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-26": "Australia Day", - "2042-01-27": "Australia Day (Observed)", + "2042-01-27": "Australia Day (observed)", "2042-03-10": "Canberra Day", "2042-04-04": "Good Friday", "2042-04-05": "Easter Saturday", @@ -1281,7 +1281,7 @@ "2043-10-05": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-26": "Australia Day", "2044-03-14": "Canberra Day", @@ -1295,9 +1295,9 @@ "2044-10-03": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-26": "Australia Day", "2045-03-13": "Canberra Day", "2045-04-07": "Good Friday", @@ -1325,7 +1325,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-01-26": "Australia Day", - "2047-01-28": "Australia Day (Observed)", + "2047-01-28": "Australia Day (observed)", "2047-03-11": "Canberra Day", "2047-04-12": "Good Friday", "2047-04-13": "Easter Saturday", @@ -1339,7 +1339,7 @@ "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", "2048-01-26": "Australia Day", - "2048-01-27": "Australia Day (Observed)", + "2048-01-27": "Australia Day (observed)", "2048-03-09": "Canberra Day", "2048-04-03": "Good Friday", "2048-04-04": "Easter Saturday", @@ -1351,7 +1351,7 @@ "2048-10-05": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-26": "Australia Day", "2049-03-08": "Canberra Day", @@ -1360,16 +1360,16 @@ "2049-04-18": "Easter Sunday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-05-31": "Reconciliation Day", "2049-06-14": "King's Birthday", "2049-10-04": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-26": "Australia Day", "2050-03-14": "Canberra Day", "2050-04-08": "Good Friday", @@ -1382,5 +1382,5 @@ "2050-10-03": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/AU_COMMON.json b/snapshots/countries/AU_COMMON.json index c67c9d277..27b434891 100644 --- a/snapshots/countries/AU_COMMON.json +++ b/snapshots/countries/AU_COMMON.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-26": "Australia Day", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", @@ -16,7 +16,7 @@ "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", "1952-01-26": "Australia Day", - "1952-01-28": "Australia Day (Observed)", + "1952-01-28": "Australia Day (observed)", "1952-04-11": "Good Friday", "1952-04-14": "Easter Monday", "1952-04-25": "Anzac Day", @@ -29,7 +29,7 @@ "1953-04-25": "Anzac Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-26": "Australia Day", "1954-04-16": "Good Friday", @@ -37,19 +37,19 @@ "1954-04-25": "Anzac Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-26": "Australia Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-26": "Australia Day", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", @@ -58,7 +58,7 @@ "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", "1957-01-26": "Australia Day", - "1957-01-28": "Australia Day (Observed)", + "1957-01-28": "Australia Day (observed)", "1957-04-19": "Good Friday", "1957-04-22": "Easter Monday", "1957-04-25": "Anzac Day", @@ -66,7 +66,7 @@ "1957-12-26": "Boxing Day", "1958-01-01": "New Year's Day", "1958-01-26": "Australia Day", - "1958-01-27": "Australia Day (Observed)", + "1958-01-27": "Australia Day (observed)", "1958-04-04": "Good Friday", "1958-04-07": "Easter Monday", "1958-04-25": "Anzac Day", @@ -79,7 +79,7 @@ "1959-04-25": "Anzac Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-26": "Australia Day", "1960-04-15": "Good Friday", @@ -87,9 +87,9 @@ "1960-04-25": "Anzac Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-26": "Australia Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -105,7 +105,7 @@ "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", "1963-01-26": "Australia Day", - "1963-01-28": "Australia Day (Observed)", + "1963-01-28": "Australia Day (observed)", "1963-04-12": "Good Friday", "1963-04-15": "Easter Monday", "1963-04-25": "Anzac Day", @@ -113,13 +113,13 @@ "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", "1964-01-26": "Australia Day", - "1964-01-27": "Australia Day (Observed)", + "1964-01-27": "Australia Day (observed)", "1964-03-27": "Good Friday", "1964-03-30": "Easter Monday", "1964-04-25": "Anzac Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-26": "Australia Day", "1965-04-16": "Good Friday", @@ -127,19 +127,19 @@ "1965-04-25": "Anzac Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-26": "Australia Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-26": "Australia Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -155,7 +155,7 @@ "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", "1969-01-26": "Australia Day", - "1969-01-27": "Australia Day (Observed)", + "1969-01-27": "Australia Day (observed)", "1969-04-04": "Good Friday", "1969-04-07": "Easter Monday", "1969-04-25": "Anzac Day", @@ -168,7 +168,7 @@ "1970-04-25": "Anzac Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-26": "Australia Day", "1971-04-09": "Good Friday", @@ -176,10 +176,10 @@ "1971-04-25": "Anzac Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-26": "Australia Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -195,7 +195,7 @@ "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", "1974-01-26": "Australia Day", - "1974-01-28": "Australia Day (Observed)", + "1974-01-28": "Australia Day (observed)", "1974-04-12": "Good Friday", "1974-04-15": "Easter Monday", "1974-04-25": "Anzac Day", @@ -203,7 +203,7 @@ "1974-12-26": "Boxing Day", "1975-01-01": "New Year's Day", "1975-01-26": "Australia Day", - "1975-01-27": "Australia Day (Observed)", + "1975-01-27": "Australia Day (observed)", "1975-03-28": "Good Friday", "1975-03-31": "Easter Monday", "1975-04-25": "Anzac Day", @@ -216,19 +216,19 @@ "1976-04-25": "Anzac Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-26": "Australia Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-04-25": "Anzac Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-26": "Australia Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -244,7 +244,7 @@ "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", "1980-01-26": "Australia Day", - "1980-01-28": "Australia Day (Observed)", + "1980-01-28": "Australia Day (observed)", "1980-04-04": "Good Friday", "1980-04-07": "Easter Monday", "1980-04-25": "Anzac Day", @@ -257,7 +257,7 @@ "1981-04-25": "Anzac Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-26": "Australia Day", "1982-04-09": "Good Friday", @@ -265,19 +265,19 @@ "1982-04-25": "Anzac Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-26": "Australia Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-04-25": "Anzac Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-26": "Australia Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -286,7 +286,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-01-26": "Australia Day", - "1985-01-28": "Australia Day (Observed)", + "1985-01-28": "Australia Day (observed)", "1985-04-05": "Good Friday", "1985-04-08": "Easter Monday", "1985-04-25": "Anzac Day", @@ -294,7 +294,7 @@ "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", "1986-01-26": "Australia Day", - "1986-01-27": "Australia Day (Observed)", + "1986-01-27": "Australia Day (observed)", "1986-03-28": "Good Friday", "1986-03-31": "Easter Monday", "1986-04-25": "Anzac Day", @@ -307,7 +307,7 @@ "1987-04-25": "Anzac Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-26": "Australia Day", "1988-04-01": "Good Friday", @@ -315,9 +315,9 @@ "1988-04-25": "Anzac Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-26": "Australia Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -333,7 +333,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-01-26": "Australia Day", - "1991-01-28": "Australia Day (Observed)", + "1991-01-28": "Australia Day (observed)", "1991-03-29": "Good Friday", "1991-04-01": "Easter Monday", "1991-04-25": "Anzac Day", @@ -341,13 +341,13 @@ "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", "1992-01-26": "Australia Day", - "1992-01-27": "Australia Day (Observed)", + "1992-01-27": "Australia Day (observed)", "1992-04-17": "Good Friday", "1992-04-20": "Easter Monday", "1992-04-25": "Anzac Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-26": "Australia Day", "1993-04-09": "Good Friday", @@ -355,19 +355,19 @@ "1993-04-25": "Anzac Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-26": "Australia Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-04-25": "Anzac Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-26": "Australia Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -383,7 +383,7 @@ "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", "1997-01-26": "Australia Day", - "1997-01-27": "Australia Day (Observed)", + "1997-01-27": "Australia Day (observed)", "1997-03-28": "Good Friday", "1997-03-31": "Easter Monday", "1997-04-25": "Anzac Day", @@ -396,7 +396,7 @@ "1998-04-25": "Anzac Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-26": "Australia Day", "1999-04-02": "Good Friday", @@ -404,10 +404,10 @@ "1999-04-25": "Anzac Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-26": "Australia Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -423,7 +423,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-01-26": "Australia Day", - "2002-01-28": "Australia Day (Observed)", + "2002-01-28": "Australia Day (observed)", "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", "2002-04-25": "Anzac Day", @@ -431,7 +431,7 @@ "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", "2003-01-26": "Australia Day", - "2003-01-27": "Australia Day (Observed)", + "2003-01-27": "Australia Day (observed)", "2003-04-18": "Good Friday", "2003-04-21": "Easter Monday", "2003-04-25": "Anzac Day", @@ -444,19 +444,19 @@ "2004-04-25": "Anzac Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-26": "Australia Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-04-25": "Anzac Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-26": "Australia Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -472,7 +472,7 @@ "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", "2008-01-26": "Australia Day", - "2008-01-28": "Australia Day (Observed)", + "2008-01-28": "Australia Day (observed)", "2008-03-21": "Good Friday", "2008-03-24": "Easter Monday", "2008-04-25": "Anzac Day", @@ -485,7 +485,7 @@ "2009-04-25": "Anzac Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-26": "Australia Day", "2010-04-02": "Good Friday", @@ -493,18 +493,18 @@ "2010-04-25": "Anzac Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-26": "Australia Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-26": "Australia Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -513,7 +513,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-01-26": "Australia Day", - "2013-01-28": "Australia Day (Observed)", + "2013-01-28": "Australia Day (observed)", "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", "2013-04-25": "Anzac Day", @@ -521,7 +521,7 @@ "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", "2014-01-26": "Australia Day", - "2014-01-27": "Australia Day (Observed)", + "2014-01-27": "Australia Day (observed)", "2014-04-18": "Good Friday", "2014-04-21": "Easter Monday", "2014-04-25": "Anzac Day", @@ -534,7 +534,7 @@ "2015-04-25": "Anzac Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-26": "Australia Day", "2016-03-25": "Good Friday", @@ -542,9 +542,9 @@ "2016-04-25": "Anzac Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-26": "Australia Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -560,7 +560,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-01-26": "Australia Day", - "2019-01-28": "Australia Day (Observed)", + "2019-01-28": "Australia Day (observed)", "2019-04-19": "Good Friday", "2019-04-22": "Easter Monday", "2019-04-25": "Anzac Day", @@ -568,13 +568,13 @@ "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-01-26": "Australia Day", - "2020-01-27": "Australia Day (Observed)", + "2020-01-27": "Australia Day (observed)", "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-26": "Australia Day", "2021-04-02": "Good Friday", @@ -582,10 +582,10 @@ "2021-04-25": "Anzac Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-26": "Australia Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", @@ -593,9 +593,9 @@ "2022-09-22": "National Day of Mourning for Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-26": "Australia Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -611,7 +611,7 @@ "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-26": "Australia Day", - "2025-01-27": "Australia Day (Observed)", + "2025-01-27": "Australia Day (observed)", "2025-04-18": "Good Friday", "2025-04-21": "Easter Monday", "2025-04-25": "Anzac Day", @@ -624,7 +624,7 @@ "2026-04-25": "Anzac Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-26": "Australia Day", "2027-03-26": "Good Friday", @@ -632,10 +632,10 @@ "2027-04-25": "Anzac Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Australia Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", @@ -651,7 +651,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-01-26": "Australia Day", - "2030-01-28": "Australia Day (Observed)", + "2030-01-28": "Australia Day (observed)", "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", "2030-04-25": "Anzac Day", @@ -659,7 +659,7 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-26": "Australia Day", - "2031-01-27": "Australia Day (Observed)", + "2031-01-27": "Australia Day (observed)", "2031-04-11": "Good Friday", "2031-04-14": "Easter Monday", "2031-04-25": "Anzac Day", @@ -672,19 +672,19 @@ "2032-04-25": "Anzac Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-26": "Australia Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-26": "Australia Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -700,7 +700,7 @@ "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-26": "Australia Day", - "2036-01-28": "Australia Day (Observed)", + "2036-01-28": "Australia Day (observed)", "2036-04-11": "Good Friday", "2036-04-14": "Easter Monday", "2036-04-25": "Anzac Day", @@ -713,7 +713,7 @@ "2037-04-25": "Anzac Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-26": "Australia Day", "2038-04-23": "Good Friday", @@ -721,19 +721,19 @@ "2038-04-26": "Easter Monday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-26": "Australia Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-26": "Australia Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -742,7 +742,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-01-26": "Australia Day", - "2041-01-28": "Australia Day (Observed)", + "2041-01-28": "Australia Day (observed)", "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", "2041-04-25": "Anzac Day", @@ -750,7 +750,7 @@ "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-26": "Australia Day", - "2042-01-27": "Australia Day (Observed)", + "2042-01-27": "Australia Day (observed)", "2042-04-04": "Good Friday", "2042-04-07": "Easter Monday", "2042-04-25": "Anzac Day", @@ -763,7 +763,7 @@ "2043-04-25": "Anzac Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-26": "Australia Day", "2044-04-15": "Good Friday", @@ -771,9 +771,9 @@ "2044-04-25": "Anzac Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-26": "Australia Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -789,7 +789,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-01-26": "Australia Day", - "2047-01-28": "Australia Day (Observed)", + "2047-01-28": "Australia Day (observed)", "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", "2047-04-25": "Anzac Day", @@ -797,13 +797,13 @@ "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", "2048-01-26": "Australia Day", - "2048-01-27": "Australia Day (Observed)", + "2048-01-27": "Australia Day (observed)", "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-26": "Australia Day", "2049-04-16": "Good Friday", @@ -811,15 +811,15 @@ "2049-04-25": "Anzac Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-26": "Australia Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/AU_NSW.json b/snapshots/countries/AU_NSW.json index 99d1fd631..268af04dd 100644 --- a/snapshots/countries/AU_NSW.json +++ b/snapshots/countries/AU_NSW.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-26": "Australia Day", "1950-04-07": "Good Friday", "1950-04-08": "Easter Saturday", @@ -26,7 +26,7 @@ "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", "1952-01-26": "Australia Day", - "1952-01-28": "Australia Day (Observed)", + "1952-01-28": "Australia Day (observed)", "1952-04-11": "Good Friday", "1952-04-12": "Easter Saturday", "1952-04-13": "Easter Sunday", @@ -49,7 +49,7 @@ "1953-10-05": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-26": "Australia Day", "1954-04-16": "Good Friday", @@ -62,10 +62,10 @@ "1954-10-04": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-26": "Australia Day", "1955-04-08": "Good Friday", "1955-04-09": "Easter Saturday", @@ -77,9 +77,9 @@ "1955-10-03": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-26": "Australia Day", "1956-03-30": "Good Friday", "1956-03-31": "Easter Saturday", @@ -93,7 +93,7 @@ "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", "1957-01-26": "Australia Day", - "1957-01-28": "Australia Day (Observed)", + "1957-01-28": "Australia Day (observed)", "1957-04-19": "Good Friday", "1957-04-20": "Easter Saturday", "1957-04-21": "Easter Sunday", @@ -106,7 +106,7 @@ "1957-12-26": "Boxing Day", "1958-01-01": "New Year's Day", "1958-01-26": "Australia Day", - "1958-01-27": "Australia Day (Observed)", + "1958-01-27": "Australia Day (observed)", "1958-04-04": "Good Friday", "1958-04-05": "Easter Saturday", "1958-04-06": "Easter Sunday", @@ -129,7 +129,7 @@ "1959-10-05": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-26": "Australia Day", "1960-04-15": "Good Friday", @@ -142,9 +142,9 @@ "1960-10-03": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-26": "Australia Day", "1961-03-31": "Good Friday", "1961-04-01": "Easter Saturday", @@ -170,7 +170,7 @@ "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", "1963-01-26": "Australia Day", - "1963-01-28": "Australia Day (Observed)", + "1963-01-28": "Australia Day (observed)", "1963-04-12": "Good Friday", "1963-04-13": "Easter Saturday", "1963-04-14": "Easter Sunday", @@ -183,7 +183,7 @@ "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", "1964-01-26": "Australia Day", - "1964-01-27": "Australia Day (Observed)", + "1964-01-27": "Australia Day (observed)", "1964-03-27": "Good Friday", "1964-03-28": "Easter Saturday", "1964-03-29": "Easter Sunday", @@ -194,7 +194,7 @@ "1964-10-05": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-26": "Australia Day", "1965-04-16": "Good Friday", @@ -207,10 +207,10 @@ "1965-10-04": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-26": "Australia Day", "1966-04-08": "Good Friday", "1966-04-09": "Easter Saturday", @@ -222,9 +222,9 @@ "1966-10-03": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-26": "Australia Day", "1967-03-24": "Good Friday", "1967-03-25": "Easter Saturday", @@ -250,7 +250,7 @@ "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", "1969-01-26": "Australia Day", - "1969-01-27": "Australia Day (Observed)", + "1969-01-27": "Australia Day (observed)", "1969-04-04": "Good Friday", "1969-04-05": "Easter Saturday", "1969-04-06": "Easter Sunday", @@ -273,7 +273,7 @@ "1970-10-05": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-26": "Australia Day", "1971-04-09": "Good Friday", @@ -286,10 +286,10 @@ "1971-10-04": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-26": "Australia Day", "1972-03-31": "Good Friday", "1972-04-01": "Easter Saturday", @@ -315,7 +315,7 @@ "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", "1974-01-26": "Australia Day", - "1974-01-28": "Australia Day (Observed)", + "1974-01-28": "Australia Day (observed)", "1974-04-12": "Good Friday", "1974-04-13": "Easter Saturday", "1974-04-14": "Easter Sunday", @@ -328,7 +328,7 @@ "1974-12-26": "Boxing Day", "1975-01-01": "New Year's Day", "1975-01-26": "Australia Day", - "1975-01-27": "Australia Day (Observed)", + "1975-01-27": "Australia Day (observed)", "1975-03-28": "Good Friday", "1975-03-29": "Easter Saturday", "1975-03-30": "Easter Sunday", @@ -351,10 +351,10 @@ "1976-10-04": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-26": "Australia Day", "1977-04-08": "Good Friday", "1977-04-09": "Easter Saturday", @@ -366,9 +366,9 @@ "1977-10-03": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-26": "Australia Day", "1978-03-24": "Good Friday", "1978-03-25": "Easter Saturday", @@ -394,7 +394,7 @@ "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", "1980-01-26": "Australia Day", - "1980-01-28": "Australia Day (Observed)", + "1980-01-28": "Australia Day (observed)", "1980-04-04": "Good Friday", "1980-04-05": "Easter Saturday", "1980-04-06": "Easter Sunday", @@ -417,7 +417,7 @@ "1981-10-05": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-26": "Australia Day", "1982-04-09": "Good Friday", @@ -430,10 +430,10 @@ "1982-10-04": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-26": "Australia Day", "1983-04-01": "Good Friday", "1983-04-02": "Easter Saturday", @@ -445,9 +445,9 @@ "1983-10-03": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-26": "Australia Day", "1984-04-20": "Good Friday", "1984-04-21": "Easter Saturday", @@ -461,7 +461,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-01-26": "Australia Day", - "1985-01-28": "Australia Day (Observed)", + "1985-01-28": "Australia Day (observed)", "1985-04-05": "Good Friday", "1985-04-06": "Easter Saturday", "1985-04-07": "Easter Sunday", @@ -474,7 +474,7 @@ "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", "1986-01-26": "Australia Day", - "1986-01-27": "Australia Day (Observed)", + "1986-01-27": "Australia Day (observed)", "1986-03-28": "Good Friday", "1986-03-29": "Easter Saturday", "1986-03-30": "Easter Sunday", @@ -497,7 +497,7 @@ "1987-10-05": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-26": "Australia Day", "1988-04-01": "Good Friday", @@ -510,9 +510,9 @@ "1988-10-03": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-26": "Australia Day", "1989-03-24": "Good Friday", "1989-03-25": "Easter Saturday", @@ -538,7 +538,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-01-26": "Australia Day", - "1991-01-28": "Australia Day (Observed)", + "1991-01-28": "Australia Day (observed)", "1991-03-29": "Good Friday", "1991-03-30": "Easter Saturday", "1991-03-31": "Easter Sunday", @@ -551,7 +551,7 @@ "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", "1992-01-26": "Australia Day", - "1992-01-27": "Australia Day (Observed)", + "1992-01-27": "Australia Day (observed)", "1992-04-17": "Good Friday", "1992-04-18": "Easter Saturday", "1992-04-19": "Easter Sunday", @@ -562,7 +562,7 @@ "1992-10-05": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-26": "Australia Day", "1993-04-09": "Good Friday", @@ -575,10 +575,10 @@ "1993-10-04": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-26": "Australia Day", "1994-04-01": "Good Friday", "1994-04-02": "Easter Saturday", @@ -590,9 +590,9 @@ "1994-10-03": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-26": "Australia Day", "1995-04-14": "Good Friday", "1995-04-15": "Easter Saturday", @@ -618,7 +618,7 @@ "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", "1997-01-26": "Australia Day", - "1997-01-27": "Australia Day (Observed)", + "1997-01-27": "Australia Day (observed)", "1997-03-28": "Good Friday", "1997-03-29": "Easter Saturday", "1997-03-30": "Easter Sunday", @@ -641,7 +641,7 @@ "1998-10-05": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-26": "Australia Day", "1999-04-02": "Good Friday", @@ -654,10 +654,10 @@ "1999-10-04": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-26": "Australia Day", "2000-04-21": "Good Friday", "2000-04-22": "Easter Saturday", @@ -683,7 +683,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-01-26": "Australia Day", - "2002-01-28": "Australia Day (Observed)", + "2002-01-28": "Australia Day (observed)", "2002-03-29": "Good Friday", "2002-03-30": "Easter Saturday", "2002-03-31": "Easter Sunday", @@ -696,7 +696,7 @@ "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", "2003-01-26": "Australia Day", - "2003-01-27": "Australia Day (Observed)", + "2003-01-27": "Australia Day (observed)", "2003-04-18": "Good Friday", "2003-04-19": "Easter Saturday", "2003-04-20": "Easter Sunday", @@ -719,10 +719,10 @@ "2004-10-04": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-26": "Australia Day", "2005-03-25": "Good Friday", "2005-03-26": "Easter Saturday", @@ -734,9 +734,9 @@ "2005-10-03": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-26": "Australia Day", "2006-04-14": "Good Friday", "2006-04-15": "Easter Saturday", @@ -762,7 +762,7 @@ "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", "2008-01-26": "Australia Day", - "2008-01-28": "Australia Day (Observed)", + "2008-01-28": "Australia Day (observed)", "2008-03-21": "Good Friday", "2008-03-22": "Easter Saturday", "2008-03-23": "Easter Sunday", @@ -785,7 +785,7 @@ "2009-10-05": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-26": "Australia Day", "2010-04-02": "Good Friday", @@ -798,10 +798,10 @@ "2010-10-04": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-26": "Australia Day", "2011-04-22": "Good Friday", "2011-04-23": "Easter Saturday", @@ -812,9 +812,9 @@ "2011-10-03": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-26": "Australia Day", "2012-04-06": "Good Friday", "2012-04-07": "Easter Saturday", @@ -828,7 +828,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-01-26": "Australia Day", - "2013-01-28": "Australia Day (Observed)", + "2013-01-28": "Australia Day (observed)", "2013-03-29": "Good Friday", "2013-03-30": "Easter Saturday", "2013-03-31": "Easter Sunday", @@ -841,7 +841,7 @@ "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", "2014-01-26": "Australia Day", - "2014-01-27": "Australia Day (Observed)", + "2014-01-27": "Australia Day (observed)", "2014-04-18": "Good Friday", "2014-04-19": "Easter Saturday", "2014-04-20": "Easter Sunday", @@ -864,7 +864,7 @@ "2015-10-05": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-26": "Australia Day", "2016-03-25": "Good Friday", @@ -877,9 +877,9 @@ "2016-10-03": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-26": "Australia Day", "2017-04-14": "Good Friday", "2017-04-15": "Easter Saturday", @@ -905,7 +905,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-01-26": "Australia Day", - "2019-01-28": "Australia Day (Observed)", + "2019-01-28": "Australia Day (observed)", "2019-04-19": "Good Friday", "2019-04-20": "Easter Saturday", "2019-04-21": "Easter Sunday", @@ -918,7 +918,7 @@ "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-01-26": "Australia Day", - "2020-01-27": "Australia Day (Observed)", + "2020-01-27": "Australia Day (observed)", "2020-04-10": "Good Friday", "2020-04-11": "Easter Saturday", "2020-04-12": "Easter Sunday", @@ -929,7 +929,7 @@ "2020-10-05": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-26": "Australia Day", "2021-04-02": "Good Friday", @@ -942,10 +942,10 @@ "2021-10-04": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-26": "Australia Day", "2022-04-15": "Good Friday", "2022-04-16": "Easter Saturday", @@ -958,9 +958,9 @@ "2022-10-03": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-26": "Australia Day", "2023-04-07": "Good Friday", "2023-04-08": "Easter Saturday", @@ -986,7 +986,7 @@ "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-26": "Australia Day", - "2025-01-27": "Australia Day (Observed)", + "2025-01-27": "Australia Day (observed)", "2025-04-18": "Good Friday", "2025-04-19": "Easter Saturday", "2025-04-20": "Easter Sunday", @@ -1009,7 +1009,7 @@ "2026-10-05": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-26": "Australia Day", "2027-03-26": "Good Friday", @@ -1022,10 +1022,10 @@ "2027-10-04": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Australia Day", "2028-04-14": "Good Friday", "2028-04-15": "Easter Saturday", @@ -1051,7 +1051,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-01-26": "Australia Day", - "2030-01-28": "Australia Day (Observed)", + "2030-01-28": "Australia Day (observed)", "2030-04-19": "Good Friday", "2030-04-20": "Easter Saturday", "2030-04-21": "Easter Sunday", @@ -1064,7 +1064,7 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-26": "Australia Day", - "2031-01-27": "Australia Day (Observed)", + "2031-01-27": "Australia Day (observed)", "2031-04-11": "Good Friday", "2031-04-12": "Easter Saturday", "2031-04-13": "Easter Sunday", @@ -1087,10 +1087,10 @@ "2032-10-04": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-26": "Australia Day", "2033-04-15": "Good Friday", "2033-04-16": "Easter Saturday", @@ -1102,9 +1102,9 @@ "2033-10-03": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-26": "Australia Day", "2034-04-07": "Good Friday", "2034-04-08": "Easter Saturday", @@ -1130,7 +1130,7 @@ "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-26": "Australia Day", - "2036-01-28": "Australia Day (Observed)", + "2036-01-28": "Australia Day (observed)", "2036-04-11": "Good Friday", "2036-04-12": "Easter Saturday", "2036-04-13": "Easter Sunday", @@ -1153,7 +1153,7 @@ "2037-10-05": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-26": "Australia Day", "2038-04-23": "Good Friday", @@ -1165,10 +1165,10 @@ "2038-10-04": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-26": "Australia Day", "2039-04-08": "Good Friday", "2039-04-09": "Easter Saturday", @@ -1180,9 +1180,9 @@ "2039-10-03": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-26": "Australia Day", "2040-03-30": "Good Friday", "2040-03-31": "Easter Saturday", @@ -1196,7 +1196,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-01-26": "Australia Day", - "2041-01-28": "Australia Day (Observed)", + "2041-01-28": "Australia Day (observed)", "2041-04-19": "Good Friday", "2041-04-20": "Easter Saturday", "2041-04-21": "Easter Sunday", @@ -1209,7 +1209,7 @@ "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-26": "Australia Day", - "2042-01-27": "Australia Day (Observed)", + "2042-01-27": "Australia Day (observed)", "2042-04-04": "Good Friday", "2042-04-05": "Easter Saturday", "2042-04-06": "Easter Sunday", @@ -1232,7 +1232,7 @@ "2043-10-05": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-26": "Australia Day", "2044-04-15": "Good Friday", @@ -1245,9 +1245,9 @@ "2044-10-03": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-26": "Australia Day", "2045-04-07": "Good Friday", "2045-04-08": "Easter Saturday", @@ -1273,7 +1273,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-01-26": "Australia Day", - "2047-01-28": "Australia Day (Observed)", + "2047-01-28": "Australia Day (observed)", "2047-04-12": "Good Friday", "2047-04-13": "Easter Saturday", "2047-04-14": "Easter Sunday", @@ -1286,7 +1286,7 @@ "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", "2048-01-26": "Australia Day", - "2048-01-27": "Australia Day (Observed)", + "2048-01-27": "Australia Day (observed)", "2048-04-03": "Good Friday", "2048-04-04": "Easter Saturday", "2048-04-05": "Easter Sunday", @@ -1297,7 +1297,7 @@ "2048-10-05": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-26": "Australia Day", "2049-04-16": "Good Friday", @@ -1310,10 +1310,10 @@ "2049-10-04": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-26": "Australia Day", "2050-04-08": "Good Friday", "2050-04-09": "Easter Saturday", @@ -1325,5 +1325,5 @@ "2050-10-03": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/AU_NT.json b/snapshots/countries/AU_NT.json index 0f18a63d2..6b2e06cbf 100644 --- a/snapshots/countries/AU_NT.json +++ b/snapshots/countries/AU_NT.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-26": "Australia Day", "1950-04-07": "Good Friday", "1950-04-08": "Easter Saturday", @@ -24,7 +24,7 @@ "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", "1952-01-26": "Australia Day", - "1952-01-28": "Australia Day (Observed)", + "1952-01-28": "Australia Day (observed)", "1952-04-11": "Good Friday", "1952-04-12": "Easter Saturday", "1952-04-14": "Easter Monday", @@ -40,29 +40,29 @@ "1953-04-04": "Easter Saturday", "1953-04-06": "Easter Monday", "1953-04-25": "Anzac Day", - "1953-04-27": "Anzac Day (Observed)", + "1953-04-27": "Anzac Day (observed)", "1953-05-04": "May Day", "1953-06-08": "Queen's Birthday", "1953-08-03": "Picnic Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-26": "Australia Day", "1954-04-16": "Good Friday", "1954-04-17": "Easter Saturday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", - "1954-04-26": "Anzac Day (Observed)", + "1954-04-26": "Anzac Day (observed)", "1954-05-03": "May Day", "1954-06-14": "Queen's Birthday", "1954-08-02": "Picnic Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-26": "Australia Day", "1955-04-08": "Good Friday", "1955-04-09": "Easter Saturday", @@ -73,9 +73,9 @@ "1955-08-01": "Picnic Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-26": "Australia Day", "1956-03-30": "Good Friday", "1956-03-31": "Easter Saturday", @@ -88,7 +88,7 @@ "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", "1957-01-26": "Australia Day", - "1957-01-28": "Australia Day (Observed)", + "1957-01-28": "Australia Day (observed)", "1957-04-19": "Good Friday", "1957-04-20": "Easter Saturday", "1957-04-22": "Easter Monday", @@ -100,7 +100,7 @@ "1957-12-26": "Boxing Day", "1958-01-01": "New Year's Day", "1958-01-26": "Australia Day", - "1958-01-27": "Australia Day (Observed)", + "1958-01-27": "Australia Day (observed)", "1958-04-04": "Good Friday", "1958-04-05": "Easter Saturday", "1958-04-07": "Easter Monday", @@ -116,13 +116,13 @@ "1959-03-28": "Easter Saturday", "1959-03-30": "Easter Monday", "1959-04-25": "Anzac Day", - "1959-04-27": "Anzac Day (Observed)", + "1959-04-27": "Anzac Day (observed)", "1959-05-04": "May Day", "1959-06-08": "Queen's Birthday", "1959-08-03": "Picnic Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-26": "Australia Day", "1960-04-15": "Good Friday", @@ -134,9 +134,9 @@ "1960-08-01": "Picnic Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-26": "Australia Day", "1961-03-31": "Good Friday", "1961-04-01": "Easter Saturday", @@ -160,7 +160,7 @@ "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", "1963-01-26": "Australia Day", - "1963-01-28": "Australia Day (Observed)", + "1963-01-28": "Australia Day (observed)", "1963-04-12": "Good Friday", "1963-04-13": "Easter Saturday", "1963-04-15": "Easter Monday", @@ -172,34 +172,34 @@ "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", "1964-01-26": "Australia Day", - "1964-01-27": "Australia Day (Observed)", + "1964-01-27": "Australia Day (observed)", "1964-03-27": "Good Friday", "1964-03-28": "Easter Saturday", "1964-03-30": "Easter Monday", "1964-04-25": "Anzac Day", - "1964-04-27": "Anzac Day (Observed)", + "1964-04-27": "Anzac Day (observed)", "1964-05-04": "May Day", "1964-06-08": "Queen's Birthday", "1964-08-03": "Picnic Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-26": "Australia Day", "1965-04-16": "Good Friday", "1965-04-17": "Easter Saturday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", - "1965-04-26": "Anzac Day (Observed)", + "1965-04-26": "Anzac Day (observed)", "1965-05-03": "May Day", "1965-06-14": "Queen's Birthday", "1965-08-02": "Picnic Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-26": "Australia Day", "1966-04-08": "Good Friday", "1966-04-09": "Easter Saturday", @@ -210,9 +210,9 @@ "1966-08-01": "Picnic Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-26": "Australia Day", "1967-03-24": "Good Friday", "1967-03-25": "Easter Saturday", @@ -236,7 +236,7 @@ "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", "1969-01-26": "Australia Day", - "1969-01-27": "Australia Day (Observed)", + "1969-01-27": "Australia Day (observed)", "1969-04-04": "Good Friday", "1969-04-05": "Easter Saturday", "1969-04-07": "Easter Monday", @@ -252,29 +252,29 @@ "1970-03-28": "Easter Saturday", "1970-03-30": "Easter Monday", "1970-04-25": "Anzac Day", - "1970-04-27": "Anzac Day (Observed)", + "1970-04-27": "Anzac Day (observed)", "1970-05-04": "May Day", "1970-06-08": "Queen's Birthday", "1970-08-03": "Picnic Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-26": "Australia Day", "1971-04-09": "Good Friday", "1971-04-10": "Easter Saturday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", - "1971-04-26": "Anzac Day (Observed)", + "1971-04-26": "Anzac Day (observed)", "1971-05-03": "May Day", "1971-06-14": "Queen's Birthday", "1971-08-02": "Picnic Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-26": "Australia Day", "1972-03-31": "Good Friday", "1972-04-01": "Easter Saturday", @@ -298,7 +298,7 @@ "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", "1974-01-26": "Australia Day", - "1974-01-28": "Australia Day (Observed)", + "1974-01-28": "Australia Day (observed)", "1974-04-12": "Good Friday", "1974-04-13": "Easter Saturday", "1974-04-15": "Easter Monday", @@ -310,7 +310,7 @@ "1974-12-26": "Boxing Day", "1975-01-01": "New Year's Day", "1975-01-26": "Australia Day", - "1975-01-27": "Australia Day (Observed)", + "1975-01-27": "Australia Day (observed)", "1975-03-28": "Good Friday", "1975-03-29": "Easter Saturday", "1975-03-31": "Easter Monday", @@ -326,16 +326,16 @@ "1976-04-17": "Easter Saturday", "1976-04-19": "Easter Monday", "1976-04-25": "Anzac Day", - "1976-04-26": "Anzac Day (Observed)", + "1976-04-26": "Anzac Day (observed)", "1976-05-03": "May Day", "1976-06-14": "Queen's Birthday", "1976-08-02": "Picnic Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-26": "Australia Day", "1977-04-08": "Good Friday", "1977-04-09": "Easter Saturday", @@ -346,9 +346,9 @@ "1977-08-01": "Picnic Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-26": "Australia Day", "1978-03-24": "Good Friday", "1978-03-25": "Easter Saturday", @@ -372,7 +372,7 @@ "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", "1980-01-26": "Australia Day", - "1980-01-28": "Australia Day (Observed)", + "1980-01-28": "Australia Day (observed)", "1980-04-04": "Good Friday", "1980-04-05": "Easter Saturday", "1980-04-07": "Easter Monday", @@ -388,29 +388,29 @@ "1981-04-18": "Easter Saturday", "1981-04-20": "Easter Monday", "1981-04-25": "Anzac Day", - "1981-04-27": "Anzac Day (Observed)", + "1981-04-27": "Anzac Day (observed)", "1981-05-04": "May Day", "1981-06-08": "Queen's Birthday", "1981-08-03": "Picnic Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-26": "Australia Day", "1982-04-09": "Good Friday", "1982-04-10": "Easter Saturday", "1982-04-12": "Easter Monday", "1982-04-25": "Anzac Day", - "1982-04-26": "Anzac Day (Observed)", + "1982-04-26": "Anzac Day (observed)", "1982-05-03": "May Day", "1982-06-14": "Queen's Birthday", "1982-08-02": "Picnic Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-26": "Australia Day", "1983-04-01": "Good Friday", "1983-04-02": "Easter Saturday", @@ -421,9 +421,9 @@ "1983-08-01": "Picnic Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-26": "Australia Day", "1984-04-20": "Good Friday", "1984-04-21": "Easter Saturday", @@ -436,7 +436,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-01-26": "Australia Day", - "1985-01-28": "Australia Day (Observed)", + "1985-01-28": "Australia Day (observed)", "1985-04-05": "Good Friday", "1985-04-06": "Easter Saturday", "1985-04-08": "Easter Monday", @@ -448,7 +448,7 @@ "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", "1986-01-26": "Australia Day", - "1986-01-27": "Australia Day (Observed)", + "1986-01-27": "Australia Day (observed)", "1986-03-28": "Good Friday", "1986-03-29": "Easter Saturday", "1986-03-31": "Easter Monday", @@ -464,13 +464,13 @@ "1987-04-18": "Easter Saturday", "1987-04-20": "Easter Monday", "1987-04-25": "Anzac Day", - "1987-04-27": "Anzac Day (Observed)", + "1987-04-27": "Anzac Day (observed)", "1987-05-04": "May Day", "1987-06-08": "Queen's Birthday", "1987-08-03": "Picnic Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-26": "Australia Day", "1988-04-01": "Good Friday", @@ -482,9 +482,9 @@ "1988-08-01": "Picnic Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-26": "Australia Day", "1989-03-24": "Good Friday", "1989-03-25": "Easter Saturday", @@ -508,7 +508,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-01-26": "Australia Day", - "1991-01-28": "Australia Day (Observed)", + "1991-01-28": "Australia Day (observed)", "1991-03-29": "Good Friday", "1991-03-30": "Easter Saturday", "1991-04-01": "Easter Monday", @@ -520,34 +520,34 @@ "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", "1992-01-26": "Australia Day", - "1992-01-27": "Australia Day (Observed)", + "1992-01-27": "Australia Day (observed)", "1992-04-17": "Good Friday", "1992-04-18": "Easter Saturday", "1992-04-20": "Easter Monday", "1992-04-25": "Anzac Day", - "1992-04-27": "Anzac Day (Observed)", + "1992-04-27": "Anzac Day (observed)", "1992-05-04": "May Day", "1992-06-08": "Queen's Birthday", "1992-08-03": "Picnic Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-26": "Australia Day", "1993-04-09": "Good Friday", "1993-04-10": "Easter Saturday", "1993-04-12": "Easter Monday", "1993-04-25": "Anzac Day", - "1993-04-26": "Anzac Day (Observed)", + "1993-04-26": "Anzac Day (observed)", "1993-05-03": "May Day", "1993-06-14": "Queen's Birthday", "1993-08-02": "Picnic Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-26": "Australia Day", "1994-04-01": "Good Friday", "1994-04-02": "Easter Saturday", @@ -558,9 +558,9 @@ "1994-08-01": "Picnic Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-26": "Australia Day", "1995-04-14": "Good Friday", "1995-04-15": "Easter Saturday", @@ -584,7 +584,7 @@ "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", "1997-01-26": "Australia Day", - "1997-01-27": "Australia Day (Observed)", + "1997-01-27": "Australia Day (observed)", "1997-03-28": "Good Friday", "1997-03-29": "Easter Saturday", "1997-03-31": "Easter Monday", @@ -600,29 +600,29 @@ "1998-04-11": "Easter Saturday", "1998-04-13": "Easter Monday", "1998-04-25": "Anzac Day", - "1998-04-27": "Anzac Day (Observed)", + "1998-04-27": "Anzac Day (observed)", "1998-05-04": "May Day", "1998-06-08": "Queen's Birthday", "1998-08-03": "Picnic Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-26": "Australia Day", "1999-04-02": "Good Friday", "1999-04-03": "Easter Saturday", "1999-04-05": "Easter Monday", "1999-04-25": "Anzac Day", - "1999-04-26": "Anzac Day (Observed)", + "1999-04-26": "Anzac Day (observed)", "1999-05-03": "May Day", "1999-06-14": "Queen's Birthday", "1999-08-02": "Picnic Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-26": "Australia Day", "2000-04-21": "Good Friday", "2000-04-22": "Easter Saturday", @@ -646,7 +646,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-01-26": "Australia Day", - "2002-01-28": "Australia Day (Observed)", + "2002-01-28": "Australia Day (observed)", "2002-03-29": "Good Friday", "2002-03-30": "Easter Saturday", "2002-04-01": "Easter Monday", @@ -658,7 +658,7 @@ "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", "2003-01-26": "Australia Day", - "2003-01-27": "Australia Day (Observed)", + "2003-01-27": "Australia Day (observed)", "2003-04-18": "Good Friday", "2003-04-19": "Easter Saturday", "2003-04-21": "Easter Monday", @@ -674,16 +674,16 @@ "2004-04-10": "Easter Saturday", "2004-04-12": "Easter Monday", "2004-04-25": "Anzac Day", - "2004-04-26": "Anzac Day (Observed)", + "2004-04-26": "Anzac Day (observed)", "2004-05-03": "May Day", "2004-06-14": "Queen's Birthday", "2004-08-02": "Picnic Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-26": "Australia Day", "2005-03-25": "Good Friday", "2005-03-26": "Easter Saturday", @@ -694,9 +694,9 @@ "2005-08-01": "Picnic Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-26": "Australia Day", "2006-04-14": "Good Friday", "2006-04-15": "Easter Saturday", @@ -720,7 +720,7 @@ "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", "2008-01-26": "Australia Day", - "2008-01-28": "Australia Day (Observed)", + "2008-01-28": "Australia Day (observed)", "2008-03-21": "Good Friday", "2008-03-22": "Easter Saturday", "2008-03-24": "Easter Monday", @@ -736,29 +736,29 @@ "2009-04-11": "Easter Saturday", "2009-04-13": "Easter Monday", "2009-04-25": "Anzac Day", - "2009-04-27": "Anzac Day (Observed)", + "2009-04-27": "Anzac Day (observed)", "2009-05-04": "May Day", "2009-06-08": "Queen's Birthday", "2009-08-03": "Picnic Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-26": "Australia Day", "2010-04-02": "Good Friday", "2010-04-03": "Easter Saturday", "2010-04-05": "Easter Monday", "2010-04-25": "Anzac Day", - "2010-04-26": "Anzac Day (Observed)", + "2010-04-26": "Anzac Day (observed)", "2010-05-03": "May Day", "2010-06-14": "Queen's Birthday", "2010-08-02": "Picnic Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-26": "Australia Day", "2011-04-22": "Good Friday", "2011-04-23": "Easter Saturday", @@ -768,9 +768,9 @@ "2011-08-01": "Picnic Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-26": "Australia Day", "2012-04-06": "Good Friday", "2012-04-07": "Easter Saturday", @@ -783,7 +783,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-01-26": "Australia Day", - "2013-01-28": "Australia Day (Observed)", + "2013-01-28": "Australia Day (observed)", "2013-03-29": "Good Friday", "2013-03-30": "Easter Saturday", "2013-04-01": "Easter Monday", @@ -795,7 +795,7 @@ "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", "2014-01-26": "Australia Day", - "2014-01-27": "Australia Day (Observed)", + "2014-01-27": "Australia Day (observed)", "2014-04-18": "Good Friday", "2014-04-19": "Easter Saturday", "2014-04-21": "Easter Monday", @@ -811,13 +811,13 @@ "2015-04-04": "Easter Saturday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-05-04": "May Day", "2015-06-08": "Queen's Birthday", "2015-08-03": "Picnic Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-26": "Australia Day", "2016-03-25": "Good Friday", @@ -829,9 +829,9 @@ "2016-08-01": "Picnic Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-26": "Australia Day", "2017-04-14": "Good Friday", "2017-04-15": "Easter Saturday", @@ -855,7 +855,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-01-26": "Australia Day", - "2019-01-28": "Australia Day (Observed)", + "2019-01-28": "Australia Day (observed)", "2019-04-19": "Good Friday", "2019-04-20": "Easter Saturday", "2019-04-22": "Easter Monday", @@ -867,34 +867,34 @@ "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-01-26": "Australia Day", - "2020-01-27": "Australia Day (Observed)", + "2020-01-27": "Australia Day (observed)", "2020-04-10": "Good Friday", "2020-04-11": "Easter Saturday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-05-04": "May Day", "2020-06-08": "Queen's Birthday", "2020-08-03": "Picnic Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-26": "Australia Day", "2021-04-02": "Good Friday", "2021-04-03": "Easter Saturday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-05-03": "May Day", "2021-06-14": "Queen's Birthday", "2021-08-02": "Picnic Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-26": "Australia Day", "2022-04-15": "Good Friday", "2022-04-16": "Easter Saturday", @@ -906,9 +906,9 @@ "2022-09-22": "National Day of Mourning for Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-26": "Australia Day", "2023-04-07": "Good Friday", "2023-04-08": "Easter Saturday", @@ -932,7 +932,7 @@ "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-26": "Australia Day", - "2025-01-27": "Australia Day (Observed)", + "2025-01-27": "Australia Day (observed)", "2025-04-18": "Good Friday", "2025-04-19": "Easter Saturday", "2025-04-21": "Easter Monday", @@ -948,29 +948,29 @@ "2026-04-04": "Easter Saturday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-05-04": "May Day", "2026-06-08": "King's Birthday", "2026-08-03": "Picnic Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-26": "Australia Day", "2027-03-26": "Good Friday", "2027-03-27": "Easter Saturday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-05-03": "May Day", "2027-06-14": "King's Birthday", "2027-08-02": "Picnic Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Australia Day", "2028-04-14": "Good Friday", "2028-04-15": "Easter Saturday", @@ -994,7 +994,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-01-26": "Australia Day", - "2030-01-28": "Australia Day (Observed)", + "2030-01-28": "Australia Day (observed)", "2030-04-19": "Good Friday", "2030-04-20": "Easter Saturday", "2030-04-22": "Easter Monday", @@ -1006,7 +1006,7 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-26": "Australia Day", - "2031-01-27": "Australia Day (Observed)", + "2031-01-27": "Australia Day (observed)", "2031-04-11": "Good Friday", "2031-04-12": "Easter Saturday", "2031-04-14": "Easter Monday", @@ -1022,16 +1022,16 @@ "2032-03-27": "Easter Saturday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-05-03": "May Day", "2032-06-14": "King's Birthday", "2032-08-02": "Picnic Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-26": "Australia Day", "2033-04-15": "Good Friday", "2033-04-16": "Easter Saturday", @@ -1042,9 +1042,9 @@ "2033-08-01": "Picnic Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-26": "Australia Day", "2034-04-07": "Good Friday", "2034-04-08": "Easter Saturday", @@ -1068,7 +1068,7 @@ "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-26": "Australia Day", - "2036-01-28": "Australia Day (Observed)", + "2036-01-28": "Australia Day (observed)", "2036-04-11": "Good Friday", "2036-04-12": "Easter Saturday", "2036-04-14": "Easter Monday", @@ -1084,28 +1084,28 @@ "2037-04-04": "Easter Saturday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-05-04": "May Day", "2037-06-08": "King's Birthday", "2037-08-03": "Picnic Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-26": "Australia Day", "2038-04-23": "Good Friday", "2038-04-24": "Easter Saturday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-05-03": "May Day", "2038-06-14": "King's Birthday", "2038-08-02": "Picnic Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-26": "Australia Day", "2039-04-08": "Good Friday", "2039-04-09": "Easter Saturday", @@ -1116,9 +1116,9 @@ "2039-08-01": "Picnic Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-26": "Australia Day", "2040-03-30": "Good Friday", "2040-03-31": "Easter Saturday", @@ -1131,7 +1131,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-01-26": "Australia Day", - "2041-01-28": "Australia Day (Observed)", + "2041-01-28": "Australia Day (observed)", "2041-04-19": "Good Friday", "2041-04-20": "Easter Saturday", "2041-04-22": "Easter Monday", @@ -1143,7 +1143,7 @@ "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-26": "Australia Day", - "2042-01-27": "Australia Day (Observed)", + "2042-01-27": "Australia Day (observed)", "2042-04-04": "Good Friday", "2042-04-05": "Easter Saturday", "2042-04-07": "Easter Monday", @@ -1159,13 +1159,13 @@ "2043-03-28": "Easter Saturday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-05-04": "May Day", "2043-06-08": "King's Birthday", "2043-08-03": "Picnic Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-26": "Australia Day", "2044-04-15": "Good Friday", @@ -1177,9 +1177,9 @@ "2044-08-01": "Picnic Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-26": "Australia Day", "2045-04-07": "Good Friday", "2045-04-08": "Easter Saturday", @@ -1203,7 +1203,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-01-26": "Australia Day", - "2047-01-28": "Australia Day (Observed)", + "2047-01-28": "Australia Day (observed)", "2047-04-12": "Good Friday", "2047-04-13": "Easter Saturday", "2047-04-15": "Easter Monday", @@ -1215,34 +1215,34 @@ "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", "2048-01-26": "Australia Day", - "2048-01-27": "Australia Day (Observed)", + "2048-01-27": "Australia Day (observed)", "2048-04-03": "Good Friday", "2048-04-04": "Easter Saturday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-05-04": "May Day", "2048-06-08": "King's Birthday", "2048-08-03": "Picnic Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-26": "Australia Day", "2049-04-16": "Good Friday", "2049-04-17": "Easter Saturday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-05-03": "May Day", "2049-06-14": "King's Birthday", "2049-08-02": "Picnic Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-26": "Australia Day", "2050-04-08": "Good Friday", "2050-04-09": "Easter Saturday", @@ -1253,5 +1253,5 @@ "2050-08-01": "Picnic Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/AU_QLD.json b/snapshots/countries/AU_QLD.json index bd039c57a..b52db9cba 100644 --- a/snapshots/countries/AU_QLD.json +++ b/snapshots/countries/AU_QLD.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-26": "Australia Day", "1950-04-07": "Good Friday", "1950-04-08": "Easter Saturday", @@ -26,7 +26,7 @@ "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", "1952-01-26": "Australia Day", - "1952-01-28": "Australia Day (Observed)", + "1952-01-28": "Australia Day (observed)", "1952-04-11": "Good Friday", "1952-04-12": "Easter Saturday", "1952-04-13": "Easter Sunday", @@ -49,7 +49,7 @@ "1953-08-12": "The Royal Queensland Show", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-26": "Australia Day", "1954-04-16": "Good Friday", @@ -57,16 +57,16 @@ "1954-04-18": "Easter Sunday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", - "1954-04-26": "Anzac Day (Observed)", + "1954-04-26": "Anzac Day (observed)", "1954-05-03": "Labour Day", "1954-06-14": "Queen's Birthday", "1954-08-11": "The Royal Queensland Show", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-26": "Australia Day", "1955-04-08": "Good Friday", "1955-04-09": "Easter Saturday", @@ -78,9 +78,9 @@ "1955-08-10": "The Royal Queensland Show", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-26": "Australia Day", "1956-03-30": "Good Friday", "1956-03-31": "Easter Saturday", @@ -94,7 +94,7 @@ "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", "1957-01-26": "Australia Day", - "1957-01-28": "Australia Day (Observed)", + "1957-01-28": "Australia Day (observed)", "1957-04-19": "Good Friday", "1957-04-20": "Easter Saturday", "1957-04-21": "Easter Sunday", @@ -107,7 +107,7 @@ "1957-12-26": "Boxing Day", "1958-01-01": "New Year's Day", "1958-01-26": "Australia Day", - "1958-01-27": "Australia Day (Observed)", + "1958-01-27": "Australia Day (observed)", "1958-04-04": "Good Friday", "1958-04-05": "Easter Saturday", "1958-04-06": "Easter Sunday", @@ -130,7 +130,7 @@ "1959-08-12": "The Royal Queensland Show", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-26": "Australia Day", "1960-04-15": "Good Friday", @@ -143,9 +143,9 @@ "1960-08-10": "The Royal Queensland Show", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-26": "Australia Day", "1961-03-31": "Good Friday", "1961-04-01": "Easter Saturday", @@ -171,7 +171,7 @@ "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", "1963-01-26": "Australia Day", - "1963-01-28": "Australia Day (Observed)", + "1963-01-28": "Australia Day (observed)", "1963-04-12": "Good Friday", "1963-04-13": "Easter Saturday", "1963-04-14": "Easter Sunday", @@ -184,7 +184,7 @@ "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", "1964-01-26": "Australia Day", - "1964-01-27": "Australia Day (Observed)", + "1964-01-27": "Australia Day (observed)", "1964-03-27": "Good Friday", "1964-03-28": "Easter Saturday", "1964-03-29": "Easter Sunday", @@ -195,7 +195,7 @@ "1964-08-12": "The Royal Queensland Show", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-26": "Australia Day", "1965-04-16": "Good Friday", @@ -203,16 +203,16 @@ "1965-04-18": "Easter Sunday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", - "1965-04-26": "Anzac Day (Observed)", + "1965-04-26": "Anzac Day (observed)", "1965-05-03": "Labour Day", "1965-06-14": "Queen's Birthday", "1965-08-11": "The Royal Queensland Show", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-26": "Australia Day", "1966-04-08": "Good Friday", "1966-04-09": "Easter Saturday", @@ -224,9 +224,9 @@ "1966-08-10": "The Royal Queensland Show", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-26": "Australia Day", "1967-03-24": "Good Friday", "1967-03-25": "Easter Saturday", @@ -252,7 +252,7 @@ "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", "1969-01-26": "Australia Day", - "1969-01-27": "Australia Day (Observed)", + "1969-01-27": "Australia Day (observed)", "1969-04-04": "Good Friday", "1969-04-05": "Easter Saturday", "1969-04-06": "Easter Sunday", @@ -275,7 +275,7 @@ "1970-08-12": "The Royal Queensland Show", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-26": "Australia Day", "1971-04-09": "Good Friday", @@ -283,16 +283,16 @@ "1971-04-11": "Easter Sunday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", - "1971-04-26": "Anzac Day (Observed)", + "1971-04-26": "Anzac Day (observed)", "1971-05-03": "Labour Day", "1971-06-14": "Queen's Birthday", "1971-08-11": "The Royal Queensland Show", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-26": "Australia Day", "1972-03-31": "Good Friday", "1972-04-01": "Easter Saturday", @@ -318,7 +318,7 @@ "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", "1974-01-26": "Australia Day", - "1974-01-28": "Australia Day (Observed)", + "1974-01-28": "Australia Day (observed)", "1974-04-12": "Good Friday", "1974-04-13": "Easter Saturday", "1974-04-14": "Easter Sunday", @@ -331,7 +331,7 @@ "1974-12-26": "Boxing Day", "1975-01-01": "New Year's Day", "1975-01-26": "Australia Day", - "1975-01-27": "Australia Day (Observed)", + "1975-01-27": "Australia Day (observed)", "1975-03-28": "Good Friday", "1975-03-29": "Easter Saturday", "1975-03-30": "Easter Sunday", @@ -349,16 +349,16 @@ "1976-04-18": "Easter Sunday", "1976-04-19": "Easter Monday", "1976-04-25": "Anzac Day", - "1976-04-26": "Anzac Day (Observed)", + "1976-04-26": "Anzac Day (observed)", "1976-05-03": "Labour Day", "1976-06-14": "Queen's Birthday", "1976-08-11": "The Royal Queensland Show", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-26": "Australia Day", "1977-04-08": "Good Friday", "1977-04-09": "Easter Saturday", @@ -370,9 +370,9 @@ "1977-08-10": "The Royal Queensland Show", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-26": "Australia Day", "1978-03-24": "Good Friday", "1978-03-25": "Easter Saturday", @@ -398,7 +398,7 @@ "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", "1980-01-26": "Australia Day", - "1980-01-28": "Australia Day (Observed)", + "1980-01-28": "Australia Day (observed)", "1980-04-04": "Good Friday", "1980-04-05": "Easter Saturday", "1980-04-06": "Easter Sunday", @@ -421,7 +421,7 @@ "1981-08-12": "The Royal Queensland Show", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-26": "Australia Day", "1982-04-09": "Good Friday", @@ -429,16 +429,16 @@ "1982-04-11": "Easter Sunday", "1982-04-12": "Easter Monday", "1982-04-25": "Anzac Day", - "1982-04-26": "Anzac Day (Observed)", + "1982-04-26": "Anzac Day (observed)", "1982-05-03": "Labour Day", "1982-06-14": "Queen's Birthday", "1982-08-11": "The Royal Queensland Show", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-26": "Australia Day", "1983-04-01": "Good Friday", "1983-04-02": "Easter Saturday", @@ -450,9 +450,9 @@ "1983-08-10": "The Royal Queensland Show", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-26": "Australia Day", "1984-04-20": "Good Friday", "1984-04-21": "Easter Saturday", @@ -466,7 +466,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-01-26": "Australia Day", - "1985-01-28": "Australia Day (Observed)", + "1985-01-28": "Australia Day (observed)", "1985-04-05": "Good Friday", "1985-04-06": "Easter Saturday", "1985-04-07": "Easter Sunday", @@ -479,7 +479,7 @@ "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", "1986-01-26": "Australia Day", - "1986-01-27": "Australia Day (Observed)", + "1986-01-27": "Australia Day (observed)", "1986-03-28": "Good Friday", "1986-03-29": "Easter Saturday", "1986-03-30": "Easter Sunday", @@ -502,7 +502,7 @@ "1987-08-12": "The Royal Queensland Show", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-26": "Australia Day", "1988-04-01": "Good Friday", @@ -515,9 +515,9 @@ "1988-08-10": "The Royal Queensland Show", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-26": "Australia Day", "1989-03-24": "Good Friday", "1989-03-25": "Easter Saturday", @@ -543,7 +543,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-01-26": "Australia Day", - "1991-01-28": "Australia Day (Observed)", + "1991-01-28": "Australia Day (observed)", "1991-03-29": "Good Friday", "1991-03-30": "Easter Saturday", "1991-03-31": "Easter Sunday", @@ -556,7 +556,7 @@ "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", "1992-01-26": "Australia Day", - "1992-01-27": "Australia Day (Observed)", + "1992-01-27": "Australia Day (observed)", "1992-04-17": "Good Friday", "1992-04-18": "Easter Saturday", "1992-04-19": "Easter Sunday", @@ -567,7 +567,7 @@ "1992-08-12": "The Royal Queensland Show", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-26": "Australia Day", "1993-04-09": "Good Friday", @@ -575,16 +575,16 @@ "1993-04-11": "Easter Sunday", "1993-04-12": "Easter Monday", "1993-04-25": "Anzac Day", - "1993-04-26": "Anzac Day (Observed)", + "1993-04-26": "Anzac Day (observed)", "1993-05-03": "Labour Day", "1993-06-14": "Queen's Birthday", "1993-08-11": "The Royal Queensland Show", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-26": "Australia Day", "1994-04-01": "Good Friday", "1994-04-02": "Easter Saturday", @@ -596,9 +596,9 @@ "1994-08-10": "The Royal Queensland Show", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-26": "Australia Day", "1995-04-14": "Good Friday", "1995-04-15": "Easter Saturday", @@ -624,7 +624,7 @@ "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", "1997-01-26": "Australia Day", - "1997-01-27": "Australia Day (Observed)", + "1997-01-27": "Australia Day (observed)", "1997-03-28": "Good Friday", "1997-03-29": "Easter Saturday", "1997-03-30": "Easter Sunday", @@ -647,7 +647,7 @@ "1998-08-12": "The Royal Queensland Show", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-26": "Australia Day", "1999-04-02": "Good Friday", @@ -655,16 +655,16 @@ "1999-04-04": "Easter Sunday", "1999-04-05": "Easter Monday", "1999-04-25": "Anzac Day", - "1999-04-26": "Anzac Day (Observed)", + "1999-04-26": "Anzac Day (observed)", "1999-05-03": "Labour Day", "1999-06-14": "Queen's Birthday", "1999-08-11": "The Royal Queensland Show", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-26": "Australia Day", "2000-04-21": "Good Friday", "2000-04-22": "Easter Saturday", @@ -690,7 +690,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-01-26": "Australia Day", - "2002-01-28": "Australia Day (Observed)", + "2002-01-28": "Australia Day (observed)", "2002-03-29": "Good Friday", "2002-03-30": "Easter Saturday", "2002-03-31": "Easter Sunday", @@ -703,7 +703,7 @@ "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", "2003-01-26": "Australia Day", - "2003-01-27": "Australia Day (Observed)", + "2003-01-27": "Australia Day (observed)", "2003-04-18": "Good Friday", "2003-04-19": "Easter Saturday", "2003-04-20": "Easter Sunday", @@ -721,16 +721,16 @@ "2004-04-11": "Easter Sunday", "2004-04-12": "Easter Monday", "2004-04-25": "Anzac Day", - "2004-04-26": "Anzac Day (Observed)", + "2004-04-26": "Anzac Day (observed)", "2004-05-03": "Labour Day", "2004-06-14": "Queen's Birthday", "2004-08-11": "The Royal Queensland Show", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-26": "Australia Day", "2005-03-25": "Good Friday", "2005-03-26": "Easter Saturday", @@ -742,9 +742,9 @@ "2005-08-10": "The Royal Queensland Show", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-26": "Australia Day", "2006-04-14": "Good Friday", "2006-04-15": "Easter Saturday", @@ -770,7 +770,7 @@ "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", "2008-01-26": "Australia Day", - "2008-01-28": "Australia Day (Observed)", + "2008-01-28": "Australia Day (observed)", "2008-03-21": "Good Friday", "2008-03-22": "Easter Saturday", "2008-03-23": "Easter Sunday", @@ -793,7 +793,7 @@ "2009-08-12": "The Royal Queensland Show", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-26": "Australia Day", "2010-04-02": "Good Friday", @@ -801,16 +801,16 @@ "2010-04-04": "Easter Sunday", "2010-04-05": "Easter Monday", "2010-04-25": "Anzac Day", - "2010-04-26": "Anzac Day (Observed)", + "2010-04-26": "Anzac Day (observed)", "2010-05-03": "Labour Day", "2010-06-14": "Queen's Birthday", "2010-08-11": "The Royal Queensland Show", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-26": "Australia Day", "2011-04-22": "Good Friday", "2011-04-23": "Easter Saturday", @@ -821,9 +821,9 @@ "2011-08-10": "The Royal Queensland Show", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-26": "Australia Day", "2012-04-06": "Good Friday", "2012-04-07": "Easter Saturday", @@ -838,7 +838,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-01-26": "Australia Day", - "2013-01-28": "Australia Day (Observed)", + "2013-01-28": "Australia Day (observed)", "2013-03-29": "Good Friday", "2013-03-30": "Easter Saturday", "2013-03-31": "Easter Sunday", @@ -851,7 +851,7 @@ "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", "2014-01-26": "Australia Day", - "2014-01-27": "Australia Day (Observed)", + "2014-01-27": "Australia Day (observed)", "2014-04-18": "Good Friday", "2014-04-19": "Easter Saturday", "2014-04-20": "Easter Sunday", @@ -874,7 +874,7 @@ "2015-10-05": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-26": "Australia Day", "2016-03-25": "Good Friday", @@ -887,9 +887,9 @@ "2016-10-03": "Queen's Birthday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-26": "Australia Day", "2017-04-14": "Good Friday", "2017-04-15": "Easter Saturday", @@ -915,7 +915,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-01-26": "Australia Day", - "2019-01-28": "Australia Day (Observed)", + "2019-01-28": "Australia Day (observed)", "2019-04-19": "Good Friday", "2019-04-20": "Easter Saturday", "2019-04-21": "Easter Sunday", @@ -928,7 +928,7 @@ "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-01-26": "Australia Day", - "2020-01-27": "Australia Day (Observed)", + "2020-01-27": "Australia Day (observed)", "2020-04-10": "Good Friday", "2020-04-11": "Easter Saturday", "2020-04-12": "Easter Sunday", @@ -939,7 +939,7 @@ "2020-10-05": "Queen's Birthday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-26": "Australia Day", "2021-04-02": "Good Friday", @@ -947,16 +947,16 @@ "2021-04-04": "Easter Sunday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-05-03": "Labour Day", "2021-10-04": "Queen's Birthday", "2021-10-29": "The Royal Queensland Show", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-26": "Australia Day", "2022-04-15": "Good Friday", "2022-04-16": "Easter Saturday", @@ -969,9 +969,9 @@ "2022-10-03": "Queen's Birthday", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-26": "Australia Day", "2023-04-07": "Good Friday", "2023-04-08": "Easter Saturday", @@ -997,7 +997,7 @@ "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-26": "Australia Day", - "2025-01-27": "Australia Day (Observed)", + "2025-01-27": "Australia Day (observed)", "2025-04-18": "Good Friday", "2025-04-19": "Easter Saturday", "2025-04-20": "Easter Sunday", @@ -1020,7 +1020,7 @@ "2026-10-05": "King's Birthday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-26": "Australia Day", "2027-03-26": "Good Friday", @@ -1028,16 +1028,16 @@ "2027-03-28": "Easter Sunday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-05-03": "Labour Day", "2027-08-11": "The Royal Queensland Show", "2027-10-04": "King's Birthday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Australia Day", "2028-04-14": "Good Friday", "2028-04-15": "Easter Saturday", @@ -1063,7 +1063,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-01-26": "Australia Day", - "2030-01-28": "Australia Day (Observed)", + "2030-01-28": "Australia Day (observed)", "2030-04-19": "Good Friday", "2030-04-20": "Easter Saturday", "2030-04-21": "Easter Sunday", @@ -1076,7 +1076,7 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-26": "Australia Day", - "2031-01-27": "Australia Day (Observed)", + "2031-01-27": "Australia Day (observed)", "2031-04-11": "Good Friday", "2031-04-12": "Easter Saturday", "2031-04-13": "Easter Sunday", @@ -1094,16 +1094,16 @@ "2032-03-28": "Easter Sunday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-05-03": "Labour Day", "2032-08-11": "The Royal Queensland Show", "2032-10-04": "King's Birthday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-26": "Australia Day", "2033-04-15": "Good Friday", "2033-04-16": "Easter Saturday", @@ -1115,9 +1115,9 @@ "2033-10-03": "King's Birthday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-26": "Australia Day", "2034-04-07": "Good Friday", "2034-04-08": "Easter Saturday", @@ -1143,7 +1143,7 @@ "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-26": "Australia Day", - "2036-01-28": "Australia Day (Observed)", + "2036-01-28": "Australia Day (observed)", "2036-04-11": "Good Friday", "2036-04-12": "Easter Saturday", "2036-04-13": "Easter Sunday", @@ -1166,22 +1166,22 @@ "2037-10-05": "King's Birthday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-26": "Australia Day", "2038-04-23": "Good Friday", "2038-04-24": "Easter Saturday", "2038-04-25": "Anzac Day; Easter Sunday", - "2038-04-26": "Anzac Day (Observed); Easter Monday; Easter Sunday (Observed)", + "2038-04-26": "Anzac Day (observed); Easter Monday; Easter Sunday (observed)", "2038-05-03": "Labour Day", "2038-08-11": "The Royal Queensland Show", "2038-10-04": "King's Birthday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-26": "Australia Day", "2039-04-08": "Good Friday", "2039-04-09": "Easter Saturday", @@ -1193,9 +1193,9 @@ "2039-10-03": "King's Birthday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-26": "Australia Day", "2040-03-30": "Good Friday", "2040-03-31": "Easter Saturday", @@ -1209,7 +1209,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-01-26": "Australia Day", - "2041-01-28": "Australia Day (Observed)", + "2041-01-28": "Australia Day (observed)", "2041-04-19": "Good Friday", "2041-04-20": "Easter Saturday", "2041-04-21": "Easter Sunday", @@ -1222,7 +1222,7 @@ "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-26": "Australia Day", - "2042-01-27": "Australia Day (Observed)", + "2042-01-27": "Australia Day (observed)", "2042-04-04": "Good Friday", "2042-04-05": "Easter Saturday", "2042-04-06": "Easter Sunday", @@ -1245,7 +1245,7 @@ "2043-10-05": "King's Birthday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-26": "Australia Day", "2044-04-15": "Good Friday", @@ -1258,9 +1258,9 @@ "2044-10-03": "King's Birthday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-26": "Australia Day", "2045-04-07": "Good Friday", "2045-04-08": "Easter Saturday", @@ -1286,7 +1286,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-01-26": "Australia Day", - "2047-01-28": "Australia Day (Observed)", + "2047-01-28": "Australia Day (observed)", "2047-04-12": "Good Friday", "2047-04-13": "Easter Saturday", "2047-04-14": "Easter Sunday", @@ -1299,7 +1299,7 @@ "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", "2048-01-26": "Australia Day", - "2048-01-27": "Australia Day (Observed)", + "2048-01-27": "Australia Day (observed)", "2048-04-03": "Good Friday", "2048-04-04": "Easter Saturday", "2048-04-05": "Easter Sunday", @@ -1310,7 +1310,7 @@ "2048-10-05": "King's Birthday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-26": "Australia Day", "2049-04-16": "Good Friday", @@ -1318,16 +1318,16 @@ "2049-04-18": "Easter Sunday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-05-03": "Labour Day", "2049-08-11": "The Royal Queensland Show", "2049-10-04": "King's Birthday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-26": "Australia Day", "2050-04-08": "Good Friday", "2050-04-09": "Easter Saturday", @@ -1339,5 +1339,5 @@ "2050-10-03": "King's Birthday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/AU_SA.json b/snapshots/countries/AU_SA.json index 0f984c7ef..6554e43c4 100644 --- a/snapshots/countries/AU_SA.json +++ b/snapshots/countries/AU_SA.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-26": "Australia Day", "1950-03-20": "Adelaide Cup", "1950-04-07": "Good Friday", @@ -24,7 +24,7 @@ "1951-12-26": "Proclamation Day", "1952-01-01": "New Year's Day", "1952-01-26": "Australia Day", - "1952-01-28": "Australia Day (Observed)", + "1952-01-28": "Australia Day (observed)", "1952-03-17": "Adelaide Cup", "1952-04-11": "Good Friday", "1952-04-12": "Easter Saturday", @@ -45,7 +45,7 @@ "1953-10-05": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Proclamation Day", - "1953-12-28": "Proclamation Day (Observed)", + "1953-12-28": "Proclamation Day (observed)", "1954-01-01": "New Year's Day", "1954-01-26": "Australia Day", "1954-03-15": "Adelaide Cup", @@ -53,15 +53,15 @@ "1954-04-17": "Easter Saturday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", - "1954-04-26": "Anzac Day (Observed)", + "1954-04-26": "Anzac Day (observed)", "1954-06-14": "Queen's Birthday", "1954-10-04": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Proclamation Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Proclamation Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Proclamation Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-26": "Australia Day", "1955-03-21": "Adelaide Cup", "1955-04-08": "Good Friday", @@ -72,9 +72,9 @@ "1955-10-03": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Proclamation Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-26": "Australia Day", "1956-03-19": "Adelaide Cup", "1956-03-30": "Good Friday", @@ -87,7 +87,7 @@ "1956-12-26": "Proclamation Day", "1957-01-01": "New Year's Day", "1957-01-26": "Australia Day", - "1957-01-28": "Australia Day (Observed)", + "1957-01-28": "Australia Day (observed)", "1957-03-18": "Adelaide Cup", "1957-04-19": "Good Friday", "1957-04-20": "Easter Saturday", @@ -99,7 +99,7 @@ "1957-12-26": "Proclamation Day", "1958-01-01": "New Year's Day", "1958-01-26": "Australia Day", - "1958-01-27": "Australia Day (Observed)", + "1958-01-27": "Australia Day (observed)", "1958-03-17": "Adelaide Cup", "1958-04-04": "Good Friday", "1958-04-05": "Easter Saturday", @@ -120,7 +120,7 @@ "1959-10-05": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Proclamation Day", - "1959-12-28": "Proclamation Day (Observed)", + "1959-12-28": "Proclamation Day (observed)", "1960-01-01": "New Year's Day", "1960-01-26": "Australia Day", "1960-03-21": "Adelaide Cup", @@ -132,9 +132,9 @@ "1960-10-03": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Proclamation Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-26": "Australia Day", "1961-03-20": "Adelaide Cup", "1961-03-31": "Good Friday", @@ -158,7 +158,7 @@ "1962-12-26": "Proclamation Day", "1963-01-01": "New Year's Day", "1963-01-26": "Australia Day", - "1963-01-28": "Australia Day (Observed)", + "1963-01-28": "Australia Day (observed)", "1963-03-18": "Adelaide Cup", "1963-04-12": "Good Friday", "1963-04-13": "Easter Saturday", @@ -170,7 +170,7 @@ "1963-12-26": "Proclamation Day", "1964-01-01": "New Year's Day", "1964-01-26": "Australia Day", - "1964-01-27": "Australia Day (Observed)", + "1964-01-27": "Australia Day (observed)", "1964-03-16": "Adelaide Cup", "1964-03-27": "Good Friday", "1964-03-28": "Easter Saturday", @@ -180,7 +180,7 @@ "1964-10-05": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Proclamation Day", - "1964-12-28": "Proclamation Day (Observed)", + "1964-12-28": "Proclamation Day (observed)", "1965-01-01": "New Year's Day", "1965-01-26": "Australia Day", "1965-03-15": "Adelaide Cup", @@ -188,15 +188,15 @@ "1965-04-17": "Easter Saturday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", - "1965-04-26": "Anzac Day (Observed)", + "1965-04-26": "Anzac Day (observed)", "1965-06-14": "Queen's Birthday", "1965-10-04": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Proclamation Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Proclamation Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Proclamation Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-26": "Australia Day", "1966-03-21": "Adelaide Cup", "1966-04-08": "Good Friday", @@ -207,9 +207,9 @@ "1966-10-03": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Proclamation Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-26": "Australia Day", "1967-03-20": "Adelaide Cup", "1967-03-24": "Good Friday", @@ -233,7 +233,7 @@ "1968-12-26": "Proclamation Day", "1969-01-01": "New Year's Day", "1969-01-26": "Australia Day", - "1969-01-27": "Australia Day (Observed)", + "1969-01-27": "Australia Day (observed)", "1969-03-17": "Adelaide Cup", "1969-04-04": "Good Friday", "1969-04-05": "Easter Saturday", @@ -254,7 +254,7 @@ "1970-10-05": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Proclamation Day", - "1970-12-28": "Proclamation Day (Observed)", + "1970-12-28": "Proclamation Day (observed)", "1971-01-01": "New Year's Day", "1971-01-26": "Australia Day", "1971-03-15": "Adelaide Cup", @@ -262,15 +262,15 @@ "1971-04-10": "Easter Saturday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", - "1971-04-26": "Anzac Day (Observed)", + "1971-04-26": "Anzac Day (observed)", "1971-06-14": "Queen's Birthday", "1971-10-04": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Proclamation Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Proclamation Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Proclamation Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-26": "Australia Day", "1972-03-20": "Adelaide Cup", "1972-03-31": "Good Friday", @@ -294,7 +294,7 @@ "1973-12-26": "Proclamation Day", "1974-01-01": "New Year's Day", "1974-01-26": "Australia Day", - "1974-01-28": "Australia Day (Observed)", + "1974-01-28": "Australia Day (observed)", "1974-03-18": "Adelaide Cup", "1974-04-12": "Good Friday", "1974-04-13": "Easter Saturday", @@ -306,7 +306,7 @@ "1974-12-26": "Proclamation Day", "1975-01-01": "New Year's Day", "1975-01-26": "Australia Day", - "1975-01-27": "Australia Day (Observed)", + "1975-01-27": "Australia Day (observed)", "1975-03-17": "Adelaide Cup", "1975-03-28": "Good Friday", "1975-03-29": "Easter Saturday", @@ -323,15 +323,15 @@ "1976-04-17": "Easter Saturday", "1976-04-19": "Easter Monday", "1976-04-25": "Anzac Day", - "1976-04-26": "Anzac Day (Observed)", + "1976-04-26": "Anzac Day (observed)", "1976-06-14": "Queen's Birthday", "1976-10-04": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Proclamation Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Proclamation Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Proclamation Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-26": "Australia Day", "1977-03-21": "Adelaide Cup", "1977-04-08": "Good Friday", @@ -342,9 +342,9 @@ "1977-10-03": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Proclamation Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-26": "Australia Day", "1978-03-20": "Adelaide Cup", "1978-03-24": "Good Friday", @@ -368,7 +368,7 @@ "1979-12-26": "Proclamation Day", "1980-01-01": "New Year's Day", "1980-01-26": "Australia Day", - "1980-01-28": "Australia Day (Observed)", + "1980-01-28": "Australia Day (observed)", "1980-03-17": "Adelaide Cup", "1980-04-04": "Good Friday", "1980-04-05": "Easter Saturday", @@ -389,7 +389,7 @@ "1981-10-05": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Proclamation Day", - "1981-12-28": "Proclamation Day (Observed)", + "1981-12-28": "Proclamation Day (observed)", "1982-01-01": "New Year's Day", "1982-01-26": "Australia Day", "1982-03-15": "Adelaide Cup", @@ -397,15 +397,15 @@ "1982-04-10": "Easter Saturday", "1982-04-12": "Easter Monday", "1982-04-25": "Anzac Day", - "1982-04-26": "Anzac Day (Observed)", + "1982-04-26": "Anzac Day (observed)", "1982-06-14": "Queen's Birthday", "1982-10-04": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Proclamation Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Proclamation Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Proclamation Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-26": "Australia Day", "1983-03-21": "Adelaide Cup", "1983-04-01": "Good Friday", @@ -416,9 +416,9 @@ "1983-10-03": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Proclamation Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-26": "Australia Day", "1984-03-19": "Adelaide Cup", "1984-04-20": "Good Friday", @@ -431,7 +431,7 @@ "1984-12-26": "Proclamation Day", "1985-01-01": "New Year's Day", "1985-01-26": "Australia Day", - "1985-01-28": "Australia Day (Observed)", + "1985-01-28": "Australia Day (observed)", "1985-03-18": "Adelaide Cup", "1985-04-05": "Good Friday", "1985-04-06": "Easter Saturday", @@ -443,7 +443,7 @@ "1985-12-26": "Proclamation Day", "1986-01-01": "New Year's Day", "1986-01-26": "Australia Day", - "1986-01-27": "Australia Day (Observed)", + "1986-01-27": "Australia Day (observed)", "1986-03-17": "Adelaide Cup", "1986-03-28": "Good Friday", "1986-03-29": "Easter Saturday", @@ -464,7 +464,7 @@ "1987-10-05": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Proclamation Day", - "1987-12-28": "Proclamation Day (Observed)", + "1987-12-28": "Proclamation Day (observed)", "1988-01-01": "New Year's Day", "1988-01-26": "Australia Day", "1988-03-21": "Adelaide Cup", @@ -476,9 +476,9 @@ "1988-10-03": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Proclamation Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-26": "Australia Day", "1989-03-20": "Adelaide Cup", "1989-03-24": "Good Friday", @@ -502,7 +502,7 @@ "1990-12-26": "Proclamation Day", "1991-01-01": "New Year's Day", "1991-01-26": "Australia Day", - "1991-01-28": "Australia Day (Observed)", + "1991-01-28": "Australia Day (observed)", "1991-03-18": "Adelaide Cup", "1991-03-29": "Good Friday", "1991-03-30": "Easter Saturday", @@ -514,7 +514,7 @@ "1991-12-26": "Proclamation Day", "1992-01-01": "New Year's Day", "1992-01-26": "Australia Day", - "1992-01-27": "Australia Day (Observed)", + "1992-01-27": "Australia Day (observed)", "1992-03-16": "Adelaide Cup", "1992-04-17": "Good Friday", "1992-04-18": "Easter Saturday", @@ -524,7 +524,7 @@ "1992-10-05": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Proclamation Day", - "1992-12-28": "Proclamation Day (Observed)", + "1992-12-28": "Proclamation Day (observed)", "1993-01-01": "New Year's Day", "1993-01-26": "Australia Day", "1993-03-15": "Adelaide Cup", @@ -532,15 +532,15 @@ "1993-04-10": "Easter Saturday", "1993-04-12": "Easter Monday", "1993-04-25": "Anzac Day", - "1993-04-26": "Anzac Day (Observed)", + "1993-04-26": "Anzac Day (observed)", "1993-06-14": "Queen's Birthday", "1993-10-04": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Proclamation Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Proclamation Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Proclamation Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-26": "Australia Day", "1994-03-21": "Adelaide Cup", "1994-04-01": "Good Friday", @@ -551,9 +551,9 @@ "1994-10-03": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Proclamation Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-26": "Australia Day", "1995-03-20": "Adelaide Cup", "1995-04-14": "Good Friday", @@ -577,7 +577,7 @@ "1996-12-26": "Proclamation Day", "1997-01-01": "New Year's Day", "1997-01-26": "Australia Day", - "1997-01-27": "Australia Day (Observed)", + "1997-01-27": "Australia Day (observed)", "1997-03-17": "Adelaide Cup", "1997-03-28": "Good Friday", "1997-03-29": "Easter Saturday", @@ -598,7 +598,7 @@ "1998-10-05": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Proclamation Day", - "1998-12-28": "Proclamation Day (Observed)", + "1998-12-28": "Proclamation Day (observed)", "1999-01-01": "New Year's Day", "1999-01-26": "Australia Day", "1999-03-15": "Adelaide Cup", @@ -606,15 +606,15 @@ "1999-04-03": "Easter Saturday", "1999-04-05": "Easter Monday", "1999-04-25": "Anzac Day", - "1999-04-26": "Anzac Day (Observed)", + "1999-04-26": "Anzac Day (observed)", "1999-06-14": "Queen's Birthday", "1999-10-04": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Proclamation Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Proclamation Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Proclamation Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-26": "Australia Day", "2000-03-20": "Adelaide Cup", "2000-04-21": "Good Friday", @@ -638,7 +638,7 @@ "2001-12-26": "Proclamation Day", "2002-01-01": "New Year's Day", "2002-01-26": "Australia Day", - "2002-01-28": "Australia Day (Observed)", + "2002-01-28": "Australia Day (observed)", "2002-03-18": "Adelaide Cup", "2002-03-29": "Good Friday", "2002-03-30": "Easter Saturday", @@ -650,7 +650,7 @@ "2002-12-26": "Proclamation Day", "2003-01-01": "New Year's Day", "2003-01-26": "Australia Day", - "2003-01-27": "Australia Day (Observed)", + "2003-01-27": "Australia Day (observed)", "2003-03-17": "Adelaide Cup", "2003-04-18": "Good Friday", "2003-04-19": "Easter Saturday", @@ -667,15 +667,15 @@ "2004-04-10": "Easter Saturday", "2004-04-12": "Easter Monday", "2004-04-25": "Anzac Day", - "2004-04-26": "Anzac Day (Observed)", + "2004-04-26": "Anzac Day (observed)", "2004-06-14": "Queen's Birthday", "2004-10-04": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Proclamation Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Proclamation Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Proclamation Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-26": "Australia Day", "2005-03-21": "Adelaide Cup", "2005-03-25": "Good Friday", @@ -686,9 +686,9 @@ "2005-10-03": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Proclamation Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-26": "Australia Day", "2006-03-13": "Adelaide Cup", "2006-04-14": "Good Friday", @@ -712,7 +712,7 @@ "2007-12-26": "Proclamation Day", "2008-01-01": "New Year's Day", "2008-01-26": "Australia Day", - "2008-01-28": "Australia Day (Observed)", + "2008-01-28": "Australia Day (observed)", "2008-03-10": "Adelaide Cup", "2008-03-21": "Good Friday", "2008-03-22": "Easter Saturday", @@ -733,7 +733,7 @@ "2009-10-05": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Proclamation Day", - "2009-12-28": "Proclamation Day (Observed)", + "2009-12-28": "Proclamation Day (observed)", "2010-01-01": "New Year's Day", "2010-01-26": "Australia Day", "2010-03-08": "Adelaide Cup", @@ -741,15 +741,15 @@ "2010-04-03": "Easter Saturday", "2010-04-05": "Easter Monday", "2010-04-25": "Anzac Day", - "2010-04-26": "Anzac Day (Observed)", + "2010-04-26": "Anzac Day (observed)", "2010-06-14": "Queen's Birthday", "2010-10-04": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Proclamation Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Proclamation Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Proclamation Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-26": "Australia Day", "2011-03-14": "Adelaide Cup", "2011-04-22": "Good Friday", @@ -759,9 +759,9 @@ "2011-10-03": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Proclamation Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-26": "Australia Day", "2012-03-12": "Adelaide Cup", "2012-04-06": "Good Friday", @@ -774,7 +774,7 @@ "2012-12-26": "Proclamation Day", "2013-01-01": "New Year's Day", "2013-01-26": "Australia Day", - "2013-01-28": "Australia Day (Observed)", + "2013-01-28": "Australia Day (observed)", "2013-03-11": "Adelaide Cup", "2013-03-29": "Good Friday", "2013-03-30": "Easter Saturday", @@ -786,7 +786,7 @@ "2013-12-26": "Proclamation Day", "2014-01-01": "New Year's Day", "2014-01-26": "Australia Day", - "2014-01-27": "Australia Day (Observed)", + "2014-01-27": "Australia Day (observed)", "2014-03-10": "Adelaide Cup", "2014-04-18": "Good Friday", "2014-04-19": "Easter Saturday", @@ -807,7 +807,7 @@ "2015-10-05": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Proclamation Day", - "2015-12-28": "Proclamation Day (Observed)", + "2015-12-28": "Proclamation Day (observed)", "2016-01-01": "New Year's Day", "2016-01-26": "Australia Day", "2016-03-14": "Adelaide Cup", @@ -819,9 +819,9 @@ "2016-10-03": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Proclamation Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-26": "Australia Day", "2017-03-13": "Adelaide Cup", "2017-04-14": "Good Friday", @@ -845,7 +845,7 @@ "2018-12-26": "Proclamation Day", "2019-01-01": "New Year's Day", "2019-01-26": "Australia Day", - "2019-01-28": "Australia Day (Observed)", + "2019-01-28": "Australia Day (observed)", "2019-03-11": "Adelaide Cup", "2019-04-19": "Good Friday", "2019-04-20": "Easter Saturday", @@ -857,7 +857,7 @@ "2019-12-26": "Proclamation Day", "2020-01-01": "New Year's Day", "2020-01-26": "Australia Day", - "2020-01-27": "Australia Day (Observed)", + "2020-01-27": "Australia Day (observed)", "2020-03-09": "Adelaide Cup", "2020-04-10": "Good Friday", "2020-04-11": "Easter Saturday", @@ -867,7 +867,7 @@ "2020-10-05": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Proclamation Day", - "2020-12-28": "Proclamation Day (Observed)", + "2020-12-28": "Proclamation Day (observed)", "2021-01-01": "New Year's Day", "2021-01-26": "Australia Day", "2021-03-08": "Adelaide Cup", @@ -875,15 +875,15 @@ "2021-04-03": "Easter Saturday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-14": "Queen's Birthday", "2021-10-04": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Proclamation Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Proclamation Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Proclamation Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-26": "Australia Day", "2022-03-14": "Adelaide Cup", "2022-04-15": "Good Friday", @@ -895,9 +895,9 @@ "2022-10-03": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Proclamation Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-26": "Australia Day", "2023-03-13": "Adelaide Cup", "2023-04-07": "Good Friday", @@ -921,7 +921,7 @@ "2024-12-26": "Proclamation Day", "2025-01-01": "New Year's Day", "2025-01-26": "Australia Day", - "2025-01-27": "Australia Day (Observed)", + "2025-01-27": "Australia Day (observed)", "2025-03-10": "Adelaide Cup", "2025-04-18": "Good Friday", "2025-04-19": "Easter Saturday", @@ -942,7 +942,7 @@ "2026-10-05": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Proclamation Day", - "2026-12-28": "Proclamation Day (Observed)", + "2026-12-28": "Proclamation Day (observed)", "2027-01-01": "New Year's Day", "2027-01-26": "Australia Day", "2027-03-08": "Adelaide Cup", @@ -950,15 +950,15 @@ "2027-03-27": "Easter Saturday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-14": "King's Birthday", "2027-10-04": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Proclamation Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Proclamation Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Proclamation Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Australia Day", "2028-03-13": "Adelaide Cup", "2028-04-14": "Good Friday", @@ -982,7 +982,7 @@ "2029-12-26": "Proclamation Day", "2030-01-01": "New Year's Day", "2030-01-26": "Australia Day", - "2030-01-28": "Australia Day (Observed)", + "2030-01-28": "Australia Day (observed)", "2030-03-11": "Adelaide Cup", "2030-04-19": "Good Friday", "2030-04-20": "Easter Saturday", @@ -994,7 +994,7 @@ "2030-12-26": "Proclamation Day", "2031-01-01": "New Year's Day", "2031-01-26": "Australia Day", - "2031-01-27": "Australia Day (Observed)", + "2031-01-27": "Australia Day (observed)", "2031-03-10": "Adelaide Cup", "2031-04-11": "Good Friday", "2031-04-12": "Easter Saturday", @@ -1011,15 +1011,15 @@ "2032-03-27": "Easter Saturday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-14": "King's Birthday", "2032-10-04": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Proclamation Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Proclamation Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Proclamation Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-26": "Australia Day", "2033-03-14": "Adelaide Cup", "2033-04-15": "Good Friday", @@ -1030,9 +1030,9 @@ "2033-10-03": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Proclamation Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-26": "Australia Day", "2034-03-13": "Adelaide Cup", "2034-04-07": "Good Friday", @@ -1056,7 +1056,7 @@ "2035-12-26": "Proclamation Day", "2036-01-01": "New Year's Day", "2036-01-26": "Australia Day", - "2036-01-28": "Australia Day (Observed)", + "2036-01-28": "Australia Day (observed)", "2036-03-10": "Adelaide Cup", "2036-04-11": "Good Friday", "2036-04-12": "Easter Saturday", @@ -1077,22 +1077,22 @@ "2037-10-05": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Proclamation Day", - "2037-12-28": "Proclamation Day (Observed)", + "2037-12-28": "Proclamation Day (observed)", "2038-01-01": "New Year's Day", "2038-01-26": "Australia Day", "2038-03-08": "Adelaide Cup", "2038-04-23": "Good Friday", "2038-04-24": "Easter Saturday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-14": "King's Birthday", "2038-10-04": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Proclamation Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Proclamation Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Proclamation Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-26": "Australia Day", "2039-03-14": "Adelaide Cup", "2039-04-08": "Good Friday", @@ -1103,9 +1103,9 @@ "2039-10-03": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Proclamation Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-26": "Australia Day", "2040-03-12": "Adelaide Cup", "2040-03-30": "Good Friday", @@ -1118,7 +1118,7 @@ "2040-12-26": "Proclamation Day", "2041-01-01": "New Year's Day", "2041-01-26": "Australia Day", - "2041-01-28": "Australia Day (Observed)", + "2041-01-28": "Australia Day (observed)", "2041-03-11": "Adelaide Cup", "2041-04-19": "Good Friday", "2041-04-20": "Easter Saturday", @@ -1130,7 +1130,7 @@ "2041-12-26": "Proclamation Day", "2042-01-01": "New Year's Day", "2042-01-26": "Australia Day", - "2042-01-27": "Australia Day (Observed)", + "2042-01-27": "Australia Day (observed)", "2042-03-10": "Adelaide Cup", "2042-04-04": "Good Friday", "2042-04-05": "Easter Saturday", @@ -1151,7 +1151,7 @@ "2043-10-05": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Proclamation Day", - "2043-12-28": "Proclamation Day (Observed)", + "2043-12-28": "Proclamation Day (observed)", "2044-01-01": "New Year's Day", "2044-01-26": "Australia Day", "2044-03-14": "Adelaide Cup", @@ -1163,9 +1163,9 @@ "2044-10-03": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Proclamation Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-26": "Australia Day", "2045-03-13": "Adelaide Cup", "2045-04-07": "Good Friday", @@ -1189,7 +1189,7 @@ "2046-12-26": "Proclamation Day", "2047-01-01": "New Year's Day", "2047-01-26": "Australia Day", - "2047-01-28": "Australia Day (Observed)", + "2047-01-28": "Australia Day (observed)", "2047-03-11": "Adelaide Cup", "2047-04-12": "Good Friday", "2047-04-13": "Easter Saturday", @@ -1201,7 +1201,7 @@ "2047-12-26": "Proclamation Day", "2048-01-01": "New Year's Day", "2048-01-26": "Australia Day", - "2048-01-27": "Australia Day (Observed)", + "2048-01-27": "Australia Day (observed)", "2048-03-09": "Adelaide Cup", "2048-04-03": "Good Friday", "2048-04-04": "Easter Saturday", @@ -1211,7 +1211,7 @@ "2048-10-05": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Proclamation Day", - "2048-12-28": "Proclamation Day (Observed)", + "2048-12-28": "Proclamation Day (observed)", "2049-01-01": "New Year's Day", "2049-01-26": "Australia Day", "2049-03-08": "Adelaide Cup", @@ -1219,15 +1219,15 @@ "2049-04-17": "Easter Saturday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-14": "King's Birthday", "2049-10-04": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Proclamation Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Proclamation Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Proclamation Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-26": "Australia Day", "2050-03-14": "Adelaide Cup", "2050-04-08": "Good Friday", @@ -1238,5 +1238,5 @@ "2050-10-03": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Proclamation Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/AU_TAS.json b/snapshots/countries/AU_TAS.json index 2c0195968..eae2a59bc 100644 --- a/snapshots/countries/AU_TAS.json +++ b/snapshots/countries/AU_TAS.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-26": "Australia Day", "1950-03-13": "Eight Hours Day", "1950-04-07": "Good Friday", @@ -20,7 +20,7 @@ "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", "1952-01-26": "Australia Day", - "1952-01-28": "Australia Day (Observed)", + "1952-01-28": "Australia Day (observed)", "1952-03-10": "Eight Hours Day", "1952-04-11": "Good Friday", "1952-04-14": "Easter Monday", @@ -37,7 +37,7 @@ "1953-06-08": "Queen's Birthday", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-26": "Australia Day", "1954-03-08": "Eight Hours Day", @@ -47,10 +47,10 @@ "1954-06-14": "Queen's Birthday", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-26": "Australia Day", "1955-03-14": "Eight Hours Day", "1955-04-08": "Good Friday", @@ -59,9 +59,9 @@ "1955-06-13": "Queen's Birthday", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-26": "Australia Day", "1956-03-12": "Eight Hours Day", "1956-03-30": "Good Friday", @@ -72,7 +72,7 @@ "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", "1957-01-26": "Australia Day", - "1957-01-28": "Australia Day (Observed)", + "1957-01-28": "Australia Day (observed)", "1957-03-11": "Eight Hours Day", "1957-04-19": "Good Friday", "1957-04-22": "Easter Monday", @@ -82,7 +82,7 @@ "1957-12-26": "Boxing Day", "1958-01-01": "New Year's Day", "1958-01-26": "Australia Day", - "1958-01-27": "Australia Day (Observed)", + "1958-01-27": "Australia Day (observed)", "1958-03-10": "Eight Hours Day", "1958-04-04": "Good Friday", "1958-04-07": "Easter Monday", @@ -99,7 +99,7 @@ "1959-06-08": "Queen's Birthday", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-26": "Australia Day", "1960-03-14": "Eight Hours Day", @@ -109,9 +109,9 @@ "1960-06-13": "Queen's Birthday", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-26": "Australia Day", "1961-03-13": "Eight Hours Day", "1961-03-31": "Good Friday", @@ -131,7 +131,7 @@ "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", "1963-01-26": "Australia Day", - "1963-01-28": "Australia Day (Observed)", + "1963-01-28": "Australia Day (observed)", "1963-03-11": "Eight Hours Day", "1963-04-12": "Good Friday", "1963-04-15": "Easter Monday", @@ -141,7 +141,7 @@ "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", "1964-01-26": "Australia Day", - "1964-01-27": "Australia Day (Observed)", + "1964-01-27": "Australia Day (observed)", "1964-03-09": "Eight Hours Day", "1964-03-27": "Good Friday", "1964-03-30": "Easter Monday", @@ -149,7 +149,7 @@ "1964-06-08": "Queen's Birthday", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-26": "Australia Day", "1965-03-08": "Eight Hours Day", @@ -159,10 +159,10 @@ "1965-06-14": "Queen's Birthday", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-26": "Australia Day", "1966-03-14": "Eight Hours Day", "1966-04-08": "Good Friday", @@ -171,9 +171,9 @@ "1966-06-13": "Queen's Birthday", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-26": "Australia Day", "1967-03-13": "Eight Hours Day", "1967-03-24": "Good Friday", @@ -193,7 +193,7 @@ "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", "1969-01-26": "Australia Day", - "1969-01-27": "Australia Day (Observed)", + "1969-01-27": "Australia Day (observed)", "1969-03-10": "Eight Hours Day", "1969-04-04": "Good Friday", "1969-04-07": "Easter Monday", @@ -210,7 +210,7 @@ "1970-06-08": "Queen's Birthday", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-26": "Australia Day", "1971-03-08": "Eight Hours Day", @@ -220,10 +220,10 @@ "1971-06-14": "Queen's Birthday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-26": "Australia Day", "1972-03-13": "Eight Hours Day", "1972-03-31": "Good Friday", @@ -243,7 +243,7 @@ "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", "1974-01-26": "Australia Day", - "1974-01-28": "Australia Day (Observed)", + "1974-01-28": "Australia Day (observed)", "1974-03-11": "Eight Hours Day", "1974-04-12": "Good Friday", "1974-04-15": "Easter Monday", @@ -253,7 +253,7 @@ "1974-12-26": "Boxing Day", "1975-01-01": "New Year's Day", "1975-01-26": "Australia Day", - "1975-01-27": "Australia Day (Observed)", + "1975-01-27": "Australia Day (observed)", "1975-03-10": "Eight Hours Day", "1975-03-28": "Good Friday", "1975-03-31": "Easter Monday", @@ -270,10 +270,10 @@ "1976-06-14": "Queen's Birthday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-26": "Australia Day", "1977-03-14": "Eight Hours Day", "1977-04-08": "Good Friday", @@ -282,9 +282,9 @@ "1977-06-13": "Queen's Birthday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-26": "Australia Day", "1978-03-13": "Eight Hours Day", "1978-03-24": "Good Friday", @@ -304,7 +304,7 @@ "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", "1980-01-26": "Australia Day", - "1980-01-28": "Australia Day (Observed)", + "1980-01-28": "Australia Day (observed)", "1980-03-10": "Eight Hours Day", "1980-04-04": "Good Friday", "1980-04-07": "Easter Monday", @@ -321,7 +321,7 @@ "1981-06-08": "Queen's Birthday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-26": "Australia Day", "1982-03-08": "Eight Hours Day", @@ -331,10 +331,10 @@ "1982-06-14": "Queen's Birthday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-26": "Australia Day", "1983-03-14": "Eight Hours Day", "1983-04-01": "Good Friday", @@ -343,9 +343,9 @@ "1983-06-13": "Queen's Birthday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-26": "Australia Day", "1984-03-12": "Eight Hours Day", "1984-04-20": "Good Friday", @@ -356,7 +356,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-01-26": "Australia Day", - "1985-01-28": "Australia Day (Observed)", + "1985-01-28": "Australia Day (observed)", "1985-03-11": "Eight Hours Day", "1985-04-05": "Good Friday", "1985-04-08": "Easter Monday", @@ -366,7 +366,7 @@ "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", "1986-01-26": "Australia Day", - "1986-01-27": "Australia Day (Observed)", + "1986-01-27": "Australia Day (observed)", "1986-03-10": "Eight Hours Day", "1986-03-28": "Good Friday", "1986-03-31": "Easter Monday", @@ -383,7 +383,7 @@ "1987-06-08": "Queen's Birthday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-26": "Australia Day", "1988-03-14": "Eight Hours Day", @@ -393,9 +393,9 @@ "1988-06-13": "Queen's Birthday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-26": "Australia Day", "1989-03-13": "Eight Hours Day", "1989-03-24": "Good Friday", @@ -415,7 +415,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-01-26": "Australia Day", - "1991-01-28": "Australia Day (Observed)", + "1991-01-28": "Australia Day (observed)", "1991-03-11": "Eight Hours Day", "1991-03-29": "Good Friday", "1991-04-01": "Easter Monday", @@ -425,7 +425,7 @@ "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", "1992-01-26": "Australia Day", - "1992-01-27": "Australia Day (Observed)", + "1992-01-27": "Australia Day (observed)", "1992-03-09": "Eight Hours Day", "1992-04-17": "Good Friday", "1992-04-20": "Easter Monday", @@ -433,7 +433,7 @@ "1992-06-08": "Queen's Birthday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-26": "Australia Day", "1993-03-08": "Eight Hours Day", @@ -443,10 +443,10 @@ "1993-06-14": "Queen's Birthday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-26": "Australia Day", "1994-03-14": "Eight Hours Day", "1994-04-01": "Good Friday", @@ -455,9 +455,9 @@ "1994-06-13": "Queen's Birthday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-26": "Australia Day", "1995-03-13": "Eight Hours Day", "1995-04-14": "Good Friday", @@ -477,7 +477,7 @@ "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", "1997-01-26": "Australia Day", - "1997-01-27": "Australia Day (Observed)", + "1997-01-27": "Australia Day (observed)", "1997-03-10": "Eight Hours Day", "1997-03-28": "Good Friday", "1997-03-31": "Easter Monday", @@ -494,7 +494,7 @@ "1998-06-08": "Queen's Birthday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-26": "Australia Day", "1999-03-08": "Eight Hours Day", @@ -504,10 +504,10 @@ "1999-06-14": "Queen's Birthday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-26": "Australia Day", "2000-03-13": "Eight Hours Day", "2000-04-21": "Good Friday", @@ -527,7 +527,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-01-26": "Australia Day", - "2002-01-28": "Australia Day (Observed)", + "2002-01-28": "Australia Day (observed)", "2002-03-11": "Eight Hours Day", "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", @@ -537,7 +537,7 @@ "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", "2003-01-26": "Australia Day", - "2003-01-27": "Australia Day (Observed)", + "2003-01-27": "Australia Day (observed)", "2003-03-10": "Eight Hours Day", "2003-04-18": "Good Friday", "2003-04-21": "Easter Monday", @@ -554,10 +554,10 @@ "2004-06-14": "Queen's Birthday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-26": "Australia Day", "2005-03-14": "Eight Hours Day", "2005-03-25": "Good Friday", @@ -566,9 +566,9 @@ "2005-06-13": "Queen's Birthday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-26": "Australia Day", "2006-03-13": "Eight Hours Day", "2006-04-14": "Good Friday", @@ -588,7 +588,7 @@ "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", "2008-01-26": "Australia Day", - "2008-01-28": "Australia Day (Observed)", + "2008-01-28": "Australia Day (observed)", "2008-03-10": "Eight Hours Day", "2008-03-21": "Good Friday", "2008-03-24": "Easter Monday", @@ -605,7 +605,7 @@ "2009-06-08": "Queen's Birthday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-26": "Australia Day", "2010-03-08": "Eight Hours Day", @@ -615,10 +615,10 @@ "2010-06-14": "Queen's Birthday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-26": "Australia Day", "2011-03-14": "Eight Hours Day", "2011-04-22": "Good Friday", @@ -626,9 +626,9 @@ "2011-06-13": "Queen's Birthday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-26": "Australia Day", "2012-03-12": "Eight Hours Day", "2012-04-06": "Good Friday", @@ -639,7 +639,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-01-26": "Australia Day", - "2013-01-28": "Australia Day (Observed)", + "2013-01-28": "Australia Day (observed)", "2013-03-11": "Eight Hours Day", "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", @@ -649,7 +649,7 @@ "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", "2014-01-26": "Australia Day", - "2014-01-27": "Australia Day (Observed)", + "2014-01-27": "Australia Day (observed)", "2014-03-10": "Eight Hours Day", "2014-04-18": "Good Friday", "2014-04-21": "Easter Monday", @@ -666,7 +666,7 @@ "2015-06-08": "Queen's Birthday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-26": "Australia Day", "2016-03-14": "Eight Hours Day", @@ -676,9 +676,9 @@ "2016-06-13": "Queen's Birthday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-26": "Australia Day", "2017-03-13": "Eight Hours Day", "2017-04-14": "Good Friday", @@ -698,7 +698,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-01-26": "Australia Day", - "2019-01-28": "Australia Day (Observed)", + "2019-01-28": "Australia Day (observed)", "2019-03-11": "Eight Hours Day", "2019-04-19": "Good Friday", "2019-04-22": "Easter Monday", @@ -708,7 +708,7 @@ "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-01-26": "Australia Day", - "2020-01-27": "Australia Day (Observed)", + "2020-01-27": "Australia Day (observed)", "2020-03-09": "Eight Hours Day", "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", @@ -716,7 +716,7 @@ "2020-06-08": "Queen's Birthday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-26": "Australia Day", "2021-03-08": "Eight Hours Day", @@ -726,10 +726,10 @@ "2021-06-14": "Queen's Birthday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-26": "Australia Day", "2022-03-14": "Eight Hours Day", "2022-04-15": "Good Friday", @@ -739,9 +739,9 @@ "2022-09-22": "National Day of Mourning for Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-26": "Australia Day", "2023-03-13": "Eight Hours Day", "2023-04-07": "Good Friday", @@ -761,7 +761,7 @@ "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-26": "Australia Day", - "2025-01-27": "Australia Day (Observed)", + "2025-01-27": "Australia Day (observed)", "2025-03-10": "Eight Hours Day", "2025-04-18": "Good Friday", "2025-04-21": "Easter Monday", @@ -778,7 +778,7 @@ "2026-06-08": "King's Birthday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-26": "Australia Day", "2027-03-08": "Eight Hours Day", @@ -788,10 +788,10 @@ "2027-06-14": "King's Birthday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Australia Day", "2028-03-13": "Eight Hours Day", "2028-04-14": "Good Friday", @@ -811,7 +811,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-01-26": "Australia Day", - "2030-01-28": "Australia Day (Observed)", + "2030-01-28": "Australia Day (observed)", "2030-03-11": "Eight Hours Day", "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", @@ -821,7 +821,7 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-26": "Australia Day", - "2031-01-27": "Australia Day (Observed)", + "2031-01-27": "Australia Day (observed)", "2031-03-10": "Eight Hours Day", "2031-04-11": "Good Friday", "2031-04-14": "Easter Monday", @@ -838,10 +838,10 @@ "2032-06-14": "King's Birthday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-26": "Australia Day", "2033-03-14": "Eight Hours Day", "2033-04-15": "Good Friday", @@ -850,9 +850,9 @@ "2033-06-13": "King's Birthday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-26": "Australia Day", "2034-03-13": "Eight Hours Day", "2034-04-07": "Good Friday", @@ -872,7 +872,7 @@ "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-26": "Australia Day", - "2036-01-28": "Australia Day (Observed)", + "2036-01-28": "Australia Day (observed)", "2036-03-10": "Eight Hours Day", "2036-04-11": "Good Friday", "2036-04-14": "Easter Monday", @@ -889,7 +889,7 @@ "2037-06-08": "King's Birthday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-26": "Australia Day", "2038-03-08": "Eight Hours Day", @@ -899,10 +899,10 @@ "2038-06-14": "King's Birthday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-26": "Australia Day", "2039-03-14": "Eight Hours Day", "2039-04-08": "Good Friday", @@ -911,9 +911,9 @@ "2039-06-13": "King's Birthday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-26": "Australia Day", "2040-03-12": "Eight Hours Day", "2040-03-30": "Good Friday", @@ -924,7 +924,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-01-26": "Australia Day", - "2041-01-28": "Australia Day (Observed)", + "2041-01-28": "Australia Day (observed)", "2041-03-11": "Eight Hours Day", "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", @@ -934,7 +934,7 @@ "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-26": "Australia Day", - "2042-01-27": "Australia Day (Observed)", + "2042-01-27": "Australia Day (observed)", "2042-03-10": "Eight Hours Day", "2042-04-04": "Good Friday", "2042-04-07": "Easter Monday", @@ -951,7 +951,7 @@ "2043-06-08": "King's Birthday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-26": "Australia Day", "2044-03-14": "Eight Hours Day", @@ -961,9 +961,9 @@ "2044-06-13": "King's Birthday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-26": "Australia Day", "2045-03-13": "Eight Hours Day", "2045-04-07": "Good Friday", @@ -983,7 +983,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-01-26": "Australia Day", - "2047-01-28": "Australia Day (Observed)", + "2047-01-28": "Australia Day (observed)", "2047-03-11": "Eight Hours Day", "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", @@ -993,7 +993,7 @@ "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", "2048-01-26": "Australia Day", - "2048-01-27": "Australia Day (Observed)", + "2048-01-27": "Australia Day (observed)", "2048-03-09": "Eight Hours Day", "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", @@ -1001,7 +1001,7 @@ "2048-06-08": "King's Birthday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-26": "Australia Day", "2049-03-08": "Eight Hours Day", @@ -1011,10 +1011,10 @@ "2049-06-14": "King's Birthday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-26": "Australia Day", "2050-03-14": "Eight Hours Day", "2050-04-08": "Good Friday", @@ -1023,5 +1023,5 @@ "2050-06-13": "King's Birthday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/AU_VIC.json b/snapshots/countries/AU_VIC.json index cf04fd010..469fca84d 100644 --- a/snapshots/countries/AU_VIC.json +++ b/snapshots/countries/AU_VIC.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-26": "Australia Day", "1950-03-13": "Labour Day", "1950-04-07": "Good Friday", @@ -26,7 +26,7 @@ "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", "1952-01-26": "Australia Day", - "1952-01-28": "Australia Day (Observed)", + "1952-01-28": "Australia Day (observed)", "1952-03-10": "Labour Day", "1952-04-11": "Good Friday", "1952-04-12": "Easter Saturday", @@ -49,7 +49,7 @@ "1953-11-03": "Melbourne Cup", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-26": "Australia Day", "1954-03-08": "Labour Day", @@ -62,10 +62,10 @@ "1954-11-02": "Melbourne Cup", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-26": "Australia Day", "1955-03-14": "Labour Day", "1955-04-08": "Good Friday", @@ -77,9 +77,9 @@ "1955-11-01": "Melbourne Cup", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-26": "Australia Day", "1956-03-12": "Labour Day", "1956-03-30": "Good Friday", @@ -93,7 +93,7 @@ "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", "1957-01-26": "Australia Day", - "1957-01-28": "Australia Day (Observed)", + "1957-01-28": "Australia Day (observed)", "1957-03-11": "Labour Day", "1957-04-19": "Good Friday", "1957-04-20": "Easter Saturday", @@ -106,7 +106,7 @@ "1957-12-26": "Boxing Day", "1958-01-01": "New Year's Day", "1958-01-26": "Australia Day", - "1958-01-27": "Australia Day (Observed)", + "1958-01-27": "Australia Day (observed)", "1958-03-10": "Labour Day", "1958-04-04": "Good Friday", "1958-04-05": "Easter Saturday", @@ -129,7 +129,7 @@ "1959-11-03": "Melbourne Cup", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-26": "Australia Day", "1960-03-14": "Labour Day", @@ -142,9 +142,9 @@ "1960-11-01": "Melbourne Cup", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-26": "Australia Day", "1961-03-13": "Labour Day", "1961-03-31": "Good Friday", @@ -170,7 +170,7 @@ "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", "1963-01-26": "Australia Day", - "1963-01-28": "Australia Day (Observed)", + "1963-01-28": "Australia Day (observed)", "1963-03-11": "Labour Day", "1963-04-12": "Good Friday", "1963-04-13": "Easter Saturday", @@ -183,7 +183,7 @@ "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", "1964-01-26": "Australia Day", - "1964-01-27": "Australia Day (Observed)", + "1964-01-27": "Australia Day (observed)", "1964-03-09": "Labour Day", "1964-03-27": "Good Friday", "1964-03-28": "Easter Saturday", @@ -194,7 +194,7 @@ "1964-11-03": "Melbourne Cup", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-26": "Australia Day", "1965-03-08": "Labour Day", @@ -207,10 +207,10 @@ "1965-11-02": "Melbourne Cup", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-26": "Australia Day", "1966-03-14": "Labour Day", "1966-04-08": "Good Friday", @@ -222,9 +222,9 @@ "1966-11-01": "Melbourne Cup", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-26": "Australia Day", "1967-03-13": "Labour Day", "1967-03-24": "Good Friday", @@ -250,7 +250,7 @@ "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", "1969-01-26": "Australia Day", - "1969-01-27": "Australia Day (Observed)", + "1969-01-27": "Australia Day (observed)", "1969-03-10": "Labour Day", "1969-04-04": "Good Friday", "1969-04-05": "Easter Saturday", @@ -273,7 +273,7 @@ "1970-11-03": "Melbourne Cup", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-26": "Australia Day", "1971-03-08": "Labour Day", @@ -286,10 +286,10 @@ "1971-11-02": "Melbourne Cup", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-26": "Australia Day", "1972-03-13": "Labour Day", "1972-03-31": "Good Friday", @@ -315,7 +315,7 @@ "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", "1974-01-26": "Australia Day", - "1974-01-28": "Australia Day (Observed)", + "1974-01-28": "Australia Day (observed)", "1974-03-11": "Labour Day", "1974-04-12": "Good Friday", "1974-04-13": "Easter Saturday", @@ -328,7 +328,7 @@ "1974-12-26": "Boxing Day", "1975-01-01": "New Year's Day", "1975-01-26": "Australia Day", - "1975-01-27": "Australia Day (Observed)", + "1975-01-27": "Australia Day (observed)", "1975-03-10": "Labour Day", "1975-03-28": "Good Friday", "1975-03-29": "Easter Saturday", @@ -351,10 +351,10 @@ "1976-11-02": "Melbourne Cup", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-26": "Australia Day", "1977-03-14": "Labour Day", "1977-04-08": "Good Friday", @@ -366,9 +366,9 @@ "1977-11-01": "Melbourne Cup", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-26": "Australia Day", "1978-03-13": "Labour Day", "1978-03-24": "Good Friday", @@ -394,7 +394,7 @@ "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", "1980-01-26": "Australia Day", - "1980-01-28": "Australia Day (Observed)", + "1980-01-28": "Australia Day (observed)", "1980-03-10": "Labour Day", "1980-04-04": "Good Friday", "1980-04-05": "Easter Saturday", @@ -417,7 +417,7 @@ "1981-11-03": "Melbourne Cup", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-26": "Australia Day", "1982-03-08": "Labour Day", @@ -430,10 +430,10 @@ "1982-11-02": "Melbourne Cup", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-26": "Australia Day", "1983-03-14": "Labour Day", "1983-04-01": "Good Friday", @@ -445,9 +445,9 @@ "1983-11-01": "Melbourne Cup", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-26": "Australia Day", "1984-03-12": "Labour Day", "1984-04-20": "Good Friday", @@ -461,7 +461,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-01-26": "Australia Day", - "1985-01-28": "Australia Day (Observed)", + "1985-01-28": "Australia Day (observed)", "1985-03-11": "Labour Day", "1985-04-05": "Good Friday", "1985-04-06": "Easter Saturday", @@ -474,7 +474,7 @@ "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", "1986-01-26": "Australia Day", - "1986-01-27": "Australia Day (Observed)", + "1986-01-27": "Australia Day (observed)", "1986-03-10": "Labour Day", "1986-03-28": "Good Friday", "1986-03-29": "Easter Saturday", @@ -497,7 +497,7 @@ "1987-11-03": "Melbourne Cup", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-26": "Australia Day", "1988-03-14": "Labour Day", @@ -510,9 +510,9 @@ "1988-11-01": "Melbourne Cup", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-26": "Australia Day", "1989-03-13": "Labour Day", "1989-03-24": "Good Friday", @@ -538,7 +538,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-01-26": "Australia Day", - "1991-01-28": "Australia Day (Observed)", + "1991-01-28": "Australia Day (observed)", "1991-03-11": "Labour Day", "1991-03-29": "Good Friday", "1991-03-30": "Easter Saturday", @@ -551,7 +551,7 @@ "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", "1992-01-26": "Australia Day", - "1992-01-27": "Australia Day (Observed)", + "1992-01-27": "Australia Day (observed)", "1992-03-09": "Labour Day", "1992-04-17": "Good Friday", "1992-04-18": "Easter Saturday", @@ -562,7 +562,7 @@ "1992-11-03": "Melbourne Cup", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-26": "Australia Day", "1993-03-08": "Labour Day", @@ -575,10 +575,10 @@ "1993-11-02": "Melbourne Cup", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-26": "Australia Day", "1994-03-14": "Labour Day", "1994-04-01": "Good Friday", @@ -590,9 +590,9 @@ "1994-11-01": "Melbourne Cup", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-26": "Australia Day", "1995-03-13": "Labour Day", "1995-04-14": "Good Friday", @@ -618,7 +618,7 @@ "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", "1997-01-26": "Australia Day", - "1997-01-27": "Australia Day (Observed)", + "1997-01-27": "Australia Day (observed)", "1997-03-10": "Labour Day", "1997-03-28": "Good Friday", "1997-03-29": "Easter Saturday", @@ -641,7 +641,7 @@ "1998-11-03": "Melbourne Cup", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-26": "Australia Day", "1999-03-08": "Labour Day", @@ -654,10 +654,10 @@ "1999-11-02": "Melbourne Cup", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-26": "Australia Day", "2000-03-13": "Labour Day", "2000-04-21": "Good Friday", @@ -683,7 +683,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-01-26": "Australia Day", - "2002-01-28": "Australia Day (Observed)", + "2002-01-28": "Australia Day (observed)", "2002-03-11": "Labour Day", "2002-03-29": "Good Friday", "2002-03-30": "Easter Saturday", @@ -696,7 +696,7 @@ "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", "2003-01-26": "Australia Day", - "2003-01-27": "Australia Day (Observed)", + "2003-01-27": "Australia Day (observed)", "2003-03-10": "Labour Day", "2003-04-18": "Good Friday", "2003-04-19": "Easter Saturday", @@ -719,10 +719,10 @@ "2004-11-02": "Melbourne Cup", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-26": "Australia Day", "2005-03-14": "Labour Day", "2005-03-25": "Good Friday", @@ -734,9 +734,9 @@ "2005-11-01": "Melbourne Cup", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-26": "Australia Day", "2006-03-13": "Labour Day", "2006-04-14": "Good Friday", @@ -762,7 +762,7 @@ "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", "2008-01-26": "Australia Day", - "2008-01-28": "Australia Day (Observed)", + "2008-01-28": "Australia Day (observed)", "2008-03-10": "Labour Day", "2008-03-21": "Good Friday", "2008-03-22": "Easter Saturday", @@ -785,7 +785,7 @@ "2009-11-03": "Melbourne Cup", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-26": "Australia Day", "2010-03-08": "Labour Day", @@ -798,10 +798,10 @@ "2010-11-02": "Melbourne Cup", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-26": "Australia Day", "2011-03-14": "Labour Day", "2011-04-22": "Good Friday", @@ -812,9 +812,9 @@ "2011-11-01": "Melbourne Cup", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-26": "Australia Day", "2012-03-12": "Labour Day", "2012-04-06": "Good Friday", @@ -828,7 +828,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-01-26": "Australia Day", - "2013-01-28": "Australia Day (Observed)", + "2013-01-28": "Australia Day (observed)", "2013-03-11": "Labour Day", "2013-03-29": "Good Friday", "2013-03-30": "Easter Saturday", @@ -841,7 +841,7 @@ "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", "2014-01-26": "Australia Day", - "2014-01-27": "Australia Day (Observed)", + "2014-01-27": "Australia Day (observed)", "2014-03-10": "Labour Day", "2014-04-18": "Good Friday", "2014-04-19": "Easter Saturday", @@ -865,7 +865,7 @@ "2015-11-03": "Melbourne Cup", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-26": "Australia Day", "2016-03-14": "Labour Day", @@ -879,9 +879,9 @@ "2016-11-01": "Melbourne Cup", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-26": "Australia Day", "2017-03-13": "Labour Day", "2017-04-14": "Good Friday", @@ -909,7 +909,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-01-26": "Australia Day", - "2019-01-28": "Australia Day (Observed)", + "2019-01-28": "Australia Day (observed)", "2019-03-11": "Labour Day", "2019-04-19": "Good Friday", "2019-04-20": "Easter Saturday", @@ -923,7 +923,7 @@ "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-01-26": "Australia Day", - "2020-01-27": "Australia Day (Observed)", + "2020-01-27": "Australia Day (observed)", "2020-03-09": "Labour Day", "2020-04-10": "Good Friday", "2020-04-11": "Easter Saturday", @@ -935,7 +935,7 @@ "2020-11-03": "Melbourne Cup", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-26": "Australia Day", "2021-03-08": "Labour Day", @@ -949,10 +949,10 @@ "2021-11-02": "Melbourne Cup", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-26": "Australia Day", "2022-03-14": "Labour Day", "2022-04-15": "Good Friday", @@ -966,9 +966,9 @@ "2022-11-01": "Melbourne Cup", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-26": "Australia Day", "2023-03-13": "Labour Day", "2023-04-07": "Good Friday", @@ -996,7 +996,7 @@ "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-26": "Australia Day", - "2025-01-27": "Australia Day (Observed)", + "2025-01-27": "Australia Day (observed)", "2025-03-10": "Labour Day", "2025-04-18": "Good Friday", "2025-04-19": "Easter Saturday", @@ -1021,7 +1021,7 @@ "2026-11-03": "Melbourne Cup", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-26": "Australia Day", "2027-03-08": "Labour Day", @@ -1035,10 +1035,10 @@ "2027-11-02": "Melbourne Cup", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Australia Day", "2028-03-13": "Labour Day", "2028-04-14": "Good Friday", @@ -1066,7 +1066,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-01-26": "Australia Day", - "2030-01-28": "Australia Day (Observed)", + "2030-01-28": "Australia Day (observed)", "2030-03-11": "Labour Day", "2030-04-19": "Good Friday", "2030-04-20": "Easter Saturday", @@ -1080,7 +1080,7 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-26": "Australia Day", - "2031-01-27": "Australia Day (Observed)", + "2031-01-27": "Australia Day (observed)", "2031-03-10": "Labour Day", "2031-04-11": "Good Friday", "2031-04-12": "Easter Saturday", @@ -1105,10 +1105,10 @@ "2032-11-02": "Melbourne Cup", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-26": "Australia Day", "2033-03-14": "Labour Day", "2033-04-15": "Good Friday", @@ -1121,9 +1121,9 @@ "2033-11-01": "Melbourne Cup", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-26": "Australia Day", "2034-03-13": "Labour Day", "2034-04-07": "Good Friday", @@ -1151,7 +1151,7 @@ "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-26": "Australia Day", - "2036-01-28": "Australia Day (Observed)", + "2036-01-28": "Australia Day (observed)", "2036-03-10": "Labour Day", "2036-04-11": "Good Friday", "2036-04-12": "Easter Saturday", @@ -1176,7 +1176,7 @@ "2037-11-03": "Melbourne Cup", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-26": "Australia Day", "2038-03-08": "Labour Day", @@ -1189,10 +1189,10 @@ "2038-11-02": "Melbourne Cup", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-26": "Australia Day", "2039-03-14": "Labour Day", "2039-04-08": "Good Friday", @@ -1205,9 +1205,9 @@ "2039-11-01": "Melbourne Cup", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-26": "Australia Day", "2040-03-12": "Labour Day", "2040-03-30": "Good Friday", @@ -1222,7 +1222,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-01-26": "Australia Day", - "2041-01-28": "Australia Day (Observed)", + "2041-01-28": "Australia Day (observed)", "2041-03-11": "Labour Day", "2041-04-19": "Good Friday", "2041-04-20": "Easter Saturday", @@ -1236,7 +1236,7 @@ "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-26": "Australia Day", - "2042-01-27": "Australia Day (Observed)", + "2042-01-27": "Australia Day (observed)", "2042-03-10": "Labour Day", "2042-04-04": "Good Friday", "2042-04-05": "Easter Saturday", @@ -1261,7 +1261,7 @@ "2043-11-03": "Melbourne Cup", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-26": "Australia Day", "2044-03-14": "Labour Day", @@ -1275,9 +1275,9 @@ "2044-11-01": "Melbourne Cup", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-26": "Australia Day", "2045-03-13": "Labour Day", "2045-04-07": "Good Friday", @@ -1305,7 +1305,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-01-26": "Australia Day", - "2047-01-28": "Australia Day (Observed)", + "2047-01-28": "Australia Day (observed)", "2047-03-11": "Labour Day", "2047-04-12": "Good Friday", "2047-04-13": "Easter Saturday", @@ -1319,7 +1319,7 @@ "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", "2048-01-26": "Australia Day", - "2048-01-27": "Australia Day (Observed)", + "2048-01-27": "Australia Day (observed)", "2048-03-09": "Labour Day", "2048-04-03": "Good Friday", "2048-04-04": "Easter Saturday", @@ -1331,7 +1331,7 @@ "2048-11-03": "Melbourne Cup", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-26": "Australia Day", "2049-03-08": "Labour Day", @@ -1345,10 +1345,10 @@ "2049-11-02": "Melbourne Cup", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-26": "Australia Day", "2050-03-14": "Labour Day", "2050-04-08": "Good Friday", @@ -1361,5 +1361,5 @@ "2050-11-01": "Melbourne Cup", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/AU_WA.json b/snapshots/countries/AU_WA.json index 8fb9f9094..35bd919c7 100644 --- a/snapshots/countries/AU_WA.json +++ b/snapshots/countries/AU_WA.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-26": "Australia Day", "1950-03-06": "Labour Day", "1950-04-07": "Good Friday", @@ -22,7 +22,7 @@ "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", "1952-01-26": "Australia Day", - "1952-01-28": "Australia Day (Observed)", + "1952-01-28": "Australia Day (observed)", "1952-03-03": "Labour Day", "1952-04-11": "Good Friday", "1952-04-14": "Easter Monday", @@ -37,27 +37,27 @@ "1953-04-03": "Good Friday", "1953-04-06": "Easter Monday", "1953-04-25": "Anzac Day", - "1953-04-27": "Anzac Day (Observed)", + "1953-04-27": "Anzac Day (observed)", "1953-06-01": "Foundation Day", "1953-09-28": "Queen's Birthday", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-26": "Australia Day", "1954-03-01": "Labour Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", - "1954-04-26": "Anzac Day (Observed)", + "1954-04-26": "Anzac Day (observed)", "1954-06-07": "Foundation Day", "1954-09-27": "Queen's Birthday", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-26": "Australia Day", "1955-03-07": "Labour Day", "1955-04-08": "Good Friday", @@ -67,9 +67,9 @@ "1955-09-26": "Queen's Birthday", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-26": "Australia Day", "1956-03-05": "Labour Day", "1956-03-30": "Good Friday", @@ -81,7 +81,7 @@ "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", "1957-01-26": "Australia Day", - "1957-01-28": "Australia Day (Observed)", + "1957-01-28": "Australia Day (observed)", "1957-03-04": "Labour Day", "1957-04-19": "Good Friday", "1957-04-22": "Easter Monday", @@ -92,7 +92,7 @@ "1957-12-26": "Boxing Day", "1958-01-01": "New Year's Day", "1958-01-26": "Australia Day", - "1958-01-27": "Australia Day (Observed)", + "1958-01-27": "Australia Day (observed)", "1958-03-03": "Labour Day", "1958-04-04": "Good Friday", "1958-04-07": "Easter Monday", @@ -107,12 +107,12 @@ "1959-03-27": "Good Friday", "1959-03-30": "Easter Monday", "1959-04-25": "Anzac Day", - "1959-04-27": "Anzac Day (Observed)", + "1959-04-27": "Anzac Day (observed)", "1959-06-01": "Foundation Day", "1959-09-28": "Queen's Birthday", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-26": "Australia Day", "1960-03-07": "Labour Day", @@ -123,9 +123,9 @@ "1960-09-26": "Queen's Birthday", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-26": "Australia Day", "1961-03-06": "Labour Day", "1961-03-31": "Good Friday", @@ -147,7 +147,7 @@ "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", "1963-01-26": "Australia Day", - "1963-01-28": "Australia Day (Observed)", + "1963-01-28": "Australia Day (observed)", "1963-03-04": "Labour Day", "1963-04-12": "Good Friday", "1963-04-15": "Easter Monday", @@ -158,32 +158,32 @@ "1963-12-26": "Boxing Day", "1964-01-01": "New Year's Day", "1964-01-26": "Australia Day", - "1964-01-27": "Australia Day (Observed)", + "1964-01-27": "Australia Day (observed)", "1964-03-02": "Labour Day", "1964-03-27": "Good Friday", "1964-03-30": "Easter Monday", "1964-04-25": "Anzac Day", - "1964-04-27": "Anzac Day (Observed)", + "1964-04-27": "Anzac Day (observed)", "1964-06-01": "Foundation Day", "1964-09-28": "Queen's Birthday", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-26": "Australia Day", "1965-03-01": "Labour Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", - "1965-04-26": "Anzac Day (Observed)", + "1965-04-26": "Anzac Day (observed)", "1965-06-07": "Foundation Day", "1965-09-27": "Queen's Birthday", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-26": "Australia Day", "1966-03-07": "Labour Day", "1966-04-08": "Good Friday", @@ -193,9 +193,9 @@ "1966-09-26": "Queen's Birthday", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-26": "Australia Day", "1967-03-06": "Labour Day", "1967-03-24": "Good Friday", @@ -217,7 +217,7 @@ "1968-12-26": "Boxing Day", "1969-01-01": "New Year's Day", "1969-01-26": "Australia Day", - "1969-01-27": "Australia Day (Observed)", + "1969-01-27": "Australia Day (observed)", "1969-03-03": "Labour Day", "1969-04-04": "Good Friday", "1969-04-07": "Easter Monday", @@ -232,27 +232,27 @@ "1970-03-27": "Good Friday", "1970-03-30": "Easter Monday", "1970-04-25": "Anzac Day", - "1970-04-27": "Anzac Day (Observed)", + "1970-04-27": "Anzac Day (observed)", "1970-06-01": "Foundation Day", "1970-09-28": "Queen's Birthday", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-26": "Australia Day", "1971-03-01": "Labour Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", - "1971-04-26": "Anzac Day (Observed)", + "1971-04-26": "Anzac Day (observed)", "1971-06-07": "Foundation Day", "1971-09-27": "Queen's Birthday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-26": "Australia Day", "1972-03-06": "Labour Day", "1972-03-31": "Good Friday", @@ -274,7 +274,7 @@ "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", "1974-01-26": "Australia Day", - "1974-01-28": "Australia Day (Observed)", + "1974-01-28": "Australia Day (observed)", "1974-03-04": "Labour Day", "1974-04-12": "Good Friday", "1974-04-15": "Easter Monday", @@ -285,7 +285,7 @@ "1974-12-26": "Boxing Day", "1975-01-01": "New Year's Day", "1975-01-26": "Australia Day", - "1975-01-27": "Australia Day (Observed)", + "1975-01-27": "Australia Day (observed)", "1975-03-03": "Labour Day", "1975-03-28": "Good Friday", "1975-03-31": "Easter Monday", @@ -300,15 +300,15 @@ "1976-04-16": "Good Friday", "1976-04-19": "Easter Monday", "1976-04-25": "Anzac Day", - "1976-04-26": "Anzac Day (Observed)", + "1976-04-26": "Anzac Day (observed)", "1976-06-07": "Foundation Day", "1976-09-27": "Queen's Birthday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-26": "Australia Day", "1977-03-07": "Labour Day", "1977-04-08": "Good Friday", @@ -318,9 +318,9 @@ "1977-09-26": "Queen's Birthday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-26": "Australia Day", "1978-03-06": "Labour Day", "1978-03-24": "Good Friday", @@ -342,7 +342,7 @@ "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", "1980-01-26": "Australia Day", - "1980-01-28": "Australia Day (Observed)", + "1980-01-28": "Australia Day (observed)", "1980-03-03": "Labour Day", "1980-04-04": "Good Friday", "1980-04-07": "Easter Monday", @@ -357,27 +357,27 @@ "1981-04-17": "Good Friday", "1981-04-20": "Easter Monday", "1981-04-25": "Anzac Day", - "1981-04-27": "Anzac Day (Observed)", + "1981-04-27": "Anzac Day (observed)", "1981-06-01": "Foundation Day", "1981-09-28": "Queen's Birthday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-26": "Australia Day", "1982-03-01": "Labour Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", "1982-04-25": "Anzac Day", - "1982-04-26": "Anzac Day (Observed)", + "1982-04-26": "Anzac Day (observed)", "1982-06-07": "Foundation Day", "1982-09-27": "Queen's Birthday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-26": "Australia Day", "1983-03-07": "Labour Day", "1983-04-01": "Good Friday", @@ -387,9 +387,9 @@ "1983-09-26": "Queen's Birthday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-26": "Australia Day", "1984-03-05": "Labour Day", "1984-04-20": "Good Friday", @@ -401,7 +401,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-01-26": "Australia Day", - "1985-01-28": "Australia Day (Observed)", + "1985-01-28": "Australia Day (observed)", "1985-03-04": "Labour Day", "1985-04-05": "Good Friday", "1985-04-08": "Easter Monday", @@ -412,7 +412,7 @@ "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", "1986-01-26": "Australia Day", - "1986-01-27": "Australia Day (Observed)", + "1986-01-27": "Australia Day (observed)", "1986-03-03": "Labour Day", "1986-03-28": "Good Friday", "1986-03-31": "Easter Monday", @@ -427,12 +427,12 @@ "1987-04-17": "Good Friday", "1987-04-20": "Easter Monday", "1987-04-25": "Anzac Day", - "1987-04-27": "Anzac Day (Observed)", + "1987-04-27": "Anzac Day (observed)", "1987-06-01": "Foundation Day", "1987-09-28": "Queen's Birthday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-26": "Australia Day", "1988-03-07": "Labour Day", @@ -443,9 +443,9 @@ "1988-09-26": "Queen's Birthday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-26": "Australia Day", "1989-03-06": "Labour Day", "1989-03-24": "Good Friday", @@ -467,7 +467,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-01-26": "Australia Day", - "1991-01-28": "Australia Day (Observed)", + "1991-01-28": "Australia Day (observed)", "1991-03-04": "Labour Day", "1991-03-29": "Good Friday", "1991-04-01": "Easter Monday", @@ -478,32 +478,32 @@ "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", "1992-01-26": "Australia Day", - "1992-01-27": "Australia Day (Observed)", + "1992-01-27": "Australia Day (observed)", "1992-03-02": "Labour Day", "1992-04-17": "Good Friday", "1992-04-20": "Easter Monday", "1992-04-25": "Anzac Day", - "1992-04-27": "Anzac Day (Observed)", + "1992-04-27": "Anzac Day (observed)", "1992-06-01": "Foundation Day", "1992-09-28": "Queen's Birthday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-26": "Australia Day", "1993-03-01": "Labour Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", "1993-04-25": "Anzac Day", - "1993-04-26": "Anzac Day (Observed)", + "1993-04-26": "Anzac Day (observed)", "1993-06-07": "Foundation Day", "1993-09-27": "Queen's Birthday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-26": "Australia Day", "1994-03-07": "Labour Day", "1994-04-01": "Good Friday", @@ -513,9 +513,9 @@ "1994-09-26": "Queen's Birthday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-26": "Australia Day", "1995-03-06": "Labour Day", "1995-04-14": "Good Friday", @@ -537,7 +537,7 @@ "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", "1997-01-26": "Australia Day", - "1997-01-27": "Australia Day (Observed)", + "1997-01-27": "Australia Day (observed)", "1997-03-03": "Labour Day", "1997-03-28": "Good Friday", "1997-03-31": "Easter Monday", @@ -552,27 +552,27 @@ "1998-04-10": "Good Friday", "1998-04-13": "Easter Monday", "1998-04-25": "Anzac Day", - "1998-04-27": "Anzac Day (Observed)", + "1998-04-27": "Anzac Day (observed)", "1998-06-01": "Foundation Day", "1998-09-28": "Queen's Birthday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-26": "Australia Day", "1999-03-01": "Labour Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", "1999-04-25": "Anzac Day", - "1999-04-26": "Anzac Day (Observed)", + "1999-04-26": "Anzac Day (observed)", "1999-06-07": "Foundation Day", "1999-09-27": "Queen's Birthday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-26": "Australia Day", "2000-03-06": "Labour Day", "2000-04-21": "Good Friday", @@ -594,7 +594,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-01-26": "Australia Day", - "2002-01-28": "Australia Day (Observed)", + "2002-01-28": "Australia Day (observed)", "2002-03-04": "Labour Day", "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", @@ -605,7 +605,7 @@ "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", "2003-01-26": "Australia Day", - "2003-01-27": "Australia Day (Observed)", + "2003-01-27": "Australia Day (observed)", "2003-03-03": "Labour Day", "2003-04-18": "Good Friday", "2003-04-21": "Easter Monday", @@ -620,15 +620,15 @@ "2004-04-09": "Good Friday", "2004-04-12": "Easter Monday", "2004-04-25": "Anzac Day", - "2004-04-26": "Anzac Day (Observed)", + "2004-04-26": "Anzac Day (observed)", "2004-06-07": "Foundation Day", "2004-09-27": "Queen's Birthday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-26": "Australia Day", "2005-03-07": "Labour Day", "2005-03-25": "Good Friday", @@ -638,9 +638,9 @@ "2005-09-26": "Queen's Birthday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-26": "Australia Day", "2006-03-06": "Labour Day", "2006-04-14": "Good Friday", @@ -662,7 +662,7 @@ "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", "2008-01-26": "Australia Day", - "2008-01-28": "Australia Day (Observed)", + "2008-01-28": "Australia Day (observed)", "2008-03-03": "Labour Day", "2008-03-21": "Good Friday", "2008-03-24": "Easter Monday", @@ -677,27 +677,27 @@ "2009-04-10": "Good Friday", "2009-04-13": "Easter Monday", "2009-04-25": "Anzac Day", - "2009-04-27": "Anzac Day (Observed)", + "2009-04-27": "Anzac Day (observed)", "2009-06-01": "Foundation Day", "2009-09-28": "Queen's Birthday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-26": "Australia Day", "2010-03-01": "Labour Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", "2010-04-25": "Anzac Day", - "2010-04-26": "Anzac Day (Observed)", + "2010-04-26": "Anzac Day (observed)", "2010-06-07": "Foundation Day", "2010-09-27": "Queen's Birthday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-26": "Australia Day", "2011-03-07": "Labour Day", "2011-04-22": "Good Friday", @@ -706,9 +706,9 @@ "2011-09-26": "Queen's Birthday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-26": "Australia Day", "2012-03-05": "Labour Day", "2012-04-06": "Good Friday", @@ -720,7 +720,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-01-26": "Australia Day", - "2013-01-28": "Australia Day (Observed)", + "2013-01-28": "Australia Day (observed)", "2013-03-04": "Labour Day", "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", @@ -731,7 +731,7 @@ "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", "2014-01-26": "Australia Day", - "2014-01-27": "Australia Day (Observed)", + "2014-01-27": "Australia Day (observed)", "2014-03-03": "Labour Day", "2014-04-18": "Good Friday", "2014-04-21": "Easter Monday", @@ -746,12 +746,12 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Western Australia Day", "2015-09-28": "Queen's Birthday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-26": "Australia Day", "2016-03-07": "Labour Day", @@ -762,9 +762,9 @@ "2016-09-26": "Queen's Birthday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-26": "Australia Day", "2017-03-06": "Labour Day", "2017-04-14": "Good Friday", @@ -786,7 +786,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-01-26": "Australia Day", - "2019-01-28": "Australia Day (Observed)", + "2019-01-28": "Australia Day (observed)", "2019-03-04": "Labour Day", "2019-04-19": "Good Friday", "2019-04-22": "Easter Monday", @@ -797,32 +797,32 @@ "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-01-26": "Australia Day", - "2020-01-27": "Australia Day (Observed)", + "2020-01-27": "Australia Day (observed)", "2020-03-02": "Labour Day", "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Western Australia Day", "2020-09-28": "Queen's Birthday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-26": "Australia Day", "2021-03-01": "Labour Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Western Australia Day", "2021-09-27": "Queen's Birthday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-26": "Australia Day", "2022-03-07": "Labour Day", "2022-04-15": "Good Friday", @@ -833,9 +833,9 @@ "2022-09-26": "Queen's Birthday", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-26": "Australia Day", "2023-03-06": "Labour Day", "2023-04-07": "Good Friday", @@ -857,7 +857,7 @@ "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-26": "Australia Day", - "2025-01-27": "Australia Day (Observed)", + "2025-01-27": "Australia Day (observed)", "2025-03-03": "Labour Day", "2025-04-18": "Good Friday", "2025-04-21": "Easter Monday", @@ -872,27 +872,27 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "Western Australia Day", "2026-09-28": "King's Birthday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-26": "Australia Day", "2027-03-01": "Labour Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "Western Australia Day", "2027-09-27": "King's Birthday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Australia Day", "2028-03-06": "Labour Day", "2028-04-14": "Good Friday", @@ -914,7 +914,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-01-26": "Australia Day", - "2030-01-28": "Australia Day (Observed)", + "2030-01-28": "Australia Day (observed)", "2030-03-04": "Labour Day", "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", @@ -925,7 +925,7 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-26": "Australia Day", - "2031-01-27": "Australia Day (Observed)", + "2031-01-27": "Australia Day (observed)", "2031-03-03": "Labour Day", "2031-04-11": "Good Friday", "2031-04-14": "Easter Monday", @@ -940,15 +940,15 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "Western Australia Day", "2032-09-27": "King's Birthday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-26": "Australia Day", "2033-03-07": "Labour Day", "2033-04-15": "Good Friday", @@ -958,9 +958,9 @@ "2033-09-26": "King's Birthday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-26": "Australia Day", "2034-03-06": "Labour Day", "2034-04-07": "Good Friday", @@ -982,7 +982,7 @@ "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-26": "Australia Day", - "2036-01-28": "Australia Day (Observed)", + "2036-01-28": "Australia Day (observed)", "2036-03-03": "Labour Day", "2036-04-11": "Good Friday", "2036-04-14": "Easter Monday", @@ -997,26 +997,26 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "Western Australia Day", "2037-09-28": "King's Birthday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-26": "Australia Day", "2038-03-01": "Labour Day", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "Western Australia Day", "2038-09-27": "King's Birthday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-26": "Australia Day", "2039-03-07": "Labour Day", "2039-04-08": "Good Friday", @@ -1026,9 +1026,9 @@ "2039-09-26": "King's Birthday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-26": "Australia Day", "2040-03-05": "Labour Day", "2040-03-30": "Good Friday", @@ -1040,7 +1040,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-01-26": "Australia Day", - "2041-01-28": "Australia Day (Observed)", + "2041-01-28": "Australia Day (observed)", "2041-03-04": "Labour Day", "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", @@ -1051,7 +1051,7 @@ "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-26": "Australia Day", - "2042-01-27": "Australia Day (Observed)", + "2042-01-27": "Australia Day (observed)", "2042-03-03": "Labour Day", "2042-04-04": "Good Friday", "2042-04-07": "Easter Monday", @@ -1066,12 +1066,12 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "Western Australia Day", "2043-09-28": "King's Birthday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-26": "Australia Day", "2044-03-07": "Labour Day", @@ -1082,9 +1082,9 @@ "2044-09-26": "King's Birthday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-26": "Australia Day", "2045-03-06": "Labour Day", "2045-04-07": "Good Friday", @@ -1106,7 +1106,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-01-26": "Australia Day", - "2047-01-28": "Australia Day (Observed)", + "2047-01-28": "Australia Day (observed)", "2047-03-04": "Labour Day", "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", @@ -1117,32 +1117,32 @@ "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", "2048-01-26": "Australia Day", - "2048-01-27": "Australia Day (Observed)", + "2048-01-27": "Australia Day (observed)", "2048-03-02": "Labour Day", "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "Western Australia Day", "2048-09-28": "King's Birthday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-26": "Australia Day", "2049-03-01": "Labour Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "Western Australia Day", "2049-09-27": "King's Birthday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-26": "Australia Day", "2050-03-07": "Labour Day", "2050-04-08": "Good Friday", @@ -1152,5 +1152,5 @@ "2050-09-26": "King's Birthday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/AZ_COMMON.json b/snapshots/countries/AZ_COMMON.json index 0643e9eea..84b378d2b 100644 --- a/snapshots/countries/AZ_COMMON.json +++ b/snapshots/countries/AZ_COMMON.json @@ -203,8 +203,8 @@ "2005-12-31": "International Azerbaijanis Solidarity Day", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day", - "2006-01-03": "International Azerbaijanis Solidarity Day (Observed)", - "2006-01-04": "New Year's Day (Observed)", + "2006-01-03": "International Azerbaijanis Solidarity Day (observed)", + "2006-01-04": "New Year's Day (observed)", "2006-01-10": "Eid al-Adha", "2006-01-20": "Martyrs' Day", "2006-03-08": "Women's Day", @@ -212,7 +212,7 @@ "2006-03-21": "Spring Festival", "2006-05-09": "Victory over Fascism Day", "2006-05-28": "Republic Day", - "2006-05-29": "Republic Day (Observed)", + "2006-05-29": "Republic Day (observed)", "2006-06-15": "National Liberation Day", "2006-06-26": "Armed Forces Day", "2006-10-18": "Independence Day", @@ -223,8 +223,8 @@ "2006-12-31": "Eid al-Adha; International Azerbaijanis Solidarity Day", "2007-01-01": "Eid al-Adha; New Year's Day", "2007-01-02": "New Year's Day", - "2007-01-03": "Eid al-Adha (Observed); International Azerbaijanis Solidarity Day (Observed)", - "2007-01-04": "Eid al-Adha (Observed)", + "2007-01-03": "Eid al-Adha (observed); International Azerbaijanis Solidarity Day (observed)", + "2007-01-04": "Eid al-Adha (observed)", "2007-01-20": "Martyrs' Day", "2007-03-08": "Women's Day", "2007-03-20": "Spring Festival", @@ -232,14 +232,14 @@ "2007-03-22": "Spring Festival", "2007-03-23": "Spring Festival", "2007-03-24": "Spring Festival", - "2007-03-26": "Spring Festival (Observed)", + "2007-03-26": "Spring Festival (observed)", "2007-05-09": "Victory over Fascism Day", "2007-05-28": "Republic Day", "2007-06-15": "National Liberation Day", "2007-06-26": "Armed Forces Day", "2007-10-12": "Eid al-Fitr", "2007-10-13": "Eid al-Fitr", - "2007-10-15": "Eid al-Fitr (Observed)", + "2007-10-15": "Eid al-Fitr (observed)", "2007-10-18": "Independence Day", "2007-11-12": "Constitution Day", "2007-11-17": "National Revival Day", @@ -250,18 +250,18 @@ "2008-01-02": "New Year's Day", "2008-01-20": "Martyrs' Day", "2008-03-08": "Women's Day", - "2008-03-10": "Women's Day (Observed)", + "2008-03-10": "Women's Day (observed)", "2008-03-20": "Spring Festival", "2008-03-21": "Spring Festival", "2008-03-22": "Spring Festival", "2008-03-23": "Spring Festival", "2008-03-24": "Spring Festival", - "2008-03-25": "Spring Festival (Observed)", - "2008-03-26": "Spring Festival (Observed)", + "2008-03-25": "Spring Festival (observed)", + "2008-03-26": "Spring Festival (observed)", "2008-05-09": "Victory over Fascism Day", "2008-05-28": "Republic Day", "2008-06-15": "National Liberation Day", - "2008-06-16": "National Liberation Day (Observed)", + "2008-06-16": "National Liberation Day (observed)", "2008-06-26": "Armed Forces Day", "2008-09-30": "Eid al-Fitr", "2008-10-01": "Eid al-Fitr", @@ -275,32 +275,32 @@ "2009-01-02": "New Year's Day", "2009-01-20": "Martyrs' Day", "2009-03-08": "Women's Day", - "2009-03-09": "Women's Day (Observed)", + "2009-03-09": "Women's Day (observed)", "2009-03-20": "Spring Festival", "2009-03-21": "Spring Festival", "2009-03-22": "Spring Festival", "2009-03-23": "Spring Festival", "2009-03-24": "Spring Festival", - "2009-03-25": "Spring Festival (Observed)", - "2009-03-26": "Spring Festival (Observed)", + "2009-03-25": "Spring Festival (observed)", + "2009-03-26": "Spring Festival (observed)", "2009-05-09": "Victory over Fascism Day", - "2009-05-11": "Victory over Fascism Day (Observed)", + "2009-05-11": "Victory over Fascism Day (observed)", "2009-05-28": "Republic Day", "2009-06-15": "National Liberation Day", "2009-06-26": "Armed Forces Day", "2009-09-20": "Eid al-Fitr", "2009-09-21": "Eid al-Fitr", - "2009-09-22": "Eid al-Fitr (Observed)", + "2009-09-22": "Eid al-Fitr (observed)", "2009-10-18": "Independence Day", "2009-11-12": "Constitution Day", "2009-11-17": "National Revival Day", "2009-11-27": "Eid al-Adha", "2009-11-28": "Eid al-Adha", - "2009-11-30": "Eid al-Adha (Observed)", + "2009-11-30": "Eid al-Adha (observed)", "2009-12-31": "International Azerbaijanis Solidarity Day", "2010-01-01": "New Year's Day", "2010-01-02": "New Year's Day", - "2010-01-04": "New Year's Day (Observed)", + "2010-01-04": "New Year's Day (observed)", "2010-01-20": "Martyrs' Day", "2010-03-08": "Women's Day", "2010-03-20": "Spring Festival", @@ -308,14 +308,14 @@ "2010-03-22": "Spring Festival", "2010-03-23": "Spring Festival", "2010-03-24": "Spring Festival", - "2010-03-25": "Spring Festival (Observed)", - "2010-03-26": "Spring Festival (Observed)", + "2010-03-25": "Spring Festival (observed)", + "2010-03-26": "Spring Festival (observed)", "2010-05-09": "Victory over Fascism Day", - "2010-05-10": "Victory over Fascism Day (Observed)", + "2010-05-10": "Victory over Fascism Day (observed)", "2010-05-28": "Republic Day", "2010-06-15": "National Liberation Day", "2010-06-26": "Armed Forces Day", - "2010-06-28": "Armed Forces Day (Observed)", + "2010-06-28": "Armed Forces Day (observed)", "2010-09-09": "Eid al-Fitr", "2010-09-10": "Eid al-Fitr", "2010-10-18": "Independence Day", @@ -326,8 +326,8 @@ "2010-12-31": "International Azerbaijanis Solidarity Day", "2011-01-01": "New Year's Day", "2011-01-02": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "New Year's Day (observed)", "2011-01-20": "Martyrs' Day", "2011-03-08": "Women's Day", "2011-03-20": "Spring Festival", @@ -335,28 +335,28 @@ "2011-03-22": "Spring Festival", "2011-03-23": "Spring Festival", "2011-03-24": "Spring Festival", - "2011-03-25": "Spring Festival (Observed)", + "2011-03-25": "Spring Festival (observed)", "2011-05-09": "Victory over Fascism Day", "2011-05-28": "Republic Day", - "2011-05-30": "Republic Day (Observed)", + "2011-05-30": "Republic Day (observed)", "2011-06-15": "National Liberation Day", "2011-06-26": "Armed Forces Day", - "2011-06-27": "Armed Forces Day (Observed)", + "2011-06-27": "Armed Forces Day (observed)", "2011-08-29": "Day off (substituted from 08/27/2011)", "2011-08-30": "Eid al-Fitr", "2011-08-31": "Eid al-Fitr", "2011-10-18": "Independence Day", "2011-11-06": "Eid al-Adha", "2011-11-07": "Eid al-Adha", - "2011-11-08": "Eid al-Adha (Observed)", + "2011-11-08": "Eid al-Adha (observed)", "2011-11-09": "National Flag Day", "2011-11-12": "Constitution Day", "2011-11-17": "National Revival Day", "2011-12-31": "International Azerbaijanis Solidarity Day", "2012-01-01": "New Year's Day", "2012-01-02": "New Year's Day", - "2012-01-03": "International Azerbaijanis Solidarity Day (Observed)", - "2012-01-04": "New Year's Day (Observed)", + "2012-01-03": "International Azerbaijanis Solidarity Day (observed)", + "2012-01-04": "New Year's Day (observed)", "2012-01-20": "Martyrs' Day", "2012-03-08": "Women's Day", "2012-03-20": "Spring Festival", @@ -364,14 +364,14 @@ "2012-03-22": "Spring Festival", "2012-03-23": "Spring Festival", "2012-03-24": "Spring Festival", - "2012-03-26": "Spring Festival (Observed)", + "2012-03-26": "Spring Festival (observed)", "2012-05-09": "Victory over Fascism Day", "2012-05-28": "Republic Day", "2012-06-15": "National Liberation Day", "2012-06-26": "Armed Forces Day", "2012-08-19": "Eid al-Fitr", "2012-08-20": "Eid al-Fitr", - "2012-08-21": "Eid al-Fitr (Observed)", + "2012-08-21": "Eid al-Fitr (observed)", "2012-10-18": "Independence Day", "2012-10-25": "Eid al-Adha", "2012-10-26": "Eid al-Adha", @@ -390,12 +390,12 @@ "2013-03-22": "Spring Festival", "2013-03-23": "Spring Festival", "2013-03-24": "Spring Festival", - "2013-03-25": "Spring Festival (Observed)", - "2013-03-26": "Spring Festival (Observed)", + "2013-03-25": "Spring Festival (observed)", + "2013-03-26": "Spring Festival (observed)", "2013-05-09": "Victory over Fascism Day", "2013-05-28": "Republic Day", "2013-06-15": "National Liberation Day", - "2013-06-17": "National Liberation Day (Observed)", + "2013-06-17": "National Liberation Day (observed)", "2013-06-26": "Armed Forces Day", "2013-08-08": "Eid al-Fitr", "2013-08-09": "Eid al-Fitr", @@ -403,7 +403,7 @@ "2013-10-16": "Eid al-Adha", "2013-10-18": "Independence Day", "2013-11-09": "National Flag Day", - "2013-11-11": "National Flag Day (Observed)", + "2013-11-11": "National Flag Day (observed)", "2013-11-12": "Constitution Day", "2013-11-17": "National Revival Day", "2013-12-31": "International Azerbaijanis Solidarity Day", @@ -413,28 +413,28 @@ "2014-01-06": "Day off (substituted from 12/29/2013)", "2014-01-20": "Martyrs' Day", "2014-03-08": "Women's Day", - "2014-03-10": "Women's Day (Observed)", + "2014-03-10": "Women's Day (observed)", "2014-03-20": "Spring Festival", "2014-03-21": "Spring Festival", "2014-03-22": "Spring Festival", "2014-03-23": "Spring Festival", "2014-03-24": "Spring Festival", - "2014-03-25": "Spring Festival (Observed)", - "2014-03-26": "Spring Festival (Observed)", + "2014-03-25": "Spring Festival (observed)", + "2014-03-26": "Spring Festival (observed)", "2014-05-09": "Victory over Fascism Day", "2014-05-28": "Republic Day", "2014-06-15": "National Liberation Day", - "2014-06-16": "National Liberation Day (Observed)", + "2014-06-16": "National Liberation Day (observed)", "2014-06-26": "Armed Forces Day", "2014-07-28": "Eid al-Fitr", "2014-07-29": "Eid al-Fitr", "2014-10-04": "Eid al-Adha", "2014-10-05": "Eid al-Adha", - "2014-10-06": "Eid al-Adha (Observed)", - "2014-10-07": "Eid al-Adha (Observed)", + "2014-10-06": "Eid al-Adha (observed)", + "2014-10-07": "Eid al-Adha (observed)", "2014-10-18": "Independence Day", "2014-11-09": "National Flag Day", - "2014-11-10": "National Flag Day (Observed)", + "2014-11-10": "National Flag Day (observed)", "2014-11-12": "Constitution Day", "2014-11-17": "National Revival Day", "2014-12-31": "International Azerbaijanis Solidarity Day", @@ -442,22 +442,22 @@ "2015-01-02": "New Year's Day", "2015-01-20": "Martyrs' Day", "2015-03-08": "Women's Day", - "2015-03-09": "Women's Day (Observed)", + "2015-03-09": "Women's Day (observed)", "2015-03-20": "Spring Festival", "2015-03-21": "Spring Festival", "2015-03-22": "Spring Festival", "2015-03-23": "Spring Festival", "2015-03-24": "Spring Festival", - "2015-03-25": "Spring Festival (Observed)", - "2015-03-26": "Spring Festival (Observed)", + "2015-03-25": "Spring Festival (observed)", + "2015-03-26": "Spring Festival (observed)", "2015-05-09": "Victory over Fascism Day", - "2015-05-11": "Victory over Fascism Day (Observed)", + "2015-05-11": "Victory over Fascism Day (observed)", "2015-05-28": "Republic Day", "2015-06-15": "National Liberation Day", "2015-06-26": "Armed Forces Day", "2015-07-17": "Eid al-Fitr", "2015-07-18": "Eid al-Fitr", - "2015-07-20": "Eid al-Fitr (Observed)", + "2015-07-20": "Eid al-Fitr (observed)", "2015-09-24": "Eid al-Adha", "2015-09-25": "Eid al-Adha", "2015-10-18": "Independence Day", @@ -467,7 +467,7 @@ "2015-12-31": "International Azerbaijanis Solidarity Day", "2016-01-01": "New Year's Day", "2016-01-02": "New Year's Day", - "2016-01-04": "New Year's Day (Observed)", + "2016-01-04": "New Year's Day (observed)", "2016-01-20": "Martyrs' Day", "2016-03-08": "Women's Day", "2016-03-20": "Spring Festival", @@ -475,13 +475,13 @@ "2016-03-22": "Spring Festival", "2016-03-23": "Spring Festival", "2016-03-24": "Spring Festival", - "2016-03-25": "Spring Festival (Observed)", + "2016-03-25": "Spring Festival (observed)", "2016-05-09": "Victory over Fascism Day", "2016-05-28": "Republic Day", - "2016-05-30": "Republic Day (Observed)", + "2016-05-30": "Republic Day (observed)", "2016-06-15": "National Liberation Day", "2016-06-26": "Armed Forces Day", - "2016-06-27": "Armed Forces Day (Observed)", + "2016-06-27": "Armed Forces Day (observed)", "2016-07-06": "Eid al-Fitr", "2016-07-07": "Eid al-Fitr", "2016-09-12": "Eid al-Adha", @@ -493,8 +493,8 @@ "2016-12-31": "International Azerbaijanis Solidarity Day", "2017-01-01": "New Year's Day", "2017-01-02": "New Year's Day", - "2017-01-03": "International Azerbaijanis Solidarity Day (Observed)", - "2017-01-04": "New Year's Day (Observed)", + "2017-01-03": "International Azerbaijanis Solidarity Day (observed)", + "2017-01-04": "New Year's Day (observed)", "2017-01-20": "Martyrs' Day", "2017-03-08": "Women's Day", "2017-03-20": "Spring Festival", @@ -504,14 +504,14 @@ "2017-03-24": "Spring Festival", "2017-05-09": "Victory over Fascism Day", "2017-05-28": "Republic Day", - "2017-05-29": "Republic Day (Observed)", + "2017-05-29": "Republic Day (observed)", "2017-06-15": "National Liberation Day", "2017-06-26": "Armed Forces Day; Eid al-Fitr", "2017-06-27": "Eid al-Fitr", - "2017-06-28": "Eid al-Fitr (Observed)", + "2017-06-28": "Eid al-Fitr (observed)", "2017-09-01": "Eid al-Adha", "2017-09-02": "Eid al-Adha", - "2017-09-04": "Eid al-Adha (Observed)", + "2017-09-04": "Eid al-Adha (observed)", "2017-10-18": "Independence Day", "2017-11-09": "National Flag Day", "2017-11-12": "Constitution Day", @@ -519,7 +519,7 @@ "2017-12-31": "International Azerbaijanis Solidarity Day", "2018-01-01": "New Year's Day", "2018-01-02": "New Year's Day", - "2018-01-03": "International Azerbaijanis Solidarity Day (Observed)", + "2018-01-03": "International Azerbaijanis Solidarity Day (observed)", "2018-01-20": "Martyrs' Day", "2018-03-08": "Women's Day", "2018-03-20": "Spring Festival", @@ -527,14 +527,14 @@ "2018-03-22": "Spring Festival", "2018-03-23": "Spring Festival", "2018-03-24": "Spring Festival", - "2018-03-26": "Spring Festival (Observed)", + "2018-03-26": "Spring Festival (observed)", "2018-04-11": "Presidential elections", "2018-05-09": "Victory over Fascism Day", "2018-05-28": "Republic Day", "2018-06-15": "Eid al-Fitr; National Liberation Day", "2018-06-16": "Eid al-Fitr", - "2018-06-18": "Eid al-Fitr (Observed)", - "2018-06-19": "Eid al-Fitr (Observed)", + "2018-06-18": "Eid al-Fitr (observed)", + "2018-06-19": "Eid al-Fitr (observed)", "2018-06-26": "Armed Forces Day", "2018-08-22": "Eid al-Adha", "2018-08-23": "Eid al-Adha", @@ -552,20 +552,20 @@ "2019-03-22": "Spring Festival", "2019-03-23": "Spring Festival", "2019-03-24": "Spring Festival", - "2019-03-25": "Spring Festival (Observed)", - "2019-03-26": "Spring Festival (Observed)", + "2019-03-25": "Spring Festival (observed)", + "2019-03-26": "Spring Festival (observed)", "2019-05-09": "Victory over Fascism Day", "2019-05-28": "Republic Day", "2019-06-05": "Eid al-Fitr", "2019-06-06": "Eid al-Fitr", "2019-06-15": "National Liberation Day", - "2019-06-17": "National Liberation Day (Observed)", + "2019-06-17": "National Liberation Day (observed)", "2019-06-26": "Armed Forces Day", "2019-08-12": "Eid al-Adha", "2019-08-13": "Eid al-Adha", "2019-10-18": "Independence Day", "2019-11-09": "National Flag Day", - "2019-11-11": "National Flag Day (Observed)", + "2019-11-11": "National Flag Day (observed)", "2019-11-12": "Constitution Day", "2019-11-17": "National Revival Day", "2019-12-27": "Municipal elections", @@ -576,27 +576,27 @@ "2020-01-06": "Day off (substituted from 12/29/2019)", "2020-01-20": "Martyrs' Day", "2020-03-08": "Women's Day", - "2020-03-09": "Women's Day (Observed)", + "2020-03-09": "Women's Day (observed)", "2020-03-20": "Spring Festival", "2020-03-21": "Spring Festival", "2020-03-22": "Spring Festival", "2020-03-23": "Spring Festival", "2020-03-24": "Spring Festival", - "2020-03-25": "Spring Festival (Observed)", - "2020-03-26": "Spring Festival (Observed)", + "2020-03-25": "Spring Festival (observed)", + "2020-03-26": "Spring Festival (observed)", "2020-03-27": "Day off (substituted from 03/29/2020)", "2020-05-09": "Victory over Fascism Day", - "2020-05-11": "Victory over Fascism Day (Observed)", + "2020-05-11": "Victory over Fascism Day (observed)", "2020-05-24": "Eid al-Fitr", "2020-05-25": "Eid al-Fitr", - "2020-05-26": "Eid al-Fitr (Observed)", + "2020-05-26": "Eid al-Fitr (observed)", "2020-05-27": "Day off (substituted from 05/30/2020)", "2020-05-28": "Republic Day", "2020-06-15": "National Liberation Day", "2020-06-26": "Armed Forces Day", "2020-07-31": "Eid al-Adha", "2020-08-01": "Eid al-Adha", - "2020-08-03": "Eid al-Adha (Observed)", + "2020-08-03": "Eid al-Adha (observed)", "2020-10-18": "Independence Day", "2020-11-09": "National Flag Day", "2020-11-12": "Constitution Day", @@ -604,7 +604,7 @@ "2020-12-31": "International Azerbaijanis Solidarity Day", "2021-01-01": "New Year's Day", "2021-01-02": "New Year's Day", - "2021-01-04": "New Year's Day (Observed)", + "2021-01-04": "New Year's Day (observed)", "2021-01-20": "Martyrs' Day", "2021-03-08": "Women's Day", "2021-03-20": "Spring Festival", @@ -612,10 +612,10 @@ "2021-03-22": "Spring Festival", "2021-03-23": "Spring Festival", "2021-03-24": "Spring Festival", - "2021-03-25": "Spring Festival (Observed)", - "2021-03-26": "Spring Festival (Observed)", + "2021-03-25": "Spring Festival (observed)", + "2021-03-26": "Spring Festival (observed)", "2021-05-09": "Victory over Fascism Day", - "2021-05-10": "Victory over Fascism Day (Observed)", + "2021-05-10": "Victory over Fascism Day (observed)", "2021-05-11": "Day off (substituted from 05/08/2021)", "2021-05-12": "Day off (substituted from 05/16/2021)", "2021-05-13": "Eid al-Fitr", @@ -623,7 +623,7 @@ "2021-05-28": "Independence Day", "2021-06-15": "National Liberation Day", "2021-06-26": "Armed Forces Day", - "2021-06-28": "Armed Forces Day (Observed)", + "2021-06-28": "Armed Forces Day (observed)", "2021-07-19": "Day off (substituted from 07/17/2021)", "2021-07-20": "Eid al-Adha", "2021-07-21": "Eid al-Adha", @@ -636,8 +636,8 @@ "2021-12-31": "International Azerbaijanis Solidarity Day", "2022-01-01": "New Year's Day", "2022-01-02": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "New Year's Day (observed)", "2022-01-20": "Martyrs' Day", "2022-03-07": "Day off (substituted from 03/05/2022)", "2022-03-08": "Women's Day", @@ -646,19 +646,19 @@ "2022-03-22": "Spring Festival", "2022-03-23": "Spring Festival", "2022-03-24": "Spring Festival", - "2022-03-25": "Spring Festival (Observed)", + "2022-03-25": "Spring Festival (observed)", "2022-05-02": "Eid al-Fitr", "2022-05-03": "Eid al-Fitr", "2022-05-09": "Victory over Fascism Day", "2022-05-28": "Independence Day", - "2022-05-30": "Independence Day (Observed)", + "2022-05-30": "Independence Day (observed)", "2022-06-15": "National Liberation Day", "2022-06-26": "Armed Forces Day", - "2022-06-27": "Armed Forces Day (Observed)", + "2022-06-27": "Armed Forces Day (observed)", "2022-07-09": "Eid al-Adha", "2022-07-10": "Eid al-Adha", - "2022-07-11": "Eid al-Adha (Observed)", - "2022-07-12": "Eid al-Adha (Observed)", + "2022-07-11": "Eid al-Adha (observed)", + "2022-07-12": "Eid al-Adha (observed)", "2022-09-27": "Memorial Day", "2022-10-18": "Independence Restoration Day", "2022-11-07": "Day off (substituted from 11/05/2022)", @@ -669,8 +669,8 @@ "2022-12-31": "International Azerbaijanis Solidarity Day", "2023-01-01": "New Year's Day", "2023-01-02": "New Year's Day", - "2023-01-03": "International Azerbaijanis Solidarity Day (Observed)", - "2023-01-04": "New Year's Day (Observed)", + "2023-01-03": "International Azerbaijanis Solidarity Day (observed)", + "2023-01-04": "New Year's Day (observed)", "2023-01-20": "Martyrs' Day", "2023-03-08": "Women's Day", "2023-03-20": "Spring Festival", @@ -680,10 +680,10 @@ "2023-03-24": "Spring Festival", "2023-04-21": "Eid al-Fitr", "2023-04-22": "Eid al-Fitr", - "2023-04-24": "Eid al-Fitr (Observed)", + "2023-04-24": "Eid al-Fitr (observed)", "2023-05-09": "Victory over Fascism Day", "2023-05-28": "Independence Day", - "2023-05-29": "Independence Day (Observed)", + "2023-05-29": "Independence Day (observed)", "2023-06-15": "National Liberation Day", "2023-06-26": "Armed Forces Day", "2023-06-27": "Day off (substituted from 06/24/2023)", @@ -700,7 +700,7 @@ "2023-12-31": "International Azerbaijanis Solidarity Day", "2024-01-01": "New Year's Day", "2024-01-02": "New Year's Day", - "2024-01-03": "International Azerbaijanis Solidarity Day (Observed)", + "2024-01-03": "International Azerbaijanis Solidarity Day (observed)", "2024-01-20": "Martyrs' Day", "2024-03-08": "Women's Day", "2024-03-20": "Spring Festival", @@ -708,8 +708,8 @@ "2024-03-22": "Spring Festival", "2024-03-23": "Spring Festival", "2024-03-24": "Spring Festival", - "2024-03-25": "Spring Festival (Observed)", - "2024-03-26": "Spring Festival (Observed)", + "2024-03-25": "Spring Festival (observed)", + "2024-03-26": "Spring Festival (observed)", "2024-04-10": "Eid al-Fitr (estimated)", "2024-04-11": "Eid al-Fitr (estimated)", "2024-05-09": "Victory over Fascism Day", @@ -717,14 +717,14 @@ "2024-06-15": "National Liberation Day", "2024-06-16": "Eid al-Adha (estimated)", "2024-06-17": "Eid al-Adha (estimated)", - "2024-06-18": "National Liberation Day (Observed)", - "2024-06-19": "Eid al-Adha (estimated) (Observed)", + "2024-06-18": "National Liberation Day (observed)", + "2024-06-19": "Eid al-Adha (estimated) (observed)", "2024-06-26": "Armed Forces Day", "2024-09-27": "Memorial Day", "2024-10-18": "Independence Restoration Day", "2024-11-08": "Victory Day", "2024-11-09": "National Flag Day", - "2024-11-11": "National Flag Day (Observed)", + "2024-11-11": "National Flag Day (observed)", "2024-11-12": "Constitution Day", "2024-11-17": "National Revival Day", "2024-12-31": "International Azerbaijanis Solidarity Day", @@ -732,31 +732,31 @@ "2025-01-02": "New Year's Day", "2025-01-20": "Martyrs' Day", "2025-03-08": "Women's Day", - "2025-03-10": "Women's Day (Observed)", + "2025-03-10": "Women's Day (observed)", "2025-03-20": "Spring Festival", "2025-03-21": "Spring Festival", "2025-03-22": "Spring Festival", "2025-03-23": "Spring Festival", "2025-03-24": "Spring Festival", - "2025-03-25": "Spring Festival (Observed)", - "2025-03-26": "Spring Festival (Observed)", + "2025-03-25": "Spring Festival (observed)", + "2025-03-26": "Spring Festival (observed)", "2025-03-30": "Eid al-Fitr (estimated)", "2025-03-31": "Eid al-Fitr (estimated)", - "2025-04-01": "Eid al-Fitr (estimated) (Observed)", + "2025-04-01": "Eid al-Fitr (estimated) (observed)", "2025-05-09": "Victory over Fascism Day", "2025-05-28": "Independence Day", "2025-06-06": "Eid al-Adha (estimated)", "2025-06-07": "Eid al-Adha (estimated)", - "2025-06-09": "Eid al-Adha (estimated) (Observed)", + "2025-06-09": "Eid al-Adha (estimated) (observed)", "2025-06-15": "National Liberation Day", - "2025-06-16": "National Liberation Day (Observed)", + "2025-06-16": "National Liberation Day (observed)", "2025-06-26": "Armed Forces Day", "2025-09-27": "Memorial Day", "2025-10-18": "Independence Restoration Day", "2025-11-08": "Victory Day", "2025-11-09": "National Flag Day", - "2025-11-10": "Victory Day (Observed)", - "2025-11-11": "National Flag Day (Observed)", + "2025-11-10": "Victory Day (observed)", + "2025-11-11": "National Flag Day (observed)", "2025-11-12": "Constitution Day", "2025-11-17": "National Revival Day", "2025-12-31": "International Azerbaijanis Solidarity Day", @@ -764,16 +764,16 @@ "2026-01-02": "New Year's Day", "2026-01-20": "Martyrs' Day", "2026-03-08": "Women's Day", - "2026-03-09": "Women's Day (Observed)", + "2026-03-09": "Women's Day (observed)", "2026-03-20": "Eid al-Fitr (estimated); Spring Festival", "2026-03-21": "Eid al-Fitr (estimated); Spring Festival", "2026-03-22": "Spring Festival", "2026-03-23": "Spring Festival", "2026-03-24": "Spring Festival", - "2026-03-25": "Eid al-Fitr (estimated) (Observed); Spring Festival (Observed)", - "2026-03-26": "Spring Festival (Observed)", + "2026-03-25": "Eid al-Fitr (estimated) (observed); Spring Festival (observed)", + "2026-03-26": "Spring Festival (observed)", "2026-05-09": "Victory over Fascism Day", - "2026-05-11": "Victory over Fascism Day (Observed)", + "2026-05-11": "Victory over Fascism Day (observed)", "2026-05-27": "Eid al-Adha (estimated)", "2026-05-28": "Eid al-Adha (estimated); Independence Day", "2026-06-15": "National Liberation Day", @@ -782,13 +782,13 @@ "2026-10-18": "Independence Restoration Day", "2026-11-08": "Victory Day", "2026-11-09": "National Flag Day", - "2026-11-10": "Victory Day (Observed)", + "2026-11-10": "Victory Day (observed)", "2026-11-12": "Constitution Day", "2026-11-17": "National Revival Day", "2026-12-31": "International Azerbaijanis Solidarity Day", "2027-01-01": "New Year's Day", "2027-01-02": "New Year's Day", - "2027-01-04": "New Year's Day (Observed)", + "2027-01-04": "New Year's Day (observed)", "2027-01-20": "Martyrs' Day", "2027-03-08": "Women's Day", "2027-03-09": "Eid al-Fitr (estimated)", @@ -798,17 +798,17 @@ "2027-03-22": "Spring Festival", "2027-03-23": "Spring Festival", "2027-03-24": "Spring Festival", - "2027-03-25": "Spring Festival (Observed)", - "2027-03-26": "Spring Festival (Observed)", + "2027-03-25": "Spring Festival (observed)", + "2027-03-26": "Spring Festival (observed)", "2027-05-09": "Victory over Fascism Day", - "2027-05-10": "Victory over Fascism Day (Observed)", + "2027-05-10": "Victory over Fascism Day (observed)", "2027-05-16": "Eid al-Adha (estimated)", "2027-05-17": "Eid al-Adha (estimated)", - "2027-05-18": "Eid al-Adha (estimated) (Observed)", + "2027-05-18": "Eid al-Adha (estimated) (observed)", "2027-05-28": "Independence Day", "2027-06-15": "National Liberation Day", "2027-06-26": "Armed Forces Day", - "2027-06-28": "Armed Forces Day (Observed)", + "2027-06-28": "Armed Forces Day (observed)", "2027-09-27": "Memorial Day", "2027-10-18": "Independence Restoration Day", "2027-11-08": "Victory Day", @@ -818,13 +818,13 @@ "2027-12-31": "International Azerbaijanis Solidarity Day", "2028-01-01": "New Year's Day", "2028-01-02": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "New Year's Day (observed)", "2028-01-20": "Martyrs' Day", "2028-02-26": "Eid al-Fitr (estimated)", "2028-02-27": "Eid al-Fitr (estimated)", - "2028-02-28": "Eid al-Fitr (estimated) (Observed)", - "2028-02-29": "Eid al-Fitr (estimated) (Observed)", + "2028-02-28": "Eid al-Fitr (estimated) (observed)", + "2028-02-29": "Eid al-Fitr (estimated) (observed)", "2028-03-08": "Women's Day", "2028-03-20": "Spring Festival", "2028-03-21": "Spring Festival", @@ -833,10 +833,10 @@ "2028-03-24": "Spring Festival", "2028-05-05": "Eid al-Adha (estimated)", "2028-05-06": "Eid al-Adha (estimated)", - "2028-05-08": "Eid al-Adha (estimated) (Observed)", + "2028-05-08": "Eid al-Adha (estimated) (observed)", "2028-05-09": "Victory over Fascism Day", "2028-05-28": "Independence Day", - "2028-05-29": "Independence Day (Observed)", + "2028-05-29": "Independence Day (observed)", "2028-06-15": "National Liberation Day", "2028-06-26": "Armed Forces Day", "2028-09-27": "Memorial Day", @@ -848,7 +848,7 @@ "2028-12-31": "International Azerbaijanis Solidarity Day", "2029-01-01": "New Year's Day", "2029-01-02": "New Year's Day", - "2029-01-03": "International Azerbaijanis Solidarity Day (Observed)", + "2029-01-03": "International Azerbaijanis Solidarity Day (observed)", "2029-01-20": "Martyrs' Day", "2029-02-14": "Eid al-Fitr (estimated)", "2029-02-15": "Eid al-Fitr (estimated)", @@ -858,7 +858,7 @@ "2029-03-22": "Spring Festival", "2029-03-23": "Spring Festival", "2029-03-24": "Spring Festival", - "2029-03-26": "Spring Festival (Observed)", + "2029-03-26": "Spring Festival (observed)", "2029-04-24": "Eid al-Adha (estimated)", "2029-04-25": "Eid al-Adha (estimated)", "2029-05-09": "Victory over Fascism Day", @@ -883,22 +883,22 @@ "2030-03-22": "Spring Festival", "2030-03-23": "Spring Festival", "2030-03-24": "Spring Festival", - "2030-03-25": "Spring Festival (Observed)", - "2030-03-26": "Spring Festival (Observed)", + "2030-03-25": "Spring Festival (observed)", + "2030-03-26": "Spring Festival (observed)", "2030-04-13": "Eid al-Adha (estimated)", "2030-04-14": "Eid al-Adha (estimated)", - "2030-04-15": "Eid al-Adha (estimated) (Observed)", - "2030-04-16": "Eid al-Adha (estimated) (Observed)", + "2030-04-15": "Eid al-Adha (estimated) (observed)", + "2030-04-16": "Eid al-Adha (estimated) (observed)", "2030-05-09": "Victory over Fascism Day", "2030-05-28": "Independence Day", "2030-06-15": "National Liberation Day", - "2030-06-17": "National Liberation Day (Observed)", + "2030-06-17": "National Liberation Day (observed)", "2030-06-26": "Armed Forces Day", "2030-09-27": "Memorial Day", "2030-10-18": "Independence Restoration Day", "2030-11-08": "Victory Day", "2030-11-09": "National Flag Day", - "2030-11-11": "National Flag Day (Observed)", + "2030-11-11": "National Flag Day (observed)", "2030-11-12": "Constitution Day", "2030-11-17": "National Revival Day", "2030-12-31": "International Azerbaijanis Solidarity Day", @@ -907,29 +907,29 @@ "2031-01-20": "Martyrs' Day", "2031-01-24": "Eid al-Fitr (estimated)", "2031-01-25": "Eid al-Fitr (estimated)", - "2031-01-27": "Eid al-Fitr (estimated) (Observed)", + "2031-01-27": "Eid al-Fitr (estimated) (observed)", "2031-03-08": "Women's Day", - "2031-03-10": "Women's Day (Observed)", + "2031-03-10": "Women's Day (observed)", "2031-03-20": "Spring Festival", "2031-03-21": "Spring Festival", "2031-03-22": "Spring Festival", "2031-03-23": "Spring Festival", "2031-03-24": "Spring Festival", - "2031-03-25": "Spring Festival (Observed)", - "2031-03-26": "Spring Festival (Observed)", + "2031-03-25": "Spring Festival (observed)", + "2031-03-26": "Spring Festival (observed)", "2031-04-02": "Eid al-Adha (estimated)", "2031-04-03": "Eid al-Adha (estimated)", "2031-05-09": "Victory over Fascism Day", "2031-05-28": "Independence Day", "2031-06-15": "National Liberation Day", - "2031-06-16": "National Liberation Day (Observed)", + "2031-06-16": "National Liberation Day (observed)", "2031-06-26": "Armed Forces Day", "2031-09-27": "Memorial Day", "2031-10-18": "Independence Restoration Day", "2031-11-08": "Victory Day", "2031-11-09": "National Flag Day", - "2031-11-10": "Victory Day (Observed)", - "2031-11-11": "National Flag Day (Observed)", + "2031-11-10": "Victory Day (observed)", + "2031-11-11": "National Flag Day (observed)", "2031-11-12": "Constitution Day", "2031-11-17": "National Revival Day", "2031-12-31": "International Azerbaijanis Solidarity Day", @@ -944,14 +944,14 @@ "2032-03-22": "Eid al-Adha (estimated); Spring Festival", "2032-03-23": "Eid al-Adha (estimated); Spring Festival", "2032-03-24": "Spring Festival", - "2032-03-25": "Spring Festival (Observed)", - "2032-03-26": "Spring Festival (Observed)", + "2032-03-25": "Spring Festival (observed)", + "2032-03-26": "Spring Festival (observed)", "2032-05-09": "Victory over Fascism Day", - "2032-05-10": "Victory over Fascism Day (Observed)", + "2032-05-10": "Victory over Fascism Day (observed)", "2032-05-28": "Independence Day", "2032-06-15": "National Liberation Day", "2032-06-26": "Armed Forces Day", - "2032-06-28": "Armed Forces Day (Observed)", + "2032-06-28": "Armed Forces Day (observed)", "2032-09-27": "Memorial Day", "2032-10-18": "Independence Restoration Day", "2032-11-08": "Victory Day", @@ -962,25 +962,25 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", "2033-01-03": "Eid al-Fitr (estimated)", - "2033-01-04": "New Year's Day (Observed)", - "2033-01-05": "Eid al-Fitr (estimated) (Observed); New Year's Day (Observed)", + "2033-01-04": "New Year's Day (observed)", + "2033-01-05": "Eid al-Fitr (estimated) (observed); New Year's Day (observed)", "2033-01-20": "Martyrs' Day", "2033-03-08": "Women's Day", "2033-03-11": "Eid al-Adha (estimated)", "2033-03-12": "Eid al-Adha (estimated)", - "2033-03-14": "Eid al-Adha (estimated) (Observed)", + "2033-03-14": "Eid al-Adha (estimated) (observed)", "2033-03-20": "Spring Festival", "2033-03-21": "Spring Festival", "2033-03-22": "Spring Festival", "2033-03-23": "Spring Festival", "2033-03-24": "Spring Festival", - "2033-03-25": "Spring Festival (Observed)", + "2033-03-25": "Spring Festival (observed)", "2033-05-09": "Victory over Fascism Day", "2033-05-28": "Independence Day", - "2033-05-30": "Independence Day (Observed)", + "2033-05-30": "Independence Day (observed)", "2033-06-15": "National Liberation Day", "2033-06-26": "Armed Forces Day", - "2033-06-27": "Armed Forces Day (Observed)", + "2033-06-27": "Armed Forces Day (observed)", "2033-09-27": "Memorial Day", "2033-10-18": "Independence Restoration Day", "2033-11-08": "Victory Day", @@ -989,12 +989,12 @@ "2033-11-17": "National Revival Day", "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-24": "Eid al-Fitr (estimated)", - "2033-12-26": "Eid al-Fitr (estimated) (Observed)", + "2033-12-26": "Eid al-Fitr (estimated) (observed)", "2033-12-31": "International Azerbaijanis Solidarity Day", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", - "2034-01-03": "International Azerbaijanis Solidarity Day (Observed)", - "2034-01-04": "New Year's Day (Observed)", + "2034-01-03": "International Azerbaijanis Solidarity Day (observed)", + "2034-01-04": "New Year's Day (observed)", "2034-01-20": "Martyrs' Day", "2034-03-01": "Eid al-Adha (estimated)", "2034-03-02": "Eid al-Adha (estimated)", @@ -1006,7 +1006,7 @@ "2034-03-24": "Spring Festival", "2034-05-09": "Victory over Fascism Day", "2034-05-28": "Independence Day", - "2034-05-29": "Independence Day (Observed)", + "2034-05-29": "Independence Day (observed)", "2034-06-15": "National Liberation Day", "2034-06-26": "Armed Forces Day", "2034-09-27": "Memorial Day", @@ -1020,18 +1020,18 @@ "2034-12-31": "International Azerbaijanis Solidarity Day", "2035-01-01": "New Year's Day", "2035-01-02": "New Year's Day", - "2035-01-03": "International Azerbaijanis Solidarity Day (Observed)", + "2035-01-03": "International Azerbaijanis Solidarity Day (observed)", "2035-01-20": "Martyrs' Day", "2035-02-18": "Eid al-Adha (estimated)", "2035-02-19": "Eid al-Adha (estimated)", - "2035-02-20": "Eid al-Adha (estimated) (Observed)", + "2035-02-20": "Eid al-Adha (estimated) (observed)", "2035-03-08": "Women's Day", "2035-03-20": "Spring Festival", "2035-03-21": "Spring Festival", "2035-03-22": "Spring Festival", "2035-03-23": "Spring Festival", "2035-03-24": "Spring Festival", - "2035-03-26": "Spring Festival (Observed)", + "2035-03-26": "Spring Festival (observed)", "2035-05-09": "Victory over Fascism Day", "2035-05-28": "Independence Day", "2035-06-15": "National Liberation Day", @@ -1044,8 +1044,8 @@ "2035-11-17": "National Revival Day", "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-02": "Eid al-Fitr (estimated)", - "2035-12-03": "Eid al-Fitr (estimated) (Observed)", - "2035-12-04": "Eid al-Fitr (estimated) (Observed)", + "2035-12-03": "Eid al-Fitr (estimated) (observed)", + "2035-12-04": "Eid al-Fitr (estimated) (observed)", "2035-12-31": "International Azerbaijanis Solidarity Day", "2036-01-01": "New Year's Day", "2036-01-02": "New Year's Day", @@ -1053,25 +1053,25 @@ "2036-02-07": "Eid al-Adha (estimated)", "2036-02-08": "Eid al-Adha (estimated)", "2036-03-08": "Women's Day", - "2036-03-10": "Women's Day (Observed)", + "2036-03-10": "Women's Day (observed)", "2036-03-20": "Spring Festival", "2036-03-21": "Spring Festival", "2036-03-22": "Spring Festival", "2036-03-23": "Spring Festival", "2036-03-24": "Spring Festival", - "2036-03-25": "Spring Festival (Observed)", - "2036-03-26": "Spring Festival (Observed)", + "2036-03-25": "Spring Festival (observed)", + "2036-03-26": "Spring Festival (observed)", "2036-05-09": "Victory over Fascism Day", "2036-05-28": "Independence Day", "2036-06-15": "National Liberation Day", - "2036-06-16": "National Liberation Day (Observed)", + "2036-06-16": "National Liberation Day (observed)", "2036-06-26": "Armed Forces Day", "2036-09-27": "Memorial Day", "2036-10-18": "Independence Restoration Day", "2036-11-08": "Victory Day", "2036-11-09": "National Flag Day", - "2036-11-10": "Victory Day (Observed)", - "2036-11-11": "National Flag Day (Observed)", + "2036-11-10": "Victory Day (observed)", + "2036-11-11": "National Flag Day (observed)", "2036-11-12": "Constitution Day", "2036-11-17": "National Revival Day", "2036-11-19": "Eid al-Fitr (estimated)", @@ -1083,16 +1083,16 @@ "2037-01-26": "Eid al-Adha (estimated)", "2037-01-27": "Eid al-Adha (estimated)", "2037-03-08": "Women's Day", - "2037-03-09": "Women's Day (Observed)", + "2037-03-09": "Women's Day (observed)", "2037-03-20": "Spring Festival", "2037-03-21": "Spring Festival", "2037-03-22": "Spring Festival", "2037-03-23": "Spring Festival", "2037-03-24": "Spring Festival", - "2037-03-25": "Spring Festival (Observed)", - "2037-03-26": "Spring Festival (Observed)", + "2037-03-25": "Spring Festival (observed)", + "2037-03-26": "Spring Festival (observed)", "2037-05-09": "Victory over Fascism Day", - "2037-05-11": "Victory over Fascism Day (Observed)", + "2037-05-11": "Victory over Fascism Day (observed)", "2037-05-28": "Independence Day", "2037-06-15": "National Liberation Day", "2037-06-26": "Armed Forces Day", @@ -1100,17 +1100,17 @@ "2037-10-18": "Independence Restoration Day", "2037-11-08": "Eid al-Fitr (estimated); Victory Day", "2037-11-09": "Eid al-Fitr (estimated); National Flag Day", - "2037-11-10": "Eid al-Fitr (estimated) (Observed); Victory Day (Observed)", + "2037-11-10": "Eid al-Fitr (estimated) (observed); Victory Day (observed)", "2037-11-12": "Constitution Day", "2037-11-17": "National Revival Day", "2037-12-31": "International Azerbaijanis Solidarity Day", "2038-01-01": "New Year's Day", "2038-01-02": "New Year's Day", - "2038-01-04": "New Year's Day (Observed)", + "2038-01-04": "New Year's Day (observed)", "2038-01-16": "Eid al-Adha (estimated)", "2038-01-17": "Eid al-Adha (estimated)", - "2038-01-18": "Eid al-Adha (estimated) (Observed)", - "2038-01-19": "Eid al-Adha (estimated) (Observed)", + "2038-01-18": "Eid al-Adha (estimated) (observed)", + "2038-01-19": "Eid al-Adha (estimated) (observed)", "2038-01-20": "Martyrs' Day", "2038-03-08": "Women's Day", "2038-03-20": "Spring Festival", @@ -1118,19 +1118,19 @@ "2038-03-22": "Spring Festival", "2038-03-23": "Spring Festival", "2038-03-24": "Spring Festival", - "2038-03-25": "Spring Festival (Observed)", - "2038-03-26": "Spring Festival (Observed)", + "2038-03-25": "Spring Festival (observed)", + "2038-03-26": "Spring Festival (observed)", "2038-05-09": "Victory over Fascism Day", - "2038-05-10": "Victory over Fascism Day (Observed)", + "2038-05-10": "Victory over Fascism Day (observed)", "2038-05-28": "Independence Day", "2038-06-15": "National Liberation Day", "2038-06-26": "Armed Forces Day", - "2038-06-28": "Armed Forces Day (Observed)", + "2038-06-28": "Armed Forces Day (observed)", "2038-09-27": "Memorial Day", "2038-10-18": "Independence Restoration Day", "2038-10-29": "Eid al-Fitr (estimated)", "2038-10-30": "Eid al-Fitr (estimated)", - "2038-11-01": "Eid al-Fitr (estimated) (Observed)", + "2038-11-01": "Eid al-Fitr (estimated) (observed)", "2038-11-08": "Victory Day", "2038-11-09": "National Flag Day", "2038-11-12": "Constitution Day", @@ -1138,8 +1138,8 @@ "2038-12-31": "International Azerbaijanis Solidarity Day", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "New Year's Day (observed)", "2039-01-05": "Eid al-Adha (estimated)", "2039-01-06": "Eid al-Adha (estimated)", "2039-01-20": "Martyrs' Day", @@ -1149,13 +1149,13 @@ "2039-03-22": "Spring Festival", "2039-03-23": "Spring Festival", "2039-03-24": "Spring Festival", - "2039-03-25": "Spring Festival (Observed)", + "2039-03-25": "Spring Festival (observed)", "2039-05-09": "Victory over Fascism Day", "2039-05-28": "Independence Day", - "2039-05-30": "Independence Day (Observed)", + "2039-05-30": "Independence Day (observed)", "2039-06-15": "National Liberation Day", "2039-06-26": "Armed Forces Day", - "2039-06-27": "Armed Forces Day (Observed)", + "2039-06-27": "Armed Forces Day (observed)", "2039-09-27": "Memorial Day", "2039-10-18": "Independence Restoration Day", "2039-10-19": "Eid al-Fitr (estimated)", @@ -1169,8 +1169,8 @@ "2039-12-31": "International Azerbaijanis Solidarity Day", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", - "2040-01-03": "International Azerbaijanis Solidarity Day (Observed)", - "2040-01-04": "New Year's Day (Observed)", + "2040-01-03": "International Azerbaijanis Solidarity Day (observed)", + "2040-01-04": "New Year's Day (observed)", "2040-01-20": "Martyrs' Day", "2040-03-08": "Women's Day", "2040-03-20": "Spring Festival", @@ -1178,7 +1178,7 @@ "2040-03-22": "Spring Festival", "2040-03-23": "Spring Festival", "2040-03-24": "Spring Festival", - "2040-03-26": "Spring Festival (Observed)", + "2040-03-26": "Spring Festival (observed)", "2040-05-09": "Victory over Fascism Day", "2040-05-28": "Independence Day", "2040-06-15": "National Liberation Day", @@ -1186,7 +1186,7 @@ "2040-09-27": "Memorial Day", "2040-10-07": "Eid al-Fitr (estimated)", "2040-10-08": "Eid al-Fitr (estimated)", - "2040-10-09": "Eid al-Fitr (estimated) (Observed)", + "2040-10-09": "Eid al-Fitr (estimated) (observed)", "2040-10-18": "Independence Restoration Day", "2040-11-08": "Victory Day", "2040-11-09": "National Flag Day", @@ -1194,7 +1194,7 @@ "2040-11-17": "National Revival Day", "2040-12-14": "Eid al-Adha (estimated)", "2040-12-15": "Eid al-Adha (estimated)", - "2040-12-17": "Eid al-Adha (estimated) (Observed)", + "2040-12-17": "Eid al-Adha (estimated) (observed)", "2040-12-31": "International Azerbaijanis Solidarity Day", "2041-01-01": "New Year's Day", "2041-01-02": "New Year's Day", @@ -1205,19 +1205,19 @@ "2041-03-22": "Spring Festival", "2041-03-23": "Spring Festival", "2041-03-24": "Spring Festival", - "2041-03-25": "Spring Festival (Observed)", - "2041-03-26": "Spring Festival (Observed)", + "2041-03-25": "Spring Festival (observed)", + "2041-03-26": "Spring Festival (observed)", "2041-05-09": "Victory over Fascism Day", "2041-05-28": "Independence Day", "2041-06-15": "National Liberation Day", - "2041-06-17": "National Liberation Day (Observed)", + "2041-06-17": "National Liberation Day (observed)", "2041-06-26": "Armed Forces Day", "2041-09-26": "Eid al-Fitr (estimated)", "2041-09-27": "Eid al-Fitr (estimated); Memorial Day", "2041-10-18": "Independence Restoration Day", "2041-11-08": "Victory Day", "2041-11-09": "National Flag Day", - "2041-11-11": "National Flag Day (Observed)", + "2041-11-11": "National Flag Day (observed)", "2041-11-12": "Constitution Day", "2041-11-17": "National Revival Day", "2041-12-04": "Eid al-Adha (estimated)", @@ -1227,18 +1227,18 @@ "2042-01-02": "New Year's Day", "2042-01-20": "Martyrs' Day", "2042-03-08": "Women's Day", - "2042-03-10": "Women's Day (Observed)", + "2042-03-10": "Women's Day (observed)", "2042-03-20": "Spring Festival", "2042-03-21": "Spring Festival", "2042-03-22": "Spring Festival", "2042-03-23": "Spring Festival", "2042-03-24": "Spring Festival", - "2042-03-25": "Spring Festival (Observed)", - "2042-03-26": "Spring Festival (Observed)", + "2042-03-25": "Spring Festival (observed)", + "2042-03-26": "Spring Festival (observed)", "2042-05-09": "Victory over Fascism Day", "2042-05-28": "Independence Day", "2042-06-15": "National Liberation Day", - "2042-06-16": "National Liberation Day (Observed)", + "2042-06-16": "National Liberation Day (observed)", "2042-06-26": "Armed Forces Day", "2042-09-15": "Eid al-Fitr (estimated)", "2042-09-16": "Eid al-Fitr (estimated)", @@ -1246,46 +1246,46 @@ "2042-10-18": "Independence Restoration Day", "2042-11-08": "Victory Day", "2042-11-09": "National Flag Day", - "2042-11-10": "Victory Day (Observed)", - "2042-11-11": "National Flag Day (Observed)", + "2042-11-10": "Victory Day (observed)", + "2042-11-11": "National Flag Day (observed)", "2042-11-12": "Constitution Day", "2042-11-17": "National Revival Day", "2042-11-23": "Eid al-Adha (estimated)", "2042-11-24": "Eid al-Adha (estimated)", - "2042-11-25": "Eid al-Adha (estimated) (Observed)", + "2042-11-25": "Eid al-Adha (estimated) (observed)", "2042-12-31": "International Azerbaijanis Solidarity Day", "2043-01-01": "New Year's Day", "2043-01-02": "New Year's Day", "2043-01-20": "Martyrs' Day", "2043-03-08": "Women's Day", - "2043-03-09": "Women's Day (Observed)", + "2043-03-09": "Women's Day (observed)", "2043-03-20": "Spring Festival", "2043-03-21": "Spring Festival", "2043-03-22": "Spring Festival", "2043-03-23": "Spring Festival", "2043-03-24": "Spring Festival", - "2043-03-25": "Spring Festival (Observed)", - "2043-03-26": "Spring Festival (Observed)", + "2043-03-25": "Spring Festival (observed)", + "2043-03-26": "Spring Festival (observed)", "2043-05-09": "Victory over Fascism Day", - "2043-05-11": "Victory over Fascism Day (Observed)", + "2043-05-11": "Victory over Fascism Day (observed)", "2043-05-28": "Independence Day", "2043-06-15": "National Liberation Day", "2043-06-26": "Armed Forces Day", "2043-09-04": "Eid al-Fitr (estimated)", "2043-09-05": "Eid al-Fitr (estimated)", - "2043-09-07": "Eid al-Fitr (estimated) (Observed)", + "2043-09-07": "Eid al-Fitr (estimated) (observed)", "2043-09-27": "Memorial Day", "2043-10-18": "Independence Restoration Day", "2043-11-08": "Victory Day", "2043-11-09": "National Flag Day", - "2043-11-10": "Victory Day (Observed)", + "2043-11-10": "Victory Day (observed)", "2043-11-12": "Constitution Day; Eid al-Adha (estimated)", "2043-11-13": "Eid al-Adha (estimated)", "2043-11-17": "National Revival Day", "2043-12-31": "International Azerbaijanis Solidarity Day", "2044-01-01": "New Year's Day", "2044-01-02": "New Year's Day", - "2044-01-04": "New Year's Day (Observed)", + "2044-01-04": "New Year's Day (observed)", "2044-01-20": "Martyrs' Day", "2044-03-08": "Women's Day", "2044-03-20": "Spring Festival", @@ -1293,13 +1293,13 @@ "2044-03-22": "Spring Festival", "2044-03-23": "Spring Festival", "2044-03-24": "Spring Festival", - "2044-03-25": "Spring Festival (Observed)", + "2044-03-25": "Spring Festival (observed)", "2044-05-09": "Victory over Fascism Day", "2044-05-28": "Independence Day", - "2044-05-30": "Independence Day (Observed)", + "2044-05-30": "Independence Day (observed)", "2044-06-15": "National Liberation Day", "2044-06-26": "Armed Forces Day", - "2044-06-27": "Armed Forces Day (Observed)", + "2044-06-27": "Armed Forces Day (observed)", "2044-08-24": "Eid al-Fitr (estimated)", "2044-08-25": "Eid al-Fitr (estimated)", "2044-09-27": "Memorial Day", @@ -1313,8 +1313,8 @@ "2044-12-31": "International Azerbaijanis Solidarity Day", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day", - "2045-01-03": "International Azerbaijanis Solidarity Day (Observed)", - "2045-01-04": "New Year's Day (Observed)", + "2045-01-03": "International Azerbaijanis Solidarity Day (observed)", + "2045-01-04": "New Year's Day (observed)", "2045-01-20": "Martyrs' Day", "2045-03-08": "Women's Day", "2045-03-20": "Spring Festival", @@ -1324,7 +1324,7 @@ "2045-03-24": "Spring Festival", "2045-05-09": "Victory over Fascism Day", "2045-05-28": "Independence Day", - "2045-05-29": "Independence Day (Observed)", + "2045-05-29": "Independence Day (observed)", "2045-06-15": "National Liberation Day", "2045-06-26": "Armed Forces Day", "2045-08-14": "Eid al-Fitr (estimated)", @@ -1333,8 +1333,8 @@ "2045-10-18": "Independence Restoration Day", "2045-10-21": "Eid al-Adha (estimated)", "2045-10-22": "Eid al-Adha (estimated)", - "2045-10-23": "Eid al-Adha (estimated) (Observed)", - "2045-10-24": "Eid al-Adha (estimated) (Observed)", + "2045-10-23": "Eid al-Adha (estimated) (observed)", + "2045-10-24": "Eid al-Adha (estimated) (observed)", "2045-11-08": "Victory Day", "2045-11-09": "National Flag Day", "2045-11-12": "Constitution Day", @@ -1342,7 +1342,7 @@ "2045-12-31": "International Azerbaijanis Solidarity Day", "2046-01-01": "New Year's Day", "2046-01-02": "New Year's Day", - "2046-01-03": "International Azerbaijanis Solidarity Day (Observed)", + "2046-01-03": "International Azerbaijanis Solidarity Day (observed)", "2046-01-20": "Martyrs' Day", "2046-03-08": "Women's Day", "2046-03-20": "Spring Festival", @@ -1350,14 +1350,14 @@ "2046-03-22": "Spring Festival", "2046-03-23": "Spring Festival", "2046-03-24": "Spring Festival", - "2046-03-26": "Spring Festival (Observed)", + "2046-03-26": "Spring Festival (observed)", "2046-05-09": "Victory over Fascism Day", "2046-05-28": "Independence Day", "2046-06-15": "National Liberation Day", "2046-06-26": "Armed Forces Day", "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-04": "Eid al-Fitr (estimated)", - "2046-08-06": "Eid al-Fitr (estimated) (Observed)", + "2046-08-06": "Eid al-Fitr (estimated) (observed)", "2046-09-27": "Memorial Day", "2046-10-10": "Eid al-Adha (estimated)", "2046-10-11": "Eid al-Adha (estimated)", @@ -1376,12 +1376,12 @@ "2047-03-22": "Spring Festival", "2047-03-23": "Spring Festival", "2047-03-24": "Spring Festival", - "2047-03-25": "Spring Festival (Observed)", - "2047-03-26": "Spring Festival (Observed)", + "2047-03-25": "Spring Festival (observed)", + "2047-03-26": "Spring Festival (observed)", "2047-05-09": "Victory over Fascism Day", "2047-05-28": "Independence Day", "2047-06-15": "National Liberation Day", - "2047-06-17": "National Liberation Day (Observed)", + "2047-06-17": "National Liberation Day (observed)", "2047-06-26": "Armed Forces Day", "2047-07-24": "Eid al-Fitr (estimated)", "2047-07-25": "Eid al-Fitr (estimated)", @@ -1391,7 +1391,7 @@ "2047-10-18": "Independence Restoration Day", "2047-11-08": "Victory Day", "2047-11-09": "National Flag Day", - "2047-11-11": "National Flag Day (Observed)", + "2047-11-11": "National Flag Day (observed)", "2047-11-12": "Constitution Day", "2047-11-17": "National Revival Day", "2047-12-31": "International Azerbaijanis Solidarity Day", @@ -1399,37 +1399,37 @@ "2048-01-02": "New Year's Day", "2048-01-20": "Martyrs' Day", "2048-03-08": "Women's Day", - "2048-03-09": "Women's Day (Observed)", + "2048-03-09": "Women's Day (observed)", "2048-03-20": "Spring Festival", "2048-03-21": "Spring Festival", "2048-03-22": "Spring Festival", "2048-03-23": "Spring Festival", "2048-03-24": "Spring Festival", - "2048-03-25": "Spring Festival (Observed)", - "2048-03-26": "Spring Festival (Observed)", + "2048-03-25": "Spring Festival (observed)", + "2048-03-26": "Spring Festival (observed)", "2048-05-09": "Victory over Fascism Day", - "2048-05-11": "Victory over Fascism Day (Observed)", + "2048-05-11": "Victory over Fascism Day (observed)", "2048-05-28": "Independence Day", "2048-06-15": "National Liberation Day", "2048-06-26": "Armed Forces Day", "2048-07-12": "Eid al-Fitr (estimated)", "2048-07-13": "Eid al-Fitr (estimated)", - "2048-07-14": "Eid al-Fitr (estimated) (Observed)", + "2048-07-14": "Eid al-Fitr (estimated) (observed)", "2048-09-19": "Eid al-Adha (estimated)", "2048-09-20": "Eid al-Adha (estimated)", - "2048-09-21": "Eid al-Adha (estimated) (Observed)", - "2048-09-22": "Eid al-Adha (estimated) (Observed)", + "2048-09-21": "Eid al-Adha (estimated) (observed)", + "2048-09-22": "Eid al-Adha (estimated) (observed)", "2048-09-27": "Memorial Day", "2048-10-18": "Independence Restoration Day", "2048-11-08": "Victory Day", "2048-11-09": "National Flag Day", - "2048-11-10": "Victory Day (Observed)", + "2048-11-10": "Victory Day (observed)", "2048-11-12": "Constitution Day", "2048-11-17": "National Revival Day", "2048-12-31": "International Azerbaijanis Solidarity Day", "2049-01-01": "New Year's Day", "2049-01-02": "New Year's Day", - "2049-01-04": "New Year's Day (Observed)", + "2049-01-04": "New Year's Day (observed)", "2049-01-20": "Martyrs' Day", "2049-03-08": "Women's Day", "2049-03-20": "Spring Festival", @@ -1437,14 +1437,14 @@ "2049-03-22": "Spring Festival", "2049-03-23": "Spring Festival", "2049-03-24": "Spring Festival", - "2049-03-25": "Spring Festival (Observed)", - "2049-03-26": "Spring Festival (Observed)", + "2049-03-25": "Spring Festival (observed)", + "2049-03-26": "Spring Festival (observed)", "2049-05-09": "Victory over Fascism Day", - "2049-05-10": "Victory over Fascism Day (Observed)", + "2049-05-10": "Victory over Fascism Day (observed)", "2049-05-28": "Independence Day", "2049-06-15": "National Liberation Day", "2049-06-26": "Armed Forces Day", - "2049-06-28": "Armed Forces Day (Observed)", + "2049-06-28": "Armed Forces Day (observed)", "2049-07-01": "Eid al-Fitr (estimated)", "2049-07-02": "Eid al-Fitr (estimated)", "2049-09-08": "Eid al-Adha (estimated)", @@ -1458,8 +1458,8 @@ "2049-12-31": "International Azerbaijanis Solidarity Day", "2050-01-01": "New Year's Day", "2050-01-02": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "New Year's Day (observed)", "2050-01-20": "Martyrs' Day", "2050-03-08": "Women's Day", "2050-03-20": "Spring Festival", @@ -1467,18 +1467,18 @@ "2050-03-22": "Spring Festival", "2050-03-23": "Spring Festival", "2050-03-24": "Spring Festival", - "2050-03-25": "Spring Festival (Observed)", + "2050-03-25": "Spring Festival (observed)", "2050-05-09": "Victory over Fascism Day", "2050-05-28": "Independence Day", - "2050-05-30": "Independence Day (Observed)", + "2050-05-30": "Independence Day (observed)", "2050-06-15": "National Liberation Day", "2050-06-20": "Eid al-Fitr (estimated)", "2050-06-21": "Eid al-Fitr (estimated)", "2050-06-26": "Armed Forces Day", - "2050-06-27": "Armed Forces Day (Observed)", + "2050-06-27": "Armed Forces Day (observed)", "2050-08-28": "Eid al-Adha (estimated)", "2050-08-29": "Eid al-Adha (estimated)", - "2050-08-30": "Eid al-Adha (estimated) (Observed)", + "2050-08-30": "Eid al-Adha (estimated) (observed)", "2050-09-27": "Memorial Day", "2050-10-18": "Independence Restoration Day", "2050-11-08": "Victory Day", diff --git a/snapshots/countries/BA_BIH.json b/snapshots/countries/BA_BIH.json index 2d99ef6b3..f7cafcd68 100644 --- a/snapshots/countries/BA_BIH.json +++ b/snapshots/countries/BA_BIH.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-01-06": "Orthodox Christmas Eve", "1950-01-07": "Orthodox Christmas", "1950-03-01": "Independence Day", @@ -112,7 +112,7 @@ "1955-04-18": "Orthodox Easter Monday", "1955-05-01": "Labor Day", "1955-05-02": "Labor Day", - "1955-05-03": "Labor Day (Observed)", + "1955-05-03": "Labor Day (observed)", "1955-05-09": "Victory Day", "1955-05-23": "Eid al-Fitr (estimated)", "1955-05-24": "Eid al-Fitr (estimated)", @@ -123,7 +123,7 @@ "1955-12-25": "Catholic Christmas", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-01-06": "Orthodox Christmas Eve", "1956-01-07": "Orthodox Christmas", "1956-03-01": "Independence Day", @@ -212,7 +212,7 @@ "1960-04-18": "Catholic Easter Monday; Orthodox Easter Monday", "1960-05-01": "Labor Day", "1960-05-02": "Labor Day", - "1960-05-03": "Labor Day (Observed)", + "1960-05-03": "Labor Day (observed)", "1960-05-09": "Victory Day", "1960-06-04": "Eid al-Adha (estimated)", "1960-06-05": "Eid al-Adha (estimated)", @@ -221,7 +221,7 @@ "1960-12-25": "Catholic Christmas", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-01-06": "Orthodox Christmas Eve", "1961-01-07": "Orthodox Christmas", "1961-03-01": "Independence Day", @@ -335,14 +335,14 @@ "1966-04-11": "Catholic Easter Monday; Orthodox Easter Monday", "1966-05-01": "Labor Day", "1966-05-02": "Labor Day", - "1966-05-03": "Labor Day (Observed)", + "1966-05-03": "Labor Day (observed)", "1966-05-09": "Victory Day", "1966-11-25": "Statehood Day", "1966-12-24": "Catholic Christmas Eve", "1966-12-25": "Catholic Christmas", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-01-06": "Orthodox Christmas Eve", "1967-01-07": "Orthodox Christmas", "1967-01-12": "Eid al-Fitr (estimated)", @@ -556,7 +556,7 @@ "1977-04-11": "Catholic Easter Monday; Orthodox Easter Monday", "1977-05-01": "Labor Day", "1977-05-02": "Labor Day", - "1977-05-03": "Labor Day (Observed)", + "1977-05-03": "Labor Day (observed)", "1977-05-09": "Victory Day", "1977-09-14": "Eid al-Fitr (estimated)", "1977-09-15": "Eid al-Fitr (estimated)", @@ -567,7 +567,7 @@ "1977-12-25": "Catholic Christmas", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-01-06": "Orthodox Christmas Eve", "1978-01-07": "Orthodox Christmas", "1978-03-01": "Independence Day", @@ -677,7 +677,7 @@ "1983-04-04": "Catholic Easter Monday", "1983-05-01": "Labor Day", "1983-05-02": "Labor Day", - "1983-05-03": "Labor Day (Observed)", + "1983-05-03": "Labor Day (observed)", "1983-05-06": "Orthodox Good Friday", "1983-05-08": "Orthodox Easter", "1983-05-09": "Orthodox Easter Monday; Victory Day", @@ -690,7 +690,7 @@ "1983-12-25": "Catholic Christmas", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-01-06": "Orthodox Christmas Eve", "1984-01-07": "Orthodox Christmas", "1984-03-01": "Independence Day", @@ -779,7 +779,7 @@ "1988-04-11": "Orthodox Easter Monday", "1988-05-01": "Labor Day", "1988-05-02": "Labor Day", - "1988-05-03": "Labor Day (Observed)", + "1988-05-03": "Labor Day (observed)", "1988-05-09": "Victory Day", "1988-05-16": "Eid al-Fitr (estimated)", "1988-05-17": "Eid al-Fitr (estimated)", @@ -790,7 +790,7 @@ "1988-12-25": "Catholic Christmas", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-01-06": "Orthodox Christmas Eve", "1989-01-07": "Orthodox Christmas", "1989-03-01": "Independence Day", @@ -903,7 +903,7 @@ "1994-04-29": "Orthodox Good Friday", "1994-05-01": "Labor Day; Orthodox Easter", "1994-05-02": "Labor Day; Orthodox Easter Monday", - "1994-05-03": "Labor Day (Observed); Orthodox Easter (Observed)", + "1994-05-03": "Labor Day (observed); Orthodox Easter (observed)", "1994-05-09": "Victory Day", "1994-05-20": "Eid al-Adha (estimated)", "1994-05-21": "Eid al-Adha (estimated)", @@ -912,7 +912,7 @@ "1994-12-25": "Catholic Christmas", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-01-06": "Orthodox Christmas Eve", "1995-01-07": "Orthodox Christmas", "1995-03-01": "Independence Day", @@ -1128,7 +1128,7 @@ "2005-04-29": "Orthodox Good Friday", "2005-05-01": "Labor Day; Orthodox Easter", "2005-05-02": "Labor Day; Orthodox Easter Monday", - "2005-05-03": "Labor Day (Observed); Orthodox Easter (Observed)", + "2005-05-03": "Labor Day (observed); Orthodox Easter (observed)", "2005-05-09": "Victory Day", "2005-11-04": "Eid al-Fitr", "2005-11-05": "Eid al-Fitr", @@ -1137,7 +1137,7 @@ "2005-12-25": "Catholic Christmas", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-06": "Orthodox Christmas Eve", "2006-01-07": "Orthodox Christmas", "2006-01-10": "Eid al-Adha", @@ -1246,7 +1246,7 @@ "2011-04-25": "Catholic Easter Monday; Orthodox Easter Monday", "2011-05-01": "Labor Day", "2011-05-02": "Labor Day", - "2011-05-03": "Labor Day (Observed)", + "2011-05-03": "Labor Day (observed)", "2011-05-09": "Victory Day", "2011-08-31": "Eid al-Fitr", "2011-09-01": "Eid al-Fitr", @@ -1257,7 +1257,7 @@ "2011-12-25": "Catholic Christmas", "2012-01-01": "New Year's Day", "2012-01-02": "New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-01-06": "Orthodox Christmas Eve", "2012-01-07": "Orthodox Christmas", "2012-03-01": "Independence Day", @@ -1348,7 +1348,7 @@ "2016-04-29": "Orthodox Good Friday", "2016-05-01": "Labor Day; Orthodox Easter", "2016-05-02": "Labor Day; Orthodox Easter Monday", - "2016-05-03": "Labor Day (Observed); Orthodox Easter (Observed)", + "2016-05-03": "Labor Day (observed); Orthodox Easter (observed)", "2016-05-09": "Victory Day", "2016-07-07": "Eid al-Fitr", "2016-07-08": "Eid al-Fitr", @@ -1359,7 +1359,7 @@ "2016-12-25": "Catholic Christmas", "2017-01-01": "New Year's Day", "2017-01-02": "New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-01-06": "Orthodox Christmas Eve", "2017-01-07": "Orthodox Christmas", "2017-03-01": "Independence Day", @@ -1472,7 +1472,7 @@ "2022-04-25": "Orthodox Easter Monday", "2022-05-01": "Labor Day", "2022-05-02": "Eid al-Fitr; Labor Day", - "2022-05-03": "Eid al-Fitr; Labor Day (Observed)", + "2022-05-03": "Eid al-Fitr; Labor Day (observed)", "2022-05-09": "Victory Day", "2022-07-09": "Eid al-Adha", "2022-07-10": "Eid al-Adha", @@ -1481,7 +1481,7 @@ "2022-12-25": "Catholic Christmas", "2023-01-01": "New Year's Day", "2023-01-02": "New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-01-06": "Orthodox Christmas Eve", "2023-01-07": "Orthodox Christmas", "2023-03-01": "Independence Day", @@ -1695,7 +1695,7 @@ "2033-04-25": "Orthodox Easter Monday", "2033-05-01": "Labor Day", "2033-05-02": "Labor Day", - "2033-05-03": "Labor Day (Observed)", + "2033-05-03": "Labor Day (observed)", "2033-05-09": "Victory Day", "2033-11-25": "Statehood Day", "2033-12-23": "Eid al-Fitr (estimated)", @@ -1703,7 +1703,7 @@ "2033-12-25": "Catholic Christmas", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-01-06": "Orthodox Christmas Eve", "2034-01-07": "Orthodox Christmas", "2034-03-01": "Eid al-Adha (estimated); Independence Day", @@ -1811,7 +1811,7 @@ "2039-04-18": "Orthodox Easter Monday", "2039-05-01": "Labor Day", "2039-05-02": "Labor Day", - "2039-05-03": "Labor Day (Observed)", + "2039-05-03": "Labor Day (observed)", "2039-05-09": "Victory Day", "2039-10-19": "Eid al-Fitr (estimated)", "2039-10-20": "Eid al-Fitr (estimated)", @@ -1822,7 +1822,7 @@ "2039-12-27": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-01-06": "Orthodox Christmas Eve", "2040-01-07": "Orthodox Christmas", "2040-03-01": "Independence Day", @@ -1914,7 +1914,7 @@ "2044-04-25": "Orthodox Easter Monday", "2044-05-01": "Labor Day", "2044-05-02": "Labor Day", - "2044-05-03": "Labor Day (Observed)", + "2044-05-03": "Labor Day (observed)", "2044-05-09": "Victory Day", "2044-08-24": "Eid al-Fitr (estimated)", "2044-08-25": "Eid al-Fitr (estimated)", @@ -1925,7 +1925,7 @@ "2044-12-25": "Catholic Christmas", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-01-06": "Orthodox Christmas Eve", "2045-01-07": "Orthodox Christmas", "2045-03-01": "Independence Day", @@ -2036,7 +2036,7 @@ "2050-04-18": "Orthodox Easter Monday", "2050-05-01": "Labor Day", "2050-05-02": "Labor Day", - "2050-05-03": "Labor Day (Observed)", + "2050-05-03": "Labor Day (observed)", "2050-05-09": "Victory Day", "2050-06-20": "Eid al-Fitr (estimated)", "2050-06-21": "Eid al-Fitr (estimated)", diff --git a/snapshots/countries/BA_BRC.json b/snapshots/countries/BA_BRC.json index 3dc5e3d26..eff791b26 100644 --- a/snapshots/countries/BA_BRC.json +++ b/snapshots/countries/BA_BRC.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-01-07": "Orthodox Christmas", "1950-03-08": "Day of establishment of Br\u010dko District", "1950-04-07": "Orthodox Good Friday", @@ -14,7 +14,7 @@ "1951-01-01": "New Year's Day", "1951-01-02": "New Year's Day", "1951-01-07": "Orthodox Christmas", - "1951-01-08": "Orthodox Christmas (Observed)", + "1951-01-08": "Orthodox Christmas (observed)", "1951-03-08": "Day of establishment of Br\u010dko District", "1951-03-26": "Catholic Easter Monday", "1951-04-27": "Orthodox Good Friday", @@ -38,7 +38,7 @@ "1953-01-02": "New Year's Day", "1953-01-07": "Orthodox Christmas", "1953-03-08": "Day of establishment of Br\u010dko District", - "1953-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1953-03-09": "Day of establishment of Br\u010dko District (observed)", "1953-04-03": "Orthodox Good Friday", "1953-04-06": "Catholic Easter Monday", "1953-05-01": "Labor Day", @@ -54,27 +54,27 @@ "1954-04-23": "Orthodox Good Friday", "1954-05-01": "Labor Day", "1954-05-02": "Labor Day", - "1954-05-03": "Labor Day (Observed)", + "1954-05-03": "Labor Day (observed)", "1954-06-02": "Eid al-Fitr (estimated)", "1954-08-09": "Eid al-Adha (estimated)", "1954-12-25": "Catholic Christmas", "1955-01-01": "New Year's Day", "1955-01-02": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-07": "Orthodox Christmas", "1955-03-08": "Day of establishment of Br\u010dko District", "1955-04-11": "Catholic Easter Monday", "1955-04-15": "Orthodox Good Friday", "1955-05-01": "Labor Day", "1955-05-02": "Labor Day", - "1955-05-03": "Labor Day (Observed)", + "1955-05-03": "Labor Day (observed)", "1955-05-23": "Eid al-Fitr (estimated)", "1955-07-30": "Eid al-Adha (estimated)", "1955-12-25": "Catholic Christmas", - "1955-12-26": "Catholic Christmas (Observed)", + "1955-12-26": "Catholic Christmas (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-01-07": "Orthodox Christmas", "1956-03-08": "Day of establishment of Br\u010dko District", "1956-04-02": "Catholic Easter Monday", @@ -109,7 +109,7 @@ "1959-01-02": "New Year's Day", "1959-01-07": "Orthodox Christmas", "1959-03-08": "Day of establishment of Br\u010dko District", - "1959-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1959-03-09": "Day of establishment of Br\u010dko District (observed)", "1959-03-30": "Catholic Easter Monday", "1959-04-10": "Eid al-Fitr (estimated)", "1959-05-01": "Labor Day; Orthodox Good Friday", @@ -125,13 +125,13 @@ "1960-04-18": "Catholic Easter Monday", "1960-05-01": "Labor Day", "1960-05-02": "Labor Day", - "1960-05-03": "Labor Day (Observed)", + "1960-05-03": "Labor Day (observed)", "1960-06-04": "Eid al-Adha (estimated)", "1960-12-25": "Catholic Christmas", - "1960-12-26": "Catholic Christmas (Observed)", + "1960-12-26": "Catholic Christmas (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-01-07": "Orthodox Christmas", "1961-03-08": "Day of establishment of Br\u010dko District", "1961-03-18": "Eid al-Fitr (estimated)", @@ -144,7 +144,7 @@ "1962-01-01": "New Year's Day", "1962-01-02": "New Year's Day", "1962-01-07": "Orthodox Christmas", - "1962-01-08": "Orthodox Christmas (Observed)", + "1962-01-08": "Orthodox Christmas (observed)", "1962-03-07": "Eid al-Fitr (estimated)", "1962-03-08": "Day of establishment of Br\u010dko District", "1962-04-23": "Catholic Easter Monday", @@ -169,7 +169,7 @@ "1964-01-07": "Orthodox Christmas", "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-08": "Day of establishment of Br\u010dko District", - "1964-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1964-03-09": "Day of establishment of Br\u010dko District (observed)", "1964-03-30": "Catholic Easter Monday", "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "Labor Day; Orthodox Good Friday", @@ -185,11 +185,11 @@ "1965-04-23": "Orthodox Good Friday", "1965-05-01": "Labor Day", "1965-05-02": "Labor Day", - "1965-05-03": "Labor Day (Observed)", + "1965-05-03": "Labor Day (observed)", "1965-12-25": "Catholic Christmas", "1966-01-01": "New Year's Day", "1966-01-02": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-07": "Orthodox Christmas", "1966-01-22": "Eid al-Fitr (estimated)", "1966-03-08": "Day of establishment of Br\u010dko District", @@ -198,12 +198,12 @@ "1966-04-11": "Catholic Easter Monday", "1966-05-01": "Labor Day", "1966-05-02": "Labor Day", - "1966-05-03": "Labor Day (Observed)", + "1966-05-03": "Labor Day (observed)", "1966-12-25": "Catholic Christmas", - "1966-12-26": "Catholic Christmas (Observed)", + "1966-12-26": "Catholic Christmas (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-01-07": "Orthodox Christmas", "1967-01-12": "Eid al-Fitr (estimated)", "1967-03-08": "Day of establishment of Br\u010dko District", @@ -216,7 +216,7 @@ "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-01-02": "New Year's Day", "1968-01-07": "Orthodox Christmas", - "1968-01-08": "Orthodox Christmas (Observed)", + "1968-01-08": "Orthodox Christmas (observed)", "1968-03-08": "Day of establishment of Br\u010dko District", "1968-03-09": "Eid al-Adha (estimated)", "1968-04-15": "Catholic Easter Monday", @@ -241,7 +241,7 @@ "1970-01-07": "Orthodox Christmas", "1970-02-16": "Eid al-Adha (estimated)", "1970-03-08": "Day of establishment of Br\u010dko District", - "1970-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1970-03-09": "Day of establishment of Br\u010dko District (observed)", "1970-03-30": "Catholic Easter Monday", "1970-04-24": "Orthodox Good Friday", "1970-05-01": "Labor Day", @@ -257,12 +257,12 @@ "1971-04-16": "Orthodox Good Friday", "1971-05-01": "Labor Day", "1971-05-02": "Labor Day", - "1971-05-03": "Labor Day (Observed)", + "1971-05-03": "Labor Day (observed)", "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-25": "Catholic Christmas", "1972-01-01": "New Year's Day", "1972-01-02": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-07": "Orthodox Christmas", "1972-01-26": "Eid al-Adha (estimated)", "1972-03-08": "Day of establishment of Br\u010dko District", @@ -275,7 +275,7 @@ "1973-01-01": "New Year's Day", "1973-01-02": "New Year's Day", "1973-01-07": "Orthodox Christmas", - "1973-01-08": "Orthodox Christmas (Observed)", + "1973-01-08": "Orthodox Christmas (observed)", "1973-01-14": "Eid al-Adha (estimated)", "1973-03-08": "Day of establishment of Br\u010dko District", "1973-04-23": "Catholic Easter Monday", @@ -314,27 +314,27 @@ "1976-04-23": "Orthodox Good Friday", "1976-05-01": "Labor Day", "1976-05-02": "Labor Day", - "1976-05-03": "Labor Day (Observed)", + "1976-05-03": "Labor Day (observed)", "1976-09-24": "Eid al-Fitr (estimated)", "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Catholic Christmas", "1977-01-01": "New Year's Day", "1977-01-02": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-07": "Orthodox Christmas", "1977-03-08": "Day of establishment of Br\u010dko District", "1977-04-08": "Orthodox Good Friday", "1977-04-11": "Catholic Easter Monday", "1977-05-01": "Labor Day", "1977-05-02": "Labor Day", - "1977-05-03": "Labor Day (Observed)", + "1977-05-03": "Labor Day (observed)", "1977-09-14": "Eid al-Fitr (estimated)", "1977-11-21": "Eid al-Adha (estimated)", "1977-12-25": "Catholic Christmas", - "1977-12-26": "Catholic Christmas (Observed)", + "1977-12-26": "Catholic Christmas (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-01-07": "Orthodox Christmas", "1978-03-08": "Day of establishment of Br\u010dko District", "1978-03-27": "Catholic Easter Monday", @@ -347,7 +347,7 @@ "1979-01-01": "New Year's Day", "1979-01-02": "New Year's Day", "1979-01-07": "Orthodox Christmas", - "1979-01-08": "Orthodox Christmas (Observed)", + "1979-01-08": "Orthodox Christmas (observed)", "1979-03-08": "Day of establishment of Br\u010dko District", "1979-04-16": "Catholic Easter Monday", "1979-04-20": "Orthodox Good Friday", @@ -371,7 +371,7 @@ "1981-01-02": "New Year's Day", "1981-01-07": "Orthodox Christmas", "1981-03-08": "Day of establishment of Br\u010dko District", - "1981-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1981-03-09": "Day of establishment of Br\u010dko District (observed)", "1981-04-20": "Catholic Easter Monday", "1981-04-24": "Orthodox Good Friday", "1981-05-01": "Labor Day", @@ -387,27 +387,27 @@ "1982-04-16": "Orthodox Good Friday", "1982-05-01": "Labor Day", "1982-05-02": "Labor Day", - "1982-05-03": "Labor Day (Observed)", + "1982-05-03": "Labor Day (observed)", "1982-07-21": "Eid al-Fitr (estimated)", "1982-09-27": "Eid al-Adha (estimated)", "1982-12-25": "Catholic Christmas", "1983-01-01": "New Year's Day", "1983-01-02": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-07": "Orthodox Christmas", "1983-03-08": "Day of establishment of Br\u010dko District", "1983-04-04": "Catholic Easter Monday", "1983-05-01": "Labor Day", "1983-05-02": "Labor Day", - "1983-05-03": "Labor Day (Observed)", + "1983-05-03": "Labor Day (observed)", "1983-05-06": "Orthodox Good Friday", "1983-07-11": "Eid al-Fitr (estimated)", "1983-09-17": "Eid al-Adha (estimated)", "1983-12-25": "Catholic Christmas", - "1983-12-26": "Catholic Christmas (Observed)", + "1983-12-26": "Catholic Christmas (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-01-07": "Orthodox Christmas", "1984-03-08": "Day of establishment of Br\u010dko District", "1984-04-20": "Orthodox Good Friday", @@ -442,7 +442,7 @@ "1987-01-02": "New Year's Day", "1987-01-07": "Orthodox Christmas", "1987-03-08": "Day of establishment of Br\u010dko District", - "1987-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1987-03-09": "Day of establishment of Br\u010dko District (observed)", "1987-04-17": "Orthodox Good Friday", "1987-04-20": "Catholic Easter Monday", "1987-05-01": "Labor Day", @@ -458,14 +458,14 @@ "1988-04-08": "Orthodox Good Friday", "1988-05-01": "Labor Day", "1988-05-02": "Labor Day", - "1988-05-03": "Labor Day (Observed)", + "1988-05-03": "Labor Day (observed)", "1988-05-16": "Eid al-Fitr (estimated)", "1988-07-23": "Eid al-Adha (estimated)", "1988-12-25": "Catholic Christmas", - "1988-12-26": "Catholic Christmas (Observed)", + "1988-12-26": "Catholic Christmas (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-01-07": "Orthodox Christmas", "1989-03-08": "Day of establishment of Br\u010dko District", "1989-03-27": "Catholic Easter Monday", @@ -478,7 +478,7 @@ "1990-01-01": "New Year's Day", "1990-01-02": "New Year's Day", "1990-01-07": "Orthodox Christmas", - "1990-01-08": "Orthodox Christmas (Observed)", + "1990-01-08": "Orthodox Christmas (observed)", "1990-03-08": "Day of establishment of Br\u010dko District", "1990-04-13": "Orthodox Good Friday", "1990-04-16": "Catholic Easter Monday", @@ -502,7 +502,7 @@ "1992-01-02": "New Year's Day", "1992-01-07": "Orthodox Christmas", "1992-03-08": "Day of establishment of Br\u010dko District", - "1992-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1992-03-09": "Day of establishment of Br\u010dko District (observed)", "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-20": "Catholic Easter Monday", "1992-04-24": "Orthodox Good Friday", @@ -519,12 +519,12 @@ "1993-04-16": "Orthodox Good Friday", "1993-05-01": "Labor Day", "1993-05-02": "Labor Day", - "1993-05-03": "Labor Day (Observed)", + "1993-05-03": "Labor Day (observed)", "1993-05-31": "Eid al-Adha (estimated)", "1993-12-25": "Catholic Christmas", "1994-01-01": "New Year's Day", "1994-01-02": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-07": "Orthodox Christmas", "1994-03-08": "Day of establishment of Br\u010dko District", "1994-03-13": "Eid al-Fitr (estimated)", @@ -532,13 +532,13 @@ "1994-04-29": "Orthodox Good Friday", "1994-05-01": "Labor Day", "1994-05-02": "Labor Day", - "1994-05-03": "Labor Day (Observed)", + "1994-05-03": "Labor Day (observed)", "1994-05-20": "Eid al-Adha (estimated)", "1994-12-25": "Catholic Christmas", - "1994-12-26": "Catholic Christmas (Observed)", + "1994-12-26": "Catholic Christmas (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-01-07": "Orthodox Christmas", "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-08": "Day of establishment of Br\u010dko District", @@ -551,7 +551,7 @@ "1996-01-01": "New Year's Day", "1996-01-02": "New Year's Day", "1996-01-07": "Orthodox Christmas", - "1996-01-08": "Orthodox Christmas (Observed)", + "1996-01-08": "Orthodox Christmas (observed)", "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-08": "Day of establishment of Br\u010dko District", "1996-04-08": "Catholic Easter Monday", @@ -576,7 +576,7 @@ "1998-01-07": "Orthodox Christmas", "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-08": "Day of establishment of Br\u010dko District", - "1998-03-09": "Day of establishment of Br\u010dko District (Observed)", + "1998-03-09": "Day of establishment of Br\u010dko District (observed)", "1998-04-07": "Eid al-Adha (estimated)", "1998-04-13": "Catholic Easter Monday", "1998-04-17": "Orthodox Good Friday", @@ -593,11 +593,11 @@ "1999-04-09": "Orthodox Good Friday", "1999-05-01": "Labor Day", "1999-05-02": "Labor Day", - "1999-05-03": "Labor Day (Observed)", + "1999-05-03": "Labor Day (observed)", "1999-12-25": "Catholic Christmas", "2000-01-01": "New Year's Day", "2000-01-02": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-07": "Orthodox Christmas", "2000-01-08": "Eid al-Fitr (estimated)", "2000-03-08": "Day of establishment of Br\u010dko District", @@ -611,7 +611,7 @@ "2001-01-01": "New Year's Day", "2001-01-02": "New Year's Day", "2001-01-07": "Orthodox Christmas", - "2001-01-08": "Orthodox Christmas (Observed)", + "2001-01-08": "Orthodox Christmas (observed)", "2001-03-06": "Eid al-Adha", "2001-03-08": "Day of establishment of Br\u010dko District", "2001-04-13": "Orthodox Good Friday", @@ -651,12 +651,12 @@ "2004-04-12": "Catholic Easter Monday", "2004-05-01": "Labor Day", "2004-05-02": "Labor Day", - "2004-05-03": "Labor Day (Observed)", + "2004-05-03": "Labor Day (observed)", "2004-11-14": "Eid al-Fitr", "2004-12-25": "Catholic Christmas", "2005-01-01": "New Year's Day", "2005-01-02": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-07": "Orthodox Christmas", "2005-01-21": "Eid al-Adha", "2005-03-08": "Day of establishment of Br\u010dko District", @@ -664,13 +664,13 @@ "2005-04-29": "Orthodox Good Friday", "2005-05-01": "Labor Day", "2005-05-02": "Labor Day", - "2005-05-03": "Labor Day (Observed)", + "2005-05-03": "Labor Day (observed)", "2005-11-04": "Eid al-Fitr", "2005-12-25": "Catholic Christmas", - "2005-12-26": "Catholic Christmas (Observed)", + "2005-12-26": "Catholic Christmas (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-07": "Orthodox Christmas", "2006-01-10": "Eid al-Adha", "2006-03-08": "Day of establishment of Br\u010dko District", @@ -684,7 +684,7 @@ "2007-01-01": "New Year's Day", "2007-01-02": "New Year's Day", "2007-01-07": "Orthodox Christmas", - "2007-01-08": "Orthodox Christmas (Observed)", + "2007-01-08": "Orthodox Christmas (observed)", "2007-03-08": "Day of establishment of Br\u010dko District", "2007-04-06": "Orthodox Good Friday", "2007-04-09": "Catholic Easter Monday", @@ -708,7 +708,7 @@ "2009-01-02": "New Year's Day", "2009-01-07": "Orthodox Christmas", "2009-03-08": "Day of establishment of Br\u010dko District", - "2009-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2009-03-09": "Day of establishment of Br\u010dko District (observed)", "2009-04-13": "Catholic Easter Monday", "2009-04-17": "Orthodox Good Friday", "2009-05-01": "Labor Day", @@ -724,27 +724,27 @@ "2010-04-05": "Catholic Easter Monday", "2010-05-01": "Labor Day", "2010-05-02": "Labor Day", - "2010-05-03": "Labor Day (Observed)", + "2010-05-03": "Labor Day (observed)", "2010-09-10": "Eid al-Fitr", "2010-11-17": "Eid al-Adha", "2010-12-25": "Catholic Christmas", "2011-01-01": "New Year's Day", "2011-01-02": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-07": "Orthodox Christmas", "2011-03-08": "Day of establishment of Br\u010dko District", "2011-04-22": "Orthodox Good Friday", "2011-04-25": "Catholic Easter Monday", "2011-05-01": "Labor Day", "2011-05-02": "Labor Day", - "2011-05-03": "Labor Day (Observed)", + "2011-05-03": "Labor Day (observed)", "2011-08-31": "Eid al-Fitr", "2011-11-07": "Eid al-Adha", "2011-12-25": "Catholic Christmas", - "2011-12-26": "Catholic Christmas (Observed)", + "2011-12-26": "Catholic Christmas (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-01-07": "Orthodox Christmas", "2012-03-08": "Day of establishment of Br\u010dko District", "2012-04-09": "Catholic Easter Monday", @@ -780,7 +780,7 @@ "2015-01-02": "New Year's Day", "2015-01-07": "Orthodox Christmas", "2015-03-08": "Day of establishment of Br\u010dko District", - "2015-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2015-03-09": "Day of establishment of Br\u010dko District (observed)", "2015-04-06": "Catholic Easter Monday", "2015-04-10": "Orthodox Good Friday", "2015-05-01": "Labor Day", @@ -796,14 +796,14 @@ "2016-04-29": "Orthodox Good Friday", "2016-05-01": "Labor Day", "2016-05-02": "Labor Day", - "2016-05-03": "Labor Day (Observed)", + "2016-05-03": "Labor Day (observed)", "2016-07-07": "Eid al-Fitr", "2016-09-13": "Eid al-Adha", "2016-12-25": "Catholic Christmas", - "2016-12-26": "Catholic Christmas (Observed)", + "2016-12-26": "Catholic Christmas (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-01-07": "Orthodox Christmas", "2017-03-08": "Day of establishment of Br\u010dko District", "2017-04-14": "Orthodox Good Friday", @@ -816,7 +816,7 @@ "2018-01-01": "New Year's Day", "2018-01-02": "New Year's Day", "2018-01-07": "Orthodox Christmas", - "2018-01-08": "Orthodox Christmas (Observed)", + "2018-01-08": "Orthodox Christmas (observed)", "2018-03-08": "Day of establishment of Br\u010dko District", "2018-04-02": "Catholic Easter Monday", "2018-04-06": "Orthodox Good Friday", @@ -840,7 +840,7 @@ "2020-01-02": "New Year's Day", "2020-01-07": "Orthodox Christmas", "2020-03-08": "Day of establishment of Br\u010dko District", - "2020-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2020-03-09": "Day of establishment of Br\u010dko District (observed)", "2020-04-13": "Catholic Easter Monday", "2020-04-17": "Orthodox Good Friday", "2020-05-01": "Labor Day", @@ -856,26 +856,26 @@ "2021-04-30": "Orthodox Good Friday", "2021-05-01": "Labor Day", "2021-05-02": "Labor Day", - "2021-05-03": "Labor Day (Observed)", + "2021-05-03": "Labor Day (observed)", "2021-05-13": "Eid al-Fitr", "2021-07-20": "Eid al-Adha", "2021-12-25": "Catholic Christmas", "2022-01-01": "New Year's Day", "2022-01-02": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-07": "Orthodox Christmas", "2022-03-08": "Day of establishment of Br\u010dko District", "2022-04-18": "Catholic Easter Monday", "2022-04-22": "Orthodox Good Friday", "2022-05-01": "Labor Day", "2022-05-02": "Eid al-Fitr; Labor Day", - "2022-05-03": "Labor Day (Observed)", + "2022-05-03": "Labor Day (observed)", "2022-07-09": "Eid al-Adha", "2022-12-25": "Catholic Christmas", - "2022-12-26": "Catholic Christmas (Observed)", + "2022-12-26": "Catholic Christmas (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-01-07": "Orthodox Christmas", "2023-03-08": "Day of establishment of Br\u010dko District", "2023-04-10": "Catholic Easter Monday", @@ -888,7 +888,7 @@ "2024-01-01": "New Year's Day", "2024-01-02": "New Year's Day", "2024-01-07": "Orthodox Christmas", - "2024-01-08": "Orthodox Christmas (Observed)", + "2024-01-08": "Orthodox Christmas (observed)", "2024-03-08": "Day of establishment of Br\u010dko District", "2024-04-01": "Catholic Easter Monday", "2024-04-10": "Eid al-Fitr (estimated)", @@ -912,7 +912,7 @@ "2026-01-02": "New Year's Day", "2026-01-07": "Orthodox Christmas", "2026-03-08": "Day of establishment of Br\u010dko District", - "2026-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2026-03-09": "Day of establishment of Br\u010dko District (observed)", "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-06": "Catholic Easter Monday", "2026-04-10": "Orthodox Good Friday", @@ -929,12 +929,12 @@ "2027-04-30": "Orthodox Good Friday", "2027-05-01": "Labor Day", "2027-05-02": "Labor Day", - "2027-05-03": "Labor Day (Observed)", + "2027-05-03": "Labor Day (observed)", "2027-05-16": "Eid al-Adha (estimated)", "2027-12-25": "Catholic Christmas", "2028-01-01": "New Year's Day", "2028-01-02": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-07": "Orthodox Christmas", "2028-02-26": "Eid al-Fitr (estimated)", "2028-03-08": "Day of establishment of Br\u010dko District", @@ -947,7 +947,7 @@ "2029-01-01": "New Year's Day", "2029-01-02": "New Year's Day", "2029-01-07": "Orthodox Christmas", - "2029-01-08": "Orthodox Christmas (Observed)", + "2029-01-08": "Orthodox Christmas (observed)", "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-08": "Day of establishment of Br\u010dko District", "2029-04-02": "Catholic Easter Monday", @@ -988,11 +988,11 @@ "2032-04-30": "Orthodox Good Friday", "2032-05-01": "Labor Day", "2032-05-02": "Labor Day", - "2032-05-03": "Labor Day (Observed)", + "2032-05-03": "Labor Day (observed)", "2032-12-25": "Catholic Christmas", "2033-01-01": "New Year's Day", "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-07": "Orthodox Christmas", "2033-03-08": "Day of establishment of Br\u010dko District", "2033-03-11": "Eid al-Adha (estimated)", @@ -1000,13 +1000,13 @@ "2033-04-22": "Orthodox Good Friday", "2033-05-01": "Labor Day", "2033-05-02": "Labor Day", - "2033-05-03": "Labor Day (Observed)", + "2033-05-03": "Labor Day (observed)", "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Catholic Christmas", - "2033-12-26": "Catholic Christmas (Observed)", + "2033-12-26": "Catholic Christmas (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-01-07": "Orthodox Christmas", "2034-03-01": "Eid al-Adha (estimated)", "2034-03-08": "Day of establishment of Br\u010dko District", @@ -1019,7 +1019,7 @@ "2035-01-01": "New Year's Day", "2035-01-02": "New Year's Day", "2035-01-07": "Orthodox Christmas", - "2035-01-08": "Orthodox Christmas (Observed)", + "2035-01-08": "Orthodox Christmas (observed)", "2035-02-18": "Eid al-Adha (estimated)", "2035-03-08": "Day of establishment of Br\u010dko District", "2035-03-26": "Catholic Easter Monday", @@ -1044,7 +1044,7 @@ "2037-01-07": "Orthodox Christmas", "2037-01-26": "Eid al-Adha (estimated)", "2037-03-08": "Day of establishment of Br\u010dko District", - "2037-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2037-03-09": "Day of establishment of Br\u010dko District (observed)", "2037-04-03": "Orthodox Good Friday", "2037-04-06": "Catholic Easter Monday", "2037-05-01": "Labor Day", @@ -1060,12 +1060,12 @@ "2038-04-26": "Catholic Easter Monday", "2038-05-01": "Labor Day", "2038-05-02": "Labor Day", - "2038-05-03": "Labor Day (Observed)", + "2038-05-03": "Labor Day (observed)", "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-25": "Catholic Christmas", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-05": "Eid al-Adha (estimated)", "2039-01-07": "Orthodox Christmas", "2039-03-08": "Day of establishment of Br\u010dko District", @@ -1073,13 +1073,13 @@ "2039-04-15": "Orthodox Good Friday", "2039-05-01": "Labor Day", "2039-05-02": "Labor Day", - "2039-05-03": "Labor Day (Observed)", + "2039-05-03": "Labor Day (observed)", "2039-10-19": "Eid al-Fitr (estimated)", "2039-12-25": "Catholic Christmas", - "2039-12-26": "Catholic Christmas (Observed); Eid al-Adha (estimated)", + "2039-12-26": "Catholic Christmas (observed); Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-01-07": "Orthodox Christmas", "2040-03-08": "Day of establishment of Br\u010dko District", "2040-04-02": "Catholic Easter Monday", @@ -1115,7 +1115,7 @@ "2043-01-02": "New Year's Day", "2043-01-07": "Orthodox Christmas", "2043-03-08": "Day of establishment of Br\u010dko District", - "2043-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2043-03-09": "Day of establishment of Br\u010dko District (observed)", "2043-03-30": "Catholic Easter Monday", "2043-05-01": "Labor Day; Orthodox Good Friday", "2043-05-02": "Labor Day", @@ -1130,14 +1130,14 @@ "2044-04-22": "Orthodox Good Friday", "2044-05-01": "Labor Day", "2044-05-02": "Labor Day", - "2044-05-03": "Labor Day (Observed)", + "2044-05-03": "Labor Day (observed)", "2044-08-24": "Eid al-Fitr (estimated)", "2044-10-31": "Eid al-Adha (estimated)", "2044-12-25": "Catholic Christmas", - "2044-12-26": "Catholic Christmas (Observed)", + "2044-12-26": "Catholic Christmas (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-01-07": "Orthodox Christmas", "2045-03-08": "Day of establishment of Br\u010dko District", "2045-04-07": "Orthodox Good Friday", @@ -1150,7 +1150,7 @@ "2046-01-01": "New Year's Day", "2046-01-02": "New Year's Day", "2046-01-07": "Orthodox Christmas", - "2046-01-08": "Orthodox Christmas (Observed)", + "2046-01-08": "Orthodox Christmas (observed)", "2046-03-08": "Day of establishment of Br\u010dko District", "2046-03-26": "Catholic Easter Monday", "2046-04-27": "Orthodox Good Friday", @@ -1174,7 +1174,7 @@ "2048-01-02": "New Year's Day", "2048-01-07": "Orthodox Christmas", "2048-03-08": "Day of establishment of Br\u010dko District", - "2048-03-09": "Day of establishment of Br\u010dko District (Observed)", + "2048-03-09": "Day of establishment of Br\u010dko District (observed)", "2048-04-03": "Orthodox Good Friday", "2048-04-06": "Catholic Easter Monday", "2048-05-01": "Labor Day", @@ -1190,22 +1190,22 @@ "2049-04-23": "Orthodox Good Friday", "2049-05-01": "Labor Day", "2049-05-02": "Labor Day", - "2049-05-03": "Labor Day (Observed)", + "2049-05-03": "Labor Day (observed)", "2049-07-01": "Eid al-Fitr (estimated)", "2049-09-08": "Eid al-Adha (estimated)", "2049-12-25": "Catholic Christmas", "2050-01-01": "New Year's Day", "2050-01-02": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-07": "Orthodox Christmas", "2050-03-08": "Day of establishment of Br\u010dko District", "2050-04-11": "Catholic Easter Monday", "2050-04-15": "Orthodox Good Friday", "2050-05-01": "Labor Day", "2050-05-02": "Labor Day", - "2050-05-03": "Labor Day (Observed)", + "2050-05-03": "Labor Day (observed)", "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-28": "Eid al-Adha (estimated)", "2050-12-25": "Catholic Christmas", - "2050-12-26": "Catholic Christmas (Observed)" + "2050-12-26": "Catholic Christmas (observed)" } diff --git a/snapshots/countries/BA_SRP.json b/snapshots/countries/BA_SRP.json index 6d931880f..530c740d1 100644 --- a/snapshots/countries/BA_SRP.json +++ b/snapshots/countries/BA_SRP.json @@ -90,7 +90,7 @@ "1954-04-26": "Orthodox Easter Monday", "1954-05-01": "Labor Day", "1954-05-02": "Labor Day", - "1954-05-03": "Labor Day (Observed)", + "1954-05-03": "Labor Day (observed)", "1954-05-09": "Victory Day", "1954-06-02": "Eid al-Fitr (estimated)", "1954-06-03": "Eid al-Fitr (estimated)", @@ -101,7 +101,7 @@ "1954-12-25": "Catholic Christmas", "1955-01-01": "New Year's Day", "1955-01-02": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-06": "Orthodox Christmas Eve", "1955-01-07": "Orthodox Christmas", "1955-01-14": "Orthodox New Year", @@ -314,14 +314,14 @@ "1965-04-26": "Orthodox Easter Monday", "1965-05-01": "Labor Day", "1965-05-02": "Labor Day", - "1965-05-03": "Labor Day (Observed)", + "1965-05-03": "Labor Day (observed)", "1965-05-09": "Victory Day", "1965-11-21": "Dayton Agreement Day", "1965-12-24": "Catholic Christmas Eve", "1965-12-25": "Catholic Christmas", "1966-01-01": "New Year's Day", "1966-01-02": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-06": "Orthodox Christmas Eve", "1966-01-07": "Orthodox Christmas", "1966-01-14": "Orthodox New Year", @@ -436,7 +436,7 @@ "1971-04-19": "Orthodox Easter Monday", "1971-05-01": "Labor Day", "1971-05-02": "Labor Day", - "1971-05-03": "Labor Day (Observed)", + "1971-05-03": "Labor Day (observed)", "1971-05-09": "Victory Day", "1971-11-19": "Eid al-Fitr (estimated)", "1971-11-20": "Eid al-Fitr (estimated)", @@ -445,7 +445,7 @@ "1971-12-25": "Catholic Christmas", "1972-01-01": "New Year's Day", "1972-01-02": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-06": "Orthodox Christmas Eve", "1972-01-07": "Orthodox Christmas", "1972-01-14": "Orthodox New Year", @@ -536,7 +536,7 @@ "1976-04-26": "Orthodox Easter Monday", "1976-05-01": "Labor Day", "1976-05-02": "Labor Day", - "1976-05-03": "Labor Day (Observed)", + "1976-05-03": "Labor Day (observed)", "1976-05-09": "Victory Day", "1976-09-24": "Eid al-Fitr (estimated)", "1976-09-25": "Eid al-Fitr (estimated)", @@ -547,7 +547,7 @@ "1976-12-25": "Catholic Christmas", "1977-01-01": "New Year's Day", "1977-01-02": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-06": "Orthodox Christmas Eve", "1977-01-07": "Orthodox Christmas", "1977-01-14": "Orthodox New Year", @@ -656,7 +656,7 @@ "1982-04-19": "Orthodox Easter Monday", "1982-05-01": "Labor Day", "1982-05-02": "Labor Day", - "1982-05-03": "Labor Day (Observed)", + "1982-05-03": "Labor Day (observed)", "1982-05-09": "Victory Day", "1982-07-21": "Eid al-Fitr (estimated)", "1982-07-22": "Eid al-Fitr (estimated)", @@ -667,7 +667,7 @@ "1982-12-25": "Catholic Christmas", "1983-01-01": "New Year's Day", "1983-01-02": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-06": "Orthodox Christmas Eve", "1983-01-07": "Orthodox Christmas", "1983-01-14": "Orthodox New Year", @@ -879,7 +879,7 @@ "1993-04-19": "Orthodox Easter Monday", "1993-05-01": "Labor Day", "1993-05-02": "Labor Day", - "1993-05-03": "Labor Day (Observed)", + "1993-05-03": "Labor Day (observed)", "1993-05-09": "Victory Day", "1993-05-31": "Eid al-Adha (estimated)", "1993-06-01": "Eid al-Adha (estimated)", @@ -888,7 +888,7 @@ "1993-12-25": "Catholic Christmas", "1994-01-01": "New Year's Day", "1994-01-02": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-06": "Orthodox Christmas Eve", "1994-01-07": "Orthodox Christmas", "1994-01-14": "Orthodox New Year", @@ -1006,14 +1006,14 @@ "1999-04-12": "Orthodox Easter Monday", "1999-05-01": "Labor Day", "1999-05-02": "Labor Day", - "1999-05-03": "Labor Day (Observed)", + "1999-05-03": "Labor Day (observed)", "1999-05-09": "Victory Day", "1999-11-21": "Dayton Agreement Day", "1999-12-24": "Catholic Christmas Eve", "1999-12-25": "Catholic Christmas", "2000-01-01": "New Year's Day", "2000-01-02": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-06": "Orthodox Christmas Eve", "2000-01-07": "Orthodox Christmas", "2000-01-08": "Eid al-Fitr (estimated)", @@ -1106,7 +1106,7 @@ "2004-04-12": "Catholic Easter Monday; Orthodox Easter Monday", "2004-05-01": "Labor Day", "2004-05-02": "Labor Day", - "2004-05-03": "Labor Day (Observed)", + "2004-05-03": "Labor Day (observed)", "2004-05-09": "Victory Day", "2004-11-14": "Eid al-Fitr", "2004-11-15": "Eid al-Fitr", @@ -1115,7 +1115,7 @@ "2004-12-25": "Catholic Christmas", "2005-01-01": "New Year's Day", "2005-01-02": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-06": "Orthodox Christmas Eve", "2005-01-07": "Orthodox Christmas", "2005-01-14": "Orthodox New Year", @@ -1225,7 +1225,7 @@ "2010-04-05": "Catholic Easter Monday; Orthodox Easter Monday", "2010-05-01": "Labor Day", "2010-05-02": "Labor Day", - "2010-05-03": "Labor Day (Observed)", + "2010-05-03": "Labor Day (observed)", "2010-05-09": "Victory Day", "2010-09-10": "Eid al-Fitr", "2010-09-11": "Eid al-Fitr", @@ -1236,7 +1236,7 @@ "2010-12-25": "Catholic Christmas", "2011-01-01": "New Year's Day", "2011-01-02": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-06": "Orthodox Christmas Eve", "2011-01-07": "Orthodox Christmas", "2011-01-14": "Orthodox New Year", @@ -1445,7 +1445,7 @@ "2021-04-30": "Orthodox Good Friday", "2021-05-01": "Labor Day", "2021-05-02": "Labor Day; Orthodox Easter", - "2021-05-03": "Labor Day (Observed); Orthodox Easter Monday", + "2021-05-03": "Labor Day (observed); Orthodox Easter Monday", "2021-05-09": "Victory Day", "2021-05-13": "Eid al-Fitr", "2021-05-14": "Eid al-Fitr", @@ -1456,7 +1456,7 @@ "2021-12-25": "Catholic Christmas", "2022-01-01": "New Year's Day", "2022-01-02": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-06": "Orthodox Christmas Eve", "2022-01-07": "Orthodox Christmas", "2022-01-14": "Orthodox New Year", @@ -1569,7 +1569,7 @@ "2027-04-30": "Orthodox Good Friday", "2027-05-01": "Labor Day", "2027-05-02": "Labor Day; Orthodox Easter", - "2027-05-03": "Labor Day (Observed); Orthodox Easter Monday", + "2027-05-03": "Labor Day (observed); Orthodox Easter Monday", "2027-05-09": "Victory Day", "2027-05-16": "Eid al-Adha (estimated)", "2027-05-17": "Eid al-Adha (estimated)", @@ -1578,7 +1578,7 @@ "2027-12-25": "Catholic Christmas", "2028-01-01": "New Year's Day", "2028-01-02": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-06": "Orthodox Christmas Eve", "2028-01-07": "Orthodox Christmas", "2028-01-14": "Orthodox New Year", @@ -1669,14 +1669,14 @@ "2032-04-30": "Orthodox Good Friday", "2032-05-01": "Labor Day", "2032-05-02": "Labor Day; Orthodox Easter", - "2032-05-03": "Labor Day (Observed); Orthodox Easter Monday", + "2032-05-03": "Labor Day (observed); Orthodox Easter Monday", "2032-05-09": "Victory Day", "2032-11-21": "Dayton Agreement Day", "2032-12-24": "Catholic Christmas Eve", "2032-12-25": "Catholic Christmas", "2033-01-01": "New Year's Day", "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", - "2033-01-03": "Eid al-Fitr (estimated); New Year's Day (Observed)", + "2033-01-03": "Eid al-Fitr (estimated); New Year's Day (observed)", "2033-01-06": "Orthodox Christmas Eve", "2033-01-07": "Orthodox Christmas", "2033-01-14": "Orthodox New Year", @@ -1785,7 +1785,7 @@ "2038-04-26": "Catholic Easter Monday; Orthodox Easter Monday", "2038-05-01": "Labor Day", "2038-05-02": "Labor Day", - "2038-05-03": "Labor Day (Observed)", + "2038-05-03": "Labor Day (observed)", "2038-05-09": "Victory Day", "2038-10-29": "Eid al-Fitr (estimated)", "2038-10-30": "Eid al-Fitr (estimated)", @@ -1794,7 +1794,7 @@ "2038-12-25": "Catholic Christmas", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-05": "Eid al-Adha (estimated)", "2039-01-06": "Eid al-Adha (estimated); Orthodox Christmas Eve", "2039-01-07": "Orthodox Christmas", @@ -2007,7 +2007,7 @@ "2049-04-26": "Orthodox Easter Monday", "2049-05-01": "Labor Day", "2049-05-02": "Labor Day", - "2049-05-03": "Labor Day (Observed)", + "2049-05-03": "Labor Day (observed)", "2049-05-09": "Victory Day", "2049-07-01": "Eid al-Fitr (estimated)", "2049-07-02": "Eid al-Fitr (estimated)", @@ -2018,7 +2018,7 @@ "2049-12-25": "Catholic Christmas", "2050-01-01": "New Year's Day", "2050-01-02": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-06": "Orthodox Christmas Eve", "2050-01-07": "Orthodox Christmas", "2050-01-14": "Orthodox New Year", diff --git a/snapshots/countries/BB_COMMON.json b/snapshots/countries/BB_COMMON.json index f792da551..444925ef7 100644 --- a/snapshots/countries/BB_COMMON.json +++ b/snapshots/countries/BB_COMMON.json @@ -7,7 +7,7 @@ "1969-08-01": "Emancipation Day", "1969-08-04": "Kadooment Day", "1969-11-30": "Independence Day", - "1969-12-01": "Independence Day (Observed)", + "1969-12-01": "Independence Day (observed)", "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1970-01-01": "New Year's Day", @@ -27,11 +27,11 @@ "1971-05-31": "Whit Monday", "1971-08-01": "Emancipation Day", "1971-08-02": "Kadooment Day", - "1971-08-03": "Emancipation Day (Observed)", + "1971-08-03": "Emancipation Day (observed)", "1971-11-30": "Independence Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Boxing Day (Observed)", + "1971-12-27": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -70,7 +70,7 @@ "1975-08-01": "Emancipation Day", "1975-08-04": "Kadooment Day", "1975-11-30": "Independence Day", - "1975-12-01": "Independence Day (Observed)", + "1975-12-01": "Independence Day (observed)", "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1976-01-01": "New Year's Day", @@ -80,25 +80,25 @@ "1976-06-07": "Whit Monday", "1976-08-01": "Emancipation Day", "1976-08-02": "Kadooment Day", - "1976-08-03": "Emancipation Day (Observed)", + "1976-08-03": "Emancipation Day (observed)", "1976-11-30": "Independence Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Boxing Day (Observed)", + "1976-12-27": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-01": "May Day", - "1977-05-02": "May Day (Observed)", + "1977-05-02": "May Day (observed)", "1977-05-30": "Whit Monday", "1977-08-01": "Emancipation Day; Kadooment Day", - "1977-08-02": "Emancipation Day (Observed)", + "1977-08-02": "Emancipation Day (observed)", "1977-11-30": "Independence Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-01": "May Day", @@ -126,7 +126,7 @@ "1980-08-01": "Emancipation Day", "1980-08-04": "Kadooment Day", "1980-11-30": "Independence Day", - "1980-12-01": "Independence Day (Observed)", + "1980-12-01": "Independence Day (observed)", "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1981-01-01": "New Year's Day", @@ -146,25 +146,25 @@ "1982-05-31": "Whit Monday", "1982-08-01": "Emancipation Day", "1982-08-02": "Kadooment Day", - "1982-08-03": "Emancipation Day (Observed)", + "1982-08-03": "Emancipation Day (observed)", "1982-11-30": "Independence Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Boxing Day (Observed)", + "1982-12-27": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-01": "May Day", - "1983-05-02": "May Day (Observed)", + "1983-05-02": "May Day (observed)", "1983-05-23": "Whit Monday", "1983-08-01": "Emancipation Day; Kadooment Day", - "1983-08-02": "Emancipation Day (Observed)", + "1983-08-02": "Emancipation Day (observed)", "1983-11-30": "Independence Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-01": "May Day", @@ -192,7 +192,7 @@ "1986-08-01": "Emancipation Day", "1986-08-04": "Kadooment Day", "1986-11-30": "Independence Day", - "1986-12-01": "Independence Day (Observed)", + "1986-12-01": "Independence Day (observed)", "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1987-01-01": "New Year's Day", @@ -209,16 +209,16 @@ "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", "1988-05-01": "May Day", - "1988-05-02": "May Day (Observed)", + "1988-05-02": "May Day (observed)", "1988-05-23": "Whit Monday", "1988-08-01": "Emancipation Day; Kadooment Day", - "1988-08-02": "Emancipation Day (Observed)", + "1988-08-02": "Emancipation Day (observed)", "1988-11-30": "Independence Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-21": "Errol Barrow Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -231,7 +231,7 @@ "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-01-21": "Errol Barrow Day", - "1990-01-22": "Errol Barrow Day (Observed)", + "1990-01-22": "Errol Barrow Day (observed)", "1990-04-13": "Good Friday", "1990-04-16": "Easter Monday", "1990-05-01": "May Day", @@ -271,26 +271,26 @@ "1993-05-31": "Whit Monday", "1993-08-01": "Emancipation Day", "1993-08-02": "Kadooment Day", - "1993-08-03": "Emancipation Day (Observed)", + "1993-08-03": "Emancipation Day (observed)", "1993-11-30": "Independence Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Boxing Day (Observed)", + "1993-12-27": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-21": "Errol Barrow Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-01": "May Day", - "1994-05-02": "May Day (Observed)", + "1994-05-02": "May Day (observed)", "1994-05-23": "Whit Monday", "1994-08-01": "Emancipation Day; Kadooment Day", - "1994-08-02": "Emancipation Day (Observed)", + "1994-08-02": "Emancipation Day (observed)", "1994-11-30": "Independence Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-21": "Errol Barrow Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -303,7 +303,7 @@ "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", "1996-01-21": "Errol Barrow Day", - "1996-01-22": "Errol Barrow Day (Observed)", + "1996-01-22": "Errol Barrow Day (observed)", "1996-04-05": "Good Friday", "1996-04-08": "Easter Monday", "1996-05-01": "May Day", @@ -322,7 +322,7 @@ "1997-08-01": "Emancipation Day", "1997-08-04": "Kadooment Day", "1997-11-30": "Independence Day", - "1997-12-01": "Independence Day (Observed)", + "1997-12-01": "Independence Day (observed)", "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1998-01-01": "New Year's Day", @@ -346,11 +346,11 @@ "1999-05-24": "Whit Monday", "1999-08-01": "Emancipation Day", "1999-08-02": "Kadooment Day", - "1999-08-03": "Emancipation Day (Observed)", + "1999-08-03": "Emancipation Day (observed)", "1999-11-30": "Independence Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Boxing Day (Observed)", + "1999-12-27": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-21": "Errol Barrow Day", "2000-04-21": "Good Friday", @@ -365,7 +365,7 @@ "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-01-21": "Errol Barrow Day", - "2001-01-22": "Errol Barrow Day (Observed)", + "2001-01-22": "Errol Barrow Day (observed)", "2001-04-13": "Good Friday", "2001-04-16": "Easter Monday", "2001-04-28": "National Heroes Day", @@ -381,7 +381,7 @@ "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", "2002-04-28": "National Heroes Day", - "2002-04-29": "National Heroes Day (Observed)", + "2002-04-29": "National Heroes Day (observed)", "2002-05-01": "May Day", "2002-05-20": "Whit Monday", "2002-08-01": "Emancipation Day", @@ -399,7 +399,7 @@ "2003-08-01": "Emancipation Day", "2003-08-04": "Kadooment Day", "2003-11-30": "Independence Day", - "2003-12-01": "Independence Day (Observed)", + "2003-12-01": "Independence Day (observed)", "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2004-01-01": "New Year's Day", @@ -411,27 +411,27 @@ "2004-05-31": "Whit Monday", "2004-08-01": "Emancipation Day", "2004-08-02": "Kadooment Day", - "2004-08-03": "Emancipation Day (Observed)", + "2004-08-03": "Emancipation Day (observed)", "2004-11-30": "Independence Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Boxing Day (Observed)", + "2004-12-27": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-21": "Errol Barrow Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-04-28": "National Heroes Day", "2005-05-01": "May Day", - "2005-05-02": "May Day (Observed)", + "2005-05-02": "May Day (observed)", "2005-05-16": "Whit Monday", "2005-08-01": "Emancipation Day; Kadooment Day", - "2005-08-02": "Emancipation Day (Observed)", + "2005-08-02": "Emancipation Day (observed)", "2005-11-30": "Independence Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-21": "Errol Barrow Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -445,7 +445,7 @@ "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-01-21": "Errol Barrow Day", - "2007-01-22": "Errol Barrow Day (Observed)", + "2007-01-22": "Errol Barrow Day (observed)", "2007-04-06": "Good Friday", "2007-04-09": "Easter Monday", "2007-04-28": "National Heroes Day", @@ -466,7 +466,7 @@ "2008-08-01": "Emancipation Day", "2008-08-04": "Kadooment Day", "2008-11-30": "Independence Day", - "2008-12-01": "Independence Day (Observed)", + "2008-12-01": "Independence Day (observed)", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2009-01-01": "New Year's Day", @@ -490,27 +490,27 @@ "2010-05-24": "Whit Monday", "2010-08-01": "Emancipation Day", "2010-08-02": "Kadooment Day", - "2010-08-03": "Emancipation Day (Observed)", + "2010-08-03": "Emancipation Day (observed)", "2010-11-30": "Independence Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Boxing Day (Observed)", + "2010-12-27": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-21": "Errol Barrow Day", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-04-28": "National Heroes Day", "2011-05-01": "May Day", - "2011-05-02": "May Day (Observed)", + "2011-05-02": "May Day (observed)", "2011-06-13": "Whit Monday", "2011-08-01": "Emancipation Day; Kadooment Day", - "2011-08-02": "Emancipation Day (Observed)", + "2011-08-02": "Emancipation Day (observed)", "2011-11-30": "Independence Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-21": "Errol Barrow Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -527,7 +527,7 @@ "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", "2013-04-28": "National Heroes Day", - "2013-04-29": "National Heroes Day (Observed)", + "2013-04-29": "National Heroes Day (observed)", "2013-05-01": "May Day", "2013-05-20": "Whit Monday", "2013-08-01": "Emancipation Day", @@ -545,7 +545,7 @@ "2014-08-01": "Emancipation Day", "2014-08-04": "Kadooment Day", "2014-11-30": "Independence Day", - "2014-12-01": "Independence Day (Observed)", + "2014-12-01": "Independence Day (observed)", "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2015-01-01": "New Year's Day", @@ -566,16 +566,16 @@ "2016-03-28": "Easter Monday", "2016-04-28": "National Heroes Day", "2016-05-01": "May Day", - "2016-05-02": "May Day (Observed)", + "2016-05-02": "May Day (observed)", "2016-05-16": "Whit Monday", "2016-08-01": "Emancipation Day; Kadooment Day", - "2016-08-02": "Emancipation Day (Observed)", + "2016-08-02": "Emancipation Day (observed)", "2016-11-30": "Independence Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-21": "Errol Barrow Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -589,7 +589,7 @@ "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", "2018-01-21": "Errol Barrow Day", - "2018-01-22": "Errol Barrow Day (Observed)", + "2018-01-22": "Errol Barrow Day (observed)", "2018-03-30": "Good Friday", "2018-04-02": "Easter Monday", "2018-04-28": "National Heroes Day", @@ -605,7 +605,7 @@ "2019-04-19": "Good Friday", "2019-04-22": "Easter Monday", "2019-04-28": "National Heroes Day", - "2019-04-29": "National Heroes Day (Observed)", + "2019-04-29": "National Heroes Day (observed)", "2019-05-01": "May Day", "2019-06-10": "Whit Monday", "2019-08-01": "Emancipation Day", @@ -636,27 +636,27 @@ "2021-05-24": "Whit Monday", "2021-08-01": "Emancipation Day", "2021-08-02": "Kadooment Day", - "2021-08-03": "Emancipation Day (Observed)", + "2021-08-03": "Emancipation Day (observed)", "2021-11-30": "Independence Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-21": "Errol Barrow Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-28": "National Heroes Day", "2022-05-01": "May Day", - "2022-05-02": "May Day (Observed)", + "2022-05-02": "May Day (observed)", "2022-06-06": "Whit Monday", "2022-08-01": "Emancipation Day; Kadooment Day", - "2022-08-02": "Emancipation Day (Observed)", + "2022-08-02": "Emancipation Day (observed)", "2022-11-30": "Independence Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-21": "Errol Barrow Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -671,11 +671,11 @@ "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", "2024-01-21": "Errol Barrow Day", - "2024-01-22": "Errol Barrow Day (Observed)", + "2024-01-22": "Errol Barrow Day (observed)", "2024-03-29": "Good Friday", "2024-04-01": "Easter Monday", "2024-04-28": "National Heroes Day", - "2024-04-29": "National Heroes Day (Observed)", + "2024-04-29": "National Heroes Day (observed)", "2024-05-01": "May Day", "2024-05-20": "Whit Monday", "2024-08-01": "Emancipation Day", @@ -693,7 +693,7 @@ "2025-08-01": "Emancipation Day", "2025-08-04": "Kadooment Day", "2025-11-30": "Independence Day", - "2025-12-01": "Independence Day (Observed)", + "2025-12-01": "Independence Day (observed)", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2026-01-01": "New Year's Day", @@ -717,11 +717,11 @@ "2027-05-17": "Whit Monday", "2027-08-01": "Emancipation Day", "2027-08-02": "Kadooment Day", - "2027-08-03": "Emancipation Day (Observed)", + "2027-08-03": "Emancipation Day (observed)", "2027-11-30": "Independence Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Boxing Day (Observed)", + "2027-12-27": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-21": "Errol Barrow Day", "2028-04-14": "Good Friday", @@ -736,7 +736,7 @@ "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", "2029-01-21": "Errol Barrow Day", - "2029-01-22": "Errol Barrow Day (Observed)", + "2029-01-22": "Errol Barrow Day (observed)", "2029-03-30": "Good Friday", "2029-04-02": "Easter Monday", "2029-04-28": "National Heroes Day", @@ -752,7 +752,7 @@ "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", "2030-04-28": "National Heroes Day", - "2030-04-29": "National Heroes Day (Observed)", + "2030-04-29": "National Heroes Day (observed)", "2030-05-01": "May Day", "2030-06-10": "Whit Monday", "2030-08-01": "Emancipation Day", @@ -770,7 +770,7 @@ "2031-08-01": "Emancipation Day", "2031-08-04": "Kadooment Day", "2031-11-30": "Independence Day", - "2031-12-01": "Independence Day (Observed)", + "2031-12-01": "Independence Day (observed)", "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2032-01-01": "New Year's Day", @@ -782,27 +782,27 @@ "2032-05-17": "Whit Monday", "2032-08-01": "Emancipation Day", "2032-08-02": "Kadooment Day", - "2032-08-03": "Emancipation Day (Observed)", + "2032-08-03": "Emancipation Day (observed)", "2032-11-30": "Independence Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Boxing Day (Observed)", + "2032-12-27": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-21": "Errol Barrow Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-28": "National Heroes Day", "2033-05-01": "May Day", - "2033-05-02": "May Day (Observed)", + "2033-05-02": "May Day (observed)", "2033-06-06": "Whit Monday", "2033-08-01": "Emancipation Day; Kadooment Day", - "2033-08-02": "Emancipation Day (Observed)", + "2033-08-02": "Emancipation Day (observed)", "2033-11-30": "Independence Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-21": "Errol Barrow Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -816,7 +816,7 @@ "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", "2035-01-21": "Errol Barrow Day", - "2035-01-22": "Errol Barrow Day (Observed)", + "2035-01-22": "Errol Barrow Day (observed)", "2035-03-23": "Good Friday", "2035-03-26": "Easter Monday", "2035-04-28": "National Heroes Day", @@ -837,7 +837,7 @@ "2036-08-01": "Emancipation Day", "2036-08-04": "Kadooment Day", "2036-11-30": "Independence Day", - "2036-12-01": "Independence Day (Observed)", + "2036-12-01": "Independence Day (observed)", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2037-01-01": "New Year's Day", @@ -861,27 +861,27 @@ "2038-06-14": "Whit Monday", "2038-08-01": "Emancipation Day", "2038-08-02": "Kadooment Day", - "2038-08-03": "Emancipation Day (Observed)", + "2038-08-03": "Emancipation Day (observed)", "2038-11-30": "Independence Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Boxing Day (Observed)", + "2038-12-27": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-21": "Errol Barrow Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-28": "National Heroes Day", "2039-05-01": "May Day", - "2039-05-02": "May Day (Observed)", + "2039-05-02": "May Day (observed)", "2039-05-30": "Whit Monday", "2039-08-01": "Emancipation Day; Kadooment Day", - "2039-08-02": "Emancipation Day (Observed)", + "2039-08-02": "Emancipation Day (observed)", "2039-11-30": "Independence Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-21": "Errol Barrow Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -898,7 +898,7 @@ "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", "2041-04-28": "National Heroes Day", - "2041-04-29": "National Heroes Day (Observed)", + "2041-04-29": "National Heroes Day (observed)", "2041-05-01": "May Day", "2041-06-10": "Whit Monday", "2041-08-01": "Emancipation Day", @@ -916,7 +916,7 @@ "2042-08-01": "Emancipation Day", "2042-08-04": "Kadooment Day", "2042-11-30": "Independence Day", - "2042-12-01": "Independence Day (Observed)", + "2042-12-01": "Independence Day (observed)", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2043-01-01": "New Year's Day", @@ -937,16 +937,16 @@ "2044-04-18": "Easter Monday", "2044-04-28": "National Heroes Day", "2044-05-01": "May Day", - "2044-05-02": "May Day (Observed)", + "2044-05-02": "May Day (observed)", "2044-06-06": "Whit Monday", "2044-08-01": "Emancipation Day; Kadooment Day", - "2044-08-02": "Emancipation Day (Observed)", + "2044-08-02": "Emancipation Day (observed)", "2044-11-30": "Independence Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-21": "Errol Barrow Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -960,7 +960,7 @@ "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", "2046-01-21": "Errol Barrow Day", - "2046-01-22": "Errol Barrow Day (Observed)", + "2046-01-22": "Errol Barrow Day (observed)", "2046-03-23": "Good Friday", "2046-03-26": "Easter Monday", "2046-04-28": "National Heroes Day", @@ -976,7 +976,7 @@ "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", "2047-04-28": "National Heroes Day", - "2047-04-29": "National Heroes Day (Observed)", + "2047-04-29": "National Heroes Day (observed)", "2047-05-01": "May Day", "2047-06-03": "Whit Monday", "2047-08-01": "Emancipation Day", @@ -1005,23 +1005,23 @@ "2049-06-07": "Whit Monday", "2049-08-01": "Emancipation Day", "2049-08-02": "Kadooment Day", - "2049-08-03": "Emancipation Day (Observed)", + "2049-08-03": "Emancipation Day (observed)", "2049-11-30": "Independence Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Boxing Day (Observed)", + "2049-12-27": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-21": "Errol Barrow Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-28": "National Heroes Day", "2050-05-01": "May Day", - "2050-05-02": "May Day (Observed)", + "2050-05-02": "May Day (observed)", "2050-05-30": "Whit Monday", "2050-08-01": "Emancipation Day; Kadooment Day", - "2050-08-02": "Emancipation Day (Observed)", + "2050-08-02": "Emancipation Day (observed)", "2050-11-30": "Independence Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/BF_COMMON.json b/snapshots/countries/BF_COMMON.json index a20726bc6..e157ea1c1 100644 --- a/snapshots/countries/BF_COMMON.json +++ b/snapshots/countries/BF_COMMON.json @@ -1,6 +1,6 @@ { "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-08": "International Women's Day", "1961-03-18": "Eid al-Fitr (estimated)", "1961-04-03": "Easter Monday", @@ -21,7 +21,7 @@ "1962-05-14": "Eid al-Adha (estimated)", "1962-05-31": "Ascension Day", "1962-08-05": "Independence Day", - "1962-08-06": "Independence Day (Observed)", + "1962-08-06": "Independence Day (observed)", "1962-08-12": "Mawlid (estimated)", "1962-08-15": "Assumption Day", "1962-11-01": "All Saints' Day", @@ -43,7 +43,7 @@ "1964-01-01": "New Year's Day", "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-08": "International Women's Day", - "1964-03-09": "International Women's Day (Observed)", + "1964-03-09": "International Women's Day (observed)", "1964-03-30": "Easter Monday", "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", @@ -52,7 +52,7 @@ "1964-08-05": "Independence Day", "1964-08-15": "Assumption Day", "1964-11-01": "All Saints' Day", - "1964-11-02": "All Saints' Day (Observed)", + "1964-11-02": "All Saints' Day (observed)", "1964-12-11": "Proclamation of Independence Day", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", @@ -65,7 +65,7 @@ "1965-07-10": "Mawlid (estimated)", "1965-08-05": "Independence Day", "1965-08-15": "Assumption Day", - "1965-08-16": "Assumption Day (Observed)", + "1965-08-16": "Assumption Day (observed)", "1965-11-01": "All Saints' Day", "1965-12-11": "Proclamation of Independence Day", "1965-12-25": "Christmas Day", @@ -75,18 +75,18 @@ "1966-04-01": "Eid al-Adha (estimated)", "1966-04-11": "Easter Monday", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (Observed)", + "1966-05-02": "Labour Day (observed)", "1966-05-19": "Ascension Day", "1966-07-01": "Mawlid (estimated)", "1966-08-05": "Independence Day", "1966-08-15": "Assumption Day", "1966-11-01": "All Saints' Day", "1966-12-11": "Proclamation of Independence Day", - "1966-12-12": "Proclamation of Independence Day (Observed)", + "1966-12-12": "Proclamation of Independence Day (observed)", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-03": "Revolution Day", "1967-01-12": "Eid al-Fitr (estimated)", "1967-03-08": "International Women's Day", @@ -132,7 +132,7 @@ "1970-01-03": "Revolution Day", "1970-02-16": "Eid al-Adha (estimated)", "1970-03-08": "International Women's Day", - "1970-03-09": "International Women's Day (Observed)", + "1970-03-09": "International Women's Day (observed)", "1970-03-30": "Easter Monday", "1970-05-01": "Labour Day", "1970-05-07": "Ascension Day", @@ -140,13 +140,13 @@ "1970-08-05": "Independence Day", "1970-08-15": "Assumption Day", "1970-11-01": "All Saints' Day", - "1970-11-02": "All Saints' Day (Observed)", + "1970-11-02": "All Saints' Day (observed)", "1970-11-30": "Eid al-Fitr (estimated)", "1970-12-11": "Proclamation of Independence Day", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-03": "Revolution Day", - "1971-01-04": "Revolution Day (Observed)", + "1971-01-04": "Revolution Day (observed)", "1971-02-06": "Eid al-Adha (estimated)", "1971-03-08": "International Women's Day", "1971-04-12": "Easter Monday", @@ -155,7 +155,7 @@ "1971-05-20": "Ascension Day", "1971-08-05": "Independence Day", "1971-08-15": "Assumption Day", - "1971-08-16": "Assumption Day (Observed)", + "1971-08-16": "Assumption Day (observed)", "1971-11-01": "All Saints' Day", "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-11": "Proclamation of Independence Day", @@ -183,7 +183,7 @@ "1973-05-01": "Labour Day", "1973-05-31": "Ascension Day", "1973-08-05": "Independence Day", - "1973-08-06": "Independence Day (Observed)", + "1973-08-06": "Independence Day (observed)", "1973-08-15": "Assumption Day", "1973-10-27": "Eid al-Fitr (estimated)", "1973-11-01": "All Saints' Day", @@ -226,7 +226,7 @@ "1976-05-27": "Ascension Day", "1976-08-05": "Independence Day", "1976-08-15": "Assumption Day", - "1976-08-16": "Assumption Day (Observed)", + "1976-08-16": "Assumption Day (observed)", "1976-09-24": "Eid al-Fitr (estimated)", "1976-11-01": "All Saints' Day", "1976-12-01": "Eid al-Adha (estimated)", @@ -238,7 +238,7 @@ "1977-03-08": "International Women's Day", "1977-04-11": "Easter Monday", "1977-05-01": "Labour Day", - "1977-05-02": "Labour Day (Observed)", + "1977-05-02": "Labour Day (observed)", "1977-05-19": "Ascension Day", "1977-08-05": "Independence Day", "1977-08-15": "Assumption Day", @@ -246,11 +246,11 @@ "1977-11-01": "All Saints' Day", "1977-11-21": "Eid al-Adha (estimated)", "1977-12-11": "Proclamation of Independence Day", - "1977-12-12": "Proclamation of Independence Day (Observed)", + "1977-12-12": "Proclamation of Independence Day (observed)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-03": "Revolution Day", "1978-02-19": "Mawlid (estimated)", "1978-03-08": "International Women's Day", @@ -272,7 +272,7 @@ "1979-05-01": "Labour Day", "1979-05-24": "Ascension Day", "1979-08-05": "Independence Day", - "1979-08-06": "Independence Day (Observed)", + "1979-08-06": "Independence Day (observed)", "1979-08-15": "Assumption Day", "1979-08-23": "Eid al-Fitr (estimated)", "1979-10-31": "Eid al-Adha (estimated)", @@ -297,7 +297,7 @@ "1981-01-03": "Revolution Day", "1981-01-18": "Mawlid (estimated)", "1981-03-08": "International Women's Day", - "1981-03-09": "International Women's Day (Observed)", + "1981-03-09": "International Women's Day (observed)", "1981-04-20": "Easter Monday", "1981-05-01": "Labour Day", "1981-05-28": "Ascension Day", @@ -306,12 +306,12 @@ "1981-08-15": "Assumption Day", "1981-10-08": "Eid al-Adha (estimated)", "1981-11-01": "All Saints' Day", - "1981-11-02": "All Saints' Day (Observed)", + "1981-11-02": "All Saints' Day (observed)", "1981-12-11": "Proclamation of Independence Day", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", "1982-01-03": "Revolution Day", - "1982-01-04": "Revolution Day (Observed)", + "1982-01-04": "Revolution Day (observed)", "1982-01-07": "Mawlid (estimated)", "1982-03-08": "International Women's Day", "1982-04-12": "Easter Monday", @@ -320,7 +320,7 @@ "1982-07-21": "Eid al-Fitr (estimated)", "1982-08-05": "Independence Day", "1982-08-15": "Assumption Day", - "1982-08-16": "Assumption Day (Observed)", + "1982-08-16": "Assumption Day (observed)", "1982-09-27": "Eid al-Adha (estimated)", "1982-11-01": "All Saints' Day", "1982-12-11": "Proclamation of Independence Day", @@ -331,7 +331,7 @@ "1983-03-08": "International Women's Day", "1983-04-04": "Easter Monday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-05-12": "Ascension Day", "1983-07-11": "Eid al-Fitr (estimated)", "1983-08-05": "Independence Day", @@ -339,12 +339,12 @@ "1983-09-17": "Eid al-Adha (estimated)", "1983-11-01": "All Saints' Day", "1983-12-11": "Proclamation of Independence Day", - "1983-12-12": "Proclamation of Independence Day (Observed)", + "1983-12-12": "Proclamation of Independence Day (observed)", "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-03": "Revolution Day", "1984-03-08": "International Women's Day", "1984-04-23": "Easter Monday", @@ -352,7 +352,7 @@ "1984-05-31": "Ascension Day", "1984-06-30": "Eid al-Fitr (estimated)", "1984-08-05": "Independence Day", - "1984-08-06": "Independence Day (Observed)", + "1984-08-06": "Independence Day (observed)", "1984-08-15": "Assumption Day", "1984-09-05": "Eid al-Adha (estimated)", "1984-11-01": "All Saints' Day", @@ -389,7 +389,7 @@ "1987-01-01": "New Year's Day", "1987-01-03": "Revolution Day", "1987-03-08": "International Women's Day", - "1987-03-09": "International Women's Day (Observed)", + "1987-03-09": "International Women's Day (observed)", "1987-04-20": "Easter Monday", "1987-05-01": "Labour Day", "1987-05-28": "Ascension Day; Eid al-Fitr (estimated)", @@ -397,17 +397,17 @@ "1987-08-05": "Independence Day", "1987-08-15": "Assumption Day", "1987-11-01": "All Saints' Day", - "1987-11-02": "All Saints' Day (Observed)", + "1987-11-02": "All Saints' Day (observed)", "1987-11-03": "Mawlid (estimated)", "1987-12-11": "Proclamation of Independence Day", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-01-03": "Revolution Day", - "1988-01-04": "Revolution Day (Observed)", + "1988-01-04": "Revolution Day (observed)", "1988-03-08": "International Women's Day", "1988-04-04": "Easter Monday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-05-12": "Ascension Day", "1988-05-16": "Eid al-Fitr (estimated)", "1988-07-23": "Eid al-Adha (estimated)", @@ -416,11 +416,11 @@ "1988-10-22": "Mawlid (estimated)", "1988-11-01": "All Saints' Day", "1988-12-11": "Proclamation of Independence Day", - "1988-12-12": "Proclamation of Independence Day (Observed)", + "1988-12-12": "Proclamation of Independence Day (observed)", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-03": "Revolution Day", "1989-03-08": "International Women's Day", "1989-03-27": "Easter Monday", @@ -443,7 +443,7 @@ "1990-05-24": "Ascension Day", "1990-07-02": "Eid al-Adha (estimated)", "1990-08-05": "Independence Day", - "1990-08-06": "Independence Day (Observed)", + "1990-08-06": "Independence Day (observed)", "1990-08-15": "Assumption Day", "1990-10-01": "Mawlid (estimated)", "1990-11-01": "All Saints' Day", @@ -466,7 +466,7 @@ "1992-01-01": "New Year's Day", "1992-01-03": "Revolution Day", "1992-03-08": "International Women's Day", - "1992-03-09": "International Women's Day (Observed)", + "1992-03-09": "International Women's Day (observed)", "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-20": "Easter Monday", "1992-05-01": "Labour Day", @@ -476,12 +476,12 @@ "1992-08-15": "Assumption Day", "1992-09-09": "Mawlid (estimated)", "1992-11-01": "All Saints' Day", - "1992-11-02": "All Saints' Day (Observed)", + "1992-11-02": "All Saints' Day (observed)", "1992-12-11": "Proclamation of Independence Day", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-01-03": "Revolution Day", - "1993-01-04": "Revolution Day (Observed)", + "1993-01-04": "Revolution Day (observed)", "1993-03-08": "International Women's Day", "1993-03-24": "Eid al-Fitr (estimated)", "1993-04-12": "Easter Monday", @@ -490,7 +490,7 @@ "1993-05-31": "Eid al-Adha (estimated)", "1993-08-05": "Independence Day", "1993-08-15": "Assumption Day", - "1993-08-16": "Assumption Day (Observed)", + "1993-08-16": "Assumption Day (observed)", "1993-08-29": "Mawlid (estimated)", "1993-11-01": "All Saints' Day", "1993-12-11": "Proclamation of Independence Day", @@ -501,7 +501,7 @@ "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-04": "Easter Monday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-05-12": "Ascension Day", "1994-05-20": "Eid al-Adha (estimated)", "1994-08-05": "Independence Day", @@ -509,11 +509,11 @@ "1994-08-19": "Mawlid (estimated)", "1994-11-01": "All Saints' Day", "1994-12-11": "Proclamation of Independence Day", - "1994-12-12": "Proclamation of Independence Day (Observed)", + "1994-12-12": "Proclamation of Independence Day (observed)", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-03": "Revolution Day", "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-08": "International Women's Day", @@ -559,7 +559,7 @@ "1998-01-03": "Revolution Day", "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-08": "International Women's Day", - "1998-03-09": "International Women's Day (Observed)", + "1998-03-09": "International Women's Day (observed)", "1998-04-07": "Eid al-Adha (estimated)", "1998-04-13": "Easter Monday", "1998-05-01": "Labour Day", @@ -568,12 +568,12 @@ "1998-08-05": "Independence Day", "1998-08-15": "Assumption Day", "1998-11-01": "All Saints' Day", - "1998-11-02": "All Saints' Day (Observed)", + "1998-11-02": "All Saints' Day (observed)", "1998-12-11": "Proclamation of Independence Day", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", "1999-01-03": "Revolution Day", - "1999-01-04": "Revolution Day (Observed)", + "1999-01-04": "Revolution Day (observed)", "1999-01-18": "Eid al-Fitr (estimated)", "1999-03-08": "International Women's Day", "1999-03-27": "Eid al-Adha (estimated)", @@ -583,7 +583,7 @@ "1999-06-26": "Mawlid (estimated)", "1999-08-05": "Independence Day", "1999-08-15": "Assumption Day", - "1999-08-16": "Assumption Day (Observed)", + "1999-08-16": "Assumption Day (observed)", "1999-11-01": "All Saints' Day", "1999-12-11": "Proclamation of Independence Day", "1999-12-25": "Christmas Day", @@ -611,7 +611,7 @@ "2001-05-24": "Ascension Day", "2001-06-04": "Mawlid (estimated)", "2001-08-05": "Independence Day", - "2001-08-06": "Independence Day (Observed)", + "2001-08-06": "Independence Day (observed)", "2001-08-15": "Assumption Day", "2001-11-01": "All Saints' Day", "2001-12-11": "Proclamation of Independence Day", @@ -654,7 +654,7 @@ "2004-05-20": "Ascension Day", "2004-08-05": "Independence Day", "2004-08-15": "Assumption Day", - "2004-08-16": "Assumption Day (Observed)", + "2004-08-16": "Assumption Day (observed)", "2004-11-01": "All Saints' Day", "2004-11-14": "Eid al-Fitr (estimated)", "2004-12-11": "Proclamation of Independence Day", @@ -666,18 +666,18 @@ "2005-03-28": "Easter Monday", "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-05-05": "Ascension Day", "2005-08-05": "Independence Day", "2005-08-15": "Assumption Day", "2005-11-01": "All Saints' Day", "2005-11-03": "Eid al-Fitr (estimated)", "2005-12-11": "Proclamation of Independence Day", - "2005-12-12": "Proclamation of Independence Day (Observed)", + "2005-12-12": "Proclamation of Independence Day (observed)", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-03": "Revolution Day", "2006-01-10": "Eid al-Adha (estimated)", "2006-03-08": "International Women's Day", @@ -700,7 +700,7 @@ "2007-05-01": "Labour Day", "2007-05-17": "Ascension Day", "2007-08-05": "Independence Day", - "2007-08-06": "Independence Day (Observed)", + "2007-08-06": "Independence Day (observed)", "2007-08-15": "Assumption Day", "2007-10-13": "Eid al-Fitr (estimated)", "2007-11-01": "All Saints' Day", @@ -723,7 +723,7 @@ "2009-01-01": "New Year's Day", "2009-01-03": "Revolution Day", "2009-03-08": "International Women's Day", - "2009-03-09": "International Women's Day (Observed); Mawlid (estimated)", + "2009-03-09": "International Women's Day (observed); Mawlid (estimated)", "2009-04-13": "Easter Monday", "2009-05-01": "Labour Day", "2009-05-21": "Ascension Day", @@ -731,13 +731,13 @@ "2009-08-15": "Assumption Day", "2009-09-20": "Eid al-Fitr (estimated)", "2009-11-01": "All Saints' Day", - "2009-11-02": "All Saints' Day (Observed)", + "2009-11-02": "All Saints' Day (observed)", "2009-11-27": "Eid al-Adha (estimated)", "2009-12-11": "Proclamation of Independence Day", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-01-03": "Revolution Day", - "2010-01-04": "Revolution Day (Observed)", + "2010-01-04": "Revolution Day (observed)", "2010-02-26": "Mawlid (estimated)", "2010-03-08": "International Women's Day", "2010-04-05": "Easter Monday", @@ -745,7 +745,7 @@ "2010-05-13": "Ascension Day", "2010-08-05": "Independence Day", "2010-08-15": "Assumption Day", - "2010-08-16": "Assumption Day (Observed)", + "2010-08-16": "Assumption Day (observed)", "2010-09-10": "Eid al-Fitr (estimated)", "2010-11-01": "All Saints' Day", "2010-11-16": "Eid al-Adha (estimated)", @@ -757,7 +757,7 @@ "2011-03-08": "International Women's Day", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-06-02": "Ascension Day", "2011-08-05": "Independence Day", "2011-08-15": "Assumption Day", @@ -765,11 +765,11 @@ "2011-11-01": "All Saints' Day", "2011-11-06": "Eid al-Adha (estimated)", "2011-12-11": "Proclamation of Independence Day", - "2011-12-12": "Proclamation of Independence Day (Observed)", + "2011-12-12": "Proclamation of Independence Day (observed)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-03": "Revolution Day", "2012-02-04": "Mawlid (estimated)", "2012-03-08": "International Women's Day", @@ -777,7 +777,7 @@ "2012-05-01": "Labour Day", "2012-05-17": "Ascension Day", "2012-08-05": "Independence Day", - "2012-08-06": "Independence Day (Observed)", + "2012-08-06": "Independence Day (observed)", "2012-08-15": "Assumption Day", "2012-08-19": "Eid al-Fitr (estimated)", "2012-10-26": "Eid al-Adha (estimated)", @@ -815,7 +815,7 @@ "2015-01-01": "New Year's Day", "2015-01-03": "Mawlid; Revolution Day", "2015-03-08": "International Women's Day", - "2015-03-09": "International Women's Day (Observed)", + "2015-03-09": "International Women's Day (observed)", "2015-04-06": "Easter Monday", "2015-05-01": "Labour Day", "2015-05-14": "Ascension Day", @@ -824,17 +824,17 @@ "2015-08-15": "Assumption Day", "2015-09-24": "Eid al-Adha", "2015-11-01": "All Saints' Day", - "2015-11-02": "All Saints' Day (Observed)", + "2015-11-02": "All Saints' Day (observed)", "2015-12-11": "Proclamation of Independence Day", "2015-12-24": "Mawlid", "2015-12-25": "Christmas Day", "2016-01-01": "New Year's Day", "2016-01-03": "Revolution Day", - "2016-01-04": "Revolution Day (Observed)", + "2016-01-04": "Revolution Day (observed)", "2016-03-08": "International Women's Day", "2016-03-28": "Easter Monday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-05-05": "Ascension Day", "2016-07-07": "Eid al-Fitr", "2016-08-05": "Independence Day", @@ -843,11 +843,11 @@ "2016-10-31": "Martyrs' Day", "2016-11-01": "All Saints' Day", "2016-12-11": "Proclamation of Independence Day", - "2016-12-12": "Mawlid; Proclamation of Independence Day (Observed)", + "2016-12-12": "Mawlid; Proclamation of Independence Day (observed)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-03": "Revolution Day", "2017-03-08": "International Women's Day", "2017-04-17": "Easter Monday", @@ -870,7 +870,7 @@ "2018-05-10": "Ascension Day", "2018-06-15": "Eid al-Fitr", "2018-08-05": "Independence Day", - "2018-08-06": "Independence Day (Observed)", + "2018-08-06": "Independence Day (observed)", "2018-08-15": "Assumption Day", "2018-08-21": "Eid al-Adha", "2018-10-31": "Martyrs' Day", @@ -896,7 +896,7 @@ "2020-01-01": "New Year's Day", "2020-01-03": "Revolution Day", "2020-03-08": "International Women's Day", - "2020-03-09": "International Women's Day (Observed)", + "2020-03-09": "International Women's Day (observed)", "2020-04-13": "Easter Monday", "2020-05-01": "Labour Day", "2020-05-21": "Ascension Day", @@ -907,12 +907,12 @@ "2020-10-29": "Mawlid", "2020-10-31": "Martyrs' Day", "2020-11-01": "All Saints' Day", - "2020-11-02": "All Saints' Day (Observed)", + "2020-11-02": "All Saints' Day (observed)", "2020-12-11": "Proclamation of Independence Day", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", "2021-01-03": "Revolution Day", - "2021-01-04": "Revolution Day (Observed)", + "2021-01-04": "Revolution Day (observed)", "2021-03-08": "International Women's Day", "2021-04-05": "Easter Monday", "2021-05-01": "Labour Day", @@ -920,10 +920,10 @@ "2021-07-20": "Eid al-Adha", "2021-08-05": "Independence Day", "2021-08-15": "Assumption Day", - "2021-08-16": "Assumption Day (Observed)", + "2021-08-16": "Assumption Day (observed)", "2021-10-19": "Mawlid", "2021-10-31": "Martyrs' Day", - "2021-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2021-11-01": "All Saints' Day; Martyrs' Day (observed)", "2021-12-11": "Proclamation of Independence Day", "2021-12-25": "Christmas Day", "2022-01-01": "New Year's Day", @@ -931,7 +931,7 @@ "2022-03-08": "International Women's Day", "2022-04-18": "Easter Monday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid al-Fitr; Labour Day (Observed)", + "2022-05-02": "Eid al-Fitr; Labour Day (observed)", "2022-05-26": "Ascension Day", "2022-07-09": "Eid al-Adha", "2022-08-05": "Independence Day", @@ -940,11 +940,11 @@ "2022-10-31": "Martyrs' Day", "2022-11-01": "All Saints' Day", "2022-12-11": "Proclamation of Independence Day", - "2022-12-12": "Proclamation of Independence Day (Observed)", + "2022-12-12": "Proclamation of Independence Day (observed)", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-03": "Revolution Day", "2023-03-08": "International Women's Day", "2023-04-10": "Easter Monday", @@ -992,7 +992,7 @@ "2026-01-01": "New Year's Day", "2026-01-03": "Revolution Day", "2026-03-08": "International Women's Day", - "2026-03-09": "International Women's Day (Observed)", + "2026-03-09": "International Women's Day (observed)", "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-06": "Easter Monday", "2026-05-01": "Labour Day", @@ -1003,12 +1003,12 @@ "2026-08-25": "Mawlid (estimated)", "2026-10-31": "Martyrs' Day", "2026-11-01": "All Saints' Day", - "2026-11-02": "All Saints' Day (Observed)", + "2026-11-02": "All Saints' Day (observed)", "2026-12-11": "Proclamation of Independence Day", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-01-03": "Revolution Day", - "2027-01-04": "Revolution Day (Observed)", + "2027-01-04": "Revolution Day (observed)", "2027-03-08": "International Women's Day", "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-29": "Easter Monday", @@ -1018,9 +1018,9 @@ "2027-08-05": "Independence Day", "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Assumption Day", - "2027-08-16": "Assumption Day (Observed)", + "2027-08-16": "Assumption Day (observed)", "2027-10-31": "Martyrs' Day", - "2027-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2027-11-01": "All Saints' Day; Martyrs' Day (observed)", "2027-12-11": "Proclamation of Independence Day", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", @@ -1048,7 +1048,7 @@ "2029-05-10": "Ascension Day", "2029-07-24": "Mawlid (estimated)", "2029-08-05": "Independence Day", - "2029-08-06": "Independence Day (Observed)", + "2029-08-06": "Independence Day (observed)", "2029-08-15": "Assumption Day", "2029-10-31": "Martyrs' Day", "2029-11-01": "All Saints' Day", @@ -1095,9 +1095,9 @@ "2032-06-20": "Mawlid (estimated)", "2032-08-05": "Independence Day", "2032-08-15": "Assumption Day", - "2032-08-16": "Assumption Day (Observed)", + "2032-08-16": "Assumption Day (observed)", "2032-10-31": "Martyrs' Day", - "2032-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2032-11-01": "All Saints' Day; Martyrs' Day (observed)", "2032-12-11": "Proclamation of Independence Day", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", @@ -1107,7 +1107,7 @@ "2033-03-11": "Eid al-Adha (estimated)", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-05-26": "Ascension Day", "2033-06-09": "Mawlid (estimated)", "2033-08-05": "Independence Day", @@ -1115,12 +1115,12 @@ "2033-10-31": "Martyrs' Day", "2033-11-01": "All Saints' Day", "2033-12-11": "Proclamation of Independence Day", - "2033-12-12": "Proclamation of Independence Day (Observed)", + "2033-12-12": "Proclamation of Independence Day (observed)", "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-03": "Revolution Day", "2034-03-01": "Eid al-Adha (estimated)", "2034-03-08": "International Women's Day", @@ -1144,7 +1144,7 @@ "2035-05-03": "Ascension Day", "2035-05-20": "Mawlid (estimated)", "2035-08-05": "Independence Day", - "2035-08-06": "Independence Day (Observed)", + "2035-08-06": "Independence Day (observed)", "2035-08-15": "Assumption Day", "2035-10-31": "Martyrs' Day", "2035-11-01": "All Saints' Day", @@ -1170,7 +1170,7 @@ "2037-01-03": "Revolution Day", "2037-01-26": "Eid al-Adha (estimated)", "2037-03-08": "International Women's Day", - "2037-03-09": "International Women's Day (Observed)", + "2037-03-09": "International Women's Day (observed)", "2037-04-06": "Easter Monday", "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", @@ -1179,13 +1179,13 @@ "2037-08-15": "Assumption Day", "2037-10-31": "Martyrs' Day", "2037-11-01": "All Saints' Day", - "2037-11-02": "All Saints' Day (Observed)", + "2037-11-02": "All Saints' Day (observed)", "2037-11-08": "Eid al-Fitr (estimated)", "2037-12-11": "Proclamation of Independence Day", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-03": "Revolution Day", - "2038-01-04": "Revolution Day (Observed)", + "2038-01-04": "Revolution Day (observed)", "2038-01-16": "Eid al-Adha (estimated)", "2038-03-08": "International Women's Day", "2038-04-17": "Mawlid (estimated)", @@ -1194,10 +1194,10 @@ "2038-06-03": "Ascension Day", "2038-08-05": "Independence Day", "2038-08-15": "Assumption Day", - "2038-08-16": "Assumption Day (Observed)", + "2038-08-16": "Assumption Day (observed)", "2038-10-29": "Eid al-Fitr (estimated)", "2038-10-31": "Martyrs' Day", - "2038-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2038-11-01": "All Saints' Day; Martyrs' Day (observed)", "2038-12-11": "Proclamation of Independence Day", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", @@ -1207,7 +1207,7 @@ "2039-04-06": "Mawlid (estimated)", "2039-04-11": "Easter Monday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-05-19": "Ascension Day", "2039-08-05": "Independence Day", "2039-08-15": "Assumption Day", @@ -1215,11 +1215,11 @@ "2039-10-31": "Martyrs' Day", "2039-11-01": "All Saints' Day", "2039-12-11": "Proclamation of Independence Day", - "2039-12-12": "Proclamation of Independence Day (Observed)", + "2039-12-12": "Proclamation of Independence Day (observed)", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Eid al-Adha (estimated)", + "2039-12-26": "Christmas Day (observed); Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-03": "Revolution Day", "2040-03-08": "International Women's Day", "2040-03-25": "Mawlid (estimated)", @@ -1227,7 +1227,7 @@ "2040-05-01": "Labour Day", "2040-05-10": "Ascension Day", "2040-08-05": "Independence Day", - "2040-08-06": "Independence Day (Observed)", + "2040-08-06": "Independence Day (observed)", "2040-08-15": "Assumption Day", "2040-10-07": "Eid al-Fitr (estimated)", "2040-10-31": "Martyrs' Day", @@ -1269,7 +1269,7 @@ "2043-01-03": "Revolution Day", "2043-02-22": "Mawlid (estimated)", "2043-03-08": "International Women's Day", - "2043-03-09": "International Women's Day (Observed)", + "2043-03-09": "International Women's Day (observed)", "2043-03-30": "Easter Monday", "2043-05-01": "Labour Day", "2043-05-07": "Ascension Day", @@ -1278,18 +1278,18 @@ "2043-09-04": "Eid al-Fitr (estimated)", "2043-10-31": "Martyrs' Day", "2043-11-01": "All Saints' Day", - "2043-11-02": "All Saints' Day (Observed)", + "2043-11-02": "All Saints' Day (observed)", "2043-11-12": "Eid al-Adha (estimated)", "2043-12-11": "Proclamation of Independence Day", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-01-03": "Revolution Day", - "2044-01-04": "Revolution Day (Observed)", + "2044-01-04": "Revolution Day (observed)", "2044-02-11": "Mawlid (estimated)", "2044-03-08": "International Women's Day", "2044-04-18": "Easter Monday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-05-26": "Ascension Day", "2044-08-05": "Independence Day", "2044-08-15": "Assumption Day", @@ -1297,11 +1297,11 @@ "2044-10-31": "Eid al-Adha (estimated); Martyrs' Day", "2044-11-01": "All Saints' Day", "2044-12-11": "Proclamation of Independence Day", - "2044-12-12": "Proclamation of Independence Day (Observed)", + "2044-12-12": "Proclamation of Independence Day (observed)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-03": "Revolution Day", "2045-01-30": "Mawlid (estimated)", "2045-03-08": "International Women's Day", @@ -1325,7 +1325,7 @@ "2046-05-03": "Ascension Day", "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-05": "Independence Day", - "2046-08-06": "Independence Day (Observed)", + "2046-08-06": "Independence Day (observed)", "2046-08-15": "Assumption Day", "2046-10-10": "Eid al-Adha (estimated)", "2046-10-31": "Martyrs' Day", @@ -1351,7 +1351,7 @@ "2048-01-01": "New Year's Day", "2048-01-03": "Revolution Day", "2048-03-08": "International Women's Day", - "2048-03-09": "International Women's Day (Observed)", + "2048-03-09": "International Women's Day (observed)", "2048-04-06": "Easter Monday", "2048-05-01": "Labour Day", "2048-05-14": "Ascension Day", @@ -1361,13 +1361,13 @@ "2048-09-19": "Eid al-Adha (estimated)", "2048-10-31": "Martyrs' Day", "2048-11-01": "All Saints' Day", - "2048-11-02": "All Saints' Day (Observed)", + "2048-11-02": "All Saints' Day (observed)", "2048-12-11": "Proclamation of Independence Day", "2048-12-18": "Mawlid (estimated)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-01-03": "Revolution Day", - "2049-01-04": "Revolution Day (Observed)", + "2049-01-04": "Revolution Day (observed)", "2049-03-08": "International Women's Day", "2049-04-19": "Easter Monday", "2049-05-01": "Labour Day", @@ -1375,10 +1375,10 @@ "2049-07-01": "Eid al-Fitr (estimated)", "2049-08-05": "Independence Day", "2049-08-15": "Assumption Day", - "2049-08-16": "Assumption Day (Observed)", + "2049-08-16": "Assumption Day (observed)", "2049-09-08": "Eid al-Adha (estimated)", "2049-10-31": "Martyrs' Day", - "2049-11-01": "All Saints' Day; Martyrs' Day (Observed)", + "2049-11-01": "All Saints' Day; Martyrs' Day (observed)", "2049-12-07": "Mawlid (estimated)", "2049-12-11": "Proclamation of Independence Day", "2049-12-25": "Christmas Day", @@ -1387,7 +1387,7 @@ "2050-03-08": "International Women's Day", "2050-04-11": "Easter Monday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-05-19": "Ascension Day", "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-05": "Independence Day", @@ -1397,7 +1397,7 @@ "2050-11-01": "All Saints' Day", "2050-11-26": "Mawlid (estimated)", "2050-12-11": "Proclamation of Independence Day", - "2050-12-12": "Proclamation of Independence Day (Observed)", + "2050-12-12": "Proclamation of Independence Day (observed)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BG_COMMON.json b/snapshots/countries/BG_COMMON.json index 38cb7d264..319817fc1 100644 --- a/snapshots/countries/BG_COMMON.json +++ b/snapshots/countries/BG_COMMON.json @@ -399,7 +399,7 @@ "2016-12-25": "Christmas Day", "2016-12-26": "Christmas Day", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-03-03": "Liberation Day", "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", @@ -407,7 +407,7 @@ "2017-04-17": "Easter", "2017-05-01": "Labor Day and International Workers' Solidarity Day", "2017-05-06": "St. George's Day (Day of the Bulgarian Army)", - "2017-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2017-05-08": "St. George's Day (Day of the Bulgarian Army) (observed)", "2017-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2017-09-06": "Unification Day", "2017-09-22": "Independence Day", @@ -415,28 +415,28 @@ "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2017-12-26": "Christmas Day", - "2017-12-27": "Christmas Eve (Observed)", + "2017-12-27": "Christmas Eve (observed)", "2018-01-01": "New Year's Day", "2018-03-03": "Liberation Day", - "2018-03-05": "Liberation Day (Observed)", + "2018-03-05": "Liberation Day (observed)", "2018-04-06": "Good Friday", "2018-04-07": "Holy Saturday", "2018-04-08": "Easter", "2018-04-09": "Easter", "2018-05-01": "Labor Day and International Workers' Solidarity Day", "2018-05-06": "St. George's Day (Day of the Bulgarian Army)", - "2018-05-07": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2018-05-07": "St. George's Day (Day of the Bulgarian Army) (observed)", "2018-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2018-09-06": "Unification Day", "2018-09-22": "Independence Day", - "2018-09-24": "Independence Day (Observed)", + "2018-09-24": "Independence Day (observed)", "2018-11-01": "The Day of the People's Awakeners", "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", "2018-12-26": "Christmas Day", "2019-01-01": "New Year's Day", "2019-03-03": "Liberation Day", - "2019-03-04": "Liberation Day (Observed)", + "2019-03-04": "Liberation Day (observed)", "2019-04-26": "Good Friday", "2019-04-27": "Holy Saturday", "2019-04-28": "Easter", @@ -446,7 +446,7 @@ "2019-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2019-09-06": "Unification Day", "2019-09-22": "Independence Day", - "2019-09-23": "Independence Day (Observed)", + "2019-09-23": "Independence Day (observed)", "2019-11-01": "The Day of the People's Awakeners", "2019-12-24": "Christmas Eve", "2019-12-25": "Christmas Day", @@ -460,22 +460,22 @@ "2020-05-01": "Labor Day and International Workers' Solidarity Day", "2020-05-06": "St. George's Day (Day of the Bulgarian Army)", "2020-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", - "2020-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2020-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (observed)", "2020-09-06": "Unification Day", - "2020-09-07": "Unification Day (Observed)", + "2020-09-07": "Unification Day (observed)", "2020-09-22": "Independence Day", "2020-11-01": "The Day of the People's Awakeners", "2020-12-24": "Christmas Eve", "2020-12-25": "Christmas Day", "2020-12-26": "Christmas Day", - "2020-12-28": "Christmas Day (Observed)", + "2020-12-28": "Christmas Day (observed)", "2021-01-01": "New Year's Day", "2021-03-03": "Liberation Day", "2021-04-30": "Good Friday", "2021-05-01": "Holy Saturday; Labor Day and International Workers' Solidarity Day", "2021-05-02": "Easter", "2021-05-03": "Easter", - "2021-05-04": "Labor Day and International Workers' Solidarity Day (Observed)", + "2021-05-04": "Labor Day and International Workers' Solidarity Day (observed)", "2021-05-06": "St. George's Day (Day of the Bulgarian Army)", "2021-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2021-09-06": "Unification Day", @@ -484,17 +484,17 @@ "2021-12-24": "Christmas Eve", "2021-12-25": "Christmas Day", "2021-12-26": "Christmas Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Christmas Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Christmas Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-03-03": "Liberation Day", "2022-04-22": "Good Friday", "2022-04-23": "Holy Saturday", "2022-04-24": "Easter", "2022-04-25": "Easter", "2022-05-01": "Labor Day and International Workers' Solidarity Day", - "2022-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2022-05-02": "Labor Day and International Workers' Solidarity Day (observed)", "2022-05-06": "St. George's Day (Day of the Bulgarian Army)", "2022-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2022-09-06": "Unification Day", @@ -503,10 +503,10 @@ "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", "2022-12-26": "Christmas Day", - "2022-12-27": "Christmas Eve (Observed)", - "2022-12-28": "Christmas Day (Observed)", + "2022-12-27": "Christmas Eve (observed)", + "2022-12-28": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-03-03": "Liberation Day", "2023-04-14": "Good Friday", "2023-04-15": "Holy Saturday", @@ -514,7 +514,7 @@ "2023-04-17": "Easter", "2023-05-01": "Labor Day and International Workers' Solidarity Day", "2023-05-06": "St. George's Day (Day of the Bulgarian Army)", - "2023-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2023-05-08": "St. George's Day (Day of the Bulgarian Army) (observed)", "2023-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2023-09-06": "Unification Day", "2023-09-22": "Independence Day", @@ -522,10 +522,10 @@ "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2023-12-26": "Christmas Day", - "2023-12-27": "Christmas Eve (Observed)", + "2023-12-27": "Christmas Eve (observed)", "2024-01-01": "New Year's Day", "2024-03-03": "Liberation Day", - "2024-03-04": "Liberation Day (Observed)", + "2024-03-04": "Liberation Day (observed)", "2024-05-01": "Labor Day and International Workers' Solidarity Day", "2024-05-03": "Good Friday", "2024-05-04": "Holy Saturday", @@ -534,7 +534,7 @@ "2024-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2024-09-06": "Unification Day", "2024-09-22": "Independence Day", - "2024-09-23": "Independence Day (Observed)", + "2024-09-23": "Independence Day (observed)", "2024-11-01": "The Day of the People's Awakeners", "2024-12-24": "Christmas Eve", "2024-12-25": "Christmas Day", @@ -548,9 +548,9 @@ "2025-05-01": "Labor Day and International Workers' Solidarity Day", "2025-05-06": "St. George's Day (Day of the Bulgarian Army)", "2025-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", - "2025-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2025-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (observed)", "2025-09-06": "Unification Day", - "2025-09-08": "Unification Day (Observed)", + "2025-09-08": "Unification Day (observed)", "2025-09-22": "Independence Day", "2025-11-01": "The Day of the People's Awakeners", "2025-12-24": "Christmas Eve", @@ -565,22 +565,22 @@ "2026-05-01": "Labor Day and International Workers' Solidarity Day", "2026-05-06": "St. George's Day (Day of the Bulgarian Army)", "2026-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", - "2026-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2026-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (observed)", "2026-09-06": "Unification Day", - "2026-09-07": "Unification Day (Observed)", + "2026-09-07": "Unification Day (observed)", "2026-09-22": "Independence Day", "2026-11-01": "The Day of the People's Awakeners", "2026-12-24": "Christmas Eve", "2026-12-25": "Christmas Day", "2026-12-26": "Christmas Day", - "2026-12-28": "Christmas Day (Observed)", + "2026-12-28": "Christmas Day (observed)", "2027-01-01": "New Year's Day", "2027-03-03": "Liberation Day", "2027-04-30": "Good Friday", "2027-05-01": "Holy Saturday; Labor Day and International Workers' Solidarity Day", "2027-05-02": "Easter", "2027-05-03": "Easter", - "2027-05-04": "Labor Day and International Workers' Solidarity Day (Observed)", + "2027-05-04": "Labor Day and International Workers' Solidarity Day (observed)", "2027-05-06": "St. George's Day (Day of the Bulgarian Army)", "2027-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2027-09-06": "Unification Day", @@ -589,10 +589,10 @@ "2027-12-24": "Christmas Eve", "2027-12-25": "Christmas Day", "2027-12-26": "Christmas Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Christmas Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Christmas Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-03-03": "Liberation Day", "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", @@ -600,7 +600,7 @@ "2028-04-17": "Easter", "2028-05-01": "Labor Day and International Workers' Solidarity Day", "2028-05-06": "St. George's Day (Day of the Bulgarian Army)", - "2028-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2028-05-08": "St. George's Day (Day of the Bulgarian Army) (observed)", "2028-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2028-09-06": "Unification Day", "2028-09-22": "Independence Day", @@ -608,28 +608,28 @@ "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2028-12-26": "Christmas Day", - "2028-12-27": "Christmas Eve (Observed)", + "2028-12-27": "Christmas Eve (observed)", "2029-01-01": "New Year's Day", "2029-03-03": "Liberation Day", - "2029-03-05": "Liberation Day (Observed)", + "2029-03-05": "Liberation Day (observed)", "2029-04-06": "Good Friday", "2029-04-07": "Holy Saturday", "2029-04-08": "Easter", "2029-04-09": "Easter", "2029-05-01": "Labor Day and International Workers' Solidarity Day", "2029-05-06": "St. George's Day (Day of the Bulgarian Army)", - "2029-05-07": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2029-05-07": "St. George's Day (Day of the Bulgarian Army) (observed)", "2029-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2029-09-06": "Unification Day", "2029-09-22": "Independence Day", - "2029-09-24": "Independence Day (Observed)", + "2029-09-24": "Independence Day (observed)", "2029-11-01": "The Day of the People's Awakeners", "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", "2029-12-26": "Christmas Day", "2030-01-01": "New Year's Day", "2030-03-03": "Liberation Day", - "2030-03-04": "Liberation Day (Observed)", + "2030-03-04": "Liberation Day (observed)", "2030-04-26": "Good Friday", "2030-04-27": "Holy Saturday", "2030-04-28": "Easter", @@ -639,7 +639,7 @@ "2030-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2030-09-06": "Unification Day", "2030-09-22": "Independence Day", - "2030-09-23": "Independence Day (Observed)", + "2030-09-23": "Independence Day (observed)", "2030-11-01": "The Day of the People's Awakeners", "2030-12-24": "Christmas Eve", "2030-12-25": "Christmas Day", @@ -653,9 +653,9 @@ "2031-05-01": "Labor Day and International Workers' Solidarity Day", "2031-05-06": "St. George's Day (Day of the Bulgarian Army)", "2031-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", - "2031-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2031-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (observed)", "2031-09-06": "Unification Day", - "2031-09-08": "Unification Day (Observed)", + "2031-09-08": "Unification Day (observed)", "2031-09-22": "Independence Day", "2031-11-01": "The Day of the People's Awakeners", "2031-12-24": "Christmas Eve", @@ -667,7 +667,7 @@ "2032-05-01": "Holy Saturday; Labor Day and International Workers' Solidarity Day", "2032-05-02": "Easter", "2032-05-03": "Easter", - "2032-05-04": "Labor Day and International Workers' Solidarity Day (Observed)", + "2032-05-04": "Labor Day and International Workers' Solidarity Day (observed)", "2032-05-06": "St. George's Day (Day of the Bulgarian Army)", "2032-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2032-09-06": "Unification Day", @@ -676,17 +676,17 @@ "2032-12-24": "Christmas Eve", "2032-12-25": "Christmas Day", "2032-12-26": "Christmas Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Christmas Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Christmas Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-03-03": "Liberation Day", "2033-04-22": "Good Friday", "2033-04-23": "Holy Saturday", "2033-04-24": "Easter", "2033-04-25": "Easter", "2033-05-01": "Labor Day and International Workers' Solidarity Day", - "2033-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2033-05-02": "Labor Day and International Workers' Solidarity Day (observed)", "2033-05-06": "St. George's Day (Day of the Bulgarian Army)", "2033-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2033-09-06": "Unification Day", @@ -695,10 +695,10 @@ "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", "2033-12-26": "Christmas Day", - "2033-12-27": "Christmas Eve (Observed)", - "2033-12-28": "Christmas Day (Observed)", + "2033-12-27": "Christmas Eve (observed)", + "2033-12-28": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-03": "Liberation Day", "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", @@ -706,7 +706,7 @@ "2034-04-10": "Easter", "2034-05-01": "Labor Day and International Workers' Solidarity Day", "2034-05-06": "St. George's Day (Day of the Bulgarian Army)", - "2034-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2034-05-08": "St. George's Day (Day of the Bulgarian Army) (observed)", "2034-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2034-09-06": "Unification Day", "2034-09-22": "Independence Day", @@ -714,21 +714,21 @@ "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2034-12-26": "Christmas Day", - "2034-12-27": "Christmas Eve (Observed)", + "2034-12-27": "Christmas Eve (observed)", "2035-01-01": "New Year's Day", "2035-03-03": "Liberation Day", - "2035-03-05": "Liberation Day (Observed)", + "2035-03-05": "Liberation Day (observed)", "2035-04-27": "Good Friday", "2035-04-28": "Holy Saturday", "2035-04-29": "Easter", "2035-04-30": "Easter", "2035-05-01": "Labor Day and International Workers' Solidarity Day", "2035-05-06": "St. George's Day (Day of the Bulgarian Army)", - "2035-05-07": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2035-05-07": "St. George's Day (Day of the Bulgarian Army) (observed)", "2035-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2035-09-06": "Unification Day", "2035-09-22": "Independence Day", - "2035-09-24": "Independence Day (Observed)", + "2035-09-24": "Independence Day (observed)", "2035-11-01": "The Day of the People's Awakeners", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", @@ -742,9 +742,9 @@ "2036-05-01": "Labor Day and International Workers' Solidarity Day", "2036-05-06": "St. George's Day (Day of the Bulgarian Army)", "2036-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", - "2036-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2036-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (observed)", "2036-09-06": "Unification Day", - "2036-09-08": "Unification Day (Observed)", + "2036-09-08": "Unification Day (observed)", "2036-09-22": "Independence Day", "2036-11-01": "The Day of the People's Awakeners", "2036-12-24": "Christmas Eve", @@ -759,15 +759,15 @@ "2037-05-01": "Labor Day and International Workers' Solidarity Day", "2037-05-06": "St. George's Day (Day of the Bulgarian Army)", "2037-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", - "2037-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2037-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (observed)", "2037-09-06": "Unification Day", - "2037-09-07": "Unification Day (Observed)", + "2037-09-07": "Unification Day (observed)", "2037-09-22": "Independence Day", "2037-11-01": "The Day of the People's Awakeners", "2037-12-24": "Christmas Eve", "2037-12-25": "Christmas Day", "2037-12-26": "Christmas Day", - "2037-12-28": "Christmas Day (Observed)", + "2037-12-28": "Christmas Day (observed)", "2038-01-01": "New Year's Day", "2038-03-03": "Liberation Day", "2038-04-23": "Good Friday", @@ -775,7 +775,7 @@ "2038-04-25": "Easter", "2038-04-26": "Easter", "2038-05-01": "Labor Day and International Workers' Solidarity Day", - "2038-05-03": "Labor Day and International Workers' Solidarity Day (Observed)", + "2038-05-03": "Labor Day and International Workers' Solidarity Day (observed)", "2038-05-06": "St. George's Day (Day of the Bulgarian Army)", "2038-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2038-09-06": "Unification Day", @@ -784,17 +784,17 @@ "2038-12-24": "Christmas Eve", "2038-12-25": "Christmas Day", "2038-12-26": "Christmas Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Christmas Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Christmas Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-03-03": "Liberation Day", "2039-04-15": "Good Friday", "2039-04-16": "Holy Saturday", "2039-04-17": "Easter", "2039-04-18": "Easter", "2039-05-01": "Labor Day and International Workers' Solidarity Day", - "2039-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2039-05-02": "Labor Day and International Workers' Solidarity Day (observed)", "2039-05-06": "St. George's Day (Day of the Bulgarian Army)", "2039-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2039-09-06": "Unification Day", @@ -803,29 +803,29 @@ "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", "2039-12-26": "Christmas Day", - "2039-12-27": "Christmas Eve (Observed)", - "2039-12-28": "Christmas Day (Observed)", + "2039-12-27": "Christmas Eve (observed)", + "2039-12-28": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-03": "Liberation Day", - "2040-03-05": "Liberation Day (Observed)", + "2040-03-05": "Liberation Day (observed)", "2040-05-01": "Labor Day and International Workers' Solidarity Day", "2040-05-04": "Good Friday", "2040-05-05": "Holy Saturday", "2040-05-06": "Easter; St. George's Day (Day of the Bulgarian Army)", "2040-05-07": "Easter", - "2040-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2040-05-08": "St. George's Day (Day of the Bulgarian Army) (observed)", "2040-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2040-09-06": "Unification Day", "2040-09-22": "Independence Day", - "2040-09-24": "Independence Day (Observed)", + "2040-09-24": "Independence Day (observed)", "2040-11-01": "The Day of the People's Awakeners", "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", "2040-12-26": "Christmas Day", "2041-01-01": "New Year's Day", "2041-03-03": "Liberation Day", - "2041-03-04": "Liberation Day (Observed)", + "2041-03-04": "Liberation Day (observed)", "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-04-21": "Easter", @@ -835,7 +835,7 @@ "2041-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2041-09-06": "Unification Day", "2041-09-22": "Independence Day", - "2041-09-23": "Independence Day (Observed)", + "2041-09-23": "Independence Day (observed)", "2041-11-01": "The Day of the People's Awakeners", "2041-12-24": "Christmas Eve", "2041-12-25": "Christmas Day", @@ -849,9 +849,9 @@ "2042-05-01": "Labor Day and International Workers' Solidarity Day", "2042-05-06": "St. George's Day (Day of the Bulgarian Army)", "2042-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", - "2042-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2042-05-26": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (observed)", "2042-09-06": "Unification Day", - "2042-09-08": "Unification Day (Observed)", + "2042-09-08": "Unification Day (observed)", "2042-09-22": "Independence Day", "2042-11-01": "The Day of the People's Awakeners", "2042-12-24": "Christmas Eve", @@ -865,15 +865,15 @@ "2043-05-04": "Easter", "2043-05-06": "St. George's Day (Day of the Bulgarian Army)", "2043-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", - "2043-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2043-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (observed)", "2043-09-06": "Unification Day", - "2043-09-07": "Unification Day (Observed)", + "2043-09-07": "Unification Day (observed)", "2043-09-22": "Independence Day", "2043-11-01": "The Day of the People's Awakeners", "2043-12-24": "Christmas Eve", "2043-12-25": "Christmas Day", "2043-12-26": "Christmas Day", - "2043-12-28": "Christmas Day (Observed)", + "2043-12-28": "Christmas Day (observed)", "2044-01-01": "New Year's Day", "2044-03-03": "Liberation Day", "2044-04-22": "Good Friday", @@ -881,7 +881,7 @@ "2044-04-24": "Easter", "2044-04-25": "Easter", "2044-05-01": "Labor Day and International Workers' Solidarity Day", - "2044-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2044-05-02": "Labor Day and International Workers' Solidarity Day (observed)", "2044-05-06": "St. George's Day (Day of the Bulgarian Army)", "2044-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2044-09-06": "Unification Day", @@ -890,10 +890,10 @@ "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", "2044-12-26": "Christmas Day", - "2044-12-27": "Christmas Eve (Observed)", - "2044-12-28": "Christmas Day (Observed)", + "2044-12-27": "Christmas Eve (observed)", + "2044-12-28": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-03-03": "Liberation Day", "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", @@ -901,7 +901,7 @@ "2045-04-10": "Easter", "2045-05-01": "Labor Day and International Workers' Solidarity Day", "2045-05-06": "St. George's Day (Day of the Bulgarian Army)", - "2045-05-08": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2045-05-08": "St. George's Day (Day of the Bulgarian Army) (observed)", "2045-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2045-09-06": "Unification Day", "2045-09-22": "Independence Day", @@ -909,28 +909,28 @@ "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2045-12-26": "Christmas Day", - "2045-12-27": "Christmas Eve (Observed)", + "2045-12-27": "Christmas Eve (observed)", "2046-01-01": "New Year's Day", "2046-03-03": "Liberation Day", - "2046-03-05": "Liberation Day (Observed)", + "2046-03-05": "Liberation Day (observed)", "2046-04-27": "Good Friday", "2046-04-28": "Holy Saturday", "2046-04-29": "Easter", "2046-04-30": "Easter", "2046-05-01": "Labor Day and International Workers' Solidarity Day", "2046-05-06": "St. George's Day (Day of the Bulgarian Army)", - "2046-05-07": "St. George's Day (Day of the Bulgarian Army) (Observed)", + "2046-05-07": "St. George's Day (Day of the Bulgarian Army) (observed)", "2046-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2046-09-06": "Unification Day", "2046-09-22": "Independence Day", - "2046-09-24": "Independence Day (Observed)", + "2046-09-24": "Independence Day (observed)", "2046-11-01": "The Day of the People's Awakeners", "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", "2046-12-26": "Christmas Day", "2047-01-01": "New Year's Day", "2047-03-03": "Liberation Day", - "2047-03-04": "Liberation Day (Observed)", + "2047-03-04": "Liberation Day (observed)", "2047-04-19": "Good Friday", "2047-04-20": "Holy Saturday", "2047-04-21": "Easter", @@ -940,7 +940,7 @@ "2047-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2047-09-06": "Unification Day", "2047-09-22": "Independence Day", - "2047-09-23": "Independence Day (Observed)", + "2047-09-23": "Independence Day (observed)", "2047-11-01": "The Day of the People's Awakeners", "2047-12-24": "Christmas Eve", "2047-12-25": "Christmas Day", @@ -954,15 +954,15 @@ "2048-05-01": "Labor Day and International Workers' Solidarity Day", "2048-05-06": "St. George's Day (Day of the Bulgarian Army)", "2048-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", - "2048-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (Observed)", + "2048-05-25": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture (observed)", "2048-09-06": "Unification Day", - "2048-09-07": "Unification Day (Observed)", + "2048-09-07": "Unification Day (observed)", "2048-09-22": "Independence Day", "2048-11-01": "The Day of the People's Awakeners", "2048-12-24": "Christmas Eve", "2048-12-25": "Christmas Day", "2048-12-26": "Christmas Day", - "2048-12-28": "Christmas Day (Observed)", + "2048-12-28": "Christmas Day (observed)", "2049-01-01": "New Year's Day", "2049-03-03": "Liberation Day", "2049-04-23": "Good Friday", @@ -970,7 +970,7 @@ "2049-04-25": "Easter", "2049-04-26": "Easter", "2049-05-01": "Labor Day and International Workers' Solidarity Day", - "2049-05-03": "Labor Day and International Workers' Solidarity Day (Observed)", + "2049-05-03": "Labor Day and International Workers' Solidarity Day (observed)", "2049-05-06": "St. George's Day (Day of the Bulgarian Army)", "2049-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2049-09-06": "Unification Day", @@ -979,17 +979,17 @@ "2049-12-24": "Christmas Eve", "2049-12-25": "Christmas Day", "2049-12-26": "Christmas Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Christmas Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Christmas Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-03-03": "Liberation Day", "2050-04-15": "Good Friday", "2050-04-16": "Holy Saturday", "2050-04-17": "Easter", "2050-04-18": "Easter", "2050-05-01": "Labor Day and International Workers' Solidarity Day", - "2050-05-02": "Labor Day and International Workers' Solidarity Day (Observed)", + "2050-05-02": "Labor Day and International Workers' Solidarity Day (observed)", "2050-05-06": "St. George's Day (Day of the Bulgarian Army)", "2050-05-24": "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture", "2050-09-06": "Unification Day", @@ -998,6 +998,6 @@ "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", "2050-12-26": "Christmas Day", - "2050-12-27": "Christmas Eve (Observed)", - "2050-12-28": "Christmas Day (Observed)" + "2050-12-27": "Christmas Eve (observed)", + "2050-12-28": "Christmas Day (observed)" } diff --git a/snapshots/countries/BI_COMMON.json b/snapshots/countries/BI_COMMON.json index cfb2d8e28..44a0d677e 100644 --- a/snapshots/countries/BI_COMMON.json +++ b/snapshots/countries/BI_COMMON.json @@ -5,21 +5,21 @@ "1962-05-14": "Eid al Adha (estimated)", "1962-05-31": "Ascension Day", "1962-07-01": "Independence Day", - "1962-07-02": "Independence Day (Observed)", + "1962-07-02": "Independence Day (observed)", "1962-08-15": "Assumption Day", "1962-10-13": "Prince Louis Rwagasore Day", "1962-11-01": "All Saints' Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-02-24": "Eid ul Fitr (estimated)", - "1963-02-25": "Eid ul Fitr (estimated) (Observed)", + "1963-02-25": "Eid ul Fitr (estimated) (observed)", "1963-05-01": "Labour Day", "1963-05-03": "Eid al Adha (estimated)", "1963-05-23": "Ascension Day", "1963-07-01": "Independence Day", "1963-08-15": "Assumption Day", "1963-10-13": "Prince Louis Rwagasore Day", - "1963-10-14": "Prince Louis Rwagasore Day (Observed)", + "1963-10-14": "Prince Louis Rwagasore Day (observed)", "1963-11-01": "All Saints' Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", @@ -31,17 +31,17 @@ "1964-08-15": "Assumption Day", "1964-10-13": "Prince Louis Rwagasore Day", "1964-11-01": "All Saints' Day", - "1964-11-02": "All Saints' Day (Observed)", + "1964-11-02": "All Saints' Day (observed)", "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-02-02": "Eid ul Fitr (estimated)", "1965-04-11": "Eid al Adha (estimated)", - "1965-04-12": "Eid al Adha (estimated) (Observed)", + "1965-04-12": "Eid al Adha (estimated) (observed)", "1965-05-01": "Labour Day", "1965-05-27": "Ascension Day", "1965-07-01": "Independence Day", "1965-08-15": "Assumption Day", - "1965-08-16": "Assumption Day (Observed)", + "1965-08-16": "Assumption Day (observed)", "1965-10-13": "Prince Louis Rwagasore Day", "1965-11-01": "All Saints' Day", "1965-12-25": "Christmas Day", @@ -49,16 +49,16 @@ "1966-01-22": "Eid ul Fitr (estimated)", "1966-04-01": "Eid al Adha (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (Observed)", + "1966-05-02": "Labour Day (observed)", "1966-05-19": "Ascension Day", "1966-07-01": "Independence Day", "1966-08-15": "Assumption Day", "1966-10-13": "Prince Louis Rwagasore Day", "1966-11-01": "All Saints' Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-12": "Eid ul Fitr (estimated)", "1967-03-21": "Eid al Adha (estimated)", "1967-05-01": "Labour Day", @@ -75,7 +75,7 @@ "1968-07-01": "Independence Day", "1968-08-15": "Assumption Day", "1968-10-13": "Prince Louis Rwagasore Day", - "1968-10-14": "Prince Louis Rwagasore Day (Observed)", + "1968-10-14": "Prince Louis Rwagasore Day (observed)", "1968-11-01": "All Saints' Day", "1968-12-21": "Eid ul Fitr (estimated)", "1968-12-25": "Christmas Day", @@ -97,7 +97,7 @@ "1970-08-15": "Assumption Day", "1970-10-13": "Prince Louis Rwagasore Day", "1970-11-01": "All Saints' Day", - "1970-11-02": "All Saints' Day (Observed)", + "1970-11-02": "All Saints' Day (observed)", "1970-11-30": "Eid ul Fitr (estimated)", "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", @@ -106,7 +106,7 @@ "1971-05-20": "Ascension Day", "1971-07-01": "Independence Day", "1971-08-15": "Assumption Day", - "1971-08-16": "Assumption Day (Observed)", + "1971-08-16": "Assumption Day (observed)", "1971-10-13": "Prince Louis Rwagasore Day", "1971-11-01": "All Saints' Day", "1971-11-19": "Eid ul Fitr (estimated)", @@ -123,11 +123,11 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Eid al Adha (estimated)", - "1973-01-15": "Eid al Adha (estimated) (Observed)", + "1973-01-15": "Eid al Adha (estimated) (observed)", "1973-05-01": "Labour Day", "1973-05-31": "Ascension Day", "1973-07-01": "Independence Day", - "1973-07-02": "Independence Day (Observed)", + "1973-07-02": "Independence Day (observed)", "1973-08-15": "Assumption Day", "1973-10-13": "Prince Louis Rwagasore Day", "1973-10-27": "Eid ul Fitr (estimated)", @@ -140,7 +140,7 @@ "1974-07-01": "Independence Day", "1974-08-15": "Assumption Day", "1974-10-13": "Prince Louis Rwagasore Day", - "1974-10-14": "Prince Louis Rwagasore Day (Observed)", + "1974-10-14": "Prince Louis Rwagasore Day (observed)", "1974-10-16": "Eid ul Fitr (estimated)", "1974-11-01": "All Saints' Day", "1974-12-24": "Eid al Adha (estimated)", @@ -160,7 +160,7 @@ "1976-05-27": "Ascension Day", "1976-07-01": "Independence Day", "1976-08-15": "Assumption Day", - "1976-08-16": "Assumption Day (Observed)", + "1976-08-16": "Assumption Day (observed)", "1976-09-24": "Eid ul Fitr (estimated)", "1976-10-13": "Prince Louis Rwagasore Day", "1976-11-01": "All Saints' Day", @@ -168,7 +168,7 @@ "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-05-01": "Labour Day", - "1977-05-02": "Labour Day (Observed)", + "1977-05-02": "Labour Day (observed)", "1977-05-19": "Ascension Day", "1977-07-01": "Independence Day", "1977-08-15": "Assumption Day", @@ -177,15 +177,15 @@ "1977-11-01": "All Saints' Day", "1977-11-21": "Eid al Adha (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-05-01": "Labour Day", "1978-05-04": "Ascension Day", "1978-07-01": "Independence Day", "1978-08-15": "Assumption Day", "1978-09-03": "Eid ul Fitr (estimated)", - "1978-09-04": "Eid ul Fitr (estimated) (Observed)", + "1978-09-04": "Eid ul Fitr (estimated) (observed)", "1978-10-13": "Prince Louis Rwagasore Day", "1978-11-01": "All Saints' Day", "1978-11-10": "Eid al Adha (estimated)", @@ -194,7 +194,7 @@ "1979-05-01": "Labour Day", "1979-05-24": "Ascension Day", "1979-07-01": "Independence Day", - "1979-07-02": "Independence Day (Observed)", + "1979-07-02": "Independence Day (observed)", "1979-08-15": "Assumption Day", "1979-08-23": "Eid ul Fitr (estimated)", "1979-10-13": "Prince Louis Rwagasore Day", @@ -209,7 +209,7 @@ "1980-08-15": "Assumption Day", "1980-10-13": "Prince Louis Rwagasore Day", "1980-10-19": "Eid al Adha (estimated)", - "1980-10-20": "Eid al Adha (estimated) (Observed)", + "1980-10-20": "Eid al Adha (estimated) (observed)", "1980-11-01": "All Saints' Day", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", @@ -221,7 +221,7 @@ "1981-10-08": "Eid al Adha (estimated)", "1981-10-13": "Prince Louis Rwagasore Day", "1981-11-01": "All Saints' Day", - "1981-11-02": "All Saints' Day (Observed)", + "1981-11-02": "All Saints' Day (observed)", "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", "1982-05-01": "Labour Day", @@ -229,14 +229,14 @@ "1982-07-01": "Independence Day", "1982-07-21": "Eid ul Fitr (estimated)", "1982-08-15": "Assumption Day", - "1982-08-16": "Assumption Day (Observed)", + "1982-08-16": "Assumption Day (observed)", "1982-09-27": "Eid al Adha (estimated)", "1982-10-13": "Prince Louis Rwagasore Day", "1982-11-01": "All Saints' Day", "1982-12-25": "Christmas Day", "1983-01-01": "New Year's Day", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-05-12": "Ascension Day", "1983-07-01": "Independence Day", "1983-07-11": "Eid ul Fitr (estimated)", @@ -245,14 +245,14 @@ "1983-10-13": "Prince Louis Rwagasore Day", "1983-11-01": "All Saints' Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-05-01": "Labour Day", "1984-05-31": "Ascension Day", "1984-06-30": "Eid ul Fitr (estimated)", "1984-07-01": "Independence Day", - "1984-07-02": "Independence Day (Observed)", + "1984-07-02": "Independence Day (observed)", "1984-08-15": "Assumption Day", "1984-09-05": "Eid al Adha (estimated)", "1984-10-13": "Prince Louis Rwagasore Day", @@ -266,14 +266,14 @@ "1985-08-15": "Assumption Day", "1985-08-26": "Eid al Adha (estimated)", "1985-10-13": "Prince Louis Rwagasore Day", - "1985-10-14": "Prince Louis Rwagasore Day (Observed)", + "1985-10-14": "Prince Louis Rwagasore Day (observed)", "1985-11-01": "All Saints' Day", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-05-01": "Labour Day", "1986-05-08": "Ascension Day", "1986-06-08": "Eid ul Fitr (estimated)", - "1986-06-09": "Eid ul Fitr (estimated) (Observed)", + "1986-06-09": "Eid ul Fitr (estimated) (observed)", "1986-07-01": "Independence Day", "1986-08-15": "Assumption Day; Eid al Adha (estimated)", "1986-10-13": "Prince Louis Rwagasore Day", @@ -287,11 +287,11 @@ "1987-08-15": "Assumption Day", "1987-10-13": "Prince Louis Rwagasore Day", "1987-11-01": "All Saints' Day", - "1987-11-02": "All Saints' Day (Observed)", + "1987-11-02": "All Saints' Day (observed)", "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-05-12": "Ascension Day", "1988-05-16": "Eid ul Fitr (estimated)", "1988-07-01": "Independence Day", @@ -300,9 +300,9 @@ "1988-10-13": "Prince Louis Rwagasore Day", "1988-11-01": "All Saints' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-05-01": "Labour Day", "1989-05-04": "Ascension Day", "1989-05-06": "Eid ul Fitr (estimated)", @@ -317,7 +317,7 @@ "1990-05-01": "Labour Day", "1990-05-24": "Ascension Day", "1990-07-01": "Independence Day", - "1990-07-02": "Eid al Adha (estimated); Independence Day (Observed)", + "1990-07-02": "Eid al Adha (estimated); Independence Day (observed)", "1990-08-15": "Assumption Day", "1990-10-13": "Prince Louis Rwagasore Day", "1990-11-01": "All Saints' Day", @@ -330,7 +330,7 @@ "1991-07-01": "Independence Day", "1991-08-15": "Assumption Day", "1991-10-13": "Prince Louis Rwagasore Day", - "1991-10-14": "Prince Louis Rwagasore Day (Observed)", + "1991-10-14": "Prince Louis Rwagasore Day (observed)", "1991-11-01": "All Saints' Day", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", @@ -343,7 +343,7 @@ "1992-08-15": "Assumption Day", "1992-10-13": "Prince Louis Rwagasore Day", "1992-11-01": "All Saints' Day", - "1992-11-02": "All Saints' Day (Observed)", + "1992-11-02": "All Saints' Day (observed)", "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-02-05": "Unity Day", @@ -353,16 +353,16 @@ "1993-05-31": "Eid al Adha (estimated)", "1993-07-01": "Independence Day", "1993-08-15": "Assumption Day", - "1993-08-16": "Assumption Day (Observed)", + "1993-08-16": "Assumption Day (observed)", "1993-10-13": "Prince Louis Rwagasore Day", "1993-11-01": "All Saints' Day", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-02-05": "Unity Day", "1994-03-13": "Eid ul Fitr (estimated)", - "1994-03-14": "Eid ul Fitr (estimated) (Observed)", + "1994-03-14": "Eid ul Fitr (estimated) (observed)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-05-12": "Ascension Day", "1994-05-20": "Eid al Adha (estimated)", "1994-07-01": "Independence Day", @@ -371,11 +371,11 @@ "1994-10-21": "President Ndadaye's Day", "1994-11-01": "All Saints' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-05": "Unity Day", - "1995-02-06": "Unity Day (Observed)", + "1995-02-06": "Unity Day (observed)", "1995-03-02": "Eid ul Fitr (estimated)", "1995-04-06": "President Ntaryamira Day", "1995-05-01": "Labour Day", @@ -397,7 +397,7 @@ "1996-07-01": "Independence Day", "1996-08-15": "Assumption Day", "1996-10-13": "Prince Louis Rwagasore Day", - "1996-10-14": "Prince Louis Rwagasore Day (Observed)", + "1996-10-14": "Prince Louis Rwagasore Day (observed)", "1996-10-21": "President Ndadaye's Day", "1996-11-01": "All Saints' Day", "1996-12-25": "Christmas Day", @@ -405,7 +405,7 @@ "1997-02-05": "Unity Day", "1997-02-08": "Eid ul Fitr (estimated)", "1997-04-06": "President Ntaryamira Day", - "1997-04-07": "President Ntaryamira Day (Observed)", + "1997-04-07": "President Ntaryamira Day (observed)", "1997-04-17": "Eid al Adha (estimated)", "1997-05-01": "Labour Day", "1997-05-08": "Ascension Day", @@ -427,7 +427,7 @@ "1998-10-13": "Prince Louis Rwagasore Day", "1998-10-21": "President Ndadaye's Day", "1998-11-01": "All Saints' Day", - "1998-11-02": "All Saints' Day (Observed)", + "1998-11-02": "All Saints' Day (observed)", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", "1999-01-18": "Eid ul Fitr (estimated)", @@ -438,7 +438,7 @@ "1999-05-13": "Ascension Day", "1999-07-01": "Independence Day", "1999-08-15": "Assumption Day", - "1999-08-16": "Assumption Day (Observed)", + "1999-08-16": "Assumption Day (observed)", "1999-10-13": "Prince Louis Rwagasore Day", "1999-10-21": "President Ndadaye's Day", "1999-11-01": "All Saints' Day", @@ -464,14 +464,14 @@ "2001-05-01": "Labour Day", "2001-05-24": "Ascension Day", "2001-07-01": "Independence Day", - "2001-07-02": "Independence Day (Observed)", + "2001-07-02": "Independence Day (observed)", "2001-08-15": "Assumption Day", "2001-10-13": "Prince Louis Rwagasore Day", "2001-10-21": "President Ndadaye's Day", - "2001-10-22": "President Ndadaye's Day (Observed)", + "2001-10-22": "President Ndadaye's Day (observed)", "2001-11-01": "All Saints' Day", "2001-12-16": "Eid ul Fitr (estimated)", - "2001-12-17": "Eid ul Fitr (estimated) (Observed)", + "2001-12-17": "Eid ul Fitr (estimated) (observed)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-02-05": "Unity Day", @@ -482,7 +482,7 @@ "2002-07-01": "Independence Day", "2002-08-15": "Assumption Day", "2002-10-13": "Prince Louis Rwagasore Day", - "2002-10-14": "Prince Louis Rwagasore Day (Observed)", + "2002-10-14": "Prince Louis Rwagasore Day (observed)", "2002-10-21": "President Ndadaye's Day", "2002-11-01": "All Saints' Day", "2002-12-05": "Eid ul Fitr (estimated)", @@ -491,7 +491,7 @@ "2003-02-05": "Unity Day", "2003-02-11": "Eid al Adha (estimated)", "2003-04-06": "President Ntaryamira Day", - "2003-04-07": "President Ntaryamira Day (Observed)", + "2003-04-07": "President Ntaryamira Day (observed)", "2003-05-01": "Labour Day", "2003-05-29": "Ascension Day", "2003-07-01": "Independence Day", @@ -503,26 +503,26 @@ "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-02-01": "Eid al Adha (estimated)", - "2004-02-02": "Eid al Adha (estimated) (Observed)", + "2004-02-02": "Eid al Adha (estimated) (observed)", "2004-02-05": "Unity Day", "2004-04-06": "President Ntaryamira Day", "2004-05-01": "Labour Day", "2004-05-20": "Ascension Day", "2004-07-01": "Independence Day", "2004-08-15": "Assumption Day", - "2004-08-16": "Assumption Day (Observed)", + "2004-08-16": "Assumption Day (observed)", "2004-10-13": "Prince Louis Rwagasore Day", "2004-10-21": "President Ndadaye's Day", "2004-11-01": "All Saints' Day", "2004-11-14": "Eid ul Fitr (estimated)", - "2004-11-15": "Eid ul Fitr (estimated) (Observed)", + "2004-11-15": "Eid ul Fitr (estimated) (observed)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Eid al Adha (estimated)", "2005-02-05": "Unity Day", "2005-04-06": "President Ntaryamira Day", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-05-05": "Ascension Day", "2005-07-01": "Independence Day", "2005-08-15": "Assumption Day", @@ -531,12 +531,12 @@ "2005-11-01": "All Saints' Day", "2005-11-03": "Eid ul Fitr (estimated)", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-10": "Eid al Adha (estimated)", "2006-02-05": "Unity Day", - "2006-02-06": "Unity Day (Observed)", + "2006-02-06": "Unity Day (observed)", "2006-04-06": "President Ntaryamira Day", "2006-05-01": "Labour Day", "2006-05-25": "Ascension Day", @@ -554,18 +554,18 @@ "2007-05-01": "Labour Day", "2007-05-17": "Ascension Day", "2007-07-01": "Independence Day", - "2007-07-02": "Independence Day (Observed)", + "2007-07-02": "Independence Day (observed)", "2007-08-15": "Assumption Day", "2007-10-13": "Eid ul Fitr (estimated); Prince Louis Rwagasore Day", "2007-10-21": "President Ndadaye's Day", - "2007-10-22": "President Ndadaye's Day (Observed)", + "2007-10-22": "President Ndadaye's Day (observed)", "2007-11-01": "All Saints' Day", "2007-12-20": "Eid al Adha (estimated)", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-02-05": "Unity Day", "2008-04-06": "President Ntaryamira Day", - "2008-04-07": "President Ntaryamira Day (Observed)", + "2008-04-07": "President Ntaryamira Day (observed)", "2008-05-01": "Ascension Day; Labour Day", "2008-07-01": "Independence Day", "2008-08-15": "Assumption Day", @@ -583,11 +583,11 @@ "2009-07-01": "Independence Day", "2009-08-15": "Assumption Day", "2009-09-20": "Eid ul Fitr (estimated)", - "2009-09-21": "Eid ul Fitr (estimated) (Observed)", + "2009-09-21": "Eid ul Fitr (estimated) (observed)", "2009-10-13": "Prince Louis Rwagasore Day", "2009-10-21": "President Ndadaye's Day", "2009-11-01": "All Saints' Day", - "2009-11-02": "All Saints' Day (Observed)", + "2009-11-02": "All Saints' Day (observed)", "2009-11-27": "Eid al Adha (estimated)", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", @@ -597,7 +597,7 @@ "2010-05-13": "Ascension Day", "2010-07-01": "Independence Day", "2010-08-15": "Assumption Day", - "2010-08-16": "Assumption Day (Observed)", + "2010-08-16": "Assumption Day (observed)", "2010-09-10": "Eid ul Fitr (estimated)", "2010-10-13": "Prince Louis Rwagasore Day", "2010-10-21": "President Ndadaye's Day", @@ -608,7 +608,7 @@ "2011-02-05": "Unity Day", "2011-04-06": "President Ntaryamira Day", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-06-02": "Ascension Day", "2011-07-01": "Independence Day", "2011-08-15": "Assumption Day", @@ -617,24 +617,24 @@ "2011-10-21": "President Ndadaye's Day", "2011-11-01": "All Saints' Day", "2011-11-06": "Eid al Adha (estimated)", - "2011-11-07": "Eid al Adha (estimated) (Observed)", + "2011-11-07": "Eid al Adha (estimated) (observed)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-05": "Unity Day", - "2012-02-06": "Unity Day (Observed)", + "2012-02-06": "Unity Day (observed)", "2012-04-06": "President Ntaryamira Day", "2012-05-01": "Labour Day", "2012-05-17": "Ascension Day", "2012-07-01": "Independence Day", - "2012-07-02": "Independence Day (Observed)", + "2012-07-02": "Independence Day (observed)", "2012-08-15": "Assumption Day", "2012-08-19": "Eid ul Fitr (estimated)", - "2012-08-20": "Eid ul Fitr (estimated) (Observed)", + "2012-08-20": "Eid ul Fitr (estimated) (observed)", "2012-10-13": "Prince Louis Rwagasore Day", "2012-10-21": "President Ndadaye's Day", - "2012-10-22": "President Ndadaye's Day (Observed)", + "2012-10-22": "President Ndadaye's Day (observed)", "2012-10-26": "Eid al Adha (estimated)", "2012-11-01": "All Saints' Day", "2012-12-25": "Christmas Day", @@ -647,7 +647,7 @@ "2013-08-08": "Eid ul Fitr (estimated)", "2013-08-15": "Assumption Day", "2013-10-13": "Prince Louis Rwagasore Day", - "2013-10-14": "Prince Louis Rwagasore Day (Observed)", + "2013-10-14": "Prince Louis Rwagasore Day (observed)", "2013-10-15": "Eid al Adha (estimated)", "2013-10-21": "President Ndadaye's Day", "2013-11-01": "All Saints' Day", @@ -655,7 +655,7 @@ "2014-01-01": "New Year's Day", "2014-02-05": "Unity Day", "2014-04-06": "President Ntaryamira Day", - "2014-04-07": "President Ntaryamira Day (Observed)", + "2014-04-07": "President Ntaryamira Day (observed)", "2014-05-01": "Labour Day", "2014-05-29": "Ascension Day", "2014-07-01": "Independence Day", @@ -678,33 +678,33 @@ "2015-10-13": "Prince Louis Rwagasore Day", "2015-10-21": "President Ndadaye's Day", "2015-11-01": "All Saints' Day", - "2015-11-02": "All Saints' Day (Observed)", + "2015-11-02": "All Saints' Day (observed)", "2015-12-25": "Christmas Day", "2016-01-01": "New Year's Day", "2016-02-05": "Unity Day", "2016-04-06": "President Ntaryamira Day", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-05-05": "Ascension Day", "2016-07-01": "Independence Day", "2016-07-06": "Eid ul Fitr (estimated)", "2016-08-15": "Assumption Day", "2016-09-11": "Eid al Adha (estimated)", - "2016-09-12": "Eid al Adha (estimated) (Observed)", + "2016-09-12": "Eid al Adha (estimated) (observed)", "2016-10-13": "Prince Louis Rwagasore Day", "2016-10-21": "President Ndadaye's Day", "2016-11-01": "All Saints' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-05": "Unity Day", - "2017-02-06": "Unity Day (Observed)", + "2017-02-06": "Unity Day (observed)", "2017-04-06": "President Ntaryamira Day", "2017-05-01": "Labour Day", "2017-05-25": "Ascension Day", "2017-06-25": "Eid ul Fitr (estimated)", - "2017-06-26": "Eid ul Fitr (estimated) (Observed)", + "2017-06-26": "Eid ul Fitr (estimated) (observed)", "2017-07-01": "Independence Day", "2017-08-15": "Assumption Day", "2017-09-01": "Eid al Adha (estimated)", @@ -719,12 +719,12 @@ "2018-05-10": "Ascension Day", "2018-06-15": "Eid ul Fitr (estimated)", "2018-07-01": "Independence Day", - "2018-07-02": "Independence Day (Observed)", + "2018-07-02": "Independence Day (observed)", "2018-08-15": "Assumption Day", "2018-08-21": "Eid al Adha (estimated)", "2018-10-13": "Prince Louis Rwagasore Day", "2018-10-21": "President Ndadaye's Day", - "2018-10-22": "President Ndadaye's Day (Observed)", + "2018-10-22": "President Ndadaye's Day (observed)", "2018-11-01": "All Saints' Day", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -735,10 +735,10 @@ "2019-06-04": "Eid ul Fitr (estimated)", "2019-07-01": "Independence Day", "2019-08-11": "Eid al Adha (estimated)", - "2019-08-12": "Eid al Adha (estimated) (Observed)", + "2019-08-12": "Eid al Adha (estimated) (observed)", "2019-08-15": "Assumption Day", "2019-10-13": "Prince Louis Rwagasore Day", - "2019-10-14": "Prince Louis Rwagasore Day (Observed)", + "2019-10-14": "Prince Louis Rwagasore Day (observed)", "2019-10-21": "President Ndadaye's Day", "2019-11-01": "All Saints' Day", "2019-12-25": "Christmas Day", @@ -748,14 +748,14 @@ "2020-05-01": "Labour Day", "2020-05-21": "Ascension Day", "2020-05-24": "Eid ul Fitr (estimated)", - "2020-05-25": "Eid ul Fitr (estimated) (Observed)", + "2020-05-25": "Eid ul Fitr (estimated) (observed)", "2020-07-01": "Independence Day", "2020-07-31": "Eid al Adha (estimated)", "2020-08-15": "Assumption Day", "2020-10-13": "Prince Louis Rwagasore Day", "2020-10-21": "President Ndadaye's Day", "2020-11-01": "All Saints' Day", - "2020-11-02": "All Saints' Day (Observed)", + "2020-11-02": "All Saints' Day (observed)", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", "2021-02-05": "Unity Day", @@ -765,7 +765,7 @@ "2021-07-01": "Independence Day", "2021-07-20": "Eid al Adha (estimated)", "2021-08-15": "Assumption Day", - "2021-08-16": "Assumption Day (Observed)", + "2021-08-16": "Assumption Day (observed)", "2021-10-13": "Prince Louis Rwagasore Day", "2021-10-21": "President Ndadaye's Day", "2021-11-01": "All Saints' Day", @@ -774,7 +774,7 @@ "2022-02-05": "Unity Day", "2022-04-06": "President Ntaryamira Day", "2022-05-01": "Labour Day", - "2022-05-02": "Eid ul Fitr (estimated); Labour Day (Observed)", + "2022-05-02": "Eid ul Fitr (estimated); Labour Day (observed)", "2022-05-26": "Ascension Day", "2022-06-08": "President Nkurunziza Day", "2022-07-01": "Independence Day", @@ -784,11 +784,11 @@ "2022-10-21": "President Ndadaye's Day", "2022-11-01": "All Saints' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-05": "Unity Day", - "2023-02-06": "Unity Day (Observed)", + "2023-02-06": "Unity Day (observed)", "2023-04-06": "President Ntaryamira Day", "2023-04-21": "Eid ul Fitr (estimated)", "2023-05-01": "Labour Day", @@ -809,25 +809,25 @@ "2024-05-09": "Ascension Day", "2024-06-08": "President Nkurunziza Day", "2024-06-16": "Eid al Adha (estimated)", - "2024-06-17": "Eid al Adha (estimated) (Observed)", + "2024-06-17": "Eid al Adha (estimated) (observed)", "2024-07-01": "Independence Day", "2024-08-15": "Assumption Day", "2024-10-13": "Prince Louis Rwagasore Day", - "2024-10-14": "Prince Louis Rwagasore Day (Observed)", + "2024-10-14": "Prince Louis Rwagasore Day (observed)", "2024-10-21": "President Ndadaye's Day", "2024-11-01": "All Saints' Day", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-02-05": "Unity Day", "2025-03-30": "Eid ul Fitr (estimated)", - "2025-03-31": "Eid ul Fitr (estimated) (Observed)", + "2025-03-31": "Eid ul Fitr (estimated) (observed)", "2025-04-06": "President Ntaryamira Day", - "2025-04-07": "President Ntaryamira Day (Observed)", + "2025-04-07": "President Ntaryamira Day (observed)", "2025-05-01": "Labour Day", "2025-05-29": "Ascension Day", "2025-06-06": "Eid al Adha (estimated)", "2025-06-08": "President Nkurunziza Day", - "2025-06-09": "President Nkurunziza Day (Observed)", + "2025-06-09": "President Nkurunziza Day (observed)", "2025-07-01": "Independence Day", "2025-08-15": "Assumption Day", "2025-10-13": "Prince Louis Rwagasore Day", @@ -847,7 +847,7 @@ "2026-10-13": "Prince Louis Rwagasore Day", "2026-10-21": "President Ndadaye's Day", "2026-11-01": "All Saints' Day", - "2026-11-02": "All Saints' Day (Observed)", + "2026-11-02": "All Saints' Day (observed)", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-02-05": "Unity Day", @@ -856,11 +856,11 @@ "2027-05-01": "Labour Day", "2027-05-06": "Ascension Day", "2027-05-16": "Eid al Adha (estimated)", - "2027-05-17": "Eid al Adha (estimated) (Observed)", + "2027-05-17": "Eid al Adha (estimated) (observed)", "2027-06-08": "President Nkurunziza Day", "2027-07-01": "Independence Day", "2027-08-15": "Assumption Day", - "2027-08-16": "Assumption Day (Observed)", + "2027-08-16": "Assumption Day (observed)", "2027-10-13": "Prince Louis Rwagasore Day", "2027-10-21": "President Ndadaye's Day", "2027-11-01": "All Saints' Day", @@ -888,11 +888,11 @@ "2029-05-10": "Ascension Day", "2029-06-08": "President Nkurunziza Day", "2029-07-01": "Independence Day", - "2029-07-02": "Independence Day (Observed)", + "2029-07-02": "Independence Day (observed)", "2029-08-15": "Assumption Day", "2029-10-13": "Prince Louis Rwagasore Day", "2029-10-21": "President Ndadaye's Day", - "2029-10-22": "President Ndadaye's Day (Observed)", + "2029-10-22": "President Ndadaye's Day (observed)", "2029-11-01": "All Saints' Day", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -906,7 +906,7 @@ "2030-07-01": "Independence Day", "2030-08-15": "Assumption Day", "2030-10-13": "Prince Louis Rwagasore Day", - "2030-10-14": "Prince Louis Rwagasore Day (Observed)", + "2030-10-14": "Prince Louis Rwagasore Day (observed)", "2030-10-21": "President Ndadaye's Day", "2030-11-01": "All Saints' Day", "2030-12-25": "Christmas Day", @@ -915,11 +915,11 @@ "2031-02-05": "Unity Day", "2031-04-02": "Eid al Adha (estimated)", "2031-04-06": "President Ntaryamira Day", - "2031-04-07": "President Ntaryamira Day (Observed)", + "2031-04-07": "President Ntaryamira Day (observed)", "2031-05-01": "Labour Day", "2031-05-22": "Ascension Day", "2031-06-08": "President Nkurunziza Day", - "2031-06-09": "President Nkurunziza Day (Observed)", + "2031-06-09": "President Nkurunziza Day (observed)", "2031-07-01": "Independence Day", "2031-08-15": "Assumption Day", "2031-10-13": "Prince Louis Rwagasore Day", @@ -936,19 +936,19 @@ "2032-06-08": "President Nkurunziza Day", "2032-07-01": "Independence Day", "2032-08-15": "Assumption Day", - "2032-08-16": "Assumption Day (Observed)", + "2032-08-16": "Assumption Day (observed)", "2032-10-13": "Prince Louis Rwagasore Day", "2032-10-21": "President Ndadaye's Day", "2032-11-01": "All Saints' Day", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", "2033-01-02": "Eid ul Fitr (estimated)", - "2033-01-03": "Eid ul Fitr (estimated) (Observed)", + "2033-01-03": "Eid ul Fitr (estimated) (observed)", "2033-02-05": "Unity Day", "2033-03-11": "Eid al Adha (estimated)", "2033-04-06": "President Ntaryamira Day", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-05-26": "Ascension Day", "2033-06-08": "President Nkurunziza Day", "2033-07-01": "Independence Day", @@ -958,11 +958,11 @@ "2033-11-01": "All Saints' Day", "2033-12-23": "Eid ul Fitr (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-05": "Unity Day", - "2034-02-06": "Unity Day (Observed)", + "2034-02-06": "Unity Day (observed)", "2034-03-01": "Eid al Adha (estimated)", "2034-04-06": "President Ntaryamira Day", "2034-05-01": "Labour Day", @@ -978,17 +978,17 @@ "2035-01-01": "New Year's Day", "2035-02-05": "Unity Day", "2035-02-18": "Eid al Adha (estimated)", - "2035-02-19": "Eid al Adha (estimated) (Observed)", + "2035-02-19": "Eid al Adha (estimated) (observed)", "2035-04-06": "President Ntaryamira Day", "2035-05-01": "Labour Day", "2035-05-03": "Ascension Day", "2035-06-08": "President Nkurunziza Day", "2035-07-01": "Independence Day", - "2035-07-02": "Independence Day (Observed)", + "2035-07-02": "Independence Day (observed)", "2035-08-15": "Assumption Day", "2035-10-13": "Prince Louis Rwagasore Day", "2035-10-21": "President Ndadaye's Day", - "2035-10-22": "President Ndadaye's Day (Observed)", + "2035-10-22": "President Ndadaye's Day (observed)", "2035-11-01": "All Saints' Day", "2035-12-01": "Eid ul Fitr (estimated)", "2035-12-25": "Christmas Day", @@ -996,11 +996,11 @@ "2036-02-05": "Unity Day", "2036-02-07": "Eid al Adha (estimated)", "2036-04-06": "President Ntaryamira Day", - "2036-04-07": "President Ntaryamira Day (Observed)", + "2036-04-07": "President Ntaryamira Day (observed)", "2036-05-01": "Labour Day", "2036-05-22": "Ascension Day", "2036-06-08": "President Nkurunziza Day", - "2036-06-09": "President Nkurunziza Day (Observed)", + "2036-06-09": "President Nkurunziza Day (observed)", "2036-07-01": "Independence Day", "2036-08-15": "Assumption Day", "2036-10-13": "Prince Louis Rwagasore Day", @@ -1020,9 +1020,9 @@ "2037-10-13": "Prince Louis Rwagasore Day", "2037-10-21": "President Ndadaye's Day", "2037-11-01": "All Saints' Day", - "2037-11-02": "All Saints' Day (Observed)", + "2037-11-02": "All Saints' Day (observed)", "2037-11-08": "Eid ul Fitr (estimated)", - "2037-11-09": "Eid ul Fitr (estimated) (Observed)", + "2037-11-09": "Eid ul Fitr (estimated) (observed)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Eid al Adha (estimated)", @@ -1033,7 +1033,7 @@ "2038-06-08": "President Nkurunziza Day", "2038-07-01": "Independence Day", "2038-08-15": "Assumption Day", - "2038-08-16": "Assumption Day (Observed)", + "2038-08-16": "Assumption Day (observed)", "2038-10-13": "Prince Louis Rwagasore Day", "2038-10-21": "President Ndadaye's Day", "2038-10-29": "Eid ul Fitr (estimated)", @@ -1044,7 +1044,7 @@ "2039-02-05": "Unity Day", "2039-04-06": "President Ntaryamira Day", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-05-19": "Ascension Day", "2039-06-08": "President Nkurunziza Day", "2039-07-01": "Independence Day", @@ -1054,23 +1054,23 @@ "2039-10-21": "President Ndadaye's Day", "2039-11-01": "All Saints' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Eid al Adha (estimated)", + "2039-12-26": "Christmas Day (observed); Eid al Adha (estimated)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-05": "Unity Day", - "2040-02-06": "Unity Day (Observed)", + "2040-02-06": "Unity Day (observed)", "2040-04-06": "President Ntaryamira Day", "2040-05-01": "Labour Day", "2040-05-10": "Ascension Day", "2040-06-08": "President Nkurunziza Day", "2040-07-01": "Independence Day", - "2040-07-02": "Independence Day (Observed)", + "2040-07-02": "Independence Day (observed)", "2040-08-15": "Assumption Day", "2040-10-07": "Eid ul Fitr (estimated)", - "2040-10-08": "Eid ul Fitr (estimated) (Observed)", + "2040-10-08": "Eid ul Fitr (estimated) (observed)", "2040-10-13": "Prince Louis Rwagasore Day", "2040-10-21": "President Ndadaye's Day", - "2040-10-22": "President Ndadaye's Day (Observed)", + "2040-10-22": "President Ndadaye's Day (observed)", "2040-11-01": "All Saints' Day", "2040-12-14": "Eid al Adha (estimated)", "2040-12-25": "Christmas Day", @@ -1084,7 +1084,7 @@ "2041-08-15": "Assumption Day", "2041-09-26": "Eid ul Fitr (estimated)", "2041-10-13": "Prince Louis Rwagasore Day", - "2041-10-14": "Prince Louis Rwagasore Day (Observed)", + "2041-10-14": "Prince Louis Rwagasore Day (observed)", "2041-10-21": "President Ndadaye's Day", "2041-11-01": "All Saints' Day", "2041-12-04": "Eid al Adha (estimated)", @@ -1092,11 +1092,11 @@ "2042-01-01": "New Year's Day", "2042-02-05": "Unity Day", "2042-04-06": "President Ntaryamira Day", - "2042-04-07": "President Ntaryamira Day (Observed)", + "2042-04-07": "President Ntaryamira Day (observed)", "2042-05-01": "Labour Day", "2042-05-15": "Ascension Day", "2042-06-08": "President Nkurunziza Day", - "2042-06-09": "President Nkurunziza Day (Observed)", + "2042-06-09": "President Nkurunziza Day (observed)", "2042-07-01": "Independence Day", "2042-08-15": "Assumption Day", "2042-09-15": "Eid ul Fitr (estimated)", @@ -1104,7 +1104,7 @@ "2042-10-21": "President Ndadaye's Day", "2042-11-01": "All Saints' Day", "2042-11-23": "Eid al Adha (estimated)", - "2042-11-24": "Eid al Adha (estimated) (Observed)", + "2042-11-24": "Eid al Adha (estimated) (observed)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-05": "Unity Day", @@ -1118,14 +1118,14 @@ "2043-10-13": "Prince Louis Rwagasore Day", "2043-10-21": "President Ndadaye's Day", "2043-11-01": "All Saints' Day", - "2043-11-02": "All Saints' Day (Observed)", + "2043-11-02": "All Saints' Day (observed)", "2043-11-12": "Eid al Adha (estimated)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-02-05": "Unity Day", "2044-04-06": "President Ntaryamira Day", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-05-26": "Ascension Day", "2044-06-08": "President Nkurunziza Day", "2044-07-01": "Independence Day", @@ -1136,11 +1136,11 @@ "2044-10-31": "Eid al Adha (estimated)", "2044-11-01": "All Saints' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-05": "Unity Day", - "2045-02-06": "Unity Day (Observed)", + "2045-02-06": "Unity Day (observed)", "2045-04-06": "President Ntaryamira Day", "2045-05-01": "Labour Day", "2045-05-18": "Ascension Day", @@ -1159,13 +1159,13 @@ "2046-05-03": "Ascension Day", "2046-06-08": "President Nkurunziza Day", "2046-07-01": "Independence Day", - "2046-07-02": "Independence Day (Observed)", + "2046-07-02": "Independence Day (observed)", "2046-08-03": "Eid ul Fitr (estimated)", "2046-08-15": "Assumption Day", "2046-10-10": "Eid al Adha (estimated)", "2046-10-13": "Prince Louis Rwagasore Day", "2046-10-21": "President Ndadaye's Day", - "2046-10-22": "President Ndadaye's Day (Observed)", + "2046-10-22": "President Ndadaye's Day (observed)", "2046-11-01": "All Saints' Day", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1179,7 +1179,7 @@ "2047-08-15": "Assumption Day", "2047-09-30": "Eid al Adha (estimated)", "2047-10-13": "Prince Louis Rwagasore Day", - "2047-10-14": "Prince Louis Rwagasore Day (Observed)", + "2047-10-14": "Prince Louis Rwagasore Day (observed)", "2047-10-21": "President Ndadaye's Day", "2047-11-01": "All Saints' Day", "2047-12-25": "Christmas Day", @@ -1191,13 +1191,13 @@ "2048-06-08": "President Nkurunziza Day", "2048-07-01": "Independence Day", "2048-07-12": "Eid ul Fitr (estimated)", - "2048-07-13": "Eid ul Fitr (estimated) (Observed)", + "2048-07-13": "Eid ul Fitr (estimated) (observed)", "2048-08-15": "Assumption Day", "2048-09-19": "Eid al Adha (estimated)", "2048-10-13": "Prince Louis Rwagasore Day", "2048-10-21": "President Ndadaye's Day", "2048-11-01": "All Saints' Day", - "2048-11-02": "All Saints' Day (Observed)", + "2048-11-02": "All Saints' Day (observed)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-02-05": "Unity Day", @@ -1207,7 +1207,7 @@ "2049-06-08": "President Nkurunziza Day", "2049-07-01": "Eid ul Fitr (estimated); Independence Day", "2049-08-15": "Assumption Day", - "2049-08-16": "Assumption Day (Observed)", + "2049-08-16": "Assumption Day (observed)", "2049-09-08": "Eid al Adha (estimated)", "2049-10-13": "Prince Louis Rwagasore Day", "2049-10-21": "President Ndadaye's Day", @@ -1217,17 +1217,17 @@ "2050-02-05": "Unity Day", "2050-04-06": "President Ntaryamira Day", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-05-19": "Ascension Day", "2050-06-08": "President Nkurunziza Day", "2050-06-20": "Eid ul Fitr (estimated)", "2050-07-01": "Independence Day", "2050-08-15": "Assumption Day", "2050-08-28": "Eid al Adha (estimated)", - "2050-08-29": "Eid al Adha (estimated) (Observed)", + "2050-08-29": "Eid al Adha (estimated) (observed)", "2050-10-13": "Prince Louis Rwagasore Day", "2050-10-21": "President Ndadaye's Day", "2050-11-01": "All Saints' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BN_COMMON.json b/snapshots/countries/BN_COMMON.json index 09d0eab07..93613458a 100644 --- a/snapshots/countries/BN_COMMON.json +++ b/snapshots/countries/BN_COMMON.json @@ -1,6 +1,6 @@ { "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-02": "Lunar New Year", "1984-02-23": "National Day", "1984-04-28": "Isra Mi'raj (estimated)", @@ -9,9 +9,9 @@ "1984-06-30": "Eid al-Fitr (estimated)", "1984-07-01": "Eid al-Fitr (estimated)", "1984-07-02": "Eid al-Fitr (estimated)", - "1984-07-03": "Eid al-Fitr (estimated) (Observed)", + "1984-07-03": "Eid al-Fitr (estimated) (observed)", "1984-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1984-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "1984-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "1984-09-05": "Eid al-Adha (estimated)", "1984-09-26": "Islamic New Year (estimated)", "1984-12-04": "Birth of the Prophet (estimated)", @@ -22,95 +22,95 @@ "1985-04-17": "Isra Mi'raj (estimated)", "1985-05-20": "First Day of Ramadan (estimated)", "1985-05-31": "Armed Forces Day", - "1985-06-01": "Armed Forces Day (Observed)", + "1985-06-01": "Armed Forces Day (observed)", "1985-06-05": "Anniversary of the revelation of the Quran (estimated)", "1985-06-19": "Eid al-Fitr (estimated)", "1985-06-20": "Eid al-Fitr (estimated)", "1985-06-21": "Eid al-Fitr (estimated)", - "1985-06-22": "Eid al-Fitr (estimated) (Observed)", + "1985-06-22": "Eid al-Fitr (estimated) (observed)", "1985-07-15": "Sultan Hassanal Bolkiah's Birthday", "1985-08-26": "Eid al-Adha (estimated)", "1985-09-15": "Islamic New Year (estimated)", - "1985-09-16": "Islamic New Year (estimated) (Observed)", + "1985-09-16": "Islamic New Year (estimated) (observed)", "1985-11-24": "Birth of the Prophet (estimated)", - "1985-11-25": "Birth of the Prophet (estimated) (Observed)", + "1985-11-25": "Birth of the Prophet (estimated) (observed)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Lunar New Year", - "1986-02-10": "Lunar New Year (Observed)", + "1986-02-10": "Lunar New Year (observed)", "1986-02-23": "National Day", - "1986-02-24": "National Day (Observed)", + "1986-02-24": "National Day (observed)", "1986-04-06": "Isra Mi'raj (estimated)", - "1986-04-07": "Isra Mi'raj (estimated) (Observed)", + "1986-04-07": "Isra Mi'raj (estimated) (observed)", "1986-05-09": "First Day of Ramadan (estimated)", - "1986-05-10": "First Day of Ramadan (estimated) (Observed)", + "1986-05-10": "First Day of Ramadan (estimated) (observed)", "1986-05-25": "Anniversary of the revelation of the Quran (estimated)", - "1986-05-26": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "1986-05-26": "Anniversary of the revelation of the Quran (estimated) (observed)", "1986-05-31": "Armed Forces Day", "1986-06-08": "Eid al-Fitr (estimated)", "1986-06-09": "Eid al-Fitr (estimated)", "1986-06-10": "Eid al-Fitr (estimated)", - "1986-06-11": "Eid al-Fitr (estimated) (Observed)", + "1986-06-11": "Eid al-Fitr (estimated) (observed)", "1986-07-15": "Sultan Hassanal Bolkiah's Birthday", "1986-08-15": "Eid al-Adha (estimated)", - "1986-08-16": "Eid al-Adha (estimated) (Observed)", + "1986-08-16": "Eid al-Adha (estimated) (observed)", "1986-09-05": "Islamic New Year (estimated)", - "1986-09-06": "Islamic New Year (estimated) (Observed)", + "1986-09-06": "Islamic New Year (estimated) (observed)", "1986-11-14": "Birth of the Prophet (estimated)", - "1986-11-15": "Birth of the Prophet (estimated) (Observed)", + "1986-11-15": "Birth of the Prophet (estimated) (observed)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-29": "Lunar New Year", "1987-02-23": "National Day", "1987-03-27": "Isra Mi'raj (estimated)", - "1987-03-28": "Isra Mi'raj (estimated) (Observed)", + "1987-03-28": "Isra Mi'raj (estimated) (observed)", "1987-04-29": "First Day of Ramadan (estimated)", "1987-05-15": "Anniversary of the revelation of the Quran (estimated)", - "1987-05-16": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "1987-05-16": "Anniversary of the revelation of the Quran (estimated) (observed)", "1987-05-28": "Eid al-Fitr (estimated)", "1987-05-29": "Eid al-Fitr (estimated)", "1987-05-30": "Eid al-Fitr (estimated)", "1987-05-31": "Armed Forces Day", - "1987-06-01": "Armed Forces Day (Observed); Eid al-Fitr (estimated) (Observed)", + "1987-06-01": "Armed Forces Day (observed); Eid al-Fitr (estimated) (observed)", "1987-07-15": "Sultan Hassanal Bolkiah's Birthday", "1987-08-04": "Eid al-Adha (estimated)", "1987-08-25": "Islamic New Year (estimated)", "1987-11-03": "Birth of the Prophet (estimated)", "1987-12-25": "Christmas Day", - "1987-12-26": "Christmas Day (Observed)", + "1987-12-26": "Christmas Day (observed)", "1988-01-01": "New Year's Day", - "1988-01-02": "New Year's Day (Observed)", + "1988-01-02": "New Year's Day (observed)", "1988-02-17": "Lunar New Year", "1988-02-23": "National Day", "1988-03-15": "Isra Mi'raj (estimated)", "1988-04-17": "First Day of Ramadan (estimated)", - "1988-04-18": "First Day of Ramadan (estimated) (Observed)", + "1988-04-18": "First Day of Ramadan (estimated) (observed)", "1988-05-03": "Anniversary of the revelation of the Quran (estimated)", "1988-05-16": "Eid al-Fitr (estimated)", "1988-05-17": "Eid al-Fitr (estimated)", "1988-05-18": "Eid al-Fitr (estimated)", "1988-05-31": "Armed Forces Day", "1988-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1988-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "1988-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "1988-07-23": "Eid al-Adha (estimated)", "1988-08-13": "Islamic New Year (estimated)", "1988-10-22": "Birth of the Prophet (estimated)", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Lunar New Year", "1989-02-23": "National Day", "1989-03-05": "Isra Mi'raj (estimated)", - "1989-03-06": "Isra Mi'raj (estimated) (Observed)", + "1989-03-06": "Isra Mi'raj (estimated) (observed)", "1989-04-07": "First Day of Ramadan (estimated)", - "1989-04-08": "First Day of Ramadan (estimated) (Observed)", + "1989-04-08": "First Day of Ramadan (estimated) (observed)", "1989-04-23": "Anniversary of the revelation of the Quran (estimated)", - "1989-04-24": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "1989-04-24": "Anniversary of the revelation of the Quran (estimated) (observed)", "1989-05-06": "Eid al-Fitr (estimated)", "1989-05-07": "Eid al-Fitr (estimated)", "1989-05-08": "Eid al-Fitr (estimated)", - "1989-05-09": "Eid al-Fitr (estimated) (Observed)", + "1989-05-09": "Eid al-Fitr (estimated) (observed)", "1989-05-31": "Armed Forces Day", "1989-07-13": "Eid al-Adha (estimated)", "1989-07-15": "Sultan Hassanal Bolkiah's Birthday", @@ -121,62 +121,62 @@ "1990-01-27": "Lunar New Year", "1990-02-22": "Isra Mi'raj (estimated)", "1990-02-23": "National Day", - "1990-02-24": "National Day (Observed)", + "1990-02-24": "National Day (observed)", "1990-03-27": "First Day of Ramadan (estimated)", "1990-04-12": "Anniversary of the revelation of the Quran (estimated)", "1990-04-26": "Eid al-Fitr (estimated)", "1990-04-27": "Eid al-Fitr (estimated)", "1990-04-28": "Eid al-Fitr (estimated)", - "1990-04-30": "Eid al-Fitr (estimated) (Observed)", + "1990-04-30": "Eid al-Fitr (estimated) (observed)", "1990-05-31": "Armed Forces Day", "1990-07-02": "Eid al-Adha (estimated)", "1990-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1990-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "1990-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "1990-07-23": "Islamic New Year (estimated)", "1990-10-01": "Birth of the Prophet (estimated)", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-02-11": "Isra Mi'raj (estimated)", "1991-02-15": "Lunar New Year", - "1991-02-16": "Lunar New Year (Observed)", + "1991-02-16": "Lunar New Year (observed)", "1991-02-23": "National Day", "1991-03-17": "First Day of Ramadan (estimated)", - "1991-03-18": "First Day of Ramadan (estimated) (Observed)", + "1991-03-18": "First Day of Ramadan (estimated) (observed)", "1991-04-02": "Anniversary of the revelation of the Quran (estimated)", "1991-04-15": "Eid al-Fitr (estimated)", "1991-04-16": "Eid al-Fitr (estimated)", "1991-04-17": "Eid al-Fitr (estimated)", "1991-05-31": "Armed Forces Day", - "1991-06-01": "Armed Forces Day (Observed)", + "1991-06-01": "Armed Forces Day (observed)", "1991-06-22": "Eid al-Adha (estimated)", "1991-07-12": "Islamic New Year (estimated)", - "1991-07-13": "Islamic New Year (estimated) (Observed)", + "1991-07-13": "Islamic New Year (estimated) (observed)", "1991-07-15": "Sultan Hassanal Bolkiah's Birthday", "1991-09-20": "Birth of the Prophet (estimated)", - "1991-09-21": "Birth of the Prophet (estimated) (Observed)", + "1991-09-21": "Birth of the Prophet (estimated) (observed)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-31": "Isra Mi'raj (estimated)", - "1992-02-01": "Isra Mi'raj (estimated) (Observed)", + "1992-02-01": "Isra Mi'raj (estimated) (observed)", "1992-02-04": "Lunar New Year", "1992-02-23": "National Day", - "1992-02-24": "National Day (Observed)", + "1992-02-24": "National Day (observed)", "1992-03-05": "First Day of Ramadan (estimated)", "1992-03-21": "Anniversary of the revelation of the Quran (estimated)", "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-05": "Eid al-Fitr (estimated)", "1992-04-06": "Eid al-Fitr (estimated)", - "1992-04-07": "Eid al-Fitr (estimated) (Observed)", + "1992-04-07": "Eid al-Fitr (estimated) (observed)", "1992-05-31": "Armed Forces Day", - "1992-06-01": "Armed Forces Day (Observed)", + "1992-06-01": "Armed Forces Day (observed)", "1992-06-11": "Eid al-Adha (estimated)", "1992-07-01": "Islamic New Year (estimated)", "1992-07-15": "Sultan Hassanal Bolkiah's Birthday", "1992-09-09": "Birth of the Prophet (estimated)", "1992-12-25": "Christmas Day", - "1992-12-26": "Christmas Day (Observed)", + "1992-12-26": "Christmas Day (observed)", "1993-01-01": "New Year's Day", - "1993-01-02": "New Year's Day (Observed)", + "1993-01-02": "New Year's Day (observed)", "1993-01-20": "Isra Mi'raj (estimated)", "1993-01-23": "Lunar New Year", "1993-02-22": "First Day of Ramadan (estimated)", @@ -185,47 +185,47 @@ "1993-03-24": "Eid al-Fitr (estimated)", "1993-03-25": "Eid al-Fitr (estimated)", "1993-03-26": "Eid al-Fitr (estimated)", - "1993-03-27": "Eid al-Fitr (estimated) (Observed)", + "1993-03-27": "Eid al-Fitr (estimated) (observed)", "1993-05-31": "Armed Forces Day; Eid al-Adha (estimated)", "1993-06-21": "Islamic New Year (estimated)", "1993-07-15": "Sultan Hassanal Bolkiah's Birthday", "1993-08-29": "Birth of the Prophet (estimated)", - "1993-08-30": "Birth of the Prophet (estimated) (Observed)", + "1993-08-30": "Birth of the Prophet (estimated) (observed)", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-01-09": "Isra Mi'raj (estimated)", - "1994-01-10": "Isra Mi'raj (estimated) (Observed)", + "1994-01-10": "Isra Mi'raj (estimated) (observed)", "1994-02-10": "Lunar New Year", "1994-02-11": "First Day of Ramadan (estimated)", - "1994-02-12": "First Day of Ramadan (estimated) (Observed)", + "1994-02-12": "First Day of Ramadan (estimated) (observed)", "1994-02-23": "National Day", "1994-02-27": "Anniversary of the revelation of the Quran (estimated)", - "1994-02-28": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "1994-02-28": "Anniversary of the revelation of the Quran (estimated) (observed)", "1994-03-13": "Eid al-Fitr (estimated)", "1994-03-14": "Eid al-Fitr (estimated)", "1994-03-15": "Eid al-Fitr (estimated)", - "1994-03-16": "Eid al-Fitr (estimated) (Observed)", + "1994-03-16": "Eid al-Fitr (estimated) (observed)", "1994-05-20": "Eid al-Adha (estimated)", - "1994-05-21": "Eid al-Adha (estimated) (Observed)", + "1994-05-21": "Eid al-Adha (estimated) (observed)", "1994-05-31": "Armed Forces Day", "1994-06-10": "Islamic New Year (estimated)", - "1994-06-11": "Islamic New Year (estimated) (Observed)", + "1994-06-11": "Islamic New Year (estimated) (observed)", "1994-07-15": "Sultan Hassanal Bolkiah's Birthday", - "1994-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "1994-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "1994-08-19": "Birth of the Prophet (estimated)", - "1994-08-20": "Birth of the Prophet (estimated) (Observed)", + "1994-08-20": "Birth of the Prophet (estimated) (observed)", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1994-12-29": "Isra Mi'raj (estimated)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-31": "First Day of Ramadan (estimated); Lunar New Year", "1995-02-16": "Anniversary of the revelation of the Quran (estimated)", "1995-02-23": "National Day", "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-03": "Eid al-Fitr (estimated)", "1995-03-04": "Eid al-Fitr (estimated)", - "1995-03-06": "Eid al-Fitr (estimated) (Observed)", + "1995-03-06": "Eid al-Fitr (estimated) (observed)", "1995-05-09": "Eid al-Adha (estimated)", "1995-05-30": "Islamic New Year (estimated)", "1995-05-31": "Armed Forces Day", @@ -235,34 +235,34 @@ "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-01-21": "First Day of Ramadan (estimated)", - "1996-01-22": "First Day of Ramadan (estimated) (Observed)", + "1996-01-22": "First Day of Ramadan (estimated) (observed)", "1996-02-06": "Anniversary of the revelation of the Quran (estimated)", "1996-02-19": "Eid al-Fitr (estimated); Lunar New Year", "1996-02-20": "Eid al-Fitr (estimated)", "1996-02-21": "Eid al-Fitr (estimated)", "1996-02-23": "National Day", - "1996-02-24": "National Day (Observed)", + "1996-02-24": "National Day (observed)", "1996-04-27": "Eid al-Adha (estimated)", "1996-05-18": "Islamic New Year (estimated)", "1996-05-31": "Armed Forces Day", - "1996-06-01": "Armed Forces Day (Observed)", + "1996-06-01": "Armed Forces Day (observed)", "1996-07-15": "Sultan Hassanal Bolkiah's Birthday", "1996-07-27": "Birth of the Prophet (estimated)", "1996-12-08": "Isra Mi'raj (estimated)", - "1996-12-09": "Isra Mi'raj (estimated) (Observed)", + "1996-12-09": "Isra Mi'raj (estimated) (observed)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-10": "First Day of Ramadan (estimated)", - "1997-01-11": "First Day of Ramadan (estimated) (Observed)", + "1997-01-11": "First Day of Ramadan (estimated) (observed)", "1997-01-26": "Anniversary of the revelation of the Quran (estimated)", - "1997-01-27": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "1997-01-27": "Anniversary of the revelation of the Quran (estimated) (observed)", "1997-02-07": "Lunar New Year", - "1997-02-08": "Eid al-Fitr (estimated); Lunar New Year (Observed)", + "1997-02-08": "Eid al-Fitr (estimated); Lunar New Year (observed)", "1997-02-09": "Eid al-Fitr (estimated)", "1997-02-10": "Eid al-Fitr (estimated)", - "1997-02-11": "Eid al-Fitr (estimated) (Observed)", + "1997-02-11": "Eid al-Fitr (estimated) (observed)", "1997-02-23": "National Day", - "1997-02-24": "National Day (Observed)", + "1997-02-24": "National Day (observed)", "1997-04-17": "Eid al-Adha (estimated)", "1997-05-07": "Islamic New Year (estimated)", "1997-05-31": "Armed Forces Day", @@ -277,20 +277,20 @@ "1998-01-29": "Eid al-Fitr (estimated)", "1998-01-30": "Eid al-Fitr (estimated)", "1998-01-31": "Eid al-Fitr (estimated)", - "1998-02-02": "Eid al-Fitr (estimated) (Observed)", + "1998-02-02": "Eid al-Fitr (estimated) (observed)", "1998-02-23": "National Day", "1998-04-07": "Eid al-Adha (estimated)", "1998-04-27": "Islamic New Year (estimated)", "1998-05-31": "Armed Forces Day", - "1998-06-01": "Armed Forces Day (Observed)", + "1998-06-01": "Armed Forces Day (observed)", "1998-07-06": "Birth of the Prophet (estimated)", "1998-07-15": "Sultan Hassanal Bolkiah's Birthday", "1998-11-16": "Isra Mi'raj (estimated)", "1998-12-19": "First Day of Ramadan (estimated)", "1998-12-25": "Christmas Day", - "1998-12-26": "Christmas Day (Observed)", + "1998-12-26": "Christmas Day (observed)", "1999-01-01": "New Year's Day", - "1999-01-02": "New Year's Day (Observed)", + "1999-01-02": "New Year's Day (observed)", "1999-01-04": "Anniversary of the revelation of the Quran (estimated)", "1999-01-18": "Eid al-Fitr (estimated)", "1999-01-19": "Eid al-Fitr (estimated)", @@ -303,14 +303,14 @@ "1999-06-26": "Birth of the Prophet (estimated)", "1999-07-15": "Sultan Hassanal Bolkiah's Birthday", "1999-11-05": "Isra Mi'raj (estimated)", - "1999-11-06": "Isra Mi'raj (estimated) (Observed)", + "1999-11-06": "Isra Mi'raj (estimated) (observed)", "1999-12-09": "First Day of Ramadan (estimated)", "1999-12-25": "Anniversary of the revelation of the Quran (estimated); Christmas Day", "2000-01-01": "New Year's Day", "2000-01-08": "Eid al-Fitr", "2000-01-09": "Eid al-Fitr", "2000-01-10": "Eid al-Fitr", - "2000-01-11": "Eid al-Fitr (Observed)", + "2000-01-11": "Eid al-Fitr (observed)", "2000-02-05": "Lunar New Year", "2000-02-23": "National Day", "2000-03-16": "Eid al-Adha", @@ -328,13 +328,13 @@ "2001-01-01": "New Year's Day", "2001-01-24": "Lunar New Year", "2001-02-23": "National Day", - "2001-02-24": "National Day (Observed)", + "2001-02-24": "National Day (observed)", "2001-03-06": "Eid al-Adha", "2001-03-26": "Islamic New Year", "2001-05-31": "Armed Forces Day", "2001-06-04": "Birth of the Prophet", "2001-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2001-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2001-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2001-10-15": "Isra Mi'raj", "2001-11-17": "First Day of Ramadan", "2001-12-03": "Anniversary of the revelation of the Quran", @@ -346,27 +346,27 @@ "2002-02-12": "Lunar New Year", "2002-02-23": "Eid al-Adha; National Day", "2002-03-15": "Islamic New Year", - "2002-03-16": "Islamic New Year (Observed)", + "2002-03-16": "Islamic New Year (observed)", "2002-05-24": "Birth of the Prophet", - "2002-05-25": "Birth of the Prophet (Observed)", + "2002-05-25": "Birth of the Prophet (observed)", "2002-05-31": "Armed Forces Day", - "2002-06-01": "Armed Forces Day (Observed)", + "2002-06-01": "Armed Forces Day (observed)", "2002-07-15": "Sultan Hassanal Bolkiah's Birthday", "2002-10-04": "Isra Mi'raj", - "2002-10-05": "Isra Mi'raj (Observed)", + "2002-10-05": "Isra Mi'raj (observed)", "2002-11-06": "First Day of Ramadan", "2002-11-22": "Anniversary of the revelation of the Quran", - "2002-11-23": "Anniversary of the revelation of the Quran (Observed)", + "2002-11-23": "Anniversary of the revelation of the Quran (observed)", "2002-12-06": "Eid al-Fitr", "2002-12-07": "Eid al-Fitr", "2002-12-08": "Eid al-Fitr", - "2002-12-09": "Eid al-Fitr (Observed)", + "2002-12-09": "Eid al-Fitr (observed)", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-02-01": "Lunar New Year", "2003-02-12": "Eid al-Adha", "2003-02-23": "National Day", - "2003-02-24": "National Day (Observed)", + "2003-02-24": "National Day (observed)", "2003-03-05": "Islamic New Year", "2003-05-14": "Birth of the Prophet", "2003-05-31": "Armed Forces Day", @@ -377,51 +377,51 @@ "2003-11-26": "Eid al-Fitr", "2003-11-27": "Eid al-Fitr", "2003-11-28": "Eid al-Fitr", - "2003-11-29": "Eid al-Fitr (Observed)", + "2003-11-29": "Eid al-Fitr (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-01-22": "Lunar New Year", "2004-02-02": "Eid al-Adha", "2004-02-22": "Islamic New Year", - "2004-02-23": "Islamic New Year (Observed); National Day", + "2004-02-23": "Islamic New Year (observed); National Day", "2004-05-02": "Birth of the Prophet", - "2004-05-03": "Birth of the Prophet (Observed)", + "2004-05-03": "Birth of the Prophet (observed)", "2004-05-31": "Armed Forces Day", "2004-07-15": "Sultan Hassanal Bolkiah's Birthday", "2004-09-12": "Isra Mi'raj", - "2004-09-13": "Isra Mi'raj (Observed)", + "2004-09-13": "Isra Mi'raj (observed)", "2004-10-16": "First Day of Ramadan", "2004-11-01": "Anniversary of the revelation of the Quran", "2004-11-14": "Eid al-Fitr", "2004-11-15": "Eid al-Fitr", "2004-11-16": "Eid al-Fitr", - "2004-11-17": "Eid al-Fitr (Observed)", + "2004-11-17": "Eid al-Fitr (observed)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Eid al-Adha", - "2005-01-22": "Eid al-Adha (Observed)", + "2005-01-22": "Eid al-Adha (observed)", "2005-02-09": "Lunar New Year", "2005-02-10": "Islamic New Year", "2005-02-23": "National Day", "2005-04-21": "Birth of the Prophet", "2005-05-31": "Armed Forces Day", "2005-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2005-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2005-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2005-09-01": "Isra Mi'raj", "2005-10-05": "First Day of Ramadan", "2005-10-21": "Anniversary of the revelation of the Quran", - "2005-10-22": "Anniversary of the revelation of the Quran (Observed)", + "2005-10-22": "Anniversary of the revelation of the Quran (observed)", "2005-11-03": "Eid al-Fitr", "2005-11-04": "Eid al-Fitr", "2005-11-05": "Eid al-Fitr", - "2005-11-07": "Eid al-Fitr (Observed)", + "2005-11-07": "Eid al-Fitr (observed)", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-10": "Eid al-Adha", "2006-01-29": "Lunar New Year", - "2006-01-30": "Lunar New Year (Observed)", + "2006-01-30": "Lunar New Year (observed)", "2006-01-31": "Islamic New Year", "2006-02-23": "National Day", "2006-04-11": "Birth of the Prophet", @@ -429,7 +429,7 @@ "2006-07-15": "Sultan Hassanal Bolkiah's Birthday", "2006-08-22": "Isra Mi'raj", "2006-09-24": "First Day of Ramadan", - "2006-09-25": "First Day of Ramadan (Observed)", + "2006-09-25": "First Day of Ramadan (observed)", "2006-10-10": "Anniversary of the revelation of the Quran", "2006-10-24": "Eid al-Fitr", "2006-10-25": "Eid al-Fitr", @@ -439,20 +439,20 @@ "2007-01-01": "New Year's Day", "2007-01-20": "Islamic New Year", "2007-02-18": "Lunar New Year", - "2007-02-19": "Lunar New Year (Observed)", + "2007-02-19": "Lunar New Year (observed)", "2007-02-23": "National Day", - "2007-02-24": "National Day (Observed)", + "2007-02-24": "National Day (observed)", "2007-03-31": "Birth of the Prophet", "2007-05-31": "Armed Forces Day", "2007-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2007-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2007-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2007-08-11": "Isra Mi'raj", "2007-09-13": "First Day of Ramadan", "2007-09-29": "Anniversary of the revelation of the Quran", "2007-10-13": "Eid al-Fitr", "2007-10-14": "Eid al-Fitr", "2007-10-15": "Eid al-Fitr", - "2007-10-16": "Eid al-Fitr (Observed)", + "2007-10-16": "Eid al-Fitr (observed)", "2007-12-20": "Eid al-Adha", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -468,7 +468,7 @@ "2008-10-01": "Eid al-Fitr", "2008-10-02": "Eid al-Fitr", "2008-10-03": "Eid al-Fitr", - "2008-10-04": "Eid al-Fitr (Observed)", + "2008-10-04": "Eid al-Fitr (observed)", "2008-12-09": "Eid al-Adha", "2008-12-25": "Christmas Day", "2008-12-29": "Islamic New Year", @@ -477,7 +477,7 @@ "2009-02-23": "National Day", "2009-03-09": "Birth of the Prophet", "2009-05-31": "Armed Forces Day", - "2009-06-01": "Armed Forces Day (Observed)", + "2009-06-01": "Armed Forces Day (observed)", "2009-07-15": "Sultan Hassanal Bolkiah's Birthday", "2009-07-20": "Isra Mi'raj", "2009-08-22": "First Day of Ramadan", @@ -485,30 +485,30 @@ "2009-09-20": "Eid al-Fitr", "2009-09-21": "Eid al-Fitr", "2009-09-22": "Eid al-Fitr", - "2009-09-23": "Eid al-Fitr (Observed)", + "2009-09-23": "Eid al-Fitr (observed)", "2009-11-28": "Eid al-Adha", "2009-12-18": "Islamic New Year", - "2009-12-19": "Islamic New Year (Observed)", + "2009-12-19": "Islamic New Year (observed)", "2009-12-25": "Christmas Day", - "2009-12-26": "Christmas Day (Observed)", + "2009-12-26": "Christmas Day (observed)", "2010-01-01": "New Year's Day", - "2010-01-02": "New Year's Day (Observed)", + "2010-01-02": "New Year's Day (observed)", "2010-02-14": "Lunar New Year", - "2010-02-15": "Lunar New Year (Observed)", + "2010-02-15": "Lunar New Year (observed)", "2010-02-23": "National Day", "2010-02-26": "Birth of the Prophet", - "2010-02-27": "Birth of the Prophet (Observed)", + "2010-02-27": "Birth of the Prophet (observed)", "2010-05-31": "Armed Forces Day", "2010-07-09": "Isra Mi'raj", - "2010-07-10": "Isra Mi'raj (Observed)", + "2010-07-10": "Isra Mi'raj (observed)", "2010-07-15": "Sultan Hassanal Bolkiah's Birthday", "2010-08-11": "First Day of Ramadan", "2010-08-27": "Anniversary of the revelation of the Quran", - "2010-08-28": "Anniversary of the revelation of the Quran (Observed)", + "2010-08-28": "Anniversary of the revelation of the Quran (observed)", "2010-09-10": "Eid al-Fitr", "2010-09-11": "Eid al-Fitr", "2010-09-12": "Eid al-Fitr", - "2010-09-13": "Eid al-Fitr (Observed)", + "2010-09-13": "Eid al-Fitr (observed)", "2010-11-17": "Eid al-Adha", "2010-12-08": "Islamic New Year", "2010-12-25": "Christmas Day", @@ -519,48 +519,48 @@ "2011-05-31": "Armed Forces Day", "2011-06-29": "Isra Mi'raj", "2011-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2011-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2011-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2011-08-01": "First Day of Ramadan", "2011-08-17": "Anniversary of the revelation of the Quran", "2011-08-31": "Eid al-Fitr", "2011-09-01": "Eid al-Fitr", "2011-09-02": "Eid al-Fitr", - "2011-09-03": "Eid al-Fitr (Observed)", + "2011-09-03": "Eid al-Fitr (observed)", "2011-11-07": "Eid al-Adha", "2011-11-27": "Islamic New Year", - "2011-11-28": "Islamic New Year (Observed)", + "2011-11-28": "Islamic New Year (observed)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-23": "Lunar New Year", "2012-02-05": "Birth of the Prophet", - "2012-02-06": "Birth of the Prophet (Observed)", + "2012-02-06": "Birth of the Prophet (observed)", "2012-02-23": "National Day", "2012-05-31": "Armed Forces Day", "2012-06-17": "Isra Mi'raj", - "2012-06-18": "Isra Mi'raj (Observed)", + "2012-06-18": "Isra Mi'raj (observed)", "2012-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2012-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2012-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2012-07-20": "First Day of Ramadan", - "2012-07-21": "First Day of Ramadan (Observed)", + "2012-07-21": "First Day of Ramadan (observed)", "2012-08-05": "Anniversary of the revelation of the Quran", - "2012-08-06": "Anniversary of the revelation of the Quran (Observed)", + "2012-08-06": "Anniversary of the revelation of the Quran (observed)", "2012-08-19": "Eid al-Fitr", "2012-08-20": "Eid al-Fitr", "2012-08-21": "Eid al-Fitr", - "2012-08-22": "Eid al-Fitr (Observed)", + "2012-08-22": "Eid al-Fitr (observed)", "2012-10-26": "Eid al-Adha", - "2012-10-27": "Eid al-Adha (Observed)", + "2012-10-27": "Eid al-Adha (observed)", "2012-11-15": "Islamic New Year", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-24": "Birth of the Prophet", "2013-02-10": "Lunar New Year", - "2013-02-11": "Lunar New Year (Observed)", + "2013-02-11": "Lunar New Year (observed)", "2013-02-23": "National Day", "2013-05-31": "Armed Forces Day", - "2013-06-01": "Armed Forces Day (Observed)", + "2013-06-01": "Armed Forces Day (observed)", "2013-06-06": "Isra Mi'raj", "2013-07-09": "First Day of Ramadan", "2013-07-15": "Sultan Hassanal Bolkiah's Birthday", @@ -568,26 +568,26 @@ "2013-08-08": "Eid al-Fitr", "2013-08-09": "Eid al-Fitr", "2013-08-10": "Eid al-Fitr", - "2013-08-12": "Eid al-Fitr (Observed)", + "2013-08-12": "Eid al-Fitr (observed)", "2013-10-15": "Eid al-Adha", "2013-11-05": "Islamic New Year", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-14": "Birth of the Prophet", "2014-01-31": "Lunar New Year", - "2014-02-01": "Lunar New Year (Observed)", + "2014-02-01": "Lunar New Year (observed)", "2014-02-23": "National Day", - "2014-02-24": "National Day (Observed)", + "2014-02-24": "National Day (observed)", "2014-05-27": "Isra Mi'raj", "2014-05-31": "Armed Forces Day", "2014-06-29": "First Day of Ramadan", - "2014-06-30": "First Day of Ramadan (Observed)", + "2014-06-30": "First Day of Ramadan (observed)", "2014-07-15": "Anniversary of the revelation of the Quran; Sultan Hassanal Bolkiah's Birthday", "2014-07-29": "Eid al-Fitr", "2014-07-30": "Eid al-Fitr", "2014-07-31": "Eid al-Fitr", "2014-10-05": "Eid al-Adha", - "2014-10-06": "Eid al-Adha (Observed)", + "2014-10-06": "Eid al-Adha (observed)", "2014-10-25": "Islamic New Year", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", @@ -596,21 +596,21 @@ "2015-02-23": "National Day", "2015-05-16": "Isra Mi'raj", "2015-05-31": "Armed Forces Day", - "2015-06-01": "Armed Forces Day (Observed)", + "2015-06-01": "Armed Forces Day (observed)", "2015-06-18": "First Day of Ramadan", "2015-07-04": "Anniversary of the revelation of the Quran", "2015-07-15": "Sultan Hassanal Bolkiah's Birthday", "2015-07-18": "Eid al-Fitr", "2015-07-19": "Eid al-Fitr", "2015-07-20": "Eid al-Fitr", - "2015-07-21": "Eid al-Fitr (Observed)", + "2015-07-21": "Eid al-Fitr (observed)", "2015-09-24": "Eid al-Adha", "2015-10-15": "Islamic New Year", "2015-12-24": "Birth of the Prophet", "2015-12-25": "Christmas Day", - "2015-12-26": "Christmas Day (Observed)", + "2015-12-26": "Christmas Day (observed)", "2016-01-01": "New Year's Day", - "2016-01-02": "New Year's Day (Observed)", + "2016-01-02": "New Year's Day (observed)", "2016-02-08": "Lunar New Year", "2016-02-23": "National Day", "2016-05-05": "Isra Mi'raj", @@ -620,16 +620,16 @@ "2016-07-07": "Eid al-Fitr", "2016-07-08": "Eid al-Fitr", "2016-07-09": "Eid al-Fitr", - "2016-07-11": "Eid al-Fitr (Observed)", + "2016-07-11": "Eid al-Fitr (observed)", "2016-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2016-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2016-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2016-09-13": "Eid al-Adha", "2016-10-03": "Islamic New Year", "2016-12-12": "Birth of the Prophet", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-28": "Lunar New Year", "2017-02-23": "National Day", "2017-04-24": "Isra Mi'raj", @@ -642,16 +642,16 @@ "2017-07-15": "Sultan Hassanal Bolkiah's Birthday", "2017-09-02": "Eid al-Adha", "2017-09-22": "Islamic New Year", - "2017-09-23": "Islamic New Year (Observed)", + "2017-09-23": "Islamic New Year (observed)", "2017-10-05": "Sultan Hassanal Bolkiah's Golden Jubilee", "2017-12-01": "Birth of the Prophet", - "2017-12-02": "Birth of the Prophet (Observed)", + "2017-12-02": "Birth of the Prophet (observed)", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", "2018-02-16": "Lunar New Year", - "2018-02-17": "Lunar New Year (Observed)", + "2018-02-17": "Lunar New Year (observed)", "2018-02-23": "National Day", - "2018-02-24": "National Day (Observed)", + "2018-02-24": "National Day (observed)", "2018-04-14": "Isra Mi'raj", "2018-05-16": "First Day of Ramadan", "2018-05-31": "Armed Forces Day", @@ -659,9 +659,9 @@ "2018-06-15": "Eid al-Fitr", "2018-06-16": "Eid al-Fitr", "2018-06-17": "Eid al-Fitr", - "2018-06-18": "Eid al-Fitr (Observed)", + "2018-06-18": "Eid al-Fitr (observed)", "2018-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2018-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2018-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2018-08-22": "Eid al-Adha", "2018-09-12": "Islamic New Year", "2018-11-21": "Birth of the Prophet", @@ -673,43 +673,43 @@ "2019-05-06": "First Day of Ramadan", "2019-05-23": "Anniversary of the revelation of the Quran", "2019-05-31": "Armed Forces Day", - "2019-06-01": "Armed Forces Day (Observed)", + "2019-06-01": "Armed Forces Day (observed)", "2019-06-05": "Eid al-Fitr", "2019-06-06": "Eid al-Fitr", "2019-06-07": "Eid al-Fitr", - "2019-06-08": "Eid al-Fitr (Observed)", + "2019-06-08": "Eid al-Fitr (observed)", "2019-07-15": "Sultan Hassanal Bolkiah's Birthday", "2019-08-11": "Eid al-Adha", - "2019-08-12": "Eid al-Adha (Observed)", + "2019-08-12": "Eid al-Adha (observed)", "2019-09-01": "Islamic New Year", - "2019-09-02": "Islamic New Year (Observed)", + "2019-09-02": "Islamic New Year (observed)", "2019-11-09": "Birth of the Prophet", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Lunar New Year", "2020-02-23": "National Day", - "2020-02-24": "National Day (Observed)", + "2020-02-24": "National Day (observed)", "2020-03-22": "Isra Mi'raj", - "2020-03-23": "Isra Mi'raj (Observed)", + "2020-03-23": "Isra Mi'raj (observed)", "2020-04-25": "First Day of Ramadan", "2020-05-10": "Anniversary of the revelation of the Quran", - "2020-05-11": "Anniversary of the revelation of the Quran (Observed)", + "2020-05-11": "Anniversary of the revelation of the Quran (observed)", "2020-05-24": "Eid al-Fitr", "2020-05-25": "Eid al-Fitr", "2020-05-26": "Eid al-Fitr", - "2020-05-27": "Eid al-Fitr (Observed)", + "2020-05-27": "Eid al-Fitr (observed)", "2020-05-31": "Armed Forces Day", - "2020-06-01": "Armed Forces Day (Observed)", + "2020-06-01": "Armed Forces Day (observed)", "2020-07-15": "Sultan Hassanal Bolkiah's Birthday", "2020-08-01": "Eid al-Adha", "2020-08-20": "Islamic New Year", "2020-10-29": "Birth of the Prophet", "2020-12-25": "Christmas Day", - "2020-12-26": "Christmas Day (Observed)", + "2020-12-26": "Christmas Day (observed)", "2021-01-01": "New Year's Day", - "2021-01-02": "New Year's Day (Observed)", + "2021-01-02": "New Year's Day (observed)", "2021-02-12": "Lunar New Year", - "2021-02-13": "Lunar New Year (Observed)", + "2021-02-13": "Lunar New Year (observed)", "2021-02-23": "National Day", "2021-03-11": "Isra Mi'raj", "2021-04-13": "First Day of Ramadan", @@ -717,7 +717,7 @@ "2021-05-13": "Eid al-Fitr", "2021-05-14": "Eid al-Fitr", "2021-05-15": "Eid al-Fitr", - "2021-05-17": "Eid al-Fitr (Observed)", + "2021-05-17": "Eid al-Fitr (observed)", "2021-05-31": "Armed Forces Day", "2021-07-15": "Sultan Hassanal Bolkiah's Birthday", "2021-07-20": "Eid al-Adha", @@ -729,24 +729,24 @@ "2022-02-23": "National Day", "2022-03-01": "Isra Mi'raj", "2022-04-03": "First Day of Ramadan", - "2022-04-04": "First Day of Ramadan (Observed)", + "2022-04-04": "First Day of Ramadan (observed)", "2022-04-19": "Anniversary of the revelation of the Quran", "2022-05-03": "Eid al-Fitr", "2022-05-04": "Eid al-Fitr", "2022-05-05": "Eid al-Fitr", "2022-05-31": "Armed Forces Day", "2022-07-10": "Eid al-Adha", - "2022-07-11": "Eid al-Adha (Observed)", + "2022-07-11": "Eid al-Adha (observed)", "2022-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2022-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2022-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2022-07-30": "Islamic New Year", "2022-10-08": "Birth of the Prophet", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Lunar New Year", - "2023-01-23": "Lunar New Year (Observed)", + "2023-01-23": "Lunar New Year (observed)", "2023-02-18": "Isra Mi'raj", "2023-02-23": "National Day", "2023-03-23": "First Day of Ramadan", @@ -754,7 +754,7 @@ "2023-04-22": "Eid al-Fitr", "2023-04-23": "Eid al-Fitr", "2023-04-24": "Eid al-Fitr", - "2023-04-25": "Eid al-Fitr (Observed)", + "2023-04-25": "Eid al-Fitr (observed)", "2023-05-31": "Armed Forces Day", "2023-06-29": "Eid al-Adha", "2023-07-15": "Sultan Hassanal Bolkiah's Birthday", @@ -765,63 +765,63 @@ "2024-02-08": "Isra Mi'raj (estimated)", "2024-02-10": "Lunar New Year", "2024-02-23": "National Day", - "2024-02-24": "National Day (Observed)", + "2024-02-24": "National Day (observed)", "2024-03-11": "First Day of Ramadan (estimated)", "2024-03-27": "Anniversary of the revelation of the Quran (estimated)", "2024-04-10": "Eid al-Fitr (estimated)", "2024-04-11": "Eid al-Fitr (estimated)", "2024-04-12": "Eid al-Fitr (estimated)", - "2024-04-13": "Eid al-Fitr (estimated) (Observed)", + "2024-04-13": "Eid al-Fitr (estimated) (observed)", "2024-05-31": "Armed Forces Day", - "2024-06-01": "Armed Forces Day (Observed)", + "2024-06-01": "Armed Forces Day (observed)", "2024-06-16": "Eid al-Adha (estimated)", - "2024-06-17": "Eid al-Adha (estimated) (Observed)", + "2024-06-17": "Eid al-Adha (estimated) (observed)", "2024-07-07": "Islamic New Year (estimated)", - "2024-07-08": "Islamic New Year (estimated) (Observed)", + "2024-07-08": "Islamic New Year (estimated) (observed)", "2024-07-15": "Sultan Hassanal Bolkiah's Birthday", "2024-09-15": "Birth of the Prophet (estimated)", - "2024-09-16": "Birth of the Prophet (estimated) (Observed)", + "2024-09-16": "Birth of the Prophet (estimated) (observed)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-27": "Isra Mi'raj (estimated)", "2025-01-29": "Lunar New Year", "2025-02-23": "National Day", - "2025-02-24": "National Day (Observed)", + "2025-02-24": "National Day (observed)", "2025-03-01": "First Day of Ramadan (estimated)", "2025-03-17": "Anniversary of the revelation of the Quran (estimated)", "2025-03-30": "Eid al-Fitr (estimated)", "2025-03-31": "Eid al-Fitr (estimated)", "2025-04-01": "Eid al-Fitr (estimated)", - "2025-04-02": "Eid al-Fitr (estimated) (Observed)", + "2025-04-02": "Eid al-Fitr (estimated) (observed)", "2025-05-31": "Armed Forces Day", "2025-06-06": "Eid al-Adha (estimated)", - "2025-06-07": "Eid al-Adha (estimated) (Observed)", + "2025-06-07": "Eid al-Adha (estimated) (observed)", "2025-06-26": "Islamic New Year (estimated)", "2025-07-15": "Sultan Hassanal Bolkiah's Birthday", "2025-09-04": "Birth of the Prophet (estimated)", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-01-16": "Isra Mi'raj (estimated)", - "2026-01-17": "Isra Mi'raj (estimated) (Observed)", + "2026-01-17": "Isra Mi'raj (estimated) (observed)", "2026-02-17": "Lunar New Year", "2026-02-18": "First Day of Ramadan (estimated)", "2026-02-23": "National Day", "2026-03-06": "Anniversary of the revelation of the Quran (estimated)", - "2026-03-07": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2026-03-07": "Anniversary of the revelation of the Quran (estimated) (observed)", "2026-03-20": "Eid al-Fitr (estimated)", "2026-03-21": "Eid al-Fitr (estimated)", "2026-03-22": "Eid al-Fitr (estimated)", - "2026-03-23": "Eid al-Fitr (estimated) (Observed)", + "2026-03-23": "Eid al-Fitr (estimated) (observed)", "2026-05-27": "Eid al-Adha (estimated)", "2026-05-31": "Armed Forces Day", - "2026-06-01": "Armed Forces Day (Observed)", + "2026-06-01": "Armed Forces Day (observed)", "2026-06-16": "Islamic New Year (estimated)", "2026-07-15": "Sultan Hassanal Bolkiah's Birthday", "2026-08-25": "Birth of the Prophet (estimated)", "2026-12-25": "Christmas Day", - "2026-12-26": "Christmas Day (Observed)", + "2026-12-26": "Christmas Day (observed)", "2027-01-01": "New Year's Day", - "2027-01-02": "New Year's Day (Observed)", + "2027-01-02": "New Year's Day (observed)", "2027-01-05": "Isra Mi'raj (estimated)", "2027-02-06": "Lunar New Year", "2027-02-08": "First Day of Ramadan (estimated)", @@ -831,26 +831,26 @@ "2027-03-10": "Eid al-Fitr (estimated)", "2027-03-11": "Eid al-Fitr (estimated)", "2027-05-16": "Eid al-Adha (estimated)", - "2027-05-17": "Eid al-Adha (estimated) (Observed)", + "2027-05-17": "Eid al-Adha (estimated) (observed)", "2027-05-31": "Armed Forces Day", "2027-06-06": "Islamic New Year (estimated)", - "2027-06-07": "Islamic New Year (estimated) (Observed)", + "2027-06-07": "Islamic New Year (estimated) (observed)", "2027-07-15": "Sultan Hassanal Bolkiah's Birthday", "2027-08-14": "Birth of the Prophet (estimated)", "2027-12-25": "Christmas Day; Isra Mi'raj (estimated)", "2028-01-01": "New Year's Day", "2028-01-26": "Lunar New Year", "2028-01-28": "First Day of Ramadan (estimated)", - "2028-01-29": "First Day of Ramadan (estimated) (Observed)", + "2028-01-29": "First Day of Ramadan (estimated) (observed)", "2028-02-13": "Anniversary of the revelation of the Quran (estimated)", - "2028-02-14": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2028-02-14": "Anniversary of the revelation of the Quran (estimated) (observed)", "2028-02-23": "National Day", "2028-02-26": "Eid al-Fitr (estimated)", "2028-02-27": "Eid al-Fitr (estimated)", "2028-02-28": "Eid al-Fitr (estimated)", - "2028-02-29": "Eid al-Fitr (estimated) (Observed)", + "2028-02-29": "Eid al-Fitr (estimated) (observed)", "2028-05-05": "Eid al-Adha (estimated)", - "2028-05-06": "Eid al-Adha (estimated) (Observed)", + "2028-05-06": "Eid al-Adha (estimated) (observed)", "2028-05-25": "Islamic New Year (estimated)", "2028-05-31": "Armed Forces Day", "2028-07-15": "Sultan Hassanal Bolkiah's Birthday", @@ -864,14 +864,14 @@ "2029-02-14": "Eid al-Fitr (estimated)", "2029-02-15": "Eid al-Fitr (estimated)", "2029-02-16": "Eid al-Fitr (estimated)", - "2029-02-17": "Eid al-Fitr (estimated) (Observed)", + "2029-02-17": "Eid al-Fitr (estimated) (observed)", "2029-02-23": "National Day", - "2029-02-24": "National Day (Observed)", + "2029-02-24": "National Day (observed)", "2029-04-24": "Eid al-Adha (estimated)", "2029-05-14": "Islamic New Year (estimated)", "2029-05-31": "Armed Forces Day", "2029-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2029-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2029-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2029-07-24": "Birth of the Prophet (estimated)", "2029-12-03": "Isra Mi'raj (estimated)", "2029-12-25": "Christmas Day", @@ -879,15 +879,15 @@ "2030-01-05": "First Day of Ramadan (estimated)", "2030-01-21": "Anniversary of the revelation of the Quran (estimated)", "2030-02-03": "Lunar New Year", - "2030-02-04": "Eid al-Fitr (estimated); Lunar New Year (Observed)", + "2030-02-04": "Eid al-Fitr (estimated); Lunar New Year (observed)", "2030-02-05": "Eid al-Fitr (estimated)", "2030-02-06": "Eid al-Fitr (estimated)", "2030-02-23": "National Day", "2030-04-13": "Eid al-Adha (estimated)", "2030-05-03": "Islamic New Year (estimated)", - "2030-05-04": "Islamic New Year (estimated) (Observed)", + "2030-05-04": "Islamic New Year (estimated) (observed)", "2030-05-31": "Armed Forces Day", - "2030-06-01": "Armed Forces Day (Observed)", + "2030-06-01": "Armed Forces Day (observed)", "2030-07-13": "Birth of the Prophet (estimated)", "2030-07-15": "Sultan Hassanal Bolkiah's Birthday", "2030-11-23": "Isra Mi'raj (estimated)", @@ -899,9 +899,9 @@ "2031-01-24": "Eid al-Fitr (estimated)", "2031-01-25": "Eid al-Fitr (estimated)", "2031-01-26": "Eid al-Fitr (estimated)", - "2031-01-27": "Eid al-Fitr (estimated) (Observed)", + "2031-01-27": "Eid al-Fitr (estimated) (observed)", "2031-02-23": "National Day", - "2031-02-24": "National Day (Observed)", + "2031-02-24": "National Day (observed)", "2031-04-02": "Eid al-Adha (estimated)", "2031-04-23": "Islamic New Year (estimated)", "2031-05-31": "Armed Forces Day", @@ -915,15 +915,15 @@ "2032-01-14": "Eid al-Fitr (estimated)", "2032-01-15": "Eid al-Fitr (estimated)", "2032-01-16": "Eid al-Fitr (estimated)", - "2032-01-17": "Eid al-Fitr (estimated) (Observed)", + "2032-01-17": "Eid al-Fitr (estimated) (observed)", "2032-02-11": "Lunar New Year", "2032-02-23": "National Day", "2032-03-22": "Eid al-Adha (estimated)", "2032-04-11": "Islamic New Year (estimated)", - "2032-04-12": "Islamic New Year (estimated) (Observed)", + "2032-04-12": "Islamic New Year (estimated) (observed)", "2032-05-31": "Armed Forces Day", "2032-06-20": "Birth of the Prophet (estimated)", - "2032-06-21": "Birth of the Prophet (estimated) (Observed)", + "2032-06-21": "Birth of the Prophet (estimated) (observed)", "2032-07-15": "Sultan Hassanal Bolkiah's Birthday", "2032-11-01": "Isra Mi'raj (estimated)", "2032-12-04": "First Day of Ramadan (estimated)", @@ -933,30 +933,30 @@ "2033-01-02": "Eid al-Fitr (estimated)", "2033-01-03": "Eid al-Fitr (estimated)", "2033-01-04": "Eid al-Fitr (estimated)", - "2033-01-05": "Eid al-Fitr (estimated) (Observed)", + "2033-01-05": "Eid al-Fitr (estimated) (observed)", "2033-01-31": "Lunar New Year", "2033-02-23": "National Day", "2033-03-11": "Eid al-Adha (estimated)", - "2033-03-12": "Eid al-Adha (estimated) (Observed)", + "2033-03-12": "Eid al-Adha (estimated) (observed)", "2033-04-01": "Islamic New Year (estimated)", - "2033-04-02": "Islamic New Year (estimated) (Observed)", + "2033-04-02": "Islamic New Year (estimated) (observed)", "2033-05-31": "Armed Forces Day", "2033-06-09": "Birth of the Prophet (estimated)", "2033-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2033-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2033-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2033-10-21": "Isra Mi'raj (estimated)", - "2033-10-22": "Isra Mi'raj (estimated) (Observed)", + "2033-10-22": "Isra Mi'raj (estimated) (observed)", "2033-11-23": "First Day of Ramadan (estimated)", "2033-12-09": "Anniversary of the revelation of the Quran (estimated)", - "2033-12-10": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2033-12-10": "Anniversary of the revelation of the Quran (estimated) (observed)", "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-24": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day; Eid al-Fitr (estimated)", - "2033-12-26": "Christmas Day (Observed); Eid al-Fitr (estimated) (Observed)", + "2033-12-26": "Christmas Day (observed); Eid al-Fitr (estimated) (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-19": "Lunar New Year", - "2034-02-20": "Lunar New Year (Observed)", + "2034-02-20": "Lunar New Year (observed)", "2034-02-23": "National Day", "2034-03-01": "Eid al-Adha (estimated)", "2034-03-21": "Islamic New Year (estimated)", @@ -965,7 +965,7 @@ "2034-07-15": "Sultan Hassanal Bolkiah's Birthday", "2034-10-10": "Isra Mi'raj (estimated)", "2034-11-12": "First Day of Ramadan (estimated)", - "2034-11-13": "First Day of Ramadan (estimated) (Observed)", + "2034-11-13": "First Day of Ramadan (estimated) (observed)", "2034-11-28": "Anniversary of the revelation of the Quran (estimated)", "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-13": "Eid al-Fitr (estimated)", @@ -974,23 +974,23 @@ "2035-01-01": "New Year's Day", "2035-02-08": "Lunar New Year", "2035-02-18": "Eid al-Adha (estimated)", - "2035-02-19": "Eid al-Adha (estimated) (Observed)", + "2035-02-19": "Eid al-Adha (estimated) (observed)", "2035-02-23": "National Day", - "2035-02-24": "National Day (Observed)", + "2035-02-24": "National Day (observed)", "2035-03-11": "Islamic New Year (estimated)", - "2035-03-12": "Islamic New Year (estimated) (Observed)", + "2035-03-12": "Islamic New Year (estimated) (observed)", "2035-05-20": "Birth of the Prophet (estimated)", - "2035-05-21": "Birth of the Prophet (estimated) (Observed)", + "2035-05-21": "Birth of the Prophet (estimated) (observed)", "2035-05-31": "Armed Forces Day", "2035-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2035-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2035-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2035-09-29": "Isra Mi'raj (estimated)", "2035-11-01": "First Day of Ramadan (estimated)", "2035-11-17": "Anniversary of the revelation of the Quran (estimated)", "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-02": "Eid al-Fitr (estimated)", "2035-12-03": "Eid al-Fitr (estimated)", - "2035-12-04": "Eid al-Fitr (estimated) (Observed)", + "2035-12-04": "Eid al-Fitr (estimated) (observed)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-28": "Lunar New Year", @@ -1006,16 +1006,16 @@ "2036-11-19": "Eid al-Fitr (estimated)", "2036-11-20": "Eid al-Fitr (estimated)", "2036-11-21": "Eid al-Fitr (estimated)", - "2036-11-22": "Eid al-Fitr (estimated) (Observed)", + "2036-11-22": "Eid al-Fitr (estimated) (observed)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-26": "Eid al-Adha (estimated)", "2037-02-15": "Lunar New Year", - "2037-02-16": "Islamic New Year (estimated); Lunar New Year (Observed)", + "2037-02-16": "Islamic New Year (estimated); Lunar New Year (observed)", "2037-02-23": "National Day", "2037-04-28": "Birth of the Prophet (estimated)", "2037-05-31": "Armed Forces Day", - "2037-06-01": "Armed Forces Day (Observed)", + "2037-06-01": "Armed Forces Day (observed)", "2037-07-15": "Sultan Hassanal Bolkiah's Birthday", "2037-09-07": "Isra Mi'raj (estimated)", "2037-10-10": "First Day of Ramadan (estimated)", @@ -1023,15 +1023,15 @@ "2037-11-08": "Eid al-Fitr (estimated)", "2037-11-09": "Eid al-Fitr (estimated)", "2037-11-10": "Eid al-Fitr (estimated)", - "2037-11-11": "Eid al-Fitr (estimated) (Observed)", + "2037-11-11": "Eid al-Fitr (estimated) (observed)", "2037-12-25": "Christmas Day", - "2037-12-26": "Christmas Day (Observed)", + "2037-12-26": "Christmas Day (observed)", "2038-01-01": "New Year's Day", - "2038-01-02": "New Year's Day (Observed)", + "2038-01-02": "New Year's Day (observed)", "2038-01-16": "Eid al-Adha (estimated)", "2038-02-04": "Lunar New Year", "2038-02-05": "Islamic New Year (estimated)", - "2038-02-06": "Islamic New Year (estimated) (Observed)", + "2038-02-06": "Islamic New Year (estimated) (observed)", "2038-02-23": "National Day", "2038-04-17": "Birth of the Prophet (estimated)", "2038-05-31": "Armed Forces Day", @@ -1042,7 +1042,7 @@ "2038-10-29": "Eid al-Fitr (estimated)", "2038-10-30": "Eid al-Fitr (estimated)", "2038-10-31": "Eid al-Fitr (estimated)", - "2038-11-01": "Eid al-Fitr (estimated) (Observed)", + "2038-11-01": "Eid al-Fitr (estimated) (observed)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", "2039-01-05": "Eid al-Adha (estimated)", @@ -1052,87 +1052,87 @@ "2039-04-06": "Birth of the Prophet (estimated)", "2039-05-31": "Armed Forces Day", "2039-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2039-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2039-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2039-08-17": "Isra Mi'raj (estimated)", "2039-09-19": "First Day of Ramadan (estimated)", "2039-10-05": "Anniversary of the revelation of the Quran (estimated)", "2039-10-19": "Eid al-Fitr (estimated)", "2039-10-20": "Eid al-Fitr (estimated)", "2039-10-21": "Eid al-Fitr (estimated)", - "2039-10-22": "Eid al-Fitr (estimated) (Observed)", + "2039-10-22": "Eid al-Fitr (estimated) (observed)", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Eid al-Adha (estimated)", + "2039-12-26": "Christmas Day (observed); Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-15": "Islamic New Year (estimated)", - "2040-01-16": "Islamic New Year (estimated) (Observed)", + "2040-01-16": "Islamic New Year (estimated) (observed)", "2040-02-12": "Lunar New Year", - "2040-02-13": "Lunar New Year (Observed)", + "2040-02-13": "Lunar New Year (observed)", "2040-02-23": "National Day", "2040-03-25": "Birth of the Prophet (estimated)", - "2040-03-26": "Birth of the Prophet (estimated) (Observed)", + "2040-03-26": "Birth of the Prophet (estimated) (observed)", "2040-05-31": "Armed Forces Day", "2040-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2040-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2040-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2040-08-05": "Isra Mi'raj (estimated)", - "2040-08-06": "Isra Mi'raj (estimated) (Observed)", + "2040-08-06": "Isra Mi'raj (estimated) (observed)", "2040-09-07": "First Day of Ramadan (estimated)", - "2040-09-08": "First Day of Ramadan (estimated) (Observed)", + "2040-09-08": "First Day of Ramadan (estimated) (observed)", "2040-09-23": "Anniversary of the revelation of the Quran (estimated)", - "2040-09-24": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2040-09-24": "Anniversary of the revelation of the Quran (estimated) (observed)", "2040-10-07": "Eid al-Fitr (estimated)", "2040-10-08": "Eid al-Fitr (estimated)", "2040-10-09": "Eid al-Fitr (estimated)", - "2040-10-10": "Eid al-Fitr (estimated) (Observed)", + "2040-10-10": "Eid al-Fitr (estimated) (observed)", "2040-12-14": "Eid al-Adha (estimated)", - "2040-12-15": "Eid al-Adha (estimated) (Observed)", + "2040-12-15": "Eid al-Adha (estimated) (observed)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-04": "Islamic New Year (estimated)", - "2041-01-05": "Islamic New Year (estimated) (Observed)", + "2041-01-05": "Islamic New Year (estimated) (observed)", "2041-02-01": "Lunar New Year", - "2041-02-02": "Lunar New Year (Observed)", + "2041-02-02": "Lunar New Year (observed)", "2041-02-23": "National Day", "2041-03-15": "Birth of the Prophet (estimated)", - "2041-03-16": "Birth of the Prophet (estimated) (Observed)", + "2041-03-16": "Birth of the Prophet (estimated) (observed)", "2041-05-31": "Armed Forces Day", - "2041-06-01": "Armed Forces Day (Observed)", + "2041-06-01": "Armed Forces Day (observed)", "2041-07-15": "Sultan Hassanal Bolkiah's Birthday", "2041-07-25": "Isra Mi'raj (estimated)", "2041-08-28": "First Day of Ramadan (estimated)", "2041-09-13": "Anniversary of the revelation of the Quran (estimated)", - "2041-09-14": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2041-09-14": "Anniversary of the revelation of the Quran (estimated) (observed)", "2041-09-26": "Eid al-Fitr (estimated)", "2041-09-27": "Eid al-Fitr (estimated)", "2041-09-28": "Eid al-Fitr (estimated)", - "2041-09-30": "Eid al-Fitr (estimated) (Observed)", + "2041-09-30": "Eid al-Fitr (estimated) (observed)", "2041-12-04": "Eid al-Adha (estimated)", "2041-12-24": "Islamic New Year (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-22": "Lunar New Year", "2042-02-23": "National Day", - "2042-02-24": "National Day (Observed)", + "2042-02-24": "National Day (observed)", "2042-03-04": "Birth of the Prophet (estimated)", "2042-05-31": "Armed Forces Day", "2042-07-15": "Isra Mi'raj (estimated); Sultan Hassanal Bolkiah's Birthday", "2042-08-17": "First Day of Ramadan (estimated)", - "2042-08-18": "First Day of Ramadan (estimated) (Observed)", + "2042-08-18": "First Day of Ramadan (estimated) (observed)", "2042-09-02": "Anniversary of the revelation of the Quran (estimated)", "2042-09-15": "Eid al-Fitr (estimated)", "2042-09-16": "Eid al-Fitr (estimated)", "2042-09-17": "Eid al-Fitr (estimated)", "2042-11-23": "Eid al-Adha (estimated)", - "2042-11-24": "Eid al-Adha (estimated) (Observed)", + "2042-11-24": "Eid al-Adha (estimated) (observed)", "2042-12-14": "Islamic New Year (estimated)", - "2042-12-15": "Islamic New Year (estimated) (Observed)", + "2042-12-15": "Islamic New Year (estimated) (observed)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Lunar New Year", "2043-02-22": "Birth of the Prophet (estimated)", - "2043-02-23": "Birth of the Prophet (estimated) (Observed); National Day", + "2043-02-23": "Birth of the Prophet (estimated) (observed); National Day", "2043-05-31": "Armed Forces Day", - "2043-06-01": "Armed Forces Day (Observed)", + "2043-06-01": "Armed Forces Day (observed)", "2043-07-04": "Isra Mi'raj (estimated)", "2043-07-15": "Sultan Hassanal Bolkiah's Birthday", "2043-08-06": "First Day of Ramadan (estimated)", @@ -1140,35 +1140,35 @@ "2043-09-04": "Eid al-Fitr (estimated)", "2043-09-05": "Eid al-Fitr (estimated)", "2043-09-06": "Eid al-Fitr (estimated)", - "2043-09-07": "Eid al-Fitr (estimated) (Observed)", + "2043-09-07": "Eid al-Fitr (estimated) (observed)", "2043-11-12": "Eid al-Adha (estimated)", "2043-12-03": "Islamic New Year (estimated)", "2043-12-25": "Christmas Day", - "2043-12-26": "Christmas Day (Observed)", + "2043-12-26": "Christmas Day (observed)", "2044-01-01": "New Year's Day", - "2044-01-02": "New Year's Day (Observed)", + "2044-01-02": "New Year's Day (observed)", "2044-01-30": "Lunar New Year", "2044-02-11": "Birth of the Prophet (estimated)", "2044-02-23": "National Day", "2044-05-31": "Armed Forces Day", "2044-06-23": "Isra Mi'raj (estimated)", "2044-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2044-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2044-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2044-07-26": "First Day of Ramadan (estimated)", "2044-08-11": "Anniversary of the revelation of the Quran (estimated)", "2044-08-24": "Eid al-Fitr (estimated)", "2044-08-25": "Eid al-Fitr (estimated)", "2044-08-26": "Eid al-Fitr (estimated)", - "2044-08-27": "Eid al-Fitr (estimated) (Observed)", + "2044-08-27": "Eid al-Fitr (estimated) (observed)", "2044-10-31": "Eid al-Adha (estimated)", "2044-11-21": "Islamic New Year (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-30": "Birth of the Prophet (estimated)", "2045-02-17": "Lunar New Year", - "2045-02-18": "Lunar New Year (Observed)", + "2045-02-18": "Lunar New Year (observed)", "2045-02-23": "National Day", "2045-05-31": "Armed Forces Day", "2045-06-13": "Isra Mi'raj (estimated)", @@ -1179,24 +1179,24 @@ "2045-08-16": "Eid al-Fitr (estimated)", "2045-10-21": "Eid al-Adha (estimated)", "2045-11-10": "Islamic New Year (estimated)", - "2045-11-11": "Islamic New Year (estimated) (Observed)", + "2045-11-11": "Islamic New Year (estimated) (observed)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-01-19": "Birth of the Prophet (estimated)", - "2046-01-20": "Birth of the Prophet (estimated) (Observed)", + "2046-01-20": "Birth of the Prophet (estimated) (observed)", "2046-02-06": "Lunar New Year", "2046-02-23": "National Day", - "2046-02-24": "National Day (Observed)", + "2046-02-24": "National Day (observed)", "2046-05-31": "Armed Forces Day", "2046-06-02": "Isra Mi'raj (estimated)", "2046-07-05": "First Day of Ramadan (estimated)", "2046-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2046-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2046-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2046-07-21": "Anniversary of the revelation of the Quran (estimated)", "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-04": "Eid al-Fitr (estimated)", "2046-08-05": "Eid al-Fitr (estimated)", - "2046-08-06": "Eid al-Fitr (estimated) (Observed)", + "2046-08-06": "Eid al-Fitr (estimated) (observed)", "2046-10-10": "Eid al-Adha (estimated)", "2046-10-31": "Islamic New Year (estimated)", "2046-12-25": "Christmas Day", @@ -1206,57 +1206,57 @@ "2047-02-23": "National Day", "2047-05-22": "Isra Mi'raj (estimated)", "2047-05-31": "Armed Forces Day", - "2047-06-01": "Armed Forces Day (Observed)", + "2047-06-01": "Armed Forces Day (observed)", "2047-06-24": "First Day of Ramadan (estimated)", "2047-07-10": "Anniversary of the revelation of the Quran (estimated)", "2047-07-15": "Sultan Hassanal Bolkiah's Birthday", "2047-07-24": "Eid al-Fitr (estimated)", "2047-07-25": "Eid al-Fitr (estimated)", "2047-07-26": "Eid al-Fitr (estimated)", - "2047-07-27": "Eid al-Fitr (estimated) (Observed)", + "2047-07-27": "Eid al-Fitr (estimated) (observed)", "2047-09-30": "Eid al-Adha (estimated)", "2047-10-20": "Islamic New Year (estimated)", - "2047-10-21": "Islamic New Year (estimated) (Observed)", + "2047-10-21": "Islamic New Year (estimated) (observed)", "2047-12-25": "Christmas Day", "2047-12-29": "Birth of the Prophet (estimated)", - "2047-12-30": "Birth of the Prophet (estimated) (Observed)", + "2047-12-30": "Birth of the Prophet (estimated) (observed)", "2048-01-01": "New Year's Day", "2048-02-14": "Lunar New Year", - "2048-02-15": "Lunar New Year (Observed)", + "2048-02-15": "Lunar New Year (observed)", "2048-02-23": "National Day", - "2048-02-24": "National Day (Observed)", + "2048-02-24": "National Day (observed)", "2048-05-10": "Isra Mi'raj (estimated)", - "2048-05-11": "Isra Mi'raj (estimated) (Observed)", + "2048-05-11": "Isra Mi'raj (estimated) (observed)", "2048-05-31": "Armed Forces Day", - "2048-06-01": "Armed Forces Day (Observed)", + "2048-06-01": "Armed Forces Day (observed)", "2048-06-12": "First Day of Ramadan (estimated)", - "2048-06-13": "First Day of Ramadan (estimated) (Observed)", + "2048-06-13": "First Day of Ramadan (estimated) (observed)", "2048-06-28": "Anniversary of the revelation of the Quran (estimated)", - "2048-06-29": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2048-06-29": "Anniversary of the revelation of the Quran (estimated) (observed)", "2048-07-12": "Eid al-Fitr (estimated)", "2048-07-13": "Eid al-Fitr (estimated)", "2048-07-14": "Eid al-Fitr (estimated)", - "2048-07-15": "Eid al-Fitr (estimated) (Observed); Sultan Hassanal Bolkiah's Birthday", + "2048-07-15": "Eid al-Fitr (estimated) (observed); Sultan Hassanal Bolkiah's Birthday", "2048-09-19": "Eid al-Adha (estimated)", "2048-10-09": "Islamic New Year (estimated)", - "2048-10-10": "Islamic New Year (estimated) (Observed)", + "2048-10-10": "Islamic New Year (estimated) (observed)", "2048-12-18": "Birth of the Prophet (estimated)", - "2048-12-19": "Birth of the Prophet (estimated) (Observed)", + "2048-12-19": "Birth of the Prophet (estimated) (observed)", "2048-12-25": "Christmas Day", - "2048-12-26": "Christmas Day (Observed)", + "2048-12-26": "Christmas Day (observed)", "2049-01-01": "New Year's Day", - "2049-01-02": "New Year's Day (Observed)", + "2049-01-02": "New Year's Day (observed)", "2049-02-02": "Lunar New Year", "2049-02-23": "National Day", "2049-04-29": "Isra Mi'raj (estimated)", "2049-05-31": "Armed Forces Day", "2049-06-02": "First Day of Ramadan (estimated)", "2049-06-18": "Anniversary of the revelation of the Quran (estimated)", - "2049-06-19": "Anniversary of the revelation of the Quran (estimated) (Observed)", + "2049-06-19": "Anniversary of the revelation of the Quran (estimated) (observed)", "2049-07-01": "Eid al-Fitr (estimated)", "2049-07-02": "Eid al-Fitr (estimated)", "2049-07-03": "Eid al-Fitr (estimated)", - "2049-07-05": "Eid al-Fitr (estimated) (Observed)", + "2049-07-05": "Eid al-Fitr (estimated) (observed)", "2049-07-15": "Sultan Hassanal Bolkiah's Birthday", "2049-09-08": "Eid al-Adha (estimated)", "2049-09-28": "Islamic New Year (estimated)", @@ -1264,22 +1264,22 @@ "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-01-23": "Lunar New Year", - "2050-01-24": "Lunar New Year (Observed)", + "2050-01-24": "Lunar New Year (observed)", "2050-02-23": "National Day", "2050-04-19": "Isra Mi'raj (estimated)", "2050-05-22": "First Day of Ramadan (estimated)", - "2050-05-23": "First Day of Ramadan (estimated) (Observed)", + "2050-05-23": "First Day of Ramadan (estimated) (observed)", "2050-05-31": "Armed Forces Day", "2050-06-07": "Anniversary of the revelation of the Quran (estimated)", "2050-06-20": "Eid al-Fitr (estimated)", "2050-06-21": "Eid al-Fitr (estimated)", "2050-06-22": "Eid al-Fitr (estimated)", "2050-07-15": "Sultan Hassanal Bolkiah's Birthday", - "2050-07-16": "Sultan Hassanal Bolkiah's Birthday (Observed)", + "2050-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2050-08-28": "Eid al-Adha (estimated)", - "2050-08-29": "Eid al-Adha (estimated) (Observed)", + "2050-08-29": "Eid al-Adha (estimated) (observed)", "2050-09-17": "Islamic New Year (estimated)", "2050-11-26": "Birth of the Prophet (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_B.json b/snapshots/countries/BO_B.json index 80ef65313..faa7f3a17 100644 --- a/snapshots/countries/BO_B.json +++ b/snapshots/countries/BO_B.json @@ -247,21 +247,21 @@ "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-06-09": "Corpus Christi", "1977-08-06": "Independence Day", "1977-11-18": "Beni Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-06": "Carnival", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-11-18": "Beni Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -305,14 +305,14 @@ "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-06-02": "Corpus Christi", "1983-08-06": "Independence Day", "1983-11-18": "Beni Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Carnival", "1984-03-06": "Carnival", "1984-04-20": "Good Friday", @@ -356,22 +356,22 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-06-02": "Corpus Christi", "1988-08-06": "Independence Day", "1988-11-01": "All Saints' Day", "1988-11-18": "Beni Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Carnival", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-11-02": "All Souls' Day", "1989-11-18": "Beni Day", "1989-12-25": "Christmas Day", @@ -420,22 +420,22 @@ "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-06-02": "Corpus Christi", "1994-08-06": "Independence Day", "1994-11-02": "All Souls' Day", "1994-11-18": "Beni Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-27": "Carnival", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", "1995-05-01": "Labor Day", "1995-06-15": "Corpus Christi", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-11-02": "All Souls' Day", "1995-11-18": "Beni Day", "1995-12-25": "Christmas Day", @@ -457,7 +457,7 @@ "1997-05-29": "Corpus Christi", "1997-08-06": "Independence Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-11-18": "Beni Day", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", @@ -487,7 +487,7 @@ "2000-05-01": "Labor Day", "2000-06-22": "Corpus Christi", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-11-02": "All Souls' Day", "2000-11-18": "Beni Day", "2000-12-25": "Christmas Day", @@ -519,7 +519,7 @@ "2003-06-19": "Corpus Christi", "2003-08-06": "Independence Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-11-18": "Beni Day", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", @@ -537,22 +537,22 @@ "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-26": "Corpus Christi", "2005-08-06": "Independence Day", "2005-11-02": "All Souls' Day", "2005-11-18": "Beni Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-27": "Carnival", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", "2006-05-01": "Labor Day", "2006-06-15": "Corpus Christi", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-11-02": "All Souls' Day", "2006-11-18": "Beni Day", "2006-12-25": "Christmas Day", @@ -574,7 +574,7 @@ "2008-05-22": "Corpus Christi", "2008-08-06": "Independence Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-11-18": "Beni Day", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", @@ -584,7 +584,7 @@ "2009-05-01": "Labor Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-08-06": "Independence Day", "2009-11-02": "All Souls' Day", "2009-11-18": "Beni Day", @@ -607,22 +607,22 @@ "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-08-06": "Independence Day", "2011-11-02": "All Souls' Day", "2011-11-18": "Beni Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-21": "Aymara New Year", @@ -648,12 +648,12 @@ "2014-03-04": "Carnival", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-08-06": "Independence Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-11-18": "Beni Day", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", @@ -664,7 +664,7 @@ "2015-05-01": "Labor Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-08-06": "Independence Day", "2015-11-02": "All Souls' Day", "2015-11-18": "Beni Day", @@ -675,18 +675,18 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-08-06": "Independence Day", "2016-11-02": "All Souls' Day", "2016-11-18": "Beni Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -694,7 +694,7 @@ "2017-06-15": "Corpus Christi", "2017-06-21": "Aymara New Year", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-11-02": "All Souls' Day", "2017-11-18": "Beni Day", "2017-12-25": "Christmas Day", @@ -730,7 +730,7 @@ "2020-05-01": "Labor Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-08-06": "Independence Day", "2020-10-17": "National Dignity Day", "2020-11-02": "All Souls' Day", @@ -755,7 +755,7 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", "2022-08-06": "Independence Day", @@ -763,11 +763,11 @@ "2022-11-02": "All Souls' Day", "2022-11-18": "Beni Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -775,7 +775,7 @@ "2023-06-08": "Corpus Christi", "2023-06-21": "Aymara New Year", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", "2023-11-18": "Beni Day", @@ -814,7 +814,7 @@ "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-08-06": "Independence Day", "2026-10-17": "National Dignity Day", "2026-11-02": "All Souls' Day", @@ -842,7 +842,7 @@ "2028-06-15": "Corpus Christi", "2028-06-21": "Aymara New Year", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", "2028-11-18": "Beni Day", @@ -905,7 +905,7 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", "2033-08-06": "Independence Day", @@ -913,11 +913,11 @@ "2033-11-02": "All Souls' Day", "2033-11-18": "Beni Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -925,7 +925,7 @@ "2034-06-08": "Corpus Christi", "2034-06-21": "Aymara New Year", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", "2034-11-18": "Beni Day", @@ -964,7 +964,7 @@ "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-08-06": "Independence Day", "2037-10-17": "National Dignity Day", "2037-11-02": "All Souls' Day", @@ -989,7 +989,7 @@ "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", "2039-08-06": "Independence Day", @@ -997,11 +997,11 @@ "2039-11-02": "All Souls' Day", "2039-11-18": "Beni Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -1047,7 +1047,7 @@ "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-08-06": "Independence Day", "2043-10-17": "National Dignity Day", "2043-11-02": "All Souls' Day", @@ -1059,7 +1059,7 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", "2044-08-06": "Independence Day", @@ -1067,11 +1067,11 @@ "2044-11-02": "All Souls' Day", "2044-11-18": "Beni Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -1079,7 +1079,7 @@ "2045-06-08": "Corpus Christi", "2045-06-21": "Aymara New Year", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", "2045-11-18": "Beni Day", @@ -1118,7 +1118,7 @@ "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-08-06": "Independence Day", "2048-10-17": "National Dignity Day", "2048-11-02": "All Souls' Day", @@ -1143,7 +1143,7 @@ "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", "2050-08-06": "Independence Day", @@ -1151,5 +1151,5 @@ "2050-11-02": "All Souls' Day", "2050-11-18": "Beni Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_C.json b/snapshots/countries/BO_C.json index 4dee34037..6a03f626a 100644 --- a/snapshots/countries/BO_C.json +++ b/snapshots/countries/BO_C.json @@ -247,21 +247,21 @@ "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-06-09": "Corpus Christi", "1977-08-06": "Independence Day", "1977-09-14": "Cochabamba Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-06": "Carnival", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-09-14": "Cochabamba Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -305,14 +305,14 @@ "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-06-02": "Corpus Christi", "1983-08-06": "Independence Day", "1983-09-14": "Cochabamba Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Carnival", "1984-03-06": "Carnival", "1984-04-20": "Good Friday", @@ -356,22 +356,22 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-06-02": "Corpus Christi", "1988-08-06": "Independence Day", "1988-09-14": "Cochabamba Day", "1988-11-01": "All Saints' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Carnival", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-09-14": "Cochabamba Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -420,22 +420,22 @@ "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-06-02": "Corpus Christi", "1994-08-06": "Independence Day", "1994-09-14": "Cochabamba Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-27": "Carnival", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", "1995-05-01": "Labor Day", "1995-06-15": "Corpus Christi", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-09-14": "Cochabamba Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -458,7 +458,7 @@ "1997-08-06": "Independence Day", "1997-09-14": "Cochabamba Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-02-23": "Carnival", @@ -487,7 +487,7 @@ "2000-05-01": "Labor Day", "2000-06-22": "Corpus Christi", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-09-14": "Cochabamba Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -520,7 +520,7 @@ "2003-08-06": "Independence Day", "2003-09-14": "Cochabamba Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-02-23": "Carnival", @@ -537,22 +537,22 @@ "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-26": "Corpus Christi", "2005-08-06": "Independence Day", "2005-09-14": "Cochabamba Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-27": "Carnival", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", "2006-05-01": "Labor Day", "2006-06-15": "Corpus Christi", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-09-14": "Cochabamba Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -575,7 +575,7 @@ "2008-08-06": "Independence Day", "2008-09-14": "Cochabamba Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-23": "Carnival", @@ -584,7 +584,7 @@ "2009-05-01": "Labor Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-08-06": "Independence Day", "2009-09-14": "Cochabamba Day", "2009-11-02": "All Souls' Day", @@ -607,22 +607,22 @@ "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-08-06": "Independence Day", "2011-09-14": "Cochabamba Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-21": "Aymara New Year", @@ -648,13 +648,13 @@ "2014-03-04": "Carnival", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-08-06": "Independence Day", "2014-09-14": "Cochabamba Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-22": "Plurinational State Foundation Day", @@ -664,7 +664,7 @@ "2015-05-01": "Labor Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-08-06": "Independence Day", "2015-09-14": "Cochabamba Day", "2015-11-02": "All Souls' Day", @@ -675,18 +675,18 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-08-06": "Independence Day", "2016-09-14": "Cochabamba Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -694,7 +694,7 @@ "2017-06-15": "Corpus Christi", "2017-06-21": "Aymara New Year", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-09-14": "Cochabamba Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -730,7 +730,7 @@ "2020-05-01": "Labor Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-08-06": "Independence Day", "2020-09-14": "Cochabamba Day", "2020-10-17": "National Dignity Day", @@ -755,7 +755,7 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", "2022-08-06": "Independence Day", @@ -763,11 +763,11 @@ "2022-10-17": "National Dignity Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -775,7 +775,7 @@ "2023-06-08": "Corpus Christi", "2023-06-21": "Aymara New Year", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-09-14": "Cochabamba Day", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", @@ -814,7 +814,7 @@ "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-08-06": "Independence Day", "2026-09-14": "Cochabamba Day", "2026-10-17": "National Dignity Day", @@ -842,7 +842,7 @@ "2028-06-15": "Corpus Christi", "2028-06-21": "Aymara New Year", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-09-14": "Cochabamba Day", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", @@ -905,7 +905,7 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", "2033-08-06": "Independence Day", @@ -913,11 +913,11 @@ "2033-10-17": "National Dignity Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -925,7 +925,7 @@ "2034-06-08": "Corpus Christi", "2034-06-21": "Aymara New Year", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-09-14": "Cochabamba Day", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", @@ -964,7 +964,7 @@ "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-08-06": "Independence Day", "2037-09-14": "Cochabamba Day", "2037-10-17": "National Dignity Day", @@ -989,7 +989,7 @@ "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", "2039-08-06": "Independence Day", @@ -997,11 +997,11 @@ "2039-10-17": "National Dignity Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -1047,7 +1047,7 @@ "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-08-06": "Independence Day", "2043-09-14": "Cochabamba Day", "2043-10-17": "National Dignity Day", @@ -1059,7 +1059,7 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", "2044-08-06": "Independence Day", @@ -1067,11 +1067,11 @@ "2044-10-17": "National Dignity Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -1079,7 +1079,7 @@ "2045-06-08": "Corpus Christi", "2045-06-21": "Aymara New Year", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-09-14": "Cochabamba Day", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", @@ -1118,7 +1118,7 @@ "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-08-06": "Independence Day", "2048-09-14": "Cochabamba Day", "2048-10-17": "National Dignity Day", @@ -1143,7 +1143,7 @@ "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", "2050-08-06": "Independence Day", @@ -1151,5 +1151,5 @@ "2050-10-17": "National Dignity Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_COMMON.json b/snapshots/countries/BO_COMMON.json index 22e93c7d9..942beeaa4 100644 --- a/snapshots/countries/BO_COMMON.json +++ b/snapshots/countries/BO_COMMON.json @@ -220,20 +220,20 @@ "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-06-09": "Corpus Christi", "1977-08-06": "Independence Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-06": "Carnival", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-26": "Carnival", @@ -272,13 +272,13 @@ "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-06-02": "Corpus Christi", "1983-08-06": "Independence Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Carnival", "1984-03-06": "Carnival", "1984-04-20": "Good Friday", @@ -318,21 +318,21 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-06-02": "Corpus Christi", "1988-08-06": "Independence Day", "1988-11-01": "All Saints' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Carnival", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -376,21 +376,21 @@ "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-06-02": "Corpus Christi", "1994-08-06": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-27": "Carnival", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", "1995-05-01": "Labor Day", "1995-06-15": "Corpus Christi", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -410,7 +410,7 @@ "1997-05-29": "Corpus Christi", "1997-08-06": "Independence Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-02-23": "Carnival", @@ -437,7 +437,7 @@ "2000-05-01": "Labor Day", "2000-06-22": "Corpus Christi", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -466,7 +466,7 @@ "2003-06-19": "Corpus Christi", "2003-08-06": "Independence Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-02-23": "Carnival", @@ -482,21 +482,21 @@ "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-26": "Corpus Christi", "2005-08-06": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-27": "Carnival", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", "2006-05-01": "Labor Day", "2006-06-15": "Corpus Christi", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -516,7 +516,7 @@ "2008-05-22": "Corpus Christi", "2008-08-06": "Independence Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-23": "Carnival", @@ -525,7 +525,7 @@ "2009-05-01": "Labor Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-08-06": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -546,21 +546,21 @@ "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-08-06": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-21": "Aymara New Year", @@ -584,12 +584,12 @@ "2014-03-04": "Carnival", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-08-06": "Independence Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-22": "Plurinational State Foundation Day", @@ -599,7 +599,7 @@ "2015-05-01": "Labor Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-08-06": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -609,17 +609,17 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-08-06": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -627,7 +627,7 @@ "2017-06-15": "Corpus Christi", "2017-06-21": "Aymara New Year", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -660,7 +660,7 @@ "2020-05-01": "Labor Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-08-06": "Independence Day", "2020-10-17": "National Dignity Day", "2020-11-02": "All Souls' Day", @@ -683,18 +683,18 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", "2022-08-06": "Independence Day", "2022-10-17": "National Dignity Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -702,7 +702,7 @@ "2023-06-08": "Corpus Christi", "2023-06-21": "Aymara New Year", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -738,7 +738,7 @@ "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-08-06": "Independence Day", "2026-10-17": "National Dignity Day", "2026-11-02": "All Souls' Day", @@ -764,7 +764,7 @@ "2028-06-15": "Corpus Christi", "2028-06-21": "Aymara New Year", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -822,18 +822,18 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", "2033-08-06": "Independence Day", "2033-10-17": "National Dignity Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -841,7 +841,7 @@ "2034-06-08": "Corpus Christi", "2034-06-21": "Aymara New Year", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -877,7 +877,7 @@ "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-08-06": "Independence Day", "2037-10-17": "National Dignity Day", "2037-11-02": "All Souls' Day", @@ -900,18 +900,18 @@ "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", "2039-08-06": "Independence Day", "2039-10-17": "National Dignity Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -954,7 +954,7 @@ "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-08-06": "Independence Day", "2043-10-17": "National Dignity Day", "2043-11-02": "All Souls' Day", @@ -965,18 +965,18 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", "2044-08-06": "Independence Day", "2044-10-17": "National Dignity Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -984,7 +984,7 @@ "2045-06-08": "Corpus Christi", "2045-06-21": "Aymara New Year", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -1020,7 +1020,7 @@ "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-08-06": "Independence Day", "2048-10-17": "National Dignity Day", "2048-11-02": "All Souls' Day", @@ -1043,12 +1043,12 @@ "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", "2050-08-06": "Independence Day", "2050-10-17": "National Dignity Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_H.json b/snapshots/countries/BO_H.json index 90c8b6970..c50adda50 100644 --- a/snapshots/countries/BO_H.json +++ b/snapshots/countries/BO_H.json @@ -246,21 +246,21 @@ "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-05-25": "Chuquisaca Day", "1977-06-09": "Corpus Christi", "1977-08-06": "Independence Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-06": "Carnival", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", "1978-05-01": "Labor Day", "1978-05-25": "Chuquisaca Day; Corpus Christi", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-26": "Carnival", @@ -303,14 +303,14 @@ "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-05-25": "Chuquisaca Day", "1983-06-02": "Corpus Christi", "1983-08-06": "Independence Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Carnival", "1984-03-06": "Carnival", "1984-04-20": "Good Friday", @@ -354,22 +354,22 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-05-25": "Chuquisaca Day", "1988-06-02": "Corpus Christi", "1988-08-06": "Independence Day", "1988-11-01": "All Saints' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Carnival", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", "1989-05-01": "Labor Day", "1989-05-25": "Chuquisaca Day; Corpus Christi", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -417,15 +417,15 @@ "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-05-25": "Chuquisaca Day", "1994-06-02": "Corpus Christi", "1994-08-06": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-27": "Carnival", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", @@ -433,7 +433,7 @@ "1995-05-25": "Chuquisaca Day", "1995-06-15": "Corpus Christi", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -455,7 +455,7 @@ "1997-05-29": "Corpus Christi", "1997-08-06": "Independence Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-02-23": "Carnival", @@ -485,7 +485,7 @@ "2000-05-25": "Chuquisaca Day", "2000-06-22": "Corpus Christi", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -517,7 +517,7 @@ "2003-06-19": "Corpus Christi", "2003-08-06": "Independence Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-02-23": "Carnival", @@ -534,15 +534,15 @@ "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-25": "Chuquisaca Day", "2005-05-26": "Corpus Christi", "2005-08-06": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-27": "Carnival", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", @@ -550,7 +550,7 @@ "2006-05-25": "Chuquisaca Day", "2006-06-15": "Corpus Christi", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -572,7 +572,7 @@ "2008-05-25": "Chuquisaca Day", "2008-08-06": "Independence Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-23": "Carnival", @@ -582,7 +582,7 @@ "2009-05-25": "Chuquisaca Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-08-06": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -604,22 +604,22 @@ "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-05-25": "Chuquisaca Day", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-08-06": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-05-25": "Chuquisaca Day", "2012-06-07": "Corpus Christi", @@ -645,13 +645,13 @@ "2014-03-04": "Carnival", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-05-25": "Chuquisaca Day", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-08-06": "Independence Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-22": "Plurinational State Foundation Day", @@ -662,7 +662,7 @@ "2015-05-25": "Chuquisaca Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-08-06": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -672,18 +672,18 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-25": "Chuquisaca Day", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-08-06": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -692,7 +692,7 @@ "2017-06-15": "Corpus Christi", "2017-06-21": "Aymara New Year", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -728,7 +728,7 @@ "2020-05-25": "Chuquisaca Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-08-06": "Independence Day", "2020-10-17": "National Dignity Day", "2020-11-02": "All Souls' Day", @@ -752,7 +752,7 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-05-25": "Chuquisaca Day", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", @@ -760,11 +760,11 @@ "2022-10-17": "National Dignity Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -773,7 +773,7 @@ "2023-06-08": "Corpus Christi", "2023-06-21": "Aymara New Year", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -812,7 +812,7 @@ "2026-05-25": "Chuquisaca Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-08-06": "Independence Day", "2026-10-17": "National Dignity Day", "2026-11-02": "All Souls' Day", @@ -840,7 +840,7 @@ "2028-06-15": "Corpus Christi", "2028-06-21": "Aymara New Year", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -902,7 +902,7 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-05-25": "Chuquisaca Day", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", @@ -910,11 +910,11 @@ "2033-10-17": "National Dignity Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -923,7 +923,7 @@ "2034-06-08": "Corpus Christi", "2034-06-21": "Aymara New Year", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -962,7 +962,7 @@ "2037-05-25": "Chuquisaca Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-08-06": "Independence Day", "2037-10-17": "National Dignity Day", "2037-11-02": "All Souls' Day", @@ -986,7 +986,7 @@ "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-05-25": "Chuquisaca Day", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", @@ -994,11 +994,11 @@ "2039-10-17": "National Dignity Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -1045,7 +1045,7 @@ "2043-05-25": "Chuquisaca Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-08-06": "Independence Day", "2043-10-17": "National Dignity Day", "2043-11-02": "All Souls' Day", @@ -1056,7 +1056,7 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-05-25": "Chuquisaca Day", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", @@ -1064,11 +1064,11 @@ "2044-10-17": "National Dignity Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -1077,7 +1077,7 @@ "2045-06-08": "Corpus Christi", "2045-06-21": "Aymara New Year", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -1116,7 +1116,7 @@ "2048-05-25": "Chuquisaca Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-08-06": "Independence Day", "2048-10-17": "National Dignity Day", "2048-11-02": "All Souls' Day", @@ -1140,7 +1140,7 @@ "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-05-25": "Chuquisaca Day", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", @@ -1148,5 +1148,5 @@ "2050-10-17": "National Dignity Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_L.json b/snapshots/countries/BO_L.json index 53fc4d17b..1178f6e61 100644 --- a/snapshots/countries/BO_L.json +++ b/snapshots/countries/BO_L.json @@ -247,14 +247,14 @@ "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-06-09": "Corpus Christi", "1977-07-16": "La Paz Day", "1977-08-06": "Independence Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-06": "Carnival", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", @@ -262,7 +262,7 @@ "1978-05-25": "Corpus Christi", "1978-07-16": "La Paz Day", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-26": "Carnival", @@ -305,14 +305,14 @@ "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-06-02": "Corpus Christi", "1983-07-16": "La Paz Day", "1983-08-06": "Independence Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Carnival", "1984-03-06": "Carnival", "1984-04-20": "Good Friday", @@ -356,15 +356,15 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-06-02": "Corpus Christi", "1988-07-16": "La Paz Day", "1988-08-06": "Independence Day", "1988-11-01": "All Saints' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Carnival", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", @@ -372,7 +372,7 @@ "1989-05-25": "Corpus Christi", "1989-07-16": "La Paz Day", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -420,15 +420,15 @@ "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-06-02": "Corpus Christi", "1994-07-16": "La Paz Day", "1994-08-06": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-27": "Carnival", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", @@ -436,7 +436,7 @@ "1995-06-15": "Corpus Christi", "1995-07-16": "La Paz Day", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -458,7 +458,7 @@ "1997-07-16": "La Paz Day", "1997-08-06": "Independence Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-02-23": "Carnival", @@ -488,7 +488,7 @@ "2000-06-22": "Corpus Christi", "2000-07-16": "La Paz Day", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -520,7 +520,7 @@ "2003-07-16": "La Paz Day", "2003-08-06": "Independence Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-02-23": "Carnival", @@ -537,15 +537,15 @@ "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-26": "Corpus Christi", "2005-07-16": "La Paz Day", "2005-08-06": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-27": "Carnival", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", @@ -553,7 +553,7 @@ "2006-06-15": "Corpus Christi", "2006-07-16": "La Paz Day", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -575,7 +575,7 @@ "2008-07-16": "La Paz Day", "2008-08-06": "Independence Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-23": "Carnival", @@ -584,7 +584,7 @@ "2009-05-01": "Labor Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-07-16": "La Paz Day", "2009-08-06": "Independence Day", "2009-11-02": "All Souls' Day", @@ -607,22 +607,22 @@ "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-07-16": "La Paz Day", "2011-08-06": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-21": "Aymara New Year", @@ -648,13 +648,13 @@ "2014-03-04": "Carnival", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-07-16": "La Paz Day", "2014-08-06": "Independence Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-22": "Plurinational State Foundation Day", @@ -664,7 +664,7 @@ "2015-05-01": "Labor Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-07-16": "La Paz Day", "2015-08-06": "Independence Day", "2015-11-02": "All Souls' Day", @@ -675,18 +675,18 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-07-16": "La Paz Day", "2016-08-06": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -695,7 +695,7 @@ "2017-06-21": "Aymara New Year", "2017-07-16": "La Paz Day", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -730,7 +730,7 @@ "2020-05-01": "Labor Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-07-16": "La Paz Day", "2020-08-06": "Independence Day", "2020-10-17": "National Dignity Day", @@ -755,7 +755,7 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", "2022-07-16": "La Paz Day", @@ -763,11 +763,11 @@ "2022-10-17": "National Dignity Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -776,7 +776,7 @@ "2023-06-21": "Aymara New Year", "2023-07-16": "La Paz Day", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -814,7 +814,7 @@ "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-07-16": "La Paz Day", "2026-08-06": "Independence Day", "2026-10-17": "National Dignity Day", @@ -843,7 +843,7 @@ "2028-06-21": "Aymara New Year", "2028-07-16": "La Paz Day", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -905,7 +905,7 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", "2033-07-16": "La Paz Day", @@ -913,11 +913,11 @@ "2033-10-17": "National Dignity Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -926,7 +926,7 @@ "2034-06-21": "Aymara New Year", "2034-07-16": "La Paz Day", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -964,7 +964,7 @@ "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-07-16": "La Paz Day", "2037-08-06": "Independence Day", "2037-10-17": "National Dignity Day", @@ -989,7 +989,7 @@ "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", "2039-07-16": "La Paz Day", @@ -997,11 +997,11 @@ "2039-10-17": "National Dignity Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -1047,7 +1047,7 @@ "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-07-16": "La Paz Day", "2043-08-06": "Independence Day", "2043-10-17": "National Dignity Day", @@ -1059,7 +1059,7 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", "2044-07-16": "La Paz Day", @@ -1067,11 +1067,11 @@ "2044-10-17": "National Dignity Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -1080,7 +1080,7 @@ "2045-06-21": "Aymara New Year", "2045-07-16": "La Paz Day", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -1118,7 +1118,7 @@ "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-07-16": "La Paz Day", "2048-08-06": "Independence Day", "2048-10-17": "National Dignity Day", @@ -1143,7 +1143,7 @@ "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", "2050-07-16": "La Paz Day", @@ -1151,5 +1151,5 @@ "2050-10-17": "National Dignity Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_N.json b/snapshots/countries/BO_N.json index b1ebda275..1cc2ac2e5 100644 --- a/snapshots/countries/BO_N.json +++ b/snapshots/countries/BO_N.json @@ -247,21 +247,21 @@ "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-06-09": "Corpus Christi", "1977-08-06": "Independence Day", "1977-10-11": "Pando Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-06": "Carnival", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-10-11": "Pando Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -305,14 +305,14 @@ "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-06-02": "Corpus Christi", "1983-08-06": "Independence Day", "1983-10-11": "Pando Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Carnival", "1984-03-06": "Carnival", "1984-04-20": "Good Friday", @@ -356,22 +356,22 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-06-02": "Corpus Christi", "1988-08-06": "Independence Day", "1988-10-11": "Pando Day", "1988-11-01": "All Saints' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Carnival", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-10-11": "Pando Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -420,22 +420,22 @@ "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-06-02": "Corpus Christi", "1994-08-06": "Independence Day", "1994-10-11": "Pando Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-27": "Carnival", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", "1995-05-01": "Labor Day", "1995-06-15": "Corpus Christi", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-10-11": "Pando Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -458,7 +458,7 @@ "1997-08-06": "Independence Day", "1997-10-11": "Pando Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-02-23": "Carnival", @@ -487,7 +487,7 @@ "2000-05-01": "Labor Day", "2000-06-22": "Corpus Christi", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-10-11": "Pando Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -520,7 +520,7 @@ "2003-08-06": "Independence Day", "2003-10-11": "Pando Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-02-23": "Carnival", @@ -537,22 +537,22 @@ "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-26": "Corpus Christi", "2005-08-06": "Independence Day", "2005-10-11": "Pando Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-27": "Carnival", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", "2006-05-01": "Labor Day", "2006-06-15": "Corpus Christi", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-10-11": "Pando Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -575,7 +575,7 @@ "2008-08-06": "Independence Day", "2008-10-11": "Pando Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-23": "Carnival", @@ -584,7 +584,7 @@ "2009-05-01": "Labor Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-08-06": "Independence Day", "2009-10-11": "Pando Day", "2009-11-02": "All Souls' Day", @@ -607,22 +607,22 @@ "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-08-06": "Independence Day", "2011-10-11": "Pando Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-21": "Aymara New Year", @@ -648,13 +648,13 @@ "2014-03-04": "Carnival", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-08-06": "Independence Day", "2014-10-11": "Pando Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-22": "Plurinational State Foundation Day", @@ -664,7 +664,7 @@ "2015-05-01": "Labor Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-08-06": "Independence Day", "2015-10-11": "Pando Day", "2015-11-02": "All Souls' Day", @@ -675,18 +675,18 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-08-06": "Independence Day", "2016-10-11": "Pando Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -694,7 +694,7 @@ "2017-06-15": "Corpus Christi", "2017-06-21": "Aymara New Year", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-10-11": "Pando Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -730,7 +730,7 @@ "2020-05-01": "Labor Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-08-06": "Independence Day", "2020-10-11": "Pando Day", "2020-10-17": "National Dignity Day", @@ -755,7 +755,7 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", "2022-08-06": "Independence Day", @@ -763,11 +763,11 @@ "2022-10-17": "National Dignity Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -775,7 +775,7 @@ "2023-06-08": "Corpus Christi", "2023-06-21": "Aymara New Year", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-10-11": "Pando Day", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", @@ -814,7 +814,7 @@ "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-08-06": "Independence Day", "2026-10-11": "Pando Day", "2026-10-17": "National Dignity Day", @@ -842,7 +842,7 @@ "2028-06-15": "Corpus Christi", "2028-06-21": "Aymara New Year", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-10-11": "Pando Day", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", @@ -905,7 +905,7 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", "2033-08-06": "Independence Day", @@ -913,11 +913,11 @@ "2033-10-17": "National Dignity Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -925,7 +925,7 @@ "2034-06-08": "Corpus Christi", "2034-06-21": "Aymara New Year", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-10-11": "Pando Day", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", @@ -964,7 +964,7 @@ "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-08-06": "Independence Day", "2037-10-11": "Pando Day", "2037-10-17": "National Dignity Day", @@ -989,7 +989,7 @@ "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", "2039-08-06": "Independence Day", @@ -997,11 +997,11 @@ "2039-10-17": "National Dignity Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -1047,7 +1047,7 @@ "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-08-06": "Independence Day", "2043-10-11": "Pando Day", "2043-10-17": "National Dignity Day", @@ -1059,7 +1059,7 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", "2044-08-06": "Independence Day", @@ -1067,11 +1067,11 @@ "2044-10-17": "National Dignity Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -1079,7 +1079,7 @@ "2045-06-08": "Corpus Christi", "2045-06-21": "Aymara New Year", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-10-11": "Pando Day", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", @@ -1118,7 +1118,7 @@ "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-08-06": "Independence Day", "2048-10-11": "Pando Day", "2048-10-17": "National Dignity Day", @@ -1143,7 +1143,7 @@ "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", "2050-08-06": "Independence Day", @@ -1151,5 +1151,5 @@ "2050-10-17": "National Dignity Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_O.json b/snapshots/countries/BO_O.json index 34ed6561f..4e4e133fa 100644 --- a/snapshots/countries/BO_O.json +++ b/snapshots/countries/BO_O.json @@ -248,13 +248,13 @@ "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-06-09": "Corpus Christi", "1977-08-06": "Independence Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-03": "Carnival in Oruro", "1978-02-06": "Carnival", "1978-02-07": "Carnival", @@ -262,7 +262,7 @@ "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-23": "Carnival in Oruro", @@ -306,13 +306,13 @@ "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-06-02": "Corpus Christi", "1983-08-06": "Independence Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-02": "Carnival in Oruro", "1984-03-05": "Carnival", "1984-03-06": "Carnival", @@ -357,14 +357,14 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-06-02": "Corpus Christi", "1988-08-06": "Independence Day", "1988-11-01": "All Saints' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-03": "Carnival in Oruro", "1989-02-06": "Carnival", "1989-02-07": "Carnival", @@ -372,7 +372,7 @@ "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -421,14 +421,14 @@ "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-06-02": "Corpus Christi", "1994-08-06": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-24": "Carnival in Oruro", "1995-02-27": "Carnival", "1995-02-28": "Carnival", @@ -436,7 +436,7 @@ "1995-05-01": "Labor Day", "1995-06-15": "Corpus Christi", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -458,7 +458,7 @@ "1997-05-29": "Corpus Christi", "1997-08-06": "Independence Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-02-20": "Carnival in Oruro", @@ -488,7 +488,7 @@ "2000-05-01": "Labor Day", "2000-06-22": "Corpus Christi", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -520,7 +520,7 @@ "2003-06-19": "Corpus Christi", "2003-08-06": "Independence Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-02-20": "Carnival in Oruro", @@ -538,14 +538,14 @@ "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-26": "Corpus Christi", "2005-08-06": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-24": "Carnival in Oruro", "2006-02-27": "Carnival", "2006-02-28": "Carnival", @@ -553,7 +553,7 @@ "2006-05-01": "Labor Day", "2006-06-15": "Corpus Christi", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -575,7 +575,7 @@ "2008-05-22": "Corpus Christi", "2008-08-06": "Independence Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-20": "Carnival in Oruro", @@ -585,7 +585,7 @@ "2009-05-01": "Labor Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-08-06": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -608,22 +608,22 @@ "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-08-06": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-17": "Carnival in Oruro", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-21": "Aymara New Year", @@ -649,12 +649,12 @@ "2014-03-04": "Carnival", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-08-06": "Independence Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-22": "Plurinational State Foundation Day", @@ -665,7 +665,7 @@ "2015-05-01": "Labor Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-08-06": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -676,17 +676,17 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-08-06": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-24": "Carnival in Oruro", "2017-02-27": "Carnival", "2017-02-28": "Carnival", @@ -695,7 +695,7 @@ "2017-06-15": "Corpus Christi", "2017-06-21": "Aymara New Year", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -731,7 +731,7 @@ "2020-05-01": "Labor Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-08-06": "Independence Day", "2020-10-17": "National Dignity Day", "2020-11-02": "All Souls' Day", @@ -756,18 +756,18 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", "2022-08-06": "Independence Day", "2022-10-17": "National Dignity Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-17": "Carnival in Oruro", "2023-02-20": "Carnival", "2023-02-21": "Carnival", @@ -776,7 +776,7 @@ "2023-06-08": "Corpus Christi", "2023-06-21": "Aymara New Year", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -815,7 +815,7 @@ "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-08-06": "Independence Day", "2026-10-17": "National Dignity Day", "2026-11-02": "All Souls' Day", @@ -843,7 +843,7 @@ "2028-06-15": "Corpus Christi", "2028-06-21": "Aymara New Year", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -906,18 +906,18 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", "2033-08-06": "Independence Day", "2033-10-17": "National Dignity Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-17": "Carnival in Oruro", "2034-02-20": "Carnival", "2034-02-21": "Carnival", @@ -926,7 +926,7 @@ "2034-06-08": "Corpus Christi", "2034-06-21": "Aymara New Year", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -965,7 +965,7 @@ "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-08-06": "Independence Day", "2037-10-17": "National Dignity Day", "2037-11-02": "All Souls' Day", @@ -990,18 +990,18 @@ "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", "2039-08-06": "Independence Day", "2039-10-17": "National Dignity Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-10": "Carnival in Oruro", "2040-02-13": "Carnival", "2040-02-14": "Carnival", @@ -1048,7 +1048,7 @@ "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-08-06": "Independence Day", "2043-10-17": "National Dignity Day", "2043-11-02": "All Souls' Day", @@ -1060,18 +1060,18 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", "2044-08-06": "Independence Day", "2044-10-17": "National Dignity Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-17": "Carnival in Oruro", "2045-02-20": "Carnival", "2045-02-21": "Carnival", @@ -1080,7 +1080,7 @@ "2045-06-08": "Corpus Christi", "2045-06-21": "Aymara New Year", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -1119,7 +1119,7 @@ "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-08-06": "Independence Day", "2048-10-17": "National Dignity Day", "2048-11-02": "All Souls' Day", @@ -1144,12 +1144,12 @@ "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", "2050-08-06": "Independence Day", "2050-10-17": "National Dignity Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_P.json b/snapshots/countries/BO_P.json index 5e6b5eab1..58f280f8d 100644 --- a/snapshots/countries/BO_P.json +++ b/snapshots/countries/BO_P.json @@ -247,21 +247,21 @@ "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-06-09": "Corpus Christi", "1977-08-06": "Independence Day", "1977-11-10": "Potos\u00ed Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-06": "Carnival", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-11-10": "Potos\u00ed Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -305,14 +305,14 @@ "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-06-02": "Corpus Christi", "1983-08-06": "Independence Day", "1983-11-10": "Potos\u00ed Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Carnival", "1984-03-06": "Carnival", "1984-04-20": "Good Friday", @@ -356,22 +356,22 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-06-02": "Corpus Christi", "1988-08-06": "Independence Day", "1988-11-01": "All Saints' Day", "1988-11-10": "Potos\u00ed Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Carnival", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-11-02": "All Souls' Day", "1989-11-10": "Potos\u00ed Day", "1989-12-25": "Christmas Day", @@ -420,22 +420,22 @@ "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-06-02": "Corpus Christi", "1994-08-06": "Independence Day", "1994-11-02": "All Souls' Day", "1994-11-10": "Potos\u00ed Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-27": "Carnival", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", "1995-05-01": "Labor Day", "1995-06-15": "Corpus Christi", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-11-02": "All Souls' Day", "1995-11-10": "Potos\u00ed Day", "1995-12-25": "Christmas Day", @@ -457,7 +457,7 @@ "1997-05-29": "Corpus Christi", "1997-08-06": "Independence Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-11-10": "Potos\u00ed Day", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", @@ -487,7 +487,7 @@ "2000-05-01": "Labor Day", "2000-06-22": "Corpus Christi", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-11-02": "All Souls' Day", "2000-11-10": "Potos\u00ed Day", "2000-12-25": "Christmas Day", @@ -519,7 +519,7 @@ "2003-06-19": "Corpus Christi", "2003-08-06": "Independence Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-11-10": "Potos\u00ed Day", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", @@ -537,22 +537,22 @@ "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-26": "Corpus Christi", "2005-08-06": "Independence Day", "2005-11-02": "All Souls' Day", "2005-11-10": "Potos\u00ed Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-27": "Carnival", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", "2006-05-01": "Labor Day", "2006-06-15": "Corpus Christi", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-11-02": "All Souls' Day", "2006-11-10": "Potos\u00ed Day", "2006-12-25": "Christmas Day", @@ -574,7 +574,7 @@ "2008-05-22": "Corpus Christi", "2008-08-06": "Independence Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-11-10": "Potos\u00ed Day", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", @@ -584,7 +584,7 @@ "2009-05-01": "Labor Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-08-06": "Independence Day", "2009-11-02": "All Souls' Day", "2009-11-10": "Potos\u00ed Day", @@ -607,22 +607,22 @@ "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-08-06": "Independence Day", "2011-11-02": "All Souls' Day", "2011-11-10": "Potos\u00ed Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-21": "Aymara New Year", @@ -648,12 +648,12 @@ "2014-03-04": "Carnival", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-08-06": "Independence Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-11-10": "Potos\u00ed Day", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", @@ -664,7 +664,7 @@ "2015-05-01": "Labor Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-08-06": "Independence Day", "2015-11-02": "All Souls' Day", "2015-11-10": "Potos\u00ed Day", @@ -675,18 +675,18 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-08-06": "Independence Day", "2016-11-02": "All Souls' Day", "2016-11-10": "Potos\u00ed Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -694,7 +694,7 @@ "2017-06-15": "Corpus Christi", "2017-06-21": "Aymara New Year", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-11-02": "All Souls' Day", "2017-11-10": "Potos\u00ed Day", "2017-12-25": "Christmas Day", @@ -730,7 +730,7 @@ "2020-05-01": "Labor Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-08-06": "Independence Day", "2020-10-17": "National Dignity Day", "2020-11-02": "All Souls' Day", @@ -755,7 +755,7 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", "2022-08-06": "Independence Day", @@ -763,11 +763,11 @@ "2022-11-02": "All Souls' Day", "2022-11-10": "Potos\u00ed Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -775,7 +775,7 @@ "2023-06-08": "Corpus Christi", "2023-06-21": "Aymara New Year", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", "2023-11-10": "Potos\u00ed Day", @@ -814,7 +814,7 @@ "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-08-06": "Independence Day", "2026-10-17": "National Dignity Day", "2026-11-02": "All Souls' Day", @@ -842,7 +842,7 @@ "2028-06-15": "Corpus Christi", "2028-06-21": "Aymara New Year", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", "2028-11-10": "Potos\u00ed Day", @@ -905,7 +905,7 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", "2033-08-06": "Independence Day", @@ -913,11 +913,11 @@ "2033-11-02": "All Souls' Day", "2033-11-10": "Potos\u00ed Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -925,7 +925,7 @@ "2034-06-08": "Corpus Christi", "2034-06-21": "Aymara New Year", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", "2034-11-10": "Potos\u00ed Day", @@ -964,7 +964,7 @@ "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-08-06": "Independence Day", "2037-10-17": "National Dignity Day", "2037-11-02": "All Souls' Day", @@ -989,7 +989,7 @@ "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", "2039-08-06": "Independence Day", @@ -997,11 +997,11 @@ "2039-11-02": "All Souls' Day", "2039-11-10": "Potos\u00ed Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -1047,7 +1047,7 @@ "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-08-06": "Independence Day", "2043-10-17": "National Dignity Day", "2043-11-02": "All Souls' Day", @@ -1059,7 +1059,7 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", "2044-08-06": "Independence Day", @@ -1067,11 +1067,11 @@ "2044-11-02": "All Souls' Day", "2044-11-10": "Potos\u00ed Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -1079,7 +1079,7 @@ "2045-06-08": "Corpus Christi", "2045-06-21": "Aymara New Year", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", "2045-11-10": "Potos\u00ed Day", @@ -1118,7 +1118,7 @@ "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-08-06": "Independence Day", "2048-10-17": "National Dignity Day", "2048-11-02": "All Souls' Day", @@ -1143,7 +1143,7 @@ "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", "2050-08-06": "Independence Day", @@ -1151,5 +1151,5 @@ "2050-11-02": "All Souls' Day", "2050-11-10": "Potos\u00ed Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_S.json b/snapshots/countries/BO_S.json index 1a10c6dcc..283723d4c 100644 --- a/snapshots/countries/BO_S.json +++ b/snapshots/countries/BO_S.json @@ -247,21 +247,21 @@ "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-06-09": "Corpus Christi", "1977-08-06": "Independence Day", "1977-09-24": "Santa Cruz Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-06": "Carnival", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-09-24": "Santa Cruz Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -305,14 +305,14 @@ "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-06-02": "Corpus Christi", "1983-08-06": "Independence Day", "1983-09-24": "Santa Cruz Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Carnival", "1984-03-06": "Carnival", "1984-04-20": "Good Friday", @@ -356,22 +356,22 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-06-02": "Corpus Christi", "1988-08-06": "Independence Day", "1988-09-24": "Santa Cruz Day", "1988-11-01": "All Saints' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Carnival", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-09-24": "Santa Cruz Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -420,22 +420,22 @@ "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-06-02": "Corpus Christi", "1994-08-06": "Independence Day", "1994-09-24": "Santa Cruz Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-27": "Carnival", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", "1995-05-01": "Labor Day", "1995-06-15": "Corpus Christi", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-09-24": "Santa Cruz Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -458,7 +458,7 @@ "1997-08-06": "Independence Day", "1997-09-24": "Santa Cruz Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-02-23": "Carnival", @@ -487,7 +487,7 @@ "2000-05-01": "Labor Day", "2000-06-22": "Corpus Christi", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-09-24": "Santa Cruz Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -520,7 +520,7 @@ "2003-08-06": "Independence Day", "2003-09-24": "Santa Cruz Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-02-23": "Carnival", @@ -537,22 +537,22 @@ "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-26": "Corpus Christi", "2005-08-06": "Independence Day", "2005-09-24": "Santa Cruz Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-27": "Carnival", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", "2006-05-01": "Labor Day", "2006-06-15": "Corpus Christi", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-09-24": "Santa Cruz Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -575,7 +575,7 @@ "2008-08-06": "Independence Day", "2008-09-24": "Santa Cruz Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-23": "Carnival", @@ -584,7 +584,7 @@ "2009-05-01": "Labor Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-08-06": "Independence Day", "2009-09-24": "Santa Cruz Day", "2009-11-02": "All Souls' Day", @@ -607,22 +607,22 @@ "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-08-06": "Independence Day", "2011-09-24": "Santa Cruz Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-21": "Aymara New Year", @@ -648,13 +648,13 @@ "2014-03-04": "Carnival", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-08-06": "Independence Day", "2014-09-24": "Santa Cruz Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-22": "Plurinational State Foundation Day", @@ -664,7 +664,7 @@ "2015-05-01": "Labor Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-08-06": "Independence Day", "2015-09-24": "Santa Cruz Day", "2015-11-02": "All Souls' Day", @@ -675,18 +675,18 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-08-06": "Independence Day", "2016-09-24": "Santa Cruz Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -694,7 +694,7 @@ "2017-06-15": "Corpus Christi", "2017-06-21": "Aymara New Year", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-09-24": "Santa Cruz Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -730,7 +730,7 @@ "2020-05-01": "Labor Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-08-06": "Independence Day", "2020-09-24": "Santa Cruz Day", "2020-10-17": "National Dignity Day", @@ -755,7 +755,7 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", "2022-08-06": "Independence Day", @@ -763,11 +763,11 @@ "2022-10-17": "National Dignity Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -775,7 +775,7 @@ "2023-06-08": "Corpus Christi", "2023-06-21": "Aymara New Year", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-09-24": "Santa Cruz Day", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", @@ -814,7 +814,7 @@ "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-08-06": "Independence Day", "2026-09-24": "Santa Cruz Day", "2026-10-17": "National Dignity Day", @@ -842,7 +842,7 @@ "2028-06-15": "Corpus Christi", "2028-06-21": "Aymara New Year", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-09-24": "Santa Cruz Day", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", @@ -905,7 +905,7 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", "2033-08-06": "Independence Day", @@ -913,11 +913,11 @@ "2033-10-17": "National Dignity Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -925,7 +925,7 @@ "2034-06-08": "Corpus Christi", "2034-06-21": "Aymara New Year", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-09-24": "Santa Cruz Day", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", @@ -964,7 +964,7 @@ "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-08-06": "Independence Day", "2037-09-24": "Santa Cruz Day", "2037-10-17": "National Dignity Day", @@ -989,7 +989,7 @@ "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", "2039-08-06": "Independence Day", @@ -997,11 +997,11 @@ "2039-10-17": "National Dignity Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -1047,7 +1047,7 @@ "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-08-06": "Independence Day", "2043-09-24": "Santa Cruz Day", "2043-10-17": "National Dignity Day", @@ -1059,7 +1059,7 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", "2044-08-06": "Independence Day", @@ -1067,11 +1067,11 @@ "2044-10-17": "National Dignity Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -1079,7 +1079,7 @@ "2045-06-08": "Corpus Christi", "2045-06-21": "Aymara New Year", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-09-24": "Santa Cruz Day", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", @@ -1118,7 +1118,7 @@ "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-08-06": "Independence Day", "2048-09-24": "Santa Cruz Day", "2048-10-17": "National Dignity Day", @@ -1143,7 +1143,7 @@ "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", "2050-08-06": "Independence Day", @@ -1151,5 +1151,5 @@ "2050-10-17": "National Dignity Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BO_T.json b/snapshots/countries/BO_T.json index 4db366ac2..60e5cd227 100644 --- a/snapshots/countries/BO_T.json +++ b/snapshots/countries/BO_T.json @@ -247,13 +247,13 @@ "1977-04-08": "Good Friday", "1977-04-15": "La Tablada", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-06-09": "Corpus Christi", "1977-08-06": "Independence Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-06": "Carnival", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", @@ -261,7 +261,7 @@ "1978-05-01": "Labor Day", "1978-05-25": "Corpus Christi", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-26": "Carnival", @@ -305,13 +305,13 @@ "1983-04-01": "Good Friday", "1983-04-15": "La Tablada", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-06-02": "Corpus Christi", "1983-08-06": "Independence Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Carnival", "1984-03-06": "Carnival", "1984-04-15": "La Tablada", @@ -356,14 +356,14 @@ "1988-04-01": "Good Friday", "1988-04-15": "La Tablada", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-06-02": "Corpus Christi", "1988-08-06": "Independence Day", "1988-11-01": "All Saints' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-06": "Carnival", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", @@ -371,7 +371,7 @@ "1989-05-01": "Labor Day", "1989-05-25": "Corpus Christi", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -420,14 +420,14 @@ "1994-04-01": "Good Friday", "1994-04-15": "La Tablada", "1994-05-01": "Labor Day", - "1994-05-02": "Labor Day (Observed)", + "1994-05-02": "Labor Day (observed)", "1994-06-02": "Corpus Christi", "1994-08-06": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-27": "Carnival", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", @@ -435,7 +435,7 @@ "1995-05-01": "Labor Day", "1995-06-15": "Corpus Christi", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -457,7 +457,7 @@ "1997-05-29": "Corpus Christi", "1997-08-06": "Independence Day", "1997-11-02": "All Souls' Day", - "1997-11-03": "All Souls' Day (Observed)", + "1997-11-03": "All Souls' Day (observed)", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-02-23": "Carnival", @@ -487,7 +487,7 @@ "2000-05-01": "Labor Day", "2000-06-22": "Corpus Christi", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -519,7 +519,7 @@ "2003-06-19": "Corpus Christi", "2003-08-06": "Independence Day", "2003-11-02": "All Souls' Day", - "2003-11-03": "All Souls' Day (Observed)", + "2003-11-03": "All Souls' Day (observed)", "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-02-23": "Carnival", @@ -537,14 +537,14 @@ "2005-03-25": "Good Friday", "2005-04-15": "La Tablada", "2005-05-01": "Labor Day", - "2005-05-02": "Labor Day (Observed)", + "2005-05-02": "Labor Day (observed)", "2005-05-26": "Corpus Christi", "2005-08-06": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-27": "Carnival", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", @@ -552,7 +552,7 @@ "2006-05-01": "Labor Day", "2006-06-15": "Corpus Christi", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -574,7 +574,7 @@ "2008-05-22": "Corpus Christi", "2008-08-06": "Independence Day", "2008-11-02": "All Souls' Day", - "2008-11-03": "All Souls' Day (Observed)", + "2008-11-03": "All Souls' Day (observed)", "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-23": "Carnival", @@ -584,7 +584,7 @@ "2009-05-01": "Labor Day", "2009-06-11": "Corpus Christi", "2009-06-21": "Aymara New Year", - "2009-06-22": "Aymara New Year (Observed)", + "2009-06-22": "Aymara New Year (observed)", "2009-08-06": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -607,22 +607,22 @@ "2011-04-15": "La Tablada", "2011-04-22": "Good Friday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-21": "Aymara New Year", "2011-06-23": "Corpus Christi", "2011-08-06": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-22": "Plurinational State Foundation Day", - "2012-01-23": "Plurinational State Foundation Day (Observed)", + "2012-01-23": "Plurinational State Foundation Day (observed)", "2012-02-20": "Carnival", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", "2012-04-15": "La Tablada", - "2012-04-30": "Labor Day (Observed)", + "2012-04-30": "Labor Day (observed)", "2012-05-01": "Labor Day", "2012-06-07": "Corpus Christi", "2012-06-21": "Aymara New Year", @@ -648,12 +648,12 @@ "2014-04-15": "La Tablada", "2014-04-18": "Good Friday", "2014-05-01": "Labor Day", - "2014-05-02": "Labor Day (Observed)", + "2014-05-02": "Labor Day (observed)", "2014-06-19": "Corpus Christi", "2014-06-21": "Aymara New Year", "2014-08-06": "Independence Day", "2014-11-02": "All Souls' Day", - "2014-11-03": "All Souls' Day (Observed)", + "2014-11-03": "All Souls' Day (observed)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-22": "Plurinational State Foundation Day", @@ -664,7 +664,7 @@ "2015-05-01": "Labor Day", "2015-06-04": "Corpus Christi", "2015-06-21": "Aymara New Year", - "2015-06-22": "Aymara New Year (Observed)", + "2015-06-22": "Aymara New Year (observed)", "2015-08-06": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -675,17 +675,17 @@ "2016-03-25": "Good Friday", "2016-04-15": "La Tablada", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-26": "Corpus Christi", "2016-06-21": "Aymara New Year", "2016-08-06": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-22": "Plurinational State Foundation Day", - "2017-01-23": "Plurinational State Foundation Day (Observed)", + "2017-01-23": "Plurinational State Foundation Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -694,7 +694,7 @@ "2017-06-15": "Corpus Christi", "2017-06-21": "Aymara New Year", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -730,7 +730,7 @@ "2020-05-01": "Labor Day", "2020-06-11": "Corpus Christi", "2020-06-21": "Aymara New Year", - "2020-06-22": "Aymara New Year (Observed)", + "2020-06-22": "Aymara New Year (observed)", "2020-08-06": "Independence Day", "2020-10-17": "National Dignity Day", "2020-11-02": "All Souls' Day", @@ -754,18 +754,18 @@ "2022-03-01": "Carnival", "2022-04-15": "Good Friday; La Tablada", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-16": "Corpus Christi", "2022-06-21": "Aymara New Year", "2022-08-06": "Independence Day", "2022-10-17": "National Dignity Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Plurinational State Foundation Day", - "2023-01-23": "Plurinational State Foundation Day (Observed)", + "2023-01-23": "Plurinational State Foundation Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -774,7 +774,7 @@ "2023-06-08": "Corpus Christi", "2023-06-21": "Aymara New Year", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-10-17": "National Dignity Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -813,7 +813,7 @@ "2026-05-01": "Labor Day", "2026-06-04": "Corpus Christi", "2026-06-21": "Aymara New Year", - "2026-06-22": "Aymara New Year (Observed)", + "2026-06-22": "Aymara New Year (observed)", "2026-08-06": "Independence Day", "2026-10-17": "National Dignity Day", "2026-11-02": "All Souls' Day", @@ -841,7 +841,7 @@ "2028-06-15": "Corpus Christi", "2028-06-21": "Aymara New Year", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-10-17": "National Dignity Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -903,18 +903,18 @@ "2033-03-01": "Carnival", "2033-04-15": "Good Friday; La Tablada", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-16": "Corpus Christi", "2033-06-21": "Aymara New Year", "2033-08-06": "Independence Day", "2033-10-17": "National Dignity Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-22": "Plurinational State Foundation Day", - "2034-01-23": "Plurinational State Foundation Day (Observed)", + "2034-01-23": "Plurinational State Foundation Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -923,7 +923,7 @@ "2034-06-08": "Corpus Christi", "2034-06-21": "Aymara New Year", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-10-17": "National Dignity Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -962,7 +962,7 @@ "2037-05-01": "Labor Day", "2037-06-04": "Corpus Christi", "2037-06-21": "Aymara New Year", - "2037-06-22": "Aymara New Year (Observed)", + "2037-06-22": "Aymara New Year (observed)", "2037-08-06": "Independence Day", "2037-10-17": "National Dignity Day", "2037-11-02": "All Souls' Day", @@ -987,18 +987,18 @@ "2039-04-08": "Good Friday", "2039-04-15": "La Tablada", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-09": "Corpus Christi", "2039-06-21": "Aymara New Year", "2039-08-06": "Independence Day", "2039-10-17": "National Dignity Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-22": "Plurinational State Foundation Day", - "2040-01-23": "Plurinational State Foundation Day (Observed)", + "2040-01-23": "Plurinational State Foundation Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -1045,7 +1045,7 @@ "2043-05-01": "Labor Day", "2043-05-28": "Corpus Christi", "2043-06-21": "Aymara New Year", - "2043-06-22": "Aymara New Year (Observed)", + "2043-06-22": "Aymara New Year (observed)", "2043-08-06": "Independence Day", "2043-10-17": "National Dignity Day", "2043-11-02": "All Souls' Day", @@ -1056,18 +1056,18 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday; La Tablada", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-16": "Corpus Christi", "2044-06-21": "Aymara New Year", "2044-08-06": "Independence Day", "2044-10-17": "National Dignity Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-22": "Plurinational State Foundation Day", - "2045-01-23": "Plurinational State Foundation Day (Observed)", + "2045-01-23": "Plurinational State Foundation Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -1076,7 +1076,7 @@ "2045-06-08": "Corpus Christi", "2045-06-21": "Aymara New Year", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-10-17": "National Dignity Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -1115,7 +1115,7 @@ "2048-05-01": "Labor Day", "2048-06-04": "Corpus Christi", "2048-06-21": "Aymara New Year", - "2048-06-22": "Aymara New Year (Observed)", + "2048-06-22": "Aymara New Year (observed)", "2048-08-06": "Independence Day", "2048-10-17": "National Dignity Day", "2048-11-02": "All Souls' Day", @@ -1140,12 +1140,12 @@ "2050-04-08": "Good Friday", "2050-04-15": "La Tablada", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-09": "Corpus Christi", "2050-06-21": "Aymara New Year", "2050-08-06": "Independence Day", "2050-10-17": "National Dignity Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/BS_COMMON.json b/snapshots/countries/BS_COMMON.json index f34f0c3a5..9efd1f231 100644 --- a/snapshots/countries/BS_COMMON.json +++ b/snapshots/countries/BS_COMMON.json @@ -7,11 +7,11 @@ "1974-07-10": "Independence Day", "1974-08-05": "Emancipation Day", "1974-10-12": "Discovery Day", - "1974-10-14": "Discovery Day (Observed)", + "1974-10-14": "Discovery Day (observed)", "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", "1975-01-01": "New Year's Day", - "1975-01-03": "New Year's Day (Observed)", + "1975-01-03": "New Year's Day (observed)", "1975-03-28": "Good Friday", "1975-03-31": "Easter Monday", "1975-05-19": "Whit Monday", @@ -19,39 +19,39 @@ "1975-07-10": "Independence Day", "1975-08-04": "Emancipation Day", "1975-10-12": "Discovery Day", - "1975-10-13": "Discovery Day (Observed)", + "1975-10-13": "Discovery Day (observed)", "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", "1976-01-01": "New Year's Day", - "1976-01-02": "New Year's Day (Observed)", + "1976-01-02": "New Year's Day (observed)", "1976-04-16": "Good Friday", "1976-04-19": "Easter Monday", "1976-06-04": "Labour Day", "1976-06-07": "Whit Monday", "1976-07-10": "Independence Day", - "1976-07-12": "Independence Day (Observed)", + "1976-07-12": "Independence Day (observed)", "1976-08-02": "Emancipation Day", - "1976-10-11": "Discovery Day (Observed)", + "1976-10-11": "Discovery Day (observed)", "1976-10-12": "Discovery Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Boxing Day (Observed)", + "1976-12-27": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-30": "Whit Monday", "1977-06-03": "Labour Day", "1977-07-10": "Independence Day", - "1977-07-11": "Independence Day (Observed)", + "1977-07-11": "Independence Day (observed)", "1977-08-01": "Emancipation Day", "1977-10-12": "Discovery Day", - "1977-10-14": "Discovery Day (Observed)", + "1977-10-14": "Discovery Day (observed)", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-15": "Whit Monday", @@ -59,7 +59,7 @@ "1978-07-10": "Independence Day", "1978-08-07": "Emancipation Day", "1978-10-12": "Discovery Day", - "1978-10-13": "Discovery Day (Observed)", + "1978-10-13": "Discovery Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", @@ -72,7 +72,7 @@ "1979-10-12": "Discovery Day", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", - "1979-12-31": "New Year's Day (Observed)", + "1979-12-31": "New Year's Day (observed)", "1980-01-01": "New Year's Day", "1980-04-04": "Good Friday", "1980-04-07": "Easter Monday", @@ -81,11 +81,11 @@ "1980-07-10": "Independence Day", "1980-08-04": "Emancipation Day", "1980-10-12": "Discovery Day", - "1980-10-13": "Discovery Day (Observed)", + "1980-10-13": "Discovery Day (observed)", "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", "1981-01-01": "New Year's Day", - "1981-01-02": "New Year's Day (Observed)", + "1981-01-02": "New Year's Day (observed)", "1981-04-17": "Good Friday", "1981-04-20": "Easter Monday", "1981-06-05": "Labour Day", @@ -95,36 +95,36 @@ "1981-10-12": "Discovery Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", "1982-05-31": "Whit Monday", "1982-06-04": "Labour Day", "1982-07-10": "Independence Day", - "1982-07-12": "Independence Day (Observed)", + "1982-07-12": "Independence Day (observed)", "1982-08-02": "Emancipation Day", - "1982-10-11": "Discovery Day (Observed)", + "1982-10-11": "Discovery Day (observed)", "1982-10-12": "Discovery Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Boxing Day (Observed)", + "1982-12-27": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-23": "Whit Monday", "1983-06-03": "Labour Day", "1983-07-10": "Independence Day", - "1983-07-11": "Independence Day (Observed)", + "1983-07-11": "Independence Day (observed)", "1983-08-01": "Emancipation Day", "1983-10-12": "Discovery Day", - "1983-10-14": "Discovery Day (Observed)", + "1983-10-14": "Discovery Day (observed)", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-06-01": "Labour Day", @@ -134,7 +134,7 @@ "1984-10-12": "Discovery Day", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", - "1984-12-31": "New Year's Day (Observed)", + "1984-12-31": "New Year's Day (observed)", "1985-01-01": "New Year's Day", "1985-04-05": "Good Friday", "1985-04-08": "Easter Monday", @@ -143,11 +143,11 @@ "1985-07-10": "Independence Day", "1985-08-05": "Emancipation Day", "1985-10-12": "Discovery Day", - "1985-10-14": "Discovery Day (Observed)", + "1985-10-14": "Discovery Day (observed)", "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", - "1986-01-03": "New Year's Day (Observed)", + "1986-01-03": "New Year's Day (observed)", "1986-03-28": "Good Friday", "1986-03-31": "Easter Monday", "1986-05-19": "Whit Monday", @@ -155,11 +155,11 @@ "1986-07-10": "Independence Day", "1986-08-04": "Emancipation Day", "1986-10-12": "Discovery Day", - "1986-10-13": "Discovery Day (Observed)", + "1986-10-13": "Discovery Day (observed)", "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", "1987-01-01": "New Year's Day", - "1987-01-02": "New Year's Day (Observed)", + "1987-01-02": "New Year's Day (observed)", "1987-04-17": "Good Friday", "1987-04-20": "Easter Monday", "1987-06-05": "Labour Day", @@ -169,22 +169,22 @@ "1987-10-12": "Discovery Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", "1988-05-23": "Whit Monday", "1988-06-03": "Labour Day", "1988-07-10": "Independence Day", - "1988-07-11": "Independence Day (Observed)", + "1988-07-11": "Independence Day (observed)", "1988-08-01": "Emancipation Day", "1988-10-12": "Discovery Day", - "1988-10-14": "Discovery Day (Observed)", + "1988-10-14": "Discovery Day (observed)", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-15": "Whit Monday", @@ -192,7 +192,7 @@ "1989-07-10": "Independence Day", "1989-08-07": "Emancipation Day", "1989-10-12": "Discovery Day", - "1989-10-13": "Discovery Day (Observed)", + "1989-10-13": "Discovery Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", @@ -205,7 +205,7 @@ "1990-10-12": "Discovery Day", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", - "1990-12-31": "New Year's Day (Observed)", + "1990-12-31": "New Year's Day (observed)", "1991-01-01": "New Year's Day", "1991-03-29": "Good Friday", "1991-04-01": "Easter Monday", @@ -214,11 +214,11 @@ "1991-07-10": "Independence Day", "1991-08-05": "Emancipation Day", "1991-10-12": "Discovery Day", - "1991-10-14": "Discovery Day (Observed)", + "1991-10-14": "Discovery Day (observed)", "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", - "1992-01-03": "New Year's Day (Observed)", + "1992-01-03": "New Year's Day (observed)", "1992-04-17": "Good Friday", "1992-04-20": "Easter Monday", "1992-06-05": "Labour Day", @@ -228,36 +228,36 @@ "1992-10-12": "Discovery Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", "1993-05-31": "Whit Monday", "1993-06-04": "Labour Day", "1993-07-10": "Independence Day", - "1993-07-12": "Independence Day (Observed)", + "1993-07-12": "Independence Day (observed)", "1993-08-02": "Emancipation Day", - "1993-10-11": "Discovery Day (Observed)", + "1993-10-11": "Discovery Day (observed)", "1993-10-12": "Discovery Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Boxing Day (Observed)", + "1993-12-27": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-23": "Whit Monday", "1994-06-03": "Labour Day", "1994-07-10": "Independence Day", - "1994-07-11": "Independence Day (Observed)", + "1994-07-11": "Independence Day (observed)", "1994-08-01": "Emancipation Day", "1994-10-12": "Discovery Day", - "1994-10-14": "Discovery Day (Observed)", + "1994-10-14": "Discovery Day (observed)", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-06-02": "Labour Day", @@ -265,7 +265,7 @@ "1995-07-10": "Independence Day", "1995-08-07": "Emancipation Day", "1995-10-12": "Discovery Day", - "1995-10-13": "Discovery Day (Observed)", + "1995-10-13": "Discovery Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -276,11 +276,11 @@ "1996-07-10": "Independence Day", "1996-08-05": "Emancipation Day", "1996-10-12": "Discovery Day", - "1996-10-14": "Discovery Day (Observed)", + "1996-10-14": "Discovery Day (observed)", "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", - "1997-01-03": "New Year's Day (Observed)", + "1997-01-03": "New Year's Day (observed)", "1997-03-28": "Good Friday", "1997-03-31": "Easter Monday", "1997-05-19": "Whit Monday", @@ -288,11 +288,11 @@ "1997-07-10": "Independence Day", "1997-08-04": "Emancipation Day", "1997-10-12": "Discovery Day", - "1997-10-13": "Discovery Day (Observed)", + "1997-10-13": "Discovery Day (observed)", "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", "1998-01-01": "New Year's Day", - "1998-01-02": "New Year's Day (Observed)", + "1998-01-02": "New Year's Day (observed)", "1998-04-10": "Good Friday", "1998-04-13": "Easter Monday", "1998-06-01": "Whit Monday", @@ -302,22 +302,22 @@ "1998-10-12": "Discovery Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", "1999-05-24": "Whit Monday", "1999-06-04": "Labour Day", "1999-07-10": "Independence Day", - "1999-07-12": "Independence Day (Observed)", + "1999-07-12": "Independence Day (observed)", "1999-08-02": "Emancipation Day", - "1999-10-11": "Discovery Day (Observed)", + "1999-10-11": "Discovery Day (observed)", "1999-10-12": "Discovery Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Boxing Day (Observed)", + "1999-12-27": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-06-02": "Labour Day", @@ -325,7 +325,7 @@ "2000-07-10": "Independence Day", "2000-08-07": "Emancipation Day", "2000-10-12": "Discovery Day", - "2000-10-13": "Discovery Day (Observed)", + "2000-10-13": "Discovery Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", @@ -338,7 +338,7 @@ "2001-10-12": "Discovery Day", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", - "2001-12-31": "New Year's Day (Observed)", + "2001-12-31": "New Year's Day (observed)", "2002-01-01": "New Year's Day", "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", @@ -347,11 +347,11 @@ "2002-07-10": "Independence Day", "2002-08-05": "Emancipation Day", "2002-10-12": "Discovery Day", - "2002-10-14": "Discovery Day (Observed)", + "2002-10-14": "Discovery Day (observed)", "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", - "2003-01-03": "New Year's Day (Observed)", + "2003-01-03": "New Year's Day (observed)", "2003-04-18": "Good Friday", "2003-04-21": "Easter Monday", "2003-06-06": "Labour Day", @@ -359,39 +359,39 @@ "2003-07-10": "Independence Day", "2003-08-04": "Emancipation Day", "2003-10-12": "Discovery Day", - "2003-10-13": "Discovery Day (Observed)", + "2003-10-13": "Discovery Day (observed)", "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2004-01-01": "New Year's Day", - "2004-01-02": "New Year's Day (Observed)", + "2004-01-02": "New Year's Day (observed)", "2004-04-09": "Good Friday", "2004-04-12": "Easter Monday", "2004-05-31": "Whit Monday", "2004-06-04": "Labour Day", "2004-07-10": "Independence Day", - "2004-07-12": "Independence Day (Observed)", + "2004-07-12": "Independence Day (observed)", "2004-08-02": "Emancipation Day", - "2004-10-11": "Discovery Day (Observed)", + "2004-10-11": "Discovery Day (observed)", "2004-10-12": "Discovery Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Boxing Day (Observed)", + "2004-12-27": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-16": "Whit Monday", "2005-06-03": "Labour Day", "2005-07-10": "Independence Day", - "2005-07-11": "Independence Day (Observed)", + "2005-07-11": "Independence Day (observed)", "2005-08-01": "Emancipation Day", "2005-10-12": "Discovery Day", - "2005-10-14": "Discovery Day (Observed)", + "2005-10-14": "Discovery Day (observed)", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-06-02": "Labour Day", @@ -399,7 +399,7 @@ "2006-07-10": "Independence Day", "2006-08-07": "Emancipation Day", "2006-10-12": "Discovery Day", - "2006-10-13": "Discovery Day (Observed)", + "2006-10-13": "Discovery Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", @@ -412,7 +412,7 @@ "2007-10-12": "Discovery Day", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", - "2007-12-31": "New Year's Day (Observed)", + "2007-12-31": "New Year's Day (observed)", "2008-01-01": "New Year's Day", "2008-03-21": "Good Friday", "2008-03-24": "Easter Monday", @@ -421,11 +421,11 @@ "2008-07-10": "Independence Day", "2008-08-04": "Emancipation Day", "2008-10-12": "Discovery Day", - "2008-10-13": "Discovery Day (Observed)", + "2008-10-13": "Discovery Day (observed)", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2009-01-01": "New Year's Day", - "2009-01-02": "New Year's Day (Observed)", + "2009-01-02": "New Year's Day (observed)", "2009-04-10": "Good Friday", "2009-04-13": "Easter Monday", "2009-06-01": "Whit Monday", @@ -435,36 +435,36 @@ "2009-10-12": "Discovery Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", "2010-05-24": "Whit Monday", "2010-06-04": "Labour Day", "2010-07-10": "Independence Day", - "2010-07-12": "Independence Day (Observed)", + "2010-07-12": "Independence Day (observed)", "2010-08-02": "Emancipation Day", - "2010-10-11": "Discovery Day (Observed)", + "2010-10-11": "Discovery Day (observed)", "2010-10-12": "Discovery Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Boxing Day (Observed)", + "2010-12-27": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-06-03": "Labour Day", "2011-06-13": "Whit Monday", "2011-07-10": "Independence Day", - "2011-07-11": "Independence Day (Observed)", + "2011-07-11": "Independence Day (observed)", "2011-08-01": "Emancipation Day", "2011-10-12": "Discovery Day", - "2011-10-14": "Discovery Day (Observed)", + "2011-10-14": "Discovery Day (observed)", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-28": "Whit Monday", @@ -497,7 +497,7 @@ "2014-12-26": "Boxing Day", "2015-01-01": "New Year's Day", "2015-01-10": "Majority Rule Day", - "2015-01-12": "Majority Rule Day (Observed)", + "2015-01-12": "Majority Rule Day (observed)", "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-05-25": "Whit Monday", @@ -507,23 +507,23 @@ "2015-10-12": "National Heroes Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-10": "Majority Rule Day", - "2016-01-11": "Majority Rule Day (Observed)", + "2016-01-11": "Majority Rule Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-05-16": "Whit Monday", "2016-06-03": "Randol Fawkes Labour Day", "2016-07-10": "Independence Day", - "2016-07-11": "Independence Day (Observed)", + "2016-07-11": "Independence Day (observed)", "2016-08-01": "Emancipation Day", "2016-10-10": "National Heroes Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-10": "Majority Rule Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -567,21 +567,21 @@ "2020-10-12": "National Heroes Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-10": "Majority Rule Day", - "2021-01-11": "Majority Rule Day (Observed)", + "2021-01-11": "Majority Rule Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-05-24": "Whit Monday", "2021-06-04": "Randol Fawkes Labour Day", "2021-07-10": "Independence Day", - "2021-07-12": "Independence Day (Observed)", + "2021-07-12": "Independence Day (observed)", "2021-08-02": "Emancipation Day", "2021-10-11": "National Heroes Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-10": "Majority Rule Day", "2022-04-15": "Good Friday", @@ -589,15 +589,15 @@ "2022-06-03": "Randol Fawkes Labour Day", "2022-06-06": "Whit Monday", "2022-07-10": "Independence Day", - "2022-07-11": "Independence Day (Observed)", + "2022-07-11": "Independence Day (observed)", "2022-08-01": "Emancipation Day", "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-10-10": "National Heroes Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-10": "Majority Rule Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -632,7 +632,7 @@ "2025-12-26": "Boxing Day", "2026-01-01": "New Year's Day", "2026-01-10": "Majority Rule Day", - "2026-01-12": "Majority Rule Day (Observed)", + "2026-01-12": "Majority Rule Day (observed)", "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-05-25": "Whit Monday", @@ -642,21 +642,21 @@ "2026-10-12": "National Heroes Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-10": "Majority Rule Day", - "2027-01-11": "Majority Rule Day (Observed)", + "2027-01-11": "Majority Rule Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-05-17": "Whit Monday", "2027-06-04": "Randol Fawkes Labour Day", "2027-07-10": "Independence Day", - "2027-07-12": "Independence Day (Observed)", + "2027-07-12": "Independence Day (observed)", "2027-08-02": "Emancipation Day", "2027-10-11": "National Heroes Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Boxing Day (Observed)", + "2027-12-27": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-10": "Majority Rule Day", "2028-04-14": "Good Friday", @@ -703,18 +703,18 @@ "2031-12-26": "Boxing Day", "2032-01-01": "New Year's Day", "2032-01-10": "Majority Rule Day", - "2032-01-12": "Majority Rule Day (Observed)", + "2032-01-12": "Majority Rule Day (observed)", "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-05-17": "Whit Monday", "2032-06-04": "Randol Fawkes Labour Day", "2032-07-10": "Independence Day", - "2032-07-12": "Independence Day (Observed)", + "2032-07-12": "Independence Day (observed)", "2032-08-02": "Emancipation Day", "2032-10-11": "National Heroes Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Boxing Day (Observed)", + "2032-12-27": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-10": "Majority Rule Day", "2033-04-15": "Good Friday", @@ -722,14 +722,14 @@ "2033-06-03": "Randol Fawkes Labour Day", "2033-06-06": "Whit Monday", "2033-07-10": "Independence Day", - "2033-07-11": "Independence Day (Observed)", + "2033-07-11": "Independence Day (observed)", "2033-08-01": "Emancipation Day", "2033-10-10": "National Heroes Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-10": "Majority Rule Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -764,7 +764,7 @@ "2036-12-26": "Boxing Day", "2037-01-01": "New Year's Day", "2037-01-10": "Majority Rule Day", - "2037-01-12": "Majority Rule Day (Observed)", + "2037-01-12": "Majority Rule Day (observed)", "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-05-25": "Whit Monday", @@ -774,21 +774,21 @@ "2037-10-12": "National Heroes Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-10": "Majority Rule Day", - "2038-01-11": "Majority Rule Day (Observed)", + "2038-01-11": "Majority Rule Day (observed)", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-06-04": "Randol Fawkes Labour Day", "2038-06-14": "Whit Monday", "2038-07-10": "Independence Day", - "2038-07-12": "Independence Day (Observed)", + "2038-07-12": "Independence Day (observed)", "2038-08-02": "Emancipation Day", "2038-10-11": "National Heroes Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Boxing Day (Observed)", + "2038-12-27": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-10": "Majority Rule Day", "2039-04-08": "Good Friday", @@ -796,14 +796,14 @@ "2039-05-30": "Whit Monday", "2039-06-03": "Randol Fawkes Labour Day", "2039-07-10": "Independence Day", - "2039-07-11": "Independence Day (Observed)", + "2039-07-11": "Independence Day (observed)", "2039-08-01": "Emancipation Day", "2039-10-10": "National Heroes Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-10": "Majority Rule Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -838,7 +838,7 @@ "2042-12-26": "Boxing Day", "2043-01-01": "New Year's Day", "2043-01-10": "Majority Rule Day", - "2043-01-12": "Majority Rule Day (Observed)", + "2043-01-12": "Majority Rule Day (observed)", "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-05-18": "Whit Monday", @@ -848,23 +848,23 @@ "2043-10-12": "National Heroes Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-10": "Majority Rule Day", - "2044-01-11": "Majority Rule Day (Observed)", + "2044-01-11": "Majority Rule Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-06-03": "Randol Fawkes Labour Day", "2044-06-06": "Whit Monday", "2044-07-10": "Independence Day", - "2044-07-11": "Independence Day (Observed)", + "2044-07-11": "Independence Day (observed)", "2044-08-01": "Emancipation Day", "2044-10-10": "National Heroes Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-10": "Majority Rule Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -908,21 +908,21 @@ "2048-10-12": "National Heroes Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-10": "Majority Rule Day", - "2049-01-11": "Majority Rule Day (Observed)", + "2049-01-11": "Majority Rule Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-06-04": "Randol Fawkes Labour Day", "2049-06-07": "Whit Monday", "2049-07-10": "Independence Day", - "2049-07-12": "Independence Day (Observed)", + "2049-07-12": "Independence Day (observed)", "2049-08-02": "Emancipation Day", "2049-10-11": "National Heroes Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Boxing Day (Observed)", + "2049-12-27": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-10": "Majority Rule Day", "2050-04-08": "Good Friday", @@ -930,10 +930,10 @@ "2050-05-30": "Whit Monday", "2050-06-03": "Randol Fawkes Labour Day", "2050-07-10": "Independence Day", - "2050-07-11": "Independence Day (Observed)", + "2050-07-11": "Independence Day (observed)", "2050-08-01": "Emancipation Day", "2050-10-10": "National Heroes Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/BW_COMMON.json b/snapshots/countries/BW_COMMON.json index b9a095465..1bf4ccbf9 100644 --- a/snapshots/countries/BW_COMMON.json +++ b/snapshots/countries/BW_COMMON.json @@ -407,7 +407,7 @@ "1994-12-26": "Boxing Day", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day Holiday", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-04-17": "Easter Monday", @@ -418,7 +418,7 @@ "1995-07-18": "President's Day Holiday", "1995-09-30": "Botswana Day", "1995-10-01": "Botswana Day Holiday", - "1995-10-02": "Botswana Day Holiday (Observed)", + "1995-10-02": "Botswana Day Holiday (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -477,10 +477,10 @@ "1999-10-01": "Botswana Day Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Boxing Day (Observed)", + "1999-12-27": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "New Year's Day Holiday", - "2000-01-03": "New Year's Day Holiday (Observed)", + "2000-01-03": "New Year's Day Holiday (observed)", "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-04-24": "Easter Monday", @@ -491,7 +491,7 @@ "2000-07-18": "President's Day Holiday", "2000-09-30": "Botswana Day", "2000-10-01": "Botswana Day Holiday", - "2000-10-02": "Botswana Day Holiday (Observed)", + "2000-10-02": "Botswana Day Holiday (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", @@ -502,12 +502,12 @@ "2001-05-01": "Labour Day", "2001-05-24": "Ascension Day", "2001-07-01": "Sir Seretse Khama Day", - "2001-07-02": "Sir Seretse Khama Day (Observed)", + "2001-07-02": "Sir Seretse Khama Day (observed)", "2001-07-16": "President's Day", "2001-07-17": "President's Day Holiday", "2001-09-30": "Botswana Day", "2001-10-01": "Botswana Day Holiday", - "2001-10-02": "Botswana Day (Observed)", + "2001-10-02": "Botswana Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -552,15 +552,15 @@ "2004-10-01": "Botswana Day Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Boxing Day (Observed)", + "2004-12-27": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "New Year's Day Holiday", - "2005-01-03": "New Year's Day Holiday (Observed)", + "2005-01-03": "New Year's Day Holiday (observed)", "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-03-28": "Easter Monday", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-05-05": "Ascension Day", "2005-07-01": "Sir Seretse Khama Day", "2005-07-18": "President's Day", @@ -569,10 +569,10 @@ "2005-10-01": "Botswana Day Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day Holiday", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-04-17": "Easter Monday", @@ -583,7 +583,7 @@ "2006-07-18": "President's Day Holiday", "2006-09-30": "Botswana Day", "2006-10-01": "Botswana Day Holiday", - "2006-10-02": "Botswana Day Holiday (Observed)", + "2006-10-02": "Botswana Day Holiday (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", @@ -594,12 +594,12 @@ "2007-05-01": "Labour Day", "2007-05-17": "Ascension Day", "2007-07-01": "Sir Seretse Khama Day", - "2007-07-02": "Sir Seretse Khama Day (Observed)", + "2007-07-02": "Sir Seretse Khama Day (observed)", "2007-07-16": "President's Day", "2007-07-17": "President's Day Holiday", "2007-09-30": "Botswana Day", "2007-10-01": "Botswana Day Holiday", - "2007-10-02": "Botswana Day (Observed)", + "2007-10-02": "Botswana Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -643,15 +643,15 @@ "2010-10-01": "Botswana Day Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Boxing Day (Observed)", + "2010-12-27": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "New Year's Day Holiday", - "2011-01-03": "New Year's Day Holiday (Observed)", + "2011-01-03": "New Year's Day Holiday (observed)", "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-06-02": "Ascension Day", "2011-07-01": "Sir Seretse Khama Day", "2011-07-18": "President's Day", @@ -660,22 +660,22 @@ "2011-10-01": "Botswana Day Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "New Year's Day Holiday", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-04-09": "Easter Monday", "2012-05-01": "Labour Day", "2012-05-17": "Ascension Day", "2012-07-01": "Sir Seretse Khama Day", - "2012-07-02": "Sir Seretse Khama Day (Observed)", + "2012-07-02": "Sir Seretse Khama Day (observed)", "2012-07-16": "President's Day", "2012-07-17": "President's Day Holiday", "2012-09-30": "Botswana Day", "2012-10-01": "Botswana Day Holiday", - "2012-10-02": "Botswana Day (Observed)", + "2012-10-02": "Botswana Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -726,7 +726,7 @@ "2016-03-26": "Holy Saturday", "2016-03-28": "Easter Monday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-05-05": "Ascension Day", "2016-07-01": "Sir Seretse Khama Day", "2016-07-18": "President's Day", @@ -735,10 +735,10 @@ "2016-10-01": "Botswana Day Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "New Year's Day Holiday", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-04-17": "Easter Monday", @@ -749,7 +749,7 @@ "2017-07-18": "President's Day Holiday", "2017-09-30": "Botswana Day", "2017-10-01": "Botswana Day Holiday", - "2017-10-02": "Botswana Day Holiday (Observed)", + "2017-10-02": "Botswana Day Holiday (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -760,12 +760,12 @@ "2018-05-01": "Labour Day", "2018-05-10": "Ascension Day", "2018-07-01": "Sir Seretse Khama Day", - "2018-07-02": "Sir Seretse Khama Day (Observed)", + "2018-07-02": "Sir Seretse Khama Day (observed)", "2018-07-16": "President's Day", "2018-07-17": "President's Day Holiday", "2018-09-30": "Botswana Day", "2018-10-01": "Botswana Day Holiday", - "2018-10-02": "Botswana Day (Observed)", + "2018-10-02": "Botswana Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -813,15 +813,15 @@ "2021-10-01": "Botswana Day Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "New Year's Day Holiday", - "2022-01-03": "New Year's Day Holiday (Observed)", + "2022-01-03": "New Year's Day Holiday (observed)", "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-04-18": "Easter Monday", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-05-26": "Ascension Day", "2022-07-01": "Sir Seretse Khama Day", "2022-07-18": "President's Day", @@ -830,10 +830,10 @@ "2022-10-01": "Botswana Day Holiday", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "New Year's Day Holiday", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-04-10": "Easter Monday", @@ -844,7 +844,7 @@ "2023-07-18": "President's Day Holiday", "2023-09-30": "Botswana Day", "2023-10-01": "Botswana Day Holiday", - "2023-10-02": "Botswana Day Holiday (Observed)", + "2023-10-02": "Botswana Day Holiday (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -905,10 +905,10 @@ "2027-10-01": "Botswana Day Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Boxing Day (Observed)", + "2027-12-27": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "New Year's Day Holiday", - "2028-01-03": "New Year's Day Holiday (Observed)", + "2028-01-03": "New Year's Day Holiday (observed)", "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-04-17": "Easter Monday", @@ -919,7 +919,7 @@ "2028-07-18": "President's Day Holiday", "2028-09-30": "Botswana Day", "2028-10-01": "Botswana Day Holiday", - "2028-10-02": "Botswana Day Holiday (Observed)", + "2028-10-02": "Botswana Day Holiday (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -930,12 +930,12 @@ "2029-05-01": "Labour Day", "2029-05-10": "Ascension Day", "2029-07-01": "Sir Seretse Khama Day", - "2029-07-02": "Sir Seretse Khama Day (Observed)", + "2029-07-02": "Sir Seretse Khama Day (observed)", "2029-07-16": "President's Day", "2029-07-17": "President's Day Holiday", "2029-09-30": "Botswana Day", "2029-10-01": "Botswana Day Holiday", - "2029-10-02": "Botswana Day (Observed)", + "2029-10-02": "Botswana Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -981,15 +981,15 @@ "2032-10-01": "Botswana Day Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Boxing Day (Observed)", + "2032-12-27": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "New Year's Day Holiday", - "2033-01-03": "New Year's Day Holiday (Observed)", + "2033-01-03": "New Year's Day Holiday (observed)", "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-05-26": "Ascension Day", "2033-07-01": "Sir Seretse Khama Day", "2033-07-18": "President's Day", @@ -998,10 +998,10 @@ "2033-10-01": "Botswana Day Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day Holiday", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-04-10": "Easter Monday", @@ -1012,7 +1012,7 @@ "2034-07-18": "President's Day Holiday", "2034-09-30": "Botswana Day", "2034-10-01": "Botswana Day Holiday", - "2034-10-02": "Botswana Day Holiday (Observed)", + "2034-10-02": "Botswana Day Holiday (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -1023,12 +1023,12 @@ "2035-05-01": "Labour Day", "2035-05-03": "Ascension Day", "2035-07-01": "Sir Seretse Khama Day", - "2035-07-02": "Sir Seretse Khama Day (Observed)", + "2035-07-02": "Sir Seretse Khama Day (observed)", "2035-07-16": "President's Day", "2035-07-17": "President's Day Holiday", "2035-09-30": "Botswana Day", "2035-10-01": "Botswana Day Holiday", - "2035-10-02": "Botswana Day (Observed)", + "2035-10-02": "Botswana Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1075,15 +1075,15 @@ "2038-10-01": "Botswana Day Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Boxing Day (Observed)", + "2038-12-27": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day Holiday", - "2039-01-03": "New Year's Day Holiday (Observed)", + "2039-01-03": "New Year's Day Holiday (observed)", "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-04-11": "Easter Monday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-05-19": "Ascension Day", "2039-07-01": "Sir Seretse Khama Day", "2039-07-18": "President's Day", @@ -1092,22 +1092,22 @@ "2039-10-01": "Botswana Day Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day Holiday", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-04-02": "Easter Monday", "2040-05-01": "Labour Day", "2040-05-10": "Ascension Day", "2040-07-01": "Sir Seretse Khama Day", - "2040-07-02": "Sir Seretse Khama Day (Observed)", + "2040-07-02": "Sir Seretse Khama Day (observed)", "2040-07-16": "President's Day", "2040-07-17": "President's Day Holiday", "2040-09-30": "Botswana Day", "2040-10-01": "Botswana Day Holiday", - "2040-10-02": "Botswana Day (Observed)", + "2040-10-02": "Botswana Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1159,7 +1159,7 @@ "2044-04-16": "Holy Saturday", "2044-04-18": "Easter Monday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-05-26": "Ascension Day", "2044-07-01": "Sir Seretse Khama Day", "2044-07-18": "President's Day", @@ -1168,10 +1168,10 @@ "2044-10-01": "Botswana Day Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day Holiday", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-04-10": "Easter Monday", @@ -1182,7 +1182,7 @@ "2045-07-18": "President's Day Holiday", "2045-09-30": "Botswana Day", "2045-10-01": "Botswana Day Holiday", - "2045-10-02": "Botswana Day Holiday (Observed)", + "2045-10-02": "Botswana Day Holiday (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1193,12 +1193,12 @@ "2046-05-01": "Labour Day", "2046-05-03": "Ascension Day", "2046-07-01": "Sir Seretse Khama Day", - "2046-07-02": "Sir Seretse Khama Day (Observed)", + "2046-07-02": "Sir Seretse Khama Day (observed)", "2046-07-16": "President's Day", "2046-07-17": "President's Day Holiday", "2046-09-30": "Botswana Day", "2046-10-01": "Botswana Day Holiday", - "2046-10-02": "Botswana Day (Observed)", + "2046-10-02": "Botswana Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1245,15 +1245,15 @@ "2049-10-01": "Botswana Day Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Boxing Day (Observed)", + "2049-12-27": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "New Year's Day Holiday", - "2050-01-03": "New Year's Day Holiday (Observed)", + "2050-01-03": "New Year's Day Holiday (observed)", "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-04-11": "Easter Monday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-05-19": "Ascension Day", "2050-07-01": "Sir Seretse Khama Day", "2050-07-18": "President's Day", @@ -1262,5 +1262,5 @@ "2050-10-01": "Botswana Day Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/BZ_COMMON.json b/snapshots/countries/BZ_COMMON.json index c8faa5e68..04025edb9 100644 --- a/snapshots/countries/BZ_COMMON.json +++ b/snapshots/countries/BZ_COMMON.json @@ -1,6 +1,6 @@ { "1982-01-01": "New Year's Day", - "1982-03-08": "National Heroes and Benefactors Day (Observed)", + "1982-03-08": "National Heroes and Benefactors Day (observed)", "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-04-12": "Easter Monday", @@ -8,33 +8,33 @@ "1982-05-24": "Commonwealth Day", "1982-09-10": "Saint George's Caye Day", "1982-09-21": "Independence Day", - "1982-10-11": "Pan American Day (Observed)", + "1982-10-11": "Pan American Day (observed)", "1982-11-19": "Garifuna Settlement Day", "1982-12-25": "Christmas Day", - "1982-12-27": "Boxing Day (Observed)", + "1982-12-27": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-03-07": "National Heroes and Benefactors Day (Observed)", + "1983-03-07": "National Heroes and Benefactors Day (observed)", "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-04-04": "Easter Monday", - "1983-05-02": "Labour Day (Observed)", - "1983-05-23": "Commonwealth Day (Observed)", + "1983-05-02": "Labour Day (observed)", + "1983-05-23": "Commonwealth Day (observed)", "1983-09-10": "Saint George's Caye Day", "1983-09-21": "Independence Day", - "1983-10-10": "Pan American Day (Observed)", + "1983-10-10": "Pan American Day (observed)", "1983-11-19": "Garifuna Settlement Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1984-01-02": "New Year's Day (Observed)", - "1984-03-12": "National Heroes and Benefactors Day (Observed)", + "1984-01-02": "New Year's Day (observed)", + "1984-03-12": "National Heroes and Benefactors Day (observed)", "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-04-23": "Easter Monday", "1984-05-01": "Labour Day", - "1984-05-21": "Commonwealth Day (Observed)", + "1984-05-21": "Commonwealth Day (observed)", "1984-09-10": "Saint George's Caye Day", "1984-09-21": "Independence Day", - "1984-10-15": "Pan American Day (Observed)", + "1984-10-15": "Pan American Day (observed)", "1984-11-19": "Garifuna Settlement Day", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", @@ -44,7 +44,7 @@ "1985-04-06": "Holy Saturday", "1985-04-08": "Easter Monday", "1985-05-01": "Labour Day", - "1985-05-27": "Commonwealth Day (Observed)", + "1985-05-27": "Commonwealth Day (observed)", "1985-09-10": "Saint George's Caye Day", "1985-09-21": "Independence Day", "1985-10-12": "Pan American Day", @@ -52,15 +52,15 @@ "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", "1986-01-01": "New Year's Day", - "1986-03-10": "National Heroes and Benefactors Day (Observed)", + "1986-03-10": "National Heroes and Benefactors Day (observed)", "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-03-31": "Easter Monday", "1986-05-01": "Labour Day", "1986-05-24": "Commonwealth Day", "1986-09-10": "Saint George's Caye Day", - "1986-09-22": "Independence Day (Observed)", - "1986-10-13": "Pan American Day (Observed)", + "1986-09-22": "Independence Day (observed)", + "1986-10-13": "Pan American Day (observed)", "1986-11-19": "Garifuna Settlement Day", "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", @@ -70,7 +70,7 @@ "1987-04-18": "Holy Saturday", "1987-04-20": "Easter Monday", "1987-05-01": "Labour Day", - "1987-05-25": "Commonwealth Day (Observed)", + "1987-05-25": "Commonwealth Day (observed)", "1987-09-10": "Saint George's Caye Day", "1987-09-21": "Independence Day", "1987-10-12": "Pan American Day", @@ -78,41 +78,41 @@ "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", "1988-01-01": "New Year's Day", - "1988-03-07": "National Heroes and Benefactors Day (Observed)", + "1988-03-07": "National Heroes and Benefactors Day (observed)", "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-04-04": "Easter Monday", - "1988-05-02": "Labour Day (Observed)", - "1988-05-23": "Commonwealth Day (Observed)", + "1988-05-02": "Labour Day (observed)", + "1988-05-23": "Commonwealth Day (observed)", "1988-09-10": "Saint George's Caye Day", "1988-09-21": "Independence Day", - "1988-10-10": "Pan American Day (Observed)", + "1988-10-10": "Pan American Day (observed)", "1988-11-19": "Garifuna Settlement Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1989-01-02": "New Year's Day (Observed)", - "1989-03-06": "National Heroes and Benefactors Day (Observed)", + "1989-01-02": "New Year's Day (observed)", + "1989-03-06": "National Heroes and Benefactors Day (observed)", "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-03-27": "Easter Monday", "1989-05-01": "Labour Day", - "1989-05-22": "Commonwealth Day (Observed)", - "1989-09-11": "Saint George's Caye Day (Observed)", + "1989-05-22": "Commonwealth Day (observed)", + "1989-09-11": "Saint George's Caye Day (observed)", "1989-09-21": "Independence Day", - "1989-10-09": "Pan American Day (Observed)", - "1989-11-20": "Garifuna Settlement Day (Observed)", + "1989-10-09": "Pan American Day (observed)", + "1989-11-20": "Garifuna Settlement Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", - "1990-03-12": "National Heroes and Benefactors Day (Observed)", + "1990-03-12": "National Heroes and Benefactors Day (observed)", "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-04-16": "Easter Monday", "1990-05-01": "Labour Day", - "1990-05-21": "Commonwealth Day (Observed)", + "1990-05-21": "Commonwealth Day (observed)", "1990-09-10": "Saint George's Caye Day", "1990-09-21": "Independence Day", - "1990-10-15": "Pan American Day (Observed)", + "1990-10-15": "Pan American Day (observed)", "1990-11-19": "Garifuna Settlement Day", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", @@ -122,7 +122,7 @@ "1991-03-30": "Holy Saturday", "1991-04-01": "Easter Monday", "1991-05-01": "Labour Day", - "1991-05-27": "Commonwealth Day (Observed)", + "1991-05-27": "Commonwealth Day (observed)", "1991-09-10": "Saint George's Caye Day", "1991-09-21": "Independence Day", "1991-10-12": "Pan American Day", @@ -135,7 +135,7 @@ "1992-04-18": "Holy Saturday", "1992-04-20": "Easter Monday", "1992-05-01": "Labour Day", - "1992-05-25": "Commonwealth Day (Observed)", + "1992-05-25": "Commonwealth Day (observed)", "1992-09-10": "Saint George's Caye Day", "1992-09-21": "Independence Day", "1992-10-12": "Pan American Day", @@ -143,7 +143,7 @@ "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", "1993-01-01": "New Year's Day", - "1993-03-08": "National Heroes and Benefactors Day (Observed)", + "1993-03-08": "National Heroes and Benefactors Day (observed)", "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-04-12": "Easter Monday", @@ -151,34 +151,34 @@ "1993-05-24": "Commonwealth Day", "1993-09-10": "Saint George's Caye Day", "1993-09-21": "Independence Day", - "1993-10-11": "Pan American Day (Observed)", + "1993-10-11": "Pan American Day (observed)", "1993-11-19": "Garifuna Settlement Day", "1993-12-25": "Christmas Day", - "1993-12-27": "Boxing Day (Observed)", + "1993-12-27": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-03-07": "National Heroes and Benefactors Day (Observed)", + "1994-03-07": "National Heroes and Benefactors Day (observed)", "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-04-04": "Easter Monday", - "1994-05-02": "Labour Day (Observed)", - "1994-05-23": "Commonwealth Day (Observed)", + "1994-05-02": "Labour Day (observed)", + "1994-05-23": "Commonwealth Day (observed)", "1994-09-10": "Saint George's Caye Day", "1994-09-21": "Independence Day", - "1994-10-10": "Pan American Day (Observed)", + "1994-10-10": "Pan American Day (observed)", "1994-11-19": "Garifuna Settlement Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1995-01-02": "New Year's Day (Observed)", - "1995-03-06": "National Heroes and Benefactors Day (Observed)", + "1995-01-02": "New Year's Day (observed)", + "1995-03-06": "National Heroes and Benefactors Day (observed)", "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-04-17": "Easter Monday", "1995-05-01": "Labour Day", - "1995-05-22": "Commonwealth Day (Observed)", - "1995-09-11": "Saint George's Caye Day (Observed)", + "1995-05-22": "Commonwealth Day (observed)", + "1995-09-11": "Saint George's Caye Day (observed)", "1995-09-21": "Independence Day", - "1995-10-09": "Pan American Day (Observed)", - "1995-11-20": "Garifuna Settlement Day (Observed)", + "1995-10-09": "Pan American Day (observed)", + "1995-11-20": "Garifuna Settlement Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -187,7 +187,7 @@ "1996-04-06": "Holy Saturday", "1996-04-08": "Easter Monday", "1996-05-01": "Labour Day", - "1996-05-27": "Commonwealth Day (Observed)", + "1996-05-27": "Commonwealth Day (observed)", "1996-09-10": "Saint George's Caye Day", "1996-09-21": "Independence Day", "1996-10-12": "Pan American Day", @@ -195,15 +195,15 @@ "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", - "1997-03-10": "National Heroes and Benefactors Day (Observed)", + "1997-03-10": "National Heroes and Benefactors Day (observed)", "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-03-31": "Easter Monday", "1997-05-01": "Labour Day", "1997-05-24": "Commonwealth Day", "1997-09-10": "Saint George's Caye Day", - "1997-09-22": "Independence Day (Observed)", - "1997-10-13": "Pan American Day (Observed)", + "1997-09-22": "Independence Day (observed)", + "1997-10-13": "Pan American Day (observed)", "1997-11-19": "Garifuna Settlement Day", "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", @@ -213,7 +213,7 @@ "1998-04-11": "Holy Saturday", "1998-04-13": "Easter Monday", "1998-05-01": "Labour Day", - "1998-05-25": "Commonwealth Day (Observed)", + "1998-05-25": "Commonwealth Day (observed)", "1998-09-10": "Saint George's Caye Day", "1998-09-21": "Independence Day", "1998-10-12": "Pan American Day", @@ -221,7 +221,7 @@ "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", "1999-01-01": "New Year's Day", - "1999-03-08": "National Heroes and Benefactors Day (Observed)", + "1999-03-08": "National Heroes and Benefactors Day (observed)", "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-04-05": "Easter Monday", @@ -229,33 +229,33 @@ "1999-05-24": "Commonwealth Day", "1999-09-10": "Saint George's Caye Day", "1999-09-21": "Independence Day", - "1999-10-11": "Pan American Day (Observed)", + "1999-10-11": "Pan American Day (observed)", "1999-11-19": "Garifuna Settlement Day", "1999-12-25": "Christmas Day", - "1999-12-27": "Boxing Day (Observed)", + "1999-12-27": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-03-06": "National Heroes and Benefactors Day (Observed)", + "2000-03-06": "National Heroes and Benefactors Day (observed)", "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-04-24": "Easter Monday", "2000-05-01": "Labour Day", - "2000-05-22": "Commonwealth Day (Observed)", - "2000-09-11": "Saint George's Caye Day (Observed)", + "2000-05-22": "Commonwealth Day (observed)", + "2000-09-11": "Saint George's Caye Day (observed)", "2000-09-21": "Independence Day", - "2000-10-09": "Pan American Day (Observed)", - "2000-11-20": "Garifuna Settlement Day (Observed)", + "2000-10-09": "Pan American Day (observed)", + "2000-11-20": "Garifuna Settlement Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", - "2001-03-12": "National Heroes and Benefactors Day (Observed)", + "2001-03-12": "National Heroes and Benefactors Day (observed)", "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-04-16": "Easter Monday", "2001-05-01": "Labour Day", - "2001-05-21": "Commonwealth Day (Observed)", + "2001-05-21": "Commonwealth Day (observed)", "2001-09-10": "Saint George's Caye Day", "2001-09-21": "Independence Day", - "2001-10-15": "Pan American Day (Observed)", + "2001-10-15": "Pan American Day (observed)", "2001-11-19": "Garifuna Settlement Day", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", @@ -265,7 +265,7 @@ "2002-03-30": "Holy Saturday", "2002-04-01": "Easter Monday", "2002-05-01": "Labour Day", - "2002-05-27": "Commonwealth Day (Observed)", + "2002-05-27": "Commonwealth Day (observed)", "2002-09-10": "Saint George's Caye Day", "2002-09-21": "Independence Day", "2002-10-12": "Pan American Day", @@ -273,20 +273,20 @@ "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", - "2003-03-10": "National Heroes and Benefactors Day (Observed)", + "2003-03-10": "National Heroes and Benefactors Day (observed)", "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-04-21": "Easter Monday", "2003-05-01": "Labour Day", "2003-05-24": "Commonwealth Day", "2003-09-10": "Saint George's Caye Day", - "2003-09-22": "Independence Day (Observed)", - "2003-10-13": "Pan American Day (Observed)", + "2003-09-22": "Independence Day (observed)", + "2003-10-13": "Pan American Day (observed)", "2003-11-19": "Garifuna Settlement Day", "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", "2004-01-01": "New Year's Day", - "2004-03-08": "National Heroes and Benefactors Day (Observed)", + "2004-03-08": "National Heroes and Benefactors Day (observed)", "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-04-12": "Easter Monday", @@ -294,59 +294,59 @@ "2004-05-24": "Commonwealth Day", "2004-09-10": "Saint George's Caye Day", "2004-09-21": "Independence Day", - "2004-10-11": "Pan American Day (Observed)", + "2004-10-11": "Pan American Day (observed)", "2004-11-19": "Garifuna Settlement Day", "2004-12-25": "Christmas Day", - "2004-12-27": "Boxing Day (Observed)", + "2004-12-27": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-03-07": "National Heroes and Benefactors Day (Observed)", + "2005-03-07": "National Heroes and Benefactors Day (observed)", "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-03-28": "Easter Monday", - "2005-05-02": "Labour Day (Observed)", - "2005-05-23": "Commonwealth Day (Observed)", + "2005-05-02": "Labour Day (observed)", + "2005-05-23": "Commonwealth Day (observed)", "2005-09-10": "Saint George's Caye Day", "2005-09-21": "Independence Day", - "2005-10-10": "Pan American Day (Observed)", + "2005-10-10": "Pan American Day (observed)", "2005-11-19": "Garifuna Settlement Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2006-01-02": "New Year's Day (Observed)", - "2006-03-06": "National Heroes and Benefactors Day (Observed)", + "2006-01-02": "New Year's Day (observed)", + "2006-03-06": "National Heroes and Benefactors Day (observed)", "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-04-17": "Easter Monday", "2006-05-01": "Labour Day", - "2006-05-22": "Commonwealth Day (Observed)", - "2006-09-11": "Saint George's Caye Day (Observed)", + "2006-05-22": "Commonwealth Day (observed)", + "2006-09-11": "Saint George's Caye Day (observed)", "2006-09-21": "Independence Day", - "2006-10-09": "Pan American Day (Observed)", - "2006-11-20": "Garifuna Settlement Day (Observed)", + "2006-10-09": "Pan American Day (observed)", + "2006-11-20": "Garifuna Settlement Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", - "2007-03-12": "National Heroes and Benefactors Day (Observed)", + "2007-03-12": "National Heroes and Benefactors Day (observed)", "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-04-09": "Easter Monday", "2007-05-01": "Labour Day", - "2007-05-21": "Commonwealth Day (Observed)", + "2007-05-21": "Commonwealth Day (observed)", "2007-09-10": "Saint George's Caye Day", "2007-09-21": "Independence Day", - "2007-10-15": "Pan American Day (Observed)", + "2007-10-15": "Pan American Day (observed)", "2007-11-19": "Garifuna Settlement Day", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", - "2008-03-10": "National Heroes and Benefactors Day (Observed)", + "2008-03-10": "National Heroes and Benefactors Day (observed)", "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-03-24": "Easter Monday", "2008-05-01": "Labour Day", "2008-05-24": "Commonwealth Day", "2008-09-10": "Saint George's Caye Day", - "2008-09-22": "Independence Day (Observed)", - "2008-10-13": "Pan American Day (Observed)", + "2008-09-22": "Independence Day (observed)", + "2008-10-13": "Pan American Day (observed)", "2008-11-19": "Garifuna Settlement Day", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", @@ -356,7 +356,7 @@ "2009-04-11": "Holy Saturday", "2009-04-13": "Easter Monday", "2009-05-01": "Labour Day", - "2009-05-25": "Commonwealth Day (Observed)", + "2009-05-25": "Commonwealth Day (observed)", "2009-09-10": "Saint George's Caye Day", "2009-09-21": "Independence Day", "2009-10-12": "Pan American Day", @@ -364,7 +364,7 @@ "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", "2010-01-01": "New Year's Day", - "2010-03-08": "National Heroes and Benefactors Day (Observed)", + "2010-03-08": "National Heroes and Benefactors Day (observed)", "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-04-05": "Easter Monday", @@ -372,33 +372,33 @@ "2010-05-24": "Commonwealth Day", "2010-09-10": "Saint George's Caye Day", "2010-09-21": "Independence Day", - "2010-10-11": "Pan American Day (Observed)", + "2010-10-11": "Pan American Day (observed)", "2010-11-19": "Garifuna Settlement Day", "2010-12-25": "Christmas Day", - "2010-12-27": "Boxing Day (Observed)", + "2010-12-27": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-03-07": "National Heroes and Benefactors Day (Observed)", + "2011-03-07": "National Heroes and Benefactors Day (observed)", "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-04-25": "Easter Monday", - "2011-05-02": "Labour Day (Observed)", - "2011-05-23": "Commonwealth Day (Observed)", + "2011-05-02": "Labour Day (observed)", + "2011-05-23": "Commonwealth Day (observed)", "2011-09-10": "Saint George's Caye Day", "2011-09-21": "Independence Day", - "2011-10-10": "Pan American Day (Observed)", + "2011-10-10": "Pan American Day (observed)", "2011-11-19": "Garifuna Settlement Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2012-01-02": "New Year's Day (Observed)", - "2012-03-12": "National Heroes and Benefactors Day (Observed)", + "2012-01-02": "New Year's Day (observed)", + "2012-03-12": "National Heroes and Benefactors Day (observed)", "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-04-09": "Easter Monday", "2012-05-01": "Labour Day", - "2012-05-21": "Commonwealth Day (Observed)", + "2012-05-21": "Commonwealth Day (observed)", "2012-09-10": "Saint George's Caye Day", "2012-09-21": "Independence Day", - "2012-10-15": "Pan American Day (Observed)", + "2012-10-15": "Pan American Day (observed)", "2012-11-19": "Garifuna Settlement Day", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", @@ -408,7 +408,7 @@ "2013-03-30": "Holy Saturday", "2013-04-01": "Easter Monday", "2013-05-01": "Labour Day", - "2013-05-27": "Commonwealth Day (Observed)", + "2013-05-27": "Commonwealth Day (observed)", "2013-09-10": "Saint George's Caye Day", "2013-09-21": "Independence Day", "2013-10-12": "Pan American Day", @@ -416,15 +416,15 @@ "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", - "2014-03-10": "National Heroes and Benefactors Day (Observed)", + "2014-03-10": "National Heroes and Benefactors Day (observed)", "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-04-21": "Easter Monday", "2014-05-01": "Labour Day", "2014-05-24": "Commonwealth Day", "2014-09-10": "Saint George's Caye Day", - "2014-09-22": "Independence Day (Observed)", - "2014-10-13": "Pan American Day (Observed)", + "2014-09-22": "Independence Day (observed)", + "2014-10-13": "Pan American Day (observed)", "2014-11-19": "Garifuna Settlement Day", "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", @@ -434,7 +434,7 @@ "2015-04-04": "Holy Saturday", "2015-04-06": "Easter Monday", "2015-05-01": "Labour Day", - "2015-05-25": "Commonwealth Day (Observed)", + "2015-05-25": "Commonwealth Day (observed)", "2015-09-10": "Saint George's Caye Day", "2015-09-21": "Independence Day", "2015-10-12": "Pan American Day", @@ -442,41 +442,41 @@ "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2016-01-01": "New Year's Day", - "2016-03-07": "National Heroes and Benefactors Day (Observed)", + "2016-03-07": "National Heroes and Benefactors Day (observed)", "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-03-28": "Easter Monday", - "2016-05-02": "Labour Day (Observed)", - "2016-05-23": "Commonwealth Day (Observed)", + "2016-05-02": "Labour Day (observed)", + "2016-05-23": "Commonwealth Day (observed)", "2016-09-10": "Saint George's Caye Day", "2016-09-21": "Independence Day", - "2016-10-10": "Pan American Day (Observed)", + "2016-10-10": "Pan American Day (observed)", "2016-11-19": "Garifuna Settlement Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2017-01-02": "New Year's Day (Observed)", - "2017-03-06": "National Heroes and Benefactors Day (Observed)", + "2017-01-02": "New Year's Day (observed)", + "2017-03-06": "National Heroes and Benefactors Day (observed)", "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-04-17": "Easter Monday", "2017-05-01": "Labour Day", - "2017-05-22": "Commonwealth Day (Observed)", - "2017-09-11": "Saint George's Caye Day (Observed)", + "2017-05-22": "Commonwealth Day (observed)", + "2017-09-11": "Saint George's Caye Day (observed)", "2017-09-21": "Independence Day", - "2017-10-09": "Pan American Day (Observed)", - "2017-11-20": "Garifuna Settlement Day (Observed)", + "2017-10-09": "Pan American Day (observed)", + "2017-11-20": "Garifuna Settlement Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", - "2018-03-12": "National Heroes and Benefactors Day (Observed)", + "2018-03-12": "National Heroes and Benefactors Day (observed)", "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-04-02": "Easter Monday", "2018-05-01": "Labour Day", - "2018-05-21": "Commonwealth Day (Observed)", + "2018-05-21": "Commonwealth Day (observed)", "2018-09-10": "Saint George's Caye Day", "2018-09-21": "Independence Day", - "2018-10-15": "Pan American Day (Observed)", + "2018-10-15": "Pan American Day (observed)", "2018-11-19": "Garifuna Settlement Day", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", @@ -486,7 +486,7 @@ "2019-04-20": "Holy Saturday", "2019-04-22": "Easter Monday", "2019-05-01": "Labour Day", - "2019-05-27": "Commonwealth Day (Observed)", + "2019-05-27": "Commonwealth Day (observed)", "2019-09-10": "Saint George's Caye Day", "2019-09-21": "Independence Day", "2019-10-12": "Pan American Day", @@ -499,7 +499,7 @@ "2020-04-11": "Holy Saturday", "2020-04-13": "Easter Monday", "2020-05-01": "Labour Day", - "2020-05-25": "Commonwealth Day (Observed)", + "2020-05-25": "Commonwealth Day (observed)", "2020-09-10": "Saint George's Caye Day", "2020-09-21": "Independence Day", "2020-10-12": "Pan American Day", @@ -508,45 +508,45 @@ "2020-12-26": "Boxing Day", "2021-01-01": "New Year's Day", "2021-01-15": "George Price Day", - "2021-03-08": "National Heroes and Benefactors Day (Observed)", + "2021-03-08": "National Heroes and Benefactors Day (observed)", "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-04-05": "Easter Monday", "2021-05-01": "Labour Day", "2021-05-24": "Commonwealth Day", - "2021-08-02": "Emancipation Day (Observed)", + "2021-08-02": "Emancipation Day (observed)", "2021-09-10": "Saint George's Caye Day", "2021-09-21": "Independence Day", - "2021-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2021-10-11": "Indigenous Peoples' Resistance Day (observed)", "2021-11-19": "Garifuna Settlement Day", "2021-12-25": "Christmas Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-15": "George Price Day", - "2022-03-07": "National Heroes and Benefactors Day (Observed)", + "2022-03-07": "National Heroes and Benefactors Day (observed)", "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-04-18": "Easter Monday", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-08-01": "Emancipation Day", "2022-09-10": "Saint George's Caye Day", "2022-09-21": "Independence Day", - "2022-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2022-10-10": "Indigenous Peoples' Resistance Day (observed)", "2022-11-19": "Garifuna Settlement Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2023-01-02": "New Year's Day (Observed)", - "2023-01-16": "George Price Day (Observed)", - "2023-03-06": "National Heroes and Benefactors Day (Observed)", + "2023-01-02": "New Year's Day (observed)", + "2023-01-16": "George Price Day (observed)", + "2023-03-06": "National Heroes and Benefactors Day (observed)", "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-04-10": "Easter Monday", "2023-05-01": "Labour Day", - "2023-07-31": "Emancipation Day (Observed)", - "2023-09-11": "Saint George's Caye Day (Observed)", + "2023-07-31": "Emancipation Day (observed)", + "2023-09-11": "Saint George's Caye Day (observed)", "2023-09-21": "Independence Day", - "2023-10-09": "Indigenous Peoples' Resistance Day (Observed)", - "2023-11-20": "Garifuna Settlement Day (Observed)", + "2023-10-09": "Indigenous Peoples' Resistance Day (observed)", + "2023-11-20": "Garifuna Settlement Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -556,7 +556,7 @@ "2024-03-30": "Holy Saturday", "2024-04-01": "Easter Monday", "2024-05-01": "Labour Day", - "2024-07-29": "Emancipation Day (Observed)", + "2024-07-29": "Emancipation Day (observed)", "2024-09-10": "Saint George's Caye Day", "2024-09-21": "Independence Day", "2024-10-12": "Indigenous Peoples' Resistance Day", @@ -565,15 +565,15 @@ "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-01-15": "George Price Day", - "2025-03-10": "National Heroes and Benefactors Day (Observed)", + "2025-03-10": "National Heroes and Benefactors Day (observed)", "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-04-21": "Easter Monday", "2025-05-01": "Labour Day", - "2025-08-04": "Emancipation Day (Observed)", + "2025-08-04": "Emancipation Day (observed)", "2025-09-10": "Saint George's Caye Day", - "2025-09-22": "Independence Day (Observed)", - "2025-10-13": "Indigenous Peoples' Resistance Day (Observed)", + "2025-09-22": "Independence Day (observed)", + "2025-10-13": "Indigenous Peoples' Resistance Day (observed)", "2025-11-19": "Garifuna Settlement Day", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", @@ -593,43 +593,43 @@ "2026-12-26": "Boxing Day", "2027-01-01": "New Year's Day", "2027-01-15": "George Price Day", - "2027-03-08": "National Heroes and Benefactors Day (Observed)", + "2027-03-08": "National Heroes and Benefactors Day (observed)", "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-03-29": "Easter Monday", "2027-05-01": "Labour Day", - "2027-08-02": "Emancipation Day (Observed)", + "2027-08-02": "Emancipation Day (observed)", "2027-09-10": "Saint George's Caye Day", "2027-09-21": "Independence Day", - "2027-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2027-10-11": "Indigenous Peoples' Resistance Day (observed)", "2027-11-19": "Garifuna Settlement Day", "2027-12-25": "Christmas Day", - "2027-12-27": "Boxing Day (Observed)", + "2027-12-27": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-15": "George Price Day", - "2028-03-06": "National Heroes and Benefactors Day (Observed)", + "2028-03-06": "National Heroes and Benefactors Day (observed)", "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-04-17": "Easter Monday", "2028-05-01": "Labour Day", - "2028-07-31": "Emancipation Day (Observed)", - "2028-09-11": "Saint George's Caye Day (Observed)", + "2028-07-31": "Emancipation Day (observed)", + "2028-09-11": "Saint George's Caye Day (observed)", "2028-09-21": "Independence Day", - "2028-10-09": "Indigenous Peoples' Resistance Day (Observed)", - "2028-11-20": "Garifuna Settlement Day (Observed)", + "2028-10-09": "Indigenous Peoples' Resistance Day (observed)", + "2028-11-20": "Garifuna Settlement Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", "2029-01-15": "George Price Day", - "2029-03-12": "National Heroes and Benefactors Day (Observed)", + "2029-03-12": "National Heroes and Benefactors Day (observed)", "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-04-02": "Easter Monday", "2029-05-01": "Labour Day", - "2029-07-30": "Emancipation Day (Observed)", + "2029-07-30": "Emancipation Day (observed)", "2029-09-10": "Saint George's Caye Day", "2029-09-21": "Independence Day", - "2029-10-15": "Indigenous Peoples' Resistance Day (Observed)", + "2029-10-15": "Indigenous Peoples' Resistance Day (observed)", "2029-11-19": "Garifuna Settlement Day", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", @@ -640,7 +640,7 @@ "2030-04-20": "Holy Saturday", "2030-04-22": "Easter Monday", "2030-05-01": "Labour Day", - "2030-07-29": "Emancipation Day (Observed)", + "2030-07-29": "Emancipation Day (observed)", "2030-09-10": "Saint George's Caye Day", "2030-09-21": "Independence Day", "2030-10-12": "Indigenous Peoples' Resistance Day", @@ -649,85 +649,85 @@ "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-15": "George Price Day", - "2031-03-10": "National Heroes and Benefactors Day (Observed)", + "2031-03-10": "National Heroes and Benefactors Day (observed)", "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-04-14": "Easter Monday", "2031-05-01": "Labour Day", - "2031-08-04": "Emancipation Day (Observed)", + "2031-08-04": "Emancipation Day (observed)", "2031-09-10": "Saint George's Caye Day", - "2031-09-22": "Independence Day (Observed)", - "2031-10-13": "Indigenous Peoples' Resistance Day (Observed)", + "2031-09-22": "Independence Day (observed)", + "2031-10-13": "Indigenous Peoples' Resistance Day (observed)", "2031-11-19": "Garifuna Settlement Day", "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2032-01-01": "New Year's Day", "2032-01-15": "George Price Day", - "2032-03-08": "National Heroes and Benefactors Day (Observed)", + "2032-03-08": "National Heroes and Benefactors Day (observed)", "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-03-29": "Easter Monday", "2032-05-01": "Labour Day", - "2032-08-02": "Emancipation Day (Observed)", + "2032-08-02": "Emancipation Day (observed)", "2032-09-10": "Saint George's Caye Day", "2032-09-21": "Independence Day", - "2032-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2032-10-11": "Indigenous Peoples' Resistance Day (observed)", "2032-11-19": "Garifuna Settlement Day", "2032-12-25": "Christmas Day", - "2032-12-27": "Boxing Day (Observed)", + "2032-12-27": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-15": "George Price Day", - "2033-03-07": "National Heroes and Benefactors Day (Observed)", + "2033-03-07": "National Heroes and Benefactors Day (observed)", "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-04-18": "Easter Monday", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-08-01": "Emancipation Day", "2033-09-10": "Saint George's Caye Day", "2033-09-21": "Independence Day", - "2033-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2033-10-10": "Indigenous Peoples' Resistance Day (observed)", "2033-11-19": "Garifuna Settlement Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2034-01-02": "New Year's Day (Observed)", - "2034-01-16": "George Price Day (Observed)", - "2034-03-06": "National Heroes and Benefactors Day (Observed)", + "2034-01-02": "New Year's Day (observed)", + "2034-01-16": "George Price Day (observed)", + "2034-03-06": "National Heroes and Benefactors Day (observed)", "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-04-10": "Easter Monday", "2034-05-01": "Labour Day", - "2034-07-31": "Emancipation Day (Observed)", - "2034-09-11": "Saint George's Caye Day (Observed)", + "2034-07-31": "Emancipation Day (observed)", + "2034-09-11": "Saint George's Caye Day (observed)", "2034-09-21": "Independence Day", - "2034-10-09": "Indigenous Peoples' Resistance Day (Observed)", - "2034-11-20": "Garifuna Settlement Day (Observed)", + "2034-10-09": "Indigenous Peoples' Resistance Day (observed)", + "2034-11-20": "Garifuna Settlement Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", "2035-01-15": "George Price Day", - "2035-03-12": "National Heroes and Benefactors Day (Observed)", + "2035-03-12": "National Heroes and Benefactors Day (observed)", "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-03-26": "Easter Monday", "2035-05-01": "Labour Day", - "2035-07-30": "Emancipation Day (Observed)", + "2035-07-30": "Emancipation Day (observed)", "2035-09-10": "Saint George's Caye Day", "2035-09-21": "Independence Day", - "2035-10-15": "Indigenous Peoples' Resistance Day (Observed)", + "2035-10-15": "Indigenous Peoples' Resistance Day (observed)", "2035-11-19": "Garifuna Settlement Day", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-01-15": "George Price Day", - "2036-03-10": "National Heroes and Benefactors Day (Observed)", + "2036-03-10": "National Heroes and Benefactors Day (observed)", "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-04-14": "Easter Monday", "2036-05-01": "Labour Day", - "2036-08-04": "Emancipation Day (Observed)", + "2036-08-04": "Emancipation Day (observed)", "2036-09-10": "Saint George's Caye Day", - "2036-09-22": "Independence Day (Observed)", - "2036-10-13": "Indigenous Peoples' Resistance Day (Observed)", + "2036-09-22": "Independence Day (observed)", + "2036-10-13": "Indigenous Peoples' Resistance Day (observed)", "2036-11-19": "Garifuna Settlement Day", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", @@ -747,43 +747,43 @@ "2037-12-26": "Boxing Day", "2038-01-01": "New Year's Day", "2038-01-15": "George Price Day", - "2038-03-08": "National Heroes and Benefactors Day (Observed)", + "2038-03-08": "National Heroes and Benefactors Day (observed)", "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-04-26": "Easter Monday", "2038-05-01": "Labour Day", - "2038-08-02": "Emancipation Day (Observed)", + "2038-08-02": "Emancipation Day (observed)", "2038-09-10": "Saint George's Caye Day", "2038-09-21": "Independence Day", - "2038-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2038-10-11": "Indigenous Peoples' Resistance Day (observed)", "2038-11-19": "Garifuna Settlement Day", "2038-12-25": "Christmas Day", - "2038-12-27": "Boxing Day (Observed)", + "2038-12-27": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-15": "George Price Day", - "2039-03-07": "National Heroes and Benefactors Day (Observed)", + "2039-03-07": "National Heroes and Benefactors Day (observed)", "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-04-11": "Easter Monday", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-08-01": "Emancipation Day", "2039-09-10": "Saint George's Caye Day", "2039-09-21": "Independence Day", - "2039-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2039-10-10": "Indigenous Peoples' Resistance Day (observed)", "2039-11-19": "Garifuna Settlement Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2040-01-02": "New Year's Day (Observed)", - "2040-01-16": "George Price Day (Observed)", - "2040-03-12": "National Heroes and Benefactors Day (Observed)", + "2040-01-02": "New Year's Day (observed)", + "2040-01-16": "George Price Day (observed)", + "2040-03-12": "National Heroes and Benefactors Day (observed)", "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-04-02": "Easter Monday", "2040-05-01": "Labour Day", - "2040-07-30": "Emancipation Day (Observed)", + "2040-07-30": "Emancipation Day (observed)", "2040-09-10": "Saint George's Caye Day", "2040-09-21": "Independence Day", - "2040-10-15": "Indigenous Peoples' Resistance Day (Observed)", + "2040-10-15": "Indigenous Peoples' Resistance Day (observed)", "2040-11-19": "Garifuna Settlement Day", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", @@ -794,7 +794,7 @@ "2041-04-20": "Holy Saturday", "2041-04-22": "Easter Monday", "2041-05-01": "Labour Day", - "2041-07-29": "Emancipation Day (Observed)", + "2041-07-29": "Emancipation Day (observed)", "2041-09-10": "Saint George's Caye Day", "2041-09-21": "Independence Day", "2041-10-12": "Indigenous Peoples' Resistance Day", @@ -803,15 +803,15 @@ "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-01-15": "George Price Day", - "2042-03-10": "National Heroes and Benefactors Day (Observed)", + "2042-03-10": "National Heroes and Benefactors Day (observed)", "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-04-07": "Easter Monday", "2042-05-01": "Labour Day", - "2042-08-04": "Emancipation Day (Observed)", + "2042-08-04": "Emancipation Day (observed)", "2042-09-10": "Saint George's Caye Day", - "2042-09-22": "Independence Day (Observed)", - "2042-10-13": "Indigenous Peoples' Resistance Day (Observed)", + "2042-09-22": "Independence Day (observed)", + "2042-10-13": "Indigenous Peoples' Resistance Day (observed)", "2042-11-19": "Garifuna Settlement Day", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", @@ -831,43 +831,43 @@ "2043-12-26": "Boxing Day", "2044-01-01": "New Year's Day", "2044-01-15": "George Price Day", - "2044-03-07": "National Heroes and Benefactors Day (Observed)", + "2044-03-07": "National Heroes and Benefactors Day (observed)", "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-04-18": "Easter Monday", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-08-01": "Emancipation Day", "2044-09-10": "Saint George's Caye Day", "2044-09-21": "Independence Day", - "2044-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2044-10-10": "Indigenous Peoples' Resistance Day (observed)", "2044-11-19": "Garifuna Settlement Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2045-01-02": "New Year's Day (Observed)", - "2045-01-16": "George Price Day (Observed)", - "2045-03-06": "National Heroes and Benefactors Day (Observed)", + "2045-01-02": "New Year's Day (observed)", + "2045-01-16": "George Price Day (observed)", + "2045-03-06": "National Heroes and Benefactors Day (observed)", "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-04-10": "Easter Monday", "2045-05-01": "Labour Day", - "2045-07-31": "Emancipation Day (Observed)", - "2045-09-11": "Saint George's Caye Day (Observed)", + "2045-07-31": "Emancipation Day (observed)", + "2045-09-11": "Saint George's Caye Day (observed)", "2045-09-21": "Independence Day", - "2045-10-09": "Indigenous Peoples' Resistance Day (Observed)", - "2045-11-20": "Garifuna Settlement Day (Observed)", + "2045-10-09": "Indigenous Peoples' Resistance Day (observed)", + "2045-11-20": "Garifuna Settlement Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", "2046-01-15": "George Price Day", - "2046-03-12": "National Heroes and Benefactors Day (Observed)", + "2046-03-12": "National Heroes and Benefactors Day (observed)", "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-03-26": "Easter Monday", "2046-05-01": "Labour Day", - "2046-07-30": "Emancipation Day (Observed)", + "2046-07-30": "Emancipation Day (observed)", "2046-09-10": "Saint George's Caye Day", "2046-09-21": "Independence Day", - "2046-10-15": "Indigenous Peoples' Resistance Day (Observed)", + "2046-10-15": "Indigenous Peoples' Resistance Day (observed)", "2046-11-19": "Garifuna Settlement Day", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", @@ -878,7 +878,7 @@ "2047-04-13": "Holy Saturday", "2047-04-15": "Easter Monday", "2047-05-01": "Labour Day", - "2047-07-29": "Emancipation Day (Observed)", + "2047-07-29": "Emancipation Day (observed)", "2047-09-10": "Saint George's Caye Day", "2047-09-21": "Independence Day", "2047-10-12": "Indigenous Peoples' Resistance Day", @@ -901,29 +901,29 @@ "2048-12-26": "Boxing Day", "2049-01-01": "New Year's Day", "2049-01-15": "George Price Day", - "2049-03-08": "National Heroes and Benefactors Day (Observed)", + "2049-03-08": "National Heroes and Benefactors Day (observed)", "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-04-19": "Easter Monday", "2049-05-01": "Labour Day", - "2049-08-02": "Emancipation Day (Observed)", + "2049-08-02": "Emancipation Day (observed)", "2049-09-10": "Saint George's Caye Day", "2049-09-21": "Independence Day", - "2049-10-11": "Indigenous Peoples' Resistance Day (Observed)", + "2049-10-11": "Indigenous Peoples' Resistance Day (observed)", "2049-11-19": "Garifuna Settlement Day", "2049-12-25": "Christmas Day", - "2049-12-27": "Boxing Day (Observed)", + "2049-12-27": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-15": "George Price Day", - "2050-03-07": "National Heroes and Benefactors Day (Observed)", + "2050-03-07": "National Heroes and Benefactors Day (observed)", "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-04-11": "Easter Monday", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-08-01": "Emancipation Day", "2050-09-10": "Saint George's Caye Day", "2050-09-21": "Independence Day", - "2050-10-10": "Indigenous Peoples' Resistance Day (Observed)", + "2050-10-10": "Indigenous Peoples' Resistance Day (observed)", "2050-11-19": "Garifuna Settlement Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day" diff --git a/snapshots/countries/CA_AB.json b/snapshots/countries/CA_AB.json index 1aaeb4c5b..73540826b 100644 --- a/snapshots/countries/CA_AB.json +++ b/snapshots/countries/CA_AB.json @@ -1,25 +1,25 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-03-26": "Easter Monday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -41,7 +41,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", @@ -52,10 +52,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-05-23": "Victoria Day", @@ -64,19 +64,19 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -109,7 +109,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", @@ -119,19 +119,19 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", @@ -139,11 +139,11 @@ "1962-04-23": "Easter Monday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -166,7 +166,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", @@ -177,10 +177,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-05-23": "Victoria Day", @@ -189,19 +189,19 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -234,7 +234,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -245,19 +245,19 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", @@ -265,11 +265,11 @@ "1973-04-23": "Easter Monday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -305,10 +305,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-23": "Victoria Day", @@ -318,20 +318,20 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-08-07": "Heritage Day", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", @@ -339,12 +339,12 @@ "1979-04-16": "Easter Monday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-08-06": "Heritage Day", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -369,7 +369,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -381,10 +381,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-23": "Victoria Day", @@ -394,20 +394,20 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-08-06": "Heritage Day", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -443,7 +443,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -454,20 +454,20 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-08-07": "Heritage Day", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", @@ -476,12 +476,12 @@ "1990-04-16": "Easter Monday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-08-06": "Heritage Day", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -508,7 +508,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-02-15": "Family Day", "1993-04-09": "Good Friday", @@ -521,10 +521,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-02-21": "Family Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -535,21 +535,21 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-20": "Family Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-08-07": "Heritage Day", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -588,7 +588,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-02-15": "Family Day", "1999-04-02": "Good Friday", @@ -601,21 +601,21 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-02-21": "Family Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-07": "Heritage Day", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", @@ -624,12 +624,12 @@ "2001-04-16": "Easter Monday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-08-06": "Heritage Day", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -668,10 +668,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-02-21": "Family Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -682,21 +682,21 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-20": "Family Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-08-07": "Heritage Day", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", @@ -705,12 +705,12 @@ "2007-04-09": "Easter Monday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-08-06": "Heritage Day", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -737,7 +737,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-02-15": "Family Day", "2010-04-02": "Good Friday", @@ -750,10 +750,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-02-21": "Family Day", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", @@ -764,21 +764,21 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-20": "Family Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-08-06": "Heritage Day", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -817,7 +817,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-02-15": "Family Day", "2016-03-25": "Good Friday", @@ -829,21 +829,21 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-20": "Family Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-08-07": "Heritage Day", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -852,12 +852,12 @@ "2018-04-02": "Easter Monday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-08-06": "Heritage Day", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -884,7 +884,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-02-15": "Family Day", "2021-04-02": "Good Friday", @@ -898,10 +898,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-02-21": "Family Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", @@ -913,23 +913,23 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-20": "Family Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-08-07": "Heritage Day", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -971,7 +971,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-02-15": "Family Day", "2027-03-26": "Good Friday", @@ -985,23 +985,23 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-21": "Family Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-08-07": "Heritage Day", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -1010,14 +1010,14 @@ "2029-04-02": "Easter Monday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-08-06": "Heritage Day", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -1059,10 +1059,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-02-21": "Family Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", @@ -1074,23 +1074,23 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-20": "Family Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-08-07": "Heritage Day", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -1099,14 +1099,14 @@ "2035-03-26": "Easter Monday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-08-06": "Heritage Day", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1135,7 +1135,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-02-15": "Family Day", "2038-04-23": "Good Friday", @@ -1149,10 +1149,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-02-21": "Family Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", @@ -1164,23 +1164,23 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-20": "Family Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-08-06": "Heritage Day", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1222,7 +1222,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-15": "Family Day", "2044-04-15": "Good Friday", @@ -1235,23 +1235,23 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-20": "Family Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-08-07": "Heritage Day", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1260,14 +1260,14 @@ "2046-03-26": "Easter Monday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-08-06": "Heritage Day", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1296,7 +1296,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-02-15": "Family Day", "2049-04-16": "Good Friday", @@ -1310,10 +1310,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-02-21": "Family Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", @@ -1325,6 +1325,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_BC.json b/snapshots/countries/CA_BC.json index 6a68f5536..dd3e6c812 100644 --- a/snapshots/countries/CA_BC.json +++ b/snapshots/countries/CA_BC.json @@ -1,23 +1,23 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -37,7 +37,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -47,10 +47,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -58,18 +58,18 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -99,7 +99,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -108,29 +108,29 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -151,7 +151,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -161,10 +161,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -172,18 +172,18 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -213,7 +213,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -223,29 +223,29 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -278,10 +278,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -290,31 +290,31 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-08-07": "British Columbia Day", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-08-06": "British Columbia Day", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -337,7 +337,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -348,10 +348,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -360,19 +360,19 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-08-06": "British Columbia Day", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -405,7 +405,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -415,31 +415,31 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-08-07": "British Columbia Day", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-08-06": "British Columbia Day", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -462,7 +462,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -473,10 +473,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -485,19 +485,19 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-08-07": "British Columbia Day", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -530,7 +530,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -541,31 +541,31 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-07": "British Columbia Day", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-08-06": "British Columbia Day", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -598,10 +598,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", @@ -610,31 +610,31 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-08-07": "British Columbia Day", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-08-06": "British Columbia Day", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -657,7 +657,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-05-24": "Victoria Day", @@ -668,10 +668,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", @@ -680,19 +680,19 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-08-06": "British Columbia Day", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -728,7 +728,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-02-08": "Family Day", "2016-03-25": "Good Friday", @@ -739,20 +739,20 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-13": "Family Day", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-08-07": "British Columbia Day", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -760,12 +760,12 @@ "2018-03-30": "Good Friday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-08-06": "British Columbia Day", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -790,7 +790,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-02-15": "Family Day", "2021-04-02": "Good Friday", @@ -803,10 +803,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-02-21": "Family Day", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", @@ -818,22 +818,22 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-20": "Family Day", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-08-07": "British Columbia Day", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -872,7 +872,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-02-15": "Family Day", "2027-03-26": "Good Friday", @@ -885,22 +885,22 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-21": "Family Day", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-08-07": "British Columbia Day", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -908,14 +908,14 @@ "2029-03-30": "Good Friday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-08-06": "British Columbia Day", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -954,10 +954,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-02-21": "Family Day", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", @@ -968,22 +968,22 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-20": "Family Day", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-08-07": "British Columbia Day", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -991,14 +991,14 @@ "2035-03-23": "Good Friday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-08-06": "British Columbia Day", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1025,7 +1025,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-02-15": "Family Day", "2038-04-23": "Good Friday", @@ -1038,10 +1038,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-02-21": "Family Day", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", @@ -1052,22 +1052,22 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-20": "Family Day", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-08-06": "British Columbia Day", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1106,7 +1106,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-15": "Family Day", "2044-04-15": "Good Friday", @@ -1118,22 +1118,22 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-20": "Family Day", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-08-07": "British Columbia Day", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1141,14 +1141,14 @@ "2046-03-23": "Good Friday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-08-06": "British Columbia Day", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1175,7 +1175,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-02-15": "Family Day", "2049-04-16": "Good Friday", @@ -1188,10 +1188,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-02-21": "Family Day", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", @@ -1202,6 +1202,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_COMMON.json b/snapshots/countries/CA_COMMON.json index e112ddc9a..71a5579d9 100644 --- a/snapshots/countries/CA_COMMON.json +++ b/snapshots/countries/CA_COMMON.json @@ -1,23 +1,23 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -37,7 +37,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -47,10 +47,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -58,18 +58,18 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -99,7 +99,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -108,29 +108,29 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -151,7 +151,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -161,10 +161,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -172,18 +172,18 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -213,7 +213,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -223,29 +223,29 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -275,10 +275,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -286,29 +286,29 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -329,7 +329,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -339,10 +339,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -350,18 +350,18 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -391,7 +391,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -400,29 +400,29 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -443,7 +443,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -453,10 +453,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -464,18 +464,18 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -505,7 +505,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -515,29 +515,29 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -567,10 +567,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", @@ -578,29 +578,29 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -621,7 +621,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-05-24": "Victoria Day", @@ -631,10 +631,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", @@ -642,18 +642,18 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -683,7 +683,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-05-23": "Victoria Day", @@ -692,29 +692,29 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", "2018-03-30": "Good Friday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -735,7 +735,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-05-24": "Victoria Day", @@ -746,10 +746,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", @@ -758,20 +758,20 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -804,7 +804,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-05-24": "Victoria Day", @@ -815,33 +815,33 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", "2029-03-30": "Good Friday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -874,10 +874,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", @@ -886,33 +886,33 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", "2035-03-23": "Good Friday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -935,7 +935,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-05-24": "Victoria Day", @@ -946,10 +946,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", @@ -958,20 +958,20 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1004,7 +1004,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-05-23": "Victoria Day", @@ -1014,33 +1014,33 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", "2046-03-23": "Good Friday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1063,7 +1063,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-05-24": "Victoria Day", @@ -1074,10 +1074,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", @@ -1086,6 +1086,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_MB.json b/snapshots/countries/CA_MB.json index cf2272e37..091f4865f 100644 --- a/snapshots/countries/CA_MB.json +++ b/snapshots/countries/CA_MB.json @@ -1,25 +1,25 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-08-07": "Civic Holiday", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-08-06": "Civic Holiday", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -41,7 +41,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -52,10 +52,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -64,19 +64,19 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-08-06": "Civic Holiday", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -109,7 +109,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -119,31 +119,31 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-08-07": "Civic Holiday", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-08-06": "Civic Holiday", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -166,7 +166,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -177,10 +177,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -189,19 +189,19 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-08-07": "Civic Holiday", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -234,7 +234,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -245,31 +245,31 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-08-07": "Civic Holiday", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-08-06": "Civic Holiday", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -302,10 +302,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -314,31 +314,31 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-08-07": "Civic Holiday", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-08-06": "Civic Holiday", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -361,7 +361,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -372,10 +372,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -384,19 +384,19 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-08-06": "Civic Holiday", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -429,7 +429,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -439,31 +439,31 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-08-07": "Civic Holiday", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-08-06": "Civic Holiday", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -486,7 +486,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -497,10 +497,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -509,19 +509,19 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-08-07": "Civic Holiday", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -554,7 +554,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -565,31 +565,31 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-07": "Civic Holiday", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-08-06": "Civic Holiday", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -622,10 +622,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", @@ -634,31 +634,31 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-08-07": "Civic Holiday", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-08-06": "Civic Holiday", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -683,7 +683,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-02-15": "Louis Riel Day", "2010-04-02": "Good Friday", @@ -695,10 +695,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-02-21": "Louis Riel Day", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", @@ -708,20 +708,20 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-20": "Louis Riel Day", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-08-06": "Civic Holiday", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -757,7 +757,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-02-15": "Louis Riel Day", "2016-03-25": "Good Friday", @@ -768,20 +768,20 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-20": "Louis Riel Day", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-08-07": "Terry Fox Day", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -789,12 +789,12 @@ "2018-03-30": "Good Friday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-08-06": "Terry Fox Day", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -819,7 +819,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-02-15": "Louis Riel Day", "2021-04-02": "Good Friday", @@ -832,10 +832,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-02-21": "Louis Riel Day", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", @@ -846,22 +846,22 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-20": "Louis Riel Day", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-08-07": "Terry Fox Day", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -900,7 +900,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-02-15": "Louis Riel Day", "2027-03-26": "Good Friday", @@ -913,22 +913,22 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-21": "Louis Riel Day", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-08-07": "Terry Fox Day", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -936,14 +936,14 @@ "2029-03-30": "Good Friday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-08-06": "Terry Fox Day", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -982,10 +982,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-02-21": "Louis Riel Day", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", @@ -996,22 +996,22 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-20": "Louis Riel Day", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-08-07": "Terry Fox Day", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -1019,14 +1019,14 @@ "2035-03-23": "Good Friday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-08-06": "Terry Fox Day", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1053,7 +1053,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-02-15": "Louis Riel Day", "2038-04-23": "Good Friday", @@ -1066,10 +1066,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-02-21": "Louis Riel Day", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", @@ -1080,22 +1080,22 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-20": "Louis Riel Day", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-08-06": "Terry Fox Day", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1134,7 +1134,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-15": "Louis Riel Day", "2044-04-15": "Good Friday", @@ -1146,22 +1146,22 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-20": "Louis Riel Day", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-08-07": "Terry Fox Day", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1169,14 +1169,14 @@ "2046-03-23": "Good Friday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-08-06": "Terry Fox Day", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1203,7 +1203,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-02-15": "Louis Riel Day", "2049-04-16": "Good Friday", @@ -1216,10 +1216,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-02-21": "Louis Riel Day", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", @@ -1230,6 +1230,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_NB.json b/snapshots/countries/CA_NB.json index 10281ed3a..ee4a96953 100644 --- a/snapshots/countries/CA_NB.json +++ b/snapshots/countries/CA_NB.json @@ -1,23 +1,23 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -37,7 +37,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -47,10 +47,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -58,18 +58,18 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -99,7 +99,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -108,29 +108,29 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -151,7 +151,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -161,10 +161,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -172,18 +172,18 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -213,7 +213,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -223,29 +223,29 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -277,10 +277,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -289,31 +289,31 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-08-07": "New Brunswick Day", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-08-06": "New Brunswick Day", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -336,7 +336,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -347,10 +347,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -359,19 +359,19 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-08-06": "New Brunswick Day", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -404,7 +404,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -414,31 +414,31 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-08-07": "New Brunswick Day", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-08-06": "New Brunswick Day", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -461,7 +461,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -472,10 +472,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -484,19 +484,19 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-08-07": "New Brunswick Day", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -529,7 +529,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -540,31 +540,31 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-07": "New Brunswick Day", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-08-06": "New Brunswick Day", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -597,10 +597,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", @@ -609,31 +609,31 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-08-07": "New Brunswick Day", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-08-06": "New Brunswick Day", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -656,7 +656,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-05-24": "Victoria Day", @@ -667,10 +667,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", @@ -679,19 +679,19 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-08-06": "New Brunswick Day", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -724,7 +724,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-05-23": "Victoria Day", @@ -734,19 +734,19 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-08-07": "New Brunswick Day", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -754,12 +754,12 @@ "2018-03-30": "Good Friday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-08-06": "New Brunswick Day", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -784,7 +784,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-02-15": "Family Day", "2021-04-02": "Good Friday", @@ -797,10 +797,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-02-21": "Family Day", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", @@ -812,22 +812,22 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-20": "Family Day", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-08-07": "New Brunswick Day", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -866,7 +866,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-02-15": "Family Day", "2027-03-26": "Good Friday", @@ -879,22 +879,22 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-21": "Family Day", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-08-07": "New Brunswick Day", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -902,14 +902,14 @@ "2029-03-30": "Good Friday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-08-06": "New Brunswick Day", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -948,10 +948,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-02-21": "Family Day", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", @@ -962,22 +962,22 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-20": "Family Day", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-08-07": "New Brunswick Day", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -985,14 +985,14 @@ "2035-03-23": "Good Friday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-08-06": "New Brunswick Day", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1019,7 +1019,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-02-15": "Family Day", "2038-04-23": "Good Friday", @@ -1032,10 +1032,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-02-21": "Family Day", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", @@ -1046,22 +1046,22 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-20": "Family Day", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-08-06": "New Brunswick Day", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1100,7 +1100,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-15": "Family Day", "2044-04-15": "Good Friday", @@ -1112,22 +1112,22 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-20": "Family Day", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-08-07": "New Brunswick Day", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1135,14 +1135,14 @@ "2046-03-23": "Good Friday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-08-06": "New Brunswick Day", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1169,7 +1169,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-02-15": "Family Day", "2049-04-16": "Good Friday", @@ -1182,10 +1182,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-02-21": "Family Day", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", @@ -1196,6 +1196,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_NL.json b/snapshots/countries/CA_NL.json index a07592ad0..c7a476369 100644 --- a/snapshots/countries/CA_NL.json +++ b/snapshots/countries/CA_NL.json @@ -1,27 +1,27 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-03-20": "St. Patrick's Day", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day; Memorial Day", - "1950-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1950-07-03": "Dominion Day (observed); Memorial Day (observed)", "1950-07-10": "Orangemen's Day", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-19": "St. Patrick's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day; Memorial Day", - "1951-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1951-07-02": "Dominion Day (observed); Memorial Day (observed)", "1951-07-09": "Orangemen's Day", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -45,7 +45,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-03-15": "St. Patrick's Day", "1954-04-16": "Good Friday", @@ -57,10 +57,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-03-14": "St. Patrick's Day", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", @@ -70,20 +70,20 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-19": "St. Patrick's Day", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day; Memorial Day", - "1956-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1956-07-02": "Dominion Day (observed); Memorial Day (observed)", "1956-07-09": "Orangemen's Day", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -119,7 +119,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-03-14": "St. Patrick's Day", "1960-04-15": "Good Friday", @@ -130,20 +130,20 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-20": "St. Patrick's Day", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day; Memorial Day", - "1961-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1961-07-03": "Dominion Day (observed); Memorial Day (observed)", "1961-07-10": "Orangemen's Day", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", @@ -151,12 +151,12 @@ "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day; Memorial Day", - "1962-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1962-07-02": "Dominion Day (observed); Memorial Day (observed)", "1962-07-09": "Orangemen's Day", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -181,7 +181,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-03-15": "St. Patrick's Day", "1965-04-16": "Good Friday", @@ -193,10 +193,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-03-14": "St. Patrick's Day", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", @@ -206,20 +206,20 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-20": "St. Patrick's Day", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day; Memorial Day", - "1967-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1967-07-03": "Dominion Day (observed); Memorial Day (observed)", "1967-07-10": "Orangemen's Day", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -255,7 +255,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-03-15": "St. Patrick's Day", "1971-04-09": "Good Friday", @@ -267,20 +267,20 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-20": "St. Patrick's Day", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day; Memorial Day", - "1972-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1972-07-03": "Dominion Day (observed); Memorial Day (observed)", "1972-07-10": "Orangemen's Day", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", @@ -288,12 +288,12 @@ "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day; Memorial Day", - "1973-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1973-07-02": "Dominion Day (observed); Memorial Day (observed)", "1973-07-09": "Orangemen's Day", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -329,10 +329,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-03-14": "St. Patrick's Day", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", @@ -342,20 +342,20 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-20": "St. Patrick's Day", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day; Memorial Day", - "1978-07-03": "Dominion Day (Observed); Memorial Day (Observed)", + "1978-07-03": "Dominion Day (observed); Memorial Day (observed)", "1978-07-10": "Orangemen's Day", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", @@ -363,12 +363,12 @@ "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day; Memorial Day", - "1979-07-02": "Dominion Day (Observed); Memorial Day (Observed)", + "1979-07-02": "Dominion Day (observed); Memorial Day (observed)", "1979-07-09": "Orangemen's Day", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -393,7 +393,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-03-15": "St. Patrick's Day", "1982-04-09": "Good Friday", @@ -405,10 +405,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-03-14": "St. Patrick's Day", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", @@ -418,20 +418,20 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-19": "St. Patrick's Day", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day; Memorial Day", - "1984-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "1984-07-02": "Canada Day (observed); Memorial Day (observed)", "1984-07-09": "Orangemen's Day", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -467,7 +467,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-03-14": "St. Patrick's Day", "1988-04-01": "Good Friday", @@ -478,20 +478,20 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-20": "St. Patrick's Day", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day; Memorial Day", - "1989-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "1989-07-03": "Canada Day (observed); Memorial Day (observed)", "1989-07-10": "Orangemen's Day", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", @@ -500,12 +500,12 @@ "1990-04-23": "St. George's Day", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day; Memorial Day", - "1990-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "1990-07-02": "Canada Day (observed); Memorial Day (observed)", "1990-07-09": "Orangemen's Day", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -532,7 +532,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-03-15": "St. Patrick's Day", "1993-04-09": "Good Friday", @@ -545,10 +545,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-03-14": "St. Patrick's Day", "1994-04-01": "Good Friday", "1994-04-25": "St. George's Day", @@ -559,21 +559,21 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-03-20": "St. Patrick's Day", "1995-04-14": "Good Friday", "1995-04-24": "St. George's Day", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day; Memorial Day", - "1995-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "1995-07-03": "Canada Day (observed); Memorial Day (observed)", "1995-07-10": "Orangemen's Day", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -614,7 +614,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-03-15": "St. Patrick's Day", "1999-04-02": "Good Friday", @@ -628,22 +628,22 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-03-20": "St. Patrick's Day", "2000-04-21": "Good Friday", "2000-04-24": "St. George's Day", "2000-05-22": "Victoria Day", "2000-06-26": "Discovery Day", "2000-07-01": "Canada Day; Memorial Day", - "2000-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2000-07-03": "Canada Day (observed); Memorial Day (observed)", "2000-07-10": "Orangemen's Day", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", @@ -653,12 +653,12 @@ "2001-05-21": "Victoria Day", "2001-06-25": "Discovery Day", "2001-07-01": "Canada Day; Memorial Day", - "2001-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2001-07-02": "Canada Day (observed); Memorial Day (observed)", "2001-07-09": "Orangemen's Day", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -700,10 +700,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-14": "St. Patrick's Day", "2005-03-25": "Good Friday", "2005-04-25": "St. George's Day", @@ -715,22 +715,22 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-03-20": "St. Patrick's Day", "2006-04-14": "Good Friday", "2006-04-24": "St. George's Day", "2006-05-22": "Victoria Day", "2006-06-26": "Discovery Day", "2006-07-01": "Canada Day; Memorial Day", - "2006-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2006-07-03": "Canada Day (observed); Memorial Day (observed)", "2006-07-10": "Orangemen's Day", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", @@ -740,12 +740,12 @@ "2007-05-21": "Victoria Day", "2007-06-25": "Discovery Day", "2007-07-01": "Canada Day; Memorial Day", - "2007-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2007-07-02": "Canada Day (observed); Memorial Day (observed)", "2007-07-09": "Orangemen's Day", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -774,7 +774,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-03-15": "St. Patrick's Day", "2010-04-02": "Good Friday", @@ -788,10 +788,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-03-14": "St. Patrick's Day", "2011-04-22": "Good Friday", "2011-04-25": "St. George's Day", @@ -803,22 +803,22 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-03-19": "St. Patrick's Day", "2012-04-06": "Good Friday", "2012-04-23": "St. George's Day", "2012-05-21": "Victoria Day", "2012-06-25": "Discovery Day", "2012-07-01": "Canada Day; Memorial Day", - "2012-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2012-07-02": "Canada Day (observed); Memorial Day (observed)", "2012-07-09": "Orangemen's Day", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -860,7 +860,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-14": "St. Patrick's Day", "2016-03-25": "Good Friday", @@ -873,22 +873,22 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-03-20": "St. Patrick's Day", "2017-04-14": "Good Friday", "2017-04-24": "St. George's Day", "2017-05-22": "Victoria Day", "2017-06-26": "Discovery Day", "2017-07-01": "Canada Day; Memorial Day", - "2017-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2017-07-03": "Canada Day (observed); Memorial Day (observed)", "2017-07-10": "Orangemen's Day", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -898,12 +898,12 @@ "2018-05-21": "Victoria Day", "2018-06-25": "Discovery Day", "2018-07-01": "Canada Day; Memorial Day", - "2018-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2018-07-02": "Canada Day (observed); Memorial Day (observed)", "2018-07-09": "Orangemen's Day", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -932,7 +932,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-03-15": "St. Patrick's Day", "2021-04-02": "Good Friday", @@ -947,10 +947,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-03-14": "St. Patrick's Day", "2022-04-15": "Good Friday", "2022-04-25": "St. George's Day", @@ -964,24 +964,24 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-03-20": "St. Patrick's Day", "2023-04-07": "Good Friday", "2023-04-24": "St. George's Day", "2023-05-22": "Victoria Day", "2023-06-26": "Discovery Day", "2023-07-01": "Canada Day; Memorial Day", - "2023-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2023-07-03": "Canada Day (observed); Memorial Day (observed)", "2023-07-10": "Orangemen's Day", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -1026,7 +1026,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-15": "St. Patrick's Day", "2027-03-26": "Good Friday", @@ -1041,24 +1041,24 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-03-20": "St. Patrick's Day", "2028-04-14": "Good Friday", "2028-04-24": "St. George's Day", "2028-05-22": "Victoria Day", "2028-06-26": "Discovery Day", "2028-07-01": "Canada Day; Memorial Day", - "2028-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2028-07-03": "Canada Day (observed); Memorial Day (observed)", "2028-07-10": "Orangemen's Day", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -1068,14 +1068,14 @@ "2029-05-21": "Victoria Day", "2029-06-25": "Discovery Day", "2029-07-01": "Canada Day; Memorial Day", - "2029-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2029-07-02": "Canada Day (observed); Memorial Day (observed)", "2029-07-09": "Orangemen's Day", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -1120,10 +1120,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-03-14": "St. Patrick's Day", "2033-04-15": "Good Friday", "2033-04-25": "St. George's Day", @@ -1136,24 +1136,24 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-20": "St. Patrick's Day", "2034-04-07": "Good Friday", "2034-04-24": "St. George's Day", "2034-05-22": "Victoria Day", "2034-06-26": "Discovery Day", "2034-07-01": "Canada Day; Memorial Day", - "2034-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2034-07-03": "Canada Day (observed); Memorial Day (observed)", "2034-07-10": "Orangemen's Day", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -1163,14 +1163,14 @@ "2035-05-21": "Victoria Day", "2035-06-25": "Discovery Day", "2035-07-01": "Canada Day; Memorial Day", - "2035-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2035-07-02": "Canada Day (observed); Memorial Day (observed)", "2035-07-09": "Orangemen's Day", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1201,7 +1201,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-03-15": "St. Patrick's Day", "2038-04-23": "Good Friday", @@ -1216,10 +1216,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-03-14": "St. Patrick's Day", "2039-04-08": "Good Friday", "2039-04-25": "St. George's Day", @@ -1232,24 +1232,24 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-19": "St. Patrick's Day", "2040-03-30": "Good Friday", "2040-04-23": "St. George's Day", "2040-05-21": "Victoria Day", "2040-06-25": "Discovery Day", "2040-07-01": "Canada Day; Memorial Day", - "2040-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2040-07-02": "Canada Day (observed); Memorial Day (observed)", "2040-07-09": "Orangemen's Day", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1294,7 +1294,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-03-14": "St. Patrick's Day", "2044-04-15": "Good Friday", @@ -1308,24 +1308,24 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-03-20": "St. Patrick's Day", "2045-04-07": "Good Friday", "2045-04-24": "St. George's Day", "2045-05-22": "Victoria Day", "2045-06-26": "Discovery Day", "2045-07-01": "Canada Day; Memorial Day", - "2045-07-03": "Canada Day (Observed); Memorial Day (Observed)", + "2045-07-03": "Canada Day (observed); Memorial Day (observed)", "2045-07-10": "Orangemen's Day", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1335,14 +1335,14 @@ "2046-05-21": "Victoria Day", "2046-06-25": "Discovery Day", "2046-07-01": "Canada Day; Memorial Day", - "2046-07-02": "Canada Day (Observed); Memorial Day (Observed)", + "2046-07-02": "Canada Day (observed); Memorial Day (observed)", "2046-07-09": "Orangemen's Day", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1373,7 +1373,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-03-15": "St. Patrick's Day", "2049-04-16": "Good Friday", @@ -1388,10 +1388,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-03-14": "St. Patrick's Day", "2050-04-08": "Good Friday", "2050-04-25": "St. George's Day", @@ -1404,6 +1404,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_NS.json b/snapshots/countries/CA_NS.json index 01fd2a23c..a9a85849f 100644 --- a/snapshots/countries/CA_NS.json +++ b/snapshots/countries/CA_NS.json @@ -1,23 +1,23 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -37,7 +37,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -47,10 +47,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -58,18 +58,18 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -99,7 +99,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -108,29 +108,29 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -151,7 +151,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -161,10 +161,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -172,18 +172,18 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -213,7 +213,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -223,29 +223,29 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -275,10 +275,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -286,29 +286,29 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -329,7 +329,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -339,10 +339,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -350,18 +350,18 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -391,7 +391,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -400,29 +400,29 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -443,7 +443,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -453,10 +453,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -464,18 +464,18 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -508,7 +508,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -519,31 +519,31 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-07": "Natal Day", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-08-06": "Natal Day", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -576,10 +576,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", @@ -588,31 +588,31 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-08-07": "Natal Day", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-08-06": "Natal Day", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -635,7 +635,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-05-24": "Victoria Day", @@ -646,10 +646,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", @@ -658,19 +658,19 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-08-06": "Natal Day", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -704,7 +704,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-02-15": "Heritage Day", "2016-03-25": "Good Friday", @@ -715,20 +715,20 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-20": "Heritage Day", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-08-07": "Natal Day", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -736,12 +736,12 @@ "2018-03-30": "Good Friday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-08-06": "Natal Day", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -766,7 +766,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-02-15": "Heritage Day", "2021-04-02": "Good Friday", @@ -779,10 +779,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-02-21": "Heritage Day", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", @@ -794,22 +794,22 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-20": "Heritage Day", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-08-07": "Natal Day", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -848,7 +848,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-02-15": "Heritage Day", "2027-03-26": "Good Friday", @@ -861,22 +861,22 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-21": "Heritage Day", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-08-07": "Natal Day", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -884,14 +884,14 @@ "2029-03-30": "Good Friday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-08-06": "Natal Day", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -930,10 +930,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-02-21": "Heritage Day", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", @@ -944,22 +944,22 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-20": "Heritage Day", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-08-07": "Natal Day", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -967,14 +967,14 @@ "2035-03-23": "Good Friday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-08-06": "Natal Day", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1001,7 +1001,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-02-15": "Heritage Day", "2038-04-23": "Good Friday", @@ -1014,10 +1014,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-02-21": "Heritage Day", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", @@ -1028,22 +1028,22 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-20": "Heritage Day", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-08-06": "Natal Day", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1082,7 +1082,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-15": "Heritage Day", "2044-04-15": "Good Friday", @@ -1094,22 +1094,22 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-20": "Heritage Day", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-08-07": "Natal Day", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1117,14 +1117,14 @@ "2046-03-23": "Good Friday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-08-06": "Natal Day", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1151,7 +1151,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-02-15": "Heritage Day", "2049-04-16": "Good Friday", @@ -1164,10 +1164,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-02-21": "Heritage Day", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", @@ -1178,6 +1178,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_NT.json b/snapshots/countries/CA_NT.json index 08b83e909..17ddb5f34 100644 --- a/snapshots/countries/CA_NT.json +++ b/snapshots/countries/CA_NT.json @@ -1,25 +1,25 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-08-07": "Civic Holiday", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-08-06": "Civic Holiday", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -41,7 +41,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -52,10 +52,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -64,19 +64,19 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-08-06": "Civic Holiday", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -109,7 +109,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -119,31 +119,31 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-08-07": "Civic Holiday", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-08-06": "Civic Holiday", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -166,7 +166,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -177,10 +177,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -189,19 +189,19 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-08-07": "Civic Holiday", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -234,7 +234,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -245,31 +245,31 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-08-07": "Civic Holiday", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-08-06": "Civic Holiday", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -302,10 +302,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -314,31 +314,31 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-08-07": "Civic Holiday", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-08-06": "Civic Holiday", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -361,7 +361,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -372,10 +372,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -384,19 +384,19 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-08-06": "Civic Holiday", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -429,7 +429,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -439,31 +439,31 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-08-07": "Civic Holiday", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-08-06": "Civic Holiday", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -486,7 +486,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -497,10 +497,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -509,19 +509,19 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-08-07": "Civic Holiday", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -557,7 +557,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -569,20 +569,20 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-06-21": "National Aboriginal Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-07": "Civic Holiday", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", @@ -590,12 +590,12 @@ "2001-05-21": "Victoria Day", "2001-06-21": "National Aboriginal Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-08-06": "Civic Holiday", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -631,10 +631,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-06-21": "National Aboriginal Day", @@ -644,20 +644,20 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-06-21": "National Aboriginal Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-08-07": "Civic Holiday", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", @@ -665,12 +665,12 @@ "2007-05-21": "Victoria Day", "2007-06-21": "National Aboriginal Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-08-06": "Civic Holiday", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -695,7 +695,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-05-24": "Victoria Day", @@ -707,10 +707,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", "2011-06-21": "National Aboriginal Day", @@ -720,20 +720,20 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-06-21": "National Aboriginal Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-08-06": "Civic Holiday", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -769,7 +769,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-05-23": "Victoria Day", @@ -780,20 +780,20 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-06-21": "National Aboriginal Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-08-07": "Civic Holiday", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -801,12 +801,12 @@ "2018-05-21": "Victoria Day", "2018-06-21": "National Aboriginal Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-08-06": "Civic Holiday", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -831,7 +831,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-05-24": "Victoria Day", @@ -844,10 +844,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", "2022-06-21": "National Aboriginal Day", @@ -858,22 +858,22 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-06-21": "National Aboriginal Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-08-07": "Civic Holiday", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -912,7 +912,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-05-24": "Victoria Day", @@ -925,22 +925,22 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-06-21": "National Aboriginal Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-08-07": "Civic Holiday", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -948,14 +948,14 @@ "2029-05-21": "Victoria Day", "2029-06-21": "National Aboriginal Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-08-06": "Civic Holiday", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -994,10 +994,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", "2033-06-21": "National Aboriginal Day", @@ -1008,22 +1008,22 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-06-21": "National Aboriginal Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-08-07": "Civic Holiday", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -1031,14 +1031,14 @@ "2035-05-21": "Victoria Day", "2035-06-21": "National Aboriginal Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-08-06": "Civic Holiday", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1065,7 +1065,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-05-24": "Victoria Day", @@ -1078,10 +1078,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", "2039-06-21": "National Aboriginal Day", @@ -1092,22 +1092,22 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-06-21": "National Aboriginal Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-08-06": "Civic Holiday", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1146,7 +1146,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-05-23": "Victoria Day", @@ -1158,22 +1158,22 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-06-21": "National Aboriginal Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-08-07": "Civic Holiday", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1181,14 +1181,14 @@ "2046-05-21": "Victoria Day", "2046-06-21": "National Aboriginal Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-08-06": "Civic Holiday", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1215,7 +1215,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-05-24": "Victoria Day", @@ -1228,10 +1228,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", "2050-06-21": "National Aboriginal Day", @@ -1242,6 +1242,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_NU.json b/snapshots/countries/CA_NU.json index 55b817eb5..17b63d39c 100644 --- a/snapshots/countries/CA_NU.json +++ b/snapshots/countries/CA_NU.json @@ -1,25 +1,25 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-08-07": "Civic Holiday", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-08-06": "Civic Holiday", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -41,7 +41,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -52,10 +52,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -64,19 +64,19 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-08-06": "Civic Holiday", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -109,7 +109,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -119,31 +119,31 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-08-07": "Civic Holiday", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-08-06": "Civic Holiday", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -166,7 +166,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -177,10 +177,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -189,19 +189,19 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-08-07": "Civic Holiday", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -234,7 +234,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -245,31 +245,31 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-08-07": "Civic Holiday", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-08-06": "Civic Holiday", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -302,10 +302,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -314,31 +314,31 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-08-07": "Civic Holiday", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-08-06": "Civic Holiday", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -361,7 +361,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -372,10 +372,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -384,19 +384,19 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-08-06": "Civic Holiday", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -429,7 +429,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -439,31 +439,31 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-08-07": "Civic Holiday", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-08-06": "Civic Holiday", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -486,7 +486,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -497,10 +497,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -509,19 +509,19 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-08-07": "Civic Holiday", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -554,7 +554,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -565,33 +565,33 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-01": "Nunavut Day", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-07": "Civic Holiday", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-07-09": "Nunavut Day", "2001-08-06": "Civic Holiday", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -627,10 +627,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", @@ -640,33 +640,33 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-07-09": "Nunavut Day", "2006-08-07": "Civic Holiday", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-07-09": "Nunavut Day", "2007-08-06": "Civic Holiday", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -691,7 +691,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-05-24": "Victoria Day", @@ -703,10 +703,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", "2011-07-01": "Canada Day", @@ -716,20 +716,20 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-07-09": "Nunavut Day", "2012-08-06": "Civic Holiday", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -765,7 +765,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-05-23": "Victoria Day", @@ -776,33 +776,33 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-07-09": "Nunavut Day", "2017-08-07": "Civic Holiday", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", "2018-03-30": "Good Friday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-07-09": "Nunavut Day", "2018-08-06": "Civic Holiday", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -827,7 +827,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-05-24": "Victoria Day", @@ -840,10 +840,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", "2022-07-01": "Canada Day", @@ -854,22 +854,22 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-07-09": "Nunavut Day", "2023-08-07": "Civic Holiday", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -908,7 +908,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-05-24": "Victoria Day", @@ -921,37 +921,37 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-07-09": "Nunavut Day", "2028-08-07": "Civic Holiday", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", "2029-03-30": "Good Friday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-07-09": "Nunavut Day", "2029-08-06": "Civic Holiday", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -990,10 +990,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", "2033-07-01": "Canada Day", @@ -1004,37 +1004,37 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-07-09": "Nunavut Day", "2034-08-07": "Civic Holiday", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", "2035-03-23": "Good Friday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-07-09": "Nunavut Day", "2035-08-06": "Civic Holiday", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1061,7 +1061,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-05-24": "Victoria Day", @@ -1074,10 +1074,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", "2039-07-01": "Canada Day", @@ -1088,22 +1088,22 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-07-09": "Nunavut Day", "2040-08-06": "Civic Holiday", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1142,7 +1142,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-05-23": "Victoria Day", @@ -1154,37 +1154,37 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-07-09": "Nunavut Day", "2045-08-07": "Civic Holiday", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", "2046-03-23": "Good Friday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-07-09": "Nunavut Day", "2046-08-06": "Civic Holiday", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1211,7 +1211,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-05-24": "Victoria Day", @@ -1224,10 +1224,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", "2050-07-01": "Canada Day", @@ -1238,6 +1238,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_ON.json b/snapshots/countries/CA_ON.json index 49d6df2f2..51b4262f3 100644 --- a/snapshots/countries/CA_ON.json +++ b/snapshots/countries/CA_ON.json @@ -1,25 +1,25 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-08-07": "Civic Holiday", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-08-06": "Civic Holiday", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -41,7 +41,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -52,10 +52,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -64,19 +64,19 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-08-06": "Civic Holiday", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -109,7 +109,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -119,31 +119,31 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-08-07": "Civic Holiday", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-08-06": "Civic Holiday", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -166,7 +166,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -177,10 +177,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -189,19 +189,19 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-08-07": "Civic Holiday", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -234,7 +234,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -245,31 +245,31 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-08-07": "Civic Holiday", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-08-06": "Civic Holiday", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -302,10 +302,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -314,31 +314,31 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-08-07": "Civic Holiday", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-08-06": "Civic Holiday", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -361,7 +361,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -372,10 +372,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -384,19 +384,19 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-08-06": "Civic Holiday", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -429,7 +429,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -439,31 +439,31 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-08-07": "Civic Holiday", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-08-06": "Civic Holiday", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -486,7 +486,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -497,10 +497,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -509,19 +509,19 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-08-07": "Civic Holiday", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -554,7 +554,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -565,31 +565,31 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-07": "Civic Holiday", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-08-06": "Civic Holiday", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -622,10 +622,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", @@ -634,31 +634,31 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-08-07": "Civic Holiday", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-08-06": "Civic Holiday", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -683,7 +683,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-02-15": "Family Day", "2010-04-02": "Good Friday", @@ -695,10 +695,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-02-21": "Family Day", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", @@ -708,20 +708,20 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-20": "Family Day", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-08-06": "Civic Holiday", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -757,7 +757,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-02-15": "Family Day", "2016-03-25": "Good Friday", @@ -768,20 +768,20 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-20": "Family Day", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-08-07": "Civic Holiday", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -789,12 +789,12 @@ "2018-03-30": "Good Friday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-08-06": "Civic Holiday", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -819,7 +819,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-02-15": "Family Day", "2021-04-02": "Good Friday", @@ -832,10 +832,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-02-21": "Family Day", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", @@ -846,22 +846,22 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-20": "Family Day", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-08-07": "Civic Holiday", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -900,7 +900,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-02-15": "Family Day", "2027-03-26": "Good Friday", @@ -913,22 +913,22 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-21": "Family Day", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-08-07": "Civic Holiday", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -936,14 +936,14 @@ "2029-03-30": "Good Friday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-08-06": "Civic Holiday", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -982,10 +982,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-02-21": "Family Day", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", @@ -996,22 +996,22 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-20": "Family Day", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-08-07": "Civic Holiday", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -1019,14 +1019,14 @@ "2035-03-23": "Good Friday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-08-06": "Civic Holiday", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1053,7 +1053,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-02-15": "Family Day", "2038-04-23": "Good Friday", @@ -1066,10 +1066,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-02-21": "Family Day", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", @@ -1080,22 +1080,22 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-20": "Family Day", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-08-06": "Civic Holiday", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1134,7 +1134,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-15": "Family Day", "2044-04-15": "Good Friday", @@ -1146,22 +1146,22 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-20": "Family Day", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-08-07": "Civic Holiday", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1169,14 +1169,14 @@ "2046-03-23": "Good Friday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-08-06": "Civic Holiday", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1203,7 +1203,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-02-15": "Family Day", "2049-04-16": "Good Friday", @@ -1216,10 +1216,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-02-21": "Family Day", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", @@ -1230,6 +1230,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_PE.json b/snapshots/countries/CA_PE.json index 2dd38734d..fa2fc7051 100644 --- a/snapshots/countries/CA_PE.json +++ b/snapshots/countries/CA_PE.json @@ -1,23 +1,23 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -37,7 +37,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -47,10 +47,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -58,18 +58,18 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -99,7 +99,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -108,29 +108,29 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -151,7 +151,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -161,10 +161,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -172,18 +172,18 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -213,7 +213,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -223,29 +223,29 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -275,10 +275,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -286,29 +286,29 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -329,7 +329,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -339,10 +339,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -350,18 +350,18 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -391,7 +391,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -400,29 +400,29 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -443,7 +443,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -453,10 +453,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -464,18 +464,18 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -505,7 +505,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -515,29 +515,29 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -567,10 +567,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", @@ -578,29 +578,29 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -622,7 +622,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-02-15": "Islander Day", "2010-04-02": "Good Friday", @@ -633,10 +633,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-02-21": "Islander Day", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", @@ -645,19 +645,19 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-20": "Islander Day", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -690,7 +690,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-02-15": "Islander Day", "2016-03-25": "Good Friday", @@ -700,19 +700,19 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-20": "Islander Day", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -720,11 +720,11 @@ "2018-03-30": "Good Friday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -747,7 +747,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-02-15": "Islander Day", "2021-04-02": "Good Friday", @@ -759,10 +759,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-02-21": "Islander Day", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", @@ -773,21 +773,21 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-20": "Islander Day", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -823,7 +823,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-02-15": "Islander Day", "2027-03-26": "Good Friday", @@ -835,21 +835,21 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-21": "Islander Day", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -857,13 +857,13 @@ "2029-03-30": "Good Friday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -899,10 +899,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-02-21": "Islander Day", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", @@ -912,21 +912,21 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-20": "Islander Day", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -934,13 +934,13 @@ "2035-03-23": "Good Friday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -965,7 +965,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-02-15": "Islander Day", "2038-04-23": "Good Friday", @@ -977,10 +977,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-02-21": "Islander Day", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", @@ -990,21 +990,21 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-20": "Islander Day", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1040,7 +1040,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-15": "Islander Day", "2044-04-15": "Good Friday", @@ -1051,21 +1051,21 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-20": "Islander Day", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1073,13 +1073,13 @@ "2046-03-23": "Good Friday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1104,7 +1104,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-02-15": "Islander Day", "2049-04-16": "Good Friday", @@ -1116,10 +1116,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-02-21": "Islander Day", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", @@ -1129,6 +1129,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_QC.json b/snapshots/countries/CA_QC.json index ebcabf1e7..02014c456 100644 --- a/snapshots/countries/CA_QC.json +++ b/snapshots/countries/CA_QC.json @@ -1,28 +1,28 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-06-24": "St. John the Baptist Day", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-03-26": "Easter Monday", "1951-06-24": "St. John the Baptist Day", - "1951-06-25": "St. John the Baptist Day (Observed)", + "1951-06-25": "St. John the Baptist Day (observed)", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -46,7 +46,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", @@ -58,10 +58,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-05-23": "Victoria Day", @@ -71,21 +71,21 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-05-21": "Victoria Day", "1956-06-24": "St. John the Baptist Day", - "1956-06-25": "St. John the Baptist Day (Observed)", + "1956-06-25": "St. John the Baptist Day (observed)", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -121,7 +121,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", @@ -132,20 +132,20 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-05-22": "Victoria Day", "1961-06-24": "St. John the Baptist Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", @@ -153,13 +153,13 @@ "1962-04-23": "Easter Monday", "1962-05-21": "Victoria Day", "1962-06-24": "St. John the Baptist Day", - "1962-06-25": "St. John the Baptist Day (Observed)", + "1962-06-25": "St. John the Baptist Day (observed)", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -184,7 +184,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", @@ -196,10 +196,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-05-23": "Victoria Day", @@ -209,20 +209,20 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-05-22": "Victoria Day", "1967-06-24": "St. John the Baptist Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -258,7 +258,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -270,20 +270,20 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-05-22": "Victoria Day", "1972-06-24": "St. John the Baptist Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", @@ -291,13 +291,13 @@ "1973-04-23": "Easter Monday", "1973-05-21": "Victoria Day", "1973-06-24": "St. John the Baptist Day", - "1973-06-25": "St. John the Baptist Day (Observed)", + "1973-06-25": "St. John the Baptist Day (observed)", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -333,10 +333,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-23": "Victoria Day", @@ -346,20 +346,20 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-22": "Victoria Day", "1978-06-24": "St. John the Baptist Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", @@ -367,13 +367,13 @@ "1979-04-16": "Easter Monday", "1979-05-21": "Victoria Day", "1979-06-24": "St. John the Baptist Day", - "1979-06-25": "St. John the Baptist Day (Observed)", + "1979-06-25": "St. John the Baptist Day (observed)", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -398,7 +398,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -410,10 +410,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-23": "Victoria Day", @@ -423,21 +423,21 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-21": "Victoria Day", "1984-06-24": "St. John the Baptist Day", - "1984-06-25": "St. John the Baptist Day (Observed)", + "1984-06-25": "St. John the Baptist Day (observed)", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -473,7 +473,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -484,20 +484,20 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-22": "Victoria Day", "1989-06-24": "St. John the Baptist Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", @@ -505,13 +505,13 @@ "1990-04-16": "Easter Monday", "1990-05-21": "Victoria Day", "1990-06-24": "St. John the Baptist Day", - "1990-06-25": "St. John the Baptist Day (Observed)", + "1990-06-25": "St. John the Baptist Day (observed)", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -536,7 +536,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -548,10 +548,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-23": "Victoria Day", @@ -561,20 +561,20 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-22": "Victoria Day", "1995-06-24": "St. John the Baptist Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -610,7 +610,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -622,20 +622,20 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-22": "Victoria Day", "2000-06-24": "St. John the Baptist Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", @@ -643,13 +643,13 @@ "2001-04-16": "Easter Monday", "2001-05-21": "Victoria Day", "2001-06-24": "St. John the Baptist Day", - "2001-06-25": "St. John the Baptist Day (Observed)", + "2001-06-25": "St. John the Baptist Day (observed)", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -685,10 +685,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-23": "National Patriots' Day; Victoria Day", @@ -698,20 +698,20 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-22": "National Patriots' Day; Victoria Day", "2006-06-24": "St. John the Baptist Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", @@ -719,13 +719,13 @@ "2007-04-09": "Easter Monday", "2007-05-21": "National Patriots' Day; Victoria Day", "2007-06-24": "St. John the Baptist Day", - "2007-06-25": "St. John the Baptist Day (Observed)", + "2007-06-25": "St. John the Baptist Day (observed)", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -750,7 +750,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -762,10 +762,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-05-23": "National Patriots' Day; Victoria Day", @@ -775,21 +775,21 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-21": "National Patriots' Day; Victoria Day", "2012-06-24": "St. John the Baptist Day", - "2012-06-25": "St. John the Baptist Day (Observed)", + "2012-06-25": "St. John the Baptist Day (observed)", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -825,7 +825,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", @@ -836,20 +836,20 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-22": "National Patriots' Day; Victoria Day", "2017-06-24": "St. John the Baptist Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -857,13 +857,13 @@ "2018-04-02": "Easter Monday", "2018-05-21": "National Patriots' Day; Victoria Day", "2018-06-24": "St. John the Baptist Day", - "2018-06-25": "St. John the Baptist Day (Observed)", + "2018-06-25": "St. John the Baptist Day (observed)", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -888,7 +888,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", @@ -901,10 +901,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-23": "National Patriots' Day; Victoria Day", @@ -915,22 +915,22 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-22": "National Patriots' Day; Victoria Day", "2023-06-24": "St. John the Baptist Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -969,7 +969,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", @@ -982,22 +982,22 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-22": "National Patriots' Day; Victoria Day", "2028-06-24": "St. John the Baptist Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -1005,15 +1005,15 @@ "2029-04-02": "Easter Monday", "2029-05-21": "National Patriots' Day; Victoria Day", "2029-06-24": "St. John the Baptist Day", - "2029-06-25": "St. John the Baptist Day (Observed)", + "2029-06-25": "St. John the Baptist Day (observed)", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -1052,10 +1052,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-23": "National Patriots' Day; Victoria Day", @@ -1066,22 +1066,22 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-22": "National Patriots' Day; Victoria Day", "2034-06-24": "St. John the Baptist Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -1089,15 +1089,15 @@ "2035-03-26": "Easter Monday", "2035-05-21": "National Patriots' Day; Victoria Day", "2035-06-24": "St. John the Baptist Day", - "2035-06-25": "St. John the Baptist Day (Observed)", + "2035-06-25": "St. John the Baptist Day (observed)", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1124,7 +1124,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", @@ -1137,10 +1137,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-23": "National Patriots' Day; Victoria Day", @@ -1151,23 +1151,23 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-21": "National Patriots' Day; Victoria Day", "2040-06-24": "St. John the Baptist Day", - "2040-06-25": "St. John the Baptist Day (Observed)", + "2040-06-25": "St. John the Baptist Day (observed)", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1206,7 +1206,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", @@ -1218,22 +1218,22 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-22": "National Patriots' Day; Victoria Day", "2045-06-24": "St. John the Baptist Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1241,15 +1241,15 @@ "2046-03-26": "Easter Monday", "2046-05-21": "National Patriots' Day; Victoria Day", "2046-06-24": "St. John the Baptist Day", - "2046-06-25": "St. John the Baptist Day (Observed)", + "2046-06-25": "St. John the Baptist Day (observed)", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1276,7 +1276,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", @@ -1289,10 +1289,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-23": "National Patriots' Day; Victoria Day", @@ -1303,6 +1303,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_SK.json b/snapshots/countries/CA_SK.json index ae46502ec..2e250785d 100644 --- a/snapshots/countries/CA_SK.json +++ b/snapshots/countries/CA_SK.json @@ -1,25 +1,25 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-08-07": "Saskatchewan Day", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-08-06": "Saskatchewan Day", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -41,7 +41,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -52,10 +52,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -64,19 +64,19 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-08-06": "Saskatchewan Day", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -109,7 +109,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -119,31 +119,31 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-08-07": "Saskatchewan Day", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-08-06": "Saskatchewan Day", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -166,7 +166,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -177,10 +177,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -189,19 +189,19 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-08-07": "Saskatchewan Day", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -234,7 +234,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -245,31 +245,31 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-08-07": "Saskatchewan Day", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-08-06": "Saskatchewan Day", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -302,10 +302,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", "1977-07-01": "Dominion Day", @@ -314,31 +314,31 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-08-07": "Saskatchewan Day", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-08-06": "Saskatchewan Day", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -361,7 +361,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-24": "Victoria Day", @@ -372,10 +372,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", "1983-07-01": "Canada Day", @@ -384,19 +384,19 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-08-06": "Saskatchewan Day", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -429,7 +429,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-23": "Victoria Day", @@ -439,31 +439,31 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-08-07": "Saskatchewan Day", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-08-06": "Saskatchewan Day", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -486,7 +486,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-24": "Victoria Day", @@ -497,10 +497,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", "1994-07-01": "Canada Day", @@ -509,19 +509,19 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-08-07": "Saskatchewan Day", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -554,7 +554,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-24": "Victoria Day", @@ -565,31 +565,31 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-07": "Saskatchewan Day", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-08-06": "Saskatchewan Day", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -622,10 +622,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", "2005-07-01": "Canada Day", @@ -634,19 +634,19 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-08-07": "Saskatchewan Day", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", @@ -654,12 +654,12 @@ "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-08-06": "Saskatchewan Day", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -684,7 +684,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-02-15": "Family Day", "2010-04-02": "Good Friday", @@ -696,10 +696,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-02-21": "Family Day", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", @@ -709,20 +709,20 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-20": "Family Day", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-08-06": "Saskatchewan Day", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -758,7 +758,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-02-15": "Family Day", "2016-03-25": "Good Friday", @@ -769,20 +769,20 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-20": "Family Day", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-08-07": "Saskatchewan Day", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -790,12 +790,12 @@ "2018-03-30": "Good Friday", "2018-05-21": "Victoria Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-08-06": "Saskatchewan Day", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -820,7 +820,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-02-15": "Family Day", "2021-04-02": "Good Friday", @@ -833,10 +833,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-02-21": "Family Day", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", @@ -847,22 +847,22 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-20": "Family Day", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-08-07": "Saskatchewan Day", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -901,7 +901,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-02-15": "Family Day", "2027-03-26": "Good Friday", @@ -914,22 +914,22 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-21": "Family Day", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-08-07": "Saskatchewan Day", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -937,14 +937,14 @@ "2029-03-30": "Good Friday", "2029-05-21": "Victoria Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-08-06": "Saskatchewan Day", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -983,10 +983,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-02-21": "Family Day", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", @@ -997,22 +997,22 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-20": "Family Day", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-08-07": "Saskatchewan Day", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -1020,14 +1020,14 @@ "2035-03-23": "Good Friday", "2035-05-21": "Victoria Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-08-06": "Saskatchewan Day", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1054,7 +1054,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-02-15": "Family Day", "2038-04-23": "Good Friday", @@ -1067,10 +1067,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-02-21": "Family Day", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", @@ -1081,22 +1081,22 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-20": "Family Day", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-08-06": "Saskatchewan Day", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1135,7 +1135,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-15": "Family Day", "2044-04-15": "Good Friday", @@ -1147,22 +1147,22 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-20": "Family Day", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-08-07": "Saskatchewan Day", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1170,14 +1170,14 @@ "2046-03-23": "Good Friday", "2046-05-21": "Victoria Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-08-06": "Saskatchewan Day", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1204,7 +1204,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-02-15": "Family Day", "2049-04-16": "Good Friday", @@ -1217,10 +1217,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-02-21": "Family Day", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", @@ -1231,6 +1231,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CA_YT.json b/snapshots/countries/CA_YT.json index d1bd8223a..1824f4ee8 100644 --- a/snapshots/countries/CA_YT.json +++ b/snapshots/countries/CA_YT.json @@ -1,25 +1,25 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-07-01": "Dominion Day", - "1950-07-03": "Dominion Day (Observed)", + "1950-07-03": "Dominion Day (observed)", "1950-08-21": "Discovery Day", "1950-09-04": "Labor Day", "1950-10-09": "Thanksgiving Day", "1950-11-11": "Remembrance Day", - "1950-11-13": "Remembrance Day (Observed)", + "1950-11-13": "Remembrance Day (observed)", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-01-01": "New Year's Day", "1951-03-23": "Good Friday", "1951-07-01": "Dominion Day", - "1951-07-02": "Dominion Day (Observed)", + "1951-07-02": "Dominion Day (observed)", "1951-08-20": "Discovery Day", "1951-09-03": "Labor Day", "1951-10-08": "Thanksgiving Day", "1951-11-11": "Remembrance Day", - "1951-11-12": "Remembrance Day (Observed)", + "1951-11-12": "Remembrance Day (observed)", "1951-12-25": "Christmas Day", "1951-12-26": "Boxing Day", "1952-01-01": "New Year's Day", @@ -41,7 +41,7 @@ "1953-11-11": "Remembrance Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-04-16": "Good Friday", "1954-05-24": "Victoria Day", @@ -52,10 +52,10 @@ "1954-11-11": "Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-05-23": "Victoria Day", "1955-07-01": "Dominion Day", @@ -64,19 +64,19 @@ "1955-10-10": "Thanksgiving Day", "1955-11-11": "Remembrance Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Boxing Day; Christmas Day (Observed)", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-26": "Boxing Day; Christmas Day (observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-21": "Victoria Day", "1956-07-01": "Dominion Day", - "1956-07-02": "Dominion Day (Observed)", + "1956-07-02": "Dominion Day (observed)", "1956-08-20": "Discovery Day", "1956-09-03": "Labor Day", "1956-10-08": "Thanksgiving Day", "1956-11-11": "Remembrance Day", - "1956-11-12": "Remembrance Day (Observed)", + "1956-11-12": "Remembrance Day (observed)", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-01-01": "New Year's Day", @@ -109,7 +109,7 @@ "1959-11-11": "Remembrance Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-04-15": "Good Friday", "1960-05-23": "Victoria Day", @@ -119,31 +119,31 @@ "1960-10-10": "Thanksgiving Day", "1960-11-11": "Remembrance Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Boxing Day; Christmas Day (Observed)", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-26": "Boxing Day; Christmas Day (observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-22": "Victoria Day", "1961-07-01": "Dominion Day", - "1961-07-03": "Dominion Day (Observed)", + "1961-07-03": "Dominion Day (observed)", "1961-08-21": "Discovery Day", "1961-09-04": "Labor Day", "1961-10-09": "Thanksgiving Day", "1961-11-11": "Remembrance Day", - "1961-11-13": "Remembrance Day (Observed)", + "1961-11-13": "Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", "1962-04-20": "Good Friday", "1962-05-21": "Victoria Day", "1962-07-01": "Dominion Day", - "1962-07-02": "Dominion Day (Observed)", + "1962-07-02": "Dominion Day (observed)", "1962-08-20": "Discovery Day", "1962-09-03": "Labor Day", "1962-10-08": "Thanksgiving Day", "1962-11-11": "Remembrance Day", - "1962-11-12": "Remembrance Day (Observed)", + "1962-11-12": "Remembrance Day (observed)", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-01-01": "New Year's Day", @@ -166,7 +166,7 @@ "1964-11-11": "Remembrance Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-04-16": "Good Friday", "1965-05-24": "Victoria Day", @@ -177,10 +177,10 @@ "1965-11-11": "Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-05-23": "Victoria Day", "1966-07-01": "Dominion Day", @@ -189,19 +189,19 @@ "1966-10-10": "Thanksgiving Day", "1966-11-11": "Remembrance Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Boxing Day; Christmas Day (Observed)", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-26": "Boxing Day; Christmas Day (observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-22": "Victoria Day", "1967-07-01": "Dominion Day", - "1967-07-03": "Dominion Day (Observed)", + "1967-07-03": "Dominion Day (observed)", "1967-08-21": "Discovery Day", "1967-09-04": "Labor Day", "1967-10-09": "Thanksgiving Day", "1967-11-11": "Remembrance Day", - "1967-11-13": "Remembrance Day (Observed)", + "1967-11-13": "Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -234,7 +234,7 @@ "1970-11-11": "Remembrance Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-04-09": "Good Friday", "1971-05-24": "Victoria Day", @@ -245,31 +245,31 @@ "1971-11-11": "Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-05-22": "Victoria Day", "1972-07-01": "Dominion Day", - "1972-07-03": "Dominion Day (Observed)", + "1972-07-03": "Dominion Day (observed)", "1972-08-21": "Discovery Day", "1972-09-04": "Labor Day", "1972-10-09": "Thanksgiving Day", "1972-11-11": "Remembrance Day", - "1972-11-13": "Remembrance Day (Observed)", + "1972-11-13": "Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", "1973-04-20": "Good Friday", "1973-05-21": "Victoria Day", "1973-07-01": "Dominion Day", - "1973-07-02": "Dominion Day (Observed)", + "1973-07-02": "Dominion Day (observed)", "1973-08-20": "Discovery Day", "1973-09-03": "Labor Day", "1973-10-08": "Thanksgiving Day", "1973-11-11": "Remembrance Day", - "1973-11-12": "Remembrance Day (Observed)", + "1973-11-12": "Remembrance Day (observed)", "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-01-01": "New Year's Day", @@ -303,10 +303,10 @@ "1976-11-11": "Remembrance Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-02-25": "Heritage Day", "1977-04-08": "Good Friday", "1977-05-23": "Victoria Day", @@ -316,20 +316,20 @@ "1977-10-10": "Thanksgiving Day", "1977-11-11": "Remembrance Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Boxing Day; Christmas Day (Observed)", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-26": "Boxing Day; Christmas Day (observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-24": "Heritage Day", "1978-03-24": "Good Friday", "1978-05-22": "Victoria Day", "1978-07-01": "Dominion Day", - "1978-07-03": "Dominion Day (Observed)", + "1978-07-03": "Dominion Day (observed)", "1978-08-21": "Discovery Day", "1978-09-04": "Labor Day", "1978-10-09": "Thanksgiving Day", "1978-11-11": "Remembrance Day", - "1978-11-13": "Remembrance Day (Observed)", + "1978-11-13": "Remembrance Day (observed)", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", @@ -337,12 +337,12 @@ "1979-04-13": "Good Friday", "1979-05-21": "Victoria Day", "1979-07-01": "Dominion Day", - "1979-07-02": "Dominion Day (Observed)", + "1979-07-02": "Dominion Day (observed)", "1979-08-20": "Discovery Day", "1979-09-03": "Labor Day", "1979-10-08": "Thanksgiving Day", "1979-11-11": "Remembrance Day", - "1979-11-12": "Remembrance Day (Observed)", + "1979-11-12": "Remembrance Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -367,7 +367,7 @@ "1981-11-11": "Remembrance Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-02-26": "Heritage Day", "1982-04-09": "Good Friday", @@ -379,10 +379,10 @@ "1982-11-11": "Remembrance Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-02-25": "Heritage Day", "1983-04-01": "Good Friday", "1983-05-23": "Victoria Day", @@ -392,20 +392,20 @@ "1983-10-10": "Thanksgiving Day", "1983-11-11": "Remembrance Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Boxing Day; Christmas Day (Observed)", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-26": "Boxing Day; Christmas Day (observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-24": "Heritage Day", "1984-04-20": "Good Friday", "1984-05-21": "Victoria Day", "1984-07-01": "Canada Day", - "1984-07-02": "Canada Day (Observed)", + "1984-07-02": "Canada Day (observed)", "1984-08-20": "Discovery Day", "1984-09-03": "Labor Day", "1984-10-08": "Thanksgiving Day", "1984-11-11": "Remembrance Day", - "1984-11-12": "Remembrance Day (Observed)", + "1984-11-12": "Remembrance Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -441,7 +441,7 @@ "1987-11-11": "Remembrance Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-02-26": "Heritage Day", "1988-04-01": "Good Friday", @@ -452,20 +452,20 @@ "1988-10-10": "Thanksgiving Day", "1988-11-11": "Remembrance Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Boxing Day; Christmas Day (Observed)", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-26": "Boxing Day; Christmas Day (observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-24": "Heritage Day", "1989-03-24": "Good Friday", "1989-05-22": "Victoria Day", "1989-07-01": "Canada Day", - "1989-07-03": "Canada Day (Observed)", + "1989-07-03": "Canada Day (observed)", "1989-08-21": "Discovery Day", "1989-09-04": "Labor Day", "1989-10-09": "Thanksgiving Day", "1989-11-11": "Remembrance Day", - "1989-11-13": "Remembrance Day (Observed)", + "1989-11-13": "Remembrance Day (observed)", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", @@ -473,12 +473,12 @@ "1990-04-13": "Good Friday", "1990-05-21": "Victoria Day", "1990-07-01": "Canada Day", - "1990-07-02": "Canada Day (Observed)", + "1990-07-02": "Canada Day (observed)", "1990-08-20": "Discovery Day", "1990-09-03": "Labor Day", "1990-10-08": "Thanksgiving Day", "1990-11-11": "Remembrance Day", - "1990-11-12": "Remembrance Day (Observed)", + "1990-11-12": "Remembrance Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -503,7 +503,7 @@ "1992-11-11": "Remembrance Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-02-26": "Heritage Day", "1993-04-09": "Good Friday", @@ -515,10 +515,10 @@ "1993-11-11": "Remembrance Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-02-25": "Heritage Day", "1994-04-01": "Good Friday", "1994-05-23": "Victoria Day", @@ -528,20 +528,20 @@ "1994-10-10": "Thanksgiving Day", "1994-11-11": "Remembrance Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Boxing Day; Christmas Day (Observed)", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-26": "Boxing Day; Christmas Day (observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-24": "Heritage Day", "1995-04-14": "Good Friday", "1995-05-22": "Victoria Day", "1995-07-01": "Canada Day", - "1995-07-03": "Canada Day (Observed)", + "1995-07-03": "Canada Day (observed)", "1995-08-21": "Discovery Day", "1995-09-04": "Labor Day", "1995-10-09": "Thanksgiving Day", "1995-11-11": "Remembrance Day", - "1995-11-13": "Remembrance Day (Observed)", + "1995-11-13": "Remembrance Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", @@ -577,7 +577,7 @@ "1998-11-11": "Remembrance Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-02-26": "Heritage Day", "1999-04-02": "Good Friday", @@ -589,20 +589,20 @@ "1999-11-11": "Remembrance Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-02-25": "Heritage Day", "2000-04-21": "Good Friday", "2000-05-22": "Victoria Day", "2000-07-01": "Canada Day", - "2000-07-03": "Canada Day (Observed)", + "2000-07-03": "Canada Day (observed)", "2000-08-21": "Discovery Day", "2000-09-04": "Labor Day", "2000-10-09": "Thanksgiving Day", "2000-11-11": "Remembrance Day", - "2000-11-13": "Remembrance Day (Observed)", + "2000-11-13": "Remembrance Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", @@ -610,12 +610,12 @@ "2001-04-13": "Good Friday", "2001-05-21": "Victoria Day", "2001-07-01": "Canada Day", - "2001-07-02": "Canada Day (Observed)", + "2001-07-02": "Canada Day (observed)", "2001-08-20": "Discovery Day", "2001-09-03": "Labor Day", "2001-10-08": "Thanksgiving Day", "2001-11-11": "Remembrance Day", - "2001-11-12": "Remembrance Day (Observed)", + "2001-11-12": "Remembrance Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -651,10 +651,10 @@ "2004-11-11": "Remembrance Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-02-25": "Heritage Day", "2005-03-25": "Good Friday", "2005-05-23": "Victoria Day", @@ -664,20 +664,20 @@ "2005-10-10": "Thanksgiving Day", "2005-11-11": "Remembrance Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Boxing Day; Christmas Day (Observed)", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-26": "Boxing Day; Christmas Day (observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-24": "Heritage Day", "2006-04-14": "Good Friday", "2006-05-22": "Victoria Day", "2006-07-01": "Canada Day", - "2006-07-03": "Canada Day (Observed)", + "2006-07-03": "Canada Day (observed)", "2006-08-21": "Discovery Day", "2006-09-04": "Labor Day", "2006-10-09": "Thanksgiving Day", "2006-11-11": "Remembrance Day", - "2006-11-13": "Remembrance Day (Observed)", + "2006-11-13": "Remembrance Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", @@ -685,12 +685,12 @@ "2007-04-06": "Good Friday", "2007-05-21": "Victoria Day", "2007-07-01": "Canada Day", - "2007-07-02": "Canada Day (Observed)", + "2007-07-02": "Canada Day (observed)", "2007-08-20": "Discovery Day", "2007-09-03": "Labor Day", "2007-10-08": "Thanksgiving Day", "2007-11-11": "Remembrance Day", - "2007-11-12": "Remembrance Day (Observed)", + "2007-11-12": "Remembrance Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -715,7 +715,7 @@ "2009-11-11": "Remembrance Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-02-26": "Heritage Day", "2010-04-02": "Good Friday", @@ -727,10 +727,10 @@ "2010-11-11": "Remembrance Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-02-25": "Heritage Day", "2011-04-22": "Good Friday", "2011-05-23": "Victoria Day", @@ -740,20 +740,20 @@ "2011-10-10": "Thanksgiving Day", "2011-11-11": "Remembrance Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Boxing Day; Christmas Day (Observed)", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-26": "Boxing Day; Christmas Day (observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-24": "Heritage Day", "2012-04-06": "Good Friday", "2012-05-21": "Victoria Day", "2012-07-01": "Canada Day", - "2012-07-02": "Canada Day (Observed)", + "2012-07-02": "Canada Day (observed)", "2012-08-20": "Discovery Day", "2012-09-03": "Labor Day", "2012-10-08": "Thanksgiving Day", "2012-11-11": "Remembrance Day", - "2012-11-12": "Remembrance Day (Observed)", + "2012-11-12": "Remembrance Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -789,7 +789,7 @@ "2015-11-11": "Remembrance Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-02-26": "Heritage Day", "2016-03-25": "Good Friday", @@ -800,21 +800,21 @@ "2016-10-10": "Thanksgiving Day", "2016-11-11": "Remembrance Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Boxing Day; Christmas Day (Observed)", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-26": "Boxing Day; Christmas Day (observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-24": "Heritage Day", "2017-04-14": "Good Friday", "2017-05-22": "Victoria Day", "2017-06-21": "National Aboriginal Day", "2017-07-01": "Canada Day", - "2017-07-03": "Canada Day (Observed)", + "2017-07-03": "Canada Day (observed)", "2017-08-21": "Discovery Day", "2017-09-04": "Labor Day", "2017-10-09": "Thanksgiving Day", "2017-11-11": "Remembrance Day", - "2017-11-13": "Remembrance Day (Observed)", + "2017-11-13": "Remembrance Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", @@ -823,12 +823,12 @@ "2018-05-21": "Victoria Day", "2018-06-21": "National Aboriginal Day", "2018-07-01": "Canada Day", - "2018-07-02": "Canada Day (Observed)", + "2018-07-02": "Canada Day (observed)", "2018-08-20": "Discovery Day", "2018-09-03": "Labor Day", "2018-10-08": "Thanksgiving Day", "2018-11-11": "Remembrance Day", - "2018-11-12": "Remembrance Day (Observed)", + "2018-11-12": "Remembrance Day (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", @@ -855,7 +855,7 @@ "2020-11-11": "Remembrance Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-02-26": "Heritage Day", "2021-04-02": "Good Friday", @@ -869,10 +869,10 @@ "2021-11-11": "Remembrance Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-02-25": "Heritage Day", "2022-04-15": "Good Friday", "2022-05-23": "Victoria Day", @@ -885,23 +885,23 @@ "2022-10-10": "Thanksgiving Day", "2022-11-11": "Remembrance Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Boxing Day; Christmas Day (Observed)", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-26": "Boxing Day; Christmas Day (observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-24": "Heritage Day", "2023-04-07": "Good Friday", "2023-05-22": "Victoria Day", "2023-06-21": "National Aboriginal Day", "2023-07-01": "Canada Day", - "2023-07-03": "Canada Day (Observed)", + "2023-07-03": "Canada Day (observed)", "2023-08-21": "Discovery Day", "2023-09-04": "Labor Day", "2023-09-30": "National Day for Truth and Reconciliation", - "2023-10-02": "National Day for Truth and Reconciliation (Observed)", + "2023-10-02": "National Day for Truth and Reconciliation (observed)", "2023-10-09": "Thanksgiving Day", "2023-11-11": "Remembrance Day", - "2023-11-13": "Remembrance Day (Observed)", + "2023-11-13": "Remembrance Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -943,7 +943,7 @@ "2026-11-11": "Remembrance Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-02-26": "Heritage Day", "2027-03-26": "Good Friday", @@ -957,23 +957,23 @@ "2027-11-11": "Remembrance Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-25": "Heritage Day", "2028-04-14": "Good Friday", "2028-05-22": "Victoria Day", "2028-06-21": "National Aboriginal Day", "2028-07-01": "Canada Day", - "2028-07-03": "Canada Day (Observed)", + "2028-07-03": "Canada Day (observed)", "2028-08-21": "Discovery Day", "2028-09-04": "Labor Day", "2028-09-30": "National Day for Truth and Reconciliation", - "2028-10-02": "National Day for Truth and Reconciliation (Observed)", + "2028-10-02": "National Day for Truth and Reconciliation (observed)", "2028-10-09": "Thanksgiving Day", "2028-11-11": "Remembrance Day", - "2028-11-13": "Remembrance Day (Observed)", + "2028-11-13": "Remembrance Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -982,14 +982,14 @@ "2029-05-21": "Victoria Day", "2029-06-21": "National Aboriginal Day", "2029-07-01": "Canada Day", - "2029-07-02": "Canada Day (Observed)", + "2029-07-02": "Canada Day (observed)", "2029-08-20": "Discovery Day", "2029-09-03": "Labor Day", "2029-09-30": "National Day for Truth and Reconciliation", - "2029-10-01": "National Day for Truth and Reconciliation (Observed)", + "2029-10-01": "National Day for Truth and Reconciliation (observed)", "2029-10-08": "Thanksgiving Day", "2029-11-11": "Remembrance Day", - "2029-11-12": "Remembrance Day (Observed)", + "2029-11-12": "Remembrance Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -1031,10 +1031,10 @@ "2032-11-11": "Remembrance Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-02-25": "Heritage Day", "2033-04-15": "Good Friday", "2033-05-23": "Victoria Day", @@ -1046,23 +1046,23 @@ "2033-10-10": "Thanksgiving Day", "2033-11-11": "Remembrance Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Boxing Day; Christmas Day (Observed)", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-26": "Boxing Day; Christmas Day (observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-24": "Heritage Day", "2034-04-07": "Good Friday", "2034-05-22": "Victoria Day", "2034-06-21": "National Aboriginal Day", "2034-07-01": "Canada Day", - "2034-07-03": "Canada Day (Observed)", + "2034-07-03": "Canada Day (observed)", "2034-08-21": "Discovery Day", "2034-09-04": "Labor Day", "2034-09-30": "National Day for Truth and Reconciliation", - "2034-10-02": "National Day for Truth and Reconciliation (Observed)", + "2034-10-02": "National Day for Truth and Reconciliation (observed)", "2034-10-09": "Thanksgiving Day", "2034-11-11": "Remembrance Day", - "2034-11-13": "Remembrance Day (Observed)", + "2034-11-13": "Remembrance Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", @@ -1071,14 +1071,14 @@ "2035-05-21": "Victoria Day", "2035-06-21": "National Aboriginal Day", "2035-07-01": "Canada Day", - "2035-07-02": "Canada Day (Observed)", + "2035-07-02": "Canada Day (observed)", "2035-08-20": "Discovery Day", "2035-09-03": "Labor Day", "2035-09-30": "National Day for Truth and Reconciliation", - "2035-10-01": "National Day for Truth and Reconciliation (Observed)", + "2035-10-01": "National Day for Truth and Reconciliation (observed)", "2035-10-08": "Thanksgiving Day", "2035-11-11": "Remembrance Day", - "2035-11-12": "Remembrance Day (Observed)", + "2035-11-12": "Remembrance Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -1107,7 +1107,7 @@ "2037-11-11": "Remembrance Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-02-26": "Heritage Day", "2038-04-23": "Good Friday", @@ -1121,10 +1121,10 @@ "2038-11-11": "Remembrance Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-02-25": "Heritage Day", "2039-04-08": "Good Friday", "2039-05-23": "Victoria Day", @@ -1136,23 +1136,23 @@ "2039-10-10": "Thanksgiving Day", "2039-11-11": "Remembrance Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Boxing Day; Christmas Day (Observed)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-26": "Boxing Day; Christmas Day (observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-24": "Heritage Day", "2040-03-30": "Good Friday", "2040-05-21": "Victoria Day", "2040-06-21": "National Aboriginal Day", "2040-07-01": "Canada Day", - "2040-07-02": "Canada Day (Observed)", + "2040-07-02": "Canada Day (observed)", "2040-08-20": "Discovery Day", "2040-09-03": "Labor Day", "2040-09-30": "National Day for Truth and Reconciliation", - "2040-10-01": "National Day for Truth and Reconciliation (Observed)", + "2040-10-01": "National Day for Truth and Reconciliation (observed)", "2040-10-08": "Thanksgiving Day", "2040-11-11": "Remembrance Day", - "2040-11-12": "Remembrance Day (Observed)", + "2040-11-12": "Remembrance Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1194,7 +1194,7 @@ "2043-11-11": "Remembrance Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-26": "Heritage Day", "2044-04-15": "Good Friday", @@ -1207,23 +1207,23 @@ "2044-10-10": "Thanksgiving Day", "2044-11-11": "Remembrance Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Boxing Day; Christmas Day (Observed)", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-26": "Boxing Day; Christmas Day (observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-24": "Heritage Day", "2045-04-07": "Good Friday", "2045-05-22": "Victoria Day", "2045-06-21": "National Aboriginal Day", "2045-07-01": "Canada Day", - "2045-07-03": "Canada Day (Observed)", + "2045-07-03": "Canada Day (observed)", "2045-08-21": "Discovery Day", "2045-09-04": "Labor Day", "2045-09-30": "National Day for Truth and Reconciliation", - "2045-10-02": "National Day for Truth and Reconciliation (Observed)", + "2045-10-02": "National Day for Truth and Reconciliation (observed)", "2045-10-09": "Thanksgiving Day", "2045-11-11": "Remembrance Day", - "2045-11-13": "Remembrance Day (Observed)", + "2045-11-13": "Remembrance Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -1232,14 +1232,14 @@ "2046-05-21": "Victoria Day", "2046-06-21": "National Aboriginal Day", "2046-07-01": "Canada Day", - "2046-07-02": "Canada Day (Observed)", + "2046-07-02": "Canada Day (observed)", "2046-08-20": "Discovery Day", "2046-09-03": "Labor Day", "2046-09-30": "National Day for Truth and Reconciliation", - "2046-10-01": "National Day for Truth and Reconciliation (Observed)", + "2046-10-01": "National Day for Truth and Reconciliation (observed)", "2046-10-08": "Thanksgiving Day", "2046-11-11": "Remembrance Day", - "2046-11-12": "Remembrance Day (Observed)", + "2046-11-12": "Remembrance Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1268,7 +1268,7 @@ "2048-11-11": "Remembrance Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-02-26": "Heritage Day", "2049-04-16": "Good Friday", @@ -1282,10 +1282,10 @@ "2049-11-11": "Remembrance Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-02-25": "Heritage Day", "2050-04-08": "Good Friday", "2050-05-23": "Victoria Day", @@ -1297,6 +1297,6 @@ "2050-10-10": "Thanksgiving Day", "2050-11-11": "Remembrance Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Boxing Day; Christmas Day (Observed)", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-26": "Boxing Day; Christmas Day (observed)", + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/CM_COMMON.json b/snapshots/countries/CM_COMMON.json index 5fa99c99b..8ddf2b8c8 100644 --- a/snapshots/countries/CM_COMMON.json +++ b/snapshots/countries/CM_COMMON.json @@ -3,15 +3,15 @@ "1960-03-28": "Eid al-Fitr (estimated)", "1960-04-15": "Good Friday", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (Observed)", + "1960-05-02": "Labour Day (observed)", "1960-05-26": "Ascension Day", "1960-06-04": "Eid al-Adha (estimated)", "1960-08-15": "Assumption Day", "1960-09-03": "Mawlid (estimated)", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-18": "Eid al-Fitr (estimated)", "1961-03-31": "Good Friday", "1961-05-01": "Labour Day", @@ -27,12 +27,12 @@ "1962-05-14": "Eid al-Adha (estimated)", "1962-05-31": "Ascension Day", "1962-08-12": "Mawlid (estimated)", - "1962-08-13": "Mawlid (estimated) (Observed)", + "1962-08-13": "Mawlid (estimated) (observed)", "1962-08-15": "Assumption Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-02-24": "Eid al-Fitr (estimated)", - "1963-02-25": "Eid al-Fitr (estimated) (Observed)", + "1963-02-25": "Eid al-Fitr (estimated) (observed)", "1963-04-12": "Good Friday", "1963-05-01": "Labour Day", "1963-05-03": "Eid al-Adha (estimated)", @@ -52,13 +52,13 @@ "1965-01-01": "New Year's Day", "1965-02-02": "Eid al-Fitr (estimated)", "1965-04-11": "Eid al-Adha (estimated)", - "1965-04-12": "Eid al-Adha (estimated) (Observed)", + "1965-04-12": "Eid al-Adha (estimated) (observed)", "1965-04-16": "Good Friday", "1965-05-01": "Labour Day", "1965-05-27": "Ascension Day", "1965-07-10": "Mawlid (estimated)", "1965-08-15": "Assumption Day", - "1965-08-16": "Assumption Day (Observed)", + "1965-08-16": "Assumption Day (observed)", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-01-22": "Eid al-Fitr (estimated)", @@ -66,14 +66,14 @@ "1966-04-01": "Eid al-Adha (estimated)", "1966-04-08": "Good Friday", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (Observed)", + "1966-05-02": "Labour Day (observed)", "1966-05-19": "Ascension Day", "1966-07-01": "Mawlid (estimated)", "1966-08-15": "Assumption Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-12": "Eid al-Fitr (estimated)", "1967-02-11": "Youth Day", "1967-03-21": "Eid al-Adha (estimated)", @@ -85,7 +85,7 @@ "1967-12-25": "Christmas Day", "1968-01-01": "Eid al-Fitr (estimated); New Year's Day", "1968-02-11": "Youth Day", - "1968-02-12": "Youth Day (Observed)", + "1968-02-12": "Youth Day (observed)", "1968-03-09": "Eid al-Adha (estimated)", "1968-04-12": "Good Friday", "1968-05-01": "Labour Day", @@ -122,7 +122,7 @@ "1971-05-07": "Mawlid (estimated)", "1971-05-20": "Ascension Day", "1971-08-15": "Assumption Day", - "1971-08-16": "Assumption Day (Observed)", + "1971-08-16": "Assumption Day (observed)", "1971-11-19": "Eid al-Fitr (estimated)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", @@ -138,15 +138,15 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Eid al-Adha (estimated)", - "1973-01-15": "Eid al-Adha (estimated) (Observed)", + "1973-01-15": "Eid al-Adha (estimated) (observed)", "1973-02-11": "Youth Day", - "1973-02-12": "Youth Day (Observed)", + "1973-02-12": "Youth Day (observed)", "1973-04-15": "Mawlid (estimated)", - "1973-04-16": "Mawlid (estimated) (Observed)", + "1973-04-16": "Mawlid (estimated) (observed)", "1973-04-20": "Good Friday", "1973-05-01": "Labour Day", "1973-05-20": "National Day", - "1973-05-21": "National Day (Observed)", + "1973-05-21": "National Day (observed)", "1973-05-31": "Ascension Day", "1973-08-15": "Assumption Day", "1973-10-27": "Eid al-Fitr (estimated)", @@ -182,7 +182,7 @@ "1976-05-20": "National Day", "1976-05-27": "Ascension Day", "1976-08-15": "Assumption Day", - "1976-08-16": "Assumption Day (Observed)", + "1976-08-16": "Assumption Day (observed)", "1976-09-24": "Eid al-Fitr (estimated)", "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", @@ -191,36 +191,36 @@ "1977-03-02": "Mawlid (estimated)", "1977-04-08": "Good Friday", "1977-05-01": "Labour Day", - "1977-05-02": "Labour Day (Observed)", + "1977-05-02": "Labour Day (observed)", "1977-05-19": "Ascension Day", "1977-05-20": "National Day", "1977-08-15": "Assumption Day", "1977-09-14": "Eid al-Fitr (estimated)", "1977-11-21": "Eid al-Adha (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-11": "Youth Day", "1978-02-19": "Mawlid (estimated)", - "1978-02-20": "Mawlid (estimated) (Observed)", + "1978-02-20": "Mawlid (estimated) (observed)", "1978-03-24": "Good Friday", "1978-05-01": "Labour Day", "1978-05-04": "Ascension Day", "1978-05-20": "National Day", "1978-08-15": "Assumption Day", "1978-09-03": "Eid al-Fitr (estimated)", - "1978-09-04": "Eid al-Fitr (estimated) (Observed)", + "1978-09-04": "Eid al-Fitr (estimated) (observed)", "1978-11-10": "Eid al-Adha (estimated)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-09": "Mawlid (estimated)", "1979-02-11": "Youth Day", - "1979-02-12": "Youth Day (Observed)", + "1979-02-12": "Youth Day (observed)", "1979-04-13": "Good Friday", "1979-05-01": "Labour Day", "1979-05-20": "National Day", - "1979-05-21": "National Day (Observed)", + "1979-05-21": "National Day (observed)", "1979-05-24": "Ascension Day", "1979-08-15": "Assumption Day", "1979-08-23": "Eid al-Fitr (estimated)", @@ -236,11 +236,11 @@ "1980-08-12": "Eid al-Fitr (estimated)", "1980-08-15": "Assumption Day", "1980-10-19": "Eid al-Adha (estimated)", - "1980-10-20": "Eid al-Adha (estimated) (Observed)", + "1980-10-20": "Eid al-Adha (estimated) (observed)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Mawlid (estimated)", - "1981-01-19": "Mawlid (estimated) (Observed)", + "1981-01-19": "Mawlid (estimated) (observed)", "1981-02-11": "Youth Day", "1981-04-17": "Good Friday", "1981-05-01": "Labour Day", @@ -258,7 +258,7 @@ "1982-05-20": "Ascension Day; National Day", "1982-07-21": "Eid al-Fitr (estimated)", "1982-08-15": "Assumption Day", - "1982-08-16": "Assumption Day (Observed)", + "1982-08-16": "Assumption Day (observed)", "1982-09-27": "Eid al-Adha (estimated)", "1982-12-25": "Christmas Day", "1982-12-27": "Mawlid (estimated)", @@ -266,7 +266,7 @@ "1983-02-11": "Youth Day", "1983-04-01": "Good Friday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-05-12": "Ascension Day", "1983-05-20": "National Day", "1983-07-11": "Eid al-Fitr (estimated)", @@ -274,14 +274,14 @@ "1983-09-17": "Eid al-Adha (estimated)", "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-11": "Youth Day", "1984-04-20": "Good Friday", "1984-05-01": "Labour Day", "1984-05-20": "National Day", - "1984-05-21": "National Day (Observed)", + "1984-05-21": "National Day (observed)", "1984-05-31": "Ascension Day", "1984-06-30": "Eid al-Fitr (estimated)", "1984-08-15": "Assumption Day", @@ -298,7 +298,7 @@ "1985-08-15": "Assumption Day", "1985-08-26": "Eid al-Adha (estimated)", "1985-11-24": "Mawlid (estimated)", - "1985-11-25": "Mawlid (estimated) (Observed)", + "1985-11-25": "Mawlid (estimated) (observed)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-11": "Youth Day", @@ -307,7 +307,7 @@ "1986-05-08": "Ascension Day", "1986-05-20": "National Day", "1986-06-08": "Eid al-Fitr (estimated)", - "1986-06-09": "Eid al-Fitr (estimated) (Observed)", + "1986-06-09": "Eid al-Fitr (estimated) (observed)", "1986-08-15": "Assumption Day; Eid al-Adha (estimated)", "1986-11-14": "Mawlid (estimated)", "1986-12-25": "Christmas Day", @@ -325,7 +325,7 @@ "1988-02-11": "Youth Day", "1988-04-01": "Good Friday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-05-12": "Ascension Day", "1988-05-16": "Eid al-Fitr (estimated)", "1988-05-20": "National Day", @@ -333,9 +333,9 @@ "1988-08-15": "Assumption Day", "1988-10-22": "Mawlid (estimated)", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-11": "Youth Day", "1989-03-24": "Good Friday", "1989-05-01": "Labour Day", @@ -348,12 +348,12 @@ "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-02-11": "Youth Day", - "1990-02-12": "Youth Day (Observed)", + "1990-02-12": "Youth Day (observed)", "1990-04-13": "Good Friday", "1990-04-26": "Eid al-Fitr (estimated)", "1990-05-01": "Labour Day", "1990-05-20": "National Day", - "1990-05-21": "National Day (Observed)", + "1990-05-21": "National Day (observed)", "1990-05-24": "Ascension Day", "1990-07-02": "Eid al-Adha (estimated)", "1990-08-15": "Assumption Day", @@ -389,25 +389,25 @@ "1993-05-20": "Ascension Day; National Day", "1993-05-31": "Eid al-Adha (estimated)", "1993-08-15": "Assumption Day", - "1993-08-16": "Assumption Day (Observed)", + "1993-08-16": "Assumption Day (observed)", "1993-08-29": "Mawlid (estimated)", - "1993-08-30": "Mawlid (estimated) (Observed)", + "1993-08-30": "Mawlid (estimated) (observed)", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-02-11": "Youth Day", "1994-03-13": "Eid al-Fitr (estimated)", - "1994-03-14": "Eid al-Fitr (estimated) (Observed)", + "1994-03-14": "Eid al-Fitr (estimated) (observed)", "1994-04-01": "Good Friday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-05-12": "Ascension Day", "1994-05-20": "Eid al-Adha (estimated); National Day", "1994-08-15": "Assumption Day", "1994-08-19": "Mawlid (estimated)", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-11": "Youth Day", "1995-03-02": "Eid al-Fitr (estimated)", "1995-04-14": "Good Friday", @@ -420,7 +420,7 @@ "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-02-11": "Youth Day", - "1996-02-12": "Youth Day (Observed)", + "1996-02-12": "Youth Day (observed)", "1996-02-19": "Eid al-Fitr (estimated)", "1996-04-05": "Good Friday", "1996-04-27": "Eid al-Adha (estimated)", @@ -462,7 +462,7 @@ "1999-05-20": "National Day", "1999-06-26": "Mawlid (estimated)", "1999-08-15": "Assumption Day", - "1999-08-16": "Assumption Day (Observed)", + "1999-08-16": "Assumption Day (observed)", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", "2000-01-08": "Eid al-Fitr (estimated)", @@ -478,12 +478,12 @@ "2000-12-27": "Eid al-Fitr (estimated)", "2001-01-01": "New Year's Day", "2001-02-11": "Youth Day", - "2001-02-12": "Youth Day (Observed)", + "2001-02-12": "Youth Day (observed)", "2001-03-06": "Eid al-Adha", "2001-04-13": "Good Friday", "2001-05-01": "Labour Day", "2001-05-20": "National Day", - "2001-05-21": "National Day (Observed)", + "2001-05-21": "National Day (observed)", "2001-05-24": "Ascension Day", "2001-06-04": "Mawlid", "2001-08-15": "Assumption Day", @@ -517,12 +517,12 @@ "2004-04-09": "Good Friday", "2004-05-01": "Labour Day", "2004-05-02": "Mawlid", - "2004-05-03": "Mawlid (Observed)", + "2004-05-03": "Mawlid (observed)", "2004-05-20": "Ascension Day; National Day", "2004-08-15": "Assumption Day", - "2004-08-16": "Assumption Day (Observed)", + "2004-08-16": "Assumption Day (observed)", "2004-11-14": "Eid al-Fitr", - "2004-11-15": "Eid al-Fitr (Observed)", + "2004-11-15": "Eid al-Fitr (observed)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Eid al-Adha", @@ -530,15 +530,15 @@ "2005-03-25": "Good Friday", "2005-04-21": "Mawlid", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-05-05": "Ascension Day", "2005-05-20": "National Day", "2005-08-15": "Assumption Day", "2005-11-04": "Eid al-Fitr", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-10": "Eid al-Adha", "2006-02-11": "Youth Day", "2006-04-11": "Mawlid", @@ -551,15 +551,15 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Eid al-Adha", "2007-01-01": "New Year's Day", - "2007-01-02": "Eid al-Adha (Observed)", + "2007-01-02": "Eid al-Adha (observed)", "2007-02-11": "Youth Day", - "2007-02-12": "Youth Day (Observed)", + "2007-02-12": "Youth Day (observed)", "2007-03-31": "Mawlid", "2007-04-06": "Good Friday", "2007-05-01": "Labour Day", "2007-05-17": "Ascension Day", "2007-05-20": "National Day", - "2007-05-21": "National Day (Observed)", + "2007-05-21": "National Day (observed)", "2007-08-15": "Assumption Day", "2007-10-13": "Eid al-Fitr", "2007-12-20": "Eid al-Adha", @@ -593,7 +593,7 @@ "2010-05-13": "Ascension Day", "2010-05-20": "National Day", "2010-08-15": "Assumption Day", - "2010-08-16": "Assumption Day (Observed)", + "2010-08-16": "Assumption Day (observed)", "2010-09-10": "Eid al-Fitr", "2010-11-17": "Eid al-Adha", "2010-12-25": "Christmas Day", @@ -602,27 +602,27 @@ "2011-02-16": "Mawlid", "2011-04-22": "Good Friday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-05-20": "National Day", "2011-06-02": "Ascension Day", "2011-08-15": "Assumption Day", "2011-08-31": "Eid al-Fitr", "2011-11-07": "Eid al-Adha", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-05": "Mawlid", - "2012-02-06": "Mawlid (Observed)", + "2012-02-06": "Mawlid (observed)", "2012-02-11": "Youth Day", "2012-04-06": "Good Friday", "2012-05-01": "Labour Day", "2012-05-17": "Ascension Day", "2012-05-20": "National Day", - "2012-05-21": "National Day (Observed)", + "2012-05-21": "National Day (observed)", "2012-08-15": "Assumption Day", "2012-08-19": "Eid al-Fitr", - "2012-08-20": "Eid al-Fitr (Observed)", + "2012-08-20": "Eid al-Fitr (observed)", "2012-10-26": "Eid al-Adha", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -646,7 +646,7 @@ "2014-07-28": "Eid al-Fitr", "2014-08-15": "Assumption Day", "2014-10-05": "Eid al-Adha", - "2014-10-06": "Eid al-Adha (Observed)", + "2014-10-06": "Eid al-Adha (observed)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-03": "Mawlid", @@ -664,7 +664,7 @@ "2016-02-11": "Youth Day", "2016-03-25": "Good Friday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-05-05": "Ascension Day", "2016-05-20": "National Day", "2016-07-07": "Eid al-Fitr", @@ -672,9 +672,9 @@ "2016-09-13": "Eid al-Adha", "2016-12-12": "Mawlid", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-11": "Youth Day", "2017-04-14": "Good Friday", "2017-05-01": "Labour Day", @@ -687,12 +687,12 @@ "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", "2018-02-11": "Youth Day", - "2018-02-12": "Youth Day (Observed)", + "2018-02-12": "Youth Day (observed)", "2018-03-30": "Good Friday", "2018-05-01": "Labour Day", "2018-05-10": "Ascension Day", "2018-05-20": "National Day", - "2018-05-21": "National Day (Observed)", + "2018-05-21": "National Day (observed)", "2018-06-15": "Eid al-Fitr", "2018-08-15": "Assumption Day", "2018-08-21": "Eid al-Adha", @@ -706,10 +706,10 @@ "2019-05-30": "Ascension Day", "2019-06-04": "Eid al-Fitr", "2019-08-11": "Eid al-Adha", - "2019-08-12": "Eid al-Adha (Observed)", + "2019-08-12": "Eid al-Adha (observed)", "2019-08-15": "Assumption Day", "2019-11-10": "Mawlid", - "2019-11-11": "Mawlid (Observed)", + "2019-11-11": "Mawlid (observed)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-02-11": "Youth Day", @@ -718,7 +718,7 @@ "2020-05-20": "National Day", "2020-05-21": "Ascension Day", "2020-05-24": "Eid al-Fitr", - "2020-05-25": "Eid al-Fitr (Observed)", + "2020-05-25": "Eid al-Fitr (observed)", "2020-07-31": "Eid al-Adha", "2020-08-15": "Assumption Day", "2020-10-29": "Mawlid", @@ -733,7 +733,7 @@ "2021-07-19": "Public Holiday", "2021-07-20": "Eid al-Adha", "2021-08-15": "Assumption Day", - "2021-08-16": "Assumption Day (Observed)", + "2021-08-16": "Assumption Day (observed)", "2021-10-19": "Mawlid", "2021-12-25": "Christmas Day", "2022-01-01": "New Year's Day", @@ -741,16 +741,16 @@ "2022-04-15": "Good Friday", "2022-05-01": "Labour Day", "2022-05-02": "Eid al-Fitr", - "2022-05-03": "Labour Day (Observed)", + "2022-05-03": "Labour Day (observed)", "2022-05-20": "National Day", "2022-05-26": "Ascension Day", "2022-07-09": "Eid al-Adha", "2022-08-15": "Assumption Day", "2022-10-08": "Mawlid", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-11": "Youth Day", "2023-04-07": "Good Friday", "2023-04-21": "Eid al-Fitr", @@ -763,22 +763,22 @@ "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-02-11": "Youth Day", - "2024-02-12": "Youth Day (Observed)", + "2024-02-12": "Youth Day (observed)", "2024-03-29": "Good Friday", "2024-04-10": "Eid al-Fitr (estimated)", "2024-05-01": "Labour Day", "2024-05-09": "Ascension Day", "2024-05-20": "National Day", "2024-06-16": "Eid al-Adha (estimated)", - "2024-06-17": "Eid al-Adha (estimated) (Observed)", + "2024-06-17": "Eid al-Adha (estimated) (observed)", "2024-08-15": "Assumption Day", "2024-09-15": "Mawlid (estimated)", - "2024-09-16": "Mawlid (estimated) (Observed)", + "2024-09-16": "Mawlid (estimated) (observed)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-02-11": "Youth Day", "2025-03-30": "Eid al-Fitr (estimated)", - "2025-03-31": "Eid al-Fitr (estimated) (Observed)", + "2025-03-31": "Eid al-Fitr (estimated) (observed)", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", "2025-05-20": "National Day", @@ -805,11 +805,11 @@ "2027-05-01": "Labour Day", "2027-05-06": "Ascension Day", "2027-05-16": "Eid al-Adha (estimated)", - "2027-05-17": "Eid al-Adha (estimated) (Observed)", + "2027-05-17": "Eid al-Adha (estimated) (observed)", "2027-05-20": "National Day", "2027-08-14": "Mawlid (estimated)", "2027-08-15": "Assumption Day", - "2027-08-16": "Assumption Day (Observed)", + "2027-08-16": "Assumption Day (observed)", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-02-11": "Youth Day", @@ -824,14 +824,14 @@ "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-02-11": "Youth Day", - "2029-02-12": "Youth Day (Observed)", + "2029-02-12": "Youth Day (observed)", "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-30": "Good Friday", "2029-04-24": "Eid al-Adha (estimated)", "2029-05-01": "Labour Day", "2029-05-10": "Ascension Day", "2029-05-20": "National Day", - "2029-05-21": "National Day (Observed)", + "2029-05-21": "National Day (observed)", "2029-07-24": "Mawlid (estimated)", "2029-08-15": "Assumption Day", "2029-12-25": "Christmas Day", @@ -866,27 +866,27 @@ "2032-05-06": "Ascension Day", "2032-05-20": "National Day", "2032-06-20": "Mawlid (estimated)", - "2032-06-21": "Mawlid (estimated) (Observed)", + "2032-06-21": "Mawlid (estimated) (observed)", "2032-08-15": "Assumption Day", - "2032-08-16": "Assumption Day (Observed)", + "2032-08-16": "Assumption Day (observed)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", "2033-01-02": "Eid al-Fitr (estimated)", - "2033-01-03": "Eid al-Fitr (estimated) (Observed)", + "2033-01-03": "Eid al-Fitr (estimated) (observed)", "2033-02-11": "Youth Day", "2033-03-11": "Eid al-Adha (estimated)", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-05-20": "National Day", "2033-05-26": "Ascension Day", "2033-06-09": "Mawlid (estimated)", "2033-08-15": "Assumption Day", "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-11": "Youth Day", "2034-03-01": "Eid al-Adha (estimated)", "2034-04-07": "Good Friday", @@ -899,14 +899,14 @@ "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-02-11": "Youth Day", - "2035-02-12": "Youth Day (Observed)", + "2035-02-12": "Youth Day (observed)", "2035-02-18": "Eid al-Adha (estimated)", - "2035-02-19": "Eid al-Adha (estimated) (Observed)", + "2035-02-19": "Eid al-Adha (estimated) (observed)", "2035-03-23": "Good Friday", "2035-05-01": "Labour Day", "2035-05-03": "Ascension Day", "2035-05-20": "Mawlid (estimated); National Day", - "2035-05-21": "Mawlid (estimated) (Observed); National Day (Observed)", + "2035-05-21": "Mawlid (estimated) (observed); National Day (observed)", "2035-08-15": "Assumption Day", "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-25": "Christmas Day", @@ -931,7 +931,7 @@ "2037-05-20": "National Day", "2037-08-15": "Assumption Day", "2037-11-08": "Eid al-Fitr (estimated)", - "2037-11-09": "Eid al-Fitr (estimated) (Observed)", + "2037-11-09": "Eid al-Fitr (estimated) (observed)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Eid al-Adha (estimated)", @@ -942,7 +942,7 @@ "2038-05-20": "National Day", "2038-06-03": "Ascension Day", "2038-08-15": "Assumption Day", - "2038-08-16": "Assumption Day (Observed)", + "2038-08-16": "Assumption Day (observed)", "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", @@ -951,27 +951,27 @@ "2039-04-06": "Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-05-19": "Ascension Day", "2039-05-20": "National Day", "2039-08-15": "Assumption Day", "2039-10-19": "Eid al-Fitr (estimated)", "2039-12-25": "Christmas Day", "2039-12-26": "Eid al-Adha (estimated)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-11": "Youth Day", "2040-03-25": "Mawlid (estimated)", - "2040-03-26": "Mawlid (estimated) (Observed)", + "2040-03-26": "Mawlid (estimated) (observed)", "2040-03-30": "Good Friday", "2040-05-01": "Labour Day", "2040-05-10": "Ascension Day", "2040-05-20": "National Day", - "2040-05-21": "National Day (Observed)", + "2040-05-21": "National Day (observed)", "2040-08-15": "Assumption Day", "2040-10-07": "Eid al-Fitr (estimated)", - "2040-10-08": "Eid al-Fitr (estimated) (Observed)", + "2040-10-08": "Eid al-Fitr (estimated) (observed)", "2040-12-14": "Eid al-Adha (estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -995,12 +995,12 @@ "2042-08-15": "Assumption Day", "2042-09-15": "Eid al-Fitr (estimated)", "2042-11-23": "Eid al-Adha (estimated)", - "2042-11-24": "Eid al-Adha (estimated) (Observed)", + "2042-11-24": "Eid al-Adha (estimated) (observed)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-11": "Youth Day", "2043-02-22": "Mawlid (estimated)", - "2043-02-23": "Mawlid (estimated) (Observed)", + "2043-02-23": "Mawlid (estimated) (observed)", "2043-03-27": "Good Friday", "2043-05-01": "Labour Day", "2043-05-07": "Ascension Day", @@ -1013,16 +1013,16 @@ "2044-02-11": "Mawlid (estimated); Youth Day", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-05-20": "National Day", "2044-05-26": "Ascension Day", "2044-08-15": "Assumption Day", "2044-08-24": "Eid al-Fitr (estimated)", "2044-10-31": "Eid al-Adha (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-30": "Mawlid (estimated)", "2045-02-11": "Youth Day", "2045-04-07": "Good Friday", @@ -1036,12 +1036,12 @@ "2046-01-01": "New Year's Day", "2046-01-19": "Mawlid (estimated)", "2046-02-11": "Youth Day", - "2046-02-12": "Youth Day (Observed)", + "2046-02-12": "Youth Day (observed)", "2046-03-23": "Good Friday", "2046-05-01": "Labour Day", "2046-05-03": "Ascension Day", "2046-05-20": "National Day", - "2046-05-21": "National Day (Observed)", + "2046-05-21": "National Day (observed)", "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-15": "Assumption Day", "2046-10-10": "Eid al-Adha (estimated)", @@ -1058,7 +1058,7 @@ "2047-09-30": "Eid al-Adha (estimated)", "2047-12-25": "Christmas Day", "2047-12-29": "Mawlid (estimated)", - "2047-12-30": "Mawlid (estimated) (Observed)", + "2047-12-30": "Mawlid (estimated) (observed)", "2048-01-01": "New Year's Day", "2048-02-11": "Youth Day", "2048-04-03": "Good Friday", @@ -1066,7 +1066,7 @@ "2048-05-14": "Ascension Day", "2048-05-20": "National Day", "2048-07-12": "Eid al-Fitr (estimated)", - "2048-07-13": "Eid al-Fitr (estimated) (Observed)", + "2048-07-13": "Eid al-Fitr (estimated) (observed)", "2048-08-15": "Assumption Day", "2048-09-19": "Eid al-Adha (estimated)", "2048-12-18": "Mawlid (estimated)", @@ -1079,7 +1079,7 @@ "2049-05-27": "Ascension Day", "2049-07-01": "Eid al-Fitr (estimated)", "2049-08-15": "Assumption Day", - "2049-08-16": "Assumption Day (Observed)", + "2049-08-16": "Assumption Day (observed)", "2049-09-08": "Eid al-Adha (estimated)", "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", @@ -1087,14 +1087,14 @@ "2050-02-11": "Youth Day", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-05-19": "Ascension Day", "2050-05-20": "National Day", "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-15": "Assumption Day", "2050-08-28": "Eid al-Adha (estimated)", - "2050-08-29": "Eid al-Adha (estimated) (Observed)", + "2050-08-29": "Eid al-Adha (estimated) (observed)", "2050-11-26": "Mawlid (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/CN_COMMON.json b/snapshots/countries/CN_COMMON.json index 32a2adfe2..bbac22f3f 100644 --- a/snapshots/countries/CN_COMMON.json +++ b/snapshots/countries/CN_COMMON.json @@ -551,12 +551,12 @@ "1999-10-02": "National Day", "1999-10-03": "National Day", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-02-05": "Chinese New Year (Spring Festival)", "2000-02-06": "Chinese New Year (Spring Festival)", "2000-02-07": "Chinese New Year (Spring Festival)", - "2000-02-08": "Chinese New Year (Spring Festival) (Observed)", - "2000-02-09": "Chinese New Year (Spring Festival) (Observed)", + "2000-02-08": "Chinese New Year (Spring Festival) (observed)", + "2000-02-09": "Chinese New Year (Spring Festival) (observed)", "2000-03-08": "International Women's Day", "2000-05-01": "Labor Day", "2000-05-02": "Labor Day", @@ -567,7 +567,7 @@ "2000-10-01": "National Day", "2000-10-02": "National Day", "2000-10-03": "National Day", - "2000-10-04": "National Day (Observed)", + "2000-10-04": "National Day (observed)", "2001-01-01": "New Year's Day", "2001-01-24": "Chinese New Year (Spring Festival)", "2001-01-25": "Chinese New Year (Spring Festival)", @@ -613,8 +613,8 @@ "2003-02-01": "Chinese New Year (Spring Festival)", "2003-02-02": "Chinese New Year (Spring Festival)", "2003-02-03": "Chinese New Year (Spring Festival)", - "2003-02-04": "Chinese New Year (Spring Festival) (Observed)", - "2003-02-05": "Chinese New Year (Spring Festival) (Observed)", + "2003-02-04": "Chinese New Year (Spring Festival) (observed)", + "2003-02-05": "Chinese New Year (Spring Festival) (observed)", "2003-02-06": "Day off (substituted from 02/08/2003)", "2003-02-07": "Day off (substituted from 02/09/2003)", "2003-03-08": "International Women's Day", @@ -622,7 +622,7 @@ "2003-05-02": "Labor Day", "2003-05-03": "Labor Day", "2003-05-04": "Youth Day", - "2003-05-05": "Labor Day (Observed)", + "2003-05-05": "Labor Day (observed)", "2003-05-06": "Day off (substituted from 04/26/2003)", "2003-05-07": "Day off (substituted from 04/27/2003)", "2003-06-01": "Children's Day", @@ -636,7 +636,7 @@ "2004-01-22": "Chinese New Year (Spring Festival)", "2004-01-23": "Chinese New Year (Spring Festival)", "2004-01-24": "Chinese New Year (Spring Festival)", - "2004-01-26": "Chinese New Year (Spring Festival) (Observed)", + "2004-01-26": "Chinese New Year (Spring Festival) (observed)", "2004-01-27": "Day off (substituted from 01/17/2004)", "2004-01-28": "Day off (substituted from 01/18/2004)", "2004-03-08": "International Women's Day", @@ -644,20 +644,20 @@ "2004-05-02": "Labor Day", "2004-05-03": "Labor Day", "2004-05-04": "Youth Day", - "2004-05-05": "Labor Day (Observed)", - "2004-05-06": "Day off (substituted from 05/08/2004); Labor Day (Observed)", + "2004-05-05": "Labor Day (observed)", + "2004-05-06": "Day off (substituted from 05/08/2004); Labor Day (observed)", "2004-05-07": "Day off (substituted from 05/09/2004)", "2004-06-01": "Children's Day", "2004-08-01": "Army Day", "2004-10-01": "National Day", "2004-10-02": "National Day", "2004-10-03": "National Day", - "2004-10-04": "National Day (Observed)", - "2004-10-05": "National Day (Observed)", + "2004-10-04": "National Day (observed)", + "2004-10-05": "National Day (observed)", "2004-10-06": "Day off (substituted from 10/09/2004)", "2004-10-07": "Day off (substituted from 10/10/2004)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-02-09": "Chinese New Year (Spring Festival)", "2005-02-10": "Chinese New Year (Spring Festival)", "2005-02-11": "Chinese New Year (Spring Festival)", @@ -668,24 +668,24 @@ "2005-05-02": "Labor Day", "2005-05-03": "Labor Day", "2005-05-04": "Youth Day", - "2005-05-05": "Day off (substituted from 04/30/2005); Labor Day (Observed)", + "2005-05-05": "Day off (substituted from 04/30/2005); Labor Day (observed)", "2005-05-06": "Day off (substituted from 05/08/2005)", "2005-06-01": "Children's Day", "2005-08-01": "Army Day", "2005-10-01": "National Day", "2005-10-02": "National Day", "2005-10-03": "National Day", - "2005-10-04": "National Day (Observed)", - "2005-10-05": "National Day (Observed)", + "2005-10-04": "National Day (observed)", + "2005-10-05": "National Day (observed)", "2005-10-06": "Day off (substituted from 10/08/2005)", "2005-10-07": "Day off (substituted from 10/09/2005)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-03": "Day off (substituted from 12/31/2005)", "2006-01-29": "Chinese New Year (Spring Festival)", "2006-01-30": "Chinese New Year (Spring Festival)", "2006-01-31": "Chinese New Year (Spring Festival)", - "2006-02-01": "Chinese New Year (Spring Festival) (Observed)", + "2006-02-01": "Chinese New Year (Spring Festival) (observed)", "2006-02-02": "Day off (substituted from 01/28/2006)", "2006-02-03": "Day off (substituted from 02/05/2006)", "2006-03-08": "International Women's Day", @@ -699,7 +699,7 @@ "2006-10-01": "National Day", "2006-10-02": "National Day", "2006-10-03": "National Day", - "2006-10-04": "National Day (Observed)", + "2006-10-04": "National Day (observed)", "2006-10-05": "Day off (substituted from 09/30/2006)", "2006-10-06": "Day off (substituted from 10/08/2006)", "2007-01-01": "New Year's Day", @@ -708,7 +708,7 @@ "2007-02-18": "Chinese New Year (Spring Festival)", "2007-02-19": "Chinese New Year (Spring Festival)", "2007-02-20": "Chinese New Year (Spring Festival)", - "2007-02-21": "Chinese New Year (Spring Festival) (Observed)", + "2007-02-21": "Chinese New Year (Spring Festival) (observed)", "2007-02-22": "Day off (substituted from 02/17/2007)", "2007-02-23": "Day off (substituted from 02/25/2007)", "2007-03-08": "International Women's Day", @@ -738,10 +738,10 @@ "2008-05-04": "Youth Day", "2008-06-01": "Children's Day", "2008-06-08": "Dragon Boat Festival", - "2008-06-09": "Dragon Boat Festival (Observed)", + "2008-06-09": "Dragon Boat Festival (observed)", "2008-08-01": "Army Day", "2008-09-14": "Mid-Autumn Festival", - "2008-09-15": "Mid-Autumn Festival (Observed)", + "2008-09-15": "Mid-Autumn Festival (observed)", "2008-09-29": "Day off (substituted from 09/27/2008)", "2008-09-30": "Day off (substituted from 09/28/2008)", "2008-10-01": "National Day", @@ -752,12 +752,12 @@ "2009-01-25": "Chinese New Year's Eve", "2009-01-26": "Chinese New Year (Spring Festival)", "2009-01-27": "Chinese New Year (Spring Festival)", - "2009-01-28": "Chinese New Year's Eve (Observed)", + "2009-01-28": "Chinese New Year's Eve (observed)", "2009-01-29": "Day off (substituted from 01/24/2009)", "2009-01-30": "Day off (substituted from 02/01/2009)", "2009-03-08": "International Women's Day", "2009-04-04": "Tomb-Sweeping Day", - "2009-04-06": "Tomb-Sweeping Day (Observed)", + "2009-04-06": "Tomb-Sweeping Day (observed)", "2009-05-01": "Labor Day", "2009-05-04": "Youth Day", "2009-05-28": "Dragon Boat Festival", @@ -767,22 +767,22 @@ "2009-10-01": "National Day", "2009-10-02": "National Day", "2009-10-03": "Mid-Autumn Festival; National Day", - "2009-10-05": "Mid-Autumn Festival (Observed)", - "2009-10-06": "National Day (Observed)", + "2009-10-05": "Mid-Autumn Festival (observed)", + "2009-10-06": "National Day (observed)", "2009-10-07": "Day off (substituted from 09/27/2009)", "2009-10-08": "Day off (substituted from 10/10/2009)", "2010-01-01": "New Year's Day", "2010-02-13": "Chinese New Year's Eve", "2010-02-14": "Chinese New Year (Spring Festival)", "2010-02-15": "Chinese New Year (Spring Festival)", - "2010-02-16": "Chinese New Year's Eve (Observed)", - "2010-02-17": "Chinese New Year (Spring Festival) (Observed)", + "2010-02-16": "Chinese New Year's Eve (observed)", + "2010-02-17": "Chinese New Year (Spring Festival) (observed)", "2010-02-18": "Day off (substituted from 02/20/2010)", "2010-02-19": "Day off (substituted from 02/21/2010)", "2010-03-08": "International Women's Day", "2010-04-05": "Tomb-Sweeping Day", "2010-05-01": "Labor Day", - "2010-05-03": "Labor Day (Observed)", + "2010-05-03": "Labor Day (observed)", "2010-05-04": "Youth Day", "2010-06-01": "Children's Day", "2010-06-14": "Day off (substituted from 06/12/2010)", @@ -795,12 +795,12 @@ "2010-10-01": "National Day", "2010-10-02": "National Day", "2010-10-03": "National Day", - "2010-10-04": "National Day (Observed)", - "2010-10-05": "National Day (Observed)", + "2010-10-04": "National Day (observed)", + "2010-10-05": "National Day (observed)", "2010-10-06": "Day off (substituted from 09/26/2010)", "2010-10-07": "Day off (substituted from 10/09/2010)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-02-02": "Chinese New Year's Eve", "2011-02-03": "Chinese New Year (Spring Festival)", "2011-02-04": "Chinese New Year (Spring Festival)", @@ -810,7 +810,7 @@ "2011-04-04": "Day off (substituted from 04/02/2011)", "2011-04-05": "Tomb-Sweeping Day", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-05-04": "Youth Day", "2011-06-01": "Children's Day", "2011-06-06": "Dragon Boat Festival", @@ -819,17 +819,17 @@ "2011-10-01": "National Day", "2011-10-02": "National Day", "2011-10-03": "National Day", - "2011-10-04": "National Day (Observed)", - "2011-10-05": "National Day (Observed)", + "2011-10-04": "National Day (observed)", + "2011-10-05": "National Day (observed)", "2011-10-06": "Day off (substituted from 10/08/2011)", "2011-10-07": "Day off (substituted from 10/09/2011)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-03": "Day off (substituted from 12/31/2011)", "2012-01-22": "Chinese New Year's Eve", "2012-01-23": "Chinese New Year (Spring Festival)", "2012-01-24": "Chinese New Year (Spring Festival)", - "2012-01-25": "Chinese New Year's Eve (Observed)", + "2012-01-25": "Chinese New Year's Eve (observed)", "2012-01-26": "Day off (substituted from 01/21/2012)", "2012-01-27": "Day off (substituted from 01/29/2012)", "2012-03-08": "International Women's Day", @@ -840,14 +840,14 @@ "2012-05-01": "Labor Day", "2012-05-04": "Youth Day", "2012-06-01": "Children's Day", - "2012-06-22": "Dragon Boat Festival (Observed)", + "2012-06-22": "Dragon Boat Festival (observed)", "2012-06-23": "Dragon Boat Festival", "2012-08-01": "Army Day", "2012-09-30": "Mid-Autumn Festival", "2012-10-01": "National Day", "2012-10-02": "National Day", "2012-10-03": "National Day", - "2012-10-04": "Mid-Autumn Festival (Observed)", + "2012-10-04": "Mid-Autumn Festival (observed)", "2012-10-05": "Day off (substituted from 09/29/2012)", "2013-01-01": "New Year's Day", "2013-01-02": "Day off (substituted from 01/05/2013)", @@ -855,8 +855,8 @@ "2013-02-09": "Chinese New Year's Eve", "2013-02-10": "Chinese New Year (Spring Festival)", "2013-02-11": "Chinese New Year (Spring Festival)", - "2013-02-12": "Chinese New Year's Eve (Observed)", - "2013-02-13": "Chinese New Year (Spring Festival) (Observed)", + "2013-02-12": "Chinese New Year's Eve (observed)", + "2013-02-13": "Chinese New Year (Spring Festival) (observed)", "2013-02-14": "Day off (substituted from 02/16/2013)", "2013-02-15": "Day off (substituted from 02/17/2013)", "2013-03-08": "International Women's Day", @@ -882,13 +882,13 @@ "2014-01-31": "Chinese New Year (Spring Festival)", "2014-02-01": "Chinese New Year (Spring Festival)", "2014-02-02": "Chinese New Year (Spring Festival)", - "2014-02-03": "Chinese New Year (Spring Festival) (Observed)", - "2014-02-04": "Chinese New Year (Spring Festival) (Observed)", + "2014-02-03": "Chinese New Year (Spring Festival) (observed)", + "2014-02-04": "Chinese New Year (Spring Festival) (observed)", "2014-02-05": "Day off (substituted from 01/26/2014)", "2014-02-06": "Day off (substituted from 02/08/2014)", "2014-03-08": "International Women's Day", "2014-04-05": "Tomb-Sweeping Day", - "2014-04-07": "Tomb-Sweeping Day (Observed)", + "2014-04-07": "Tomb-Sweeping Day (observed)", "2014-05-01": "Labor Day", "2014-05-02": "Day off (substituted from 05/04/2014)", "2014-05-04": "Youth Day", @@ -907,16 +907,16 @@ "2015-02-19": "Chinese New Year (Spring Festival)", "2015-02-20": "Chinese New Year (Spring Festival)", "2015-02-21": "Chinese New Year (Spring Festival)", - "2015-02-23": "Chinese New Year (Spring Festival) (Observed)", + "2015-02-23": "Chinese New Year (Spring Festival) (observed)", "2015-02-24": "Day off (substituted from 02/28/2015)", "2015-03-08": "International Women's Day", "2015-04-05": "Tomb-Sweeping Day", - "2015-04-06": "Tomb-Sweeping Day (Observed)", + "2015-04-06": "Tomb-Sweeping Day (observed)", "2015-05-01": "Labor Day", "2015-05-04": "Youth Day", "2015-06-01": "Children's Day", "2015-06-20": "Dragon Boat Festival", - "2015-06-22": "Dragon Boat Festival (Observed)", + "2015-06-22": "Dragon Boat Festival (observed)", "2015-08-01": "Army Day", "2015-09-03": "70th Anniversary of the Victory of the Chinese People\u2019s War of Resistance against Japanese Aggression and the World Anti-Fascist War", "2015-09-04": "Day off (substituted from 09/06/2015)", @@ -924,8 +924,8 @@ "2015-10-01": "National Day", "2015-10-02": "National Day", "2015-10-03": "National Day", - "2015-10-05": "National Day (Observed)", - "2015-10-06": "Mid-Autumn Festival (Observed)", + "2015-10-05": "National Day (observed)", + "2015-10-06": "Mid-Autumn Festival (observed)", "2015-10-07": "Day off (substituted from 10/10/2015)", "2016-01-01": "New Year's Day", "2016-02-08": "Chinese New Year (Spring Festival)", @@ -936,7 +936,7 @@ "2016-03-08": "International Women's Day", "2016-04-04": "Tomb-Sweeping Day", "2016-05-01": "Labor Day", - "2016-05-02": "Labor Day (Observed)", + "2016-05-02": "Labor Day (observed)", "2016-05-04": "Youth Day", "2016-06-01": "Children's Day", "2016-06-09": "Dragon Boat Festival", @@ -947,18 +947,18 @@ "2016-10-01": "National Day", "2016-10-02": "National Day", "2016-10-03": "National Day", - "2016-10-04": "National Day (Observed)", - "2016-10-05": "National Day (Observed)", + "2016-10-04": "National Day (observed)", + "2016-10-05": "National Day (observed)", "2016-10-06": "Day off (substituted from 10/08/2016)", "2016-10-07": "Day off (substituted from 10/09/2016)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-27": "Day off (substituted from 01/22/2017)", "2017-01-28": "Chinese New Year (Spring Festival)", "2017-01-29": "Chinese New Year (Spring Festival)", "2017-01-30": "Chinese New Year (Spring Festival)", - "2017-01-31": "Chinese New Year (Spring Festival) (Observed)", - "2017-02-01": "Chinese New Year (Spring Festival) (Observed)", + "2017-01-31": "Chinese New Year (Spring Festival) (observed)", + "2017-02-01": "Chinese New Year (Spring Festival) (observed)", "2017-02-02": "Day off (substituted from 02/04/2017)", "2017-03-08": "International Women's Day", "2017-04-03": "Day off (substituted from 04/01/2017)", @@ -973,15 +973,15 @@ "2017-10-02": "National Day", "2017-10-03": "National Day", "2017-10-04": "Mid-Autumn Festival", - "2017-10-05": "National Day (Observed)", + "2017-10-05": "National Day (observed)", "2017-10-06": "Day off (substituted from 09/30/2017)", "2018-01-01": "New Year's Day", "2018-02-15": "Day off (substituted from 02/11/2018)", "2018-02-16": "Chinese New Year (Spring Festival)", "2018-02-17": "Chinese New Year (Spring Festival)", "2018-02-18": "Chinese New Year (Spring Festival)", - "2018-02-19": "Chinese New Year (Spring Festival) (Observed)", - "2018-02-20": "Chinese New Year (Spring Festival) (Observed)", + "2018-02-19": "Chinese New Year (Spring Festival) (observed)", + "2018-02-20": "Chinese New Year (Spring Festival) (observed)", "2018-02-21": "Day off (substituted from 02/24/2018)", "2018-03-08": "International Women's Day", "2018-04-05": "Tomb-Sweeping Day", @@ -1023,12 +1023,12 @@ "2020-01-25": "Chinese New Year (Spring Festival)", "2020-01-26": "Chinese New Year (Spring Festival)", "2020-01-27": "Chinese New Year (Spring Festival)", - "2020-01-28": "Chinese New Year (Spring Festival) (Observed)", - "2020-01-29": "Chinese New Year (Spring Festival) (Observed)", + "2020-01-28": "Chinese New Year (Spring Festival) (observed)", + "2020-01-29": "Chinese New Year (Spring Festival) (observed)", "2020-01-30": "Day off (substituted from 02/01/2020)", "2020-03-08": "International Women's Day", "2020-04-04": "Tomb-Sweeping Day", - "2020-04-06": "Tomb-Sweeping Day (Observed)", + "2020-04-06": "Tomb-Sweeping Day (observed)", "2020-05-01": "Labor Day", "2020-05-04": "Day off (substituted from 04/26/2020); Youth Day", "2020-05-05": "Day off (substituted from 05/09/2020)", @@ -1039,8 +1039,8 @@ "2020-10-01": "Mid-Autumn Festival; National Day", "2020-10-02": "National Day", "2020-10-03": "National Day", - "2020-10-05": "National Day (Observed)", - "2020-10-06": "Mid-Autumn Festival (Observed)", + "2020-10-05": "National Day (observed)", + "2020-10-06": "Mid-Autumn Festival (observed)", "2020-10-07": "Day off (substituted from 09/27/2020)", "2020-10-08": "Day off (substituted from 10/10/2020)", "2021-01-01": "New Year's Day", @@ -1048,14 +1048,14 @@ "2021-02-12": "Chinese New Year (Spring Festival)", "2021-02-13": "Chinese New Year (Spring Festival)", "2021-02-14": "Chinese New Year (Spring Festival)", - "2021-02-15": "Chinese New Year (Spring Festival) (Observed)", - "2021-02-16": "Chinese New Year (Spring Festival) (Observed)", + "2021-02-15": "Chinese New Year (Spring Festival) (observed)", + "2021-02-16": "Chinese New Year (Spring Festival) (observed)", "2021-02-17": "Day off (substituted from 02/20/2021)", "2021-03-08": "International Women's Day", "2021-04-04": "Tomb-Sweeping Day", - "2021-04-05": "Tomb-Sweeping Day (Observed)", + "2021-04-05": "Tomb-Sweeping Day (observed)", "2021-05-01": "Labor Day", - "2021-05-03": "Labor Day (Observed)", + "2021-05-03": "Labor Day (observed)", "2021-05-04": "Day off (substituted from 04/25/2021); Youth Day", "2021-05-05": "Day off (substituted from 05/08/2021)", "2021-06-01": "Children's Day", @@ -1066,12 +1066,12 @@ "2021-10-01": "National Day", "2021-10-02": "National Day", "2021-10-03": "National Day", - "2021-10-04": "National Day (Observed)", - "2021-10-05": "National Day (Observed)", + "2021-10-04": "National Day (observed)", + "2021-10-05": "National Day (observed)", "2021-10-06": "Day off (substituted from 09/26/2021)", "2021-10-07": "Day off (substituted from 10/09/2021)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-31": "Day off (substituted from 01/29/2022)", "2022-02-01": "Chinese New Year (Spring Festival)", "2022-02-02": "Chinese New Year (Spring Festival)", @@ -1081,27 +1081,27 @@ "2022-04-04": "Day off (substituted from 04/02/2022)", "2022-04-05": "Tomb-Sweeping Day", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-05-03": "Day off (substituted from 04/24/2022)", "2022-05-04": "Day off (substituted from 05/07/2022); Youth Day", "2022-06-01": "Children's Day", "2022-06-03": "Dragon Boat Festival", "2022-08-01": "Army Day", "2022-09-10": "Mid-Autumn Festival", - "2022-09-12": "Mid-Autumn Festival (Observed)", + "2022-09-12": "Mid-Autumn Festival (observed)", "2022-10-01": "National Day", "2022-10-02": "National Day", "2022-10-03": "National Day", - "2022-10-04": "National Day (Observed)", - "2022-10-05": "National Day (Observed)", + "2022-10-04": "National Day (observed)", + "2022-10-05": "National Day (observed)", "2022-10-06": "Day off (substituted from 10/08/2022)", "2022-10-07": "Day off (substituted from 10/09/2022)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Chinese New Year (Spring Festival)", "2023-01-23": "Chinese New Year (Spring Festival)", "2023-01-24": "Chinese New Year (Spring Festival)", - "2023-01-25": "Chinese New Year (Spring Festival) (Observed)", + "2023-01-25": "Chinese New Year (Spring Festival) (observed)", "2023-01-26": "Day off (substituted from 01/28/2023)", "2023-01-27": "Day off (substituted from 01/29/2023)", "2023-03-08": "International Women's Day", @@ -1118,15 +1118,15 @@ "2023-10-01": "National Day", "2023-10-02": "National Day", "2023-10-03": "National Day", - "2023-10-04": "National Day (Observed)", + "2023-10-04": "National Day (observed)", "2023-10-05": "Day off (substituted from 10/07/2023)", "2023-10-06": "Day off (substituted from 10/08/2023)", "2024-01-01": "New Year's Day", "2024-02-10": "Chinese New Year (Spring Festival)", "2024-02-11": "Chinese New Year (Spring Festival)", "2024-02-12": "Chinese New Year (Spring Festival)", - "2024-02-13": "Chinese New Year (Spring Festival) (Observed)", - "2024-02-14": "Chinese New Year (Spring Festival) (Observed)", + "2024-02-13": "Chinese New Year (Spring Festival) (observed)", + "2024-02-14": "Chinese New Year (Spring Festival) (observed)", "2024-02-15": "Day off (substituted from 02/04/2024)", "2024-02-16": "Day off (substituted from 02/18/2024)", "2024-03-08": "International Women's Day", @@ -1156,7 +1156,7 @@ "2025-05-04": "Youth Day", "2025-05-31": "Dragon Boat Festival", "2025-06-01": "Children's Day", - "2025-06-02": "Dragon Boat Festival (Observed)", + "2025-06-02": "Dragon Boat Festival (observed)", "2025-08-01": "Army Day", "2025-10-01": "National Day", "2025-10-02": "National Day", @@ -1168,7 +1168,7 @@ "2026-02-19": "Chinese New Year (Spring Festival)", "2026-03-08": "International Women's Day", "2026-04-05": "Tomb-Sweeping Day", - "2026-04-06": "Tomb-Sweeping Day (Observed)", + "2026-04-06": "Tomb-Sweeping Day (observed)", "2026-05-01": "Labor Day", "2026-05-04": "Youth Day", "2026-06-01": "Children's Day", @@ -1178,17 +1178,17 @@ "2026-10-01": "National Day", "2026-10-02": "National Day", "2026-10-03": "National Day", - "2026-10-05": "National Day (Observed)", + "2026-10-05": "National Day (observed)", "2027-01-01": "New Year's Day", "2027-02-06": "Chinese New Year (Spring Festival)", "2027-02-07": "Chinese New Year (Spring Festival)", "2027-02-08": "Chinese New Year (Spring Festival)", - "2027-02-09": "Chinese New Year (Spring Festival) (Observed)", - "2027-02-10": "Chinese New Year (Spring Festival) (Observed)", + "2027-02-09": "Chinese New Year (Spring Festival) (observed)", + "2027-02-10": "Chinese New Year (Spring Festival) (observed)", "2027-03-08": "International Women's Day", "2027-04-05": "Tomb-Sweeping Day", "2027-05-01": "Labor Day", - "2027-05-03": "Labor Day (Observed)", + "2027-05-03": "Labor Day (observed)", "2027-05-04": "Youth Day", "2027-06-01": "Children's Day", "2027-06-09": "Dragon Boat Festival", @@ -1197,10 +1197,10 @@ "2027-10-01": "National Day", "2027-10-02": "National Day", "2027-10-03": "National Day", - "2027-10-04": "National Day (Observed)", - "2027-10-05": "National Day (Observed)", + "2027-10-04": "National Day (observed)", + "2027-10-05": "National Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-26": "Chinese New Year (Spring Festival)", "2028-01-27": "Chinese New Year (Spring Festival)", "2028-01-28": "Chinese New Year (Spring Festival)", @@ -1209,13 +1209,13 @@ "2028-05-01": "Labor Day", "2028-05-04": "Youth Day", "2028-05-28": "Dragon Boat Festival", - "2028-05-29": "Dragon Boat Festival (Observed)", + "2028-05-29": "Dragon Boat Festival (observed)", "2028-06-01": "Children's Day", "2028-08-01": "Army Day", "2028-10-01": "National Day", "2028-10-02": "National Day", "2028-10-03": "Mid-Autumn Festival; National Day", - "2028-10-04": "National Day (Observed)", + "2028-10-04": "National Day (observed)", "2029-01-01": "New Year's Day", "2029-02-13": "Chinese New Year (Spring Festival)", "2029-02-14": "Chinese New Year (Spring Festival)", @@ -1226,10 +1226,10 @@ "2029-05-04": "Youth Day", "2029-06-01": "Children's Day", "2029-06-16": "Dragon Boat Festival", - "2029-06-18": "Dragon Boat Festival (Observed)", + "2029-06-18": "Dragon Boat Festival (observed)", "2029-08-01": "Army Day", "2029-09-22": "Mid-Autumn Festival", - "2029-09-24": "Mid-Autumn Festival (Observed)", + "2029-09-24": "Mid-Autumn Festival (observed)", "2029-10-01": "National Day", "2029-10-02": "National Day", "2029-10-03": "National Day", @@ -1237,7 +1237,7 @@ "2030-02-03": "Chinese New Year (Spring Festival)", "2030-02-04": "Chinese New Year (Spring Festival)", "2030-02-05": "Chinese New Year (Spring Festival)", - "2030-02-06": "Chinese New Year (Spring Festival) (Observed)", + "2030-02-06": "Chinese New Year (Spring Festival) (observed)", "2030-03-08": "International Women's Day", "2030-04-05": "Tomb-Sweeping Day", "2030-05-01": "Labor Day", @@ -1253,10 +1253,10 @@ "2031-01-23": "Chinese New Year (Spring Festival)", "2031-01-24": "Chinese New Year (Spring Festival)", "2031-01-25": "Chinese New Year (Spring Festival)", - "2031-01-27": "Chinese New Year (Spring Festival) (Observed)", + "2031-01-27": "Chinese New Year (Spring Festival) (observed)", "2031-03-08": "International Women's Day", "2031-04-05": "Tomb-Sweeping Day", - "2031-04-07": "Tomb-Sweeping Day (Observed)", + "2031-04-07": "Tomb-Sweeping Day (observed)", "2031-05-01": "Labor Day", "2031-05-04": "Youth Day", "2031-06-01": "Children's Day", @@ -1271,30 +1271,30 @@ "2032-02-13": "Chinese New Year (Spring Festival)", "2032-03-08": "International Women's Day", "2032-04-04": "Tomb-Sweeping Day", - "2032-04-05": "Tomb-Sweeping Day (Observed)", + "2032-04-05": "Tomb-Sweeping Day (observed)", "2032-05-01": "Labor Day", - "2032-05-03": "Labor Day (Observed)", + "2032-05-03": "Labor Day (observed)", "2032-05-04": "Youth Day", "2032-06-01": "Children's Day", "2032-06-12": "Dragon Boat Festival", - "2032-06-14": "Dragon Boat Festival (Observed)", + "2032-06-14": "Dragon Boat Festival (observed)", "2032-08-01": "Army Day", "2032-09-19": "Mid-Autumn Festival", - "2032-09-20": "Mid-Autumn Festival (Observed)", + "2032-09-20": "Mid-Autumn Festival (observed)", "2032-10-01": "National Day", "2032-10-02": "National Day", "2032-10-03": "National Day", - "2032-10-04": "National Day (Observed)", - "2032-10-05": "National Day (Observed)", + "2032-10-04": "National Day (observed)", + "2032-10-05": "National Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-31": "Chinese New Year (Spring Festival)", "2033-02-01": "Chinese New Year (Spring Festival)", "2033-02-02": "Chinese New Year (Spring Festival)", "2033-03-08": "International Women's Day", "2033-04-04": "Tomb-Sweeping Day", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-05-04": "Youth Day", "2033-06-01": "Children's Day; Dragon Boat Festival", "2033-08-01": "Army Day", @@ -1302,14 +1302,14 @@ "2033-10-01": "National Day", "2033-10-02": "National Day", "2033-10-03": "National Day", - "2033-10-04": "National Day (Observed)", - "2033-10-05": "National Day (Observed)", + "2033-10-04": "National Day (observed)", + "2033-10-05": "National Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-19": "Chinese New Year (Spring Festival)", "2034-02-20": "Chinese New Year (Spring Festival)", "2034-02-21": "Chinese New Year (Spring Festival)", - "2034-02-22": "Chinese New Year (Spring Festival) (Observed)", + "2034-02-22": "Chinese New Year (Spring Festival) (observed)", "2034-03-08": "International Women's Day", "2034-04-05": "Tomb-Sweeping Day", "2034-05-01": "Labor Day", @@ -1321,22 +1321,22 @@ "2034-10-01": "National Day", "2034-10-02": "National Day", "2034-10-03": "National Day", - "2034-10-04": "National Day (Observed)", + "2034-10-04": "National Day (observed)", "2035-01-01": "New Year's Day", "2035-02-08": "Chinese New Year (Spring Festival)", "2035-02-09": "Chinese New Year (Spring Festival)", "2035-02-10": "Chinese New Year (Spring Festival)", - "2035-02-12": "Chinese New Year (Spring Festival) (Observed)", + "2035-02-12": "Chinese New Year (Spring Festival) (observed)", "2035-03-08": "International Women's Day", "2035-04-05": "Tomb-Sweeping Day", "2035-05-01": "Labor Day", "2035-05-04": "Youth Day", "2035-06-01": "Children's Day", "2035-06-10": "Dragon Boat Festival", - "2035-06-11": "Dragon Boat Festival (Observed)", + "2035-06-11": "Dragon Boat Festival (observed)", "2035-08-01": "Army Day", "2035-09-16": "Mid-Autumn Festival", - "2035-09-17": "Mid-Autumn Festival (Observed)", + "2035-09-17": "Mid-Autumn Festival (observed)", "2035-10-01": "National Day", "2035-10-02": "National Day", "2035-10-03": "National Day", @@ -1355,15 +1355,15 @@ "2036-10-02": "National Day", "2036-10-03": "National Day", "2036-10-04": "Mid-Autumn Festival", - "2036-10-06": "Mid-Autumn Festival (Observed)", + "2036-10-06": "Mid-Autumn Festival (observed)", "2037-01-01": "New Year's Day", "2037-02-15": "Chinese New Year (Spring Festival)", "2037-02-16": "Chinese New Year (Spring Festival)", "2037-02-17": "Chinese New Year (Spring Festival)", - "2037-02-18": "Chinese New Year (Spring Festival) (Observed)", + "2037-02-18": "Chinese New Year (Spring Festival) (observed)", "2037-03-08": "International Women's Day", "2037-04-04": "Tomb-Sweeping Day", - "2037-04-06": "Tomb-Sweeping Day (Observed)", + "2037-04-06": "Tomb-Sweeping Day (observed)", "2037-05-01": "Labor Day", "2037-05-04": "Youth Day", "2037-06-01": "Children's Day", @@ -1373,16 +1373,16 @@ "2037-10-01": "National Day", "2037-10-02": "National Day", "2037-10-03": "National Day", - "2037-10-05": "National Day (Observed)", + "2037-10-05": "National Day (observed)", "2038-01-01": "New Year's Day", "2038-02-04": "Chinese New Year (Spring Festival)", "2038-02-05": "Chinese New Year (Spring Festival)", "2038-02-06": "Chinese New Year (Spring Festival)", - "2038-02-08": "Chinese New Year (Spring Festival) (Observed)", + "2038-02-08": "Chinese New Year (Spring Festival) (observed)", "2038-03-08": "International Women's Day", "2038-04-05": "Tomb-Sweeping Day", "2038-05-01": "Labor Day", - "2038-05-03": "Labor Day (Observed)", + "2038-05-03": "Labor Day (observed)", "2038-05-04": "Youth Day", "2038-06-01": "Children's Day", "2038-06-07": "Dragon Boat Festival", @@ -1391,17 +1391,17 @@ "2038-10-01": "National Day", "2038-10-02": "National Day", "2038-10-03": "National Day", - "2038-10-04": "National Day (Observed)", - "2038-10-05": "National Day (Observed)", + "2038-10-04": "National Day (observed)", + "2038-10-05": "National Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-24": "Chinese New Year (Spring Festival)", "2039-01-25": "Chinese New Year (Spring Festival)", "2039-01-26": "Chinese New Year (Spring Festival)", "2039-03-08": "International Women's Day", "2039-04-05": "Tomb-Sweeping Day", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-05-04": "Youth Day", "2039-05-27": "Dragon Boat Festival", "2039-06-01": "Children's Day", @@ -1409,15 +1409,15 @@ "2039-10-01": "National Day", "2039-10-02": "Mid-Autumn Festival; National Day", "2039-10-03": "National Day", - "2039-10-04": "National Day (Observed)", - "2039-10-05": "Mid-Autumn Festival (Observed)", - "2039-10-06": "National Day (Observed)", + "2039-10-04": "National Day (observed)", + "2039-10-05": "Mid-Autumn Festival (observed)", + "2039-10-06": "National Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-12": "Chinese New Year (Spring Festival)", "2040-02-13": "Chinese New Year (Spring Festival)", "2040-02-14": "Chinese New Year (Spring Festival)", - "2040-02-15": "Chinese New Year (Spring Festival) (Observed)", + "2040-02-15": "Chinese New Year (Spring Festival) (observed)", "2040-03-08": "International Women's Day", "2040-04-04": "Tomb-Sweeping Day", "2040-05-01": "Labor Day", @@ -1433,8 +1433,8 @@ "2041-02-01": "Chinese New Year (Spring Festival)", "2041-02-02": "Chinese New Year (Spring Festival)", "2041-02-03": "Chinese New Year (Spring Festival)", - "2041-02-04": "Chinese New Year (Spring Festival) (Observed)", - "2041-02-05": "Chinese New Year (Spring Festival) (Observed)", + "2041-02-04": "Chinese New Year (Spring Festival) (observed)", + "2041-02-05": "Chinese New Year (Spring Festival) (observed)", "2041-03-08": "International Women's Day", "2041-04-04": "Tomb-Sweeping Day", "2041-05-01": "Labor Day", @@ -1452,15 +1452,15 @@ "2042-01-24": "Chinese New Year (Spring Festival)", "2042-03-08": "International Women's Day", "2042-04-05": "Tomb-Sweeping Day", - "2042-04-07": "Tomb-Sweeping Day (Observed)", + "2042-04-07": "Tomb-Sweeping Day (observed)", "2042-05-01": "Labor Day", "2042-05-04": "Youth Day", "2042-06-01": "Children's Day", "2042-06-22": "Dragon Boat Festival", - "2042-06-23": "Dragon Boat Festival (Observed)", + "2042-06-23": "Dragon Boat Festival (observed)", "2042-08-01": "Army Day", "2042-09-28": "Mid-Autumn Festival", - "2042-09-29": "Mid-Autumn Festival (Observed)", + "2042-09-29": "Mid-Autumn Festival (observed)", "2042-10-01": "National Day", "2042-10-02": "National Day", "2042-10-03": "National Day", @@ -1470,7 +1470,7 @@ "2043-02-12": "Chinese New Year (Spring Festival)", "2043-03-08": "International Women's Day", "2043-04-05": "Tomb-Sweeping Day", - "2043-04-06": "Tomb-Sweeping Day (Observed)", + "2043-04-06": "Tomb-Sweeping Day (observed)", "2043-05-01": "Labor Day", "2043-05-04": "Youth Day", "2043-06-01": "Children's Day", @@ -1480,17 +1480,17 @@ "2043-10-01": "National Day", "2043-10-02": "National Day", "2043-10-03": "National Day", - "2043-10-05": "National Day (Observed)", + "2043-10-05": "National Day (observed)", "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (Spring Festival)", "2044-01-31": "Chinese New Year (Spring Festival)", "2044-02-01": "Chinese New Year (Spring Festival)", - "2044-02-02": "Chinese New Year (Spring Festival) (Observed)", - "2044-02-03": "Chinese New Year (Spring Festival) (Observed)", + "2044-02-02": "Chinese New Year (Spring Festival) (observed)", + "2044-02-03": "Chinese New Year (Spring Festival) (observed)", "2044-03-08": "International Women's Day", "2044-04-04": "Tomb-Sweeping Day", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-05-04": "Youth Day", "2044-05-31": "Dragon Boat Festival", "2044-06-01": "Children's Day", @@ -1498,16 +1498,16 @@ "2044-10-01": "National Day", "2044-10-02": "National Day", "2044-10-03": "National Day", - "2044-10-04": "National Day (Observed)", + "2044-10-04": "National Day (observed)", "2044-10-05": "Mid-Autumn Festival", - "2044-10-06": "National Day (Observed)", + "2044-10-06": "National Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-17": "Chinese New Year (Spring Festival)", "2045-02-18": "Chinese New Year (Spring Festival)", "2045-02-19": "Chinese New Year (Spring Festival)", - "2045-02-20": "Chinese New Year (Spring Festival) (Observed)", - "2045-02-21": "Chinese New Year (Spring Festival) (Observed)", + "2045-02-20": "Chinese New Year (Spring Festival) (observed)", + "2045-02-21": "Chinese New Year (Spring Festival) (observed)", "2045-03-08": "International Women's Day", "2045-04-04": "Tomb-Sweeping Day", "2045-05-01": "Labor Day", @@ -1519,7 +1519,7 @@ "2045-10-01": "National Day", "2045-10-02": "National Day", "2045-10-03": "National Day", - "2045-10-04": "National Day (Observed)", + "2045-10-04": "National Day (observed)", "2046-01-01": "New Year's Day", "2046-02-06": "Chinese New Year (Spring Festival)", "2046-02-07": "Chinese New Year (Spring Festival)", @@ -1532,7 +1532,7 @@ "2046-06-08": "Dragon Boat Festival", "2046-08-01": "Army Day", "2046-09-15": "Mid-Autumn Festival", - "2046-09-17": "Mid-Autumn Festival (Observed)", + "2046-09-17": "Mid-Autumn Festival (observed)", "2046-10-01": "National Day", "2046-10-02": "National Day", "2046-10-03": "National Day", @@ -1540,8 +1540,8 @@ "2047-01-26": "Chinese New Year (Spring Festival)", "2047-01-27": "Chinese New Year (Spring Festival)", "2047-01-28": "Chinese New Year (Spring Festival)", - "2047-01-29": "Chinese New Year (Spring Festival) (Observed)", - "2047-01-30": "Chinese New Year (Spring Festival) (Observed)", + "2047-01-29": "Chinese New Year (Spring Festival) (observed)", + "2047-01-30": "Chinese New Year (Spring Festival) (observed)", "2047-03-08": "International Women's Day", "2047-04-05": "Tomb-Sweeping Day", "2047-05-01": "Labor Day", @@ -1557,11 +1557,11 @@ "2048-02-14": "Chinese New Year (Spring Festival)", "2048-02-15": "Chinese New Year (Spring Festival)", "2048-02-16": "Chinese New Year (Spring Festival)", - "2048-02-17": "Chinese New Year (Spring Festival) (Observed)", - "2048-02-18": "Chinese New Year (Spring Festival) (Observed)", + "2048-02-17": "Chinese New Year (Spring Festival) (observed)", + "2048-02-18": "Chinese New Year (Spring Festival) (observed)", "2048-03-08": "International Women's Day", "2048-04-04": "Tomb-Sweeping Day", - "2048-04-06": "Tomb-Sweeping Day (Observed)", + "2048-04-06": "Tomb-Sweeping Day (observed)", "2048-05-01": "Labor Day", "2048-05-04": "Youth Day", "2048-06-01": "Children's Day", @@ -1571,37 +1571,37 @@ "2048-10-01": "National Day", "2048-10-02": "National Day", "2048-10-03": "National Day", - "2048-10-05": "National Day (Observed)", + "2048-10-05": "National Day (observed)", "2049-01-01": "New Year's Day", "2049-02-02": "Chinese New Year (Spring Festival)", "2049-02-03": "Chinese New Year (Spring Festival)", "2049-02-04": "Chinese New Year (Spring Festival)", "2049-03-08": "International Women's Day", "2049-04-04": "Tomb-Sweeping Day", - "2049-04-05": "Tomb-Sweeping Day (Observed)", + "2049-04-05": "Tomb-Sweeping Day (observed)", "2049-05-01": "Labor Day", - "2049-05-03": "Labor Day (Observed)", + "2049-05-03": "Labor Day (observed)", "2049-05-04": "Youth Day", "2049-06-01": "Children's Day", "2049-06-04": "Dragon Boat Festival", "2049-08-01": "Army Day", "2049-09-11": "Mid-Autumn Festival", - "2049-09-13": "Mid-Autumn Festival (Observed)", + "2049-09-13": "Mid-Autumn Festival (observed)", "2049-10-01": "National Day", "2049-10-02": "National Day", "2049-10-03": "National Day", - "2049-10-04": "National Day (Observed)", - "2049-10-05": "National Day (Observed)", + "2049-10-04": "National Day (observed)", + "2049-10-05": "National Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-23": "Chinese New Year (Spring Festival)", "2050-01-24": "Chinese New Year (Spring Festival)", "2050-01-25": "Chinese New Year (Spring Festival)", - "2050-01-26": "Chinese New Year (Spring Festival) (Observed)", + "2050-01-26": "Chinese New Year (Spring Festival) (observed)", "2050-03-08": "International Women's Day", "2050-04-05": "Tomb-Sweeping Day", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-05-04": "Youth Day", "2050-06-01": "Children's Day", "2050-06-23": "Dragon Boat Festival", @@ -1610,6 +1610,6 @@ "2050-10-01": "National Day", "2050-10-02": "National Day", "2050-10-03": "National Day", - "2050-10-04": "National Day (Observed)", - "2050-10-05": "National Day (Observed)" + "2050-10-04": "National Day (observed)", + "2050-10-05": "National Day (observed)" } diff --git a/snapshots/countries/CO_COMMON.json b/snapshots/countries/CO_COMMON.json index 03e304595..f4464c9b5 100644 --- a/snapshots/countries/CO_COMMON.json +++ b/snapshots/countries/CO_COMMON.json @@ -568,1197 +568,1197 @@ "1983-12-08": "Immaculate Conception", "1983-12-25": "Christmas", "1984-01-01": "New Year's Day", - "1984-01-09": "Epiphany (Observed)", + "1984-01-09": "Epiphany (observed)", "1984-03-19": "Saint Joseph's Day", "1984-04-19": "Maundy Thursday", "1984-04-20": "Good Friday", "1984-05-01": "Labour Day", - "1984-06-04": "Ascension of Jesus (Observed)", - "1984-06-25": "Corpus Christi (Observed)", - "1984-07-02": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "1984-06-04": "Ascension of Jesus (observed)", + "1984-06-25": "Corpus Christi (observed)", + "1984-07-02": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "1984-07-20": "Independence Day", "1984-08-07": "Battle of Boyac\u00e1", - "1984-08-20": "Assumption of Mary (Observed)", - "1984-10-15": "Columbus Day (Observed)", - "1984-11-05": "All Saints' Day (Observed)", - "1984-11-12": "Independence of Cartagena (Observed)", + "1984-08-20": "Assumption of Mary (observed)", + "1984-10-15": "Columbus Day (observed)", + "1984-11-05": "All Saints' Day (observed)", + "1984-11-12": "Independence of Cartagena (observed)", "1984-12-08": "Immaculate Conception", "1984-12-25": "Christmas", "1985-01-01": "New Year's Day", - "1985-01-07": "Epiphany (Observed)", - "1985-03-25": "Saint Joseph's Day (Observed)", + "1985-01-07": "Epiphany (observed)", + "1985-03-25": "Saint Joseph's Day (observed)", "1985-04-04": "Maundy Thursday", "1985-04-05": "Good Friday", "1985-05-01": "Labour Day", - "1985-05-20": "Ascension of Jesus (Observed)", - "1985-06-10": "Corpus Christi (Observed)", - "1985-06-17": "Sacred Heart (Observed)", - "1985-07-01": "Saint Peter and Saint Paul (Observed)", + "1985-05-20": "Ascension of Jesus (observed)", + "1985-06-10": "Corpus Christi (observed)", + "1985-06-17": "Sacred Heart (observed)", + "1985-07-01": "Saint Peter and Saint Paul (observed)", "1985-07-20": "Independence Day", "1985-08-07": "Battle of Boyac\u00e1", - "1985-08-19": "Assumption of Mary (Observed)", - "1985-10-14": "Columbus Day (Observed)", - "1985-11-04": "All Saints' Day (Observed)", + "1985-08-19": "Assumption of Mary (observed)", + "1985-10-14": "Columbus Day (observed)", + "1985-11-04": "All Saints' Day (observed)", "1985-11-11": "Independence of Cartagena", "1985-12-08": "Immaculate Conception", "1985-12-25": "Christmas", "1986-01-01": "New Year's Day", "1986-01-06": "Epiphany", - "1986-03-24": "Saint Joseph's Day (Observed)", + "1986-03-24": "Saint Joseph's Day (observed)", "1986-03-27": "Maundy Thursday", "1986-03-28": "Good Friday", "1986-05-01": "Labour Day", - "1986-05-12": "Ascension of Jesus (Observed)", - "1986-06-02": "Corpus Christi (Observed)", - "1986-06-09": "Sacred Heart (Observed)", - "1986-06-30": "Saint Peter and Saint Paul (Observed)", + "1986-05-12": "Ascension of Jesus (observed)", + "1986-06-02": "Corpus Christi (observed)", + "1986-06-09": "Sacred Heart (observed)", + "1986-06-30": "Saint Peter and Saint Paul (observed)", "1986-07-20": "Independence Day", "1986-08-07": "Battle of Boyac\u00e1", - "1986-08-18": "Assumption of Mary (Observed)", - "1986-10-13": "Columbus Day (Observed)", - "1986-11-03": "All Saints' Day (Observed)", - "1986-11-17": "Independence of Cartagena (Observed)", + "1986-08-18": "Assumption of Mary (observed)", + "1986-10-13": "Columbus Day (observed)", + "1986-11-03": "All Saints' Day (observed)", + "1986-11-17": "Independence of Cartagena (observed)", "1986-12-08": "Immaculate Conception", "1986-12-25": "Christmas", "1987-01-01": "New Year's Day", - "1987-01-12": "Epiphany (Observed)", - "1987-03-23": "Saint Joseph's Day (Observed)", + "1987-01-12": "Epiphany (observed)", + "1987-03-23": "Saint Joseph's Day (observed)", "1987-04-16": "Maundy Thursday", "1987-04-17": "Good Friday", "1987-05-01": "Labour Day", - "1987-06-01": "Ascension of Jesus (Observed)", - "1987-06-22": "Corpus Christi (Observed)", - "1987-06-29": "Sacred Heart (Observed); Saint Peter and Saint Paul", + "1987-06-01": "Ascension of Jesus (observed)", + "1987-06-22": "Corpus Christi (observed)", + "1987-06-29": "Sacred Heart (observed); Saint Peter and Saint Paul", "1987-07-20": "Independence Day", "1987-08-07": "Battle of Boyac\u00e1", - "1987-08-17": "Assumption of Mary (Observed)", + "1987-08-17": "Assumption of Mary (observed)", "1987-10-12": "Columbus Day", - "1987-11-02": "All Saints' Day (Observed)", - "1987-11-16": "Independence of Cartagena (Observed)", + "1987-11-02": "All Saints' Day (observed)", + "1987-11-16": "Independence of Cartagena (observed)", "1987-12-08": "Immaculate Conception", "1987-12-25": "Christmas", "1988-01-01": "New Year's Day", - "1988-01-11": "Epiphany (Observed)", - "1988-03-21": "Saint Joseph's Day (Observed)", + "1988-01-11": "Epiphany (observed)", + "1988-03-21": "Saint Joseph's Day (observed)", "1988-03-31": "Maundy Thursday", "1988-04-01": "Good Friday", "1988-05-01": "Labour Day", - "1988-05-16": "Ascension of Jesus (Observed)", - "1988-06-06": "Corpus Christi (Observed)", - "1988-06-13": "Sacred Heart (Observed)", - "1988-07-04": "Saint Peter and Saint Paul (Observed)", + "1988-05-16": "Ascension of Jesus (observed)", + "1988-06-06": "Corpus Christi (observed)", + "1988-06-13": "Sacred Heart (observed)", + "1988-07-04": "Saint Peter and Saint Paul (observed)", "1988-07-20": "Independence Day", "1988-08-07": "Battle of Boyac\u00e1", "1988-08-15": "Assumption of Mary", - "1988-10-17": "Columbus Day (Observed)", - "1988-11-07": "All Saints' Day (Observed)", - "1988-11-14": "Independence of Cartagena (Observed)", + "1988-10-17": "Columbus Day (observed)", + "1988-11-07": "All Saints' Day (observed)", + "1988-11-14": "Independence of Cartagena (observed)", "1988-12-08": "Immaculate Conception", "1988-12-25": "Christmas", "1989-01-01": "New Year's Day", - "1989-01-09": "Epiphany (Observed)", - "1989-03-20": "Saint Joseph's Day (Observed)", + "1989-01-09": "Epiphany (observed)", + "1989-03-20": "Saint Joseph's Day (observed)", "1989-03-23": "Maundy Thursday", "1989-03-24": "Good Friday", "1989-05-01": "Labour Day", - "1989-05-08": "Ascension of Jesus (Observed)", - "1989-05-29": "Corpus Christi (Observed)", - "1989-06-05": "Sacred Heart (Observed)", - "1989-07-03": "Saint Peter and Saint Paul (Observed)", + "1989-05-08": "Ascension of Jesus (observed)", + "1989-05-29": "Corpus Christi (observed)", + "1989-06-05": "Sacred Heart (observed)", + "1989-07-03": "Saint Peter and Saint Paul (observed)", "1989-07-20": "Independence Day", "1989-08-07": "Battle of Boyac\u00e1", - "1989-08-21": "Assumption of Mary (Observed)", - "1989-10-16": "Columbus Day (Observed)", - "1989-11-06": "All Saints' Day (Observed)", - "1989-11-13": "Independence of Cartagena (Observed)", + "1989-08-21": "Assumption of Mary (observed)", + "1989-10-16": "Columbus Day (observed)", + "1989-11-06": "All Saints' Day (observed)", + "1989-11-13": "Independence of Cartagena (observed)", "1989-12-08": "Immaculate Conception", "1989-12-25": "Christmas", "1990-01-01": "New Year's Day", - "1990-01-08": "Epiphany (Observed)", + "1990-01-08": "Epiphany (observed)", "1990-03-19": "Saint Joseph's Day", "1990-04-12": "Maundy Thursday", "1990-04-13": "Good Friday", "1990-05-01": "Labour Day", - "1990-05-28": "Ascension of Jesus (Observed)", - "1990-06-18": "Corpus Christi (Observed)", - "1990-06-25": "Sacred Heart (Observed)", - "1990-07-02": "Saint Peter and Saint Paul (Observed)", + "1990-05-28": "Ascension of Jesus (observed)", + "1990-06-18": "Corpus Christi (observed)", + "1990-06-25": "Sacred Heart (observed)", + "1990-07-02": "Saint Peter and Saint Paul (observed)", "1990-07-20": "Independence Day", "1990-08-07": "Battle of Boyac\u00e1", - "1990-08-20": "Assumption of Mary (Observed)", - "1990-10-15": "Columbus Day (Observed)", - "1990-11-05": "All Saints' Day (Observed)", - "1990-11-12": "Independence of Cartagena (Observed)", + "1990-08-20": "Assumption of Mary (observed)", + "1990-10-15": "Columbus Day (observed)", + "1990-11-05": "All Saints' Day (observed)", + "1990-11-12": "Independence of Cartagena (observed)", "1990-12-08": "Immaculate Conception", "1990-12-25": "Christmas", "1991-01-01": "New Year's Day", - "1991-01-07": "Epiphany (Observed)", - "1991-03-25": "Saint Joseph's Day (Observed)", + "1991-01-07": "Epiphany (observed)", + "1991-03-25": "Saint Joseph's Day (observed)", "1991-03-28": "Maundy Thursday", "1991-03-29": "Good Friday", "1991-05-01": "Labour Day", - "1991-05-13": "Ascension of Jesus (Observed)", - "1991-06-03": "Corpus Christi (Observed)", - "1991-06-10": "Sacred Heart (Observed)", - "1991-07-01": "Saint Peter and Saint Paul (Observed)", + "1991-05-13": "Ascension of Jesus (observed)", + "1991-06-03": "Corpus Christi (observed)", + "1991-06-10": "Sacred Heart (observed)", + "1991-07-01": "Saint Peter and Saint Paul (observed)", "1991-07-20": "Independence Day", "1991-08-07": "Battle of Boyac\u00e1", - "1991-08-19": "Assumption of Mary (Observed)", - "1991-10-14": "Columbus Day (Observed)", - "1991-11-04": "All Saints' Day (Observed)", + "1991-08-19": "Assumption of Mary (observed)", + "1991-10-14": "Columbus Day (observed)", + "1991-11-04": "All Saints' Day (observed)", "1991-11-11": "Independence of Cartagena", "1991-12-08": "Immaculate Conception", "1991-12-25": "Christmas", "1992-01-01": "New Year's Day", "1992-01-06": "Epiphany", - "1992-03-23": "Saint Joseph's Day (Observed)", + "1992-03-23": "Saint Joseph's Day (observed)", "1992-04-16": "Maundy Thursday", "1992-04-17": "Good Friday", "1992-05-01": "Labour Day", - "1992-06-01": "Ascension of Jesus (Observed)", - "1992-06-22": "Corpus Christi (Observed)", - "1992-06-29": "Sacred Heart (Observed); Saint Peter and Saint Paul", + "1992-06-01": "Ascension of Jesus (observed)", + "1992-06-22": "Corpus Christi (observed)", + "1992-06-29": "Sacred Heart (observed); Saint Peter and Saint Paul", "1992-07-20": "Independence Day", "1992-08-07": "Battle of Boyac\u00e1", - "1992-08-17": "Assumption of Mary (Observed)", + "1992-08-17": "Assumption of Mary (observed)", "1992-10-12": "Columbus Day", - "1992-11-02": "All Saints' Day (Observed)", - "1992-11-16": "Independence of Cartagena (Observed)", + "1992-11-02": "All Saints' Day (observed)", + "1992-11-16": "Independence of Cartagena (observed)", "1992-12-08": "Immaculate Conception", "1992-12-25": "Christmas", "1993-01-01": "New Year's Day", - "1993-01-11": "Epiphany (Observed)", - "1993-03-22": "Saint Joseph's Day (Observed)", + "1993-01-11": "Epiphany (observed)", + "1993-03-22": "Saint Joseph's Day (observed)", "1993-04-08": "Maundy Thursday", "1993-04-09": "Good Friday", "1993-05-01": "Labour Day", - "1993-05-24": "Ascension of Jesus (Observed)", - "1993-06-14": "Corpus Christi (Observed)", - "1993-06-21": "Sacred Heart (Observed)", - "1993-07-05": "Saint Peter and Saint Paul (Observed)", + "1993-05-24": "Ascension of Jesus (observed)", + "1993-06-14": "Corpus Christi (observed)", + "1993-06-21": "Sacred Heart (observed)", + "1993-07-05": "Saint Peter and Saint Paul (observed)", "1993-07-20": "Independence Day", "1993-08-07": "Battle of Boyac\u00e1", - "1993-08-16": "Assumption of Mary (Observed)", - "1993-10-18": "Columbus Day (Observed)", + "1993-08-16": "Assumption of Mary (observed)", + "1993-10-18": "Columbus Day (observed)", "1993-11-01": "All Saints' Day", - "1993-11-15": "Independence of Cartagena (Observed)", + "1993-11-15": "Independence of Cartagena (observed)", "1993-12-08": "Immaculate Conception", "1993-12-25": "Christmas", "1994-01-01": "New Year's Day", - "1994-01-10": "Epiphany (Observed)", - "1994-03-21": "Saint Joseph's Day (Observed)", + "1994-01-10": "Epiphany (observed)", + "1994-03-21": "Saint Joseph's Day (observed)", "1994-03-31": "Maundy Thursday", "1994-04-01": "Good Friday", "1994-05-01": "Labour Day", - "1994-05-16": "Ascension of Jesus (Observed)", - "1994-06-06": "Corpus Christi (Observed)", - "1994-06-13": "Sacred Heart (Observed)", - "1994-07-04": "Saint Peter and Saint Paul (Observed)", + "1994-05-16": "Ascension of Jesus (observed)", + "1994-06-06": "Corpus Christi (observed)", + "1994-06-13": "Sacred Heart (observed)", + "1994-07-04": "Saint Peter and Saint Paul (observed)", "1994-07-20": "Independence Day", "1994-08-07": "Battle of Boyac\u00e1", "1994-08-15": "Assumption of Mary", - "1994-10-17": "Columbus Day (Observed)", - "1994-11-07": "All Saints' Day (Observed)", - "1994-11-14": "Independence of Cartagena (Observed)", + "1994-10-17": "Columbus Day (observed)", + "1994-11-07": "All Saints' Day (observed)", + "1994-11-14": "Independence of Cartagena (observed)", "1994-12-08": "Immaculate Conception", "1994-12-25": "Christmas", "1995-01-01": "New Year's Day", - "1995-01-09": "Epiphany (Observed)", - "1995-03-20": "Saint Joseph's Day (Observed)", + "1995-01-09": "Epiphany (observed)", + "1995-03-20": "Saint Joseph's Day (observed)", "1995-04-13": "Maundy Thursday", "1995-04-14": "Good Friday", "1995-05-01": "Labour Day", - "1995-05-29": "Ascension of Jesus (Observed)", - "1995-06-19": "Corpus Christi (Observed)", - "1995-06-26": "Sacred Heart (Observed)", - "1995-07-03": "Saint Peter and Saint Paul (Observed)", + "1995-05-29": "Ascension of Jesus (observed)", + "1995-06-19": "Corpus Christi (observed)", + "1995-06-26": "Sacred Heart (observed)", + "1995-07-03": "Saint Peter and Saint Paul (observed)", "1995-07-20": "Independence Day", "1995-08-07": "Battle of Boyac\u00e1", - "1995-08-21": "Assumption of Mary (Observed)", - "1995-10-16": "Columbus Day (Observed)", - "1995-11-06": "All Saints' Day (Observed)", - "1995-11-13": "Independence of Cartagena (Observed)", + "1995-08-21": "Assumption of Mary (observed)", + "1995-10-16": "Columbus Day (observed)", + "1995-11-06": "All Saints' Day (observed)", + "1995-11-13": "Independence of Cartagena (observed)", "1995-12-08": "Immaculate Conception", "1995-12-25": "Christmas", "1996-01-01": "New Year's Day", - "1996-01-08": "Epiphany (Observed)", - "1996-03-25": "Saint Joseph's Day (Observed)", + "1996-01-08": "Epiphany (observed)", + "1996-03-25": "Saint Joseph's Day (observed)", "1996-04-04": "Maundy Thursday", "1996-04-05": "Good Friday", "1996-05-01": "Labour Day", - "1996-05-20": "Ascension of Jesus (Observed)", - "1996-06-10": "Corpus Christi (Observed)", - "1996-06-17": "Sacred Heart (Observed)", - "1996-07-01": "Saint Peter and Saint Paul (Observed)", + "1996-05-20": "Ascension of Jesus (observed)", + "1996-06-10": "Corpus Christi (observed)", + "1996-06-17": "Sacred Heart (observed)", + "1996-07-01": "Saint Peter and Saint Paul (observed)", "1996-07-20": "Independence Day", "1996-08-07": "Battle of Boyac\u00e1", - "1996-08-19": "Assumption of Mary (Observed)", - "1996-10-14": "Columbus Day (Observed)", - "1996-11-04": "All Saints' Day (Observed)", + "1996-08-19": "Assumption of Mary (observed)", + "1996-10-14": "Columbus Day (observed)", + "1996-11-04": "All Saints' Day (observed)", "1996-11-11": "Independence of Cartagena", "1996-12-08": "Immaculate Conception", "1996-12-25": "Christmas", "1997-01-01": "New Year's Day", "1997-01-06": "Epiphany", - "1997-03-24": "Saint Joseph's Day (Observed)", + "1997-03-24": "Saint Joseph's Day (observed)", "1997-03-27": "Maundy Thursday", "1997-03-28": "Good Friday", "1997-05-01": "Labour Day", - "1997-05-12": "Ascension of Jesus (Observed)", - "1997-06-02": "Corpus Christi (Observed)", - "1997-06-09": "Sacred Heart (Observed)", - "1997-06-30": "Saint Peter and Saint Paul (Observed)", + "1997-05-12": "Ascension of Jesus (observed)", + "1997-06-02": "Corpus Christi (observed)", + "1997-06-09": "Sacred Heart (observed)", + "1997-06-30": "Saint Peter and Saint Paul (observed)", "1997-07-20": "Independence Day", "1997-08-07": "Battle of Boyac\u00e1", - "1997-08-18": "Assumption of Mary (Observed)", - "1997-10-13": "Columbus Day (Observed)", - "1997-11-03": "All Saints' Day (Observed)", - "1997-11-17": "Independence of Cartagena (Observed)", + "1997-08-18": "Assumption of Mary (observed)", + "1997-10-13": "Columbus Day (observed)", + "1997-11-03": "All Saints' Day (observed)", + "1997-11-17": "Independence of Cartagena (observed)", "1997-12-08": "Immaculate Conception", "1997-12-25": "Christmas", "1998-01-01": "New Year's Day", - "1998-01-12": "Epiphany (Observed)", - "1998-03-23": "Saint Joseph's Day (Observed)", + "1998-01-12": "Epiphany (observed)", + "1998-03-23": "Saint Joseph's Day (observed)", "1998-04-09": "Maundy Thursday", "1998-04-10": "Good Friday", "1998-05-01": "Labour Day", - "1998-05-25": "Ascension of Jesus (Observed)", - "1998-06-15": "Corpus Christi (Observed)", - "1998-06-22": "Sacred Heart (Observed)", + "1998-05-25": "Ascension of Jesus (observed)", + "1998-06-15": "Corpus Christi (observed)", + "1998-06-22": "Sacred Heart (observed)", "1998-06-29": "Saint Peter and Saint Paul", "1998-07-20": "Independence Day", "1998-08-07": "Battle of Boyac\u00e1", - "1998-08-17": "Assumption of Mary (Observed)", + "1998-08-17": "Assumption of Mary (observed)", "1998-10-12": "Columbus Day", - "1998-11-02": "All Saints' Day (Observed)", - "1998-11-16": "Independence of Cartagena (Observed)", + "1998-11-02": "All Saints' Day (observed)", + "1998-11-16": "Independence of Cartagena (observed)", "1998-12-08": "Immaculate Conception", "1998-12-25": "Christmas", "1999-01-01": "New Year's Day", - "1999-01-11": "Epiphany (Observed)", - "1999-03-22": "Saint Joseph's Day (Observed)", + "1999-01-11": "Epiphany (observed)", + "1999-03-22": "Saint Joseph's Day (observed)", "1999-04-01": "Maundy Thursday", "1999-04-02": "Good Friday", "1999-05-01": "Labour Day", - "1999-05-17": "Ascension of Jesus (Observed)", - "1999-06-07": "Corpus Christi (Observed)", - "1999-06-14": "Sacred Heart (Observed)", - "1999-07-05": "Saint Peter and Saint Paul (Observed)", + "1999-05-17": "Ascension of Jesus (observed)", + "1999-06-07": "Corpus Christi (observed)", + "1999-06-14": "Sacred Heart (observed)", + "1999-07-05": "Saint Peter and Saint Paul (observed)", "1999-07-20": "Independence Day", "1999-08-07": "Battle of Boyac\u00e1", - "1999-08-16": "Assumption of Mary (Observed)", - "1999-10-18": "Columbus Day (Observed)", + "1999-08-16": "Assumption of Mary (observed)", + "1999-10-18": "Columbus Day (observed)", "1999-11-01": "All Saints' Day", - "1999-11-15": "Independence of Cartagena (Observed)", + "1999-11-15": "Independence of Cartagena (observed)", "1999-12-08": "Immaculate Conception", "1999-12-25": "Christmas", "2000-01-01": "New Year's Day", - "2000-01-10": "Epiphany (Observed)", - "2000-03-20": "Saint Joseph's Day (Observed)", + "2000-01-10": "Epiphany (observed)", + "2000-03-20": "Saint Joseph's Day (observed)", "2000-04-20": "Maundy Thursday", "2000-04-21": "Good Friday", "2000-05-01": "Labour Day", - "2000-06-05": "Ascension of Jesus (Observed)", - "2000-06-26": "Corpus Christi (Observed)", - "2000-07-03": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2000-06-05": "Ascension of Jesus (observed)", + "2000-06-26": "Corpus Christi (observed)", + "2000-07-03": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "2000-07-20": "Independence Day", "2000-08-07": "Battle of Boyac\u00e1", - "2000-08-21": "Assumption of Mary (Observed)", - "2000-10-16": "Columbus Day (Observed)", - "2000-11-06": "All Saints' Day (Observed)", - "2000-11-13": "Independence of Cartagena (Observed)", + "2000-08-21": "Assumption of Mary (observed)", + "2000-10-16": "Columbus Day (observed)", + "2000-11-06": "All Saints' Day (observed)", + "2000-11-13": "Independence of Cartagena (observed)", "2000-12-08": "Immaculate Conception", "2000-12-25": "Christmas", "2001-01-01": "New Year's Day", - "2001-01-08": "Epiphany (Observed)", + "2001-01-08": "Epiphany (observed)", "2001-03-19": "Saint Joseph's Day", "2001-04-12": "Maundy Thursday", "2001-04-13": "Good Friday", "2001-05-01": "Labour Day", - "2001-05-28": "Ascension of Jesus (Observed)", - "2001-06-18": "Corpus Christi (Observed)", - "2001-06-25": "Sacred Heart (Observed)", - "2001-07-02": "Saint Peter and Saint Paul (Observed)", + "2001-05-28": "Ascension of Jesus (observed)", + "2001-06-18": "Corpus Christi (observed)", + "2001-06-25": "Sacred Heart (observed)", + "2001-07-02": "Saint Peter and Saint Paul (observed)", "2001-07-20": "Independence Day", "2001-08-07": "Battle of Boyac\u00e1", - "2001-08-20": "Assumption of Mary (Observed)", - "2001-10-15": "Columbus Day (Observed)", - "2001-11-05": "All Saints' Day (Observed)", - "2001-11-12": "Independence of Cartagena (Observed)", + "2001-08-20": "Assumption of Mary (observed)", + "2001-10-15": "Columbus Day (observed)", + "2001-11-05": "All Saints' Day (observed)", + "2001-11-12": "Independence of Cartagena (observed)", "2001-12-08": "Immaculate Conception", "2001-12-25": "Christmas", "2002-01-01": "New Year's Day", - "2002-01-07": "Epiphany (Observed)", - "2002-03-25": "Saint Joseph's Day (Observed)", + "2002-01-07": "Epiphany (observed)", + "2002-03-25": "Saint Joseph's Day (observed)", "2002-03-28": "Maundy Thursday", "2002-03-29": "Good Friday", "2002-05-01": "Labour Day", - "2002-05-13": "Ascension of Jesus (Observed)", - "2002-06-03": "Corpus Christi (Observed)", - "2002-06-10": "Sacred Heart (Observed)", - "2002-07-01": "Saint Peter and Saint Paul (Observed)", + "2002-05-13": "Ascension of Jesus (observed)", + "2002-06-03": "Corpus Christi (observed)", + "2002-06-10": "Sacred Heart (observed)", + "2002-07-01": "Saint Peter and Saint Paul (observed)", "2002-07-20": "Independence Day", "2002-08-07": "Battle of Boyac\u00e1", - "2002-08-19": "Assumption of Mary (Observed)", - "2002-10-14": "Columbus Day (Observed)", - "2002-11-04": "All Saints' Day (Observed)", + "2002-08-19": "Assumption of Mary (observed)", + "2002-10-14": "Columbus Day (observed)", + "2002-11-04": "All Saints' Day (observed)", "2002-11-11": "Independence of Cartagena", "2002-12-08": "Immaculate Conception", "2002-12-25": "Christmas", "2003-01-01": "New Year's Day", "2003-01-06": "Epiphany", - "2003-03-24": "Saint Joseph's Day (Observed)", + "2003-03-24": "Saint Joseph's Day (observed)", "2003-04-17": "Maundy Thursday", "2003-04-18": "Good Friday", "2003-05-01": "Labour Day", - "2003-06-02": "Ascension of Jesus (Observed)", - "2003-06-23": "Corpus Christi (Observed)", - "2003-06-30": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2003-06-02": "Ascension of Jesus (observed)", + "2003-06-23": "Corpus Christi (observed)", + "2003-06-30": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "2003-07-20": "Independence Day", "2003-08-07": "Battle of Boyac\u00e1", - "2003-08-18": "Assumption of Mary (Observed)", - "2003-10-13": "Columbus Day (Observed)", - "2003-11-03": "All Saints' Day (Observed)", - "2003-11-17": "Independence of Cartagena (Observed)", + "2003-08-18": "Assumption of Mary (observed)", + "2003-10-13": "Columbus Day (observed)", + "2003-11-03": "All Saints' Day (observed)", + "2003-11-17": "Independence of Cartagena (observed)", "2003-12-08": "Immaculate Conception", "2003-12-25": "Christmas", "2004-01-01": "New Year's Day", - "2004-01-12": "Epiphany (Observed)", - "2004-03-22": "Saint Joseph's Day (Observed)", + "2004-01-12": "Epiphany (observed)", + "2004-03-22": "Saint Joseph's Day (observed)", "2004-04-08": "Maundy Thursday", "2004-04-09": "Good Friday", "2004-05-01": "Labour Day", - "2004-05-24": "Ascension of Jesus (Observed)", - "2004-06-14": "Corpus Christi (Observed)", - "2004-06-21": "Sacred Heart (Observed)", - "2004-07-05": "Saint Peter and Saint Paul (Observed)", + "2004-05-24": "Ascension of Jesus (observed)", + "2004-06-14": "Corpus Christi (observed)", + "2004-06-21": "Sacred Heart (observed)", + "2004-07-05": "Saint Peter and Saint Paul (observed)", "2004-07-20": "Independence Day", "2004-08-07": "Battle of Boyac\u00e1", - "2004-08-16": "Assumption of Mary (Observed)", - "2004-10-18": "Columbus Day (Observed)", + "2004-08-16": "Assumption of Mary (observed)", + "2004-10-18": "Columbus Day (observed)", "2004-11-01": "All Saints' Day", - "2004-11-15": "Independence of Cartagena (Observed)", + "2004-11-15": "Independence of Cartagena (observed)", "2004-12-08": "Immaculate Conception", "2004-12-25": "Christmas", "2005-01-01": "New Year's Day", - "2005-01-10": "Epiphany (Observed)", - "2005-03-21": "Saint Joseph's Day (Observed)", + "2005-01-10": "Epiphany (observed)", + "2005-03-21": "Saint Joseph's Day (observed)", "2005-03-24": "Maundy Thursday", "2005-03-25": "Good Friday", "2005-05-01": "Labour Day", - "2005-05-09": "Ascension of Jesus (Observed)", - "2005-05-30": "Corpus Christi (Observed)", - "2005-06-06": "Sacred Heart (Observed)", - "2005-07-04": "Saint Peter and Saint Paul (Observed)", + "2005-05-09": "Ascension of Jesus (observed)", + "2005-05-30": "Corpus Christi (observed)", + "2005-06-06": "Sacred Heart (observed)", + "2005-07-04": "Saint Peter and Saint Paul (observed)", "2005-07-20": "Independence Day", "2005-08-07": "Battle of Boyac\u00e1", "2005-08-15": "Assumption of Mary", - "2005-10-17": "Columbus Day (Observed)", - "2005-11-07": "All Saints' Day (Observed)", - "2005-11-14": "Independence of Cartagena (Observed)", + "2005-10-17": "Columbus Day (observed)", + "2005-11-07": "All Saints' Day (observed)", + "2005-11-14": "Independence of Cartagena (observed)", "2005-12-08": "Immaculate Conception", "2005-12-25": "Christmas", "2006-01-01": "New Year's Day", - "2006-01-09": "Epiphany (Observed)", - "2006-03-20": "Saint Joseph's Day (Observed)", + "2006-01-09": "Epiphany (observed)", + "2006-03-20": "Saint Joseph's Day (observed)", "2006-04-13": "Maundy Thursday", "2006-04-14": "Good Friday", "2006-05-01": "Labour Day", - "2006-05-29": "Ascension of Jesus (Observed)", - "2006-06-19": "Corpus Christi (Observed)", - "2006-06-26": "Sacred Heart (Observed)", - "2006-07-03": "Saint Peter and Saint Paul (Observed)", + "2006-05-29": "Ascension of Jesus (observed)", + "2006-06-19": "Corpus Christi (observed)", + "2006-06-26": "Sacred Heart (observed)", + "2006-07-03": "Saint Peter and Saint Paul (observed)", "2006-07-20": "Independence Day", "2006-08-07": "Battle of Boyac\u00e1", - "2006-08-21": "Assumption of Mary (Observed)", - "2006-10-16": "Columbus Day (Observed)", - "2006-11-06": "All Saints' Day (Observed)", - "2006-11-13": "Independence of Cartagena (Observed)", + "2006-08-21": "Assumption of Mary (observed)", + "2006-10-16": "Columbus Day (observed)", + "2006-11-06": "All Saints' Day (observed)", + "2006-11-13": "Independence of Cartagena (observed)", "2006-12-08": "Immaculate Conception", "2006-12-25": "Christmas", "2007-01-01": "New Year's Day", - "2007-01-08": "Epiphany (Observed)", + "2007-01-08": "Epiphany (observed)", "2007-03-19": "Saint Joseph's Day", "2007-04-05": "Maundy Thursday", "2007-04-06": "Good Friday", "2007-05-01": "Labour Day", - "2007-05-21": "Ascension of Jesus (Observed)", - "2007-06-11": "Corpus Christi (Observed)", - "2007-06-18": "Sacred Heart (Observed)", - "2007-07-02": "Saint Peter and Saint Paul (Observed)", + "2007-05-21": "Ascension of Jesus (observed)", + "2007-06-11": "Corpus Christi (observed)", + "2007-06-18": "Sacred Heart (observed)", + "2007-07-02": "Saint Peter and Saint Paul (observed)", "2007-07-20": "Independence Day", "2007-08-07": "Battle of Boyac\u00e1", - "2007-08-20": "Assumption of Mary (Observed)", - "2007-10-15": "Columbus Day (Observed)", - "2007-11-05": "All Saints' Day (Observed)", - "2007-11-12": "Independence of Cartagena (Observed)", + "2007-08-20": "Assumption of Mary (observed)", + "2007-10-15": "Columbus Day (observed)", + "2007-11-05": "All Saints' Day (observed)", + "2007-11-12": "Independence of Cartagena (observed)", "2007-12-08": "Immaculate Conception", "2007-12-25": "Christmas", "2008-01-01": "New Year's Day", - "2008-01-07": "Epiphany (Observed)", + "2008-01-07": "Epiphany (observed)", "2008-03-20": "Maundy Thursday", "2008-03-21": "Good Friday", - "2008-03-24": "Saint Joseph's Day (Observed)", + "2008-03-24": "Saint Joseph's Day (observed)", "2008-05-01": "Labour Day", - "2008-05-05": "Ascension of Jesus (Observed)", - "2008-05-26": "Corpus Christi (Observed)", - "2008-06-02": "Sacred Heart (Observed)", - "2008-06-30": "Saint Peter and Saint Paul (Observed)", + "2008-05-05": "Ascension of Jesus (observed)", + "2008-05-26": "Corpus Christi (observed)", + "2008-06-02": "Sacred Heart (observed)", + "2008-06-30": "Saint Peter and Saint Paul (observed)", "2008-07-20": "Independence Day", "2008-08-07": "Battle of Boyac\u00e1", - "2008-08-18": "Assumption of Mary (Observed)", - "2008-10-13": "Columbus Day (Observed)", - "2008-11-03": "All Saints' Day (Observed)", - "2008-11-17": "Independence of Cartagena (Observed)", + "2008-08-18": "Assumption of Mary (observed)", + "2008-10-13": "Columbus Day (observed)", + "2008-11-03": "All Saints' Day (observed)", + "2008-11-17": "Independence of Cartagena (observed)", "2008-12-08": "Immaculate Conception", "2008-12-25": "Christmas", "2009-01-01": "New Year's Day", - "2009-01-12": "Epiphany (Observed)", - "2009-03-23": "Saint Joseph's Day (Observed)", + "2009-01-12": "Epiphany (observed)", + "2009-03-23": "Saint Joseph's Day (observed)", "2009-04-09": "Maundy Thursday", "2009-04-10": "Good Friday", "2009-05-01": "Labour Day", - "2009-05-25": "Ascension of Jesus (Observed)", - "2009-06-15": "Corpus Christi (Observed)", - "2009-06-22": "Sacred Heart (Observed)", + "2009-05-25": "Ascension of Jesus (observed)", + "2009-06-15": "Corpus Christi (observed)", + "2009-06-22": "Sacred Heart (observed)", "2009-06-29": "Saint Peter and Saint Paul", "2009-07-20": "Independence Day", "2009-08-07": "Battle of Boyac\u00e1", - "2009-08-17": "Assumption of Mary (Observed)", + "2009-08-17": "Assumption of Mary (observed)", "2009-10-12": "Columbus Day", - "2009-11-02": "All Saints' Day (Observed)", - "2009-11-16": "Independence of Cartagena (Observed)", + "2009-11-02": "All Saints' Day (observed)", + "2009-11-16": "Independence of Cartagena (observed)", "2009-12-08": "Immaculate Conception", "2009-12-25": "Christmas", "2010-01-01": "New Year's Day", - "2010-01-11": "Epiphany (Observed)", - "2010-03-22": "Saint Joseph's Day (Observed)", + "2010-01-11": "Epiphany (observed)", + "2010-03-22": "Saint Joseph's Day (observed)", "2010-04-01": "Maundy Thursday", "2010-04-02": "Good Friday", "2010-05-01": "Labour Day", - "2010-05-17": "Ascension of Jesus (Observed)", - "2010-06-07": "Corpus Christi (Observed)", - "2010-06-14": "Sacred Heart (Observed)", - "2010-07-05": "Saint Peter and Saint Paul (Observed)", + "2010-05-17": "Ascension of Jesus (observed)", + "2010-06-07": "Corpus Christi (observed)", + "2010-06-14": "Sacred Heart (observed)", + "2010-07-05": "Saint Peter and Saint Paul (observed)", "2010-07-20": "Independence Day", "2010-08-07": "Battle of Boyac\u00e1", - "2010-08-16": "Assumption of Mary (Observed)", - "2010-10-18": "Columbus Day (Observed)", + "2010-08-16": "Assumption of Mary (observed)", + "2010-10-18": "Columbus Day (observed)", "2010-11-01": "All Saints' Day", - "2010-11-15": "Independence of Cartagena (Observed)", + "2010-11-15": "Independence of Cartagena (observed)", "2010-12-08": "Immaculate Conception", "2010-12-25": "Christmas", "2011-01-01": "New Year's Day", - "2011-01-10": "Epiphany (Observed)", - "2011-03-21": "Saint Joseph's Day (Observed)", + "2011-01-10": "Epiphany (observed)", + "2011-03-21": "Saint Joseph's Day (observed)", "2011-04-21": "Maundy Thursday", "2011-04-22": "Good Friday", "2011-05-01": "Labour Day", - "2011-06-06": "Ascension of Jesus (Observed)", - "2011-06-27": "Corpus Christi (Observed)", - "2011-07-04": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2011-06-06": "Ascension of Jesus (observed)", + "2011-06-27": "Corpus Christi (observed)", + "2011-07-04": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "2011-07-20": "Independence Day", "2011-08-07": "Battle of Boyac\u00e1", "2011-08-15": "Assumption of Mary", - "2011-10-17": "Columbus Day (Observed)", - "2011-11-07": "All Saints' Day (Observed)", - "2011-11-14": "Independence of Cartagena (Observed)", + "2011-10-17": "Columbus Day (observed)", + "2011-11-07": "All Saints' Day (observed)", + "2011-11-14": "Independence of Cartagena (observed)", "2011-12-08": "Immaculate Conception", "2011-12-25": "Christmas", "2012-01-01": "New Year's Day", - "2012-01-09": "Epiphany (Observed)", + "2012-01-09": "Epiphany (observed)", "2012-03-19": "Saint Joseph's Day", "2012-04-05": "Maundy Thursday", "2012-04-06": "Good Friday", "2012-05-01": "Labour Day", - "2012-05-21": "Ascension of Jesus (Observed)", - "2012-06-11": "Corpus Christi (Observed)", - "2012-06-18": "Sacred Heart (Observed)", - "2012-07-02": "Saint Peter and Saint Paul (Observed)", + "2012-05-21": "Ascension of Jesus (observed)", + "2012-06-11": "Corpus Christi (observed)", + "2012-06-18": "Sacred Heart (observed)", + "2012-07-02": "Saint Peter and Saint Paul (observed)", "2012-07-20": "Independence Day", "2012-08-07": "Battle of Boyac\u00e1", - "2012-08-20": "Assumption of Mary (Observed)", - "2012-10-15": "Columbus Day (Observed)", - "2012-11-05": "All Saints' Day (Observed)", - "2012-11-12": "Independence of Cartagena (Observed)", + "2012-08-20": "Assumption of Mary (observed)", + "2012-10-15": "Columbus Day (observed)", + "2012-11-05": "All Saints' Day (observed)", + "2012-11-12": "Independence of Cartagena (observed)", "2012-12-08": "Immaculate Conception", "2012-12-25": "Christmas", "2013-01-01": "New Year's Day", - "2013-01-07": "Epiphany (Observed)", - "2013-03-25": "Saint Joseph's Day (Observed)", + "2013-01-07": "Epiphany (observed)", + "2013-03-25": "Saint Joseph's Day (observed)", "2013-03-28": "Maundy Thursday", "2013-03-29": "Good Friday", "2013-05-01": "Labour Day", - "2013-05-13": "Ascension of Jesus (Observed)", - "2013-06-03": "Corpus Christi (Observed)", - "2013-06-10": "Sacred Heart (Observed)", - "2013-07-01": "Saint Peter and Saint Paul (Observed)", + "2013-05-13": "Ascension of Jesus (observed)", + "2013-06-03": "Corpus Christi (observed)", + "2013-06-10": "Sacred Heart (observed)", + "2013-07-01": "Saint Peter and Saint Paul (observed)", "2013-07-20": "Independence Day", "2013-08-07": "Battle of Boyac\u00e1", - "2013-08-19": "Assumption of Mary (Observed)", - "2013-10-14": "Columbus Day (Observed)", - "2013-11-04": "All Saints' Day (Observed)", + "2013-08-19": "Assumption of Mary (observed)", + "2013-10-14": "Columbus Day (observed)", + "2013-11-04": "All Saints' Day (observed)", "2013-11-11": "Independence of Cartagena", "2013-12-08": "Immaculate Conception", "2013-12-25": "Christmas", "2014-01-01": "New Year's Day", "2014-01-06": "Epiphany", - "2014-03-24": "Saint Joseph's Day (Observed)", + "2014-03-24": "Saint Joseph's Day (observed)", "2014-04-17": "Maundy Thursday", "2014-04-18": "Good Friday", "2014-05-01": "Labour Day", - "2014-06-02": "Ascension of Jesus (Observed)", - "2014-06-23": "Corpus Christi (Observed)", - "2014-06-30": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2014-06-02": "Ascension of Jesus (observed)", + "2014-06-23": "Corpus Christi (observed)", + "2014-06-30": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "2014-07-20": "Independence Day", "2014-08-07": "Battle of Boyac\u00e1", - "2014-08-18": "Assumption of Mary (Observed)", - "2014-10-13": "Columbus Day (Observed)", - "2014-11-03": "All Saints' Day (Observed)", - "2014-11-17": "Independence of Cartagena (Observed)", + "2014-08-18": "Assumption of Mary (observed)", + "2014-10-13": "Columbus Day (observed)", + "2014-11-03": "All Saints' Day (observed)", + "2014-11-17": "Independence of Cartagena (observed)", "2014-12-08": "Immaculate Conception", "2014-12-25": "Christmas", "2015-01-01": "New Year's Day", - "2015-01-12": "Epiphany (Observed)", - "2015-03-23": "Saint Joseph's Day (Observed)", + "2015-01-12": "Epiphany (observed)", + "2015-03-23": "Saint Joseph's Day (observed)", "2015-04-02": "Maundy Thursday", "2015-04-03": "Good Friday", "2015-05-01": "Labour Day", - "2015-05-18": "Ascension of Jesus (Observed)", - "2015-06-08": "Corpus Christi (Observed)", - "2015-06-15": "Sacred Heart (Observed)", + "2015-05-18": "Ascension of Jesus (observed)", + "2015-06-08": "Corpus Christi (observed)", + "2015-06-15": "Sacred Heart (observed)", "2015-06-29": "Saint Peter and Saint Paul", "2015-07-20": "Independence Day", "2015-08-07": "Battle of Boyac\u00e1", - "2015-08-17": "Assumption of Mary (Observed)", + "2015-08-17": "Assumption of Mary (observed)", "2015-10-12": "Columbus Day", - "2015-11-02": "All Saints' Day (Observed)", - "2015-11-16": "Independence of Cartagena (Observed)", + "2015-11-02": "All Saints' Day (observed)", + "2015-11-16": "Independence of Cartagena (observed)", "2015-12-08": "Immaculate Conception", "2015-12-25": "Christmas", "2016-01-01": "New Year's Day", - "2016-01-11": "Epiphany (Observed)", - "2016-03-21": "Saint Joseph's Day (Observed)", + "2016-01-11": "Epiphany (observed)", + "2016-03-21": "Saint Joseph's Day (observed)", "2016-03-24": "Maundy Thursday", "2016-03-25": "Good Friday", "2016-05-01": "Labour Day", - "2016-05-09": "Ascension of Jesus (Observed)", - "2016-05-30": "Corpus Christi (Observed)", - "2016-06-06": "Sacred Heart (Observed)", - "2016-07-04": "Saint Peter and Saint Paul (Observed)", + "2016-05-09": "Ascension of Jesus (observed)", + "2016-05-30": "Corpus Christi (observed)", + "2016-06-06": "Sacred Heart (observed)", + "2016-07-04": "Saint Peter and Saint Paul (observed)", "2016-07-20": "Independence Day", "2016-08-07": "Battle of Boyac\u00e1", "2016-08-15": "Assumption of Mary", - "2016-10-17": "Columbus Day (Observed)", - "2016-11-07": "All Saints' Day (Observed)", - "2016-11-14": "Independence of Cartagena (Observed)", + "2016-10-17": "Columbus Day (observed)", + "2016-11-07": "All Saints' Day (observed)", + "2016-11-14": "Independence of Cartagena (observed)", "2016-12-08": "Immaculate Conception", "2016-12-25": "Christmas", "2017-01-01": "New Year's Day", - "2017-01-09": "Epiphany (Observed)", - "2017-03-20": "Saint Joseph's Day (Observed)", + "2017-01-09": "Epiphany (observed)", + "2017-03-20": "Saint Joseph's Day (observed)", "2017-04-13": "Maundy Thursday", "2017-04-14": "Good Friday", "2017-05-01": "Labour Day", - "2017-05-29": "Ascension of Jesus (Observed)", - "2017-06-19": "Corpus Christi (Observed)", - "2017-06-26": "Sacred Heart (Observed)", - "2017-07-03": "Saint Peter and Saint Paul (Observed)", + "2017-05-29": "Ascension of Jesus (observed)", + "2017-06-19": "Corpus Christi (observed)", + "2017-06-26": "Sacred Heart (observed)", + "2017-07-03": "Saint Peter and Saint Paul (observed)", "2017-07-20": "Independence Day", "2017-08-07": "Battle of Boyac\u00e1", - "2017-08-21": "Assumption of Mary (Observed)", - "2017-10-16": "Columbus Day (Observed)", - "2017-11-06": "All Saints' Day (Observed)", - "2017-11-13": "Independence of Cartagena (Observed)", + "2017-08-21": "Assumption of Mary (observed)", + "2017-10-16": "Columbus Day (observed)", + "2017-11-06": "All Saints' Day (observed)", + "2017-11-13": "Independence of Cartagena (observed)", "2017-12-08": "Immaculate Conception", "2017-12-25": "Christmas", "2018-01-01": "New Year's Day", - "2018-01-08": "Epiphany (Observed)", + "2018-01-08": "Epiphany (observed)", "2018-03-19": "Saint Joseph's Day", "2018-03-29": "Maundy Thursday", "2018-03-30": "Good Friday", "2018-05-01": "Labour Day", - "2018-05-14": "Ascension of Jesus (Observed)", - "2018-06-04": "Corpus Christi (Observed)", - "2018-06-11": "Sacred Heart (Observed)", - "2018-07-02": "Saint Peter and Saint Paul (Observed)", + "2018-05-14": "Ascension of Jesus (observed)", + "2018-06-04": "Corpus Christi (observed)", + "2018-06-11": "Sacred Heart (observed)", + "2018-07-02": "Saint Peter and Saint Paul (observed)", "2018-07-20": "Independence Day", "2018-08-07": "Battle of Boyac\u00e1", - "2018-08-20": "Assumption of Mary (Observed)", - "2018-10-15": "Columbus Day (Observed)", - "2018-11-05": "All Saints' Day (Observed)", - "2018-11-12": "Independence of Cartagena (Observed)", + "2018-08-20": "Assumption of Mary (observed)", + "2018-10-15": "Columbus Day (observed)", + "2018-11-05": "All Saints' Day (observed)", + "2018-11-12": "Independence of Cartagena (observed)", "2018-12-08": "Immaculate Conception", "2018-12-25": "Christmas", "2019-01-01": "New Year's Day", - "2019-01-07": "Epiphany (Observed)", - "2019-03-25": "Saint Joseph's Day (Observed)", + "2019-01-07": "Epiphany (observed)", + "2019-03-25": "Saint Joseph's Day (observed)", "2019-04-18": "Maundy Thursday", "2019-04-19": "Good Friday", "2019-05-01": "Labour Day", - "2019-06-03": "Ascension of Jesus (Observed)", - "2019-06-24": "Corpus Christi (Observed)", - "2019-07-01": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2019-06-03": "Ascension of Jesus (observed)", + "2019-06-24": "Corpus Christi (observed)", + "2019-07-01": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "2019-07-20": "Independence Day", "2019-08-07": "Battle of Boyac\u00e1", - "2019-08-19": "Assumption of Mary (Observed)", - "2019-10-14": "Columbus Day (Observed)", - "2019-11-04": "All Saints' Day (Observed)", + "2019-08-19": "Assumption of Mary (observed)", + "2019-10-14": "Columbus Day (observed)", + "2019-11-04": "All Saints' Day (observed)", "2019-11-11": "Independence of Cartagena", "2019-12-08": "Immaculate Conception", "2019-12-25": "Christmas", "2020-01-01": "New Year's Day", "2020-01-06": "Epiphany", - "2020-03-23": "Saint Joseph's Day (Observed)", + "2020-03-23": "Saint Joseph's Day (observed)", "2020-04-09": "Maundy Thursday", "2020-04-10": "Good Friday", "2020-05-01": "Labour Day", - "2020-05-25": "Ascension of Jesus (Observed)", - "2020-06-15": "Corpus Christi (Observed)", - "2020-06-22": "Sacred Heart (Observed)", + "2020-05-25": "Ascension of Jesus (observed)", + "2020-06-15": "Corpus Christi (observed)", + "2020-06-22": "Sacred Heart (observed)", "2020-06-29": "Saint Peter and Saint Paul", "2020-07-20": "Independence Day", "2020-08-07": "Battle of Boyac\u00e1", - "2020-08-17": "Assumption of Mary (Observed)", + "2020-08-17": "Assumption of Mary (observed)", "2020-10-12": "Columbus Day", - "2020-11-02": "All Saints' Day (Observed)", - "2020-11-16": "Independence of Cartagena (Observed)", + "2020-11-02": "All Saints' Day (observed)", + "2020-11-16": "Independence of Cartagena (observed)", "2020-12-08": "Immaculate Conception", "2020-12-25": "Christmas", "2021-01-01": "New Year's Day", - "2021-01-11": "Epiphany (Observed)", - "2021-03-22": "Saint Joseph's Day (Observed)", + "2021-01-11": "Epiphany (observed)", + "2021-03-22": "Saint Joseph's Day (observed)", "2021-04-01": "Maundy Thursday", "2021-04-02": "Good Friday", "2021-05-01": "Labour Day", - "2021-05-17": "Ascension of Jesus (Observed)", - "2021-06-07": "Corpus Christi (Observed)", - "2021-06-14": "Sacred Heart (Observed)", - "2021-07-05": "Saint Peter and Saint Paul (Observed)", + "2021-05-17": "Ascension of Jesus (observed)", + "2021-06-07": "Corpus Christi (observed)", + "2021-06-14": "Sacred Heart (observed)", + "2021-07-05": "Saint Peter and Saint Paul (observed)", "2021-07-20": "Independence Day", "2021-08-07": "Battle of Boyac\u00e1", - "2021-08-16": "Assumption of Mary (Observed)", - "2021-10-18": "Columbus Day (Observed)", + "2021-08-16": "Assumption of Mary (observed)", + "2021-10-18": "Columbus Day (observed)", "2021-11-01": "All Saints' Day", - "2021-11-15": "Independence of Cartagena (Observed)", + "2021-11-15": "Independence of Cartagena (observed)", "2021-12-08": "Immaculate Conception", "2021-12-25": "Christmas", "2022-01-01": "New Year's Day", - "2022-01-10": "Epiphany (Observed)", - "2022-03-21": "Saint Joseph's Day (Observed)", + "2022-01-10": "Epiphany (observed)", + "2022-03-21": "Saint Joseph's Day (observed)", "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", "2022-05-01": "Labour Day", - "2022-05-30": "Ascension of Jesus (Observed)", - "2022-06-20": "Corpus Christi (Observed)", - "2022-06-27": "Sacred Heart (Observed)", - "2022-07-04": "Saint Peter and Saint Paul (Observed)", + "2022-05-30": "Ascension of Jesus (observed)", + "2022-06-20": "Corpus Christi (observed)", + "2022-06-27": "Sacred Heart (observed)", + "2022-07-04": "Saint Peter and Saint Paul (observed)", "2022-07-20": "Independence Day", "2022-08-07": "Battle of Boyac\u00e1", "2022-08-15": "Assumption of Mary", - "2022-10-17": "Columbus Day (Observed)", - "2022-11-07": "All Saints' Day (Observed)", - "2022-11-14": "Independence of Cartagena (Observed)", + "2022-10-17": "Columbus Day (observed)", + "2022-11-07": "All Saints' Day (observed)", + "2022-11-14": "Independence of Cartagena (observed)", "2022-12-08": "Immaculate Conception", "2022-12-25": "Christmas", "2023-01-01": "New Year's Day", - "2023-01-09": "Epiphany (Observed)", - "2023-03-20": "Saint Joseph's Day (Observed)", + "2023-01-09": "Epiphany (observed)", + "2023-03-20": "Saint Joseph's Day (observed)", "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", "2023-05-01": "Labour Day", - "2023-05-22": "Ascension of Jesus (Observed)", - "2023-06-12": "Corpus Christi (Observed)", - "2023-06-19": "Sacred Heart (Observed)", - "2023-07-03": "Saint Peter and Saint Paul (Observed)", + "2023-05-22": "Ascension of Jesus (observed)", + "2023-06-12": "Corpus Christi (observed)", + "2023-06-19": "Sacred Heart (observed)", + "2023-07-03": "Saint Peter and Saint Paul (observed)", "2023-07-20": "Independence Day", "2023-08-07": "Battle of Boyac\u00e1", - "2023-08-21": "Assumption of Mary (Observed)", - "2023-10-16": "Columbus Day (Observed)", - "2023-11-06": "All Saints' Day (Observed)", - "2023-11-13": "Independence of Cartagena (Observed)", + "2023-08-21": "Assumption of Mary (observed)", + "2023-10-16": "Columbus Day (observed)", + "2023-11-06": "All Saints' Day (observed)", + "2023-11-13": "Independence of Cartagena (observed)", "2023-12-08": "Immaculate Conception", "2023-12-25": "Christmas", "2024-01-01": "New Year's Day", - "2024-01-08": "Epiphany (Observed)", - "2024-03-25": "Saint Joseph's Day (Observed)", + "2024-01-08": "Epiphany (observed)", + "2024-03-25": "Saint Joseph's Day (observed)", "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", "2024-05-01": "Labour Day", - "2024-05-13": "Ascension of Jesus (Observed)", - "2024-06-03": "Corpus Christi (Observed)", - "2024-06-10": "Sacred Heart (Observed)", - "2024-07-01": "Saint Peter and Saint Paul (Observed)", + "2024-05-13": "Ascension of Jesus (observed)", + "2024-06-03": "Corpus Christi (observed)", + "2024-06-10": "Sacred Heart (observed)", + "2024-07-01": "Saint Peter and Saint Paul (observed)", "2024-07-20": "Independence Day", "2024-08-07": "Battle of Boyac\u00e1", - "2024-08-19": "Assumption of Mary (Observed)", - "2024-10-14": "Columbus Day (Observed)", - "2024-11-04": "All Saints' Day (Observed)", + "2024-08-19": "Assumption of Mary (observed)", + "2024-10-14": "Columbus Day (observed)", + "2024-11-04": "All Saints' Day (observed)", "2024-11-11": "Independence of Cartagena", "2024-12-08": "Immaculate Conception", "2024-12-25": "Christmas", "2025-01-01": "New Year's Day", "2025-01-06": "Epiphany", - "2025-03-24": "Saint Joseph's Day (Observed)", + "2025-03-24": "Saint Joseph's Day (observed)", "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", - "2025-06-02": "Ascension of Jesus (Observed)", - "2025-06-23": "Corpus Christi (Observed)", - "2025-06-30": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2025-06-02": "Ascension of Jesus (observed)", + "2025-06-23": "Corpus Christi (observed)", + "2025-06-30": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "2025-07-20": "Independence Day", "2025-08-07": "Battle of Boyac\u00e1", - "2025-08-18": "Assumption of Mary (Observed)", - "2025-10-13": "Columbus Day (Observed)", - "2025-11-03": "All Saints' Day (Observed)", - "2025-11-17": "Independence of Cartagena (Observed)", + "2025-08-18": "Assumption of Mary (observed)", + "2025-10-13": "Columbus Day (observed)", + "2025-11-03": "All Saints' Day (observed)", + "2025-11-17": "Independence of Cartagena (observed)", "2025-12-08": "Immaculate Conception", "2025-12-25": "Christmas", "2026-01-01": "New Year's Day", - "2026-01-12": "Epiphany (Observed)", - "2026-03-23": "Saint Joseph's Day (Observed)", + "2026-01-12": "Epiphany (observed)", + "2026-03-23": "Saint Joseph's Day (observed)", "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", "2026-05-01": "Labour Day", - "2026-05-18": "Ascension of Jesus (Observed)", - "2026-06-08": "Corpus Christi (Observed)", - "2026-06-15": "Sacred Heart (Observed)", + "2026-05-18": "Ascension of Jesus (observed)", + "2026-06-08": "Corpus Christi (observed)", + "2026-06-15": "Sacred Heart (observed)", "2026-06-29": "Saint Peter and Saint Paul", "2026-07-20": "Independence Day", "2026-08-07": "Battle of Boyac\u00e1", - "2026-08-17": "Assumption of Mary (Observed)", + "2026-08-17": "Assumption of Mary (observed)", "2026-10-12": "Columbus Day", - "2026-11-02": "All Saints' Day (Observed)", - "2026-11-16": "Independence of Cartagena (Observed)", + "2026-11-02": "All Saints' Day (observed)", + "2026-11-16": "Independence of Cartagena (observed)", "2026-12-08": "Immaculate Conception", "2026-12-25": "Christmas", "2027-01-01": "New Year's Day", - "2027-01-11": "Epiphany (Observed)", - "2027-03-22": "Saint Joseph's Day (Observed)", + "2027-01-11": "Epiphany (observed)", + "2027-03-22": "Saint Joseph's Day (observed)", "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", "2027-05-01": "Labour Day", - "2027-05-10": "Ascension of Jesus (Observed)", - "2027-05-31": "Corpus Christi (Observed)", - "2027-06-07": "Sacred Heart (Observed)", - "2027-07-05": "Saint Peter and Saint Paul (Observed)", + "2027-05-10": "Ascension of Jesus (observed)", + "2027-05-31": "Corpus Christi (observed)", + "2027-06-07": "Sacred Heart (observed)", + "2027-07-05": "Saint Peter and Saint Paul (observed)", "2027-07-20": "Independence Day", "2027-08-07": "Battle of Boyac\u00e1", - "2027-08-16": "Assumption of Mary (Observed)", - "2027-10-18": "Columbus Day (Observed)", + "2027-08-16": "Assumption of Mary (observed)", + "2027-10-18": "Columbus Day (observed)", "2027-11-01": "All Saints' Day", - "2027-11-15": "Independence of Cartagena (Observed)", + "2027-11-15": "Independence of Cartagena (observed)", "2027-12-08": "Immaculate Conception", "2027-12-25": "Christmas", "2028-01-01": "New Year's Day", - "2028-01-10": "Epiphany (Observed)", - "2028-03-20": "Saint Joseph's Day (Observed)", + "2028-01-10": "Epiphany (observed)", + "2028-03-20": "Saint Joseph's Day (observed)", "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", "2028-05-01": "Labour Day", - "2028-05-29": "Ascension of Jesus (Observed)", - "2028-06-19": "Corpus Christi (Observed)", - "2028-06-26": "Sacred Heart (Observed)", - "2028-07-03": "Saint Peter and Saint Paul (Observed)", + "2028-05-29": "Ascension of Jesus (observed)", + "2028-06-19": "Corpus Christi (observed)", + "2028-06-26": "Sacred Heart (observed)", + "2028-07-03": "Saint Peter and Saint Paul (observed)", "2028-07-20": "Independence Day", "2028-08-07": "Battle of Boyac\u00e1", - "2028-08-21": "Assumption of Mary (Observed)", - "2028-10-16": "Columbus Day (Observed)", - "2028-11-06": "All Saints' Day (Observed)", - "2028-11-13": "Independence of Cartagena (Observed)", + "2028-08-21": "Assumption of Mary (observed)", + "2028-10-16": "Columbus Day (observed)", + "2028-11-06": "All Saints' Day (observed)", + "2028-11-13": "Independence of Cartagena (observed)", "2028-12-08": "Immaculate Conception", "2028-12-25": "Christmas", "2029-01-01": "New Year's Day", - "2029-01-08": "Epiphany (Observed)", + "2029-01-08": "Epiphany (observed)", "2029-03-19": "Saint Joseph's Day", "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", "2029-05-01": "Labour Day", - "2029-05-14": "Ascension of Jesus (Observed)", - "2029-06-04": "Corpus Christi (Observed)", - "2029-06-11": "Sacred Heart (Observed)", - "2029-07-02": "Saint Peter and Saint Paul (Observed)", + "2029-05-14": "Ascension of Jesus (observed)", + "2029-06-04": "Corpus Christi (observed)", + "2029-06-11": "Sacred Heart (observed)", + "2029-07-02": "Saint Peter and Saint Paul (observed)", "2029-07-20": "Independence Day", "2029-08-07": "Battle of Boyac\u00e1", - "2029-08-20": "Assumption of Mary (Observed)", - "2029-10-15": "Columbus Day (Observed)", - "2029-11-05": "All Saints' Day (Observed)", - "2029-11-12": "Independence of Cartagena (Observed)", + "2029-08-20": "Assumption of Mary (observed)", + "2029-10-15": "Columbus Day (observed)", + "2029-11-05": "All Saints' Day (observed)", + "2029-11-12": "Independence of Cartagena (observed)", "2029-12-08": "Immaculate Conception", "2029-12-25": "Christmas", "2030-01-01": "New Year's Day", - "2030-01-07": "Epiphany (Observed)", - "2030-03-25": "Saint Joseph's Day (Observed)", + "2030-01-07": "Epiphany (observed)", + "2030-03-25": "Saint Joseph's Day (observed)", "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", "2030-05-01": "Labour Day", - "2030-06-03": "Ascension of Jesus (Observed)", - "2030-06-24": "Corpus Christi (Observed)", - "2030-07-01": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2030-06-03": "Ascension of Jesus (observed)", + "2030-06-24": "Corpus Christi (observed)", + "2030-07-01": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "2030-07-20": "Independence Day", "2030-08-07": "Battle of Boyac\u00e1", - "2030-08-19": "Assumption of Mary (Observed)", - "2030-10-14": "Columbus Day (Observed)", - "2030-11-04": "All Saints' Day (Observed)", + "2030-08-19": "Assumption of Mary (observed)", + "2030-10-14": "Columbus Day (observed)", + "2030-11-04": "All Saints' Day (observed)", "2030-11-11": "Independence of Cartagena", "2030-12-08": "Immaculate Conception", "2030-12-25": "Christmas", "2031-01-01": "New Year's Day", "2031-01-06": "Epiphany", - "2031-03-24": "Saint Joseph's Day (Observed)", + "2031-03-24": "Saint Joseph's Day (observed)", "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", "2031-05-01": "Labour Day", - "2031-05-26": "Ascension of Jesus (Observed)", - "2031-06-16": "Corpus Christi (Observed)", - "2031-06-23": "Sacred Heart (Observed)", - "2031-06-30": "Saint Peter and Saint Paul (Observed)", + "2031-05-26": "Ascension of Jesus (observed)", + "2031-06-16": "Corpus Christi (observed)", + "2031-06-23": "Sacred Heart (observed)", + "2031-06-30": "Saint Peter and Saint Paul (observed)", "2031-07-20": "Independence Day", "2031-08-07": "Battle of Boyac\u00e1", - "2031-08-18": "Assumption of Mary (Observed)", - "2031-10-13": "Columbus Day (Observed)", - "2031-11-03": "All Saints' Day (Observed)", - "2031-11-17": "Independence of Cartagena (Observed)", + "2031-08-18": "Assumption of Mary (observed)", + "2031-10-13": "Columbus Day (observed)", + "2031-11-03": "All Saints' Day (observed)", + "2031-11-17": "Independence of Cartagena (observed)", "2031-12-08": "Immaculate Conception", "2031-12-25": "Christmas", "2032-01-01": "New Year's Day", - "2032-01-12": "Epiphany (Observed)", - "2032-03-22": "Saint Joseph's Day (Observed)", + "2032-01-12": "Epiphany (observed)", + "2032-03-22": "Saint Joseph's Day (observed)", "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", "2032-05-01": "Labour Day", - "2032-05-10": "Ascension of Jesus (Observed)", - "2032-05-31": "Corpus Christi (Observed)", - "2032-06-07": "Sacred Heart (Observed)", - "2032-07-05": "Saint Peter and Saint Paul (Observed)", + "2032-05-10": "Ascension of Jesus (observed)", + "2032-05-31": "Corpus Christi (observed)", + "2032-06-07": "Sacred Heart (observed)", + "2032-07-05": "Saint Peter and Saint Paul (observed)", "2032-07-20": "Independence Day", "2032-08-07": "Battle of Boyac\u00e1", - "2032-08-16": "Assumption of Mary (Observed)", - "2032-10-18": "Columbus Day (Observed)", + "2032-08-16": "Assumption of Mary (observed)", + "2032-10-18": "Columbus Day (observed)", "2032-11-01": "All Saints' Day", - "2032-11-15": "Independence of Cartagena (Observed)", + "2032-11-15": "Independence of Cartagena (observed)", "2032-12-08": "Immaculate Conception", "2032-12-25": "Christmas", "2033-01-01": "New Year's Day", - "2033-01-10": "Epiphany (Observed)", - "2033-03-21": "Saint Joseph's Day (Observed)", + "2033-01-10": "Epiphany (observed)", + "2033-03-21": "Saint Joseph's Day (observed)", "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", - "2033-05-30": "Ascension of Jesus (Observed)", - "2033-06-20": "Corpus Christi (Observed)", - "2033-06-27": "Sacred Heart (Observed)", - "2033-07-04": "Saint Peter and Saint Paul (Observed)", + "2033-05-30": "Ascension of Jesus (observed)", + "2033-06-20": "Corpus Christi (observed)", + "2033-06-27": "Sacred Heart (observed)", + "2033-07-04": "Saint Peter and Saint Paul (observed)", "2033-07-20": "Independence Day", "2033-08-07": "Battle of Boyac\u00e1", "2033-08-15": "Assumption of Mary", - "2033-10-17": "Columbus Day (Observed)", - "2033-11-07": "All Saints' Day (Observed)", - "2033-11-14": "Independence of Cartagena (Observed)", + "2033-10-17": "Columbus Day (observed)", + "2033-11-07": "All Saints' Day (observed)", + "2033-11-14": "Independence of Cartagena (observed)", "2033-12-08": "Immaculate Conception", "2033-12-25": "Christmas", "2034-01-01": "New Year's Day", - "2034-01-09": "Epiphany (Observed)", - "2034-03-20": "Saint Joseph's Day (Observed)", + "2034-01-09": "Epiphany (observed)", + "2034-03-20": "Saint Joseph's Day (observed)", "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", "2034-05-01": "Labour Day", - "2034-05-22": "Ascension of Jesus (Observed)", - "2034-06-12": "Corpus Christi (Observed)", - "2034-06-19": "Sacred Heart (Observed)", - "2034-07-03": "Saint Peter and Saint Paul (Observed)", + "2034-05-22": "Ascension of Jesus (observed)", + "2034-06-12": "Corpus Christi (observed)", + "2034-06-19": "Sacred Heart (observed)", + "2034-07-03": "Saint Peter and Saint Paul (observed)", "2034-07-20": "Independence Day", "2034-08-07": "Battle of Boyac\u00e1", - "2034-08-21": "Assumption of Mary (Observed)", - "2034-10-16": "Columbus Day (Observed)", - "2034-11-06": "All Saints' Day (Observed)", - "2034-11-13": "Independence of Cartagena (Observed)", + "2034-08-21": "Assumption of Mary (observed)", + "2034-10-16": "Columbus Day (observed)", + "2034-11-06": "All Saints' Day (observed)", + "2034-11-13": "Independence of Cartagena (observed)", "2034-12-08": "Immaculate Conception", "2034-12-25": "Christmas", "2035-01-01": "New Year's Day", - "2035-01-08": "Epiphany (Observed)", + "2035-01-08": "Epiphany (observed)", "2035-03-19": "Saint Joseph's Day", "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", "2035-05-01": "Labour Day", - "2035-05-07": "Ascension of Jesus (Observed)", - "2035-05-28": "Corpus Christi (Observed)", - "2035-06-04": "Sacred Heart (Observed)", - "2035-07-02": "Saint Peter and Saint Paul (Observed)", + "2035-05-07": "Ascension of Jesus (observed)", + "2035-05-28": "Corpus Christi (observed)", + "2035-06-04": "Sacred Heart (observed)", + "2035-07-02": "Saint Peter and Saint Paul (observed)", "2035-07-20": "Independence Day", "2035-08-07": "Battle of Boyac\u00e1", - "2035-08-20": "Assumption of Mary (Observed)", - "2035-10-15": "Columbus Day (Observed)", - "2035-11-05": "All Saints' Day (Observed)", - "2035-11-12": "Independence of Cartagena (Observed)", + "2035-08-20": "Assumption of Mary (observed)", + "2035-10-15": "Columbus Day (observed)", + "2035-11-05": "All Saints' Day (observed)", + "2035-11-12": "Independence of Cartagena (observed)", "2035-12-08": "Immaculate Conception", "2035-12-25": "Christmas", "2036-01-01": "New Year's Day", - "2036-01-07": "Epiphany (Observed)", - "2036-03-24": "Saint Joseph's Day (Observed)", + "2036-01-07": "Epiphany (observed)", + "2036-03-24": "Saint Joseph's Day (observed)", "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", "2036-05-01": "Labour Day", - "2036-05-26": "Ascension of Jesus (Observed)", - "2036-06-16": "Corpus Christi (Observed)", - "2036-06-23": "Sacred Heart (Observed)", - "2036-06-30": "Saint Peter and Saint Paul (Observed)", + "2036-05-26": "Ascension of Jesus (observed)", + "2036-06-16": "Corpus Christi (observed)", + "2036-06-23": "Sacred Heart (observed)", + "2036-06-30": "Saint Peter and Saint Paul (observed)", "2036-07-20": "Independence Day", "2036-08-07": "Battle of Boyac\u00e1", - "2036-08-18": "Assumption of Mary (Observed)", - "2036-10-13": "Columbus Day (Observed)", - "2036-11-03": "All Saints' Day (Observed)", - "2036-11-17": "Independence of Cartagena (Observed)", + "2036-08-18": "Assumption of Mary (observed)", + "2036-10-13": "Columbus Day (observed)", + "2036-11-03": "All Saints' Day (observed)", + "2036-11-17": "Independence of Cartagena (observed)", "2036-12-08": "Immaculate Conception", "2036-12-25": "Christmas", "2037-01-01": "New Year's Day", - "2037-01-12": "Epiphany (Observed)", - "2037-03-23": "Saint Joseph's Day (Observed)", + "2037-01-12": "Epiphany (observed)", + "2037-03-23": "Saint Joseph's Day (observed)", "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", "2037-05-01": "Labour Day", - "2037-05-18": "Ascension of Jesus (Observed)", - "2037-06-08": "Corpus Christi (Observed)", - "2037-06-15": "Sacred Heart (Observed)", + "2037-05-18": "Ascension of Jesus (observed)", + "2037-06-08": "Corpus Christi (observed)", + "2037-06-15": "Sacred Heart (observed)", "2037-06-29": "Saint Peter and Saint Paul", "2037-07-20": "Independence Day", "2037-08-07": "Battle of Boyac\u00e1", - "2037-08-17": "Assumption of Mary (Observed)", + "2037-08-17": "Assumption of Mary (observed)", "2037-10-12": "Columbus Day", - "2037-11-02": "All Saints' Day (Observed)", - "2037-11-16": "Independence of Cartagena (Observed)", + "2037-11-02": "All Saints' Day (observed)", + "2037-11-16": "Independence of Cartagena (observed)", "2037-12-08": "Immaculate Conception", "2037-12-25": "Christmas", "2038-01-01": "New Year's Day", - "2038-01-11": "Epiphany (Observed)", - "2038-03-22": "Saint Joseph's Day (Observed)", + "2038-01-11": "Epiphany (observed)", + "2038-03-22": "Saint Joseph's Day (observed)", "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", "2038-05-01": "Labour Day", - "2038-06-07": "Ascension of Jesus (Observed)", - "2038-06-28": "Corpus Christi (Observed)", - "2038-07-05": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2038-06-07": "Ascension of Jesus (observed)", + "2038-06-28": "Corpus Christi (observed)", + "2038-07-05": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "2038-07-20": "Independence Day", "2038-08-07": "Battle of Boyac\u00e1", - "2038-08-16": "Assumption of Mary (Observed)", - "2038-10-18": "Columbus Day (Observed)", + "2038-08-16": "Assumption of Mary (observed)", + "2038-10-18": "Columbus Day (observed)", "2038-11-01": "All Saints' Day", - "2038-11-15": "Independence of Cartagena (Observed)", + "2038-11-15": "Independence of Cartagena (observed)", "2038-12-08": "Immaculate Conception", "2038-12-25": "Christmas", "2039-01-01": "New Year's Day", - "2039-01-10": "Epiphany (Observed)", - "2039-03-21": "Saint Joseph's Day (Observed)", + "2039-01-10": "Epiphany (observed)", + "2039-03-21": "Saint Joseph's Day (observed)", "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", - "2039-05-23": "Ascension of Jesus (Observed)", - "2039-06-13": "Corpus Christi (Observed)", - "2039-06-20": "Sacred Heart (Observed)", - "2039-07-04": "Saint Peter and Saint Paul (Observed)", + "2039-05-23": "Ascension of Jesus (observed)", + "2039-06-13": "Corpus Christi (observed)", + "2039-06-20": "Sacred Heart (observed)", + "2039-07-04": "Saint Peter and Saint Paul (observed)", "2039-07-20": "Independence Day", "2039-08-07": "Battle of Boyac\u00e1", "2039-08-15": "Assumption of Mary", - "2039-10-17": "Columbus Day (Observed)", - "2039-11-07": "All Saints' Day (Observed)", - "2039-11-14": "Independence of Cartagena (Observed)", + "2039-10-17": "Columbus Day (observed)", + "2039-11-07": "All Saints' Day (observed)", + "2039-11-14": "Independence of Cartagena (observed)", "2039-12-08": "Immaculate Conception", "2039-12-25": "Christmas", "2040-01-01": "New Year's Day", - "2040-01-09": "Epiphany (Observed)", + "2040-01-09": "Epiphany (observed)", "2040-03-19": "Saint Joseph's Day", "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", "2040-05-01": "Labour Day", - "2040-05-14": "Ascension of Jesus (Observed)", - "2040-06-04": "Corpus Christi (Observed)", - "2040-06-11": "Sacred Heart (Observed)", - "2040-07-02": "Saint Peter and Saint Paul (Observed)", + "2040-05-14": "Ascension of Jesus (observed)", + "2040-06-04": "Corpus Christi (observed)", + "2040-06-11": "Sacred Heart (observed)", + "2040-07-02": "Saint Peter and Saint Paul (observed)", "2040-07-20": "Independence Day", "2040-08-07": "Battle of Boyac\u00e1", - "2040-08-20": "Assumption of Mary (Observed)", - "2040-10-15": "Columbus Day (Observed)", - "2040-11-05": "All Saints' Day (Observed)", - "2040-11-12": "Independence of Cartagena (Observed)", + "2040-08-20": "Assumption of Mary (observed)", + "2040-10-15": "Columbus Day (observed)", + "2040-11-05": "All Saints' Day (observed)", + "2040-11-12": "Independence of Cartagena (observed)", "2040-12-08": "Immaculate Conception", "2040-12-25": "Christmas", "2041-01-01": "New Year's Day", - "2041-01-07": "Epiphany (Observed)", - "2041-03-25": "Saint Joseph's Day (Observed)", + "2041-01-07": "Epiphany (observed)", + "2041-03-25": "Saint Joseph's Day (observed)", "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", "2041-05-01": "Labour Day", - "2041-06-03": "Ascension of Jesus (Observed)", - "2041-06-24": "Corpus Christi (Observed)", - "2041-07-01": "Sacred Heart (Observed); Saint Peter and Saint Paul (Observed)", + "2041-06-03": "Ascension of Jesus (observed)", + "2041-06-24": "Corpus Christi (observed)", + "2041-07-01": "Sacred Heart (observed); Saint Peter and Saint Paul (observed)", "2041-07-20": "Independence Day", "2041-08-07": "Battle of Boyac\u00e1", - "2041-08-19": "Assumption of Mary (Observed)", - "2041-10-14": "Columbus Day (Observed)", - "2041-11-04": "All Saints' Day (Observed)", + "2041-08-19": "Assumption of Mary (observed)", + "2041-10-14": "Columbus Day (observed)", + "2041-11-04": "All Saints' Day (observed)", "2041-11-11": "Independence of Cartagena", "2041-12-08": "Immaculate Conception", "2041-12-25": "Christmas", "2042-01-01": "New Year's Day", "2042-01-06": "Epiphany", - "2042-03-24": "Saint Joseph's Day (Observed)", + "2042-03-24": "Saint Joseph's Day (observed)", "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", "2042-05-01": "Labour Day", - "2042-05-19": "Ascension of Jesus (Observed)", - "2042-06-09": "Corpus Christi (Observed)", - "2042-06-16": "Sacred Heart (Observed)", - "2042-06-30": "Saint Peter and Saint Paul (Observed)", + "2042-05-19": "Ascension of Jesus (observed)", + "2042-06-09": "Corpus Christi (observed)", + "2042-06-16": "Sacred Heart (observed)", + "2042-06-30": "Saint Peter and Saint Paul (observed)", "2042-07-20": "Independence Day", "2042-08-07": "Battle of Boyac\u00e1", - "2042-08-18": "Assumption of Mary (Observed)", - "2042-10-13": "Columbus Day (Observed)", - "2042-11-03": "All Saints' Day (Observed)", - "2042-11-17": "Independence of Cartagena (Observed)", + "2042-08-18": "Assumption of Mary (observed)", + "2042-10-13": "Columbus Day (observed)", + "2042-11-03": "All Saints' Day (observed)", + "2042-11-17": "Independence of Cartagena (observed)", "2042-12-08": "Immaculate Conception", "2042-12-25": "Christmas", "2043-01-01": "New Year's Day", - "2043-01-12": "Epiphany (Observed)", - "2043-03-23": "Saint Joseph's Day (Observed)", + "2043-01-12": "Epiphany (observed)", + "2043-03-23": "Saint Joseph's Day (observed)", "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", "2043-05-01": "Labour Day", - "2043-05-11": "Ascension of Jesus (Observed)", - "2043-06-01": "Corpus Christi (Observed)", - "2043-06-08": "Sacred Heart (Observed)", + "2043-05-11": "Ascension of Jesus (observed)", + "2043-06-01": "Corpus Christi (observed)", + "2043-06-08": "Sacred Heart (observed)", "2043-06-29": "Saint Peter and Saint Paul", "2043-07-20": "Independence Day", "2043-08-07": "Battle of Boyac\u00e1", - "2043-08-17": "Assumption of Mary (Observed)", + "2043-08-17": "Assumption of Mary (observed)", "2043-10-12": "Columbus Day", - "2043-11-02": "All Saints' Day (Observed)", - "2043-11-16": "Independence of Cartagena (Observed)", + "2043-11-02": "All Saints' Day (observed)", + "2043-11-16": "Independence of Cartagena (observed)", "2043-12-08": "Immaculate Conception", "2043-12-25": "Christmas", "2044-01-01": "New Year's Day", - "2044-01-11": "Epiphany (Observed)", - "2044-03-21": "Saint Joseph's Day (Observed)", + "2044-01-11": "Epiphany (observed)", + "2044-03-21": "Saint Joseph's Day (observed)", "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", - "2044-05-30": "Ascension of Jesus (Observed)", - "2044-06-20": "Corpus Christi (Observed)", - "2044-06-27": "Sacred Heart (Observed)", - "2044-07-04": "Saint Peter and Saint Paul (Observed)", + "2044-05-30": "Ascension of Jesus (observed)", + "2044-06-20": "Corpus Christi (observed)", + "2044-06-27": "Sacred Heart (observed)", + "2044-07-04": "Saint Peter and Saint Paul (observed)", "2044-07-20": "Independence Day", "2044-08-07": "Battle of Boyac\u00e1", "2044-08-15": "Assumption of Mary", - "2044-10-17": "Columbus Day (Observed)", - "2044-11-07": "All Saints' Day (Observed)", - "2044-11-14": "Independence of Cartagena (Observed)", + "2044-10-17": "Columbus Day (observed)", + "2044-11-07": "All Saints' Day (observed)", + "2044-11-14": "Independence of Cartagena (observed)", "2044-12-08": "Immaculate Conception", "2044-12-25": "Christmas", "2045-01-01": "New Year's Day", - "2045-01-09": "Epiphany (Observed)", - "2045-03-20": "Saint Joseph's Day (Observed)", + "2045-01-09": "Epiphany (observed)", + "2045-03-20": "Saint Joseph's Day (observed)", "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", "2045-05-01": "Labour Day", - "2045-05-22": "Ascension of Jesus (Observed)", - "2045-06-12": "Corpus Christi (Observed)", - "2045-06-19": "Sacred Heart (Observed)", - "2045-07-03": "Saint Peter and Saint Paul (Observed)", + "2045-05-22": "Ascension of Jesus (observed)", + "2045-06-12": "Corpus Christi (observed)", + "2045-06-19": "Sacred Heart (observed)", + "2045-07-03": "Saint Peter and Saint Paul (observed)", "2045-07-20": "Independence Day", "2045-08-07": "Battle of Boyac\u00e1", - "2045-08-21": "Assumption of Mary (Observed)", - "2045-10-16": "Columbus Day (Observed)", - "2045-11-06": "All Saints' Day (Observed)", - "2045-11-13": "Independence of Cartagena (Observed)", + "2045-08-21": "Assumption of Mary (observed)", + "2045-10-16": "Columbus Day (observed)", + "2045-11-06": "All Saints' Day (observed)", + "2045-11-13": "Independence of Cartagena (observed)", "2045-12-08": "Immaculate Conception", "2045-12-25": "Christmas", "2046-01-01": "New Year's Day", - "2046-01-08": "Epiphany (Observed)", + "2046-01-08": "Epiphany (observed)", "2046-03-19": "Saint Joseph's Day", "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", "2046-05-01": "Labour Day", - "2046-05-07": "Ascension of Jesus (Observed)", - "2046-05-28": "Corpus Christi (Observed)", - "2046-06-04": "Sacred Heart (Observed)", - "2046-07-02": "Saint Peter and Saint Paul (Observed)", + "2046-05-07": "Ascension of Jesus (observed)", + "2046-05-28": "Corpus Christi (observed)", + "2046-06-04": "Sacred Heart (observed)", + "2046-07-02": "Saint Peter and Saint Paul (observed)", "2046-07-20": "Independence Day", "2046-08-07": "Battle of Boyac\u00e1", - "2046-08-20": "Assumption of Mary (Observed)", - "2046-10-15": "Columbus Day (Observed)", - "2046-11-05": "All Saints' Day (Observed)", - "2046-11-12": "Independence of Cartagena (Observed)", + "2046-08-20": "Assumption of Mary (observed)", + "2046-10-15": "Columbus Day (observed)", + "2046-11-05": "All Saints' Day (observed)", + "2046-11-12": "Independence of Cartagena (observed)", "2046-12-08": "Immaculate Conception", "2046-12-25": "Christmas", "2047-01-01": "New Year's Day", - "2047-01-07": "Epiphany (Observed)", - "2047-03-25": "Saint Joseph's Day (Observed)", + "2047-01-07": "Epiphany (observed)", + "2047-03-25": "Saint Joseph's Day (observed)", "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", "2047-05-01": "Labour Day", - "2047-05-27": "Ascension of Jesus (Observed)", - "2047-06-17": "Corpus Christi (Observed)", - "2047-06-24": "Sacred Heart (Observed)", - "2047-07-01": "Saint Peter and Saint Paul (Observed)", + "2047-05-27": "Ascension of Jesus (observed)", + "2047-06-17": "Corpus Christi (observed)", + "2047-06-24": "Sacred Heart (observed)", + "2047-07-01": "Saint Peter and Saint Paul (observed)", "2047-07-20": "Independence Day", "2047-08-07": "Battle of Boyac\u00e1", - "2047-08-19": "Assumption of Mary (Observed)", - "2047-10-14": "Columbus Day (Observed)", - "2047-11-04": "All Saints' Day (Observed)", + "2047-08-19": "Assumption of Mary (observed)", + "2047-10-14": "Columbus Day (observed)", + "2047-11-04": "All Saints' Day (observed)", "2047-11-11": "Independence of Cartagena", "2047-12-08": "Immaculate Conception", "2047-12-25": "Christmas", "2048-01-01": "New Year's Day", "2048-01-06": "Epiphany", - "2048-03-23": "Saint Joseph's Day (Observed)", + "2048-03-23": "Saint Joseph's Day (observed)", "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", "2048-05-01": "Labour Day", - "2048-05-18": "Ascension of Jesus (Observed)", - "2048-06-08": "Corpus Christi (Observed)", - "2048-06-15": "Sacred Heart (Observed)", + "2048-05-18": "Ascension of Jesus (observed)", + "2048-06-08": "Corpus Christi (observed)", + "2048-06-15": "Sacred Heart (observed)", "2048-06-29": "Saint Peter and Saint Paul", "2048-07-20": "Independence Day", "2048-08-07": "Battle of Boyac\u00e1", - "2048-08-17": "Assumption of Mary (Observed)", + "2048-08-17": "Assumption of Mary (observed)", "2048-10-12": "Columbus Day", - "2048-11-02": "All Saints' Day (Observed)", - "2048-11-16": "Independence of Cartagena (Observed)", + "2048-11-02": "All Saints' Day (observed)", + "2048-11-16": "Independence of Cartagena (observed)", "2048-12-08": "Immaculate Conception", "2048-12-25": "Christmas", "2049-01-01": "New Year's Day", - "2049-01-11": "Epiphany (Observed)", - "2049-03-22": "Saint Joseph's Day (Observed)", + "2049-01-11": "Epiphany (observed)", + "2049-03-22": "Saint Joseph's Day (observed)", "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", "2049-05-01": "Labour Day", - "2049-05-31": "Ascension of Jesus (Observed)", - "2049-06-21": "Corpus Christi (Observed)", - "2049-06-28": "Sacred Heart (Observed)", - "2049-07-05": "Saint Peter and Saint Paul (Observed)", + "2049-05-31": "Ascension of Jesus (observed)", + "2049-06-21": "Corpus Christi (observed)", + "2049-06-28": "Sacred Heart (observed)", + "2049-07-05": "Saint Peter and Saint Paul (observed)", "2049-07-20": "Independence Day", "2049-08-07": "Battle of Boyac\u00e1", - "2049-08-16": "Assumption of Mary (Observed)", - "2049-10-18": "Columbus Day (Observed)", + "2049-08-16": "Assumption of Mary (observed)", + "2049-10-18": "Columbus Day (observed)", "2049-11-01": "All Saints' Day", - "2049-11-15": "Independence of Cartagena (Observed)", + "2049-11-15": "Independence of Cartagena (observed)", "2049-12-08": "Immaculate Conception", "2049-12-25": "Christmas", "2050-01-01": "New Year's Day", - "2050-01-10": "Epiphany (Observed)", - "2050-03-21": "Saint Joseph's Day (Observed)", + "2050-01-10": "Epiphany (observed)", + "2050-03-21": "Saint Joseph's Day (observed)", "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", - "2050-05-23": "Ascension of Jesus (Observed)", - "2050-06-13": "Corpus Christi (Observed)", - "2050-06-20": "Sacred Heart (Observed)", - "2050-07-04": "Saint Peter and Saint Paul (Observed)", + "2050-05-23": "Ascension of Jesus (observed)", + "2050-06-13": "Corpus Christi (observed)", + "2050-06-20": "Sacred Heart (observed)", + "2050-07-04": "Saint Peter and Saint Paul (observed)", "2050-07-20": "Independence Day", "2050-08-07": "Battle of Boyac\u00e1", "2050-08-15": "Assumption of Mary", - "2050-10-17": "Columbus Day (Observed)", - "2050-11-07": "All Saints' Day (Observed)", - "2050-11-14": "Independence of Cartagena (Observed)", + "2050-10-17": "Columbus Day (observed)", + "2050-11-07": "All Saints' Day (observed)", + "2050-11-14": "Independence of Cartagena (observed)", "2050-12-08": "Immaculate Conception", "2050-12-25": "Christmas" } diff --git a/snapshots/countries/CR_COMMON.json b/snapshots/countries/CR_COMMON.json index ded696291..e52ad0916 100644 --- a/snapshots/countries/CR_COMMON.json +++ b/snapshots/countries/CR_COMMON.json @@ -8,7 +8,7 @@ "1950-08-02": "Feast of Our Lady of the Angels", "1950-08-15": "Mother's Day", "1950-09-15": "Independence Day", - "1950-10-16": "Cultures Day (Observed)", + "1950-10-16": "Cultures Day (observed)", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", "1951-03-22": "Maundy Thursday", @@ -19,7 +19,7 @@ "1951-08-02": "Feast of Our Lady of the Angels", "1951-08-15": "Mother's Day", "1951-09-15": "Independence Day", - "1951-10-15": "Cultures Day (Observed)", + "1951-10-15": "Cultures Day (observed)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-04-10": "Maundy Thursday", @@ -51,7 +51,7 @@ "1954-08-02": "Feast of Our Lady of the Angels", "1954-08-15": "Mother's Day", "1954-09-15": "Independence Day", - "1954-10-18": "Cultures Day (Observed)", + "1954-10-18": "Cultures Day (observed)", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-04-07": "Maundy Thursday", @@ -62,7 +62,7 @@ "1955-08-02": "Feast of Our Lady of the Angels", "1955-08-15": "Mother's Day", "1955-09-15": "Independence Day", - "1955-10-17": "Cultures Day (Observed)", + "1955-10-17": "Cultures Day (observed)", "1955-12-25": "Christmas Day", "1956-01-01": "New Year's Day", "1956-03-29": "Maundy Thursday", @@ -73,7 +73,7 @@ "1956-08-02": "Feast of Our Lady of the Angels", "1956-08-15": "Mother's Day", "1956-09-15": "Independence Day", - "1956-10-15": "Cultures Day (Observed)", + "1956-10-15": "Cultures Day (observed)", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-04-11": "Juan Santamar\u00eda Day", @@ -117,7 +117,7 @@ "1960-08-02": "Feast of Our Lady of the Angels", "1960-08-15": "Mother's Day", "1960-09-15": "Independence Day", - "1960-10-17": "Cultures Day (Observed)", + "1960-10-17": "Cultures Day (observed)", "1960-12-25": "Christmas Day", "1961-01-01": "New Year's Day", "1961-03-30": "Maundy Thursday", @@ -128,7 +128,7 @@ "1961-08-02": "Feast of Our Lady of the Angels", "1961-08-15": "Mother's Day", "1961-09-15": "Independence Day", - "1961-10-16": "Cultures Day (Observed)", + "1961-10-16": "Cultures Day (observed)", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", "1962-04-11": "Juan Santamar\u00eda Day", @@ -139,7 +139,7 @@ "1962-08-02": "Feast of Our Lady of the Angels", "1962-08-15": "Mother's Day", "1962-09-15": "Independence Day", - "1962-10-15": "Cultures Day (Observed)", + "1962-10-15": "Cultures Day (observed)", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-04-11": "Juan Santamar\u00eda Day; Maundy Thursday", @@ -171,7 +171,7 @@ "1965-08-02": "Feast of Our Lady of the Angels", "1965-08-15": "Mother's Day", "1965-09-15": "Independence Day", - "1965-10-18": "Cultures Day (Observed)", + "1965-10-18": "Cultures Day (observed)", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-04-07": "Maundy Thursday", @@ -182,7 +182,7 @@ "1966-08-02": "Feast of Our Lady of the Angels", "1966-08-15": "Mother's Day", "1966-09-15": "Independence Day", - "1966-10-17": "Cultures Day (Observed)", + "1966-10-17": "Cultures Day (observed)", "1966-12-25": "Christmas Day", "1967-01-01": "New Year's Day", "1967-03-23": "Maundy Thursday", @@ -193,7 +193,7 @@ "1967-08-02": "Feast of Our Lady of the Angels", "1967-08-15": "Mother's Day", "1967-09-15": "Independence Day", - "1967-10-16": "Cultures Day (Observed)", + "1967-10-16": "Cultures Day (observed)", "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", "1968-04-11": "Juan Santamar\u00eda Day; Maundy Thursday", @@ -236,7 +236,7 @@ "1971-08-02": "Feast of Our Lady of the Angels", "1971-08-15": "Mother's Day", "1971-09-15": "Independence Day", - "1971-10-18": "Cultures Day (Observed)", + "1971-10-18": "Cultures Day (observed)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", "1972-03-30": "Maundy Thursday", @@ -247,7 +247,7 @@ "1972-08-02": "Feast of Our Lady of the Angels", "1972-08-15": "Mother's Day", "1972-09-15": "Independence Day", - "1972-10-16": "Cultures Day (Observed)", + "1972-10-16": "Cultures Day (observed)", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-11": "Juan Santamar\u00eda Day", @@ -258,7 +258,7 @@ "1973-08-02": "Feast of Our Lady of the Angels", "1973-08-15": "Mother's Day", "1973-09-15": "Independence Day", - "1973-10-15": "Cultures Day (Observed)", + "1973-10-15": "Cultures Day (observed)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-04-11": "Juan Santamar\u00eda Day; Maundy Thursday", @@ -290,7 +290,7 @@ "1976-08-02": "Feast of Our Lady of the Angels", "1976-08-15": "Mother's Day", "1976-09-15": "Independence Day", - "1976-10-18": "Cultures Day (Observed)", + "1976-10-18": "Cultures Day (observed)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-04-07": "Maundy Thursday", @@ -301,7 +301,7 @@ "1977-08-02": "Feast of Our Lady of the Angels", "1977-08-15": "Mother's Day", "1977-09-15": "Independence Day", - "1977-10-17": "Cultures Day (Observed)", + "1977-10-17": "Cultures Day (observed)", "1977-12-25": "Christmas Day", "1978-01-01": "New Year's Day", "1978-03-23": "Maundy Thursday", @@ -312,7 +312,7 @@ "1978-08-02": "Feast of Our Lady of the Angels", "1978-08-15": "Mother's Day", "1978-09-15": "Independence Day", - "1978-10-16": "Cultures Day (Observed)", + "1978-10-16": "Cultures Day (observed)", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-04-11": "Juan Santamar\u00eda Day", @@ -323,7 +323,7 @@ "1979-08-02": "Feast of Our Lady of the Angels", "1979-08-15": "Mother's Day", "1979-09-15": "Independence Day", - "1979-10-15": "Cultures Day (Observed)", + "1979-10-15": "Cultures Day (observed)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-04-03": "Maundy Thursday", @@ -356,7 +356,7 @@ "1982-08-02": "Feast of Our Lady of the Angels", "1982-08-15": "Mother's Day", "1982-09-15": "Independence Day", - "1982-10-18": "Cultures Day (Observed)", + "1982-10-18": "Cultures Day (observed)", "1982-12-25": "Christmas Day", "1983-01-01": "New Year's Day", "1983-03-31": "Maundy Thursday", @@ -367,7 +367,7 @@ "1983-08-02": "Feast of Our Lady of the Angels", "1983-08-15": "Mother's Day", "1983-09-15": "Independence Day", - "1983-10-17": "Cultures Day (Observed)", + "1983-10-17": "Cultures Day (observed)", "1983-12-25": "Christmas Day", "1984-01-01": "New Year's Day", "1984-04-11": "Juan Santamar\u00eda Day", @@ -378,7 +378,7 @@ "1984-08-02": "Feast of Our Lady of the Angels", "1984-08-15": "Mother's Day", "1984-09-15": "Independence Day", - "1984-10-15": "Cultures Day (Observed)", + "1984-10-15": "Cultures Day (observed)", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-04-04": "Maundy Thursday", @@ -422,7 +422,7 @@ "1988-08-02": "Feast of Our Lady of the Angels", "1988-08-15": "Mother's Day", "1988-09-15": "Independence Day", - "1988-10-17": "Cultures Day (Observed)", + "1988-10-17": "Cultures Day (observed)", "1988-12-25": "Christmas Day", "1989-01-01": "New Year's Day", "1989-03-23": "Maundy Thursday", @@ -433,7 +433,7 @@ "1989-08-02": "Feast of Our Lady of the Angels", "1989-08-15": "Mother's Day", "1989-09-15": "Independence Day", - "1989-10-16": "Cultures Day (Observed)", + "1989-10-16": "Cultures Day (observed)", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-04-11": "Juan Santamar\u00eda Day", @@ -444,7 +444,7 @@ "1990-08-02": "Feast of Our Lady of the Angels", "1990-08-15": "Mother's Day", "1990-09-15": "Independence Day", - "1990-10-15": "Cultures Day (Observed)", + "1990-10-15": "Cultures Day (observed)", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-03-28": "Maundy Thursday", @@ -477,7 +477,7 @@ "1993-08-02": "Feast of Our Lady of the Angels", "1993-08-15": "Mother's Day", "1993-09-15": "Independence Day", - "1993-10-18": "Cultures Day (Observed)", + "1993-10-18": "Cultures Day (observed)", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-03-31": "Maundy Thursday", @@ -488,7 +488,7 @@ "1994-08-02": "Feast of Our Lady of the Angels", "1994-08-15": "Mother's Day", "1994-09-15": "Independence Day", - "1994-10-17": "Cultures Day (Observed)", + "1994-10-17": "Cultures Day (observed)", "1994-12-25": "Christmas Day", "1995-01-01": "New Year's Day", "1995-04-11": "Juan Santamar\u00eda Day", @@ -499,7 +499,7 @@ "1995-08-02": "Feast of Our Lady of the Angels", "1995-08-15": "Mother's Day", "1995-09-15": "Independence Day", - "1995-10-16": "Cultures Day (Observed)", + "1995-10-16": "Cultures Day (observed)", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-04-04": "Maundy Thursday", @@ -543,7 +543,7 @@ "1999-08-02": "Feast of Our Lady of the Angels", "1999-08-15": "Mother's Day", "1999-09-15": "Independence Day", - "1999-10-18": "Cultures Day (Observed)", + "1999-10-18": "Cultures Day (observed)", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", "2000-04-11": "Juan Santamar\u00eda Day", @@ -554,7 +554,7 @@ "2000-08-02": "Feast of Our Lady of the Angels", "2000-08-15": "Mother's Day", "2000-09-15": "Independence Day", - "2000-10-16": "Cultures Day (Observed)", + "2000-10-16": "Cultures Day (observed)", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", "2001-04-11": "Juan Santamar\u00eda Day", @@ -565,7 +565,7 @@ "2001-08-02": "Feast of Our Lady of the Angels", "2001-08-15": "Mother's Day", "2001-09-15": "Independence Day", - "2001-10-15": "Cultures Day (Observed)", + "2001-10-15": "Cultures Day (observed)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-03-28": "Maundy Thursday", @@ -598,7 +598,7 @@ "2004-08-02": "Feast of Our Lady of the Angels", "2004-08-15": "Mother's Day", "2004-09-15": "Independence Day", - "2004-10-18": "Cultures Day (Observed)", + "2004-10-18": "Cultures Day (observed)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-03-24": "Maundy Thursday", @@ -609,36 +609,36 @@ "2005-08-02": "Feast of Our Lady of the Angels", "2005-08-15": "Mother's Day", "2005-09-15": "Independence Day", - "2005-10-17": "Cultures Day (Observed)", + "2005-10-17": "Cultures Day (observed)", "2005-12-25": "Christmas Day", "2006-01-01": "New Year's Day", "2006-04-13": "Maundy Thursday", "2006-04-14": "Good Friday", - "2006-04-17": "Juan Santamar\u00eda Day (Observed)", + "2006-04-17": "Juan Santamar\u00eda Day (observed)", "2006-05-01": "International Workers' Day", - "2006-07-31": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2006-07-31": "Annexation of the Party of Nicoya to Costa Rica (observed)", "2006-08-02": "Feast of Our Lady of the Angels", - "2006-08-21": "Mother's Day (Observed)", + "2006-08-21": "Mother's Day (observed)", "2006-09-15": "Independence Day", - "2006-10-16": "Cultures Day (Observed)", + "2006-10-16": "Cultures Day (observed)", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", "2007-04-05": "Maundy Thursday", "2007-04-06": "Good Friday", - "2007-04-16": "Juan Santamar\u00eda Day (Observed)", + "2007-04-16": "Juan Santamar\u00eda Day (observed)", "2007-05-01": "International Workers' Day", - "2007-07-30": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2007-07-30": "Annexation of the Party of Nicoya to Costa Rica (observed)", "2007-08-02": "Feast of Our Lady of the Angels", - "2007-08-20": "Mother's Day (Observed)", + "2007-08-20": "Mother's Day (observed)", "2007-09-15": "Independence Day", - "2007-10-15": "Cultures Day (Observed)", + "2007-10-15": "Cultures Day (observed)", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-03-20": "Maundy Thursday", "2008-03-21": "Good Friday", - "2008-04-14": "Juan Santamar\u00eda Day (Observed)", + "2008-04-14": "Juan Santamar\u00eda Day (observed)", "2008-05-01": "International Workers' Day", - "2008-07-28": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2008-07-28": "Annexation of the Party of Nicoya to Costa Rica (observed)", "2008-08-02": "Feast of Our Lady of the Angels", "2008-08-15": "Mother's Day", "2008-09-15": "Independence Day", @@ -664,7 +664,7 @@ "2010-08-02": "Feast of Our Lady of the Angels", "2010-08-15": "Mother's Day", "2010-09-15": "Independence Day", - "2010-10-18": "Cultures Day (Observed)", + "2010-10-18": "Cultures Day (observed)", "2010-12-25": "Christmas Day", "2011-01-01": "New Year's Day", "2011-04-11": "Juan Santamar\u00eda Day", @@ -675,7 +675,7 @@ "2011-08-02": "Feast of Our Lady of the Angels", "2011-08-15": "Mother's Day", "2011-09-15": "Independence Day", - "2011-10-17": "Cultures Day (Observed)", + "2011-10-17": "Cultures Day (observed)", "2011-12-25": "Christmas Day", "2012-01-01": "New Year's Day", "2012-04-05": "Maundy Thursday", @@ -686,7 +686,7 @@ "2012-08-02": "Feast of Our Lady of the Angels", "2012-08-15": "Mother's Day", "2012-09-15": "Independence Day", - "2012-10-15": "Cultures Day (Observed)", + "2012-10-15": "Cultures Day (observed)", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-03-28": "Maundy Thursday", @@ -730,7 +730,7 @@ "2016-08-02": "Feast of Our Lady of the Angels", "2016-08-15": "Mother's Day", "2016-09-15": "Independence Day", - "2016-10-17": "Cultures Day (Observed)", + "2016-10-17": "Cultures Day (observed)", "2016-12-25": "Christmas Day", "2017-01-01": "New Year's Day", "2017-04-11": "Juan Santamar\u00eda Day", @@ -741,7 +741,7 @@ "2017-08-02": "Feast of Our Lady of the Angels", "2017-08-15": "Mother's Day", "2017-09-15": "Independence Day", - "2017-10-16": "Cultures Day (Observed)", + "2017-10-16": "Cultures Day (observed)", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", "2018-03-29": "Maundy Thursday", @@ -752,7 +752,7 @@ "2018-08-02": "Feast of Our Lady of the Angels", "2018-08-15": "Mother's Day", "2018-09-15": "Independence Day", - "2018-10-15": "Cultures Day (Observed)", + "2018-10-15": "Cultures Day (observed)", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-04-11": "Juan Santamar\u00eda Day", @@ -770,22 +770,22 @@ "2020-04-10": "Good Friday", "2020-04-11": "Juan Santamar\u00eda Day", "2020-05-01": "International Workers' Day", - "2020-07-27": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2020-07-27": "Annexation of the Party of Nicoya to Costa Rica (observed)", "2020-08-02": "Feast of Our Lady of the Angels", - "2020-08-17": "Mother's Day (Observed)", - "2020-09-14": "Independence Day (Observed)", - "2020-11-30": "Army Abolition Day (Observed)", + "2020-08-17": "Mother's Day (observed)", + "2020-09-14": "Independence Day (observed)", + "2020-11-30": "Army Abolition Day (observed)", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", "2021-04-01": "Maundy Thursday", "2021-04-02": "Good Friday", "2021-04-11": "Juan Santamar\u00eda Day", - "2021-05-03": "International Workers' Day (Observed)", - "2021-07-26": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2021-05-03": "International Workers' Day (observed)", + "2021-07-26": "Annexation of the Party of Nicoya to Costa Rica (observed)", "2021-08-02": "Feast of Our Lady of the Angels", "2021-08-15": "Mother's Day", - "2021-09-13": "Independence Day (Observed)", - "2021-11-29": "Army Abolition Day (Observed)", + "2021-09-13": "Independence Day (observed)", + "2021-11-29": "Army Abolition Day (observed)", "2021-12-25": "Christmas Day", "2022-01-01": "New Year's Day", "2022-04-11": "Juan Santamar\u00eda Day", @@ -795,32 +795,32 @@ "2022-07-25": "Annexation of the Party of Nicoya to Costa Rica", "2022-08-02": "Feast of Our Lady of the Angels", "2022-08-15": "Mother's Day", - "2022-09-04": "Day of the Black Person and Afro-Costa Rican Culture (Observed)", - "2022-09-19": "Independence Day (Observed)", - "2022-12-05": "Army Abolition Day (Observed)", + "2022-09-04": "Day of the Black Person and Afro-Costa Rican Culture (observed)", + "2022-09-19": "Independence Day (observed)", + "2022-12-05": "Army Abolition Day (observed)", "2022-12-25": "Christmas Day", "2023-01-01": "New Year's Day", "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", - "2023-04-10": "Juan Santamar\u00eda Day (Observed)", + "2023-04-10": "Juan Santamar\u00eda Day (observed)", "2023-05-01": "International Workers' Day", - "2023-07-24": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2023-07-24": "Annexation of the Party of Nicoya to Costa Rica (observed)", "2023-08-02": "Feast of Our Lady of the Angels", - "2023-08-14": "Mother's Day (Observed)", - "2023-09-03": "Day of the Black Person and Afro-Costa Rican Culture (Observed)", + "2023-08-14": "Mother's Day (observed)", + "2023-09-03": "Day of the Black Person and Afro-Costa Rican Culture (observed)", "2023-09-15": "Independence Day", "2023-12-01": "Army Abolition Day", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", - "2024-04-15": "Juan Santamar\u00eda Day (Observed)", + "2024-04-15": "Juan Santamar\u00eda Day (observed)", "2024-05-01": "International Workers' Day", - "2024-07-29": "Annexation of the Party of Nicoya to Costa Rica (Observed)", + "2024-07-29": "Annexation of the Party of Nicoya to Costa Rica (observed)", "2024-08-02": "Feast of Our Lady of the Angels", - "2024-08-19": "Mother's Day (Observed)", + "2024-08-19": "Mother's Day (observed)", "2024-08-31": "Day of the Black Person and Afro-Costa Rican Culture", - "2024-09-16": "Independence Day (Observed)", + "2024-09-16": "Independence Day (observed)", "2024-12-01": "Army Abolition Day", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", diff --git a/snapshots/countries/CU_COMMON.json b/snapshots/countries/CU_COMMON.json index 31b05947a..3e29e7114 100644 --- a/snapshots/countries/CU_COMMON.json +++ b/snapshots/countries/CU_COMMON.json @@ -8,14 +8,14 @@ "1959-12-25": "Christmas Day", "1960-01-01": "Liberation Day", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (Observed)", + "1960-05-02": "Labour Day (observed)", "1960-07-25": "Commemoration of the Assault of the Moncada garrison", "1960-07-26": "Day of the National Rebellion", "1960-07-27": "Commemoration of the Assault of the Moncada garrison", "1960-10-10": "Independence Day", "1960-12-25": "Christmas Day", "1961-01-01": "Liberation Day", - "1961-01-02": "Liberation Day (Observed)", + "1961-01-02": "Liberation Day (observed)", "1961-05-01": "Labour Day", "1961-07-25": "Commemoration of the Assault of the Moncada garrison", "1961-07-26": "Day of the National Rebellion", @@ -49,18 +49,18 @@ "1965-07-26": "Day of the National Rebellion", "1965-07-27": "Commemoration of the Assault of the Moncada garrison", "1965-10-10": "Independence Day", - "1965-10-11": "Independence Day (Observed)", + "1965-10-11": "Independence Day (observed)", "1965-12-25": "Christmas Day", "1966-01-01": "Liberation Day", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (Observed)", + "1966-05-02": "Labour Day (observed)", "1966-07-25": "Commemoration of the Assault of the Moncada garrison", "1966-07-26": "Day of the National Rebellion", "1966-07-27": "Commemoration of the Assault of the Moncada garrison", "1966-10-10": "Independence Day", "1966-12-25": "Christmas Day", "1967-01-01": "Liberation Day", - "1967-01-02": "Liberation Day (Observed)", + "1967-01-02": "Liberation Day (observed)", "1967-05-01": "Labour Day", "1967-07-25": "Commemoration of the Assault of the Moncada garrison", "1967-07-26": "Day of the National Rebellion", @@ -92,7 +92,7 @@ "1971-07-26": "Day of the National Rebellion", "1971-07-27": "Commemoration of the Assault of the Moncada garrison", "1971-10-10": "Independence Day", - "1971-10-11": "Independence Day (Observed)", + "1971-10-11": "Independence Day (observed)", "1972-01-01": "Liberation Day", "1972-05-01": "Labour Day", "1972-07-25": "Commemoration of the Assault of the Moncada garrison", @@ -123,16 +123,16 @@ "1976-07-26": "Day of the National Rebellion", "1976-07-27": "Commemoration of the Assault of the Moncada garrison", "1976-10-10": "Independence Day", - "1976-10-11": "Independence Day (Observed)", + "1976-10-11": "Independence Day (observed)", "1977-01-01": "Liberation Day", "1977-05-01": "Labour Day", - "1977-05-02": "Labour Day (Observed)", + "1977-05-02": "Labour Day (observed)", "1977-07-25": "Commemoration of the Assault of the Moncada garrison", "1977-07-26": "Day of the National Rebellion", "1977-07-27": "Commemoration of the Assault of the Moncada garrison", "1977-10-10": "Independence Day", "1978-01-01": "Liberation Day", - "1978-01-02": "Liberation Day (Observed)", + "1978-01-02": "Liberation Day (observed)", "1978-05-01": "Labour Day", "1978-07-25": "Commemoration of the Assault of the Moncada garrison", "1978-07-26": "Day of the National Rebellion", @@ -162,16 +162,16 @@ "1982-07-26": "Day of the National Rebellion", "1982-07-27": "Commemoration of the Assault of the Moncada garrison", "1982-10-10": "Independence Day", - "1982-10-11": "Independence Day (Observed)", + "1982-10-11": "Independence Day (observed)", "1983-01-01": "Liberation Day", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-07-25": "Commemoration of the Assault of the Moncada garrison", "1983-07-26": "Day of the National Rebellion", "1983-07-27": "Commemoration of the Assault of the Moncada garrison", "1983-10-10": "Independence Day", "1984-01-01": "Liberation Day", - "1984-01-02": "Liberation Day (Observed)", + "1984-01-02": "Liberation Day (observed)", "1984-05-01": "Labour Day", "1984-07-25": "Commemoration of the Assault of the Moncada garrison", "1984-07-26": "Day of the National Rebellion", @@ -197,13 +197,13 @@ "1987-10-10": "Independence Day", "1988-01-01": "Liberation Day", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-07-25": "Commemoration of the Assault of the Moncada garrison", "1988-07-26": "Day of the National Rebellion", "1988-07-27": "Commemoration of the Assault of the Moncada garrison", "1988-10-10": "Independence Day", "1989-01-01": "Liberation Day", - "1989-01-02": "Liberation Day (Observed)", + "1989-01-02": "Liberation Day (observed)", "1989-05-01": "Labour Day", "1989-07-25": "Commemoration of the Assault of the Moncada garrison", "1989-07-26": "Day of the National Rebellion", @@ -233,16 +233,16 @@ "1993-07-26": "Day of the National Rebellion", "1993-07-27": "Commemoration of the Assault of the Moncada garrison", "1993-10-10": "Independence Day", - "1993-10-11": "Independence Day (Observed)", + "1993-10-11": "Independence Day (observed)", "1994-01-01": "Liberation Day", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-07-25": "Commemoration of the Assault of the Moncada garrison", "1994-07-26": "Day of the National Rebellion", "1994-07-27": "Commemoration of the Assault of the Moncada garrison", "1994-10-10": "Independence Day", "1995-01-01": "Liberation Day", - "1995-01-02": "Liberation Day (Observed)", + "1995-01-02": "Liberation Day (observed)", "1995-05-01": "Labour Day", "1995-07-25": "Commemoration of the Assault of the Moncada garrison", "1995-07-26": "Day of the National Rebellion", @@ -274,7 +274,7 @@ "1999-07-26": "Day of the National Rebellion", "1999-07-27": "Commemoration of the Assault of the Moncada garrison", "1999-10-10": "Independence Day", - "1999-10-11": "Independence Day (Observed)", + "1999-10-11": "Independence Day (observed)", "1999-12-25": "Christmas Day", "2000-01-01": "Liberation Day", "2000-05-01": "Labour Day", @@ -310,18 +310,18 @@ "2004-07-26": "Day of the National Rebellion", "2004-07-27": "Commemoration of the Assault of the Moncada garrison", "2004-10-10": "Independence Day", - "2004-10-11": "Independence Day (Observed)", + "2004-10-11": "Independence Day (observed)", "2004-12-25": "Christmas Day", "2005-01-01": "Liberation Day", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-07-25": "Commemoration of the Assault of the Moncada garrison", "2005-07-26": "Day of the National Rebellion", "2005-07-27": "Commemoration of the Assault of the Moncada garrison", "2005-10-10": "Independence Day", "2005-12-25": "Christmas Day", "2006-01-01": "Liberation Day", - "2006-01-02": "Liberation Day (Observed)", + "2006-01-02": "Liberation Day (observed)", "2006-05-01": "Labour Day", "2006-07-25": "Commemoration of the Assault of the Moncada garrison", "2006-07-26": "Day of the National Rebellion", @@ -361,13 +361,13 @@ "2010-07-26": "Day of the National Rebellion", "2010-07-27": "Commemoration of the Assault of the Moncada garrison", "2010-10-10": "Independence Day", - "2010-10-11": "Independence Day (Observed)", + "2010-10-11": "Independence Day (observed)", "2010-12-25": "Christmas Day", "2010-12-31": "New Year's Eve", "2011-01-01": "Liberation Day", "2011-01-02": "Victory Day", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-07-25": "Commemoration of the Assault of the Moncada garrison", "2011-07-26": "Day of the National Rebellion", "2011-07-27": "Commemoration of the Assault of the Moncada garrison", @@ -375,7 +375,7 @@ "2011-12-25": "Christmas Day", "2011-12-31": "New Year's Eve", "2012-01-01": "Liberation Day", - "2012-01-02": "Liberation Day (Observed); Victory Day", + "2012-01-02": "Liberation Day (observed); Victory Day", "2012-04-06": "Good Friday", "2012-05-01": "Labour Day", "2012-07-25": "Commemoration of the Assault of the Moncada garrison", @@ -418,7 +418,7 @@ "2016-01-02": "Victory Day", "2016-03-25": "Good Friday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-07-25": "Commemoration of the Assault of the Moncada garrison", "2016-07-26": "Day of the National Rebellion", "2016-07-27": "Commemoration of the Assault of the Moncada garrison", @@ -473,14 +473,14 @@ "2021-07-26": "Day of the National Rebellion", "2021-07-27": "Commemoration of the Assault of the Moncada garrison", "2021-10-10": "Independence Day", - "2021-10-11": "Independence Day (Observed)", + "2021-10-11": "Independence Day (observed)", "2021-12-25": "Christmas Day", "2021-12-31": "New Year's Eve", "2022-01-01": "Liberation Day", "2022-01-02": "Victory Day", "2022-04-15": "Good Friday", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-07-25": "Commemoration of the Assault of the Moncada garrison", "2022-07-26": "Day of the National Rebellion", "2022-07-27": "Commemoration of the Assault of the Moncada garrison", @@ -535,7 +535,7 @@ "2027-07-26": "Day of the National Rebellion", "2027-07-27": "Commemoration of the Assault of the Moncada garrison", "2027-10-10": "Independence Day", - "2027-10-11": "Independence Day (Observed)", + "2027-10-11": "Independence Day (observed)", "2027-12-25": "Christmas Day", "2027-12-31": "New Year's Eve", "2028-01-01": "Liberation Day", @@ -586,14 +586,14 @@ "2032-07-26": "Day of the National Rebellion", "2032-07-27": "Commemoration of the Assault of the Moncada garrison", "2032-10-10": "Independence Day", - "2032-10-11": "Independence Day (Observed)", + "2032-10-11": "Independence Day (observed)", "2032-12-25": "Christmas Day", "2032-12-31": "New Year's Eve", "2033-01-01": "Liberation Day", "2033-01-02": "Victory Day", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-07-25": "Commemoration of the Assault of the Moncada garrison", "2033-07-26": "Day of the National Rebellion", "2033-07-27": "Commemoration of the Assault of the Moncada garrison", @@ -648,14 +648,14 @@ "2038-07-26": "Day of the National Rebellion", "2038-07-27": "Commemoration of the Assault of the Moncada garrison", "2038-10-10": "Independence Day", - "2038-10-11": "Independence Day (Observed)", + "2038-10-11": "Independence Day (observed)", "2038-12-25": "Christmas Day", "2038-12-31": "New Year's Eve", "2039-01-01": "Liberation Day", "2039-01-02": "Victory Day", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-07-25": "Commemoration of the Assault of the Moncada garrison", "2039-07-26": "Day of the National Rebellion", "2039-07-27": "Commemoration of the Assault of the Moncada garrison", @@ -706,7 +706,7 @@ "2044-01-02": "Victory Day", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-07-25": "Commemoration of the Assault of the Moncada garrison", "2044-07-26": "Day of the National Rebellion", "2044-07-27": "Commemoration of the Assault of the Moncada garrison", @@ -761,14 +761,14 @@ "2049-07-26": "Day of the National Rebellion", "2049-07-27": "Commemoration of the Assault of the Moncada garrison", "2049-10-10": "Independence Day", - "2049-10-11": "Independence Day (Observed)", + "2049-10-11": "Independence Day (observed)", "2049-12-25": "Christmas Day", "2049-12-31": "New Year's Eve", "2050-01-01": "Liberation Day", "2050-01-02": "Victory Day", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-07-25": "Commemoration of the Assault of the Moncada garrison", "2050-07-26": "Day of the National Rebellion", "2050-07-27": "Commemoration of the Assault of the Moncada garrison", diff --git a/snapshots/countries/EC_COMMON.json b/snapshots/countries/EC_COMMON.json index 6084f9557..c02db851b 100644 --- a/snapshots/countries/EC_COMMON.json +++ b/snapshots/countries/EC_COMMON.json @@ -737,15 +737,15 @@ "2016-11-03": "Independence of Cuenca", "2016-12-25": "Christmas Day", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-27": "Carnival", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", "2017-05-01": "Labour Day", "2017-05-24": "The Battle of Pichincha", - "2017-05-26": "The Battle of Pichincha (Observed)", + "2017-05-26": "The Battle of Pichincha (observed)", "2017-08-10": "Declaration of Independence of Quito", - "2017-08-11": "Declaration of Independence of Quito (Observed)", + "2017-08-11": "Declaration of Independence of Quito (observed)", "2017-10-09": "Independence of Guayaquil", "2017-11-02": "All Souls' Day", "2017-11-03": "Independence of Cuenca", @@ -754,12 +754,12 @@ "2018-02-12": "Carnival", "2018-02-13": "Carnival", "2018-03-30": "Good Friday", - "2018-04-30": "Labour Day (Observed)", + "2018-04-30": "Labour Day (observed)", "2018-05-01": "Labour Day", "2018-05-24": "The Battle of Pichincha", - "2018-05-25": "The Battle of Pichincha (Observed)", + "2018-05-25": "The Battle of Pichincha (observed)", "2018-08-10": "Declaration of Independence of Quito", - "2018-10-08": "Independence of Guayaquil (Observed)", + "2018-10-08": "Independence of Guayaquil (observed)", "2018-10-09": "Independence of Guayaquil", "2018-11-02": "All Souls' Day", "2018-11-03": "Independence of Cuenca", @@ -769,16 +769,16 @@ "2019-03-05": "Carnival", "2019-04-19": "Good Friday", "2019-05-01": "Labour Day", - "2019-05-03": "Labour Day (Observed)", + "2019-05-03": "Labour Day (observed)", "2019-05-24": "The Battle of Pichincha", - "2019-08-09": "Declaration of Independence of Quito (Observed)", + "2019-08-09": "Declaration of Independence of Quito (observed)", "2019-08-10": "Declaration of Independence of Quito", "2019-10-09": "Independence of Guayaquil", - "2019-10-11": "Independence of Guayaquil (Observed)", - "2019-11-01": "All Souls' Day (Observed)", + "2019-10-11": "Independence of Guayaquil (observed)", + "2019-11-01": "All Souls' Day (observed)", "2019-11-02": "All Souls' Day", "2019-11-03": "Independence of Cuenca", - "2019-11-04": "Independence of Cuenca (Observed)", + "2019-11-04": "Independence of Cuenca (observed)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-02-24": "Carnival", @@ -786,7 +786,7 @@ "2020-04-10": "Good Friday", "2020-05-01": "Labour Day", "2020-05-24": "The Battle of Pichincha", - "2020-05-25": "The Battle of Pichincha (Observed)", + "2020-05-25": "The Battle of Pichincha (observed)", "2020-08-10": "Declaration of Independence of Quito", "2020-10-09": "Independence of Guayaquil", "2020-11-02": "All Souls' Day", @@ -796,47 +796,47 @@ "2021-02-15": "Carnival", "2021-02-16": "Carnival", "2021-04-02": "Good Friday", - "2021-04-30": "Labour Day (Observed)", + "2021-04-30": "Labour Day (observed)", "2021-05-01": "Labour Day", "2021-05-24": "The Battle of Pichincha", - "2021-08-09": "Declaration of Independence of Quito (Observed)", + "2021-08-09": "Declaration of Independence of Quito (observed)", "2021-08-10": "Declaration of Independence of Quito", - "2021-10-08": "Independence of Guayaquil (Observed)", + "2021-10-08": "Independence of Guayaquil (observed)", "2021-10-09": "Independence of Guayaquil", - "2021-11-01": "All Souls' Day (Observed)", + "2021-11-01": "All Souls' Day (observed)", "2021-11-02": "All Souls' Day", "2021-11-03": "Independence of Cuenca", - "2021-11-05": "Independence of Cuenca (Observed)", - "2021-12-24": "Christmas Day (Observed)", + "2021-11-05": "Independence of Cuenca (observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-02-28": "Carnival", "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", - "2022-05-23": "The Battle of Pichincha (Observed)", + "2022-05-02": "Labour Day (observed)", + "2022-05-23": "The Battle of Pichincha (observed)", "2022-05-24": "The Battle of Pichincha", "2022-08-10": "Declaration of Independence of Quito", - "2022-08-12": "Declaration of Independence of Quito (Observed)", + "2022-08-12": "Declaration of Independence of Quito (observed)", "2022-10-09": "Independence of Guayaquil", - "2022-10-10": "Independence of Guayaquil (Observed)", + "2022-10-10": "Independence of Guayaquil (observed)", "2022-11-02": "All Souls' Day", "2022-11-03": "Independence of Cuenca", - "2022-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2022-11-04": "All Souls' Day (observed); Independence of Cuenca (observed)", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-20": "Carnival", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", "2023-05-01": "Labour Day", "2023-05-24": "The Battle of Pichincha", - "2023-05-26": "The Battle of Pichincha (Observed)", + "2023-05-26": "The Battle of Pichincha (observed)", "2023-08-10": "Declaration of Independence of Quito", - "2023-08-11": "Declaration of Independence of Quito (Observed)", + "2023-08-11": "Declaration of Independence of Quito (observed)", "2023-10-09": "Independence of Guayaquil", "2023-11-02": "All Souls' Day", "2023-11-03": "Independence of Cuenca", @@ -846,29 +846,29 @@ "2024-02-13": "Carnival", "2024-03-29": "Good Friday", "2024-05-01": "Labour Day", - "2024-05-03": "Labour Day (Observed)", + "2024-05-03": "Labour Day (observed)", "2024-05-24": "The Battle of Pichincha", - "2024-08-09": "Declaration of Independence of Quito (Observed)", + "2024-08-09": "Declaration of Independence of Quito (observed)", "2024-08-10": "Declaration of Independence of Quito", "2024-10-09": "Independence of Guayaquil", - "2024-10-11": "Independence of Guayaquil (Observed)", - "2024-11-01": "All Souls' Day (Observed)", + "2024-10-11": "Independence of Guayaquil (observed)", + "2024-11-01": "All Souls' Day (observed)", "2024-11-02": "All Souls' Day", "2024-11-03": "Independence of Cuenca", - "2024-11-04": "Independence of Cuenca (Observed)", + "2024-11-04": "Independence of Cuenca (observed)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-03-03": "Carnival", "2025-03-04": "Carnival", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", - "2025-05-02": "Labour Day (Observed)", - "2025-05-23": "The Battle of Pichincha (Observed)", + "2025-05-02": "Labour Day (observed)", + "2025-05-23": "The Battle of Pichincha (observed)", "2025-05-24": "The Battle of Pichincha", "2025-08-10": "Declaration of Independence of Quito", - "2025-08-11": "Declaration of Independence of Quito (Observed)", + "2025-08-11": "Declaration of Independence of Quito (observed)", "2025-10-09": "Independence of Guayaquil", - "2025-10-10": "Independence of Guayaquil (Observed)", + "2025-10-10": "Independence of Guayaquil (observed)", "2025-11-02": "All Souls' Day", "2025-11-03": "Independence of Cuenca", "2025-12-25": "Christmas Day", @@ -878,7 +878,7 @@ "2026-04-03": "Good Friday", "2026-05-01": "Labour Day", "2026-05-24": "The Battle of Pichincha", - "2026-05-25": "The Battle of Pichincha (Observed)", + "2026-05-25": "The Battle of Pichincha (observed)", "2026-08-10": "Declaration of Independence of Quito", "2026-10-09": "Independence of Guayaquil", "2026-11-02": "All Souls' Day", @@ -888,29 +888,29 @@ "2027-02-08": "Carnival", "2027-02-09": "Carnival", "2027-03-26": "Good Friday", - "2027-04-30": "Labour Day (Observed)", + "2027-04-30": "Labour Day (observed)", "2027-05-01": "Labour Day", "2027-05-24": "The Battle of Pichincha", - "2027-08-09": "Declaration of Independence of Quito (Observed)", + "2027-08-09": "Declaration of Independence of Quito (observed)", "2027-08-10": "Declaration of Independence of Quito", - "2027-10-08": "Independence of Guayaquil (Observed)", + "2027-10-08": "Independence of Guayaquil (observed)", "2027-10-09": "Independence of Guayaquil", - "2027-11-01": "All Souls' Day (Observed)", + "2027-11-01": "All Souls' Day (observed)", "2027-11-02": "All Souls' Day", "2027-11-03": "Independence of Cuenca", - "2027-11-05": "Independence of Cuenca (Observed)", - "2027-12-24": "Christmas Day (Observed)", + "2027-11-05": "Independence of Cuenca (observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-02-28": "Carnival", "2028-02-29": "Carnival", "2028-04-14": "Good Friday", "2028-05-01": "Labour Day", "2028-05-24": "The Battle of Pichincha", - "2028-05-26": "The Battle of Pichincha (Observed)", + "2028-05-26": "The Battle of Pichincha (observed)", "2028-08-10": "Declaration of Independence of Quito", - "2028-08-11": "Declaration of Independence of Quito (Observed)", + "2028-08-11": "Declaration of Independence of Quito (observed)", "2028-10-09": "Independence of Guayaquil", "2028-11-02": "All Souls' Day", "2028-11-03": "Independence of Cuenca", @@ -919,12 +919,12 @@ "2029-02-12": "Carnival", "2029-02-13": "Carnival", "2029-03-30": "Good Friday", - "2029-04-30": "Labour Day (Observed)", + "2029-04-30": "Labour Day (observed)", "2029-05-01": "Labour Day", "2029-05-24": "The Battle of Pichincha", - "2029-05-25": "The Battle of Pichincha (Observed)", + "2029-05-25": "The Battle of Pichincha (observed)", "2029-08-10": "Declaration of Independence of Quito", - "2029-10-08": "Independence of Guayaquil (Observed)", + "2029-10-08": "Independence of Guayaquil (observed)", "2029-10-09": "Independence of Guayaquil", "2029-11-02": "All Souls' Day", "2029-11-03": "Independence of Cuenca", @@ -934,29 +934,29 @@ "2030-03-05": "Carnival", "2030-04-19": "Good Friday", "2030-05-01": "Labour Day", - "2030-05-03": "Labour Day (Observed)", + "2030-05-03": "Labour Day (observed)", "2030-05-24": "The Battle of Pichincha", - "2030-08-09": "Declaration of Independence of Quito (Observed)", + "2030-08-09": "Declaration of Independence of Quito (observed)", "2030-08-10": "Declaration of Independence of Quito", "2030-10-09": "Independence of Guayaquil", - "2030-10-11": "Independence of Guayaquil (Observed)", - "2030-11-01": "All Souls' Day (Observed)", + "2030-10-11": "Independence of Guayaquil (observed)", + "2030-11-01": "All Souls' Day (observed)", "2030-11-02": "All Souls' Day", "2030-11-03": "Independence of Cuenca", - "2030-11-04": "Independence of Cuenca (Observed)", + "2030-11-04": "Independence of Cuenca (observed)", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-02-24": "Carnival", "2031-02-25": "Carnival", "2031-04-11": "Good Friday", "2031-05-01": "Labour Day", - "2031-05-02": "Labour Day (Observed)", - "2031-05-23": "The Battle of Pichincha (Observed)", + "2031-05-02": "Labour Day (observed)", + "2031-05-23": "The Battle of Pichincha (observed)", "2031-05-24": "The Battle of Pichincha", "2031-08-10": "Declaration of Independence of Quito", - "2031-08-11": "Declaration of Independence of Quito (Observed)", + "2031-08-11": "Declaration of Independence of Quito (observed)", "2031-10-09": "Independence of Guayaquil", - "2031-10-10": "Independence of Guayaquil (Observed)", + "2031-10-10": "Independence of Guayaquil (observed)", "2031-11-02": "All Souls' Day", "2031-11-03": "Independence of Cuenca", "2031-12-25": "Christmas Day", @@ -964,47 +964,47 @@ "2032-02-09": "Carnival", "2032-02-10": "Carnival", "2032-03-26": "Good Friday", - "2032-04-30": "Labour Day (Observed)", + "2032-04-30": "Labour Day (observed)", "2032-05-01": "Labour Day", "2032-05-24": "The Battle of Pichincha", - "2032-08-09": "Declaration of Independence of Quito (Observed)", + "2032-08-09": "Declaration of Independence of Quito (observed)", "2032-08-10": "Declaration of Independence of Quito", - "2032-10-08": "Independence of Guayaquil (Observed)", + "2032-10-08": "Independence of Guayaquil (observed)", "2032-10-09": "Independence of Guayaquil", - "2032-11-01": "All Souls' Day (Observed)", + "2032-11-01": "All Souls' Day (observed)", "2032-11-02": "All Souls' Day", "2032-11-03": "Independence of Cuenca", - "2032-11-05": "Independence of Cuenca (Observed)", - "2032-12-24": "Christmas Day (Observed)", + "2032-11-05": "Independence of Cuenca (observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-02-28": "Carnival", "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", - "2033-05-23": "The Battle of Pichincha (Observed)", + "2033-05-02": "Labour Day (observed)", + "2033-05-23": "The Battle of Pichincha (observed)", "2033-05-24": "The Battle of Pichincha", "2033-08-10": "Declaration of Independence of Quito", - "2033-08-12": "Declaration of Independence of Quito (Observed)", + "2033-08-12": "Declaration of Independence of Quito (observed)", "2033-10-09": "Independence of Guayaquil", - "2033-10-10": "Independence of Guayaquil (Observed)", + "2033-10-10": "Independence of Guayaquil (observed)", "2033-11-02": "All Souls' Day", "2033-11-03": "Independence of Cuenca", - "2033-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2033-11-04": "All Souls' Day (observed); Independence of Cuenca (observed)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-20": "Carnival", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", "2034-05-01": "Labour Day", "2034-05-24": "The Battle of Pichincha", - "2034-05-26": "The Battle of Pichincha (Observed)", + "2034-05-26": "The Battle of Pichincha (observed)", "2034-08-10": "Declaration of Independence of Quito", - "2034-08-11": "Declaration of Independence of Quito (Observed)", + "2034-08-11": "Declaration of Independence of Quito (observed)", "2034-10-09": "Independence of Guayaquil", "2034-11-02": "All Souls' Day", "2034-11-03": "Independence of Cuenca", @@ -1013,12 +1013,12 @@ "2035-02-05": "Carnival", "2035-02-06": "Carnival", "2035-03-23": "Good Friday", - "2035-04-30": "Labour Day (Observed)", + "2035-04-30": "Labour Day (observed)", "2035-05-01": "Labour Day", "2035-05-24": "The Battle of Pichincha", - "2035-05-25": "The Battle of Pichincha (Observed)", + "2035-05-25": "The Battle of Pichincha (observed)", "2035-08-10": "Declaration of Independence of Quito", - "2035-10-08": "Independence of Guayaquil (Observed)", + "2035-10-08": "Independence of Guayaquil (observed)", "2035-10-09": "Independence of Guayaquil", "2035-11-02": "All Souls' Day", "2035-11-03": "Independence of Cuenca", @@ -1028,13 +1028,13 @@ "2036-02-26": "Carnival", "2036-04-11": "Good Friday", "2036-05-01": "Labour Day", - "2036-05-02": "Labour Day (Observed)", - "2036-05-23": "The Battle of Pichincha (Observed)", + "2036-05-02": "Labour Day (observed)", + "2036-05-23": "The Battle of Pichincha (observed)", "2036-05-24": "The Battle of Pichincha", "2036-08-10": "Declaration of Independence of Quito", - "2036-08-11": "Declaration of Independence of Quito (Observed)", + "2036-08-11": "Declaration of Independence of Quito (observed)", "2036-10-09": "Independence of Guayaquil", - "2036-10-10": "Independence of Guayaquil (Observed)", + "2036-10-10": "Independence of Guayaquil (observed)", "2036-11-02": "All Souls' Day", "2036-11-03": "Independence of Cuenca", "2036-12-25": "Christmas Day", @@ -1044,7 +1044,7 @@ "2037-04-03": "Good Friday", "2037-05-01": "Labour Day", "2037-05-24": "The Battle of Pichincha", - "2037-05-25": "The Battle of Pichincha (Observed)", + "2037-05-25": "The Battle of Pichincha (observed)", "2037-08-10": "Declaration of Independence of Quito", "2037-10-09": "Independence of Guayaquil", "2037-11-02": "All Souls' Day", @@ -1054,48 +1054,48 @@ "2038-03-08": "Carnival", "2038-03-09": "Carnival", "2038-04-23": "Good Friday", - "2038-04-30": "Labour Day (Observed)", + "2038-04-30": "Labour Day (observed)", "2038-05-01": "Labour Day", "2038-05-24": "The Battle of Pichincha", - "2038-08-09": "Declaration of Independence of Quito (Observed)", + "2038-08-09": "Declaration of Independence of Quito (observed)", "2038-08-10": "Declaration of Independence of Quito", - "2038-10-08": "Independence of Guayaquil (Observed)", + "2038-10-08": "Independence of Guayaquil (observed)", "2038-10-09": "Independence of Guayaquil", - "2038-11-01": "All Souls' Day (Observed)", + "2038-11-01": "All Souls' Day (observed)", "2038-11-02": "All Souls' Day", "2038-11-03": "Independence of Cuenca", - "2038-11-05": "Independence of Cuenca (Observed)", - "2038-12-24": "Christmas Day (Observed)", + "2038-11-05": "Independence of Cuenca (observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-02-21": "Carnival", "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", - "2039-05-23": "The Battle of Pichincha (Observed)", + "2039-05-02": "Labour Day (observed)", + "2039-05-23": "The Battle of Pichincha (observed)", "2039-05-24": "The Battle of Pichincha", "2039-08-10": "Declaration of Independence of Quito", - "2039-08-12": "Declaration of Independence of Quito (Observed)", + "2039-08-12": "Declaration of Independence of Quito (observed)", "2039-10-09": "Independence of Guayaquil", - "2039-10-10": "Independence of Guayaquil (Observed)", + "2039-10-10": "Independence of Guayaquil (observed)", "2039-11-02": "All Souls' Day", "2039-11-03": "Independence of Cuenca", - "2039-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2039-11-04": "All Souls' Day (observed); Independence of Cuenca (observed)", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-13": "Carnival", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", - "2040-04-30": "Labour Day (Observed)", + "2040-04-30": "Labour Day (observed)", "2040-05-01": "Labour Day", "2040-05-24": "The Battle of Pichincha", - "2040-05-25": "The Battle of Pichincha (Observed)", + "2040-05-25": "The Battle of Pichincha (observed)", "2040-08-10": "Declaration of Independence of Quito", - "2040-10-08": "Independence of Guayaquil (Observed)", + "2040-10-08": "Independence of Guayaquil (observed)", "2040-10-09": "Independence of Guayaquil", "2040-11-02": "All Souls' Day", "2040-11-03": "Independence of Cuenca", @@ -1105,29 +1105,29 @@ "2041-03-05": "Carnival", "2041-04-19": "Good Friday", "2041-05-01": "Labour Day", - "2041-05-03": "Labour Day (Observed)", + "2041-05-03": "Labour Day (observed)", "2041-05-24": "The Battle of Pichincha", - "2041-08-09": "Declaration of Independence of Quito (Observed)", + "2041-08-09": "Declaration of Independence of Quito (observed)", "2041-08-10": "Declaration of Independence of Quito", "2041-10-09": "Independence of Guayaquil", - "2041-10-11": "Independence of Guayaquil (Observed)", - "2041-11-01": "All Souls' Day (Observed)", + "2041-10-11": "Independence of Guayaquil (observed)", + "2041-11-01": "All Souls' Day (observed)", "2041-11-02": "All Souls' Day", "2041-11-03": "Independence of Cuenca", - "2041-11-04": "Independence of Cuenca (Observed)", + "2041-11-04": "Independence of Cuenca (observed)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-02-17": "Carnival", "2042-02-18": "Carnival", "2042-04-04": "Good Friday", "2042-05-01": "Labour Day", - "2042-05-02": "Labour Day (Observed)", - "2042-05-23": "The Battle of Pichincha (Observed)", + "2042-05-02": "Labour Day (observed)", + "2042-05-23": "The Battle of Pichincha (observed)", "2042-05-24": "The Battle of Pichincha", "2042-08-10": "Declaration of Independence of Quito", - "2042-08-11": "Declaration of Independence of Quito (Observed)", + "2042-08-11": "Declaration of Independence of Quito (observed)", "2042-10-09": "Independence of Guayaquil", - "2042-10-10": "Independence of Guayaquil (Observed)", + "2042-10-10": "Independence of Guayaquil (observed)", "2042-11-02": "All Souls' Day", "2042-11-03": "Independence of Cuenca", "2042-12-25": "Christmas Day", @@ -1137,7 +1137,7 @@ "2043-03-27": "Good Friday", "2043-05-01": "Labour Day", "2043-05-24": "The Battle of Pichincha", - "2043-05-25": "The Battle of Pichincha (Observed)", + "2043-05-25": "The Battle of Pichincha (observed)", "2043-08-10": "Declaration of Independence of Quito", "2043-10-09": "Independence of Guayaquil", "2043-11-02": "All Souls' Day", @@ -1148,28 +1148,28 @@ "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", - "2044-05-23": "The Battle of Pichincha (Observed)", + "2044-05-02": "Labour Day (observed)", + "2044-05-23": "The Battle of Pichincha (observed)", "2044-05-24": "The Battle of Pichincha", "2044-08-10": "Declaration of Independence of Quito", - "2044-08-12": "Declaration of Independence of Quito (Observed)", + "2044-08-12": "Declaration of Independence of Quito (observed)", "2044-10-09": "Independence of Guayaquil", - "2044-10-10": "Independence of Guayaquil (Observed)", + "2044-10-10": "Independence of Guayaquil (observed)", "2044-11-02": "All Souls' Day", "2044-11-03": "Independence of Cuenca", - "2044-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2044-11-04": "All Souls' Day (observed); Independence of Cuenca (observed)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-20": "Carnival", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", "2045-05-01": "Labour Day", "2045-05-24": "The Battle of Pichincha", - "2045-05-26": "The Battle of Pichincha (Observed)", + "2045-05-26": "The Battle of Pichincha (observed)", "2045-08-10": "Declaration of Independence of Quito", - "2045-08-11": "Declaration of Independence of Quito (Observed)", + "2045-08-11": "Declaration of Independence of Quito (observed)", "2045-10-09": "Independence of Guayaquil", "2045-11-02": "All Souls' Day", "2045-11-03": "Independence of Cuenca", @@ -1178,12 +1178,12 @@ "2046-02-05": "Carnival", "2046-02-06": "Carnival", "2046-03-23": "Good Friday", - "2046-04-30": "Labour Day (Observed)", + "2046-04-30": "Labour Day (observed)", "2046-05-01": "Labour Day", "2046-05-24": "The Battle of Pichincha", - "2046-05-25": "The Battle of Pichincha (Observed)", + "2046-05-25": "The Battle of Pichincha (observed)", "2046-08-10": "Declaration of Independence of Quito", - "2046-10-08": "Independence of Guayaquil (Observed)", + "2046-10-08": "Independence of Guayaquil (observed)", "2046-10-09": "Independence of Guayaquil", "2046-11-02": "All Souls' Day", "2046-11-03": "Independence of Cuenca", @@ -1193,16 +1193,16 @@ "2047-02-26": "Carnival", "2047-04-12": "Good Friday", "2047-05-01": "Labour Day", - "2047-05-03": "Labour Day (Observed)", + "2047-05-03": "Labour Day (observed)", "2047-05-24": "The Battle of Pichincha", - "2047-08-09": "Declaration of Independence of Quito (Observed)", + "2047-08-09": "Declaration of Independence of Quito (observed)", "2047-08-10": "Declaration of Independence of Quito", "2047-10-09": "Independence of Guayaquil", - "2047-10-11": "Independence of Guayaquil (Observed)", - "2047-11-01": "All Souls' Day (Observed)", + "2047-10-11": "Independence of Guayaquil (observed)", + "2047-11-01": "All Souls' Day (observed)", "2047-11-02": "All Souls' Day", "2047-11-03": "Independence of Cuenca", - "2047-11-04": "Independence of Cuenca (Observed)", + "2047-11-04": "Independence of Cuenca (observed)", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-02-17": "Carnival", @@ -1210,7 +1210,7 @@ "2048-04-03": "Good Friday", "2048-05-01": "Labour Day", "2048-05-24": "The Battle of Pichincha", - "2048-05-25": "The Battle of Pichincha (Observed)", + "2048-05-25": "The Battle of Pichincha (observed)", "2048-08-10": "Declaration of Independence of Quito", "2048-10-09": "Independence of Guayaquil", "2048-11-02": "All Souls' Day", @@ -1220,35 +1220,35 @@ "2049-03-01": "Carnival", "2049-03-02": "Carnival", "2049-04-16": "Good Friday", - "2049-04-30": "Labour Day (Observed)", + "2049-04-30": "Labour Day (observed)", "2049-05-01": "Labour Day", "2049-05-24": "The Battle of Pichincha", - "2049-08-09": "Declaration of Independence of Quito (Observed)", + "2049-08-09": "Declaration of Independence of Quito (observed)", "2049-08-10": "Declaration of Independence of Quito", - "2049-10-08": "Independence of Guayaquil (Observed)", + "2049-10-08": "Independence of Guayaquil (observed)", "2049-10-09": "Independence of Guayaquil", - "2049-11-01": "All Souls' Day (Observed)", + "2049-11-01": "All Souls' Day (observed)", "2049-11-02": "All Souls' Day", "2049-11-03": "Independence of Cuenca", - "2049-11-05": "Independence of Cuenca (Observed)", - "2049-12-24": "Christmas Day (Observed)", + "2049-11-05": "Independence of Cuenca (observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-02-21": "Carnival", "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", - "2050-05-23": "The Battle of Pichincha (Observed)", + "2050-05-02": "Labour Day (observed)", + "2050-05-23": "The Battle of Pichincha (observed)", "2050-05-24": "The Battle of Pichincha", "2050-08-10": "Declaration of Independence of Quito", - "2050-08-12": "Declaration of Independence of Quito (Observed)", + "2050-08-12": "Declaration of Independence of Quito (observed)", "2050-10-09": "Independence of Guayaquil", - "2050-10-10": "Independence of Guayaquil (Observed)", + "2050-10-10": "Independence of Guayaquil (observed)", "2050-11-02": "All Souls' Day", "2050-11-03": "Independence of Cuenca", - "2050-11-04": "All Souls' Day (Observed); Independence of Cuenca (Observed)", + "2050-11-04": "All Souls' Day (observed); Independence of Cuenca (observed)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/GB_COMMON.json b/snapshots/countries/GB_COMMON.json index 087edd5de..7d2acfe3a 100644 --- a/snapshots/countries/GB_COMMON.json +++ b/snapshots/countries/GB_COMMON.json @@ -11,16 +11,16 @@ "1953-04-03": "Good Friday", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-04-16": "Good Friday", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-04-08": "Good Friday", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-03-30": "Good Friday", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", @@ -33,11 +33,11 @@ "1959-03-27": "Good Friday", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-04-15": "Good Friday", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-03-31": "Good Friday", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", @@ -50,16 +50,16 @@ "1964-03-27": "Good Friday", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-04-16": "Good Friday", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-04-08": "Good Friday", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-03-24": "Good Friday", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", @@ -72,13 +72,13 @@ "1970-03-27": "Good Friday", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-04-09": "Good Friday", "1971-05-31": "Spring Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-03-31": "Good Friday", "1972-05-29": "Spring Bank Holiday", "1972-12-25": "Christmas Day", @@ -101,18 +101,18 @@ "1976-05-31": "Spring Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-30": "Spring Bank Holiday", "1977-06-07": "Silver Jubilee of Elizabeth II", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-01": "May Day", "1978-05-29": "Spring Bank Holiday", @@ -137,25 +137,25 @@ "1981-07-29": "Wedding of Charles and Diana", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-03": "May Day", "1982-05-31": "Spring Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-02": "May Day", "1983-05-30": "Spring Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-07": "May Day", "1984-05-28": "Spring Bank Holiday", @@ -179,16 +179,16 @@ "1987-05-25": "Spring Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-02": "May Day", "1988-05-30": "Spring Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-01": "May Day", "1989-05-29": "Spring Bank Holiday", @@ -212,25 +212,25 @@ "1992-05-25": "Spring Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-03": "May Day", "1993-05-31": "Spring Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-02": "May Day", "1994-05-30": "Spring Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-08": "May Day", "1995-05-29": "Spring Bank Holiday", @@ -254,18 +254,18 @@ "1998-05-25": "Spring Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-03": "May Day", "1999-05-31": "Spring Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-01": "May Day", "2000-05-29": "Spring Bank Holiday", @@ -296,18 +296,18 @@ "2004-05-31": "Spring Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-02": "May Day", "2005-05-30": "Spring Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-01": "May Day", "2006-05-29": "Spring Bank Holiday", @@ -331,26 +331,26 @@ "2009-05-25": "Spring Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-05-03": "May Day", "2010-05-31": "Spring Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-04-29": "Wedding of William and Catherine", "2011-05-02": "May Day", "2011-05-30": "Spring Bank Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-05-07": "May Day", "2012-06-04": "Spring Bank Holiday", @@ -375,16 +375,16 @@ "2015-05-25": "Spring Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-05-02": "May Day", "2016-05-30": "Spring Bank Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-05-01": "May Day", "2017-05-29": "Spring Bank Holiday", @@ -408,17 +408,17 @@ "2020-05-25": "Spring Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-05-03": "May Day", "2021-05-31": "Spring Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-05-02": "May Day", "2022-06-02": "Spring Bank Holiday", @@ -426,9 +426,9 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-05-01": "May Day", "2023-05-08": "Coronation of Charles III", @@ -453,17 +453,17 @@ "2026-05-25": "Spring Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-05-03": "May Day", "2027-05-31": "Spring Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-05-01": "May Day", "2028-05-29": "Spring Bank Holiday", @@ -493,18 +493,18 @@ "2032-05-31": "Spring Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-05-02": "May Day", "2033-05-30": "Spring Bank Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-05-01": "May Day", "2034-05-29": "Spring Bank Holiday", @@ -528,25 +528,25 @@ "2037-05-25": "Spring Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-05-03": "May Day", "2038-05-31": "Spring Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-05-02": "May Day", "2039-05-30": "Spring Bank Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-05-07": "May Day", "2040-05-28": "Spring Bank Holiday", @@ -570,16 +570,16 @@ "2043-05-25": "Spring Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-05-02": "May Day", "2044-05-30": "Spring Bank Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-05-01": "May Day", "2045-05-29": "Spring Bank Holiday", @@ -603,21 +603,21 @@ "2048-05-25": "Spring Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-05-03": "May Day", "2049-05-31": "Spring Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-05-02": "May Day", "2050-05-30": "Spring Bank Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/GB_ENG.json b/snapshots/countries/GB_ENG.json index 6473ece13..3198045fb 100644 --- a/snapshots/countries/GB_ENG.json +++ b/snapshots/countries/GB_ENG.json @@ -15,18 +15,18 @@ "1953-04-06": "Easter Monday", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-12-25": "Christmas Day", @@ -43,12 +43,12 @@ "1959-03-30": "Easter Monday", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-12-25": "Christmas Day", @@ -65,18 +65,18 @@ "1964-03-30": "Easter Monday", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-12-25": "Christmas Day", @@ -93,15 +93,15 @@ "1970-03-30": "Easter Monday", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-05-31": "Spring Bank Holiday", "1971-08-30": "Late Summer Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-05-29": "Spring Bank Holiday", @@ -134,10 +134,10 @@ "1976-08-30": "Late Summer Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-30": "Spring Bank Holiday", @@ -145,9 +145,9 @@ "1977-08-29": "Late Summer Bank Holiday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-01": "May Day", @@ -180,7 +180,7 @@ "1981-08-31": "Late Summer Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -189,10 +189,10 @@ "1982-08-30": "Late Summer Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-02": "May Day", @@ -200,9 +200,9 @@ "1983-08-29": "Late Summer Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-07": "May Day", @@ -234,7 +234,7 @@ "1987-08-31": "Late Summer Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -243,9 +243,9 @@ "1988-08-29": "Late Summer Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-01": "May Day", @@ -277,7 +277,7 @@ "1992-08-31": "Late Summer Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -286,10 +286,10 @@ "1993-08-30": "Late Summer Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-02": "May Day", @@ -297,9 +297,9 @@ "1994-08-29": "Late Summer Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-08": "May Day", @@ -331,7 +331,7 @@ "1998-08-31": "Late Summer Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -340,11 +340,11 @@ "1999-08-30": "Late Summer Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-01": "May Day", @@ -385,10 +385,10 @@ "2004-08-30": "Late Summer Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-02": "May Day", @@ -396,9 +396,9 @@ "2005-08-29": "Late Summer Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-01": "May Day", @@ -430,7 +430,7 @@ "2009-08-31": "Late Summer Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -439,10 +439,10 @@ "2010-08-30": "Late Summer Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-04-29": "Wedding of William and Catherine", @@ -451,9 +451,9 @@ "2011-08-29": "Late Summer Bank Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-07": "May Day", @@ -486,7 +486,7 @@ "2015-08-31": "Late Summer Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", @@ -495,9 +495,9 @@ "2016-08-29": "Late Summer Bank Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-01": "May Day", @@ -529,7 +529,7 @@ "2020-08-31": "Late Summer Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", @@ -538,10 +538,10 @@ "2021-08-30": "Late Summer Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-02": "May Day", @@ -551,9 +551,9 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-01": "May Day", @@ -586,7 +586,7 @@ "2026-08-31": "Late Summer Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", @@ -595,10 +595,10 @@ "2027-08-30": "Late Summer Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-01": "May Day", @@ -638,10 +638,10 @@ "2032-08-30": "Late Summer Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-02": "May Day", @@ -649,9 +649,9 @@ "2033-08-29": "Late Summer Bank Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-01": "May Day", @@ -683,7 +683,7 @@ "2037-08-31": "Late Summer Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", @@ -692,10 +692,10 @@ "2038-08-30": "Late Summer Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-02": "May Day", @@ -703,9 +703,9 @@ "2039-08-29": "Late Summer Bank Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-07": "May Day", @@ -737,7 +737,7 @@ "2043-08-31": "Late Summer Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", @@ -746,9 +746,9 @@ "2044-08-29": "Late Summer Bank Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-01": "May Day", @@ -780,7 +780,7 @@ "2048-08-31": "Late Summer Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", @@ -789,10 +789,10 @@ "2049-08-30": "Late Summer Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-02": "May Day", @@ -800,5 +800,5 @@ "2050-08-29": "Late Summer Bank Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/GB_NIR.json b/snapshots/countries/GB_NIR.json index 57f034532..6ab174bed 100644 --- a/snapshots/countries/GB_NIR.json +++ b/snapshots/countries/GB_NIR.json @@ -6,7 +6,7 @@ "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-03-17": "St. Patrick's Day", - "1951-03-19": "St. Patrick's Day (Observed)", + "1951-03-19": "St. Patrick's Day (observed)", "1951-03-23": "Good Friday", "1951-03-26": "Easter Monday", "1951-07-12": "Battle of the Boyne", @@ -16,41 +16,41 @@ "1952-04-11": "Good Friday", "1952-04-14": "Easter Monday", "1952-07-12": "Battle of the Boyne", - "1952-07-14": "Battle of the Boyne (Observed)", + "1952-07-14": "Battle of the Boyne (observed)", "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1953-03-17": "St. Patrick's Day", "1953-04-03": "Good Friday", "1953-04-06": "Easter Monday", "1953-07-12": "Battle of the Boyne", - "1953-07-13": "Battle of the Boyne (Observed)", + "1953-07-13": "Battle of the Boyne (observed)", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-03-17": "St. Patrick's Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-07-12": "Battle of the Boyne", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-03-17": "St. Patrick's Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-07-12": "Battle of the Boyne", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-03-17": "St. Patrick's Day", - "1956-03-19": "St. Patrick's Day (Observed)", + "1956-03-19": "St. Patrick's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-07-12": "Battle of the Boyne", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-03-17": "St. Patrick's Day", - "1957-03-18": "St. Patrick's Day (Observed)", + "1957-03-18": "St. Patrick's Day (observed)", "1957-04-19": "Good Friday", "1957-04-22": "Easter Monday", "1957-07-12": "Battle of the Boyne", @@ -60,24 +60,24 @@ "1958-04-04": "Good Friday", "1958-04-07": "Easter Monday", "1958-07-12": "Battle of the Boyne", - "1958-07-14": "Battle of the Boyne (Observed)", + "1958-07-14": "Battle of the Boyne (observed)", "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1959-03-17": "St. Patrick's Day", "1959-03-27": "Good Friday", "1959-03-30": "Easter Monday", "1959-07-12": "Battle of the Boyne", - "1959-07-13": "Battle of the Boyne (Observed)", + "1959-07-13": "Battle of the Boyne (observed)", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-03-17": "St. Patrick's Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-07-12": "Battle of the Boyne", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-03-17": "St. Patrick's Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -85,14 +85,14 @@ "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-03-17": "St. Patrick's Day", - "1962-03-19": "St. Patrick's Day (Observed)", + "1962-03-19": "St. Patrick's Day (observed)", "1962-04-20": "Good Friday", "1962-04-23": "Easter Monday", "1962-07-12": "Battle of the Boyne", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-03-17": "St. Patrick's Day", - "1963-03-18": "St. Patrick's Day (Observed)", + "1963-03-18": "St. Patrick's Day (observed)", "1963-04-12": "Good Friday", "1963-04-15": "Easter Monday", "1963-07-12": "Battle of the Boyne", @@ -102,25 +102,25 @@ "1964-03-27": "Good Friday", "1964-03-30": "Easter Monday", "1964-07-12": "Battle of the Boyne", - "1964-07-13": "Battle of the Boyne (Observed)", + "1964-07-13": "Battle of the Boyne (observed)", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-03-17": "St. Patrick's Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-07-12": "Battle of the Boyne", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-03-17": "St. Patrick's Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-07-12": "Battle of the Boyne", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-03-17": "St. Patrick's Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -128,7 +128,7 @@ "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-03-17": "St. Patrick's Day", - "1968-03-18": "St. Patrick's Day (Observed)", + "1968-03-18": "St. Patrick's Day (observed)", "1968-04-12": "Good Friday", "1968-04-15": "Easter Monday", "1968-07-12": "Battle of the Boyne", @@ -138,17 +138,17 @@ "1969-04-04": "Good Friday", "1969-04-07": "Easter Monday", "1969-07-12": "Battle of the Boyne", - "1969-07-14": "Battle of the Boyne (Observed)", + "1969-07-14": "Battle of the Boyne (observed)", "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1970-03-17": "St. Patrick's Day", "1970-03-27": "Good Friday", "1970-03-30": "Easter Monday", "1970-07-12": "Battle of the Boyne", - "1970-07-13": "Battle of the Boyne (Observed)", + "1970-07-13": "Battle of the Boyne (observed)", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-03-17": "St. Patrick's Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -157,8 +157,8 @@ "1971-08-30": "Late Summer Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-03-17": "St. Patrick's Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -168,7 +168,7 @@ "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-03-17": "St. Patrick's Day", - "1973-03-19": "St. Patrick's Day (Observed)", + "1973-03-19": "St. Patrick's Day (observed)", "1973-04-20": "Good Friday", "1973-04-23": "Easter Monday", "1973-05-28": "Spring Bank Holiday", @@ -177,7 +177,7 @@ "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-03-17": "St. Patrick's Day", - "1974-03-18": "St. Patrick's Day (Observed)", + "1974-03-18": "St. Patrick's Day (observed)", "1974-04-12": "Good Friday", "1974-04-15": "Easter Monday", "1974-05-27": "Spring Bank Holiday", @@ -191,7 +191,7 @@ "1975-03-31": "Easter Monday", "1975-05-26": "Spring Bank Holiday", "1975-07-12": "Battle of the Boyne", - "1975-07-14": "Battle of the Boyne (Observed)", + "1975-07-14": "Battle of the Boyne (observed)", "1975-08-25": "Late Summer Bank Holiday", "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", @@ -204,10 +204,10 @@ "1976-08-30": "Late Summer Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-03-17": "St. Patrick's Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -217,9 +217,9 @@ "1977-08-29": "Late Summer Bank Holiday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-17": "St. Patrick's Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -231,7 +231,7 @@ "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-03-17": "St. Patrick's Day", - "1979-03-19": "St. Patrick's Day (Observed)", + "1979-03-19": "St. Patrick's Day (observed)", "1979-04-13": "Good Friday", "1979-04-16": "Easter Monday", "1979-05-07": "May Day", @@ -247,7 +247,7 @@ "1980-05-05": "May Day", "1980-05-26": "Spring Bank Holiday", "1980-07-12": "Battle of the Boyne", - "1980-07-14": "Battle of the Boyne (Observed)", + "1980-07-14": "Battle of the Boyne (observed)", "1980-08-25": "Late Summer Bank Holiday", "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", @@ -258,12 +258,12 @@ "1981-05-04": "May Day", "1981-05-25": "Spring Bank Holiday", "1981-07-12": "Battle of the Boyne", - "1981-07-13": "Battle of the Boyne (Observed)", + "1981-07-13": "Battle of the Boyne (observed)", "1981-07-29": "Wedding of Charles and Diana", "1981-08-31": "Late Summer Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-03-17": "St. Patrick's Day", "1982-04-09": "Good Friday", @@ -274,10 +274,10 @@ "1982-08-30": "Late Summer Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-03-17": "St. Patrick's Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -287,11 +287,11 @@ "1983-08-29": "Late Summer Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-17": "St. Patrick's Day", - "1984-03-19": "St. Patrick's Day (Observed)", + "1984-03-19": "St. Patrick's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-07": "May Day", @@ -302,7 +302,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-03-17": "St. Patrick's Day", - "1985-03-18": "St. Patrick's Day (Observed)", + "1985-03-18": "St. Patrick's Day (observed)", "1985-04-05": "Good Friday", "1985-04-08": "Easter Monday", "1985-05-06": "May Day", @@ -318,7 +318,7 @@ "1986-05-05": "May Day", "1986-05-26": "Spring Bank Holiday", "1986-07-12": "Battle of the Boyne", - "1986-07-14": "Battle of the Boyne (Observed)", + "1986-07-14": "Battle of the Boyne (observed)", "1986-08-25": "Late Summer Bank Holiday", "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", @@ -329,11 +329,11 @@ "1987-05-04": "May Day", "1987-05-25": "Spring Bank Holiday", "1987-07-12": "Battle of the Boyne", - "1987-07-13": "Battle of the Boyne (Observed)", + "1987-07-13": "Battle of the Boyne (observed)", "1987-08-31": "Late Summer Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-03-17": "St. Patrick's Day", "1988-04-01": "Good Friday", @@ -344,9 +344,9 @@ "1988-08-29": "Late Summer Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-17": "St. Patrick's Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -358,7 +358,7 @@ "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-03-17": "St. Patrick's Day", - "1990-03-19": "St. Patrick's Day (Observed)", + "1990-03-19": "St. Patrick's Day (observed)", "1990-04-13": "Good Friday", "1990-04-16": "Easter Monday", "1990-05-07": "May Day", @@ -369,7 +369,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-03-17": "St. Patrick's Day", - "1991-03-18": "St. Patrick's Day (Observed)", + "1991-03-18": "St. Patrick's Day (observed)", "1991-03-29": "Good Friday", "1991-04-01": "Easter Monday", "1991-05-06": "May Day", @@ -385,11 +385,11 @@ "1992-05-04": "May Day", "1992-05-25": "Spring Bank Holiday", "1992-07-12": "Battle of the Boyne", - "1992-07-13": "Battle of the Boyne (Observed)", + "1992-07-13": "Battle of the Boyne (observed)", "1992-08-31": "Late Summer Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-03-17": "St. Patrick's Day", "1993-04-09": "Good Friday", @@ -400,10 +400,10 @@ "1993-08-30": "Late Summer Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-03-17": "St. Patrick's Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -413,9 +413,9 @@ "1994-08-29": "Late Summer Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-03-17": "St. Patrick's Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -427,7 +427,7 @@ "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", "1996-03-17": "St. Patrick's Day", - "1996-03-18": "St. Patrick's Day (Observed)", + "1996-03-18": "St. Patrick's Day (observed)", "1996-04-05": "Good Friday", "1996-04-08": "Easter Monday", "1996-05-06": "May Day", @@ -443,7 +443,7 @@ "1997-05-05": "May Day", "1997-05-26": "Spring Bank Holiday", "1997-07-12": "Battle of the Boyne", - "1997-07-14": "Battle of the Boyne (Observed)", + "1997-07-14": "Battle of the Boyne (observed)", "1997-08-25": "Late Summer Bank Holiday", "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", @@ -454,11 +454,11 @@ "1998-05-04": "May Day", "1998-05-25": "Spring Bank Holiday", "1998-07-12": "Battle of the Boyne", - "1998-07-13": "Battle of the Boyne (Observed)", + "1998-07-13": "Battle of the Boyne (observed)", "1998-08-31": "Late Summer Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-03-17": "St. Patrick's Day", "1999-04-02": "Good Friday", @@ -469,11 +469,11 @@ "1999-08-30": "Late Summer Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-03-17": "St. Patrick's Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -485,7 +485,7 @@ "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-03-17": "St. Patrick's Day", - "2001-03-19": "St. Patrick's Day (Observed)", + "2001-03-19": "St. Patrick's Day (observed)", "2001-04-13": "Good Friday", "2001-04-16": "Easter Monday", "2001-05-07": "May Day", @@ -496,7 +496,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-03-17": "St. Patrick's Day", - "2002-03-18": "St. Patrick's Day (Observed)", + "2002-03-18": "St. Patrick's Day (observed)", "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", "2002-05-06": "May Day", @@ -513,7 +513,7 @@ "2003-05-05": "May Day", "2003-05-26": "Spring Bank Holiday", "2003-07-12": "Battle of the Boyne", - "2003-07-14": "Battle of the Boyne (Observed)", + "2003-07-14": "Battle of the Boyne (observed)", "2003-08-25": "Late Summer Bank Holiday", "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", @@ -527,10 +527,10 @@ "2004-08-30": "Late Summer Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-17": "St. Patrick's Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -540,9 +540,9 @@ "2005-08-29": "Late Summer Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-03-17": "St. Patrick's Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -554,7 +554,7 @@ "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-03-17": "St. Patrick's Day", - "2007-03-19": "St. Patrick's Day (Observed)", + "2007-03-19": "St. Patrick's Day (observed)", "2007-04-06": "Good Friday", "2007-04-09": "Easter Monday", "2007-05-07": "May Day", @@ -570,7 +570,7 @@ "2008-05-05": "May Day", "2008-05-26": "Spring Bank Holiday", "2008-07-12": "Battle of the Boyne", - "2008-07-14": "Battle of the Boyne (Observed)", + "2008-07-14": "Battle of the Boyne (observed)", "2008-08-25": "Late Summer Bank Holiday", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", @@ -581,11 +581,11 @@ "2009-05-04": "May Day", "2009-05-25": "Spring Bank Holiday", "2009-07-12": "Battle of the Boyne", - "2009-07-13": "Battle of the Boyne (Observed)", + "2009-07-13": "Battle of the Boyne (observed)", "2009-08-31": "Late Summer Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-03-17": "St. Patrick's Day", "2010-04-02": "Good Friday", @@ -596,10 +596,10 @@ "2010-08-30": "Late Summer Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-03-17": "St. Patrick's Day", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", @@ -610,11 +610,11 @@ "2011-08-29": "Late Summer Bank Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-03-17": "St. Patrick's Day", - "2012-03-19": "St. Patrick's Day (Observed)", + "2012-03-19": "St. Patrick's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-07": "May Day", @@ -626,7 +626,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-03-17": "St. Patrick's Day", - "2013-03-18": "St. Patrick's Day (Observed)", + "2013-03-18": "St. Patrick's Day (observed)", "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", "2013-05-06": "May Day", @@ -642,7 +642,7 @@ "2014-05-05": "May Day", "2014-05-26": "Spring Bank Holiday", "2014-07-12": "Battle of the Boyne", - "2014-07-14": "Battle of the Boyne (Observed)", + "2014-07-14": "Battle of the Boyne (observed)", "2014-08-25": "Late Summer Bank Holiday", "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", @@ -653,11 +653,11 @@ "2015-05-04": "May Day", "2015-05-25": "Spring Bank Holiday", "2015-07-12": "Battle of the Boyne", - "2015-07-13": "Battle of the Boyne (Observed)", + "2015-07-13": "Battle of the Boyne (observed)", "2015-08-31": "Late Summer Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-17": "St. Patrick's Day", "2016-03-25": "Good Friday", @@ -668,9 +668,9 @@ "2016-08-29": "Late Summer Bank Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-03-17": "St. Patrick's Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -682,7 +682,7 @@ "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", "2018-03-17": "St. Patrick's Day", - "2018-03-19": "St. Patrick's Day (Observed)", + "2018-03-19": "St. Patrick's Day (observed)", "2018-03-30": "Good Friday", "2018-04-02": "Easter Monday", "2018-05-07": "May Day", @@ -693,7 +693,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-03-17": "St. Patrick's Day", - "2019-03-18": "St. Patrick's Day (Observed)", + "2019-03-18": "St. Patrick's Day (observed)", "2019-04-19": "Good Friday", "2019-04-22": "Easter Monday", "2019-05-06": "May Day", @@ -709,11 +709,11 @@ "2020-05-08": "May Day", "2020-05-25": "Spring Bank Holiday", "2020-07-12": "Battle of the Boyne", - "2020-07-13": "Battle of the Boyne (Observed)", + "2020-07-13": "Battle of the Boyne (observed)", "2020-08-31": "Late Summer Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-03-17": "St. Patrick's Day", "2021-04-02": "Good Friday", @@ -724,10 +724,10 @@ "2021-08-30": "Late Summer Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-03-17": "St. Patrick's Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", @@ -739,9 +739,9 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-03-17": "St. Patrick's Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -754,7 +754,7 @@ "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", "2024-03-17": "St. Patrick's Day", - "2024-03-18": "St. Patrick's Day (Observed)", + "2024-03-18": "St. Patrick's Day (observed)", "2024-03-29": "Good Friday", "2024-04-01": "Easter Monday", "2024-05-06": "May Day", @@ -770,7 +770,7 @@ "2025-05-05": "May Day", "2025-05-26": "Spring Bank Holiday", "2025-07-12": "Battle of the Boyne", - "2025-07-14": "Battle of the Boyne (Observed)", + "2025-07-14": "Battle of the Boyne (observed)", "2025-08-25": "Late Summer Bank Holiday", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", @@ -781,11 +781,11 @@ "2026-05-04": "May Day", "2026-05-25": "Spring Bank Holiday", "2026-07-12": "Battle of the Boyne", - "2026-07-13": "Battle of the Boyne (Observed)", + "2026-07-13": "Battle of the Boyne (observed)", "2026-08-31": "Late Summer Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-17": "St. Patrick's Day", "2027-03-26": "Good Friday", @@ -796,10 +796,10 @@ "2027-08-30": "Late Summer Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-03-17": "St. Patrick's Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", @@ -811,7 +811,7 @@ "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", "2029-03-17": "St. Patrick's Day", - "2029-03-19": "St. Patrick's Day (Observed)", + "2029-03-19": "St. Patrick's Day (observed)", "2029-03-30": "Good Friday", "2029-04-02": "Easter Monday", "2029-05-07": "May Day", @@ -822,7 +822,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-03-17": "St. Patrick's Day", - "2030-03-18": "St. Patrick's Day (Observed)", + "2030-03-18": "St. Patrick's Day (observed)", "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", "2030-05-06": "May Day", @@ -838,7 +838,7 @@ "2031-05-05": "May Day", "2031-05-26": "Spring Bank Holiday", "2031-07-12": "Battle of the Boyne", - "2031-07-14": "Battle of the Boyne (Observed)", + "2031-07-14": "Battle of the Boyne (observed)", "2031-08-25": "Late Summer Bank Holiday", "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", @@ -852,10 +852,10 @@ "2032-08-30": "Late Summer Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-03-17": "St. Patrick's Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", @@ -865,9 +865,9 @@ "2033-08-29": "Late Summer Bank Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-17": "St. Patrick's Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -879,7 +879,7 @@ "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", "2035-03-17": "St. Patrick's Day", - "2035-03-19": "St. Patrick's Day (Observed)", + "2035-03-19": "St. Patrick's Day (observed)", "2035-03-23": "Good Friday", "2035-03-26": "Easter Monday", "2035-05-07": "May Day", @@ -895,7 +895,7 @@ "2036-05-05": "May Day", "2036-05-26": "Spring Bank Holiday", "2036-07-12": "Battle of the Boyne", - "2036-07-14": "Battle of the Boyne (Observed)", + "2036-07-14": "Battle of the Boyne (observed)", "2036-08-25": "Late Summer Bank Holiday", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", @@ -906,11 +906,11 @@ "2037-05-04": "May Day", "2037-05-25": "Spring Bank Holiday", "2037-07-12": "Battle of the Boyne", - "2037-07-13": "Battle of the Boyne (Observed)", + "2037-07-13": "Battle of the Boyne (observed)", "2037-08-31": "Late Summer Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-03-17": "St. Patrick's Day", "2038-04-23": "Good Friday", @@ -921,10 +921,10 @@ "2038-08-30": "Late Summer Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-03-17": "St. Patrick's Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", @@ -934,11 +934,11 @@ "2039-08-29": "Late Summer Bank Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-17": "St. Patrick's Day", - "2040-03-19": "St. Patrick's Day (Observed)", + "2040-03-19": "St. Patrick's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-07": "May Day", @@ -949,7 +949,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-03-17": "St. Patrick's Day", - "2041-03-18": "St. Patrick's Day (Observed)", + "2041-03-18": "St. Patrick's Day (observed)", "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", "2041-05-06": "May Day", @@ -965,7 +965,7 @@ "2042-05-05": "May Day", "2042-05-26": "Spring Bank Holiday", "2042-07-12": "Battle of the Boyne", - "2042-07-14": "Battle of the Boyne (Observed)", + "2042-07-14": "Battle of the Boyne (observed)", "2042-08-25": "Late Summer Bank Holiday", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", @@ -976,11 +976,11 @@ "2043-05-04": "May Day", "2043-05-25": "Spring Bank Holiday", "2043-07-12": "Battle of the Boyne", - "2043-07-13": "Battle of the Boyne (Observed)", + "2043-07-13": "Battle of the Boyne (observed)", "2043-08-31": "Late Summer Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-03-17": "St. Patrick's Day", "2044-04-15": "Good Friday", @@ -991,9 +991,9 @@ "2044-08-29": "Late Summer Bank Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-03-17": "St. Patrick's Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1005,7 +1005,7 @@ "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", "2046-03-17": "St. Patrick's Day", - "2046-03-19": "St. Patrick's Day (Observed)", + "2046-03-19": "St. Patrick's Day (observed)", "2046-03-23": "Good Friday", "2046-03-26": "Easter Monday", "2046-05-07": "May Day", @@ -1016,7 +1016,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-03-17": "St. Patrick's Day", - "2047-03-18": "St. Patrick's Day (Observed)", + "2047-03-18": "St. Patrick's Day (observed)", "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", "2047-05-06": "May Day", @@ -1032,11 +1032,11 @@ "2048-05-04": "May Day", "2048-05-25": "Spring Bank Holiday", "2048-07-12": "Battle of the Boyne", - "2048-07-13": "Battle of the Boyne (Observed)", + "2048-07-13": "Battle of the Boyne (observed)", "2048-08-31": "Late Summer Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-03-17": "St. Patrick's Day", "2049-04-16": "Good Friday", @@ -1047,10 +1047,10 @@ "2049-08-30": "Late Summer Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-03-17": "St. Patrick's Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", @@ -1060,5 +1060,5 @@ "2050-08-29": "Late Summer Bank Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/GB_SCT.json b/snapshots/countries/GB_SCT.json index 444fa35a8..b4aae39d0 100644 --- a/snapshots/countries/GB_SCT.json +++ b/snapshots/countries/GB_SCT.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year Holiday; New Year's Day (Observed)", - "1950-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1950-01-02": "New Year Holiday; New Year's Day (observed)", + "1950-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1950-04-07": "Good Friday", "1950-08-07": "Summer Bank Holiday", "1950-12-25": "Christmas Day", @@ -22,22 +22,22 @@ "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", "1954-01-02": "New Year Holiday", - "1954-01-04": "New Year Holiday (Observed)", + "1954-01-04": "New Year Holiday (observed)", "1954-04-16": "Good Friday", "1954-08-02": "Summer Bank Holiday", "1954-12-25": "Christmas Day", - "1954-12-27": "Christmas Day (Observed)", + "1954-12-27": "Christmas Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "New Year Holiday", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "New Year Holiday (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "New Year Holiday (observed)", "1955-04-08": "Good Friday", "1955-08-01": "Summer Bank Holiday", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year Holiday; New Year's Day (Observed)", - "1956-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1956-01-02": "New Year Holiday; New Year's Day (observed)", + "1956-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1956-03-30": "Good Friday", "1956-08-06": "Summer Bank Holiday", "1956-12-25": "Christmas Day", @@ -58,14 +58,14 @@ "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-01-02": "New Year Holiday", - "1960-01-04": "New Year Holiday (Observed)", + "1960-01-04": "New Year Holiday (observed)", "1960-04-15": "Good Friday", "1960-08-01": "Summer Bank Holiday", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year Holiday; New Year's Day (Observed)", - "1961-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1961-01-02": "New Year Holiday; New Year's Day (observed)", + "1961-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1961-03-31": "Good Friday", "1961-08-07": "Summer Bank Holiday", "1961-12-25": "Christmas Day", @@ -86,22 +86,22 @@ "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-01-02": "New Year Holiday", - "1965-01-04": "New Year Holiday (Observed)", + "1965-01-04": "New Year Holiday (observed)", "1965-04-16": "Good Friday", "1965-08-02": "Summer Bank Holiday", "1965-12-25": "Christmas Day", - "1965-12-27": "Christmas Day (Observed)", + "1965-12-27": "Christmas Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "New Year Holiday", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "New Year Holiday (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "New Year Holiday (observed)", "1966-04-08": "Good Friday", "1966-08-01": "Summer Bank Holiday", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year Holiday; New Year's Day (Observed)", - "1967-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1967-01-02": "New Year Holiday; New Year's Day (observed)", + "1967-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1967-03-24": "Good Friday", "1967-08-07": "Summer Bank Holiday", "1967-12-25": "Christmas Day", @@ -122,16 +122,16 @@ "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-02": "New Year Holiday", - "1971-01-04": "New Year Holiday (Observed)", + "1971-01-04": "New Year Holiday (observed)", "1971-04-09": "Good Friday", "1971-05-31": "Spring Bank Holiday", "1971-08-02": "Summer Bank Holiday", "1971-12-25": "Christmas Day", - "1971-12-27": "Christmas Day (Observed)", + "1971-12-27": "Christmas Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "New Year Holiday", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "New Year Holiday (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "New Year Holiday (observed)", "1972-03-31": "Good Friday", "1972-05-29": "Spring Bank Holiday", "1972-08-07": "Summer Bank Holiday", @@ -163,22 +163,22 @@ "1976-08-02": "Summer Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "New Year Holiday", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "New Year Holiday (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "New Year Holiday (observed)", "1977-04-08": "Good Friday", "1977-05-30": "Spring Bank Holiday", "1977-06-07": "Silver Jubilee of Elizabeth II", "1977-08-01": "Summer Bank Holiday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year Holiday; New Year's Day (Observed)", - "1978-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1978-01-02": "New Year Holiday; New Year's Day (observed)", + "1978-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1978-03-24": "Good Friday", "1978-05-01": "May Day", "1978-05-29": "Spring Bank Holiday", @@ -210,32 +210,32 @@ "1981-08-03": "Summer Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "New Year Holiday", - "1982-01-04": "New Year Holiday (Observed)", + "1982-01-04": "New Year Holiday (observed)", "1982-04-09": "Good Friday", "1982-05-03": "May Day", "1982-05-31": "Spring Bank Holiday", "1982-08-02": "Summer Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "New Year Holiday", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "New Year Holiday (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "New Year Holiday (observed)", "1983-04-01": "Good Friday", "1983-05-02": "May Day", "1983-05-30": "Spring Bank Holiday", "1983-08-01": "Summer Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year Holiday; New Year's Day (Observed)", - "1984-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1984-01-02": "New Year Holiday; New Year's Day (observed)", + "1984-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1984-04-20": "Good Friday", "1984-05-07": "May Day", "1984-05-28": "Spring Bank Holiday", @@ -266,20 +266,20 @@ "1987-08-03": "Summer Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "New Year Holiday", - "1988-01-04": "New Year Holiday (Observed)", + "1988-01-04": "New Year Holiday (observed)", "1988-04-01": "Good Friday", "1988-05-02": "May Day", "1988-05-30": "Spring Bank Holiday", "1988-08-01": "Summer Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year Holiday; New Year's Day (Observed)", - "1989-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1989-01-02": "New Year Holiday; New Year's Day (observed)", + "1989-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1989-03-24": "Good Friday", "1989-05-01": "May Day", "1989-05-29": "Spring Bank Holiday", @@ -310,32 +310,32 @@ "1992-08-03": "Summer Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "New Year Holiday", - "1993-01-04": "New Year Holiday (Observed)", + "1993-01-04": "New Year Holiday (observed)", "1993-04-09": "Good Friday", "1993-05-03": "May Day", "1993-05-31": "Spring Bank Holiday", "1993-08-02": "Summer Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "New Year Holiday", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "New Year Holiday (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "New Year Holiday (observed)", "1994-04-01": "Good Friday", "1994-05-02": "May Day", "1994-05-30": "Spring Bank Holiday", "1994-08-01": "Summer Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year Holiday; New Year's Day (Observed)", - "1995-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1995-01-02": "New Year Holiday; New Year's Day (observed)", + "1995-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1995-04-14": "Good Friday", "1995-05-08": "May Day", "1995-05-29": "Spring Bank Holiday", @@ -366,23 +366,23 @@ "1998-08-03": "Summer Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "New Year Holiday", - "1999-01-04": "New Year Holiday (Observed)", + "1999-01-04": "New Year Holiday (observed)", "1999-04-02": "Good Friday", "1999-05-03": "May Day", "1999-05-31": "Spring Bank Holiday", "1999-08-02": "Summer Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", "2000-01-02": "New Year Holiday", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "New Year Holiday (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "New Year Holiday (observed)", "2000-04-21": "Good Friday", "2000-05-01": "May Day", "2000-05-29": "Spring Bank Holiday", @@ -422,22 +422,22 @@ "2004-08-02": "Summer Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "New Year Holiday", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "New Year Holiday (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "New Year Holiday (observed)", "2005-03-25": "Good Friday", "2005-05-02": "May Day", "2005-05-30": "Spring Bank Holiday", "2005-08-01": "Summer Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year Holiday; New Year's Day (Observed)", - "2006-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2006-01-02": "New Year Holiday; New Year's Day (observed)", + "2006-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2006-04-14": "Good Friday", "2006-05-01": "May Day", "2006-05-29": "Spring Bank Holiday", @@ -461,7 +461,7 @@ "2008-05-26": "Spring Bank Holiday", "2008-08-04": "Summer Bank Holiday", "2008-11-30": "St. Andrew's Day", - "2008-12-01": "St. Andrew's Day (Observed)", + "2008-12-01": "St. Andrew's Day (observed)", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2009-01-01": "New Year's Day", @@ -473,10 +473,10 @@ "2009-11-30": "St. Andrew's Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "New Year Holiday", - "2010-01-04": "New Year Holiday (Observed)", + "2010-01-04": "New Year Holiday (observed)", "2010-04-02": "Good Friday", "2010-05-03": "May Day", "2010-05-31": "Spring Bank Holiday", @@ -484,12 +484,12 @@ "2010-11-30": "St. Andrew's Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "New Year Holiday", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "New Year Holiday (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "New Year Holiday (observed)", "2011-04-22": "Good Friday", "2011-04-29": "Wedding of William and Catherine", "2011-05-02": "May Day", @@ -498,10 +498,10 @@ "2011-11-30": "St. Andrew's Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year Holiday; New Year's Day (Observed)", - "2012-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2012-01-02": "New Year Holiday; New Year's Day (observed)", + "2012-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2012-04-06": "Good Friday", "2012-05-07": "May Day", "2012-06-04": "Spring Bank Holiday", @@ -517,7 +517,7 @@ "2013-05-27": "Spring Bank Holiday", "2013-08-05": "Summer Bank Holiday", "2013-11-30": "St. Andrew's Day", - "2013-12-02": "St. Andrew's Day (Observed)", + "2013-12-02": "St. Andrew's Day (observed)", "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", @@ -527,7 +527,7 @@ "2014-05-26": "Spring Bank Holiday", "2014-08-04": "Summer Bank Holiday", "2014-11-30": "St. Andrew's Day", - "2014-12-01": "St. Andrew's Day (Observed)", + "2014-12-01": "St. Andrew's Day (observed)", "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2015-01-01": "New Year's Day", @@ -539,10 +539,10 @@ "2015-11-30": "St. Andrew's Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "New Year Holiday", - "2016-01-04": "New Year Holiday (Observed)", + "2016-01-04": "New Year Holiday (observed)", "2016-03-25": "Good Friday", "2016-05-02": "May Day", "2016-05-30": "Spring Bank Holiday", @@ -550,10 +550,10 @@ "2016-11-30": "St. Andrew's Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year Holiday; New Year's Day (Observed)", - "2017-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2017-01-02": "New Year Holiday; New Year's Day (observed)", + "2017-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2017-04-14": "Good Friday", "2017-05-01": "May Day", "2017-05-29": "Spring Bank Holiday", @@ -577,7 +577,7 @@ "2019-05-27": "Spring Bank Holiday", "2019-08-05": "Summer Bank Holiday", "2019-11-30": "St. Andrew's Day", - "2019-12-02": "St. Andrew's Day (Observed)", + "2019-12-02": "St. Andrew's Day (observed)", "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", @@ -589,10 +589,10 @@ "2020-11-30": "St. Andrew's Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "New Year Holiday", - "2021-01-04": "New Year Holiday (Observed)", + "2021-01-04": "New Year Holiday (observed)", "2021-04-02": "Good Friday", "2021-05-03": "May Day", "2021-05-31": "Spring Bank Holiday", @@ -600,12 +600,12 @@ "2021-11-30": "St. Andrew's Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "New Year Holiday", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "New Year Holiday (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "New Year Holiday (observed)", "2022-04-15": "Good Friday", "2022-05-02": "May Day", "2022-06-02": "Spring Bank Holiday", @@ -615,10 +615,10 @@ "2022-11-30": "St. Andrew's Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year Holiday; New Year's Day (Observed)", - "2023-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2023-01-02": "New Year Holiday; New Year's Day (observed)", + "2023-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2023-04-07": "Good Friday", "2023-05-01": "May Day", "2023-05-08": "Coronation of Charles III", @@ -634,7 +634,7 @@ "2024-05-27": "Spring Bank Holiday", "2024-08-05": "Summer Bank Holiday", "2024-11-30": "St. Andrew's Day", - "2024-12-02": "St. Andrew's Day (Observed)", + "2024-12-02": "St. Andrew's Day (observed)", "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", @@ -644,7 +644,7 @@ "2025-05-26": "Spring Bank Holiday", "2025-08-04": "Summer Bank Holiday", "2025-11-30": "St. Andrew's Day", - "2025-12-01": "St. Andrew's Day (Observed)", + "2025-12-01": "St. Andrew's Day (observed)", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2026-01-01": "New Year's Day", @@ -656,10 +656,10 @@ "2026-11-30": "St. Andrew's Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "New Year Holiday", - "2027-01-04": "New Year Holiday (Observed)", + "2027-01-04": "New Year Holiday (observed)", "2027-03-26": "Good Friday", "2027-05-03": "May Day", "2027-05-31": "Spring Bank Holiday", @@ -667,12 +667,12 @@ "2027-11-30": "St. Andrew's Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "New Year Holiday", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "New Year Holiday (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "New Year Holiday (observed)", "2028-04-14": "Good Friday", "2028-05-01": "May Day", "2028-05-29": "Spring Bank Holiday", @@ -696,7 +696,7 @@ "2030-05-27": "Spring Bank Holiday", "2030-08-05": "Summer Bank Holiday", "2030-11-30": "St. Andrew's Day", - "2030-12-02": "St. Andrew's Day (Observed)", + "2030-12-02": "St. Andrew's Day (observed)", "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", @@ -706,7 +706,7 @@ "2031-05-26": "Spring Bank Holiday", "2031-08-04": "Summer Bank Holiday", "2031-11-30": "St. Andrew's Day", - "2031-12-01": "St. Andrew's Day (Observed)", + "2031-12-01": "St. Andrew's Day (observed)", "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2032-01-01": "New Year's Day", @@ -718,12 +718,12 @@ "2032-11-30": "St. Andrew's Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "New Year Holiday", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "New Year Holiday (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "New Year Holiday (observed)", "2033-04-15": "Good Friday", "2033-05-02": "May Day", "2033-05-30": "Spring Bank Holiday", @@ -731,10 +731,10 @@ "2033-11-30": "St. Andrew's Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year Holiday; New Year's Day (Observed)", - "2034-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2034-01-02": "New Year Holiday; New Year's Day (observed)", + "2034-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2034-04-07": "Good Friday", "2034-05-01": "May Day", "2034-05-29": "Spring Bank Holiday", @@ -758,7 +758,7 @@ "2036-05-26": "Spring Bank Holiday", "2036-08-04": "Summer Bank Holiday", "2036-11-30": "St. Andrew's Day", - "2036-12-01": "St. Andrew's Day (Observed)", + "2036-12-01": "St. Andrew's Day (observed)", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2037-01-01": "New Year's Day", @@ -770,10 +770,10 @@ "2037-11-30": "St. Andrew's Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "New Year Holiday", - "2038-01-04": "New Year Holiday (Observed)", + "2038-01-04": "New Year Holiday (observed)", "2038-04-23": "Good Friday", "2038-05-03": "May Day", "2038-05-31": "Spring Bank Holiday", @@ -781,12 +781,12 @@ "2038-11-30": "St. Andrew's Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "New Year Holiday", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "New Year Holiday (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "New Year Holiday (observed)", "2039-04-08": "Good Friday", "2039-05-02": "May Day", "2039-05-30": "Spring Bank Holiday", @@ -794,10 +794,10 @@ "2039-11-30": "St. Andrew's Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year Holiday; New Year's Day (Observed)", - "2040-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2040-01-02": "New Year Holiday; New Year's Day (observed)", + "2040-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2040-03-30": "Good Friday", "2040-05-07": "May Day", "2040-05-28": "Spring Bank Holiday", @@ -812,7 +812,7 @@ "2041-05-27": "Spring Bank Holiday", "2041-08-05": "Summer Bank Holiday", "2041-11-30": "St. Andrew's Day", - "2041-12-02": "St. Andrew's Day (Observed)", + "2041-12-02": "St. Andrew's Day (observed)", "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", @@ -822,7 +822,7 @@ "2042-05-26": "Spring Bank Holiday", "2042-08-04": "Summer Bank Holiday", "2042-11-30": "St. Andrew's Day", - "2042-12-01": "St. Andrew's Day (Observed)", + "2042-12-01": "St. Andrew's Day (observed)", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2043-01-01": "New Year's Day", @@ -834,10 +834,10 @@ "2043-11-30": "St. Andrew's Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "New Year Holiday", - "2044-01-04": "New Year Holiday (Observed)", + "2044-01-04": "New Year Holiday (observed)", "2044-04-15": "Good Friday", "2044-05-02": "May Day", "2044-05-30": "Spring Bank Holiday", @@ -845,10 +845,10 @@ "2044-11-30": "St. Andrew's Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year Holiday; New Year's Day (Observed)", - "2045-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2045-01-02": "New Year Holiday; New Year's Day (observed)", + "2045-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2045-04-07": "Good Friday", "2045-05-01": "May Day", "2045-05-29": "Spring Bank Holiday", @@ -872,7 +872,7 @@ "2047-05-27": "Spring Bank Holiday", "2047-08-05": "Summer Bank Holiday", "2047-11-30": "St. Andrew's Day", - "2047-12-02": "St. Andrew's Day (Observed)", + "2047-12-02": "St. Andrew's Day (observed)", "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", @@ -884,10 +884,10 @@ "2048-11-30": "St. Andrew's Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "New Year Holiday", - "2049-01-04": "New Year Holiday (Observed)", + "2049-01-04": "New Year Holiday (observed)", "2049-04-16": "Good Friday", "2049-05-03": "May Day", "2049-05-31": "Spring Bank Holiday", @@ -895,12 +895,12 @@ "2049-11-30": "St. Andrew's Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "New Year Holiday", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "New Year Holiday (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "New Year Holiday (observed)", "2050-04-08": "Good Friday", "2050-05-02": "May Day", "2050-05-30": "Spring Bank Holiday", @@ -908,5 +908,5 @@ "2050-11-30": "St. Andrew's Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/GB_WLS.json b/snapshots/countries/GB_WLS.json index 6473ece13..3198045fb 100644 --- a/snapshots/countries/GB_WLS.json +++ b/snapshots/countries/GB_WLS.json @@ -15,18 +15,18 @@ "1953-04-06": "Easter Monday", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-12-25": "Christmas Day", @@ -43,12 +43,12 @@ "1959-03-30": "Easter Monday", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-12-25": "Christmas Day", @@ -65,18 +65,18 @@ "1964-03-30": "Easter Monday", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-12-25": "Christmas Day", @@ -93,15 +93,15 @@ "1970-03-30": "Easter Monday", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-05-31": "Spring Bank Holiday", "1971-08-30": "Late Summer Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-05-29": "Spring Bank Holiday", @@ -134,10 +134,10 @@ "1976-08-30": "Late Summer Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-30": "Spring Bank Holiday", @@ -145,9 +145,9 @@ "1977-08-29": "Late Summer Bank Holiday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-01": "May Day", @@ -180,7 +180,7 @@ "1981-08-31": "Late Summer Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -189,10 +189,10 @@ "1982-08-30": "Late Summer Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-02": "May Day", @@ -200,9 +200,9 @@ "1983-08-29": "Late Summer Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-07": "May Day", @@ -234,7 +234,7 @@ "1987-08-31": "Late Summer Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -243,9 +243,9 @@ "1988-08-29": "Late Summer Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-01": "May Day", @@ -277,7 +277,7 @@ "1992-08-31": "Late Summer Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -286,10 +286,10 @@ "1993-08-30": "Late Summer Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-02": "May Day", @@ -297,9 +297,9 @@ "1994-08-29": "Late Summer Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-08": "May Day", @@ -331,7 +331,7 @@ "1998-08-31": "Late Summer Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -340,11 +340,11 @@ "1999-08-30": "Late Summer Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-01": "May Day", @@ -385,10 +385,10 @@ "2004-08-30": "Late Summer Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-02": "May Day", @@ -396,9 +396,9 @@ "2005-08-29": "Late Summer Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-01": "May Day", @@ -430,7 +430,7 @@ "2009-08-31": "Late Summer Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -439,10 +439,10 @@ "2010-08-30": "Late Summer Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-04-29": "Wedding of William and Catherine", @@ -451,9 +451,9 @@ "2011-08-29": "Late Summer Bank Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-07": "May Day", @@ -486,7 +486,7 @@ "2015-08-31": "Late Summer Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", @@ -495,9 +495,9 @@ "2016-08-29": "Late Summer Bank Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-01": "May Day", @@ -529,7 +529,7 @@ "2020-08-31": "Late Summer Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", @@ -538,10 +538,10 @@ "2021-08-30": "Late Summer Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-02": "May Day", @@ -551,9 +551,9 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-01": "May Day", @@ -586,7 +586,7 @@ "2026-08-31": "Late Summer Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", @@ -595,10 +595,10 @@ "2027-08-30": "Late Summer Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-01": "May Day", @@ -638,10 +638,10 @@ "2032-08-30": "Late Summer Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-02": "May Day", @@ -649,9 +649,9 @@ "2033-08-29": "Late Summer Bank Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-01": "May Day", @@ -683,7 +683,7 @@ "2037-08-31": "Late Summer Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", @@ -692,10 +692,10 @@ "2038-08-30": "Late Summer Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-02": "May Day", @@ -703,9 +703,9 @@ "2039-08-29": "Late Summer Bank Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-07": "May Day", @@ -737,7 +737,7 @@ "2043-08-31": "Late Summer Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", @@ -746,9 +746,9 @@ "2044-08-29": "Late Summer Bank Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-01": "May Day", @@ -780,7 +780,7 @@ "2048-08-31": "Late Summer Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", @@ -789,10 +789,10 @@ "2049-08-30": "Late Summer Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-02": "May Day", @@ -800,5 +800,5 @@ "2050-08-29": "Late Summer Bank Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/GR_COMMON.json b/snapshots/countries/GR_COMMON.json index ce5ef3ac8..886c44b08 100644 --- a/snapshots/countries/GR_COMMON.json +++ b/snapshots/countries/GR_COMMON.json @@ -62,7 +62,7 @@ "1954-04-23": "Good Friday", "1954-04-26": "Easter Monday", "1954-05-01": "Labor Day", - "1954-05-03": "Labor Day (Observed)", + "1954-05-03": "Labor Day (observed)", "1954-06-14": "Easter Monday", "1954-08-15": "Dormition of the Mother of God", "1954-10-28": "Ochi Day", @@ -77,7 +77,7 @@ "1955-04-15": "Good Friday", "1955-04-18": "Easter Monday", "1955-05-01": "Labor Day", - "1955-05-02": "Labor Day (Observed)", + "1955-05-02": "Labor Day (observed)", "1955-06-06": "Easter Monday", "1955-08-15": "Dormition of the Mother of God", "1955-10-28": "Ochi Day", @@ -147,7 +147,7 @@ "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-05-01": "Labor Day", - "1960-05-02": "Labor Day (Observed)", + "1960-05-02": "Labor Day (observed)", "1960-06-06": "Easter Monday", "1960-08-15": "Dormition of the Mother of God", "1960-10-28": "Ochi Day", @@ -217,7 +217,7 @@ "1965-04-23": "Good Friday", "1965-04-26": "Easter Monday", "1965-05-01": "Labor Day", - "1965-05-03": "Labor Day (Observed)", + "1965-05-03": "Labor Day (observed)", "1965-06-14": "Easter Monday", "1965-08-15": "Dormition of the Mother of God", "1965-10-28": "Ochi Day", @@ -232,7 +232,7 @@ "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-05-01": "Labor Day", - "1966-05-02": "Labor Day (Observed)", + "1966-05-02": "Labor Day (observed)", "1966-05-30": "Easter Monday", "1966-08-15": "Dormition of the Mother of God", "1966-10-28": "Ochi Day", @@ -302,7 +302,7 @@ "1971-04-16": "Good Friday", "1971-04-19": "Easter Monday", "1971-05-01": "Labor Day", - "1971-05-03": "Labor Day (Observed)", + "1971-05-03": "Labor Day (observed)", "1971-06-07": "Easter Monday", "1971-08-15": "Dormition of the Mother of God", "1971-10-28": "Ochi Day", @@ -373,7 +373,7 @@ "1976-04-23": "Good Friday", "1976-04-26": "Easter Monday", "1976-05-01": "Labor Day", - "1976-05-03": "Labor Day (Observed)", + "1976-05-03": "Labor Day (observed)", "1976-06-14": "Easter Monday", "1976-08-15": "Dormition of the Mother of God", "1976-10-28": "Ochi Day", @@ -388,7 +388,7 @@ "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-01": "Labor Day", - "1977-05-02": "Labor Day (Observed)", + "1977-05-02": "Labor Day (observed)", "1977-05-30": "Easter Monday", "1977-08-15": "Dormition of the Mother of God", "1977-10-28": "Ochi Day", @@ -458,7 +458,7 @@ "1982-04-16": "Good Friday", "1982-04-19": "Easter Monday", "1982-05-01": "Labor Day", - "1982-05-03": "Labor Day (Observed)", + "1982-05-03": "Labor Day (observed)", "1982-06-07": "Easter Monday", "1982-08-15": "Dormition of the Mother of God", "1982-10-28": "Ochi Day", @@ -471,7 +471,7 @@ "1983-03-21": "Clean Monday", "1983-03-25": "Independence Day", "1983-05-01": "Labor Day", - "1983-05-02": "Labor Day (Observed)", + "1983-05-02": "Labor Day (observed)", "1983-05-06": "Good Friday", "1983-05-09": "Easter Monday", "1983-06-27": "Easter Monday", @@ -544,7 +544,7 @@ "1988-04-08": "Good Friday", "1988-04-11": "Easter Monday", "1988-05-01": "Labor Day", - "1988-05-02": "Labor Day (Observed)", + "1988-05-02": "Labor Day (observed)", "1988-05-30": "Easter Monday", "1988-08-15": "Dormition of the Mother of God", "1988-10-28": "Ochi Day", @@ -614,7 +614,7 @@ "1993-04-16": "Good Friday", "1993-04-19": "Easter Monday", "1993-05-01": "Labor Day", - "1993-05-03": "Labor Day (Observed)", + "1993-05-03": "Labor Day (observed)", "1993-06-07": "Easter Monday", "1993-08-15": "Dormition of the Mother of God", "1993-10-28": "Ochi Day", @@ -629,7 +629,7 @@ "1994-04-29": "Good Friday", "1994-05-01": "Labor Day", "1994-05-02": "Easter Monday", - "1994-05-03": "Labor Day (Observed)", + "1994-05-03": "Labor Day (observed)", "1994-06-20": "Easter Monday", "1994-08-15": "Dormition of the Mother of God", "1994-10-28": "Ochi Day", @@ -700,7 +700,7 @@ "1999-04-09": "Good Friday", "1999-04-12": "Easter Monday", "1999-05-01": "Labor Day", - "1999-05-03": "Labor Day (Observed)", + "1999-05-03": "Labor Day (observed)", "1999-05-31": "Easter Monday", "1999-08-15": "Dormition of the Mother of God", "1999-10-28": "Ochi Day", @@ -770,7 +770,7 @@ "2004-04-09": "Good Friday", "2004-04-12": "Easter Monday", "2004-05-01": "Labor Day", - "2004-05-03": "Labor Day (Observed)", + "2004-05-03": "Labor Day (observed)", "2004-05-31": "Easter Monday", "2004-08-15": "Dormition of the Mother of God", "2004-10-28": "Ochi Day", @@ -785,7 +785,7 @@ "2005-04-29": "Good Friday", "2005-05-01": "Labor Day", "2005-05-02": "Easter Monday", - "2005-05-03": "Labor Day (Observed)", + "2005-05-03": "Labor Day (observed)", "2005-06-20": "Easter Monday", "2005-08-15": "Dormition of the Mother of God", "2005-10-28": "Ochi Day", @@ -856,7 +856,7 @@ "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", "2010-05-01": "Labor Day", - "2010-05-03": "Labor Day (Observed)", + "2010-05-03": "Labor Day (observed)", "2010-05-24": "Easter Monday", "2010-08-15": "Dormition of the Mother of God", "2010-10-28": "Ochi Day", @@ -871,7 +871,7 @@ "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-05-01": "Labor Day", - "2011-05-02": "Labor Day (Observed)", + "2011-05-02": "Labor Day (observed)", "2011-06-13": "Easter Monday", "2011-08-15": "Dormition of the Mother of God", "2011-10-28": "Ochi Day", @@ -942,7 +942,7 @@ "2016-04-29": "Good Friday", "2016-05-01": "Labor Day", "2016-05-02": "Easter Monday", - "2016-05-03": "Labor Day (Observed)", + "2016-05-03": "Labor Day (observed)", "2016-06-20": "Easter Monday", "2016-08-15": "Dormition of the Mother of God", "2016-10-28": "Ochi Day", @@ -1013,7 +1013,7 @@ "2021-04-30": "Good Friday", "2021-05-01": "Labor Day", "2021-05-03": "Easter Monday", - "2021-05-04": "Labor Day (Observed)", + "2021-05-04": "Labor Day (observed)", "2021-06-21": "Easter Monday", "2021-08-15": "Dormition of the Mother of God", "2021-10-28": "Ochi Day", @@ -1028,7 +1028,7 @@ "2022-04-22": "Good Friday", "2022-04-25": "Easter Monday", "2022-05-01": "Labor Day", - "2022-05-02": "Labor Day (Observed)", + "2022-05-02": "Labor Day (observed)", "2022-06-13": "Easter Monday", "2022-08-15": "Dormition of the Mother of God", "2022-10-28": "Ochi Day", @@ -1099,7 +1099,7 @@ "2027-04-30": "Good Friday", "2027-05-01": "Labor Day", "2027-05-03": "Easter Monday", - "2027-05-04": "Labor Day (Observed)", + "2027-05-04": "Labor Day (observed)", "2027-06-21": "Easter Monday", "2027-08-15": "Dormition of the Mother of God", "2027-10-28": "Ochi Day", @@ -1170,7 +1170,7 @@ "2032-04-30": "Good Friday", "2032-05-01": "Labor Day", "2032-05-03": "Easter Monday", - "2032-05-04": "Labor Day (Observed)", + "2032-05-04": "Labor Day (observed)", "2032-06-21": "Easter Monday", "2032-08-15": "Dormition of the Mother of God", "2032-10-28": "Ochi Day", @@ -1185,7 +1185,7 @@ "2033-04-22": "Good Friday", "2033-04-25": "Easter Monday", "2033-05-01": "Labor Day", - "2033-05-02": "Labor Day (Observed)", + "2033-05-02": "Labor Day (observed)", "2033-06-13": "Easter Monday", "2033-08-15": "Dormition of the Mother of God", "2033-10-28": "Ochi Day", @@ -1256,7 +1256,7 @@ "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-05-01": "Labor Day", - "2038-05-03": "Labor Day (Observed)", + "2038-05-03": "Labor Day (observed)", "2038-06-14": "Easter Monday", "2038-08-15": "Dormition of the Mother of God", "2038-10-28": "Ochi Day", @@ -1271,7 +1271,7 @@ "2039-04-15": "Good Friday", "2039-04-18": "Easter Monday", "2039-05-01": "Labor Day", - "2039-05-02": "Labor Day (Observed)", + "2039-05-02": "Labor Day (observed)", "2039-06-06": "Easter Monday", "2039-08-15": "Dormition of the Mother of God", "2039-10-28": "Ochi Day", @@ -1341,7 +1341,7 @@ "2044-04-22": "Good Friday", "2044-04-25": "Easter Monday", "2044-05-01": "Labor Day", - "2044-05-02": "Labor Day (Observed)", + "2044-05-02": "Labor Day (observed)", "2044-06-13": "Easter Monday", "2044-08-15": "Dormition of the Mother of God", "2044-10-28": "Ochi Day", @@ -1412,7 +1412,7 @@ "2049-04-23": "Good Friday", "2049-04-26": "Easter Monday", "2049-05-01": "Labor Day", - "2049-05-03": "Labor Day (Observed)", + "2049-05-03": "Labor Day (observed)", "2049-06-14": "Easter Monday", "2049-08-15": "Dormition of the Mother of God", "2049-10-28": "Ochi Day", @@ -1427,7 +1427,7 @@ "2050-04-15": "Good Friday", "2050-04-18": "Easter Monday", "2050-05-01": "Labor Day", - "2050-05-02": "Labor Day (Observed)", + "2050-05-02": "Labor Day (observed)", "2050-06-06": "Easter Monday", "2050-08-15": "Dormition of the Mother of God", "2050-10-28": "Ochi Day", diff --git a/snapshots/countries/GU_COMMON.json b/snapshots/countries/GU_COMMON.json index 7da0517fc..76002ee05 100644 --- a/snapshots/countries/GU_COMMON.json +++ b/snapshots/countries/GU_COMMON.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", @@ -8,7 +8,7 @@ "1950-07-21": "Liberation Day (Guam)", "1950-09-04": "Labor Day", "1950-11-02": "All Souls' Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-08": "Lady of Camarin Day", @@ -22,7 +22,7 @@ "1951-09-03": "Labor Day", "1951-11-02": "All Souls' Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-08": "Lady of Camarin Day", "1951-12-25": "Christmas Day", @@ -42,7 +42,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-07-21": "Liberation Day (Guam)", "1953-09-07": "Labor Day", @@ -56,16 +56,16 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-07-21": "Liberation Day (Guam)", "1954-09-06": "Labor Day", "1954-11-02": "All Souls' Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", "1954-12-08": "Lady of Camarin Day", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", @@ -78,9 +78,9 @@ "1955-11-24": "Thanksgiving", "1955-12-08": "Lady of Camarin Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -89,7 +89,7 @@ "1956-09-03": "Labor Day", "1956-11-02": "All Souls' Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-08": "Lady of Camarin Day", "1956-12-25": "Christmas Day", @@ -121,7 +121,7 @@ "1959-02-22": "Washington's Birthday", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-07-21": "Liberation Day (Guam)", "1959-09-07": "Labor Day", @@ -142,9 +142,9 @@ "1960-11-24": "Thanksgiving", "1960-12-08": "Lady of Camarin Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", @@ -152,7 +152,7 @@ "1961-07-21": "Liberation Day (Guam)", "1961-09-04": "Labor Day", "1961-11-02": "All Souls' Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-08": "Lady of Camarin Day", @@ -166,7 +166,7 @@ "1962-09-03": "Labor Day", "1962-11-02": "All Souls' Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-08": "Lady of Camarin Day", "1962-12-25": "Christmas Day", @@ -186,7 +186,7 @@ "1964-02-22": "Washington's Birthday", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-07-21": "Liberation Day (Guam)", "1964-09-07": "Labor Day", @@ -200,16 +200,16 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-07-21": "Liberation Day (Guam)", "1965-09-06": "Labor Day", "1965-11-02": "All Souls' Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", "1965-12-08": "Lady of Camarin Day", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", @@ -222,9 +222,9 @@ "1966-11-24": "Thanksgiving", "1966-12-08": "Lady of Camarin Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", @@ -232,7 +232,7 @@ "1967-07-21": "Liberation Day (Guam)", "1967-09-04": "Labor Day", "1967-11-02": "All Souls' Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-08": "Lady of Camarin Day", @@ -266,7 +266,7 @@ "1970-03-02": "Guam Discovery Day", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-07-21": "Liberation Day (Guam)", "1970-09-07": "Labor Day", @@ -281,16 +281,16 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-07-21": "Liberation Day (Guam)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-02": "All Souls' Day", "1971-11-25": "Thanksgiving", "1971-12-08": "Lady of Camarin Day", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-06": "Guam Discovery Day", @@ -349,16 +349,16 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-07-21": "Liberation Day (Guam)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-02": "All Souls' Day", "1976-11-25": "Thanksgiving", "1976-12-08": "Lady of Camarin Day", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-03-07": "Guam Discovery Day", @@ -372,9 +372,9 @@ "1977-11-24": "Thanksgiving", "1977-12-08": "Lady of Camarin Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-06": "Guam Discovery Day", "1978-03-24": "Good Friday", @@ -383,7 +383,7 @@ "1978-07-21": "Liberation Day (Guam)", "1978-09-04": "Labor Day", "1978-11-02": "All Souls' Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-08": "Lady of Camarin Day", @@ -398,7 +398,7 @@ "1979-09-03": "Labor Day", "1979-11-02": "All Souls' Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-08": "Lady of Camarin Day", "1979-12-25": "Christmas Day", @@ -420,7 +420,7 @@ "1981-03-02": "Guam Discovery Day", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-07-21": "Liberation Day (Guam)", "1981-09-07": "Labor Day", @@ -435,16 +435,16 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-07-21": "Liberation Day (Guam)", "1982-09-06": "Labor Day", "1982-11-02": "All Souls' Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-12-08": "Lady of Camarin Day", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-03-07": "Guam Discovery Day", @@ -458,9 +458,9 @@ "1983-11-24": "Thanksgiving", "1983-12-08": "Lady of Camarin Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-03-05": "Guam Discovery Day", "1984-04-20": "Good Friday", @@ -470,7 +470,7 @@ "1984-09-03": "Labor Day", "1984-11-02": "All Souls' Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-08": "Lady of Camarin Day", "1984-12-25": "Christmas Day", @@ -507,7 +507,7 @@ "1987-03-02": "Guam Discovery Day", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-07-21": "Liberation Day (Guam)", "1987-09-07": "Labor Day", @@ -530,9 +530,9 @@ "1988-11-24": "Thanksgiving", "1988-12-08": "Lady of Camarin Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-06": "Guam Discovery Day", @@ -542,7 +542,7 @@ "1989-07-21": "Liberation Day (Guam)", "1989-09-04": "Labor Day", "1989-11-02": "All Souls' Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-08": "Lady of Camarin Day", @@ -558,7 +558,7 @@ "1990-09-03": "Labor Day", "1990-11-02": "All Souls' Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-08": "Lady of Camarin Day", "1990-12-25": "Christmas Day", @@ -582,7 +582,7 @@ "1992-03-02": "Guam Discovery Day", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-07-21": "Liberation Day (Guam)", "1992-09-07": "Labor Day", @@ -598,16 +598,16 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-07-21": "Liberation Day (Guam)", "1993-09-06": "Labor Day", "1993-11-02": "All Souls' Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-12-08": "Lady of Camarin Day", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -622,9 +622,9 @@ "1994-11-24": "Thanksgiving", "1994-12-08": "Lady of Camarin Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-03-06": "Guam Discovery Day", @@ -634,7 +634,7 @@ "1995-07-21": "Liberation Day (Guam)", "1995-09-04": "Labor Day", "1995-11-02": "All Souls' Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-08": "Lady of Camarin Day", @@ -673,7 +673,7 @@ "1998-03-02": "Guam Discovery Day", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-07-21": "Liberation Day (Guam)", "1998-09-07": "Labor Day", @@ -689,16 +689,16 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-07-21": "Liberation Day (Guam)", "1999-09-06": "Labor Day", "1999-11-02": "All Souls' Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-12-08": "Lady of Camarin Day", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -709,7 +709,7 @@ "2000-07-21": "Liberation Day (Guam)", "2000-09-04": "Labor Day", "2000-11-02": "All Souls' Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-08": "Lady of Camarin Day", @@ -725,7 +725,7 @@ "2001-09-03": "Labor Day", "2001-11-02": "All Souls' Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-08": "Lady of Camarin Day", "2001-12-25": "Christmas Day", @@ -764,16 +764,16 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-07-21": "Liberation Day (Guam)", "2004-09-06": "Labor Day", "2004-11-02": "All Souls' Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-12-08": "Lady of Camarin Day", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -788,9 +788,9 @@ "2005-11-24": "Thanksgiving", "2005-12-08": "Lady of Camarin Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-03-06": "Guam Discovery Day", @@ -800,7 +800,7 @@ "2006-07-21": "Liberation Day (Guam)", "2006-09-04": "Labor Day", "2006-11-02": "All Souls' Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-08": "Lady of Camarin Day", @@ -816,7 +816,7 @@ "2007-09-03": "Labor Day", "2007-11-02": "All Souls' Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-08": "Lady of Camarin Day", "2007-12-25": "Christmas Day", @@ -840,7 +840,7 @@ "2009-03-02": "Guam Discovery Day", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-07-21": "Liberation Day (Guam)", "2009-09-07": "Labor Day", @@ -856,16 +856,16 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-07-21": "Liberation Day (Guam)", "2010-09-06": "Labor Day", "2010-11-02": "All Souls' Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-12-08": "Lady of Camarin Day", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -880,9 +880,9 @@ "2011-11-24": "Thanksgiving", "2011-12-08": "Lady of Camarin Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-03-05": "Guam Discovery Day", @@ -893,7 +893,7 @@ "2012-09-03": "Labor Day", "2012-11-02": "All Souls' Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-08": "Lady of Camarin Day", "2012-12-25": "Christmas Day", @@ -931,7 +931,7 @@ "2015-03-02": "Guam Discovery Day", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-07-21": "Liberation Day (Guam)", "2015-09-07": "Labor Day", @@ -954,9 +954,9 @@ "2016-11-24": "Thanksgiving", "2016-12-08": "Lady of Camarin Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-03-06": "Guam Discovery Day", @@ -966,7 +966,7 @@ "2017-07-21": "Liberation Day (Guam)", "2017-09-04": "Labor Day", "2017-11-02": "All Souls' Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-08": "Lady of Camarin Day", @@ -982,7 +982,7 @@ "2018-09-03": "Labor Day", "2018-11-02": "All Souls' Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-08": "Lady of Camarin Day", "2018-12-25": "Christmas Day", @@ -1006,7 +1006,7 @@ "2020-03-02": "Guam Discovery Day", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-07-21": "Liberation Day (Guam)", "2020-09-07": "Labor Day", @@ -1021,19 +1021,19 @@ "2021-03-01": "Guam Discovery Day", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-07-21": "Liberation Day (Guam)", "2021-09-06": "Labor Day", "2021-11-02": "All Souls' Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-12-08": "Lady of Camarin Day", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", @@ -1041,7 +1041,7 @@ "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-07-21": "Liberation Day (Guam)", "2022-09-05": "Labor Day", @@ -1050,9 +1050,9 @@ "2022-11-24": "Thanksgiving", "2022-12-08": "Lady of Camarin Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-03-06": "Guam Discovery Day", @@ -1063,7 +1063,7 @@ "2023-07-21": "Liberation Day (Guam)", "2023-09-04": "Labor Day", "2023-11-02": "All Souls' Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-08": "Lady of Camarin Day", @@ -1105,7 +1105,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-07-21": "Liberation Day (Guam)", "2026-09-07": "Labor Day", @@ -1120,19 +1120,19 @@ "2027-03-01": "Guam Discovery Day", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-07-21": "Liberation Day (Guam)", "2027-09-06": "Labor Day", "2027-11-02": "All Souls' Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-12-08": "Lady of Camarin Day", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -1144,7 +1144,7 @@ "2028-07-21": "Liberation Day (Guam)", "2028-09-04": "Labor Day", "2028-11-02": "All Souls' Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-08": "Lady of Camarin Day", @@ -1161,7 +1161,7 @@ "2029-09-03": "Labor Day", "2029-11-02": "All Souls' Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-08": "Lady of Camarin Day", "2029-12-25": "Christmas Day", @@ -1201,19 +1201,19 @@ "2032-03-01": "Guam Discovery Day", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-07-21": "Liberation Day (Guam)", "2032-09-06": "Labor Day", "2032-11-02": "All Souls' Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-12-08": "Lady of Camarin Day", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", @@ -1221,7 +1221,7 @@ "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-07-21": "Liberation Day (Guam)", "2033-09-05": "Labor Day", @@ -1230,9 +1230,9 @@ "2033-11-24": "Thanksgiving", "2033-12-08": "Lady of Camarin Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-03-06": "Guam Discovery Day", @@ -1243,7 +1243,7 @@ "2034-07-21": "Liberation Day (Guam)", "2034-09-04": "Labor Day", "2034-11-02": "All Souls' Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-08": "Lady of Camarin Day", @@ -1260,7 +1260,7 @@ "2035-09-03": "Labor Day", "2035-11-02": "All Souls' Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-08": "Lady of Camarin Day", "2035-12-25": "Christmas Day", @@ -1286,7 +1286,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-07-21": "Liberation Day (Guam)", "2037-09-07": "Labor Day", @@ -1301,19 +1301,19 @@ "2038-03-01": "Guam Discovery Day", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-07-21": "Liberation Day (Guam)", "2038-09-06": "Labor Day", "2038-11-02": "All Souls' Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-12-08": "Lady of Camarin Day", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", @@ -1321,7 +1321,7 @@ "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-07-21": "Liberation Day (Guam)", "2039-09-05": "Labor Day", @@ -1330,9 +1330,9 @@ "2039-11-24": "Thanksgiving", "2039-12-08": "Lady of Camarin Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-05": "Guam Discovery Day", @@ -1344,7 +1344,7 @@ "2040-09-03": "Labor Day", "2040-11-02": "All Souls' Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-08": "Lady of Camarin Day", "2040-12-25": "Christmas Day", @@ -1385,7 +1385,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-07-21": "Liberation Day (Guam)", "2043-09-07": "Labor Day", @@ -1401,7 +1401,7 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-07-21": "Liberation Day (Guam)", "2044-09-05": "Labor Day", @@ -1410,9 +1410,9 @@ "2044-11-24": "Thanksgiving", "2044-12-08": "Lady of Camarin Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-03-06": "Guam Discovery Day", @@ -1423,7 +1423,7 @@ "2045-07-21": "Liberation Day (Guam)", "2045-09-04": "Labor Day", "2045-11-02": "All Souls' Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-08": "Lady of Camarin Day", @@ -1440,7 +1440,7 @@ "2046-09-03": "Labor Day", "2046-11-02": "All Souls' Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-08": "Lady of Camarin Day", "2046-12-25": "Christmas Day", @@ -1466,7 +1466,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-07-21": "Liberation Day (Guam)", "2048-09-07": "Labor Day", @@ -1481,19 +1481,19 @@ "2049-03-01": "Guam Discovery Day", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-07-21": "Liberation Day (Guam)", "2049-09-06": "Labor Day", "2049-11-02": "All Souls' Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-12-08": "Lady of Camarin Day", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", @@ -1501,7 +1501,7 @@ "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-07-21": "Liberation Day (Guam)", "2050-09-05": "Labor Day", @@ -1510,5 +1510,5 @@ "2050-11-24": "Thanksgiving", "2050-12-08": "Lady of Camarin Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/IE_COMMON.json b/snapshots/countries/IE_COMMON.json index 4289eb01c..8b440541f 100644 --- a/snapshots/countries/IE_COMMON.json +++ b/snapshots/countries/IE_COMMON.json @@ -9,7 +9,7 @@ "1950-12-26": "St. Stephen's Day", "1951-01-01": "New Year's Day", "1951-03-17": "St. Patrick's Day", - "1951-03-19": "St. Patrick's Day (Observed)", + "1951-03-19": "St. Patrick's Day (observed)", "1951-03-26": "Easter Monday", "1951-06-04": "June Bank Holiday", "1951-08-06": "August Bank Holiday", @@ -32,7 +32,7 @@ "1953-10-26": "October Bank Holiday", "1953-12-25": "Christmas Day", "1953-12-26": "St. Stephen's Day", - "1953-12-28": "St. Stephen's Day (Observed)", + "1953-12-28": "St. Stephen's Day (observed)", "1954-01-01": "New Year's Day", "1954-03-17": "St. Patrick's Day", "1954-04-19": "Easter Monday", @@ -41,8 +41,8 @@ "1954-10-25": "October Bank Holiday", "1954-12-25": "Christmas Day", "1954-12-26": "St. Stephen's Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "St. Stephen's Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "St. Stephen's Day (observed)", "1955-01-01": "New Year's Day", "1955-03-17": "St. Patrick's Day", "1955-04-11": "Easter Monday", @@ -50,10 +50,10 @@ "1955-08-01": "August Bank Holiday", "1955-10-31": "October Bank Holiday", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1955-12-26": "Christmas Day (observed); St. Stephen's Day", "1956-01-01": "New Year's Day", "1956-03-17": "St. Patrick's Day", - "1956-03-19": "St. Patrick's Day (Observed)", + "1956-03-19": "St. Patrick's Day (observed)", "1956-04-02": "Easter Monday", "1956-06-04": "June Bank Holiday", "1956-08-06": "August Bank Holiday", @@ -62,7 +62,7 @@ "1956-12-26": "St. Stephen's Day", "1957-01-01": "New Year's Day", "1957-03-17": "St. Patrick's Day", - "1957-03-18": "St. Patrick's Day (Observed)", + "1957-03-18": "St. Patrick's Day (observed)", "1957-04-22": "Easter Monday", "1957-06-03": "June Bank Holiday", "1957-08-05": "August Bank Holiday", @@ -85,7 +85,7 @@ "1959-10-26": "October Bank Holiday", "1959-12-25": "Christmas Day", "1959-12-26": "St. Stephen's Day", - "1959-12-28": "St. Stephen's Day (Observed)", + "1959-12-28": "St. Stephen's Day (observed)", "1960-01-01": "New Year's Day", "1960-03-17": "St. Patrick's Day", "1960-04-18": "Easter Monday", @@ -93,7 +93,7 @@ "1960-08-01": "August Bank Holiday", "1960-10-31": "October Bank Holiday", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1960-12-26": "Christmas Day (observed); St. Stephen's Day", "1961-01-01": "New Year's Day", "1961-03-17": "St. Patrick's Day", "1961-04-03": "Easter Monday", @@ -104,7 +104,7 @@ "1961-12-26": "St. Stephen's Day", "1962-01-01": "New Year's Day", "1962-03-17": "St. Patrick's Day", - "1962-03-19": "St. Patrick's Day (Observed)", + "1962-03-19": "St. Patrick's Day (observed)", "1962-04-23": "Easter Monday", "1962-06-04": "June Bank Holiday", "1962-08-06": "August Bank Holiday", @@ -113,7 +113,7 @@ "1962-12-26": "St. Stephen's Day", "1963-01-01": "New Year's Day", "1963-03-17": "St. Patrick's Day", - "1963-03-18": "St. Patrick's Day (Observed)", + "1963-03-18": "St. Patrick's Day (observed)", "1963-04-15": "Easter Monday", "1963-06-03": "June Bank Holiday", "1963-08-05": "August Bank Holiday", @@ -128,7 +128,7 @@ "1964-10-26": "October Bank Holiday", "1964-12-25": "Christmas Day", "1964-12-26": "St. Stephen's Day", - "1964-12-28": "St. Stephen's Day (Observed)", + "1964-12-28": "St. Stephen's Day (observed)", "1965-01-01": "New Year's Day", "1965-03-17": "St. Patrick's Day", "1965-04-19": "Easter Monday", @@ -137,8 +137,8 @@ "1965-10-25": "October Bank Holiday", "1965-12-25": "Christmas Day", "1965-12-26": "St. Stephen's Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "St. Stephen's Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "St. Stephen's Day (observed)", "1966-01-01": "New Year's Day", "1966-03-17": "St. Patrick's Day", "1966-04-11": "Easter Monday", @@ -146,7 +146,7 @@ "1966-08-01": "August Bank Holiday", "1966-10-31": "October Bank Holiday", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1966-12-26": "Christmas Day (observed); St. Stephen's Day", "1967-01-01": "New Year's Day", "1967-03-17": "St. Patrick's Day", "1967-03-27": "Easter Monday", @@ -157,7 +157,7 @@ "1967-12-26": "St. Stephen's Day", "1968-01-01": "New Year's Day", "1968-03-17": "St. Patrick's Day", - "1968-03-18": "St. Patrick's Day (Observed)", + "1968-03-18": "St. Patrick's Day (observed)", "1968-04-15": "Easter Monday", "1968-06-03": "June Bank Holiday", "1968-08-05": "August Bank Holiday", @@ -180,7 +180,7 @@ "1970-10-26": "October Bank Holiday", "1970-12-25": "Christmas Day", "1970-12-26": "St. Stephen's Day", - "1970-12-28": "St. Stephen's Day (Observed)", + "1970-12-28": "St. Stephen's Day (observed)", "1971-01-01": "New Year's Day", "1971-03-17": "St. Patrick's Day", "1971-04-12": "Easter Monday", @@ -189,8 +189,8 @@ "1971-10-25": "October Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "St. Stephen's Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "St. Stephen's Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "St. Stephen's Day (observed)", "1972-01-01": "New Year's Day", "1972-03-17": "St. Patrick's Day", "1972-04-03": "Easter Monday", @@ -201,7 +201,7 @@ "1972-12-26": "St. Stephen's Day", "1973-01-01": "New Year's Day", "1973-03-17": "St. Patrick's Day", - "1973-03-19": "St. Patrick's Day (Observed)", + "1973-03-19": "St. Patrick's Day (observed)", "1973-04-23": "Easter Monday", "1973-06-04": "June Bank Holiday", "1973-08-06": "August Bank Holiday", @@ -210,7 +210,7 @@ "1973-12-26": "St. Stephen's Day", "1974-01-01": "New Year's Day", "1974-03-17": "St. Patrick's Day", - "1974-03-18": "St. Patrick's Day (Observed)", + "1974-03-18": "St. Patrick's Day (observed)", "1974-04-15": "Easter Monday", "1974-06-03": "June Bank Holiday", "1974-08-05": "August Bank Holiday", @@ -233,8 +233,8 @@ "1976-10-25": "October Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "St. Stephen's Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "St. Stephen's Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "St. Stephen's Day (observed)", "1977-01-01": "New Year's Day", "1977-03-17": "St. Patrick's Day", "1977-04-11": "Easter Monday", @@ -242,7 +242,7 @@ "1977-08-01": "August Bank Holiday", "1977-10-31": "October Bank Holiday", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1977-12-26": "Christmas Day (observed); St. Stephen's Day", "1978-01-01": "New Year's Day", "1978-03-17": "St. Patrick's Day", "1978-03-27": "Easter Monday", @@ -254,7 +254,7 @@ "1978-12-26": "St. Stephen's Day", "1979-01-01": "New Year's Day", "1979-03-17": "St. Patrick's Day", - "1979-03-19": "St. Patrick's Day (Observed)", + "1979-03-19": "St. Patrick's Day (observed)", "1979-04-16": "Easter Monday", "1979-05-07": "May Day", "1979-06-04": "June Bank Holiday", @@ -280,7 +280,7 @@ "1981-10-26": "October Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "St. Stephen's Day", - "1981-12-28": "St. Stephen's Day (Observed)", + "1981-12-28": "St. Stephen's Day (observed)", "1982-01-01": "New Year's Day", "1982-03-17": "St. Patrick's Day", "1982-04-12": "Easter Monday", @@ -290,8 +290,8 @@ "1982-10-25": "October Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "St. Stephen's Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "St. Stephen's Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "St. Stephen's Day (observed)", "1983-01-01": "New Year's Day", "1983-03-17": "St. Patrick's Day", "1983-04-04": "Easter Monday", @@ -300,10 +300,10 @@ "1983-08-01": "August Bank Holiday", "1983-10-31": "October Bank Holiday", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1983-12-26": "Christmas Day (observed); St. Stephen's Day", "1984-01-01": "New Year's Day", "1984-03-17": "St. Patrick's Day", - "1984-03-19": "St. Patrick's Day (Observed)", + "1984-03-19": "St. Patrick's Day (observed)", "1984-04-23": "Easter Monday", "1984-05-07": "May Day", "1984-06-04": "June Bank Holiday", @@ -313,7 +313,7 @@ "1984-12-26": "St. Stephen's Day", "1985-01-01": "New Year's Day", "1985-03-17": "St. Patrick's Day", - "1985-03-18": "St. Patrick's Day (Observed)", + "1985-03-18": "St. Patrick's Day (observed)", "1985-04-08": "Easter Monday", "1985-05-06": "May Day", "1985-06-03": "June Bank Holiday", @@ -339,7 +339,7 @@ "1987-10-26": "October Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "St. Stephen's Day", - "1987-12-28": "St. Stephen's Day (Observed)", + "1987-12-28": "St. Stephen's Day (observed)", "1988-01-01": "New Year's Day", "1988-03-17": "St. Patrick's Day", "1988-04-04": "Easter Monday", @@ -348,7 +348,7 @@ "1988-08-01": "August Bank Holiday", "1988-10-31": "October Bank Holiday", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1988-12-26": "Christmas Day (observed); St. Stephen's Day", "1989-01-01": "New Year's Day", "1989-03-17": "St. Patrick's Day", "1989-03-27": "Easter Monday", @@ -360,7 +360,7 @@ "1989-12-26": "St. Stephen's Day", "1990-01-01": "New Year's Day", "1990-03-17": "St. Patrick's Day", - "1990-03-19": "St. Patrick's Day (Observed)", + "1990-03-19": "St. Patrick's Day (observed)", "1990-04-16": "Easter Monday", "1990-05-07": "May Day", "1990-06-04": "June Bank Holiday", @@ -370,7 +370,7 @@ "1990-12-26": "St. Stephen's Day", "1991-01-01": "New Year's Day", "1991-03-17": "St. Patrick's Day", - "1991-03-18": "St. Patrick's Day (Observed)", + "1991-03-18": "St. Patrick's Day (observed)", "1991-04-01": "Easter Monday", "1991-05-06": "May Day", "1991-06-03": "June Bank Holiday", @@ -387,7 +387,7 @@ "1992-10-26": "October Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "St. Stephen's Day", - "1992-12-28": "St. Stephen's Day (Observed)", + "1992-12-28": "St. Stephen's Day (observed)", "1993-01-01": "New Year's Day", "1993-03-17": "St. Patrick's Day", "1993-04-12": "Easter Monday", @@ -397,8 +397,8 @@ "1993-10-25": "October Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "St. Stephen's Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "St. Stephen's Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "St. Stephen's Day (observed)", "1994-01-01": "New Year's Day", "1994-03-17": "St. Patrick's Day", "1994-04-04": "Easter Monday", @@ -407,7 +407,7 @@ "1994-08-01": "August Bank Holiday", "1994-10-31": "October Bank Holiday", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed); St. Stephen's Day", + "1994-12-26": "Christmas Day (observed); St. Stephen's Day", "1995-01-01": "New Year's Day", "1995-03-17": "St. Patrick's Day", "1995-04-17": "Easter Monday", @@ -419,7 +419,7 @@ "1995-12-26": "St. Stephen's Day", "1996-01-01": "New Year's Day", "1996-03-17": "St. Patrick's Day", - "1996-03-18": "St. Patrick's Day (Observed)", + "1996-03-18": "St. Patrick's Day (observed)", "1996-04-08": "Easter Monday", "1996-05-06": "May Day", "1996-06-03": "June Bank Holiday", @@ -445,7 +445,7 @@ "1998-10-26": "October Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "St. Stephen's Day", - "1998-12-28": "St. Stephen's Day (Observed)", + "1998-12-28": "St. Stephen's Day (observed)", "1999-01-01": "New Year's Day", "1999-03-17": "St. Patrick's Day", "1999-04-05": "Easter Monday", @@ -455,8 +455,8 @@ "1999-10-25": "October Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "St. Stephen's Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "St. Stephen's Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "St. Stephen's Day (observed)", "2000-01-01": "New Year's Day", "2000-03-17": "St. Patrick's Day", "2000-04-24": "Easter Monday", @@ -468,7 +468,7 @@ "2000-12-26": "St. Stephen's Day", "2001-01-01": "New Year's Day", "2001-03-17": "St. Patrick's Day", - "2001-03-19": "St. Patrick's Day (Observed)", + "2001-03-19": "St. Patrick's Day (observed)", "2001-04-16": "Easter Monday", "2001-05-07": "May Day", "2001-06-04": "June Bank Holiday", @@ -478,7 +478,7 @@ "2001-12-26": "St. Stephen's Day", "2002-01-01": "New Year's Day", "2002-03-17": "St. Patrick's Day", - "2002-03-18": "St. Patrick's Day (Observed)", + "2002-03-18": "St. Patrick's Day (observed)", "2002-04-01": "Easter Monday", "2002-05-06": "May Day", "2002-06-03": "June Bank Holiday", @@ -504,8 +504,8 @@ "2004-10-25": "October Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "St. Stephen's Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "St. Stephen's Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "St. Stephen's Day (observed)", "2005-01-01": "New Year's Day", "2005-03-17": "St. Patrick's Day", "2005-03-28": "Easter Monday", @@ -514,7 +514,7 @@ "2005-08-01": "August Bank Holiday", "2005-10-31": "October Bank Holiday", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2005-12-26": "Christmas Day (observed); St. Stephen's Day", "2006-01-01": "New Year's Day", "2006-03-17": "St. Patrick's Day", "2006-04-17": "Easter Monday", @@ -526,7 +526,7 @@ "2006-12-26": "St. Stephen's Day", "2007-01-01": "New Year's Day", "2007-03-17": "St. Patrick's Day", - "2007-03-19": "St. Patrick's Day (Observed)", + "2007-03-19": "St. Patrick's Day (observed)", "2007-04-09": "Easter Monday", "2007-05-07": "May Day", "2007-06-04": "June Bank Holiday", @@ -552,7 +552,7 @@ "2009-10-26": "October Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "St. Stephen's Day", - "2009-12-28": "St. Stephen's Day (Observed)", + "2009-12-28": "St. Stephen's Day (observed)", "2010-01-01": "New Year's Day", "2010-03-17": "St. Patrick's Day", "2010-04-05": "Easter Monday", @@ -562,8 +562,8 @@ "2010-10-25": "October Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "St. Stephen's Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "St. Stephen's Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "St. Stephen's Day (observed)", "2011-01-01": "New Year's Day", "2011-03-17": "St. Patrick's Day", "2011-04-25": "Easter Monday", @@ -572,10 +572,10 @@ "2011-08-01": "August Bank Holiday", "2011-10-31": "October Bank Holiday", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2011-12-26": "Christmas Day (observed); St. Stephen's Day", "2012-01-01": "New Year's Day", "2012-03-17": "St. Patrick's Day", - "2012-03-19": "St. Patrick's Day (Observed)", + "2012-03-19": "St. Patrick's Day (observed)", "2012-04-09": "Easter Monday", "2012-05-07": "May Day", "2012-06-04": "June Bank Holiday", @@ -585,7 +585,7 @@ "2012-12-26": "St. Stephen's Day", "2013-01-01": "New Year's Day", "2013-03-17": "St. Patrick's Day", - "2013-03-18": "St. Patrick's Day (Observed)", + "2013-03-18": "St. Patrick's Day (observed)", "2013-04-01": "Easter Monday", "2013-05-06": "May Day", "2013-06-03": "June Bank Holiday", @@ -611,7 +611,7 @@ "2015-10-26": "October Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "St. Stephen's Day", - "2015-12-28": "St. Stephen's Day (Observed)", + "2015-12-28": "St. Stephen's Day (observed)", "2016-01-01": "New Year's Day", "2016-03-17": "St. Patrick's Day", "2016-03-28": "Easter Monday", @@ -620,7 +620,7 @@ "2016-08-01": "August Bank Holiday", "2016-10-31": "October Bank Holiday", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2016-12-26": "Christmas Day (observed); St. Stephen's Day", "2017-01-01": "New Year's Day", "2017-03-17": "St. Patrick's Day", "2017-04-17": "Easter Monday", @@ -632,7 +632,7 @@ "2017-12-26": "St. Stephen's Day", "2018-01-01": "New Year's Day", "2018-03-17": "St. Patrick's Day", - "2018-03-19": "St. Patrick's Day (Observed)", + "2018-03-19": "St. Patrick's Day (observed)", "2018-04-02": "Easter Monday", "2018-05-07": "May Day", "2018-06-04": "June Bank Holiday", @@ -642,7 +642,7 @@ "2018-12-26": "St. Stephen's Day", "2019-01-01": "New Year's Day", "2019-03-17": "St. Patrick's Day", - "2019-03-18": "St. Patrick's Day (Observed)", + "2019-03-18": "St. Patrick's Day (observed)", "2019-04-22": "Easter Monday", "2019-05-06": "May Day", "2019-06-03": "June Bank Holiday", @@ -659,7 +659,7 @@ "2020-10-26": "October Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "St. Stephen's Day", - "2020-12-28": "St. Stephen's Day (Observed)", + "2020-12-28": "St. Stephen's Day (observed)", "2021-01-01": "New Year's Day", "2021-03-17": "St. Patrick's Day", "2021-04-05": "Easter Monday", @@ -669,8 +669,8 @@ "2021-10-25": "October Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "St. Stephen's Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "St. Stephen's Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "St. Stephen's Day (observed)", "2022-01-01": "New Year's Day", "2022-03-17": "St. Patrick's Day", "2022-03-18": "Day of Remembrance and Recognition", @@ -680,7 +680,7 @@ "2022-08-01": "August Bank Holiday", "2022-10-31": "October Bank Holiday", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2022-12-26": "Christmas Day (observed); St. Stephen's Day", "2023-01-01": "New Year's Day", "2023-02-06": "St. Brigid's Day", "2023-03-17": "St. Patrick's Day", @@ -694,7 +694,7 @@ "2024-01-01": "New Year's Day", "2024-02-05": "St. Brigid's Day", "2024-03-17": "St. Patrick's Day", - "2024-03-18": "St. Patrick's Day (Observed)", + "2024-03-18": "St. Patrick's Day (observed)", "2024-04-01": "Easter Monday", "2024-05-06": "May Day", "2024-06-03": "June Bank Holiday", @@ -722,7 +722,7 @@ "2026-10-26": "October Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "St. Stephen's Day", - "2026-12-28": "St. Stephen's Day (Observed)", + "2026-12-28": "St. Stephen's Day (observed)", "2027-01-01": "New Year's Day", "2027-02-01": "St. Brigid's Day", "2027-03-17": "St. Patrick's Day", @@ -733,8 +733,8 @@ "2027-10-25": "October Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "St. Stephen's Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "St. Stephen's Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "St. Stephen's Day (observed)", "2028-01-01": "New Year's Day", "2028-02-07": "St. Brigid's Day", "2028-03-17": "St. Patrick's Day", @@ -748,7 +748,7 @@ "2029-01-01": "New Year's Day", "2029-02-05": "St. Brigid's Day", "2029-03-17": "St. Patrick's Day", - "2029-03-19": "St. Patrick's Day (Observed)", + "2029-03-19": "St. Patrick's Day (observed)", "2029-04-02": "Easter Monday", "2029-05-07": "May Day", "2029-06-04": "June Bank Holiday", @@ -759,7 +759,7 @@ "2030-01-01": "New Year's Day", "2030-02-01": "St. Brigid's Day", "2030-03-17": "St. Patrick's Day", - "2030-03-18": "St. Patrick's Day (Observed)", + "2030-03-18": "St. Patrick's Day (observed)", "2030-04-22": "Easter Monday", "2030-05-06": "May Day", "2030-06-03": "June Bank Holiday", @@ -787,8 +787,8 @@ "2032-10-25": "October Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "St. Stephen's Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "St. Stephen's Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "St. Stephen's Day (observed)", "2033-01-01": "New Year's Day", "2033-02-07": "St. Brigid's Day", "2033-03-17": "St. Patrick's Day", @@ -798,7 +798,7 @@ "2033-08-01": "August Bank Holiday", "2033-10-31": "October Bank Holiday", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2033-12-26": "Christmas Day (observed); St. Stephen's Day", "2034-01-01": "New Year's Day", "2034-02-06": "St. Brigid's Day", "2034-03-17": "St. Patrick's Day", @@ -812,7 +812,7 @@ "2035-01-01": "New Year's Day", "2035-02-05": "St. Brigid's Day", "2035-03-17": "St. Patrick's Day", - "2035-03-19": "St. Patrick's Day (Observed)", + "2035-03-19": "St. Patrick's Day (observed)", "2035-03-26": "Easter Monday", "2035-05-07": "May Day", "2035-06-04": "June Bank Holiday", @@ -840,7 +840,7 @@ "2037-10-26": "October Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "St. Stephen's Day", - "2037-12-28": "St. Stephen's Day (Observed)", + "2037-12-28": "St. Stephen's Day (observed)", "2038-01-01": "New Year's Day", "2038-02-01": "St. Brigid's Day", "2038-03-17": "St. Patrick's Day", @@ -851,8 +851,8 @@ "2038-10-25": "October Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "St. Stephen's Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "St. Stephen's Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "St. Stephen's Day (observed)", "2039-01-01": "New Year's Day", "2039-02-07": "St. Brigid's Day", "2039-03-17": "St. Patrick's Day", @@ -862,11 +862,11 @@ "2039-08-01": "August Bank Holiday", "2039-10-31": "October Bank Holiday", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2039-12-26": "Christmas Day (observed); St. Stephen's Day", "2040-01-01": "New Year's Day", "2040-02-06": "St. Brigid's Day", "2040-03-17": "St. Patrick's Day", - "2040-03-19": "St. Patrick's Day (Observed)", + "2040-03-19": "St. Patrick's Day (observed)", "2040-04-02": "Easter Monday", "2040-05-07": "May Day", "2040-06-04": "June Bank Holiday", @@ -877,7 +877,7 @@ "2041-01-01": "New Year's Day", "2041-02-01": "St. Brigid's Day", "2041-03-17": "St. Patrick's Day", - "2041-03-18": "St. Patrick's Day (Observed)", + "2041-03-18": "St. Patrick's Day (observed)", "2041-04-22": "Easter Monday", "2041-05-06": "May Day", "2041-06-03": "June Bank Holiday", @@ -905,7 +905,7 @@ "2043-10-26": "October Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "St. Stephen's Day", - "2043-12-28": "St. Stephen's Day (Observed)", + "2043-12-28": "St. Stephen's Day (observed)", "2044-01-01": "New Year's Day", "2044-02-01": "St. Brigid's Day", "2044-03-17": "St. Patrick's Day", @@ -915,7 +915,7 @@ "2044-08-01": "August Bank Holiday", "2044-10-31": "October Bank Holiday", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed); St. Stephen's Day", + "2044-12-26": "Christmas Day (observed); St. Stephen's Day", "2045-01-01": "New Year's Day", "2045-02-06": "St. Brigid's Day", "2045-03-17": "St. Patrick's Day", @@ -929,7 +929,7 @@ "2046-01-01": "New Year's Day", "2046-02-05": "St. Brigid's Day", "2046-03-17": "St. Patrick's Day", - "2046-03-19": "St. Patrick's Day (Observed)", + "2046-03-19": "St. Patrick's Day (observed)", "2046-03-26": "Easter Monday", "2046-05-07": "May Day", "2046-06-04": "June Bank Holiday", @@ -940,7 +940,7 @@ "2047-01-01": "New Year's Day", "2047-02-01": "St. Brigid's Day", "2047-03-17": "St. Patrick's Day", - "2047-03-18": "St. Patrick's Day (Observed)", + "2047-03-18": "St. Patrick's Day (observed)", "2047-04-15": "Easter Monday", "2047-05-06": "May Day", "2047-06-03": "June Bank Holiday", @@ -958,7 +958,7 @@ "2048-10-26": "October Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "St. Stephen's Day", - "2048-12-28": "St. Stephen's Day (Observed)", + "2048-12-28": "St. Stephen's Day (observed)", "2049-01-01": "New Year's Day", "2049-02-01": "St. Brigid's Day", "2049-03-17": "St. Patrick's Day", @@ -969,8 +969,8 @@ "2049-10-25": "October Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "St. Stephen's Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "St. Stephen's Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "St. Stephen's Day (observed)", "2050-01-01": "New Year's Day", "2050-02-07": "St. Brigid's Day", "2050-03-17": "St. Patrick's Day", @@ -980,5 +980,5 @@ "2050-08-01": "August Bank Holiday", "2050-10-31": "October Bank Holiday", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed); St. Stephen's Day" + "2050-12-26": "Christmas Day (observed); St. Stephen's Day" } diff --git a/snapshots/countries/IL_COMMON.json b/snapshots/countries/IL_COMMON.json index 79abf5da6..87576082f 100644 --- a/snapshots/countries/IL_COMMON.json +++ b/snapshots/countries/IL_COMMON.json @@ -8,7 +8,7 @@ "1950-04-06": "Pesach holiday", "1950-04-07": "Pesach holiday", "1950-04-08": "Seventh day of Pesach", - "1950-04-20": "Independence Day (Observed)", + "1950-04-20": "Independence Day (observed)", "1950-05-05": "Lag BaOmer", "1950-05-22": "Shavuot", "1950-07-23": "Tisha B'Av", @@ -39,10 +39,10 @@ "1951-04-25": "Pesach holiday", "1951-04-26": "Pesach holiday", "1951-04-27": "Seventh day of Pesach", - "1951-05-10": "Independence Day (Observed)", + "1951-05-10": "Independence Day (observed)", "1951-05-24": "Lag BaOmer", "1951-06-10": "Shavuot", - "1951-08-12": "Tisha B'Av (Observed)", + "1951-08-12": "Tisha B'Av (observed)", "1951-10-01": "Rosh Hashanah", "1951-10-02": "Rosh Hashanah", "1951-10-10": "Yom Kippur", @@ -92,7 +92,7 @@ "1952-12-18": "Hanukkah", "1952-12-19": "Hanukkah", "1952-12-20": "Hanukkah", - "1953-02-26": "Ta'anit Ester (Observed)", + "1953-02-26": "Ta'anit Ester (observed)", "1953-03-01": "Purim", "1953-03-31": "Pesach", "1953-04-01": "Pesach holiday", @@ -132,7 +132,7 @@ "1954-04-22": "Pesach holiday", "1954-04-23": "Pesach holiday", "1954-04-24": "Seventh day of Pesach", - "1954-05-06": "Independence Day (Observed)", + "1954-05-06": "Independence Day (observed)", "1954-05-21": "Lag BaOmer", "1954-06-07": "Shavuot", "1954-08-08": "Tisha B'Av", @@ -185,7 +185,7 @@ "1955-12-15": "Hanukkah", "1955-12-16": "Hanukkah", "1955-12-17": "Hanukkah", - "1956-02-23": "Ta'anit Ester (Observed)", + "1956-02-23": "Ta'anit Ester (observed)", "1956-02-26": "Purim", "1956-03-27": "Pesach", "1956-03-28": "Pesach holiday", @@ -216,7 +216,7 @@ "1956-12-04": "Hanukkah", "1956-12-05": "Hanukkah", "1956-12-06": "Hanukkah", - "1957-03-14": "Ta'anit Ester (Observed)", + "1957-03-14": "Ta'anit Ester (observed)", "1957-03-17": "Purim", "1957-04-16": "Pesach", "1957-04-17": "Pesach holiday", @@ -256,10 +256,10 @@ "1958-04-09": "Pesach holiday", "1958-04-10": "Pesach holiday", "1958-04-11": "Seventh day of Pesach", - "1958-04-24": "Independence Day (Observed)", + "1958-04-24": "Independence Day (observed)", "1958-05-08": "Lag BaOmer", "1958-05-25": "Shavuot", - "1958-07-27": "Tisha B'Av (Observed)", + "1958-07-27": "Tisha B'Av (observed)", "1958-09-15": "Rosh Hashanah", "1958-09-16": "Rosh Hashanah", "1958-09-24": "Yom Kippur", @@ -309,7 +309,7 @@ "1959-12-31": "Hanukkah", "1960-01-01": "Hanukkah", "1960-01-02": "Hanukkah", - "1960-03-10": "Ta'anit Ester (Observed)", + "1960-03-10": "Ta'anit Ester (observed)", "1960-03-13": "Purim", "1960-04-12": "Pesach", "1960-04-13": "Pesach holiday", @@ -349,10 +349,10 @@ "1961-04-05": "Pesach holiday", "1961-04-06": "Pesach holiday", "1961-04-07": "Seventh day of Pesach", - "1961-04-20": "Independence Day (Observed)", + "1961-04-20": "Independence Day (observed)", "1961-05-04": "Lag BaOmer", "1961-05-21": "Shavuot", - "1961-07-23": "Tisha B'Av (Observed)", + "1961-07-23": "Tisha B'Av (observed)", "1961-09-11": "Rosh Hashanah", "1961-09-12": "Rosh Hashanah", "1961-09-20": "Yom Kippur", @@ -402,7 +402,7 @@ "1962-12-27": "Hanukkah", "1962-12-28": "Hanukkah", "1962-12-29": "Hanukkah", - "1963-03-07": "Ta'anit Ester (Observed)", + "1963-03-07": "Ta'anit Ester (observed)", "1963-03-10": "Purim", "1963-04-09": "Pesach", "1963-04-10": "Pesach holiday", @@ -443,11 +443,11 @@ "1964-04-01": "Pesach holiday", "1964-04-02": "Pesach holiday", "1964-04-03": "Seventh day of Pesach", - "1964-04-15": "Remembrance Day (Observed)", - "1964-04-16": "Independence Day (Observed)", + "1964-04-15": "Remembrance Day (observed)", + "1964-04-16": "Independence Day (observed)", "1964-04-30": "Lag BaOmer", "1964-05-17": "Shavuot", - "1964-07-19": "Tisha B'Av (Observed)", + "1964-07-19": "Tisha B'Av (observed)", "1964-09-07": "Rosh Hashanah", "1964-09-08": "Rosh Hashanah", "1964-09-16": "Yom Kippur", @@ -475,11 +475,11 @@ "1965-04-21": "Pesach holiday", "1965-04-22": "Pesach holiday", "1965-04-23": "Seventh day of Pesach", - "1965-05-05": "Remembrance Day (Observed)", - "1965-05-06": "Independence Day (Observed)", + "1965-05-05": "Remembrance Day (observed)", + "1965-05-06": "Independence Day (observed)", "1965-05-20": "Lag BaOmer", "1965-06-06": "Shavuot", - "1965-08-08": "Tisha B'Av (Observed)", + "1965-08-08": "Tisha B'Av (observed)", "1965-09-27": "Rosh Hashanah", "1965-09-28": "Rosh Hashanah", "1965-10-06": "Yom Kippur", @@ -498,7 +498,7 @@ "1965-12-24": "Hanukkah", "1965-12-25": "Hanukkah", "1965-12-26": "Hanukkah", - "1966-03-03": "Ta'anit Ester (Observed)", + "1966-03-03": "Ta'anit Ester (observed)", "1966-03-06": "Purim", "1966-04-05": "Pesach", "1966-04-06": "Pesach holiday", @@ -530,7 +530,7 @@ "1966-12-13": "Hanukkah", "1966-12-14": "Hanukkah", "1966-12-15": "Hanukkah", - "1967-03-23": "Ta'anit Ester (Observed)", + "1967-03-23": "Ta'anit Ester (observed)", "1967-03-26": "Purim", "1967-04-25": "Pesach", "1967-04-26": "Pesach holiday", @@ -571,11 +571,11 @@ "1968-04-17": "Pesach holiday", "1968-04-18": "Pesach holiday", "1968-04-19": "Seventh day of Pesach", - "1968-05-01": "Remembrance Day (Observed)", - "1968-05-02": "Independence Day (Observed)", + "1968-05-01": "Remembrance Day (observed)", + "1968-05-02": "Independence Day (observed)", "1968-05-16": "Lag BaOmer", "1968-06-02": "Shavuot", - "1968-08-04": "Tisha B'Av (Observed)", + "1968-08-04": "Tisha B'Av (observed)", "1968-09-23": "Rosh Hashanah", "1968-09-24": "Rosh Hashanah", "1968-10-02": "Yom Kippur", @@ -626,7 +626,7 @@ "1969-12-10": "Hanukkah", "1969-12-11": "Hanukkah", "1969-12-12": "Hanukkah", - "1970-03-19": "Ta'anit Ester (Observed)", + "1970-03-19": "Ta'anit Ester (observed)", "1970-03-22": "Purim", "1970-04-21": "Pesach", "1970-04-22": "Pesach holiday", @@ -667,11 +667,11 @@ "1971-04-14": "Pesach holiday", "1971-04-15": "Pesach holiday", "1971-04-16": "Seventh day of Pesach", - "1971-04-28": "Remembrance Day (Observed)", - "1971-04-29": "Independence Day (Observed)", + "1971-04-28": "Remembrance Day (observed)", + "1971-04-29": "Independence Day (observed)", "1971-05-13": "Lag BaOmer", "1971-05-30": "Shavuot", - "1971-08-01": "Tisha B'Av (Observed)", + "1971-08-01": "Tisha B'Av (observed)", "1971-09-20": "Rosh Hashanah", "1971-09-21": "Rosh Hashanah", "1971-09-29": "Yom Kippur", @@ -722,7 +722,7 @@ "1972-12-06": "Hanukkah", "1972-12-07": "Hanukkah", "1972-12-08": "Hanukkah", - "1973-03-15": "Ta'anit Ester (Observed)", + "1973-03-15": "Ta'anit Ester (observed)", "1973-03-18": "Purim", "1973-04-17": "Pesach", "1973-04-18": "Pesach holiday", @@ -763,8 +763,8 @@ "1974-04-11": "Pesach holiday", "1974-04-12": "Pesach holiday", "1974-04-13": "Seventh day of Pesach", - "1974-04-24": "Remembrance Day (Observed)", - "1974-04-25": "Independence Day (Observed)", + "1974-04-24": "Remembrance Day (observed)", + "1974-04-25": "Independence Day (observed)", "1974-05-10": "Lag BaOmer", "1974-05-27": "Shavuot", "1974-07-28": "Tisha B'Av", @@ -859,8 +859,8 @@ "1977-04-07": "Pesach holiday", "1977-04-08": "Pesach holiday", "1977-04-09": "Seventh day of Pesach", - "1977-04-20": "Remembrance Day (Observed)", - "1977-04-21": "Independence Day (Observed)", + "1977-04-20": "Remembrance Day (observed)", + "1977-04-21": "Independence Day (observed)", "1977-05-06": "Lag BaOmer", "1977-05-23": "Shavuot", "1977-07-24": "Tisha B'Av", @@ -891,11 +891,11 @@ "1978-04-26": "Pesach holiday", "1978-04-27": "Pesach holiday", "1978-04-28": "Seventh day of Pesach", - "1978-05-10": "Remembrance Day (Observed)", - "1978-05-11": "Independence Day (Observed)", + "1978-05-10": "Remembrance Day (observed)", + "1978-05-11": "Independence Day (observed)", "1978-05-25": "Lag BaOmer", "1978-06-11": "Shavuot", - "1978-08-13": "Tisha B'Av (Observed)", + "1978-08-13": "Tisha B'Av (observed)", "1978-10-02": "Rosh Hashanah", "1978-10-03": "Rosh Hashanah", "1978-10-11": "Yom Kippur", @@ -946,7 +946,7 @@ "1979-12-20": "Hanukkah", "1979-12-21": "Hanukkah", "1979-12-22": "Hanukkah", - "1980-02-28": "Ta'anit Ester (Observed)", + "1980-02-28": "Ta'anit Ester (observed)", "1980-03-02": "Purim", "1980-04-01": "Pesach", "1980-04-02": "Pesach holiday", @@ -987,8 +987,8 @@ "1981-04-23": "Pesach holiday", "1981-04-24": "Pesach holiday", "1981-04-25": "Seventh day of Pesach", - "1981-05-06": "Remembrance Day (Observed)", - "1981-05-07": "Independence Day (Observed)", + "1981-05-06": "Remembrance Day (observed)", + "1981-05-07": "Independence Day (observed)", "1981-05-22": "Lag BaOmer", "1981-06-08": "Shavuot", "1981-08-09": "Tisha B'Av", @@ -1042,7 +1042,7 @@ "1982-12-16": "Hanukkah", "1982-12-17": "Hanukkah", "1982-12-18": "Hanukkah", - "1983-02-24": "Ta'anit Ester (Observed)", + "1983-02-24": "Ta'anit Ester (observed)", "1983-02-27": "Purim", "1983-03-29": "Pesach", "1983-03-30": "Pesach holiday", @@ -1074,7 +1074,7 @@ "1983-12-06": "Hanukkah", "1983-12-07": "Hanukkah", "1983-12-08": "Hanukkah", - "1984-03-15": "Ta'anit Ester (Observed)", + "1984-03-15": "Ta'anit Ester (observed)", "1984-03-18": "Purim", "1984-04-17": "Pesach", "1984-04-18": "Pesach holiday", @@ -1115,11 +1115,11 @@ "1985-04-10": "Pesach holiday", "1985-04-11": "Pesach holiday", "1985-04-12": "Seventh day of Pesach", - "1985-04-24": "Remembrance Day (Observed)", - "1985-04-25": "Independence Day (Observed)", + "1985-04-24": "Remembrance Day (observed)", + "1985-04-25": "Independence Day (observed)", "1985-05-09": "Lag BaOmer", "1985-05-26": "Shavuot", - "1985-07-28": "Tisha B'Av (Observed)", + "1985-07-28": "Tisha B'Av (observed)", "1985-09-16": "Rosh Hashanah", "1985-09-17": "Rosh Hashanah", "1985-09-25": "Yom Kippur", @@ -1170,7 +1170,7 @@ "1987-01-01": "Hanukkah", "1987-01-02": "Hanukkah", "1987-01-03": "Hanukkah", - "1987-03-12": "Ta'anit Ester (Observed)", + "1987-03-12": "Ta'anit Ester (observed)", "1987-03-15": "Purim", "1987-04-14": "Pesach", "1987-04-15": "Pesach holiday", @@ -1211,11 +1211,11 @@ "1988-04-06": "Pesach holiday", "1988-04-07": "Pesach holiday", "1988-04-08": "Seventh day of Pesach", - "1988-04-20": "Remembrance Day (Observed)", - "1988-04-21": "Independence Day (Observed)", + "1988-04-20": "Remembrance Day (observed)", + "1988-04-21": "Independence Day (observed)", "1988-05-05": "Lag BaOmer", "1988-05-22": "Shavuot", - "1988-07-24": "Tisha B'Av (Observed)", + "1988-07-24": "Tisha B'Av (observed)", "1988-09-12": "Rosh Hashanah", "1988-09-13": "Rosh Hashanah", "1988-09-21": "Yom Kippur", @@ -1266,7 +1266,7 @@ "1989-12-28": "Hanukkah", "1989-12-29": "Hanukkah", "1989-12-30": "Hanukkah", - "1990-03-08": "Ta'anit Ester (Observed)", + "1990-03-08": "Ta'anit Ester (observed)", "1990-03-11": "Purim", "1990-04-10": "Pesach", "1990-04-11": "Pesach holiday", @@ -1307,11 +1307,11 @@ "1991-04-03": "Pesach holiday", "1991-04-04": "Pesach holiday", "1991-04-05": "Seventh day of Pesach", - "1991-04-17": "Remembrance Day (Observed)", - "1991-04-18": "Independence Day (Observed)", + "1991-04-17": "Remembrance Day (observed)", + "1991-04-18": "Independence Day (observed)", "1991-05-02": "Lag BaOmer", "1991-05-19": "Shavuot", - "1991-07-21": "Tisha B'Av (Observed)", + "1991-07-21": "Tisha B'Av (observed)", "1991-09-09": "Rosh Hashanah", "1991-09-10": "Rosh Hashanah", "1991-09-18": "Yom Kippur", @@ -1339,11 +1339,11 @@ "1992-04-22": "Pesach holiday", "1992-04-23": "Pesach holiday", "1992-04-24": "Seventh day of Pesach", - "1992-05-06": "Remembrance Day (Observed)", - "1992-05-07": "Independence Day (Observed)", + "1992-05-06": "Remembrance Day (observed)", + "1992-05-07": "Independence Day (observed)", "1992-05-21": "Lag BaOmer", "1992-06-07": "Shavuot", - "1992-08-09": "Tisha B'Av (Observed)", + "1992-08-09": "Tisha B'Av (observed)", "1992-09-28": "Rosh Hashanah", "1992-09-29": "Rosh Hashanah", "1992-10-07": "Yom Kippur", @@ -1362,7 +1362,7 @@ "1992-12-25": "Hanukkah", "1992-12-26": "Hanukkah", "1992-12-27": "Hanukkah", - "1993-03-04": "Ta'anit Ester (Observed)", + "1993-03-04": "Ta'anit Ester (observed)", "1993-03-07": "Purim", "1993-04-06": "Pesach", "1993-04-07": "Pesach holiday", @@ -1403,8 +1403,8 @@ "1994-03-31": "Pesach holiday", "1994-04-01": "Pesach holiday", "1994-04-02": "Seventh day of Pesach", - "1994-04-13": "Remembrance Day (Observed)", - "1994-04-14": "Independence Day (Observed)", + "1994-04-13": "Remembrance Day (observed)", + "1994-04-14": "Independence Day (observed)", "1994-04-29": "Lag BaOmer", "1994-05-16": "Shavuot", "1994-07-17": "Tisha B'Av", @@ -1435,11 +1435,11 @@ "1995-04-19": "Pesach holiday", "1995-04-20": "Pesach holiday", "1995-04-21": "Seventh day of Pesach", - "1995-05-03": "Remembrance Day (Observed)", - "1995-05-04": "Independence Day (Observed)", + "1995-05-03": "Remembrance Day (observed)", + "1995-05-04": "Independence Day (observed)", "1995-05-18": "Lag BaOmer", "1995-06-04": "Shavuot", - "1995-08-06": "Tisha B'Av (Observed)", + "1995-08-06": "Tisha B'Av (observed)", "1995-09-25": "Rosh Hashanah", "1995-09-26": "Rosh Hashanah", "1995-10-04": "Yom Kippur", @@ -1490,7 +1490,7 @@ "1996-12-11": "Hanukkah", "1996-12-12": "Hanukkah", "1996-12-13": "Hanukkah", - "1997-03-20": "Ta'anit Ester (Observed)", + "1997-03-20": "Ta'anit Ester (observed)", "1997-03-23": "Purim", "1997-04-22": "Pesach", "1997-04-23": "Pesach holiday", @@ -1531,12 +1531,12 @@ "1998-04-15": "Pesach holiday", "1998-04-16": "Pesach holiday", "1998-04-17": "Seventh day of Pesach", - "1998-04-29": "Remembrance Day (Observed)", - "1998-04-30": "Independence Day (Observed)", + "1998-04-29": "Remembrance Day (observed)", + "1998-04-30": "Independence Day (observed)", "1998-05-14": "Lag BaOmer", "1998-05-24": "Jerusalem Day", "1998-05-31": "Shavuot", - "1998-08-02": "Tisha B'Av (Observed)", + "1998-08-02": "Tisha B'Av (observed)", "1998-09-21": "Rosh Hashanah", "1998-09-22": "Rosh Hashanah", "1998-09-30": "Yom Kippur", @@ -1630,8 +1630,8 @@ "2001-04-12": "Pesach holiday", "2001-04-13": "Pesach holiday", "2001-04-14": "Seventh day of Pesach", - "2001-04-25": "Remembrance Day (Observed)", - "2001-04-26": "Independence Day (Observed)", + "2001-04-25": "Remembrance Day (observed)", + "2001-04-26": "Independence Day (observed)", "2001-05-11": "Lag BaOmer", "2001-05-21": "Jerusalem Day", "2001-05-28": "Shavuot", @@ -1720,7 +1720,7 @@ "2003-12-25": "Hanukkah", "2003-12-26": "Hanukkah", "2003-12-27": "Hanukkah", - "2004-03-04": "Ta'anit Ester (Observed)", + "2004-03-04": "Ta'anit Ester (observed)", "2004-03-07": "Purim", "2004-04-06": "Pesach", "2004-04-07": "Pesach holiday", @@ -1729,8 +1729,8 @@ "2004-04-10": "Pesach holiday", "2004-04-11": "Pesach holiday", "2004-04-12": "Seventh day of Pesach", - "2004-04-26": "Remembrance Day (Observed)", - "2004-04-27": "Independence Day (Observed)", + "2004-04-26": "Remembrance Day (observed)", + "2004-04-27": "Independence Day (observed)", "2004-05-09": "Lag BaOmer", "2004-05-19": "Jerusalem Day", "2004-05-26": "Shavuot", @@ -1762,8 +1762,8 @@ "2005-04-28": "Pesach holiday", "2005-04-29": "Pesach holiday", "2005-04-30": "Seventh day of Pesach", - "2005-05-11": "Remembrance Day (Observed)", - "2005-05-12": "Independence Day (Observed)", + "2005-05-11": "Remembrance Day (observed)", + "2005-05-12": "Independence Day (observed)", "2005-05-27": "Lag BaOmer", "2005-06-06": "Jerusalem Day", "2005-06-13": "Shavuot", @@ -1819,7 +1819,7 @@ "2006-12-21": "Hanukkah", "2006-12-22": "Hanukkah", "2006-12-23": "Hanukkah", - "2007-03-01": "Ta'anit Ester (Observed)", + "2007-03-01": "Ta'anit Ester (observed)", "2007-03-04": "Purim", "2007-04-03": "Pesach", "2007-04-04": "Pesach holiday", @@ -1828,8 +1828,8 @@ "2007-04-07": "Pesach holiday", "2007-04-08": "Pesach holiday", "2007-04-09": "Seventh day of Pesach", - "2007-04-23": "Remembrance Day (Observed)", - "2007-04-24": "Independence Day (Observed)", + "2007-04-23": "Remembrance Day (observed)", + "2007-04-24": "Independence Day (observed)", "2007-05-06": "Lag BaOmer", "2007-05-16": "Jerusalem Day", "2007-05-23": "Shavuot", @@ -1861,8 +1861,8 @@ "2008-04-24": "Pesach holiday", "2008-04-25": "Pesach holiday", "2008-04-26": "Seventh day of Pesach", - "2008-05-07": "Remembrance Day (Observed)", - "2008-05-08": "Independence Day (Observed)", + "2008-05-07": "Remembrance Day (observed)", + "2008-05-08": "Independence Day (observed)", "2008-05-23": "Lag BaOmer", "2008-06-02": "Jerusalem Day", "2008-06-09": "Shavuot", @@ -1920,7 +1920,7 @@ "2009-12-17": "Hanukkah", "2009-12-18": "Hanukkah", "2009-12-19": "Hanukkah", - "2010-02-25": "Ta'anit Ester (Observed)", + "2010-02-25": "Ta'anit Ester (observed)", "2010-02-28": "Purim", "2010-03-30": "Pesach", "2010-03-31": "Pesach holiday", @@ -1929,8 +1929,8 @@ "2010-04-03": "Pesach holiday", "2010-04-04": "Pesach holiday", "2010-04-05": "Seventh day of Pesach", - "2010-04-19": "Remembrance Day (Observed)", - "2010-04-20": "Independence Day (Observed)", + "2010-04-19": "Remembrance Day (observed)", + "2010-04-20": "Independence Day (observed)", "2010-05-02": "Lag BaOmer", "2010-05-12": "Jerusalem Day", "2010-05-19": "Shavuot", @@ -1954,7 +1954,7 @@ "2010-12-07": "Hanukkah", "2010-12-08": "Hanukkah", "2010-12-09": "Hanukkah", - "2011-03-17": "Ta'anit Ester (Observed)", + "2011-03-17": "Ta'anit Ester (observed)", "2011-03-20": "Purim", "2011-04-19": "Pesach", "2011-04-20": "Pesach holiday", @@ -1963,8 +1963,8 @@ "2011-04-23": "Pesach holiday", "2011-04-24": "Pesach holiday", "2011-04-25": "Seventh day of Pesach", - "2011-05-09": "Remembrance Day (Observed)", - "2011-05-10": "Independence Day (Observed)", + "2011-05-09": "Remembrance Day (observed)", + "2011-05-10": "Independence Day (observed)", "2011-05-22": "Lag BaOmer", "2011-06-01": "Jerusalem Day", "2011-06-08": "Shavuot", @@ -1997,12 +1997,12 @@ "2012-04-11": "Pesach holiday", "2012-04-12": "Pesach holiday", "2012-04-13": "Seventh day of Pesach", - "2012-04-25": "Remembrance Day (Observed)", - "2012-04-26": "Independence Day (Observed)", + "2012-04-25": "Remembrance Day (observed)", + "2012-04-26": "Independence Day (observed)", "2012-05-10": "Lag BaOmer", "2012-05-20": "Jerusalem Day", "2012-05-27": "Shavuot", - "2012-07-29": "Tisha B'Av (Observed)", + "2012-07-29": "Tisha B'Av (observed)", "2012-09-17": "Rosh Hashanah", "2012-09-18": "Rosh Hashanah", "2012-09-26": "Yom Kippur", @@ -2022,7 +2022,7 @@ "2012-12-14": "Hanukkah", "2012-12-15": "Hanukkah", "2012-12-16": "Hanukkah", - "2013-02-21": "Ta'anit Ester (Observed)", + "2013-02-21": "Ta'anit Ester (observed)", "2013-02-24": "Purim", "2013-03-26": "Pesach", "2013-03-27": "Pesach holiday", @@ -2031,8 +2031,8 @@ "2013-03-30": "Pesach holiday", "2013-03-31": "Pesach holiday", "2013-04-01": "Seventh day of Pesach", - "2013-04-15": "Remembrance Day (Observed)", - "2013-04-16": "Independence Day (Observed)", + "2013-04-15": "Remembrance Day (observed)", + "2013-04-16": "Independence Day (observed)", "2013-04-28": "Lag BaOmer", "2013-05-08": "Jerusalem Day", "2013-05-15": "Shavuot", @@ -2056,7 +2056,7 @@ "2013-12-03": "Hanukkah", "2013-12-04": "Hanukkah", "2013-12-05": "Hanukkah", - "2014-03-13": "Ta'anit Ester (Observed)", + "2014-03-13": "Ta'anit Ester (observed)", "2014-03-16": "Purim", "2014-04-15": "Pesach", "2014-04-16": "Pesach holiday", @@ -2065,8 +2065,8 @@ "2014-04-19": "Pesach holiday", "2014-04-20": "Pesach holiday", "2014-04-21": "Seventh day of Pesach", - "2014-05-05": "Remembrance Day (Observed)", - "2014-05-06": "Independence Day (Observed)", + "2014-05-05": "Remembrance Day (observed)", + "2014-05-06": "Independence Day (observed)", "2014-05-18": "Lag BaOmer", "2014-05-28": "Jerusalem Day", "2014-06-04": "Shavuot", @@ -2099,12 +2099,12 @@ "2015-04-08": "Pesach holiday", "2015-04-09": "Pesach holiday", "2015-04-10": "Seventh day of Pesach", - "2015-04-22": "Remembrance Day (Observed)", - "2015-04-23": "Independence Day (Observed)", + "2015-04-22": "Remembrance Day (observed)", + "2015-04-23": "Independence Day (observed)", "2015-05-07": "Lag BaOmer", "2015-05-17": "Jerusalem Day", "2015-05-24": "Shavuot", - "2015-07-26": "Tisha B'Av (Observed)", + "2015-07-26": "Tisha B'Av (observed)", "2015-09-14": "Rosh Hashanah", "2015-09-15": "Rosh Hashanah", "2015-09-23": "Yom Kippur", @@ -2133,12 +2133,12 @@ "2016-04-27": "Pesach holiday", "2016-04-28": "Pesach holiday", "2016-04-29": "Seventh day of Pesach", - "2016-05-11": "Remembrance Day (Observed)", - "2016-05-12": "Independence Day (Observed)", + "2016-05-11": "Remembrance Day (observed)", + "2016-05-12": "Independence Day (observed)", "2016-05-26": "Lag BaOmer", "2016-06-05": "Jerusalem Day", "2016-06-12": "Shavuot", - "2016-08-14": "Tisha B'Av (Observed)", + "2016-08-14": "Tisha B'Av (observed)", "2016-10-03": "Rosh Hashanah", "2016-10-04": "Rosh Hashanah", "2016-10-12": "Yom Kippur", @@ -2158,7 +2158,7 @@ "2016-12-30": "Hanukkah", "2016-12-31": "Hanukkah", "2017-01-01": "Hanukkah", - "2017-03-09": "Ta'anit Ester (Observed)", + "2017-03-09": "Ta'anit Ester (observed)", "2017-03-12": "Purim", "2017-04-11": "Pesach", "2017-04-12": "Pesach holiday", @@ -2167,8 +2167,8 @@ "2017-04-15": "Pesach holiday", "2017-04-16": "Pesach holiday", "2017-04-17": "Seventh day of Pesach", - "2017-05-01": "Remembrance Day (Observed)", - "2017-05-02": "Independence Day (Observed)", + "2017-05-01": "Remembrance Day (observed)", + "2017-05-02": "Independence Day (observed)", "2017-05-14": "Lag BaOmer", "2017-05-24": "Jerusalem Day", "2017-05-31": "Shavuot", @@ -2201,12 +2201,12 @@ "2018-04-04": "Pesach holiday", "2018-04-05": "Pesach holiday", "2018-04-06": "Seventh day of Pesach", - "2018-04-18": "Remembrance Day (Observed)", - "2018-04-19": "Independence Day (Observed)", + "2018-04-18": "Remembrance Day (observed)", + "2018-04-19": "Independence Day (observed)", "2018-05-03": "Lag BaOmer", "2018-05-13": "Jerusalem Day", "2018-05-20": "Shavuot", - "2018-07-22": "Tisha B'Av (Observed)", + "2018-07-22": "Tisha B'Av (observed)", "2018-09-10": "Rosh Hashanah", "2018-09-11": "Rosh Hashanah", "2018-09-19": "Yom Kippur", @@ -2235,12 +2235,12 @@ "2019-04-24": "Pesach holiday", "2019-04-25": "Pesach holiday", "2019-04-26": "Seventh day of Pesach", - "2019-05-08": "Remembrance Day (Observed)", - "2019-05-09": "Independence Day (Observed)", + "2019-05-08": "Remembrance Day (observed)", + "2019-05-09": "Independence Day (observed)", "2019-05-23": "Lag BaOmer", "2019-06-02": "Jerusalem Day", "2019-06-09": "Shavuot", - "2019-08-11": "Tisha B'Av (Observed)", + "2019-08-11": "Tisha B'Av (observed)", "2019-09-30": "Rosh Hashanah", "2019-10-01": "Rosh Hashanah", "2019-10-09": "Yom Kippur", @@ -2303,8 +2303,8 @@ "2021-04-01": "Pesach holiday", "2021-04-02": "Pesach holiday", "2021-04-03": "Seventh day of Pesach", - "2021-04-14": "Remembrance Day (Observed)", - "2021-04-15": "Independence Day (Observed)", + "2021-04-14": "Remembrance Day (observed)", + "2021-04-15": "Independence Day (observed)", "2021-04-30": "Lag BaOmer", "2021-05-10": "Jerusalem Day", "2021-05-17": "Shavuot", @@ -2337,12 +2337,12 @@ "2022-04-20": "Pesach holiday", "2022-04-21": "Pesach holiday", "2022-04-22": "Seventh day of Pesach", - "2022-05-04": "Remembrance Day (Observed)", - "2022-05-05": "Independence Day (Observed)", + "2022-05-04": "Remembrance Day (observed)", + "2022-05-05": "Independence Day (observed)", "2022-05-19": "Lag BaOmer", "2022-05-29": "Jerusalem Day", "2022-06-05": "Shavuot", - "2022-08-07": "Tisha B'Av (Observed)", + "2022-08-07": "Tisha B'Av (observed)", "2022-09-26": "Rosh Hashanah", "2022-09-27": "Rosh Hashanah", "2022-10-05": "Yom Kippur", @@ -2396,7 +2396,7 @@ "2023-12-13": "Hanukkah", "2023-12-14": "Hanukkah", "2023-12-15": "Hanukkah", - "2024-03-21": "Ta'anit Ester (Observed)", + "2024-03-21": "Ta'anit Ester (observed)", "2024-03-24": "Purim", "2024-04-23": "Pesach", "2024-04-24": "Pesach holiday", @@ -2405,8 +2405,8 @@ "2024-04-27": "Pesach holiday", "2024-04-28": "Pesach holiday", "2024-04-29": "Seventh day of Pesach", - "2024-05-13": "Remembrance Day (Observed)", - "2024-05-14": "Independence Day (Observed)", + "2024-05-13": "Remembrance Day (observed)", + "2024-05-14": "Independence Day (observed)", "2024-05-26": "Lag BaOmer", "2024-06-05": "Jerusalem Day", "2024-06-12": "Shavuot", @@ -2439,8 +2439,8 @@ "2025-04-17": "Pesach holiday", "2025-04-18": "Pesach holiday", "2025-04-19": "Seventh day of Pesach", - "2025-04-30": "Remembrance Day (Observed)", - "2025-05-01": "Independence Day (Observed)", + "2025-04-30": "Remembrance Day (observed)", + "2025-05-01": "Independence Day (observed)", "2025-05-16": "Lag BaOmer", "2025-05-26": "Jerusalem Day", "2025-06-02": "Shavuot", @@ -2532,7 +2532,7 @@ "2027-12-30": "Hanukkah", "2027-12-31": "Hanukkah", "2028-01-01": "Hanukkah", - "2028-03-09": "Ta'anit Ester (Observed)", + "2028-03-09": "Ta'anit Ester (observed)", "2028-03-12": "Purim", "2028-04-11": "Pesach", "2028-04-12": "Pesach holiday", @@ -2541,8 +2541,8 @@ "2028-04-15": "Pesach holiday", "2028-04-16": "Pesach holiday", "2028-04-17": "Seventh day of Pesach", - "2028-05-01": "Remembrance Day (Observed)", - "2028-05-02": "Independence Day (Observed)", + "2028-05-01": "Remembrance Day (observed)", + "2028-05-02": "Independence Day (observed)", "2028-05-14": "Lag BaOmer", "2028-05-24": "Jerusalem Day", "2028-05-31": "Shavuot", @@ -2575,12 +2575,12 @@ "2029-04-04": "Pesach holiday", "2029-04-05": "Pesach holiday", "2029-04-06": "Seventh day of Pesach", - "2029-04-18": "Remembrance Day (Observed)", - "2029-04-19": "Independence Day (Observed)", + "2029-04-18": "Remembrance Day (observed)", + "2029-04-19": "Independence Day (observed)", "2029-05-03": "Lag BaOmer", "2029-05-13": "Jerusalem Day", "2029-05-20": "Shavuot", - "2029-07-22": "Tisha B'Av (Observed)", + "2029-07-22": "Tisha B'Av (observed)", "2029-09-10": "Rosh Hashanah", "2029-09-11": "Rosh Hashanah", "2029-09-19": "Yom Kippur", @@ -2634,7 +2634,7 @@ "2030-12-26": "Hanukkah", "2030-12-27": "Hanukkah", "2030-12-28": "Hanukkah", - "2031-03-06": "Ta'anit Ester (Observed)", + "2031-03-06": "Ta'anit Ester (observed)", "2031-03-09": "Purim", "2031-04-08": "Pesach", "2031-04-09": "Pesach holiday", @@ -2643,8 +2643,8 @@ "2031-04-12": "Pesach holiday", "2031-04-13": "Pesach holiday", "2031-04-14": "Seventh day of Pesach", - "2031-04-28": "Remembrance Day (Observed)", - "2031-04-29": "Independence Day (Observed)", + "2031-04-28": "Remembrance Day (observed)", + "2031-04-29": "Independence Day (observed)", "2031-05-11": "Lag BaOmer", "2031-05-21": "Jerusalem Day", "2031-05-28": "Shavuot", @@ -2677,12 +2677,12 @@ "2032-03-31": "Pesach holiday", "2032-04-01": "Pesach holiday", "2032-04-02": "Seventh day of Pesach", - "2032-04-14": "Remembrance Day (Observed)", - "2032-04-15": "Independence Day (Observed)", + "2032-04-14": "Remembrance Day (observed)", + "2032-04-15": "Independence Day (observed)", "2032-04-29": "Lag BaOmer", "2032-05-09": "Jerusalem Day", "2032-05-16": "Shavuot", - "2032-07-18": "Tisha B'Av (Observed)", + "2032-07-18": "Tisha B'Av (observed)", "2032-09-06": "Rosh Hashanah", "2032-09-07": "Rosh Hashanah", "2032-09-15": "Yom Kippur", @@ -2736,7 +2736,7 @@ "2033-12-22": "Hanukkah", "2033-12-23": "Hanukkah", "2033-12-24": "Hanukkah", - "2034-03-02": "Ta'anit Ester (Observed)", + "2034-03-02": "Ta'anit Ester (observed)", "2034-03-05": "Purim", "2034-04-04": "Pesach", "2034-04-05": "Pesach holiday", @@ -2745,8 +2745,8 @@ "2034-04-08": "Pesach holiday", "2034-04-09": "Pesach holiday", "2034-04-10": "Seventh day of Pesach", - "2034-04-24": "Remembrance Day (Observed)", - "2034-04-25": "Independence Day (Observed)", + "2034-04-24": "Remembrance Day (observed)", + "2034-04-25": "Independence Day (observed)", "2034-05-07": "Lag BaOmer", "2034-05-17": "Jerusalem Day", "2034-05-24": "Shavuot", @@ -2770,7 +2770,7 @@ "2034-12-12": "Hanukkah", "2034-12-13": "Hanukkah", "2034-12-14": "Hanukkah", - "2035-03-22": "Ta'anit Ester (Observed)", + "2035-03-22": "Ta'anit Ester (observed)", "2035-03-25": "Purim", "2035-04-24": "Pesach", "2035-04-25": "Pesach holiday", @@ -2779,8 +2779,8 @@ "2035-04-28": "Pesach holiday", "2035-04-29": "Pesach holiday", "2035-04-30": "Seventh day of Pesach", - "2035-05-14": "Remembrance Day (Observed)", - "2035-05-15": "Independence Day (Observed)", + "2035-05-14": "Remembrance Day (observed)", + "2035-05-15": "Independence Day (observed)", "2035-05-27": "Lag BaOmer", "2035-06-06": "Jerusalem Day", "2035-06-13": "Shavuot", @@ -2813,12 +2813,12 @@ "2036-04-16": "Pesach holiday", "2036-04-17": "Pesach holiday", "2036-04-18": "Seventh day of Pesach", - "2036-04-30": "Remembrance Day (Observed)", - "2036-05-01": "Independence Day (Observed)", + "2036-04-30": "Remembrance Day (observed)", + "2036-05-01": "Independence Day (observed)", "2036-05-15": "Lag BaOmer", "2036-05-25": "Jerusalem Day", "2036-06-01": "Shavuot", - "2036-08-03": "Tisha B'Av (Observed)", + "2036-08-03": "Tisha B'Av (observed)", "2036-09-22": "Rosh Hashanah", "2036-09-23": "Rosh Hashanah", "2036-10-01": "Yom Kippur", @@ -2838,7 +2838,7 @@ "2036-12-19": "Hanukkah", "2036-12-20": "Hanukkah", "2036-12-21": "Hanukkah", - "2037-02-26": "Ta'anit Ester (Observed)", + "2037-02-26": "Ta'anit Ester (observed)", "2037-03-01": "Purim", "2037-03-31": "Pesach", "2037-04-01": "Pesach holiday", @@ -2847,8 +2847,8 @@ "2037-04-04": "Pesach holiday", "2037-04-05": "Pesach holiday", "2037-04-06": "Seventh day of Pesach", - "2037-04-20": "Remembrance Day (Observed)", - "2037-04-21": "Independence Day (Observed)", + "2037-04-20": "Remembrance Day (observed)", + "2037-04-21": "Independence Day (observed)", "2037-05-03": "Lag BaOmer", "2037-05-13": "Jerusalem Day", "2037-05-20": "Shavuot", @@ -2872,7 +2872,7 @@ "2037-12-08": "Hanukkah", "2037-12-09": "Hanukkah", "2037-12-10": "Hanukkah", - "2038-03-18": "Ta'anit Ester (Observed)", + "2038-03-18": "Ta'anit Ester (observed)", "2038-03-21": "Purim", "2038-04-20": "Pesach", "2038-04-21": "Pesach holiday", @@ -2881,8 +2881,8 @@ "2038-04-24": "Pesach holiday", "2038-04-25": "Pesach holiday", "2038-04-26": "Seventh day of Pesach", - "2038-05-10": "Remembrance Day (Observed)", - "2038-05-11": "Independence Day (Observed)", + "2038-05-10": "Remembrance Day (observed)", + "2038-05-11": "Independence Day (observed)", "2038-05-23": "Lag BaOmer", "2038-06-02": "Jerusalem Day", "2038-06-09": "Shavuot", @@ -2915,12 +2915,12 @@ "2039-04-13": "Pesach holiday", "2039-04-14": "Pesach holiday", "2039-04-15": "Seventh day of Pesach", - "2039-04-27": "Remembrance Day (Observed)", - "2039-04-28": "Independence Day (Observed)", + "2039-04-27": "Remembrance Day (observed)", + "2039-04-28": "Independence Day (observed)", "2039-05-12": "Lag BaOmer", "2039-05-22": "Jerusalem Day", "2039-05-29": "Shavuot", - "2039-07-31": "Tisha B'Av (Observed)", + "2039-07-31": "Tisha B'Av (observed)", "2039-09-19": "Rosh Hashanah", "2039-09-20": "Rosh Hashanah", "2039-09-28": "Yom Kippur", @@ -2974,7 +2974,7 @@ "2040-12-05": "Hanukkah", "2040-12-06": "Hanukkah", "2040-12-07": "Hanukkah", - "2041-03-14": "Ta'anit Ester (Observed)", + "2041-03-14": "Ta'anit Ester (observed)", "2041-03-17": "Purim", "2041-04-16": "Pesach", "2041-04-17": "Pesach holiday", @@ -2983,8 +2983,8 @@ "2041-04-20": "Pesach holiday", "2041-04-21": "Pesach holiday", "2041-04-22": "Seventh day of Pesach", - "2041-05-06": "Remembrance Day (Observed)", - "2041-05-07": "Independence Day (Observed)", + "2041-05-06": "Remembrance Day (observed)", + "2041-05-07": "Independence Day (observed)", "2041-05-19": "Lag BaOmer", "2041-05-29": "Jerusalem Day", "2041-06-05": "Shavuot", @@ -3017,12 +3017,12 @@ "2042-04-09": "Pesach holiday", "2042-04-10": "Pesach holiday", "2042-04-11": "Seventh day of Pesach", - "2042-04-23": "Remembrance Day (Observed)", - "2042-04-24": "Independence Day (Observed)", + "2042-04-23": "Remembrance Day (observed)", + "2042-04-24": "Independence Day (observed)", "2042-05-08": "Lag BaOmer", "2042-05-18": "Jerusalem Day", "2042-05-25": "Shavuot", - "2042-07-27": "Tisha B'Av (Observed)", + "2042-07-27": "Tisha B'Av (observed)", "2042-09-15": "Rosh Hashanah", "2042-09-16": "Rosh Hashanah", "2042-09-24": "Yom Kippur", @@ -3051,12 +3051,12 @@ "2043-04-29": "Pesach holiday", "2043-04-30": "Pesach holiday", "2043-05-01": "Seventh day of Pesach", - "2043-05-13": "Remembrance Day (Observed)", - "2043-05-14": "Independence Day (Observed)", + "2043-05-13": "Remembrance Day (observed)", + "2043-05-14": "Independence Day (observed)", "2043-05-28": "Lag BaOmer", "2043-06-07": "Jerusalem Day", "2043-06-14": "Shavuot", - "2043-08-16": "Tisha B'Av (Observed)", + "2043-08-16": "Tisha B'Av (observed)", "2043-10-05": "Rosh Hashanah", "2043-10-06": "Rosh Hashanah", "2043-10-14": "Yom Kippur", @@ -3076,7 +3076,7 @@ "2044-01-01": "Hanukkah", "2044-01-02": "Hanukkah", "2044-01-03": "Hanukkah", - "2044-03-10": "Ta'anit Ester (Observed)", + "2044-03-10": "Ta'anit Ester (observed)", "2044-03-13": "Purim", "2044-04-12": "Pesach", "2044-04-13": "Pesach holiday", @@ -3085,8 +3085,8 @@ "2044-04-16": "Pesach holiday", "2044-04-17": "Pesach holiday", "2044-04-18": "Seventh day of Pesach", - "2044-05-02": "Remembrance Day (Observed)", - "2044-05-03": "Independence Day (Observed)", + "2044-05-02": "Remembrance Day (observed)", + "2044-05-03": "Independence Day (observed)", "2044-05-15": "Lag BaOmer", "2044-05-25": "Jerusalem Day", "2044-06-01": "Shavuot", @@ -3119,8 +3119,8 @@ "2045-04-06": "Pesach holiday", "2045-04-07": "Pesach holiday", "2045-04-08": "Seventh day of Pesach", - "2045-04-19": "Remembrance Day (Observed)", - "2045-04-20": "Independence Day (Observed)", + "2045-04-19": "Remembrance Day (observed)", + "2045-04-20": "Independence Day (observed)", "2045-05-05": "Lag BaOmer", "2045-05-15": "Jerusalem Day", "2045-05-22": "Shavuot", @@ -3153,12 +3153,12 @@ "2046-04-25": "Pesach holiday", "2046-04-26": "Pesach holiday", "2046-04-27": "Seventh day of Pesach", - "2046-05-09": "Remembrance Day (Observed)", - "2046-05-10": "Independence Day (Observed)", + "2046-05-09": "Remembrance Day (observed)", + "2046-05-10": "Independence Day (observed)", "2046-05-24": "Lag BaOmer", "2046-06-03": "Jerusalem Day", "2046-06-10": "Shavuot", - "2046-08-12": "Tisha B'Av (Observed)", + "2046-08-12": "Tisha B'Av (observed)", "2046-10-01": "Rosh Hashanah", "2046-10-02": "Rosh Hashanah", "2046-10-10": "Yom Kippur", @@ -3221,8 +3221,8 @@ "2048-04-02": "Pesach holiday", "2048-04-03": "Pesach holiday", "2048-04-04": "Seventh day of Pesach", - "2048-04-15": "Remembrance Day (Observed)", - "2048-04-16": "Independence Day (Observed)", + "2048-04-15": "Remembrance Day (observed)", + "2048-04-16": "Independence Day (observed)", "2048-05-01": "Lag BaOmer", "2048-05-11": "Jerusalem Day", "2048-05-18": "Shavuot", @@ -3255,12 +3255,12 @@ "2049-04-21": "Pesach holiday", "2049-04-22": "Pesach holiday", "2049-04-23": "Seventh day of Pesach", - "2049-05-05": "Remembrance Day (Observed)", - "2049-05-06": "Independence Day (Observed)", + "2049-05-05": "Remembrance Day (observed)", + "2049-05-06": "Independence Day (observed)", "2049-05-20": "Lag BaOmer", "2049-05-30": "Jerusalem Day", "2049-06-06": "Shavuot", - "2049-08-08": "Tisha B'Av (Observed)", + "2049-08-08": "Tisha B'Av (observed)", "2049-09-27": "Rosh Hashanah", "2049-09-28": "Rosh Hashanah", "2049-10-06": "Yom Kippur", diff --git a/snapshots/countries/IM_COMMON.json b/snapshots/countries/IM_COMMON.json index 28a509161..011231682 100644 --- a/snapshots/countries/IM_COMMON.json +++ b/snapshots/countries/IM_COMMON.json @@ -23,22 +23,22 @@ "1953-07-05": "Tynwald Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-06-04": "TT Bank Holiday", "1954-07-05": "Tynwald Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-06-03": "TT Bank Holiday", "1955-07-05": "Tynwald Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-06-01": "TT Bank Holiday", @@ -63,14 +63,14 @@ "1959-07-05": "Tynwald Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-06-03": "TT Bank Holiday", "1960-07-05": "Tynwald Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-06-02": "TT Bank Holiday", @@ -95,22 +95,22 @@ "1964-07-05": "Tynwald Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-06-04": "TT Bank Holiday", "1965-07-05": "Tynwald Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-06-03": "TT Bank Holiday", "1966-07-05": "Tynwald Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-06-02": "TT Bank Holiday", @@ -135,7 +135,7 @@ "1970-07-05": "Tynwald Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-05-31": "Spring Bank Holiday", @@ -144,8 +144,8 @@ "1971-08-30": "Late Summer Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-05-29": "Spring Bank Holiday", @@ -188,10 +188,10 @@ "1976-08-30": "Late Summer Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-30": "Spring Bank Holiday", @@ -201,9 +201,9 @@ "1977-08-29": "Late Summer Bank Holiday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-01": "May Day", @@ -244,7 +244,7 @@ "1981-08-31": "Late Summer Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -255,10 +255,10 @@ "1982-08-30": "Late Summer Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-02": "May Day", @@ -268,9 +268,9 @@ "1983-08-29": "Late Summer Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-07": "May Day", @@ -310,7 +310,7 @@ "1987-08-31": "Late Summer Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -321,9 +321,9 @@ "1988-08-29": "Late Summer Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-01": "May Day", @@ -363,7 +363,7 @@ "1992-08-31": "Late Summer Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -374,10 +374,10 @@ "1993-08-30": "Late Summer Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-02": "May Day", @@ -387,9 +387,9 @@ "1994-08-29": "Late Summer Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-08": "May Day", @@ -429,7 +429,7 @@ "1998-08-31": "Late Summer Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -440,11 +440,11 @@ "1999-08-30": "Late Summer Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-01": "May Day", @@ -495,10 +495,10 @@ "2004-08-30": "Late Summer Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-02": "May Day", @@ -508,9 +508,9 @@ "2005-08-29": "Late Summer Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-01": "May Day", @@ -550,7 +550,7 @@ "2009-08-31": "Late Summer Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -561,10 +561,10 @@ "2010-08-30": "Late Summer Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-04-29": "Wedding of William and Catherine", @@ -575,9 +575,9 @@ "2011-08-29": "Late Summer Bank Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-07": "May Day", @@ -618,7 +618,7 @@ "2015-08-31": "Late Summer Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", @@ -629,9 +629,9 @@ "2016-08-29": "Late Summer Bank Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-01": "May Day", @@ -671,7 +671,7 @@ "2020-08-31": "Late Summer Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", @@ -682,10 +682,10 @@ "2021-08-30": "Late Summer Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-02": "May Day", @@ -696,9 +696,9 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-01": "May Day", @@ -739,7 +739,7 @@ "2026-08-31": "Late Summer Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", @@ -750,10 +750,10 @@ "2027-08-30": "Late Summer Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-01": "May Day", @@ -803,10 +803,10 @@ "2032-08-30": "Late Summer Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-02": "May Day", @@ -816,9 +816,9 @@ "2033-08-29": "Late Summer Bank Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-01": "May Day", @@ -858,7 +858,7 @@ "2037-08-31": "Late Summer Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", @@ -869,10 +869,10 @@ "2038-08-30": "Late Summer Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-02": "May Day", @@ -882,9 +882,9 @@ "2039-08-29": "Late Summer Bank Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-07": "May Day", @@ -924,7 +924,7 @@ "2043-08-31": "Late Summer Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", @@ -935,9 +935,9 @@ "2044-08-29": "Late Summer Bank Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-01": "May Day", @@ -977,7 +977,7 @@ "2048-08-31": "Late Summer Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", @@ -988,10 +988,10 @@ "2049-08-30": "Late Summer Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-02": "May Day", @@ -1001,5 +1001,5 @@ "2050-08-29": "Late Summer Bank Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/JM_COMMON.json b/snapshots/countries/JM_COMMON.json index 075709e3e..5aec8b9e6 100644 --- a/snapshots/countries/JM_COMMON.json +++ b/snapshots/countries/JM_COMMON.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Ash Wednesday", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-05-23": "National Labour Day", "1950-08-06": "Independence Day", - "1950-08-07": "Independence Day (Observed)", + "1950-08-07": "Independence Day (observed)", "1950-10-16": "National Heroes Day", "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", @@ -33,7 +33,7 @@ "1953-04-03": "Good Friday", "1953-04-06": "Easter Monday", "1953-05-23": "National Labour Day", - "1953-05-25": "National Labour Day (Observed)", + "1953-05-25": "National Labour Day (observed)", "1953-08-06": "Independence Day", "1953-10-19": "National Heroes Day", "1953-12-25": "Christmas Day", @@ -43,12 +43,12 @@ "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-05-23": "National Labour Day", - "1954-05-24": "National Labour Day (Observed)", + "1954-05-24": "National Labour Day (observed)", "1954-08-06": "Independence Day", "1954-10-18": "National Heroes Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Boxing Day (Observed)", + "1954-12-27": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-02-23": "Ash Wednesday", "1955-04-08": "Good Friday", @@ -58,9 +58,9 @@ "1955-10-17": "National Heroes Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-15": "Ash Wednesday", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", @@ -92,7 +92,7 @@ "1959-03-27": "Good Friday", "1959-03-30": "Easter Monday", "1959-05-23": "National Labour Day", - "1959-05-25": "National Labour Day (Observed)", + "1959-05-25": "National Labour Day (observed)", "1959-08-06": "Independence Day", "1959-10-19": "National Heroes Day", "1959-12-25": "Christmas Day", @@ -106,15 +106,15 @@ "1960-10-17": "National Heroes Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-15": "Ash Wednesday", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-05-23": "National Labour Day", "1961-08-06": "Independence Day", - "1961-08-07": "Independence Day (Observed)", + "1961-08-07": "Independence Day (observed)", "1961-10-16": "National Heroes Day", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", @@ -141,7 +141,7 @@ "1964-03-27": "Good Friday", "1964-03-30": "Easter Monday", "1964-05-23": "National Labour Day", - "1964-05-25": "National Labour Day (Observed)", + "1964-05-25": "National Labour Day (observed)", "1964-08-06": "Independence Day", "1964-10-19": "National Heroes Day", "1964-12-25": "Christmas Day", @@ -151,12 +151,12 @@ "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-05-23": "National Labour Day", - "1965-05-24": "National Labour Day (Observed)", + "1965-05-24": "National Labour Day (observed)", "1965-08-06": "Independence Day", "1965-10-18": "National Heroes Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Boxing Day (Observed)", + "1965-12-27": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-02-23": "Ash Wednesday", "1966-04-08": "Good Friday", @@ -166,15 +166,15 @@ "1966-10-17": "National Heroes Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-08": "Ash Wednesday", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-05-23": "National Labour Day", "1967-08-06": "Independence Day", - "1967-08-07": "Independence Day (Observed)", + "1967-08-07": "Independence Day (observed)", "1967-10-16": "National Heroes Day", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", @@ -201,7 +201,7 @@ "1970-03-27": "Good Friday", "1970-03-30": "Easter Monday", "1970-05-23": "National Labour Day", - "1970-05-25": "National Labour Day (Observed)", + "1970-05-25": "National Labour Day (observed)", "1970-08-06": "Independence Day", "1970-10-19": "National Heroes Day", "1970-12-25": "Christmas Day", @@ -211,19 +211,19 @@ "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-05-23": "National Labour Day", - "1971-05-24": "National Labour Day (Observed)", + "1971-05-24": "National Labour Day (observed)", "1971-08-06": "Independence Day", "1971-10-18": "National Heroes Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Boxing Day (Observed)", + "1971-12-27": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-02-16": "Ash Wednesday", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-05-23": "National Labour Day", "1972-08-06": "Independence Day", - "1972-08-07": "Independence Day (Observed)", + "1972-08-07": "Independence Day (observed)", "1972-10-16": "National Heroes Day", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", @@ -259,12 +259,12 @@ "1976-04-16": "Good Friday", "1976-04-19": "Easter Monday", "1976-05-23": "National Labour Day", - "1976-05-24": "National Labour Day (Observed)", + "1976-05-24": "National Labour Day (observed)", "1976-08-06": "Independence Day", "1976-10-18": "National Heroes Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Boxing Day (Observed)", + "1976-12-27": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-02-23": "Ash Wednesday", "1977-04-08": "Good Friday", @@ -274,15 +274,15 @@ "1977-10-17": "National Heroes Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-08": "Ash Wednesday", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-23": "National Labour Day", "1978-08-06": "Independence Day", - "1978-08-07": "Independence Day (Observed)", + "1978-08-07": "Independence Day (observed)", "1978-10-16": "National Heroes Day", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", @@ -309,7 +309,7 @@ "1981-04-17": "Good Friday", "1981-04-20": "Easter Monday", "1981-05-23": "National Labour Day", - "1981-05-25": "National Labour Day (Observed)", + "1981-05-25": "National Labour Day (observed)", "1981-08-06": "Independence Day", "1981-10-19": "National Heroes Day", "1981-12-25": "Christmas Day", @@ -319,12 +319,12 @@ "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", "1982-05-23": "National Labour Day", - "1982-05-24": "National Labour Day (Observed)", + "1982-05-24": "National Labour Day (observed)", "1982-08-06": "Independence Day", "1982-10-18": "National Heroes Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Boxing Day (Observed)", + "1982-12-27": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-02-16": "Ash Wednesday", "1983-04-01": "Good Friday", @@ -334,9 +334,9 @@ "1983-10-17": "National Heroes Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-07": "Ash Wednesday", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -368,7 +368,7 @@ "1987-04-17": "Good Friday", "1987-04-20": "Easter Monday", "1987-05-23": "National Labour Day", - "1987-05-25": "National Labour Day (Observed)", + "1987-05-25": "National Labour Day (observed)", "1987-08-06": "Independence Day", "1987-10-19": "National Heroes Day", "1987-12-25": "Christmas Day", @@ -382,15 +382,15 @@ "1988-10-17": "National Heroes Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-08": "Ash Wednesday", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-23": "National Labour Day", "1989-08-06": "Independence Day", - "1989-08-07": "Independence Day (Observed)", + "1989-08-07": "Independence Day (observed)", "1989-10-16": "National Heroes Day", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", @@ -417,7 +417,7 @@ "1992-04-17": "Good Friday", "1992-04-20": "Easter Monday", "1992-05-23": "National Labour Day", - "1992-05-25": "National Labour Day (Observed)", + "1992-05-25": "National Labour Day (observed)", "1992-08-06": "Independence Day", "1992-10-19": "National Heroes Day", "1992-12-25": "Christmas Day", @@ -427,12 +427,12 @@ "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", "1993-05-23": "National Labour Day", - "1993-05-24": "National Labour Day (Observed)", + "1993-05-24": "National Labour Day (observed)", "1993-08-06": "Independence Day", "1993-10-18": "National Heroes Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Boxing Day (Observed)", + "1993-12-27": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-02-16": "Ash Wednesday", "1994-04-01": "Good Friday", @@ -442,15 +442,15 @@ "1994-10-17": "National Heroes Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-03-01": "Ash Wednesday", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-23": "National Labour Day", "1995-08-06": "Independence Day", - "1995-08-07": "Independence Day (Observed)", + "1995-08-07": "Independence Day (observed)", "1995-10-16": "National Heroes Day", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", @@ -477,7 +477,7 @@ "1998-04-10": "Good Friday", "1998-04-13": "Easter Monday", "1998-05-23": "National Labour Day", - "1998-05-25": "National Labour Day (Observed)", + "1998-05-25": "National Labour Day (observed)", "1998-08-01": "Emancipation Day", "1998-08-06": "Independence Day", "1998-10-19": "National Heroes Day", @@ -488,14 +488,14 @@ "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", "1999-05-23": "National Labour Day", - "1999-05-24": "National Labour Day (Observed)", + "1999-05-24": "National Labour Day (observed)", "1999-08-01": "Emancipation Day", - "1999-08-02": "Emancipation Day (Observed)", + "1999-08-02": "Emancipation Day (observed)", "1999-08-06": "Independence Day", "1999-10-18": "National Heroes Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Boxing Day (Observed)", + "1999-12-27": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-03-08": "Ash Wednesday", "2000-04-21": "Good Friday", @@ -503,7 +503,7 @@ "2000-05-23": "National Labour Day", "2000-08-01": "Emancipation Day", "2000-08-06": "Independence Day", - "2000-08-07": "Independence Day (Observed)", + "2000-08-07": "Independence Day (observed)", "2000-10-16": "National Heroes Day", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", @@ -542,14 +542,14 @@ "2004-04-09": "Good Friday", "2004-04-12": "Easter Monday", "2004-05-23": "National Labour Day", - "2004-05-24": "National Labour Day (Observed)", + "2004-05-24": "National Labour Day (observed)", "2004-08-01": "Emancipation Day", - "2004-08-02": "Emancipation Day (Observed)", + "2004-08-02": "Emancipation Day (observed)", "2004-08-06": "Independence Day", "2004-10-18": "National Heroes Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Boxing Day (Observed)", + "2004-12-27": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-02-09": "Ash Wednesday", "2005-03-25": "Good Friday", @@ -560,16 +560,16 @@ "2005-10-17": "National Heroes Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-03-01": "Ash Wednesday", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-23": "National Labour Day", "2006-08-01": "Emancipation Day", "2006-08-06": "Independence Day", - "2006-08-07": "Independence Day (Observed)", + "2006-08-07": "Independence Day (observed)", "2006-10-16": "National Heroes Day", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", @@ -598,7 +598,7 @@ "2009-04-10": "Good Friday", "2009-04-13": "Easter Monday", "2009-05-23": "National Labour Day", - "2009-05-25": "National Labour Day (Observed)", + "2009-05-25": "National Labour Day (observed)", "2009-08-01": "Emancipation Day", "2009-08-06": "Independence Day", "2009-10-19": "National Heroes Day", @@ -609,14 +609,14 @@ "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", "2010-05-23": "National Labour Day", - "2010-05-24": "National Labour Day (Observed)", + "2010-05-24": "National Labour Day (observed)", "2010-08-01": "Emancipation Day", - "2010-08-02": "Emancipation Day (Observed)", + "2010-08-02": "Emancipation Day (observed)", "2010-08-06": "Independence Day", "2010-10-18": "National Heroes Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Boxing Day (Observed)", + "2010-12-27": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-03-09": "Ash Wednesday", "2011-04-22": "Good Friday", @@ -627,9 +627,9 @@ "2011-10-17": "National Heroes Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-22": "Ash Wednesday", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -664,7 +664,7 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-05-23": "National Labour Day", - "2015-05-25": "National Labour Day (Observed)", + "2015-05-25": "National Labour Day (observed)", "2015-08-01": "Emancipation Day", "2015-08-06": "Independence Day", "2015-10-19": "National Heroes Day", @@ -680,16 +680,16 @@ "2016-10-17": "National Heroes Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-03-01": "Ash Wednesday", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-23": "National Labour Day", "2017-08-01": "Emancipation Day", "2017-08-06": "Independence Day", - "2017-08-07": "Independence Day (Observed)", + "2017-08-07": "Independence Day (observed)", "2017-10-16": "National Heroes Day", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", @@ -718,7 +718,7 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-05-23": "National Labour Day", - "2020-05-25": "National Labour Day (Observed)", + "2020-05-25": "National Labour Day (observed)", "2020-08-01": "Emancipation Day", "2020-08-06": "Independence Day", "2020-10-19": "National Heroes Day", @@ -729,14 +729,14 @@ "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-05-23": "National Labour Day", - "2021-05-24": "National Labour Day (Observed)", + "2021-05-24": "National Labour Day (observed)", "2021-08-01": "Emancipation Day", - "2021-08-02": "Emancipation Day (Observed)", + "2021-08-02": "Emancipation Day (observed)", "2021-08-06": "Independence Day", "2021-10-18": "National Heroes Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-03-02": "Ash Wednesday", "2022-04-15": "Good Friday", @@ -747,16 +747,16 @@ "2022-10-17": "National Heroes Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-22": "Ash Wednesday", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-23": "National Labour Day", "2023-08-01": "Emancipation Day", "2023-08-06": "Independence Day", - "2023-08-07": "Independence Day (Observed)", + "2023-08-07": "Independence Day (observed)", "2023-10-16": "National Heroes Day", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", @@ -785,7 +785,7 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-05-23": "National Labour Day", - "2026-05-25": "National Labour Day (Observed)", + "2026-05-25": "National Labour Day (observed)", "2026-08-01": "Emancipation Day", "2026-08-06": "Independence Day", "2026-10-19": "National Heroes Day", @@ -796,14 +796,14 @@ "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-05-23": "National Labour Day", - "2027-05-24": "National Labour Day (Observed)", + "2027-05-24": "National Labour Day (observed)", "2027-08-01": "Emancipation Day", - "2027-08-02": "Emancipation Day (Observed)", + "2027-08-02": "Emancipation Day (observed)", "2027-08-06": "Independence Day", "2027-10-18": "National Heroes Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Boxing Day (Observed)", + "2027-12-27": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-03-01": "Ash Wednesday", "2028-04-14": "Good Friday", @@ -811,7 +811,7 @@ "2028-05-23": "National Labour Day", "2028-08-01": "Emancipation Day", "2028-08-06": "Independence Day", - "2028-08-07": "Independence Day (Observed)", + "2028-08-07": "Independence Day (observed)", "2028-10-16": "National Heroes Day", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", @@ -850,14 +850,14 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-05-23": "National Labour Day", - "2032-05-24": "National Labour Day (Observed)", + "2032-05-24": "National Labour Day (observed)", "2032-08-01": "Emancipation Day", - "2032-08-02": "Emancipation Day (Observed)", + "2032-08-02": "Emancipation Day (observed)", "2032-08-06": "Independence Day", "2032-10-18": "National Heroes Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Boxing Day (Observed)", + "2032-12-27": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-03-02": "Ash Wednesday", "2033-04-15": "Good Friday", @@ -868,16 +868,16 @@ "2033-10-17": "National Heroes Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-22": "Ash Wednesday", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-23": "National Labour Day", "2034-08-01": "Emancipation Day", "2034-08-06": "Independence Day", - "2034-08-07": "Independence Day (Observed)", + "2034-08-07": "Independence Day (observed)", "2034-10-16": "National Heroes Day", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", @@ -906,7 +906,7 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-05-23": "National Labour Day", - "2037-05-25": "National Labour Day (Observed)", + "2037-05-25": "National Labour Day (observed)", "2037-08-01": "Emancipation Day", "2037-08-06": "Independence Day", "2037-10-19": "National Heroes Day", @@ -917,14 +917,14 @@ "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-05-23": "National Labour Day", - "2038-05-24": "National Labour Day (Observed)", + "2038-05-24": "National Labour Day (observed)", "2038-08-01": "Emancipation Day", - "2038-08-02": "Emancipation Day (Observed)", + "2038-08-02": "Emancipation Day (observed)", "2038-08-06": "Independence Day", "2038-10-18": "National Heroes Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Boxing Day (Observed)", + "2038-12-27": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-02-23": "Ash Wednesday", "2039-04-08": "Good Friday", @@ -935,9 +935,9 @@ "2039-10-17": "National Heroes Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-15": "Ash Wednesday", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -972,7 +972,7 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-05-23": "National Labour Day", - "2043-05-25": "National Labour Day (Observed)", + "2043-05-25": "National Labour Day (observed)", "2043-08-01": "Emancipation Day", "2043-08-06": "Independence Day", "2043-10-19": "National Heroes Day", @@ -988,16 +988,16 @@ "2044-10-17": "National Heroes Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-22": "Ash Wednesday", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-23": "National Labour Day", "2045-08-01": "Emancipation Day", "2045-08-06": "Independence Day", - "2045-08-07": "Independence Day (Observed)", + "2045-08-07": "Independence Day (observed)", "2045-10-16": "National Heroes Day", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", @@ -1026,7 +1026,7 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-05-23": "National Labour Day", - "2048-05-25": "National Labour Day (Observed)", + "2048-05-25": "National Labour Day (observed)", "2048-08-01": "Emancipation Day", "2048-08-06": "Independence Day", "2048-10-19": "National Heroes Day", @@ -1037,14 +1037,14 @@ "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-05-23": "National Labour Day", - "2049-05-24": "National Labour Day (Observed)", + "2049-05-24": "National Labour Day (observed)", "2049-08-01": "Emancipation Day", - "2049-08-02": "Emancipation Day (Observed)", + "2049-08-02": "Emancipation Day (observed)", "2049-08-06": "Independence Day", "2049-10-18": "National Heroes Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Boxing Day (Observed)", + "2049-12-27": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-02-23": "Ash Wednesday", "2050-04-08": "Good Friday", @@ -1055,5 +1055,5 @@ "2050-10-17": "National Heroes Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/KE_COMMON.json b/snapshots/countries/KE_COMMON.json index b2de8cd38..4ebebf772 100644 --- a/snapshots/countries/KE_COMMON.json +++ b/snapshots/countries/KE_COMMON.json @@ -4,7 +4,7 @@ "1963-04-15": "Easter Monday", "1963-05-01": "Labour Day", "1963-10-20": "Kenyatta Day", - "1963-10-21": "Kenyatta Day (Observed)", + "1963-10-21": "Kenyatta Day (observed)", "1963-12-12": "Jamhuri Day", "1963-12-25": "Christmas Day", "1963-12-26": "Boxing Day", @@ -22,22 +22,22 @@ "1965-05-01": "Labour Day", "1965-10-20": "Kenyatta Day", "1965-12-12": "Jamhuri Day", - "1965-12-13": "Jamhuri Day (Observed)", + "1965-12-13": "Jamhuri Day (observed)", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Boxing Day (Observed)", + "1965-12-27": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (Observed)", + "1966-05-02": "Labour Day (observed)", "1966-10-20": "Kenyatta Day", "1966-12-12": "Jamhuri Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-05-01": "Labour Day", @@ -50,7 +50,7 @@ "1968-04-15": "Easter Monday", "1968-05-01": "Labour Day", "1968-10-20": "Kenyatta Day", - "1968-10-21": "Kenyatta Day (Observed)", + "1968-10-21": "Kenyatta Day (observed)", "1968-12-12": "Jamhuri Day", "1968-12-25": "Christmas Day", "1968-12-26": "Boxing Day", @@ -76,10 +76,10 @@ "1971-05-01": "Labour Day", "1971-10-20": "Kenyatta Day", "1971-12-12": "Jamhuri Day", - "1971-12-13": "Jamhuri Day (Observed)", + "1971-12-13": "Jamhuri Day (observed)", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Boxing Day (Observed)", + "1971-12-27": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -101,7 +101,7 @@ "1974-04-15": "Easter Monday", "1974-05-01": "Labour Day", "1974-10-20": "Kenyatta Day", - "1974-10-21": "Kenyatta Day (Observed)", + "1974-10-21": "Kenyatta Day (observed)", "1974-12-12": "Jamhuri Day", "1974-12-25": "Christmas Day", "1974-12-26": "Boxing Day", @@ -119,22 +119,22 @@ "1976-05-01": "Labour Day", "1976-10-20": "Kenyatta Day", "1976-12-12": "Jamhuri Day", - "1976-12-13": "Jamhuri Day (Observed)", + "1976-12-13": "Jamhuri Day (observed)", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Boxing Day (Observed)", + "1976-12-27": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-01": "Labour Day", - "1977-05-02": "Labour Day (Observed)", + "1977-05-02": "Labour Day (observed)", "1977-10-20": "Kenyatta Day", "1977-12-12": "Jamhuri Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-01": "Labour Day", @@ -172,22 +172,22 @@ "1982-05-01": "Labour Day", "1982-10-20": "Kenyatta Day", "1982-12-12": "Jamhuri Day", - "1982-12-13": "Jamhuri Day (Observed)", + "1982-12-13": "Jamhuri Day (observed)", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Boxing Day (Observed)", + "1982-12-27": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-10-20": "Kenyatta Day", "1983-12-12": "Jamhuri Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-01": "Labour Day", @@ -200,7 +200,7 @@ "1985-04-08": "Easter Monday", "1985-05-01": "Labour Day", "1985-10-20": "Kenyatta Day", - "1985-10-21": "Kenyatta Day (Observed)", + "1985-10-21": "Kenyatta Day (observed)", "1985-12-12": "Jamhuri Day", "1985-12-25": "Christmas Day", "1985-12-26": "Boxing Day", @@ -224,14 +224,14 @@ "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-10-20": "Kenyatta Day", "1988-12-12": "Jamhuri Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-01": "Labour Day", @@ -252,7 +252,7 @@ "1991-04-01": "Easter Monday", "1991-05-01": "Labour Day", "1991-10-20": "Kenyatta Day", - "1991-10-21": "Kenyatta Day (Observed)", + "1991-10-21": "Kenyatta Day (observed)", "1991-12-12": "Jamhuri Day", "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", @@ -270,22 +270,22 @@ "1993-05-01": "Labour Day", "1993-10-20": "Kenyatta Day", "1993-12-12": "Jamhuri Day", - "1993-12-13": "Jamhuri Day (Observed)", + "1993-12-13": "Jamhuri Day (observed)", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Boxing Day (Observed)", + "1993-12-27": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-10-20": "Kenyatta Day", "1994-12-12": "Jamhuri Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-01": "Labour Day", @@ -298,7 +298,7 @@ "1996-04-08": "Easter Monday", "1996-05-01": "Labour Day", "1996-10-20": "Kenyatta Day", - "1996-10-21": "Kenyatta Day (Observed)", + "1996-10-21": "Kenyatta Day (observed)", "1996-12-12": "Jamhuri Day", "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", @@ -324,10 +324,10 @@ "1999-05-01": "Labour Day", "1999-10-20": "Kenyatta Day", "1999-12-12": "Jamhuri Day", - "1999-12-13": "Jamhuri Day (Observed)", + "1999-12-13": "Jamhuri Day (observed)", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Boxing Day (Observed)", + "1999-12-27": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -350,7 +350,7 @@ "2002-05-01": "Labour Day", "2002-10-10": "Moi Day", "2002-10-20": "Kenyatta Day", - "2002-10-21": "Kenyatta Day (Observed)", + "2002-10-21": "Kenyatta Day (observed)", "2002-12-12": "Jamhuri Day", "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", @@ -368,26 +368,26 @@ "2004-04-12": "Easter Monday", "2004-05-01": "Labour Day", "2004-10-10": "Moi Day", - "2004-10-11": "Moi Day (Observed)", + "2004-10-11": "Moi Day (observed)", "2004-10-20": "Kenyatta Day", "2004-12-12": "Jamhuri Day", - "2004-12-13": "Jamhuri Day (Observed)", + "2004-12-13": "Jamhuri Day (observed)", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Boxing Day (Observed)", + "2004-12-27": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-10-10": "Moi Day", "2005-10-20": "Kenyatta Day", "2005-12-12": "Jamhuri Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-01": "Labour Day", @@ -430,23 +430,23 @@ "2010-06-01": "Madaraka Day", "2010-10-20": "Mashujaa Day", "2010-12-12": "Jamhuri Day", - "2010-12-13": "Jamhuri Day (Observed)", + "2010-12-13": "Jamhuri Day (observed)", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Boxing Day (Observed)", + "2010-12-27": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-06-01": "Madaraka Day", "2011-10-20": "Mashujaa Day", "2011-12-12": "Jamhuri Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-01": "Labour Day", @@ -461,7 +461,7 @@ "2013-05-01": "Labour Day", "2013-06-01": "Madaraka Day", "2013-10-20": "Mashujaa Day", - "2013-10-21": "Mashujaa Day (Observed)", + "2013-10-21": "Mashujaa Day (observed)", "2013-12-12": "Jamhuri Day", "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", @@ -470,7 +470,7 @@ "2014-04-21": "Easter Monday", "2014-05-01": "Labour Day", "2014-06-01": "Madaraka Day", - "2014-06-02": "Madaraka Day (Observed)", + "2014-06-02": "Madaraka Day (observed)", "2014-10-20": "Mashujaa Day", "2014-12-12": "Jamhuri Day", "2014-12-25": "Christmas Day", @@ -488,15 +488,15 @@ "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-06-01": "Madaraka Day", "2016-10-20": "Mashujaa Day", "2016-12-12": "Jamhuri Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-01": "Labour Day", @@ -522,7 +522,7 @@ "2019-06-01": "Madaraka Day", "2019-10-10": "Moi Day", "2019-10-20": "Mashujaa Day", - "2019-10-21": "Mashujaa Day (Observed)", + "2019-10-21": "Mashujaa Day (observed)", "2019-12-12": "Jamhuri Day", "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", @@ -543,19 +543,19 @@ "2021-05-01": "Labour Day", "2021-06-01": "Madaraka Day", "2021-10-10": "Utamaduni Day", - "2021-10-11": "Utamaduni Day (Observed)", + "2021-10-11": "Utamaduni Day (observed)", "2021-10-20": "Mashujaa Day", "2021-12-12": "Jamhuri Day", - "2021-12-13": "Jamhuri Day (Observed)", + "2021-12-13": "Jamhuri Day (observed)", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-29": "State Funeral for Former President Mwai Kibaki", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-06-01": "Madaraka Day", "2022-08-09": "Election Day", "2022-09-10": "Day of Mourning for Queen Elizabeth II", @@ -567,9 +567,9 @@ "2022-12-12": "Jamhuri Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-01": "Labour Day", @@ -586,7 +586,7 @@ "2024-06-01": "Madaraka Day", "2024-10-10": "Utamaduni Day", "2024-10-20": "Mashujaa Day", - "2024-10-21": "Mashujaa Day (Observed)", + "2024-10-21": "Mashujaa Day (observed)", "2024-12-12": "Jamhuri Day", "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", @@ -595,7 +595,7 @@ "2025-04-21": "Easter Monday", "2025-05-01": "Labour Day", "2025-06-01": "Madaraka Day", - "2025-06-02": "Madaraka Day (Observed)", + "2025-06-02": "Madaraka Day (observed)", "2025-10-10": "Utamaduni Day", "2025-10-20": "Mashujaa Day", "2025-12-12": "Jamhuri Day", @@ -617,13 +617,13 @@ "2027-05-01": "Labour Day", "2027-06-01": "Madaraka Day", "2027-10-10": "Utamaduni Day", - "2027-10-11": "Utamaduni Day (Observed)", + "2027-10-11": "Utamaduni Day (observed)", "2027-10-20": "Mashujaa Day", "2027-12-12": "Jamhuri Day", - "2027-12-13": "Jamhuri Day (Observed)", + "2027-12-13": "Jamhuri Day (observed)", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Boxing Day (Observed)", + "2027-12-27": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", @@ -651,7 +651,7 @@ "2030-06-01": "Madaraka Day", "2030-10-10": "Utamaduni Day", "2030-10-20": "Mashujaa Day", - "2030-10-21": "Mashujaa Day (Observed)", + "2030-10-21": "Mashujaa Day (observed)", "2030-12-12": "Jamhuri Day", "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", @@ -660,7 +660,7 @@ "2031-04-14": "Easter Monday", "2031-05-01": "Labour Day", "2031-06-01": "Madaraka Day", - "2031-06-02": "Madaraka Day (Observed)", + "2031-06-02": "Madaraka Day (observed)", "2031-10-10": "Utamaduni Day", "2031-10-20": "Mashujaa Day", "2031-12-12": "Jamhuri Day", @@ -672,27 +672,27 @@ "2032-05-01": "Labour Day", "2032-06-01": "Madaraka Day", "2032-10-10": "Utamaduni Day", - "2032-10-11": "Utamaduni Day (Observed)", + "2032-10-11": "Utamaduni Day (observed)", "2032-10-20": "Mashujaa Day", "2032-12-12": "Jamhuri Day", - "2032-12-13": "Jamhuri Day (Observed)", + "2032-12-13": "Jamhuri Day (observed)", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Boxing Day (Observed)", + "2032-12-27": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-06-01": "Madaraka Day", "2033-10-10": "Utamaduni Day", "2033-10-20": "Mashujaa Day", "2033-12-12": "Jamhuri Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-01": "Labour Day", @@ -717,7 +717,7 @@ "2036-04-14": "Easter Monday", "2036-05-01": "Labour Day", "2036-06-01": "Madaraka Day", - "2036-06-02": "Madaraka Day (Observed)", + "2036-06-02": "Madaraka Day (observed)", "2036-10-10": "Utamaduni Day", "2036-10-20": "Mashujaa Day", "2036-12-12": "Jamhuri Day", @@ -739,27 +739,27 @@ "2038-05-01": "Labour Day", "2038-06-01": "Madaraka Day", "2038-10-10": "Utamaduni Day", - "2038-10-11": "Utamaduni Day (Observed)", + "2038-10-11": "Utamaduni Day (observed)", "2038-10-20": "Mashujaa Day", "2038-12-12": "Jamhuri Day", - "2038-12-13": "Jamhuri Day (Observed)", + "2038-12-13": "Jamhuri Day (observed)", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Boxing Day (Observed)", + "2038-12-27": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-06-01": "Madaraka Day", "2039-10-10": "Utamaduni Day", "2039-10-20": "Mashujaa Day", "2039-12-12": "Jamhuri Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-01": "Labour Day", @@ -776,7 +776,7 @@ "2041-06-01": "Madaraka Day", "2041-10-10": "Utamaduni Day", "2041-10-20": "Mashujaa Day", - "2041-10-21": "Mashujaa Day (Observed)", + "2041-10-21": "Mashujaa Day (observed)", "2041-12-12": "Jamhuri Day", "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", @@ -785,7 +785,7 @@ "2042-04-07": "Easter Monday", "2042-05-01": "Labour Day", "2042-06-01": "Madaraka Day", - "2042-06-02": "Madaraka Day (Observed)", + "2042-06-02": "Madaraka Day (observed)", "2042-10-10": "Utamaduni Day", "2042-10-20": "Mashujaa Day", "2042-12-12": "Jamhuri Day", @@ -805,16 +805,16 @@ "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-06-01": "Madaraka Day", "2044-10-10": "Utamaduni Day", "2044-10-20": "Mashujaa Day", "2044-12-12": "Jamhuri Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-01": "Labour Day", @@ -841,7 +841,7 @@ "2047-06-01": "Madaraka Day", "2047-10-10": "Utamaduni Day", "2047-10-20": "Mashujaa Day", - "2047-10-21": "Mashujaa Day (Observed)", + "2047-10-21": "Mashujaa Day (observed)", "2047-12-12": "Jamhuri Day", "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", @@ -861,23 +861,23 @@ "2049-05-01": "Labour Day", "2049-06-01": "Madaraka Day", "2049-10-10": "Utamaduni Day", - "2049-10-11": "Utamaduni Day (Observed)", + "2049-10-11": "Utamaduni Day (observed)", "2049-10-20": "Mashujaa Day", "2049-12-12": "Jamhuri Day", - "2049-12-13": "Jamhuri Day (Observed)", + "2049-12-13": "Jamhuri Day (observed)", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Boxing Day (Observed)", + "2049-12-27": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-06-01": "Madaraka Day", "2050-10-10": "Utamaduni Day", "2050-10-20": "Mashujaa Day", "2050-12-12": "Jamhuri Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/KZ_COMMON.json b/snapshots/countries/KZ_COMMON.json index 574f1b534..1b1192122 100644 --- a/snapshots/countries/KZ_COMMON.json +++ b/snapshots/countries/KZ_COMMON.json @@ -92,15 +92,15 @@ "2003-01-01": "New Year", "2003-01-02": "New Year", "2003-03-08": "International Women's Day", - "2003-03-10": "International Women's Day (Observed)", + "2003-03-10": "International Women's Day (observed)", "2003-03-22": "Nauryz holiday", - "2003-03-24": "Nauryz holiday (Observed)", + "2003-03-24": "Nauryz holiday (observed)", "2003-05-01": "Kazakhstan People Solidarity Holiday", "2003-05-09": "Victory Day", "2003-08-30": "Constitution Day of the Republic of Kazakhstan", - "2003-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2003-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", "2003-10-25": "Republic Day", - "2003-10-27": "Republic Day (Observed)", + "2003-10-27": "Republic Day (observed)", "2003-12-16": "Kazakhstan Independence Day", "2003-12-17": "Kazakhstan Independence Day", "2004-01-01": "New Year", @@ -108,30 +108,30 @@ "2004-03-08": "International Women's Day", "2004-03-22": "Nauryz holiday", "2004-05-01": "Kazakhstan People Solidarity Holiday", - "2004-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2004-05-03": "Kazakhstan People Solidarity Holiday (observed)", "2004-05-09": "Victory Day", - "2004-05-10": "Victory Day (Observed)", + "2004-05-10": "Victory Day (observed)", "2004-08-30": "Constitution Day of the Republic of Kazakhstan", "2004-10-25": "Republic Day", "2004-12-16": "Kazakhstan Independence Day", "2004-12-17": "Kazakhstan Independence Day", "2005-01-01": "New Year", "2005-01-02": "New Year", - "2005-01-03": "New Year (Observed)", - "2005-01-04": "New Year (Observed)", + "2005-01-03": "New Year (observed)", + "2005-01-04": "New Year (observed)", "2005-03-08": "International Women's Day", "2005-03-22": "Nauryz holiday", "2005-05-01": "Kazakhstan People Solidarity Holiday", - "2005-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2005-05-02": "Kazakhstan People Solidarity Holiday (observed)", "2005-05-09": "Victory Day", "2005-08-30": "Constitution Day of the Republic of Kazakhstan", "2005-10-25": "Republic Day", "2005-12-16": "Kazakhstan Independence Day", "2005-12-17": "Kazakhstan Independence Day", - "2005-12-19": "Kazakhstan Independence Day (Observed)", + "2005-12-19": "Kazakhstan Independence Day (observed)", "2006-01-01": "New Year", "2006-01-02": "New Year", - "2006-01-03": "New Year (Observed)", + "2006-01-03": "New Year (observed)", "2006-01-07": "Orthodox Christmas", "2006-01-10": "Kurban Ait (estimated)", "2006-03-08": "International Women's Day", @@ -142,8 +142,8 @@ "2006-10-25": "Republic Day", "2006-12-16": "Kazakhstan Independence Day", "2006-12-17": "Kazakhstan Independence Day", - "2006-12-18": "Kazakhstan Independence Day (Observed)", - "2006-12-19": "Kazakhstan Independence Day (Observed)", + "2006-12-18": "Kazakhstan Independence Day (observed)", + "2006-12-19": "Kazakhstan Independence Day (observed)", "2006-12-31": "Kurban Ait (estimated)", "2007-01-01": "New Year", "2007-01-02": "New Year", @@ -156,21 +156,21 @@ "2007-10-25": "Republic Day", "2007-12-16": "Kazakhstan Independence Day", "2007-12-17": "Kazakhstan Independence Day", - "2007-12-18": "Kazakhstan Independence Day (Observed)", + "2007-12-18": "Kazakhstan Independence Day (observed)", "2007-12-20": "Kurban Ait (estimated)", "2008-01-01": "New Year", "2008-01-02": "New Year", "2008-01-07": "Orthodox Christmas", "2008-03-08": "International Women's Day", - "2008-03-10": "International Women's Day (Observed)", + "2008-03-10": "International Women's Day (observed)", "2008-03-22": "Nauryz holiday", - "2008-03-24": "Nauryz holiday (Observed)", + "2008-03-24": "Nauryz holiday (observed)", "2008-05-01": "Kazakhstan People Solidarity Holiday", "2008-05-09": "Victory Day", "2008-08-30": "Constitution Day of the Republic of Kazakhstan", - "2008-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2008-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", "2008-10-25": "Republic Day", - "2008-10-27": "Republic Day (Observed)", + "2008-10-27": "Republic Day (observed)", "2008-12-08": "Kurban Ait (estimated)", "2008-12-16": "Kazakhstan Independence Day", "2008-12-17": "Kazakhstan Independence Day", @@ -178,31 +178,31 @@ "2009-01-02": "New Year", "2009-01-07": "Orthodox Christmas", "2009-03-08": "International Women's Day", - "2009-03-09": "International Women's Day (Observed)", + "2009-03-09": "International Women's Day (observed)", "2009-03-22": "Nauryz holiday", - "2009-03-23": "Nauryz holiday (Observed)", + "2009-03-23": "Nauryz holiday (observed)", "2009-05-01": "Kazakhstan People Solidarity Holiday", "2009-05-09": "Victory Day", - "2009-05-11": "Victory Day (Observed)", + "2009-05-11": "Victory Day (observed)", "2009-07-06": "Capital Day", "2009-08-30": "Constitution Day of the Republic of Kazakhstan", - "2009-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2009-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", "2009-11-27": "Kurban Ait (estimated)", "2009-12-16": "Kazakhstan Independence Day", "2009-12-17": "Kazakhstan Independence Day", "2010-01-01": "New Year", "2010-01-02": "New Year", - "2010-01-04": "New Year (Observed)", + "2010-01-04": "New Year (observed)", "2010-01-07": "Orthodox Christmas", "2010-03-08": "International Women's Day", "2010-03-21": "Nauryz holiday", "2010-03-22": "Nauryz holiday", "2010-03-23": "Nauryz holiday", - "2010-03-24": "Nauryz holiday (Observed)", + "2010-03-24": "Nauryz holiday (observed)", "2010-05-01": "Kazakhstan People Solidarity Holiday", - "2010-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2010-05-03": "Kazakhstan People Solidarity Holiday (observed)", "2010-05-09": "Victory Day", - "2010-05-10": "Victory Day (Observed)", + "2010-05-10": "Victory Day (observed)", "2010-07-06": "Capital Day", "2010-08-30": "Constitution Day of the Republic of Kazakhstan", "2010-11-16": "Kurban Ait (estimated)", @@ -210,25 +210,25 @@ "2010-12-17": "Kazakhstan Independence Day", "2011-01-01": "New Year", "2011-01-02": "New Year", - "2011-01-03": "New Year (Observed)", - "2011-01-04": "New Year (Observed)", + "2011-01-03": "New Year (observed)", + "2011-01-04": "New Year (observed)", "2011-01-07": "Orthodox Christmas", "2011-03-08": "International Women's Day", "2011-03-21": "Nauryz holiday", "2011-03-22": "Nauryz holiday", "2011-03-23": "Nauryz holiday", "2011-05-01": "Kazakhstan People Solidarity Holiday", - "2011-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2011-05-02": "Kazakhstan People Solidarity Holiday (observed)", "2011-05-09": "Victory Day", "2011-07-06": "Capital Day", "2011-08-30": "Constitution Day of the Republic of Kazakhstan", "2011-11-06": "Kurban Ait (estimated)", "2011-12-16": "Kazakhstan Independence Day", "2011-12-17": "Kazakhstan Independence Day", - "2011-12-19": "Kazakhstan Independence Day (Observed)", + "2011-12-19": "Kazakhstan Independence Day (observed)", "2012-01-01": "New Year", "2012-01-02": "New Year", - "2012-01-03": "New Year (Observed)", + "2012-01-03": "New Year (observed)", "2012-01-07": "Orthodox Christmas", "2012-03-08": "International Women's Day", "2012-03-21": "Nauryz holiday", @@ -240,10 +240,10 @@ "2012-08-30": "Constitution Day of the Republic of Kazakhstan", "2012-10-26": "Kurban Ait (estimated)", "2012-12-01": "First President Day", - "2012-12-03": "First President Day (Observed)", + "2012-12-03": "First President Day (observed)", "2012-12-16": "Kazakhstan Independence Day", "2012-12-17": "Kazakhstan Independence Day", - "2012-12-18": "Kazakhstan Independence Day (Observed)", + "2012-12-18": "Kazakhstan Independence Day (observed)", "2013-01-01": "New Year", "2013-01-02": "New Year", "2013-01-07": "Orthodox Christmas", @@ -251,35 +251,35 @@ "2013-03-21": "Nauryz holiday", "2013-03-22": "Nauryz holiday", "2013-03-23": "Nauryz holiday", - "2013-03-25": "Nauryz holiday (Observed)", + "2013-03-25": "Nauryz holiday (observed)", "2013-05-01": "Kazakhstan People Solidarity Holiday", "2013-05-07": "Defender of the Fatherland Day", "2013-05-09": "Victory Day", "2013-07-06": "Capital Day", - "2013-07-08": "Capital Day (Observed)", + "2013-07-08": "Capital Day (observed)", "2013-08-30": "Constitution Day of the Republic of Kazakhstan", "2013-10-15": "Kurban Ait (estimated)", "2013-12-01": "First President Day", - "2013-12-02": "First President Day (Observed)", + "2013-12-02": "First President Day (observed)", "2013-12-16": "Kazakhstan Independence Day", "2013-12-17": "Kazakhstan Independence Day", "2014-01-01": "New Year", "2014-01-02": "New Year", "2014-01-07": "Orthodox Christmas", "2014-03-08": "International Women's Day", - "2014-03-10": "International Women's Day (Observed)", + "2014-03-10": "International Women's Day (observed)", "2014-03-21": "Nauryz holiday", "2014-03-22": "Nauryz holiday", "2014-03-23": "Nauryz holiday", - "2014-03-24": "Nauryz holiday (Observed)", - "2014-03-25": "Nauryz holiday (Observed)", + "2014-03-24": "Nauryz holiday (observed)", + "2014-03-25": "Nauryz holiday (observed)", "2014-05-01": "Kazakhstan People Solidarity Holiday", "2014-05-07": "Defender of the Fatherland Day", "2014-05-09": "Victory Day", "2014-07-06": "Capital Day", - "2014-07-07": "Capital Day (Observed)", + "2014-07-07": "Capital Day (observed)", "2014-08-30": "Constitution Day of the Republic of Kazakhstan", - "2014-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2014-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", "2014-10-04": "Kurban Ait (estimated)", "2014-12-01": "First President Day", "2014-12-16": "Kazakhstan Independence Day", @@ -288,46 +288,46 @@ "2015-01-02": "New Year", "2015-01-07": "Orthodox Christmas", "2015-03-08": "International Women's Day", - "2015-03-09": "International Women's Day (Observed)", + "2015-03-09": "International Women's Day (observed)", "2015-03-21": "Nauryz holiday", "2015-03-22": "Nauryz holiday", "2015-03-23": "Nauryz holiday", - "2015-03-24": "Nauryz holiday (Observed)", - "2015-03-25": "Nauryz holiday (Observed)", + "2015-03-24": "Nauryz holiday (observed)", + "2015-03-25": "Nauryz holiday (observed)", "2015-05-01": "Kazakhstan People Solidarity Holiday", "2015-05-07": "Defender of the Fatherland Day", "2015-05-09": "Victory Day", - "2015-05-11": "Victory Day (Observed)", + "2015-05-11": "Victory Day (observed)", "2015-07-06": "Capital Day", "2015-08-30": "Constitution Day of the Republic of Kazakhstan", - "2015-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2015-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", "2015-09-23": "Kurban Ait (estimated)", "2015-12-01": "First President Day", "2015-12-16": "Kazakhstan Independence Day", "2015-12-17": "Kazakhstan Independence Day", "2016-01-01": "New Year", "2016-01-02": "New Year", - "2016-01-04": "New Year (Observed)", + "2016-01-04": "New Year (observed)", "2016-01-07": "Orthodox Christmas", "2016-03-08": "International Women's Day", "2016-03-21": "Nauryz holiday", "2016-03-22": "Nauryz holiday", "2016-03-23": "Nauryz holiday", "2016-05-01": "Kazakhstan People Solidarity Holiday", - "2016-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2016-05-02": "Kazakhstan People Solidarity Holiday (observed)", "2016-05-07": "Defender of the Fatherland Day", "2016-05-09": "Victory Day", - "2016-05-10": "Defender of the Fatherland Day (Observed)", + "2016-05-10": "Defender of the Fatherland Day (observed)", "2016-07-06": "Capital Day", "2016-08-30": "Constitution Day of the Republic of Kazakhstan", "2016-09-11": "Kurban Ait (estimated)", "2016-12-01": "First President Day", "2016-12-16": "Kazakhstan Independence Day", "2016-12-17": "Kazakhstan Independence Day", - "2016-12-19": "Kazakhstan Independence Day (Observed)", + "2016-12-19": "Kazakhstan Independence Day (observed)", "2017-01-01": "New Year", "2017-01-02": "New Year", - "2017-01-03": "New Year (Observed)", + "2017-01-03": "New Year (observed)", "2017-01-07": "Orthodox Christmas", "2017-03-08": "International Women's Day", "2017-03-21": "Nauryz holiday", @@ -335,7 +335,7 @@ "2017-03-23": "Nauryz holiday", "2017-05-01": "Kazakhstan People Solidarity Holiday", "2017-05-07": "Defender of the Fatherland Day", - "2017-05-08": "Defender of the Fatherland Day (Observed)", + "2017-05-08": "Defender of the Fatherland Day (observed)", "2017-05-09": "Victory Day", "2017-07-06": "Capital Day", "2017-08-30": "Constitution Day of the Republic of Kazakhstan", @@ -343,8 +343,8 @@ "2017-12-01": "First President Day", "2017-12-16": "Kazakhstan Independence Day", "2017-12-17": "Kazakhstan Independence Day", - "2017-12-18": "Kazakhstan Independence Day (Observed)", - "2017-12-19": "Kazakhstan Independence Day (Observed)", + "2017-12-18": "Kazakhstan Independence Day (observed)", + "2017-12-19": "Kazakhstan Independence Day (observed)", "2018-01-01": "New Year", "2018-01-02": "New Year", "2018-01-07": "Orthodox Christmas", @@ -359,10 +359,10 @@ "2018-08-21": "Kurban Ait (estimated)", "2018-08-30": "Constitution Day of the Republic of Kazakhstan", "2018-12-01": "First President Day", - "2018-12-03": "First President Day (Observed)", + "2018-12-03": "First President Day (observed)", "2018-12-16": "Kazakhstan Independence Day", "2018-12-17": "Kazakhstan Independence Day", - "2018-12-18": "Kazakhstan Independence Day (Observed)", + "2018-12-18": "Kazakhstan Independence Day (observed)", "2019-01-01": "New Year", "2019-01-02": "New Year", "2019-01-07": "Orthodox Christmas", @@ -370,53 +370,53 @@ "2019-03-21": "Nauryz holiday", "2019-03-22": "Nauryz holiday", "2019-03-23": "Nauryz holiday", - "2019-03-25": "Nauryz holiday (Observed)", + "2019-03-25": "Nauryz holiday (observed)", "2019-05-01": "Kazakhstan People Solidarity Holiday", "2019-05-07": "Defender of the Fatherland Day", "2019-05-09": "Victory Day", "2019-07-06": "Capital Day", - "2019-07-08": "Capital Day (Observed)", + "2019-07-08": "Capital Day (observed)", "2019-08-11": "Kurban Ait (estimated)", "2019-08-30": "Constitution Day of the Republic of Kazakhstan", "2019-12-01": "First President Day", - "2019-12-02": "First President Day (Observed)", + "2019-12-02": "First President Day (observed)", "2019-12-16": "Kazakhstan Independence Day", "2019-12-17": "Kazakhstan Independence Day", "2020-01-01": "New Year", "2020-01-02": "New Year", "2020-01-07": "Orthodox Christmas", "2020-03-08": "International Women's Day", - "2020-03-09": "International Women's Day (Observed)", + "2020-03-09": "International Women's Day (observed)", "2020-03-21": "Nauryz holiday", "2020-03-22": "Nauryz holiday", "2020-03-23": "Nauryz holiday", - "2020-03-24": "Nauryz holiday (Observed)", - "2020-03-25": "Nauryz holiday (Observed)", + "2020-03-24": "Nauryz holiday (observed)", + "2020-03-25": "Nauryz holiday (observed)", "2020-05-01": "Kazakhstan People Solidarity Holiday", "2020-05-07": "Defender of the Fatherland Day", "2020-05-09": "Victory Day", - "2020-05-11": "Victory Day (Observed)", + "2020-05-11": "Victory Day (observed)", "2020-07-06": "Capital Day", "2020-07-31": "Kurban Ait (estimated)", "2020-08-30": "Constitution Day of the Republic of Kazakhstan", - "2020-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2020-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", "2020-12-01": "First President Day", "2020-12-16": "Kazakhstan Independence Day", "2020-12-17": "Kazakhstan Independence Day", "2021-01-01": "New Year", "2021-01-02": "New Year", - "2021-01-04": "New Year (Observed)", + "2021-01-04": "New Year (observed)", "2021-01-07": "Orthodox Christmas", "2021-03-08": "International Women's Day", "2021-03-21": "Nauryz holiday", "2021-03-22": "Nauryz holiday", "2021-03-23": "Nauryz holiday", - "2021-03-24": "Nauryz holiday (Observed)", + "2021-03-24": "Nauryz holiday (observed)", "2021-05-01": "Kazakhstan People Solidarity Holiday", - "2021-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2021-05-03": "Kazakhstan People Solidarity Holiday (observed)", "2021-05-07": "Defender of the Fatherland Day", "2021-05-09": "Victory Day", - "2021-05-10": "Victory Day (Observed)", + "2021-05-10": "Victory Day (observed)", "2021-07-06": "Capital Day", "2021-07-20": "Kurban Ait (estimated)", "2021-08-30": "Constitution Day of the Republic of Kazakhstan", @@ -425,18 +425,18 @@ "2021-12-17": "Kazakhstan Independence Day", "2022-01-01": "New Year", "2022-01-02": "New Year", - "2022-01-03": "New Year (Observed)", - "2022-01-04": "New Year (Observed)", + "2022-01-03": "New Year (observed)", + "2022-01-04": "New Year (observed)", "2022-01-07": "Orthodox Christmas", "2022-03-08": "International Women's Day", "2022-03-21": "Nauryz holiday", "2022-03-22": "Nauryz holiday", "2022-03-23": "Nauryz holiday", "2022-05-01": "Kazakhstan People Solidarity Holiday", - "2022-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2022-05-02": "Kazakhstan People Solidarity Holiday (observed)", "2022-05-07": "Defender of the Fatherland Day", "2022-05-09": "Victory Day", - "2022-05-10": "Defender of the Fatherland Day (Observed)", + "2022-05-10": "Defender of the Fatherland Day (observed)", "2022-07-06": "Capital Day", "2022-07-09": "Kurban Ait (estimated)", "2022-08-30": "Constitution Day of the Republic of Kazakhstan", @@ -444,7 +444,7 @@ "2022-12-16": "Kazakhstan Independence Day", "2023-01-01": "New Year", "2023-01-02": "New Year", - "2023-01-03": "New Year (Observed)", + "2023-01-03": "New Year (observed)", "2023-01-07": "Orthodox Christmas", "2023-03-08": "International Women's Day", "2023-03-21": "Nauryz holiday", @@ -452,14 +452,14 @@ "2023-03-23": "Nauryz holiday", "2023-05-01": "Kazakhstan People Solidarity Holiday", "2023-05-07": "Defender of the Fatherland Day", - "2023-05-08": "Defender of the Fatherland Day (Observed)", + "2023-05-08": "Defender of the Fatherland Day (observed)", "2023-05-09": "Victory Day", "2023-06-28": "Kurban Ait (estimated)", "2023-07-06": "Capital Day", "2023-08-30": "Constitution Day of the Republic of Kazakhstan", "2023-10-25": "Republic Day", "2023-12-16": "Kazakhstan Independence Day", - "2023-12-18": "Kazakhstan Independence Day (Observed)", + "2023-12-18": "Kazakhstan Independence Day (observed)", "2024-01-01": "New Year", "2024-01-02": "New Year", "2024-01-07": "Orthodox Christmas", @@ -467,13 +467,13 @@ "2024-03-21": "Nauryz holiday", "2024-03-22": "Nauryz holiday", "2024-03-23": "Nauryz holiday", - "2024-03-25": "Nauryz holiday (Observed)", + "2024-03-25": "Nauryz holiday (observed)", "2024-05-01": "Kazakhstan People Solidarity Holiday", "2024-05-07": "Defender of the Fatherland Day", "2024-05-09": "Victory Day", "2024-06-16": "Kurban Ait (estimated)", "2024-07-06": "Capital Day", - "2024-07-08": "Capital Day (Observed)", + "2024-07-08": "Capital Day (observed)", "2024-08-30": "Constitution Day of the Republic of Kazakhstan", "2024-10-25": "Republic Day", "2024-12-16": "Kazakhstan Independence Day", @@ -481,58 +481,58 @@ "2025-01-02": "New Year", "2025-01-07": "Orthodox Christmas", "2025-03-08": "International Women's Day", - "2025-03-10": "International Women's Day (Observed)", + "2025-03-10": "International Women's Day (observed)", "2025-03-21": "Nauryz holiday", "2025-03-22": "Nauryz holiday", "2025-03-23": "Nauryz holiday", - "2025-03-24": "Nauryz holiday (Observed)", - "2025-03-25": "Nauryz holiday (Observed)", + "2025-03-24": "Nauryz holiday (observed)", + "2025-03-25": "Nauryz holiday (observed)", "2025-05-01": "Kazakhstan People Solidarity Holiday", "2025-05-07": "Defender of the Fatherland Day", "2025-05-09": "Victory Day", "2025-06-06": "Kurban Ait (estimated)", "2025-07-06": "Capital Day", - "2025-07-07": "Capital Day (Observed)", + "2025-07-07": "Capital Day (observed)", "2025-08-30": "Constitution Day of the Republic of Kazakhstan", - "2025-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2025-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", "2025-10-25": "Republic Day", - "2025-10-27": "Republic Day (Observed)", + "2025-10-27": "Republic Day (observed)", "2025-12-16": "Kazakhstan Independence Day", "2026-01-01": "New Year", "2026-01-02": "New Year", "2026-01-07": "Orthodox Christmas", "2026-03-08": "International Women's Day", - "2026-03-09": "International Women's Day (Observed)", + "2026-03-09": "International Women's Day (observed)", "2026-03-21": "Nauryz holiday", "2026-03-22": "Nauryz holiday", "2026-03-23": "Nauryz holiday", - "2026-03-24": "Nauryz holiday (Observed)", - "2026-03-25": "Nauryz holiday (Observed)", + "2026-03-24": "Nauryz holiday (observed)", + "2026-03-25": "Nauryz holiday (observed)", "2026-05-01": "Kazakhstan People Solidarity Holiday", "2026-05-07": "Defender of the Fatherland Day", "2026-05-09": "Victory Day", - "2026-05-11": "Victory Day (Observed)", + "2026-05-11": "Victory Day (observed)", "2026-05-27": "Kurban Ait (estimated)", "2026-07-06": "Capital Day", "2026-08-30": "Constitution Day of the Republic of Kazakhstan", - "2026-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2026-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", "2026-10-25": "Republic Day", - "2026-10-26": "Republic Day (Observed)", + "2026-10-26": "Republic Day (observed)", "2026-12-16": "Kazakhstan Independence Day", "2027-01-01": "New Year", "2027-01-02": "New Year", - "2027-01-04": "New Year (Observed)", + "2027-01-04": "New Year (observed)", "2027-01-07": "Orthodox Christmas", "2027-03-08": "International Women's Day", "2027-03-21": "Nauryz holiday", "2027-03-22": "Nauryz holiday", "2027-03-23": "Nauryz holiday", - "2027-03-24": "Nauryz holiday (Observed)", + "2027-03-24": "Nauryz holiday (observed)", "2027-05-01": "Kazakhstan People Solidarity Holiday", - "2027-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2027-05-03": "Kazakhstan People Solidarity Holiday (observed)", "2027-05-07": "Defender of the Fatherland Day", "2027-05-09": "Victory Day", - "2027-05-10": "Victory Day (Observed)", + "2027-05-10": "Victory Day (observed)", "2027-05-16": "Kurban Ait (estimated)", "2027-07-06": "Capital Day", "2027-08-30": "Constitution Day of the Republic of Kazakhstan", @@ -540,8 +540,8 @@ "2027-12-16": "Kazakhstan Independence Day", "2028-01-01": "New Year", "2028-01-02": "New Year", - "2028-01-03": "New Year (Observed)", - "2028-01-04": "New Year (Observed)", + "2028-01-03": "New Year (observed)", + "2028-01-04": "New Year (observed)", "2028-01-07": "Orthodox Christmas", "2028-03-08": "International Women's Day", "2028-03-21": "Nauryz holiday", @@ -550,13 +550,13 @@ "2028-05-01": "Kazakhstan People Solidarity Holiday", "2028-05-05": "Kurban Ait (estimated)", "2028-05-07": "Defender of the Fatherland Day", - "2028-05-08": "Defender of the Fatherland Day (Observed)", + "2028-05-08": "Defender of the Fatherland Day (observed)", "2028-05-09": "Victory Day", "2028-07-06": "Capital Day", "2028-08-30": "Constitution Day of the Republic of Kazakhstan", "2028-10-25": "Republic Day", "2028-12-16": "Kazakhstan Independence Day", - "2028-12-18": "Kazakhstan Independence Day (Observed)", + "2028-12-18": "Kazakhstan Independence Day (observed)", "2029-01-01": "New Year", "2029-01-02": "New Year", "2029-01-07": "Orthodox Christmas", @@ -572,7 +572,7 @@ "2029-08-30": "Constitution Day of the Republic of Kazakhstan", "2029-10-25": "Republic Day", "2029-12-16": "Kazakhstan Independence Day", - "2029-12-17": "Kazakhstan Independence Day (Observed)", + "2029-12-17": "Kazakhstan Independence Day (observed)", "2030-01-01": "New Year", "2030-01-02": "New Year", "2030-01-07": "Orthodox Christmas", @@ -580,13 +580,13 @@ "2030-03-21": "Nauryz holiday", "2030-03-22": "Nauryz holiday", "2030-03-23": "Nauryz holiday", - "2030-03-25": "Nauryz holiday (Observed)", + "2030-03-25": "Nauryz holiday (observed)", "2030-04-13": "Kurban Ait (estimated)", "2030-05-01": "Kazakhstan People Solidarity Holiday", "2030-05-07": "Defender of the Fatherland Day", "2030-05-09": "Victory Day", "2030-07-06": "Capital Day", - "2030-07-08": "Capital Day (Observed)", + "2030-07-08": "Capital Day (observed)", "2030-08-30": "Constitution Day of the Republic of Kazakhstan", "2030-10-25": "Republic Day", "2030-12-16": "Kazakhstan Independence Day", @@ -594,22 +594,22 @@ "2031-01-02": "New Year", "2031-01-07": "Orthodox Christmas", "2031-03-08": "International Women's Day", - "2031-03-10": "International Women's Day (Observed)", + "2031-03-10": "International Women's Day (observed)", "2031-03-21": "Nauryz holiday", "2031-03-22": "Nauryz holiday", "2031-03-23": "Nauryz holiday", - "2031-03-24": "Nauryz holiday (Observed)", - "2031-03-25": "Nauryz holiday (Observed)", + "2031-03-24": "Nauryz holiday (observed)", + "2031-03-25": "Nauryz holiday (observed)", "2031-04-02": "Kurban Ait (estimated)", "2031-05-01": "Kazakhstan People Solidarity Holiday", "2031-05-07": "Defender of the Fatherland Day", "2031-05-09": "Victory Day", "2031-07-06": "Capital Day", - "2031-07-07": "Capital Day (Observed)", + "2031-07-07": "Capital Day (observed)", "2031-08-30": "Constitution Day of the Republic of Kazakhstan", - "2031-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2031-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", "2031-10-25": "Republic Day", - "2031-10-27": "Republic Day (Observed)", + "2031-10-27": "Republic Day (observed)", "2031-12-16": "Kazakhstan Independence Day", "2032-01-01": "New Year", "2032-01-02": "New Year", @@ -618,20 +618,20 @@ "2032-03-21": "Nauryz holiday", "2032-03-22": "Kurban Ait (estimated); Nauryz holiday", "2032-03-23": "Nauryz holiday", - "2032-03-24": "Nauryz holiday (Observed)", + "2032-03-24": "Nauryz holiday (observed)", "2032-05-01": "Kazakhstan People Solidarity Holiday", - "2032-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2032-05-03": "Kazakhstan People Solidarity Holiday (observed)", "2032-05-07": "Defender of the Fatherland Day", "2032-05-09": "Victory Day", - "2032-05-10": "Victory Day (Observed)", + "2032-05-10": "Victory Day (observed)", "2032-07-06": "Capital Day", "2032-08-30": "Constitution Day of the Republic of Kazakhstan", "2032-10-25": "Republic Day", "2032-12-16": "Kazakhstan Independence Day", "2033-01-01": "New Year", "2033-01-02": "New Year", - "2033-01-03": "New Year (Observed)", - "2033-01-04": "New Year (Observed)", + "2033-01-03": "New Year (observed)", + "2033-01-04": "New Year (observed)", "2033-01-07": "Orthodox Christmas", "2033-03-08": "International Women's Day", "2033-03-11": "Kurban Ait (estimated)", @@ -639,17 +639,17 @@ "2033-03-22": "Nauryz holiday", "2033-03-23": "Nauryz holiday", "2033-05-01": "Kazakhstan People Solidarity Holiday", - "2033-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2033-05-02": "Kazakhstan People Solidarity Holiday (observed)", "2033-05-07": "Defender of the Fatherland Day", "2033-05-09": "Victory Day", - "2033-05-10": "Defender of the Fatherland Day (Observed)", + "2033-05-10": "Defender of the Fatherland Day (observed)", "2033-07-06": "Capital Day", "2033-08-30": "Constitution Day of the Republic of Kazakhstan", "2033-10-25": "Republic Day", "2033-12-16": "Kazakhstan Independence Day", "2034-01-01": "New Year", "2034-01-02": "New Year", - "2034-01-03": "New Year (Observed)", + "2034-01-03": "New Year (observed)", "2034-01-07": "Orthodox Christmas", "2034-03-01": "Kurban Ait (estimated)", "2034-03-08": "International Women's Day", @@ -658,13 +658,13 @@ "2034-03-23": "Nauryz holiday", "2034-05-01": "Kazakhstan People Solidarity Holiday", "2034-05-07": "Defender of the Fatherland Day", - "2034-05-08": "Defender of the Fatherland Day (Observed)", + "2034-05-08": "Defender of the Fatherland Day (observed)", "2034-05-09": "Victory Day", "2034-07-06": "Capital Day", "2034-08-30": "Constitution Day of the Republic of Kazakhstan", "2034-10-25": "Republic Day", "2034-12-16": "Kazakhstan Independence Day", - "2034-12-18": "Kazakhstan Independence Day (Observed)", + "2034-12-18": "Kazakhstan Independence Day (observed)", "2035-01-01": "New Year", "2035-01-02": "New Year", "2035-01-07": "Orthodox Christmas", @@ -680,72 +680,72 @@ "2035-08-30": "Constitution Day of the Republic of Kazakhstan", "2035-10-25": "Republic Day", "2035-12-16": "Kazakhstan Independence Day", - "2035-12-17": "Kazakhstan Independence Day (Observed)", + "2035-12-17": "Kazakhstan Independence Day (observed)", "2036-01-01": "New Year", "2036-01-02": "New Year", "2036-01-07": "Orthodox Christmas", "2036-02-07": "Kurban Ait (estimated)", "2036-03-08": "International Women's Day", - "2036-03-10": "International Women's Day (Observed)", + "2036-03-10": "International Women's Day (observed)", "2036-03-21": "Nauryz holiday", "2036-03-22": "Nauryz holiday", "2036-03-23": "Nauryz holiday", - "2036-03-24": "Nauryz holiday (Observed)", - "2036-03-25": "Nauryz holiday (Observed)", + "2036-03-24": "Nauryz holiday (observed)", + "2036-03-25": "Nauryz holiday (observed)", "2036-05-01": "Kazakhstan People Solidarity Holiday", "2036-05-07": "Defender of the Fatherland Day", "2036-05-09": "Victory Day", "2036-07-06": "Capital Day", - "2036-07-07": "Capital Day (Observed)", + "2036-07-07": "Capital Day (observed)", "2036-08-30": "Constitution Day of the Republic of Kazakhstan", - "2036-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2036-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", "2036-10-25": "Republic Day", - "2036-10-27": "Republic Day (Observed)", + "2036-10-27": "Republic Day (observed)", "2036-12-16": "Kazakhstan Independence Day", "2037-01-01": "New Year", "2037-01-02": "New Year", "2037-01-07": "Orthodox Christmas", "2037-01-26": "Kurban Ait (estimated)", "2037-03-08": "International Women's Day", - "2037-03-09": "International Women's Day (Observed)", + "2037-03-09": "International Women's Day (observed)", "2037-03-21": "Nauryz holiday", "2037-03-22": "Nauryz holiday", "2037-03-23": "Nauryz holiday", - "2037-03-24": "Nauryz holiday (Observed)", - "2037-03-25": "Nauryz holiday (Observed)", + "2037-03-24": "Nauryz holiday (observed)", + "2037-03-25": "Nauryz holiday (observed)", "2037-05-01": "Kazakhstan People Solidarity Holiday", "2037-05-07": "Defender of the Fatherland Day", "2037-05-09": "Victory Day", - "2037-05-11": "Victory Day (Observed)", + "2037-05-11": "Victory Day (observed)", "2037-07-06": "Capital Day", "2037-08-30": "Constitution Day of the Republic of Kazakhstan", - "2037-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2037-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", "2037-10-25": "Republic Day", - "2037-10-26": "Republic Day (Observed)", + "2037-10-26": "Republic Day (observed)", "2037-12-16": "Kazakhstan Independence Day", "2038-01-01": "New Year", "2038-01-02": "New Year", - "2038-01-04": "New Year (Observed)", + "2038-01-04": "New Year (observed)", "2038-01-07": "Orthodox Christmas", "2038-01-16": "Kurban Ait (estimated)", "2038-03-08": "International Women's Day", "2038-03-21": "Nauryz holiday", "2038-03-22": "Nauryz holiday", "2038-03-23": "Nauryz holiday", - "2038-03-24": "Nauryz holiday (Observed)", + "2038-03-24": "Nauryz holiday (observed)", "2038-05-01": "Kazakhstan People Solidarity Holiday", - "2038-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2038-05-03": "Kazakhstan People Solidarity Holiday (observed)", "2038-05-07": "Defender of the Fatherland Day", "2038-05-09": "Victory Day", - "2038-05-10": "Victory Day (Observed)", + "2038-05-10": "Victory Day (observed)", "2038-07-06": "Capital Day", "2038-08-30": "Constitution Day of the Republic of Kazakhstan", "2038-10-25": "Republic Day", "2038-12-16": "Kazakhstan Independence Day", "2039-01-01": "New Year", "2039-01-02": "New Year", - "2039-01-03": "New Year (Observed)", - "2039-01-04": "New Year (Observed)", + "2039-01-03": "New Year (observed)", + "2039-01-04": "New Year (observed)", "2039-01-05": "Kurban Ait (estimated)", "2039-01-07": "Orthodox Christmas", "2039-03-08": "International Women's Day", @@ -753,10 +753,10 @@ "2039-03-22": "Nauryz holiday", "2039-03-23": "Nauryz holiday", "2039-05-01": "Kazakhstan People Solidarity Holiday", - "2039-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2039-05-02": "Kazakhstan People Solidarity Holiday (observed)", "2039-05-07": "Defender of the Fatherland Day", "2039-05-09": "Victory Day", - "2039-05-10": "Defender of the Fatherland Day (Observed)", + "2039-05-10": "Defender of the Fatherland Day (observed)", "2039-07-06": "Capital Day", "2039-08-30": "Constitution Day of the Republic of Kazakhstan", "2039-10-25": "Republic Day", @@ -764,7 +764,7 @@ "2039-12-26": "Kurban Ait (estimated)", "2040-01-01": "New Year", "2040-01-02": "New Year", - "2040-01-03": "New Year (Observed)", + "2040-01-03": "New Year (observed)", "2040-01-07": "Orthodox Christmas", "2040-03-08": "International Women's Day", "2040-03-21": "Nauryz holiday", @@ -778,7 +778,7 @@ "2040-10-25": "Republic Day", "2040-12-14": "Kurban Ait (estimated)", "2040-12-16": "Kazakhstan Independence Day", - "2040-12-17": "Kazakhstan Independence Day (Observed)", + "2040-12-17": "Kazakhstan Independence Day (observed)", "2041-01-01": "New Year", "2041-01-02": "New Year", "2041-01-07": "Orthodox Christmas", @@ -786,12 +786,12 @@ "2041-03-21": "Nauryz holiday", "2041-03-22": "Nauryz holiday", "2041-03-23": "Nauryz holiday", - "2041-03-25": "Nauryz holiday (Observed)", + "2041-03-25": "Nauryz holiday (observed)", "2041-05-01": "Kazakhstan People Solidarity Holiday", "2041-05-07": "Defender of the Fatherland Day", "2041-05-09": "Victory Day", "2041-07-06": "Capital Day", - "2041-07-08": "Capital Day (Observed)", + "2041-07-08": "Capital Day (observed)", "2041-08-30": "Constitution Day of the Republic of Kazakhstan", "2041-10-25": "Republic Day", "2041-12-04": "Kurban Ait (estimated)", @@ -800,57 +800,57 @@ "2042-01-02": "New Year", "2042-01-07": "Orthodox Christmas", "2042-03-08": "International Women's Day", - "2042-03-10": "International Women's Day (Observed)", + "2042-03-10": "International Women's Day (observed)", "2042-03-21": "Nauryz holiday", "2042-03-22": "Nauryz holiday", "2042-03-23": "Nauryz holiday", - "2042-03-24": "Nauryz holiday (Observed)", - "2042-03-25": "Nauryz holiday (Observed)", + "2042-03-24": "Nauryz holiday (observed)", + "2042-03-25": "Nauryz holiday (observed)", "2042-05-01": "Kazakhstan People Solidarity Holiday", "2042-05-07": "Defender of the Fatherland Day", "2042-05-09": "Victory Day", "2042-07-06": "Capital Day", - "2042-07-07": "Capital Day (Observed)", + "2042-07-07": "Capital Day (observed)", "2042-08-30": "Constitution Day of the Republic of Kazakhstan", - "2042-09-01": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2042-09-01": "Constitution Day of the Republic of Kazakhstan (observed)", "2042-10-25": "Republic Day", - "2042-10-27": "Republic Day (Observed)", + "2042-10-27": "Republic Day (observed)", "2042-11-23": "Kurban Ait (estimated)", "2042-12-16": "Kazakhstan Independence Day", "2043-01-01": "New Year", "2043-01-02": "New Year", "2043-01-07": "Orthodox Christmas", "2043-03-08": "International Women's Day", - "2043-03-09": "International Women's Day (Observed)", + "2043-03-09": "International Women's Day (observed)", "2043-03-21": "Nauryz holiday", "2043-03-22": "Nauryz holiday", "2043-03-23": "Nauryz holiday", - "2043-03-24": "Nauryz holiday (Observed)", - "2043-03-25": "Nauryz holiday (Observed)", + "2043-03-24": "Nauryz holiday (observed)", + "2043-03-25": "Nauryz holiday (observed)", "2043-05-01": "Kazakhstan People Solidarity Holiday", "2043-05-07": "Defender of the Fatherland Day", "2043-05-09": "Victory Day", - "2043-05-11": "Victory Day (Observed)", + "2043-05-11": "Victory Day (observed)", "2043-07-06": "Capital Day", "2043-08-30": "Constitution Day of the Republic of Kazakhstan", - "2043-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2043-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", "2043-10-25": "Republic Day", - "2043-10-26": "Republic Day (Observed)", + "2043-10-26": "Republic Day (observed)", "2043-11-12": "Kurban Ait (estimated)", "2043-12-16": "Kazakhstan Independence Day", "2044-01-01": "New Year", "2044-01-02": "New Year", - "2044-01-04": "New Year (Observed)", + "2044-01-04": "New Year (observed)", "2044-01-07": "Orthodox Christmas", "2044-03-08": "International Women's Day", "2044-03-21": "Nauryz holiday", "2044-03-22": "Nauryz holiday", "2044-03-23": "Nauryz holiday", "2044-05-01": "Kazakhstan People Solidarity Holiday", - "2044-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2044-05-02": "Kazakhstan People Solidarity Holiday (observed)", "2044-05-07": "Defender of the Fatherland Day", "2044-05-09": "Victory Day", - "2044-05-10": "Defender of the Fatherland Day (Observed)", + "2044-05-10": "Defender of the Fatherland Day (observed)", "2044-07-06": "Capital Day", "2044-08-30": "Constitution Day of the Republic of Kazakhstan", "2044-10-25": "Republic Day", @@ -858,7 +858,7 @@ "2044-12-16": "Kazakhstan Independence Day", "2045-01-01": "New Year", "2045-01-02": "New Year", - "2045-01-03": "New Year (Observed)", + "2045-01-03": "New Year (observed)", "2045-01-07": "Orthodox Christmas", "2045-03-08": "International Women's Day", "2045-03-21": "Nauryz holiday", @@ -866,14 +866,14 @@ "2045-03-23": "Nauryz holiday", "2045-05-01": "Kazakhstan People Solidarity Holiday", "2045-05-07": "Defender of the Fatherland Day", - "2045-05-08": "Defender of the Fatherland Day (Observed)", + "2045-05-08": "Defender of the Fatherland Day (observed)", "2045-05-09": "Victory Day", "2045-07-06": "Capital Day", "2045-08-30": "Constitution Day of the Republic of Kazakhstan", "2045-10-21": "Kurban Ait (estimated)", "2045-10-25": "Republic Day", "2045-12-16": "Kazakhstan Independence Day", - "2045-12-18": "Kazakhstan Independence Day (Observed)", + "2045-12-18": "Kazakhstan Independence Day (observed)", "2046-01-01": "New Year", "2046-01-02": "New Year", "2046-01-07": "Orthodox Christmas", @@ -889,7 +889,7 @@ "2046-10-10": "Kurban Ait (estimated)", "2046-10-25": "Republic Day", "2046-12-16": "Kazakhstan Independence Day", - "2046-12-17": "Kazakhstan Independence Day (Observed)", + "2046-12-17": "Kazakhstan Independence Day (observed)", "2047-01-01": "New Year", "2047-01-02": "New Year", "2047-01-07": "Orthodox Christmas", @@ -897,12 +897,12 @@ "2047-03-21": "Nauryz holiday", "2047-03-22": "Nauryz holiday", "2047-03-23": "Nauryz holiday", - "2047-03-25": "Nauryz holiday (Observed)", + "2047-03-25": "Nauryz holiday (observed)", "2047-05-01": "Kazakhstan People Solidarity Holiday", "2047-05-07": "Defender of the Fatherland Day", "2047-05-09": "Victory Day", "2047-07-06": "Capital Day", - "2047-07-08": "Capital Day (Observed)", + "2047-07-08": "Capital Day (observed)", "2047-08-30": "Constitution Day of the Republic of Kazakhstan", "2047-09-30": "Kurban Ait (estimated)", "2047-10-25": "Republic Day", @@ -911,37 +911,37 @@ "2048-01-02": "New Year", "2048-01-07": "Orthodox Christmas", "2048-03-08": "International Women's Day", - "2048-03-09": "International Women's Day (Observed)", + "2048-03-09": "International Women's Day (observed)", "2048-03-21": "Nauryz holiday", "2048-03-22": "Nauryz holiday", "2048-03-23": "Nauryz holiday", - "2048-03-24": "Nauryz holiday (Observed)", - "2048-03-25": "Nauryz holiday (Observed)", + "2048-03-24": "Nauryz holiday (observed)", + "2048-03-25": "Nauryz holiday (observed)", "2048-05-01": "Kazakhstan People Solidarity Holiday", "2048-05-07": "Defender of the Fatherland Day", "2048-05-09": "Victory Day", - "2048-05-11": "Victory Day (Observed)", + "2048-05-11": "Victory Day (observed)", "2048-07-06": "Capital Day", "2048-08-30": "Constitution Day of the Republic of Kazakhstan", - "2048-08-31": "Constitution Day of the Republic of Kazakhstan (Observed)", + "2048-08-31": "Constitution Day of the Republic of Kazakhstan (observed)", "2048-09-19": "Kurban Ait (estimated)", "2048-10-25": "Republic Day", - "2048-10-26": "Republic Day (Observed)", + "2048-10-26": "Republic Day (observed)", "2048-12-16": "Kazakhstan Independence Day", "2049-01-01": "New Year", "2049-01-02": "New Year", - "2049-01-04": "New Year (Observed)", + "2049-01-04": "New Year (observed)", "2049-01-07": "Orthodox Christmas", "2049-03-08": "International Women's Day", "2049-03-21": "Nauryz holiday", "2049-03-22": "Nauryz holiday", "2049-03-23": "Nauryz holiday", - "2049-03-24": "Nauryz holiday (Observed)", + "2049-03-24": "Nauryz holiday (observed)", "2049-05-01": "Kazakhstan People Solidarity Holiday", - "2049-05-03": "Kazakhstan People Solidarity Holiday (Observed)", + "2049-05-03": "Kazakhstan People Solidarity Holiday (observed)", "2049-05-07": "Defender of the Fatherland Day", "2049-05-09": "Victory Day", - "2049-05-10": "Victory Day (Observed)", + "2049-05-10": "Victory Day (observed)", "2049-07-06": "Capital Day", "2049-08-30": "Constitution Day of the Republic of Kazakhstan", "2049-09-08": "Kurban Ait (estimated)", @@ -949,18 +949,18 @@ "2049-12-16": "Kazakhstan Independence Day", "2050-01-01": "New Year", "2050-01-02": "New Year", - "2050-01-03": "New Year (Observed)", - "2050-01-04": "New Year (Observed)", + "2050-01-03": "New Year (observed)", + "2050-01-04": "New Year (observed)", "2050-01-07": "Orthodox Christmas", "2050-03-08": "International Women's Day", "2050-03-21": "Nauryz holiday", "2050-03-22": "Nauryz holiday", "2050-03-23": "Nauryz holiday", "2050-05-01": "Kazakhstan People Solidarity Holiday", - "2050-05-02": "Kazakhstan People Solidarity Holiday (Observed)", + "2050-05-02": "Kazakhstan People Solidarity Holiday (observed)", "2050-05-07": "Defender of the Fatherland Day", "2050-05-09": "Victory Day", - "2050-05-10": "Defender of the Fatherland Day (Observed)", + "2050-05-10": "Defender of the Fatherland Day (observed)", "2050-07-06": "Capital Day", "2050-08-28": "Kurban Ait (estimated)", "2050-08-30": "Constitution Day of the Republic of Kazakhstan", diff --git a/snapshots/countries/LV_COMMON.json b/snapshots/countries/LV_COMMON.json index 6f7ad5ddd..55735afc6 100644 --- a/snapshots/countries/LV_COMMON.json +++ b/snapshots/countries/LV_COMMON.json @@ -218,7 +218,7 @@ "2007-06-23": "Midsummer Eve", "2007-06-24": "Midsummer Day", "2007-11-18": "Republic of Latvia Proclamation Day", - "2007-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2007-11-19": "Republic of Latvia Proclamation Day (observed)", "2007-12-24": "Christmas Eve", "2007-12-25": "Christmas Day", "2007-12-26": "Second Day of Christmas", @@ -229,7 +229,7 @@ "2008-03-24": "Easter Monday", "2008-05-01": "Labor Day", "2008-05-04": "Restoration of Independence Day", - "2008-05-05": "Restoration of Independence Day (Observed)", + "2008-05-05": "Restoration of Independence Day (observed)", "2008-05-11": "Mother's Day", "2008-06-23": "Midsummer Eve", "2008-06-24": "Midsummer Day", @@ -290,7 +290,7 @@ "2012-06-23": "Midsummer Eve", "2012-06-24": "Midsummer Day", "2012-11-18": "Republic of Latvia Proclamation Day", - "2012-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2012-11-19": "Republic of Latvia Proclamation Day (observed)", "2012-12-24": "Christmas Eve", "2012-12-25": "Christmas Day", "2012-12-26": "Second Day of Christmas", @@ -301,7 +301,7 @@ "2013-04-01": "Easter Monday", "2013-05-01": "Labor Day", "2013-05-04": "Restoration of Independence Day", - "2013-05-06": "Restoration of Independence Day (Observed)", + "2013-05-06": "Restoration of Independence Day (observed)", "2013-05-12": "Mother's Day", "2013-06-23": "Midsummer Eve", "2013-06-24": "Midsummer Day", @@ -316,7 +316,7 @@ "2014-04-21": "Easter Monday", "2014-05-01": "Labor Day", "2014-05-04": "Restoration of Independence Day", - "2014-05-05": "Restoration of Independence Day (Observed)", + "2014-05-05": "Restoration of Independence Day (observed)", "2014-05-11": "Mother's Day", "2014-06-23": "Midsummer Eve", "2014-06-24": "Midsummer Day", @@ -363,7 +363,7 @@ "2017-06-23": "Midsummer Eve", "2017-06-24": "Midsummer Day", "2017-11-18": "Republic of Latvia Proclamation Day", - "2017-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2017-11-20": "Republic of Latvia Proclamation Day (observed)", "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2017-12-26": "Second Day of Christmas", @@ -380,7 +380,7 @@ "2018-07-09": "General Latvian Song and Dance Festival closing day", "2018-09-24": "Day of His Holiness Pope Francis' pastoral visit to Latvia", "2018-11-18": "Republic of Latvia Proclamation Day", - "2018-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2018-11-19": "Republic of Latvia Proclamation Day (observed)", "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", "2018-12-26": "Second Day of Christmas", @@ -391,7 +391,7 @@ "2019-04-22": "Easter Monday", "2019-05-01": "Labor Day", "2019-05-04": "Restoration of Independence Day", - "2019-05-06": "Restoration of Independence Day (Observed)", + "2019-05-06": "Restoration of Independence Day (observed)", "2019-05-12": "Mother's Day", "2019-06-23": "Midsummer Eve", "2019-06-24": "Midsummer Day", @@ -454,7 +454,7 @@ "2023-06-24": "Midsummer Day", "2023-07-10": "General Latvian Song and Dance Festival closing day", "2023-11-18": "Republic of Latvia Proclamation Day", - "2023-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2023-11-20": "Republic of Latvia Proclamation Day (observed)", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2023-12-26": "Second Day of Christmas", @@ -465,7 +465,7 @@ "2024-04-01": "Easter Monday", "2024-05-01": "Labor Day", "2024-05-04": "Restoration of Independence Day", - "2024-05-06": "Restoration of Independence Day (Observed)", + "2024-05-06": "Restoration of Independence Day (observed)", "2024-05-12": "Mother's Day", "2024-06-23": "Midsummer Eve", "2024-06-24": "Midsummer Day", @@ -480,7 +480,7 @@ "2025-04-21": "Easter Monday", "2025-05-01": "Labor Day", "2025-05-04": "Restoration of Independence Day", - "2025-05-05": "Restoration of Independence Day (Observed)", + "2025-05-05": "Restoration of Independence Day (observed)", "2025-05-11": "Mother's Day", "2025-06-23": "Midsummer Eve", "2025-06-24": "Midsummer Day", @@ -527,7 +527,7 @@ "2028-06-23": "Midsummer Eve", "2028-06-24": "Midsummer Day", "2028-11-18": "Republic of Latvia Proclamation Day", - "2028-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2028-11-20": "Republic of Latvia Proclamation Day (observed)", "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2028-12-26": "Second Day of Christmas", @@ -542,7 +542,7 @@ "2029-06-23": "Midsummer Eve", "2029-06-24": "Midsummer Day", "2029-11-18": "Republic of Latvia Proclamation Day", - "2029-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2029-11-19": "Republic of Latvia Proclamation Day (observed)", "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", "2029-12-26": "Second Day of Christmas", @@ -553,7 +553,7 @@ "2030-04-22": "Easter Monday", "2030-05-01": "Labor Day", "2030-05-04": "Restoration of Independence Day", - "2030-05-06": "Restoration of Independence Day (Observed)", + "2030-05-06": "Restoration of Independence Day (observed)", "2030-05-12": "Mother's Day", "2030-06-23": "Midsummer Eve", "2030-06-24": "Midsummer Day", @@ -568,7 +568,7 @@ "2031-04-14": "Easter Monday", "2031-05-01": "Labor Day", "2031-05-04": "Restoration of Independence Day", - "2031-05-05": "Restoration of Independence Day (Observed)", + "2031-05-05": "Restoration of Independence Day (observed)", "2031-05-11": "Mother's Day", "2031-06-23": "Midsummer Eve", "2031-06-24": "Midsummer Day", @@ -615,7 +615,7 @@ "2034-06-23": "Midsummer Eve", "2034-06-24": "Midsummer Day", "2034-11-18": "Republic of Latvia Proclamation Day", - "2034-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2034-11-20": "Republic of Latvia Proclamation Day (observed)", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2034-12-26": "Second Day of Christmas", @@ -630,7 +630,7 @@ "2035-06-23": "Midsummer Eve", "2035-06-24": "Midsummer Day", "2035-11-18": "Republic of Latvia Proclamation Day", - "2035-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2035-11-19": "Republic of Latvia Proclamation Day (observed)", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", "2035-12-26": "Second Day of Christmas", @@ -641,7 +641,7 @@ "2036-04-14": "Easter Monday", "2036-05-01": "Labor Day", "2036-05-04": "Restoration of Independence Day", - "2036-05-05": "Restoration of Independence Day (Observed)", + "2036-05-05": "Restoration of Independence Day (observed)", "2036-05-11": "Mother's Day", "2036-06-23": "Midsummer Eve", "2036-06-24": "Midsummer Day", @@ -702,7 +702,7 @@ "2040-06-23": "Midsummer Eve", "2040-06-24": "Midsummer Day", "2040-11-18": "Republic of Latvia Proclamation Day", - "2040-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2040-11-19": "Republic of Latvia Proclamation Day (observed)", "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", "2040-12-26": "Second Day of Christmas", @@ -713,7 +713,7 @@ "2041-04-22": "Easter Monday", "2041-05-01": "Labor Day", "2041-05-04": "Restoration of Independence Day", - "2041-05-06": "Restoration of Independence Day (Observed)", + "2041-05-06": "Restoration of Independence Day (observed)", "2041-05-12": "Mother's Day", "2041-06-23": "Midsummer Eve", "2041-06-24": "Midsummer Day", @@ -728,7 +728,7 @@ "2042-04-07": "Easter Monday", "2042-05-01": "Labor Day", "2042-05-04": "Restoration of Independence Day", - "2042-05-05": "Restoration of Independence Day (Observed)", + "2042-05-05": "Restoration of Independence Day (observed)", "2042-05-11": "Mother's Day", "2042-06-23": "Midsummer Eve", "2042-06-24": "Midsummer Day", @@ -775,7 +775,7 @@ "2045-06-23": "Midsummer Eve", "2045-06-24": "Midsummer Day", "2045-11-18": "Republic of Latvia Proclamation Day", - "2045-11-20": "Republic of Latvia Proclamation Day (Observed)", + "2045-11-20": "Republic of Latvia Proclamation Day (observed)", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2045-12-26": "Second Day of Christmas", @@ -790,7 +790,7 @@ "2046-06-23": "Midsummer Eve", "2046-06-24": "Midsummer Day", "2046-11-18": "Republic of Latvia Proclamation Day", - "2046-11-19": "Republic of Latvia Proclamation Day (Observed)", + "2046-11-19": "Republic of Latvia Proclamation Day (observed)", "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", "2046-12-26": "Second Day of Christmas", @@ -801,7 +801,7 @@ "2047-04-15": "Easter Monday", "2047-05-01": "Labor Day", "2047-05-04": "Restoration of Independence Day", - "2047-05-06": "Restoration of Independence Day (Observed)", + "2047-05-06": "Restoration of Independence Day (observed)", "2047-05-12": "Mother's Day", "2047-06-23": "Midsummer Eve", "2047-06-24": "Midsummer Day", diff --git a/snapshots/countries/MC_COMMON.json b/snapshots/countries/MC_COMMON.json index 55a55bef8..bf693dbf5 100644 --- a/snapshots/countries/MC_COMMON.json +++ b/snapshots/countries/MC_COMMON.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-27": "Saint Devote's Day", "1950-04-10": "Easter Monday", "1950-05-01": "Labour Day", @@ -10,7 +10,7 @@ "1950-08-15": "Assumption's Day", "1950-11-01": "All Saints' Day", "1950-11-19": "Prince's Day", - "1950-11-20": "Prince's Day (Observed)", + "1950-11-20": "Prince's Day (observed)", "1950-12-08": "Immaculate Conception's Day", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", @@ -46,7 +46,7 @@ "1953-06-04": "Corpus Christi", "1953-08-15": "Assumption's Day", "1953-11-01": "All Saints' Day", - "1953-11-02": "All Saints' Day (Observed)", + "1953-11-02": "All Saints' Day (observed)", "1953-11-19": "Prince's Day", "1953-12-08": "Immaculate Conception's Day", "1953-12-25": "Christmas Day", @@ -58,7 +58,7 @@ "1954-06-07": "Whit Monday", "1954-06-17": "Corpus Christi", "1954-08-15": "Assumption's Day", - "1954-08-16": "Assumption's Day (Observed)", + "1954-08-16": "Assumption's Day (observed)", "1954-11-01": "All Saints' Day", "1954-11-19": "Prince's Day", "1954-12-08": "Immaculate Conception's Day", @@ -67,7 +67,7 @@ "1955-01-27": "Saint Devote's Day", "1955-04-11": "Easter Monday", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (Observed)", + "1955-05-02": "Labour Day (observed)", "1955-05-19": "Ascension's Day", "1955-05-30": "Whit Monday", "1955-06-09": "Corpus Christi", @@ -76,9 +76,9 @@ "1955-11-19": "Prince's Day", "1955-12-08": "Immaculate Conception's Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-27": "Saint Devote's Day", "1956-04-02": "Easter Monday", "1956-05-01": "Labour Day", @@ -123,7 +123,7 @@ "1959-05-28": "Corpus Christi", "1959-08-15": "Assumption's Day", "1959-11-01": "All Saints' Day", - "1959-11-02": "All Saints' Day (Observed)", + "1959-11-02": "All Saints' Day (observed)", "1959-11-19": "Prince's Day", "1959-12-08": "Immaculate Conception's Day", "1959-12-25": "Christmas Day", @@ -131,7 +131,7 @@ "1960-01-27": "Saint Devote's Day", "1960-04-18": "Easter Monday", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (Observed)", + "1960-05-02": "Labour Day (observed)", "1960-05-26": "Ascension's Day", "1960-06-06": "Whit Monday", "1960-06-16": "Corpus Christi", @@ -140,9 +140,9 @@ "1960-11-19": "Prince's Day", "1960-12-08": "Immaculate Conception's Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-27": "Saint Devote's Day", "1961-04-03": "Easter Monday", "1961-05-01": "Labour Day", @@ -152,7 +152,7 @@ "1961-08-15": "Assumption's Day", "1961-11-01": "All Saints' Day", "1961-11-19": "Prince's Day", - "1961-11-20": "Prince's Day (Observed)", + "1961-11-20": "Prince's Day (observed)", "1961-12-08": "Immaculate Conception's Day", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", @@ -188,7 +188,7 @@ "1964-05-28": "Corpus Christi", "1964-08-15": "Assumption's Day", "1964-11-01": "All Saints' Day", - "1964-11-02": "All Saints' Day (Observed)", + "1964-11-02": "All Saints' Day (observed)", "1964-11-19": "Prince's Day", "1964-12-08": "Immaculate Conception's Day", "1964-12-25": "Christmas Day", @@ -200,7 +200,7 @@ "1965-06-07": "Whit Monday", "1965-06-17": "Corpus Christi", "1965-08-15": "Assumption's Day", - "1965-08-16": "Assumption's Day (Observed)", + "1965-08-16": "Assumption's Day (observed)", "1965-11-01": "All Saints' Day", "1965-11-19": "Prince's Day", "1965-12-08": "Immaculate Conception's Day", @@ -209,7 +209,7 @@ "1966-01-27": "Saint Devote's Day", "1966-04-11": "Easter Monday", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (Observed)", + "1966-05-02": "Labour Day (observed)", "1966-05-19": "Ascension's Day", "1966-05-30": "Whit Monday", "1966-06-09": "Corpus Christi", @@ -218,9 +218,9 @@ "1966-11-19": "Prince's Day", "1966-12-08": "Immaculate Conception's Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-27": "Saint Devote's Day", "1967-03-27": "Easter Monday", "1967-05-01": "Labour Day", @@ -230,7 +230,7 @@ "1967-08-15": "Assumption's Day", "1967-11-01": "All Saints' Day", "1967-11-19": "Prince's Day", - "1967-11-20": "Prince's Day (Observed)", + "1967-11-20": "Prince's Day (observed)", "1967-12-08": "Immaculate Conception's Day", "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", @@ -266,7 +266,7 @@ "1970-05-28": "Corpus Christi", "1970-08-15": "Assumption's Day", "1970-11-01": "All Saints' Day", - "1970-11-02": "All Saints' Day (Observed)", + "1970-11-02": "All Saints' Day (observed)", "1970-11-19": "Prince's Day", "1970-12-08": "Immaculate Conception's Day", "1970-12-25": "Christmas Day", @@ -278,7 +278,7 @@ "1971-05-31": "Whit Monday", "1971-06-10": "Corpus Christi", "1971-08-15": "Assumption's Day", - "1971-08-16": "Assumption's Day (Observed)", + "1971-08-16": "Assumption's Day (observed)", "1971-11-01": "All Saints' Day", "1971-11-19": "Prince's Day", "1971-12-08": "Immaculate Conception's Day", @@ -293,7 +293,7 @@ "1972-08-15": "Assumption's Day", "1972-11-01": "All Saints' Day", "1972-11-19": "Prince's Day", - "1972-11-20": "Prince's Day (Observed)", + "1972-11-20": "Prince's Day (observed)", "1972-12-08": "Immaculate Conception's Day", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1976-06-07": "Whit Monday", "1976-06-17": "Corpus Christi", "1976-08-15": "Assumption's Day", - "1976-08-16": "Assumption's Day (Observed)", + "1976-08-16": "Assumption's Day (observed)", "1976-11-01": "All Saints' Day", "1976-11-19": "Prince's Day", "1976-12-08": "Immaculate Conception's Day", @@ -349,7 +349,7 @@ "1977-01-27": "Saint Devote's Day", "1977-04-11": "Easter Monday", "1977-05-01": "Labour Day", - "1977-05-02": "Labour Day (Observed)", + "1977-05-02": "Labour Day (observed)", "1977-05-19": "Ascension's Day", "1977-05-30": "Whit Monday", "1977-06-09": "Corpus Christi", @@ -358,9 +358,9 @@ "1977-11-19": "Prince's Day", "1977-12-08": "Immaculate Conception's Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-27": "Saint Devote's Day", "1978-03-27": "Easter Monday", "1978-05-01": "Labour Day", @@ -370,7 +370,7 @@ "1978-08-15": "Assumption's Day", "1978-11-01": "All Saints' Day", "1978-11-19": "Prince's Day", - "1978-11-20": "Prince's Day (Observed)", + "1978-11-20": "Prince's Day (observed)", "1978-12-08": "Immaculate Conception's Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -406,7 +406,7 @@ "1981-06-18": "Corpus Christi", "1981-08-15": "Assumption's Day", "1981-11-01": "All Saints' Day", - "1981-11-02": "All Saints' Day (Observed)", + "1981-11-02": "All Saints' Day (observed)", "1981-11-19": "Prince's Day", "1981-12-08": "Immaculate Conception's Day", "1981-12-25": "Christmas Day", @@ -418,7 +418,7 @@ "1982-05-31": "Whit Monday", "1982-06-10": "Corpus Christi", "1982-08-15": "Assumption's Day", - "1982-08-16": "Assumption's Day (Observed)", + "1982-08-16": "Assumption's Day (observed)", "1982-11-01": "All Saints' Day", "1982-11-19": "Prince's Day", "1982-12-08": "Immaculate Conception's Day", @@ -427,7 +427,7 @@ "1983-01-27": "Saint Devote's Day", "1983-04-04": "Easter Monday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-05-12": "Ascension's Day", "1983-05-23": "Whit Monday", "1983-06-02": "Corpus Christi", @@ -436,9 +436,9 @@ "1983-11-19": "Prince's Day", "1983-12-08": "Immaculate Conception's Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-27": "Saint Devote's Day", "1984-04-23": "Easter Monday", "1984-05-01": "Labour Day", @@ -483,7 +483,7 @@ "1987-06-18": "Corpus Christi", "1987-08-15": "Assumption's Day", "1987-11-01": "All Saints' Day", - "1987-11-02": "All Saints' Day (Observed)", + "1987-11-02": "All Saints' Day (observed)", "1987-11-19": "Prince's Day", "1987-12-08": "Immaculate Conception's Day", "1987-12-25": "Christmas Day", @@ -491,7 +491,7 @@ "1988-01-27": "Saint Devote's Day", "1988-04-04": "Easter Monday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-05-12": "Ascension's Day", "1988-05-23": "Whit Monday", "1988-06-02": "Corpus Christi", @@ -500,9 +500,9 @@ "1988-11-19": "Prince's Day", "1988-12-08": "Immaculate Conception's Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-27": "Saint Devote's Day", "1989-03-27": "Easter Monday", "1989-05-01": "Labour Day", @@ -512,7 +512,7 @@ "1989-08-15": "Assumption's Day", "1989-11-01": "All Saints' Day", "1989-11-19": "Prince's Day", - "1989-11-20": "Prince's Day (Observed)", + "1989-11-20": "Prince's Day (observed)", "1989-12-08": "Immaculate Conception's Day", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -548,7 +548,7 @@ "1992-06-18": "Corpus Christi", "1992-08-15": "Assumption's Day", "1992-11-01": "All Saints' Day", - "1992-11-02": "All Saints' Day (Observed)", + "1992-11-02": "All Saints' Day (observed)", "1992-11-19": "Prince's Day", "1992-12-08": "Immaculate Conception's Day", "1992-12-25": "Christmas Day", @@ -560,7 +560,7 @@ "1993-05-31": "Whit Monday", "1993-06-10": "Corpus Christi", "1993-08-15": "Assumption's Day", - "1993-08-16": "Assumption's Day (Observed)", + "1993-08-16": "Assumption's Day (observed)", "1993-11-01": "All Saints' Day", "1993-11-19": "Prince's Day", "1993-12-08": "Immaculate Conception's Day", @@ -569,7 +569,7 @@ "1994-01-27": "Saint Devote's Day", "1994-04-04": "Easter Monday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-05-12": "Ascension's Day", "1994-05-23": "Whit Monday", "1994-06-02": "Corpus Christi", @@ -578,9 +578,9 @@ "1994-11-19": "Prince's Day", "1994-12-08": "Immaculate Conception's Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-27": "Saint Devote's Day", "1995-04-17": "Easter Monday", "1995-05-01": "Labour Day", @@ -590,7 +590,7 @@ "1995-08-15": "Assumption's Day", "1995-11-01": "All Saints' Day", "1995-11-19": "Prince's Day", - "1995-11-20": "Prince's Day (Observed)", + "1995-11-20": "Prince's Day (observed)", "1995-12-08": "Immaculate Conception's Day", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -626,7 +626,7 @@ "1998-06-11": "Corpus Christi", "1998-08-15": "Assumption's Day", "1998-11-01": "All Saints' Day", - "1998-11-02": "All Saints' Day (Observed)", + "1998-11-02": "All Saints' Day (observed)", "1998-11-19": "Prince's Day", "1998-12-08": "Immaculate Conception's Day", "1998-12-25": "Christmas Day", @@ -638,7 +638,7 @@ "1999-05-24": "Whit Monday", "1999-06-03": "Corpus Christi", "1999-08-15": "Assumption's Day", - "1999-08-16": "Assumption's Day (Observed)", + "1999-08-16": "Assumption's Day (observed)", "1999-11-01": "All Saints' Day", "1999-11-19": "Prince's Day", "1999-12-08": "Immaculate Conception's Day", @@ -653,7 +653,7 @@ "2000-08-15": "Assumption's Day", "2000-11-01": "All Saints' Day", "2000-11-19": "Prince's Day", - "2000-11-20": "Prince's Day (Observed)", + "2000-11-20": "Prince's Day (observed)", "2000-12-08": "Immaculate Conception's Day", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -700,7 +700,7 @@ "2004-05-31": "Whit Monday", "2004-06-10": "Corpus Christi", "2004-08-15": "Assumption's Day", - "2004-08-16": "Assumption's Day (Observed)", + "2004-08-16": "Assumption's Day (observed)", "2004-11-01": "All Saints' Day", "2004-11-19": "Prince's Day", "2004-12-08": "Immaculate Conception's Day", @@ -709,7 +709,7 @@ "2005-01-27": "Saint Devote's Day", "2005-03-28": "Easter Monday", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-05-05": "Ascension's Day", "2005-05-16": "Whit Monday", "2005-05-26": "Corpus Christi", @@ -718,9 +718,9 @@ "2005-11-19": "Prince's Day", "2005-12-08": "Immaculate Conception's Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-27": "Saint Devote's Day", "2006-04-17": "Easter Monday", "2006-05-01": "Labour Day", @@ -730,7 +730,7 @@ "2006-08-15": "Assumption's Day", "2006-11-01": "All Saints' Day", "2006-11-19": "Prince's Day", - "2006-11-20": "Prince's Day (Observed)", + "2006-11-20": "Prince's Day (observed)", "2006-12-08": "Immaculate Conception's Day", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -765,7 +765,7 @@ "2009-06-11": "Corpus Christi", "2009-08-15": "Assumption's Day", "2009-11-01": "All Saints' Day", - "2009-11-02": "All Saints' Day (Observed)", + "2009-11-02": "All Saints' Day (observed)", "2009-11-19": "Prince's Day", "2009-12-08": "Immaculate Conception's Day", "2009-12-25": "Christmas Day", @@ -777,7 +777,7 @@ "2010-05-24": "Whit Monday", "2010-06-03": "Corpus Christi", "2010-08-15": "Assumption's Day", - "2010-08-16": "Assumption's Day (Observed)", + "2010-08-16": "Assumption's Day (observed)", "2010-11-01": "All Saints' Day", "2010-11-19": "Prince's Day", "2010-12-08": "Immaculate Conception's Day", @@ -786,7 +786,7 @@ "2011-01-27": "Saint Devote's Day", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-06-02": "Ascension's Day", "2011-06-13": "Whit Monday", "2011-06-23": "Corpus Christi", @@ -795,9 +795,9 @@ "2011-11-19": "Prince's Day", "2011-12-08": "Immaculate Conception's Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-27": "Saint Devote's Day", "2012-04-09": "Easter Monday", "2012-05-01": "Labour Day", @@ -843,7 +843,7 @@ "2015-06-04": "Corpus Christi", "2015-08-15": "Assumption's Day", "2015-11-01": "All Saints' Day", - "2015-11-02": "All Saints' Day (Observed)", + "2015-11-02": "All Saints' Day (observed)", "2015-11-19": "Prince's Day", "2015-12-08": "Immaculate Conception's Day", "2015-12-25": "Christmas Day", @@ -851,7 +851,7 @@ "2016-01-27": "Saint Devote's Day", "2016-03-28": "Easter Monday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-05-05": "Ascension's Day", "2016-05-16": "Whit Monday", "2016-05-26": "Corpus Christi", @@ -860,9 +860,9 @@ "2016-11-19": "Prince's Day", "2016-12-08": "Immaculate Conception's Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-27": "Saint Devote's Day", "2017-04-17": "Easter Monday", "2017-05-01": "Labour Day", @@ -872,7 +872,7 @@ "2017-08-15": "Assumption's Day", "2017-11-01": "All Saints' Day", "2017-11-19": "Prince's Day", - "2017-11-20": "Prince's Day (Observed)", + "2017-11-20": "Prince's Day (observed)", "2017-12-08": "Immaculate Conception's Day", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -908,7 +908,7 @@ "2020-06-11": "Corpus Christi", "2020-08-15": "Assumption's Day", "2020-11-01": "All Saints' Day", - "2020-11-02": "All Saints' Day (Observed)", + "2020-11-02": "All Saints' Day (observed)", "2020-11-19": "Prince's Day", "2020-12-08": "Immaculate Conception's Day", "2020-12-25": "Christmas Day", @@ -920,7 +920,7 @@ "2021-05-24": "Whit Monday", "2021-06-03": "Corpus Christi", "2021-08-15": "Assumption's Day", - "2021-08-16": "Assumption's Day (Observed)", + "2021-08-16": "Assumption's Day (observed)", "2021-11-01": "All Saints' Day", "2021-11-19": "Prince's Day", "2021-12-08": "Immaculate Conception's Day", @@ -929,7 +929,7 @@ "2022-01-27": "Saint Devote's Day", "2022-04-18": "Easter Monday", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-05-26": "Ascension's Day", "2022-06-06": "Whit Monday", "2022-06-16": "Corpus Christi", @@ -938,9 +938,9 @@ "2022-11-19": "Prince's Day", "2022-12-08": "Immaculate Conception's Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-27": "Saint Devote's Day", "2023-04-10": "Easter Monday", "2023-05-01": "Labour Day", @@ -950,7 +950,7 @@ "2023-08-15": "Assumption's Day", "2023-11-01": "All Saints' Day", "2023-11-19": "Prince's Day", - "2023-11-20": "Prince's Day (Observed)", + "2023-11-20": "Prince's Day (observed)", "2023-12-08": "Immaculate Conception's Day", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", @@ -986,7 +986,7 @@ "2026-06-04": "Corpus Christi", "2026-08-15": "Assumption's Day", "2026-11-01": "All Saints' Day", - "2026-11-02": "All Saints' Day (Observed)", + "2026-11-02": "All Saints' Day (observed)", "2026-11-19": "Prince's Day", "2026-12-08": "Immaculate Conception's Day", "2026-12-25": "Christmas Day", @@ -998,7 +998,7 @@ "2027-05-17": "Whit Monday", "2027-05-27": "Corpus Christi", "2027-08-15": "Assumption's Day", - "2027-08-16": "Assumption's Day (Observed)", + "2027-08-16": "Assumption's Day (observed)", "2027-11-01": "All Saints' Day", "2027-11-19": "Prince's Day", "2027-12-08": "Immaculate Conception's Day", @@ -1013,7 +1013,7 @@ "2028-08-15": "Assumption's Day", "2028-11-01": "All Saints' Day", "2028-11-19": "Prince's Day", - "2028-11-20": "Prince's Day (Observed)", + "2028-11-20": "Prince's Day (observed)", "2028-12-08": "Immaculate Conception's Day", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", @@ -1060,7 +1060,7 @@ "2032-05-17": "Whit Monday", "2032-05-27": "Corpus Christi", "2032-08-15": "Assumption's Day", - "2032-08-16": "Assumption's Day (Observed)", + "2032-08-16": "Assumption's Day (observed)", "2032-11-01": "All Saints' Day", "2032-11-19": "Prince's Day", "2032-12-08": "Immaculate Conception's Day", @@ -1069,7 +1069,7 @@ "2033-01-27": "Saint Devote's Day", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-05-26": "Ascension's Day", "2033-06-06": "Whit Monday", "2033-06-16": "Corpus Christi", @@ -1078,9 +1078,9 @@ "2033-11-19": "Prince's Day", "2033-12-08": "Immaculate Conception's Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-27": "Saint Devote's Day", "2034-04-10": "Easter Monday", "2034-05-01": "Labour Day", @@ -1090,7 +1090,7 @@ "2034-08-15": "Assumption's Day", "2034-11-01": "All Saints' Day", "2034-11-19": "Prince's Day", - "2034-11-20": "Prince's Day (Observed)", + "2034-11-20": "Prince's Day (observed)", "2034-12-08": "Immaculate Conception's Day", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", @@ -1126,7 +1126,7 @@ "2037-06-04": "Corpus Christi", "2037-08-15": "Assumption's Day", "2037-11-01": "All Saints' Day", - "2037-11-02": "All Saints' Day (Observed)", + "2037-11-02": "All Saints' Day (observed)", "2037-11-19": "Prince's Day", "2037-12-08": "Immaculate Conception's Day", "2037-12-25": "Christmas Day", @@ -1138,7 +1138,7 @@ "2038-06-14": "Whit Monday", "2038-06-24": "Corpus Christi", "2038-08-15": "Assumption's Day", - "2038-08-16": "Assumption's Day (Observed)", + "2038-08-16": "Assumption's Day (observed)", "2038-11-01": "All Saints' Day", "2038-11-19": "Prince's Day", "2038-12-08": "Immaculate Conception's Day", @@ -1147,7 +1147,7 @@ "2039-01-27": "Saint Devote's Day", "2039-04-11": "Easter Monday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-05-19": "Ascension's Day", "2039-05-30": "Whit Monday", "2039-06-09": "Corpus Christi", @@ -1156,9 +1156,9 @@ "2039-11-19": "Prince's Day", "2039-12-08": "Immaculate Conception's Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-27": "Saint Devote's Day", "2040-04-02": "Easter Monday", "2040-05-01": "Labour Day", @@ -1203,7 +1203,7 @@ "2043-05-28": "Corpus Christi", "2043-08-15": "Assumption's Day", "2043-11-01": "All Saints' Day", - "2043-11-02": "All Saints' Day (Observed)", + "2043-11-02": "All Saints' Day (observed)", "2043-11-19": "Prince's Day", "2043-12-08": "Immaculate Conception's Day", "2043-12-25": "Christmas Day", @@ -1211,7 +1211,7 @@ "2044-01-27": "Saint Devote's Day", "2044-04-18": "Easter Monday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-05-26": "Ascension's Day", "2044-06-06": "Whit Monday", "2044-06-16": "Corpus Christi", @@ -1220,9 +1220,9 @@ "2044-11-19": "Prince's Day", "2044-12-08": "Immaculate Conception's Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-27": "Saint Devote's Day", "2045-04-10": "Easter Monday", "2045-05-01": "Labour Day", @@ -1232,7 +1232,7 @@ "2045-08-15": "Assumption's Day", "2045-11-01": "All Saints' Day", "2045-11-19": "Prince's Day", - "2045-11-20": "Prince's Day (Observed)", + "2045-11-20": "Prince's Day (observed)", "2045-12-08": "Immaculate Conception's Day", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", @@ -1268,7 +1268,7 @@ "2048-06-04": "Corpus Christi", "2048-08-15": "Assumption's Day", "2048-11-01": "All Saints' Day", - "2048-11-02": "All Saints' Day (Observed)", + "2048-11-02": "All Saints' Day (observed)", "2048-11-19": "Prince's Day", "2048-12-08": "Immaculate Conception's Day", "2048-12-25": "Christmas Day", @@ -1280,7 +1280,7 @@ "2049-06-07": "Whit Monday", "2049-06-17": "Corpus Christi", "2049-08-15": "Assumption's Day", - "2049-08-16": "Assumption's Day (Observed)", + "2049-08-16": "Assumption's Day (observed)", "2049-11-01": "All Saints' Day", "2049-11-19": "Prince's Day", "2049-12-08": "Immaculate Conception's Day", @@ -1289,7 +1289,7 @@ "2050-01-27": "Saint Devote's Day", "2050-04-11": "Easter Monday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-05-19": "Ascension's Day", "2050-05-30": "Whit Monday", "2050-06-09": "Corpus Christi", @@ -1298,5 +1298,5 @@ "2050-11-19": "Prince's Day", "2050-12-08": "Immaculate Conception's Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/ME_COMMON.json b/snapshots/countries/ME_COMMON.json index cd2990117..bcf0fe38e 100644 --- a/snapshots/countries/ME_COMMON.json +++ b/snapshots/countries/ME_COMMON.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-01-06": "Orthodox Christmas Eve", "1950-01-07": "Orthodox Christmas", "1950-04-07": "Orthodox Good Friday", @@ -11,7 +11,7 @@ "1950-05-02": "Labour Day", "1950-05-21": "Independence Day", "1950-05-22": "Independence Day", - "1950-05-23": "Independence Day (Observed)", + "1950-05-23": "Independence Day (observed)", "1950-07-13": "Statehood Day", "1950-07-14": "Statehood Day", "1951-01-01": "New Year's Day", @@ -40,7 +40,7 @@ "1952-05-22": "Independence Day", "1952-07-13": "Statehood Day", "1952-07-14": "Statehood Day", - "1952-07-15": "Statehood Day (Observed)", + "1952-07-15": "Statehood Day (observed)", "1953-01-01": "New Year's Day", "1953-01-02": "New Year's Day", "1953-01-06": "Orthodox Christmas Eve", @@ -63,14 +63,14 @@ "1954-04-26": "Orthodox Easter Monday", "1954-05-01": "Labour Day", "1954-05-02": "Labour Day", - "1954-05-03": "Labour Day (Observed)", + "1954-05-03": "Labour Day (observed)", "1954-05-21": "Independence Day", "1954-05-22": "Independence Day", "1954-07-13": "Statehood Day", "1954-07-14": "Statehood Day", "1955-01-01": "New Year's Day", "1955-01-02": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-06": "Orthodox Christmas Eve", "1955-01-07": "Orthodox Christmas", "1955-04-15": "Orthodox Good Friday", @@ -78,15 +78,15 @@ "1955-04-18": "Orthodox Easter Monday", "1955-05-01": "Labour Day", "1955-05-02": "Labour Day", - "1955-05-03": "Labour Day (Observed)", + "1955-05-03": "Labour Day (observed)", "1955-05-21": "Independence Day", "1955-05-22": "Independence Day", - "1955-05-23": "Independence Day (Observed)", + "1955-05-23": "Independence Day (observed)", "1955-07-13": "Statehood Day", "1955-07-14": "Statehood Day", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-01-06": "Orthodox Christmas Eve", "1956-01-07": "Orthodox Christmas", "1956-05-01": "Labour Day", @@ -111,7 +111,7 @@ "1957-05-22": "Independence Day", "1957-07-13": "Statehood Day", "1957-07-14": "Statehood Day", - "1957-07-15": "Statehood Day (Observed)", + "1957-07-15": "Statehood Day (observed)", "1958-01-01": "New Year's Day", "1958-01-02": "New Year's Day", "1958-01-06": "Orthodox Christmas Eve", @@ -125,7 +125,7 @@ "1958-05-22": "Independence Day", "1958-07-13": "Statehood Day", "1958-07-14": "Statehood Day", - "1958-07-15": "Statehood Day (Observed)", + "1958-07-15": "Statehood Day (observed)", "1959-01-01": "New Year's Day", "1959-01-02": "New Year's Day", "1959-01-06": "Orthodox Christmas Eve", @@ -147,15 +147,15 @@ "1960-04-18": "Orthodox Easter Monday", "1960-05-01": "Labour Day", "1960-05-02": "Labour Day", - "1960-05-03": "Labour Day (Observed)", + "1960-05-03": "Labour Day (observed)", "1960-05-21": "Independence Day", "1960-05-22": "Independence Day", - "1960-05-23": "Independence Day (Observed)", + "1960-05-23": "Independence Day (observed)", "1960-07-13": "Statehood Day", "1960-07-14": "Statehood Day", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-01-06": "Orthodox Christmas Eve", "1961-01-07": "Orthodox Christmas", "1961-04-07": "Orthodox Good Friday", @@ -165,7 +165,7 @@ "1961-05-02": "Labour Day", "1961-05-21": "Independence Day", "1961-05-22": "Independence Day", - "1961-05-23": "Independence Day (Observed)", + "1961-05-23": "Independence Day (observed)", "1961-07-13": "Statehood Day", "1961-07-14": "Statehood Day", "1962-01-01": "New Year's Day", @@ -194,7 +194,7 @@ "1963-05-22": "Independence Day", "1963-07-13": "Statehood Day", "1963-07-14": "Statehood Day", - "1963-07-15": "Statehood Day (Observed)", + "1963-07-15": "Statehood Day (observed)", "1964-01-01": "New Year's Day", "1964-01-02": "New Year's Day", "1964-01-06": "Orthodox Christmas Eve", @@ -216,14 +216,14 @@ "1965-04-26": "Orthodox Easter Monday", "1965-05-01": "Labour Day", "1965-05-02": "Labour Day", - "1965-05-03": "Labour Day (Observed)", + "1965-05-03": "Labour Day (observed)", "1965-05-21": "Independence Day", "1965-05-22": "Independence Day", "1965-07-13": "Statehood Day", "1965-07-14": "Statehood Day", "1966-01-01": "New Year's Day", "1966-01-02": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-06": "Orthodox Christmas Eve", "1966-01-07": "Orthodox Christmas", "1966-04-08": "Orthodox Good Friday", @@ -231,15 +231,15 @@ "1966-04-11": "Orthodox Easter Monday", "1966-05-01": "Labour Day", "1966-05-02": "Labour Day", - "1966-05-03": "Labour Day (Observed)", + "1966-05-03": "Labour Day (observed)", "1966-05-21": "Independence Day", "1966-05-22": "Independence Day", - "1966-05-23": "Independence Day (Observed)", + "1966-05-23": "Independence Day (observed)", "1966-07-13": "Statehood Day", "1966-07-14": "Statehood Day", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-01-06": "Orthodox Christmas Eve", "1967-01-07": "Orthodox Christmas", "1967-04-28": "Orthodox Good Friday", @@ -248,7 +248,7 @@ "1967-05-02": "Labour Day", "1967-05-21": "Independence Day", "1967-05-22": "Independence Day", - "1967-05-23": "Independence Day (Observed)", + "1967-05-23": "Independence Day (observed)", "1967-07-13": "Statehood Day", "1967-07-14": "Statehood Day", "1968-01-01": "New Year's Day", @@ -264,7 +264,7 @@ "1968-05-22": "Independence Day", "1968-07-13": "Statehood Day", "1968-07-14": "Statehood Day", - "1968-07-15": "Statehood Day (Observed)", + "1968-07-15": "Statehood Day (observed)", "1969-01-01": "New Year's Day", "1969-01-02": "New Year's Day", "1969-01-06": "Orthodox Christmas Eve", @@ -278,7 +278,7 @@ "1969-05-22": "Independence Day", "1969-07-13": "Statehood Day", "1969-07-14": "Statehood Day", - "1969-07-15": "Statehood Day (Observed)", + "1969-07-15": "Statehood Day (observed)", "1970-01-01": "New Year's Day", "1970-01-02": "New Year's Day", "1970-01-06": "Orthodox Christmas Eve", @@ -301,14 +301,14 @@ "1971-04-19": "Orthodox Easter Monday", "1971-05-01": "Labour Day", "1971-05-02": "Labour Day", - "1971-05-03": "Labour Day (Observed)", + "1971-05-03": "Labour Day (observed)", "1971-05-21": "Independence Day", "1971-05-22": "Independence Day", "1971-07-13": "Statehood Day", "1971-07-14": "Statehood Day", "1972-01-01": "New Year's Day", "1972-01-02": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-06": "Orthodox Christmas Eve", "1972-01-07": "Orthodox Christmas", "1972-04-07": "Orthodox Good Friday", @@ -318,7 +318,7 @@ "1972-05-02": "Labour Day", "1972-05-21": "Independence Day", "1972-05-22": "Independence Day", - "1972-05-23": "Independence Day (Observed)", + "1972-05-23": "Independence Day (observed)", "1972-07-13": "Statehood Day", "1972-07-14": "Statehood Day", "1973-01-01": "New Year's Day", @@ -347,7 +347,7 @@ "1974-05-22": "Independence Day", "1974-07-13": "Statehood Day", "1974-07-14": "Statehood Day", - "1974-07-15": "Statehood Day (Observed)", + "1974-07-15": "Statehood Day (observed)", "1975-01-01": "New Year's Day", "1975-01-02": "New Year's Day", "1975-01-06": "Orthodox Christmas Eve", @@ -360,7 +360,7 @@ "1975-05-22": "Independence Day", "1975-07-13": "Statehood Day", "1975-07-14": "Statehood Day", - "1975-07-15": "Statehood Day (Observed)", + "1975-07-15": "Statehood Day (observed)", "1976-01-01": "New Year's Day", "1976-01-02": "New Year's Day", "1976-01-06": "Orthodox Christmas Eve", @@ -370,14 +370,14 @@ "1976-04-26": "Orthodox Easter Monday", "1976-05-01": "Labour Day", "1976-05-02": "Labour Day", - "1976-05-03": "Labour Day (Observed)", + "1976-05-03": "Labour Day (observed)", "1976-05-21": "Independence Day", "1976-05-22": "Independence Day", "1976-07-13": "Statehood Day", "1976-07-14": "Statehood Day", "1977-01-01": "New Year's Day", "1977-01-02": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-06": "Orthodox Christmas Eve", "1977-01-07": "Orthodox Christmas", "1977-04-08": "Orthodox Good Friday", @@ -385,15 +385,15 @@ "1977-04-11": "Orthodox Easter Monday", "1977-05-01": "Labour Day", "1977-05-02": "Labour Day", - "1977-05-03": "Labour Day (Observed)", + "1977-05-03": "Labour Day (observed)", "1977-05-21": "Independence Day", "1977-05-22": "Independence Day", - "1977-05-23": "Independence Day (Observed)", + "1977-05-23": "Independence Day (observed)", "1977-07-13": "Statehood Day", "1977-07-14": "Statehood Day", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-01-06": "Orthodox Christmas Eve", "1978-01-07": "Orthodox Christmas", "1978-04-28": "Orthodox Good Friday", @@ -402,7 +402,7 @@ "1978-05-02": "Labour Day", "1978-05-21": "Independence Day", "1978-05-22": "Independence Day", - "1978-05-23": "Independence Day (Observed)", + "1978-05-23": "Independence Day (observed)", "1978-07-13": "Statehood Day", "1978-07-14": "Statehood Day", "1979-01-01": "New Year's Day", @@ -431,7 +431,7 @@ "1980-05-22": "Independence Day", "1980-07-13": "Statehood Day", "1980-07-14": "Statehood Day", - "1980-07-15": "Statehood Day (Observed)", + "1980-07-15": "Statehood Day (observed)", "1981-01-01": "New Year's Day", "1981-01-02": "New Year's Day", "1981-01-06": "Orthodox Christmas Eve", @@ -454,30 +454,30 @@ "1982-04-19": "Orthodox Easter Monday", "1982-05-01": "Labour Day", "1982-05-02": "Labour Day", - "1982-05-03": "Labour Day (Observed)", + "1982-05-03": "Labour Day (observed)", "1982-05-21": "Independence Day", "1982-05-22": "Independence Day", "1982-07-13": "Statehood Day", "1982-07-14": "Statehood Day", "1983-01-01": "New Year's Day", "1983-01-02": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-06": "Orthodox Christmas Eve", "1983-01-07": "Orthodox Christmas", "1983-05-01": "Labour Day", "1983-05-02": "Labour Day", - "1983-05-03": "Labour Day (Observed)", + "1983-05-03": "Labour Day (observed)", "1983-05-06": "Orthodox Good Friday", "1983-05-08": "Orthodox Easter Sunday", "1983-05-09": "Orthodox Easter Monday", "1983-05-21": "Independence Day", "1983-05-22": "Independence Day", - "1983-05-23": "Independence Day (Observed)", + "1983-05-23": "Independence Day (observed)", "1983-07-13": "Statehood Day", "1983-07-14": "Statehood Day", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-01-06": "Orthodox Christmas Eve", "1984-01-07": "Orthodox Christmas", "1984-04-20": "Orthodox Good Friday", @@ -502,7 +502,7 @@ "1985-05-22": "Independence Day", "1985-07-13": "Statehood Day", "1985-07-14": "Statehood Day", - "1985-07-15": "Statehood Day (Observed)", + "1985-07-15": "Statehood Day (observed)", "1986-01-01": "New Year's Day", "1986-01-02": "New Year's Day", "1986-01-06": "Orthodox Christmas Eve", @@ -515,7 +515,7 @@ "1986-05-22": "Independence Day", "1986-07-13": "Statehood Day", "1986-07-14": "Statehood Day", - "1986-07-15": "Statehood Day (Observed)", + "1986-07-15": "Statehood Day (observed)", "1987-01-01": "New Year's Day", "1987-01-02": "New Year's Day", "1987-01-06": "Orthodox Christmas Eve", @@ -538,15 +538,15 @@ "1988-04-11": "Orthodox Easter Monday", "1988-05-01": "Labour Day", "1988-05-02": "Labour Day", - "1988-05-03": "Labour Day (Observed)", + "1988-05-03": "Labour Day (observed)", "1988-05-21": "Independence Day", "1988-05-22": "Independence Day", - "1988-05-23": "Independence Day (Observed)", + "1988-05-23": "Independence Day (observed)", "1988-07-13": "Statehood Day", "1988-07-14": "Statehood Day", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-01-06": "Orthodox Christmas Eve", "1989-01-07": "Orthodox Christmas", "1989-04-28": "Orthodox Good Friday", @@ -555,7 +555,7 @@ "1989-05-02": "Labour Day", "1989-05-21": "Independence Day", "1989-05-22": "Independence Day", - "1989-05-23": "Independence Day (Observed)", + "1989-05-23": "Independence Day (observed)", "1989-07-13": "Statehood Day", "1989-07-14": "Statehood Day", "1990-01-01": "New Year's Day", @@ -584,7 +584,7 @@ "1991-05-22": "Independence Day", "1991-07-13": "Statehood Day", "1991-07-14": "Statehood Day", - "1991-07-15": "Statehood Day (Observed)", + "1991-07-15": "Statehood Day (observed)", "1992-01-01": "New Year's Day", "1992-01-02": "New Year's Day", "1992-01-06": "Orthodox Christmas Eve", @@ -607,28 +607,28 @@ "1993-04-19": "Orthodox Easter Monday", "1993-05-01": "Labour Day", "1993-05-02": "Labour Day", - "1993-05-03": "Labour Day (Observed)", + "1993-05-03": "Labour Day (observed)", "1993-05-21": "Independence Day", "1993-05-22": "Independence Day", "1993-07-13": "Statehood Day", "1993-07-14": "Statehood Day", "1994-01-01": "New Year's Day", "1994-01-02": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-06": "Orthodox Christmas Eve", "1994-01-07": "Orthodox Christmas", "1994-04-29": "Orthodox Good Friday", "1994-05-01": "Labour Day; Orthodox Easter Sunday", "1994-05-02": "Labour Day; Orthodox Easter Monday", - "1994-05-03": "Labour Day (Observed)", + "1994-05-03": "Labour Day (observed)", "1994-05-21": "Independence Day", "1994-05-22": "Independence Day", - "1994-05-23": "Independence Day (Observed)", + "1994-05-23": "Independence Day (observed)", "1994-07-13": "Statehood Day", "1994-07-14": "Statehood Day", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-01-06": "Orthodox Christmas Eve", "1995-01-07": "Orthodox Christmas", "1995-04-21": "Orthodox Good Friday", @@ -638,7 +638,7 @@ "1995-05-02": "Labour Day", "1995-05-21": "Independence Day", "1995-05-22": "Independence Day", - "1995-05-23": "Independence Day (Observed)", + "1995-05-23": "Independence Day (observed)", "1995-07-13": "Statehood Day", "1995-07-14": "Statehood Day", "1996-01-01": "New Year's Day", @@ -654,7 +654,7 @@ "1996-05-22": "Independence Day", "1996-07-13": "Statehood Day", "1996-07-14": "Statehood Day", - "1996-07-15": "Statehood Day (Observed)", + "1996-07-15": "Statehood Day (observed)", "1997-01-01": "New Year's Day", "1997-01-02": "New Year's Day", "1997-01-06": "Orthodox Christmas Eve", @@ -668,7 +668,7 @@ "1997-05-22": "Independence Day", "1997-07-13": "Statehood Day", "1997-07-14": "Statehood Day", - "1997-07-15": "Statehood Day (Observed)", + "1997-07-15": "Statehood Day (observed)", "1998-01-01": "New Year's Day", "1998-01-02": "New Year's Day", "1998-01-06": "Orthodox Christmas Eve", @@ -691,14 +691,14 @@ "1999-04-12": "Orthodox Easter Monday", "1999-05-01": "Labour Day", "1999-05-02": "Labour Day", - "1999-05-03": "Labour Day (Observed)", + "1999-05-03": "Labour Day (observed)", "1999-05-21": "Independence Day", "1999-05-22": "Independence Day", "1999-07-13": "Statehood Day", "1999-07-14": "Statehood Day", "2000-01-01": "New Year's Day", "2000-01-02": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-06": "Orthodox Christmas Eve", "2000-01-07": "Orthodox Christmas", "2000-04-28": "Orthodox Good Friday", @@ -707,7 +707,7 @@ "2000-05-02": "Labour Day", "2000-05-21": "Independence Day", "2000-05-22": "Independence Day", - "2000-05-23": "Independence Day (Observed)", + "2000-05-23": "Independence Day (observed)", "2000-07-13": "Statehood Day", "2000-07-14": "Statehood Day", "2001-01-01": "New Year's Day", @@ -736,7 +736,7 @@ "2002-05-22": "Independence Day", "2002-07-13": "Statehood Day", "2002-07-14": "Statehood Day", - "2002-07-15": "Statehood Day (Observed)", + "2002-07-15": "Statehood Day (observed)", "2003-01-01": "New Year's Day", "2003-01-02": "New Year's Day", "2003-01-06": "Orthodox Christmas Eve", @@ -750,7 +750,7 @@ "2003-05-22": "Independence Day", "2003-07-13": "Statehood Day", "2003-07-14": "Statehood Day", - "2003-07-15": "Statehood Day (Observed)", + "2003-07-15": "Statehood Day (observed)", "2004-01-01": "New Year's Day", "2004-01-02": "New Year's Day", "2004-01-06": "Orthodox Christmas Eve", @@ -760,28 +760,28 @@ "2004-04-12": "Orthodox Easter Monday", "2004-05-01": "Labour Day", "2004-05-02": "Labour Day", - "2004-05-03": "Labour Day (Observed)", + "2004-05-03": "Labour Day (observed)", "2004-05-21": "Independence Day", "2004-05-22": "Independence Day", "2004-07-13": "Statehood Day", "2004-07-14": "Statehood Day", "2005-01-01": "New Year's Day", "2005-01-02": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-06": "Orthodox Christmas Eve", "2005-01-07": "Orthodox Christmas", "2005-04-29": "Orthodox Good Friday", "2005-05-01": "Labour Day; Orthodox Easter Sunday", "2005-05-02": "Labour Day; Orthodox Easter Monday", - "2005-05-03": "Labour Day (Observed)", + "2005-05-03": "Labour Day (observed)", "2005-05-21": "Independence Day", "2005-05-22": "Independence Day", - "2005-05-23": "Independence Day (Observed)", + "2005-05-23": "Independence Day (observed)", "2005-07-13": "Statehood Day", "2005-07-14": "Statehood Day", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-06": "Orthodox Christmas Eve", "2006-01-07": "Orthodox Christmas", "2006-04-21": "Orthodox Good Friday", @@ -791,7 +791,7 @@ "2006-05-02": "Labour Day", "2006-05-21": "Independence Day", "2006-05-22": "Independence Day", - "2006-05-23": "Independence Day (Observed)", + "2006-05-23": "Independence Day (observed)", "2006-07-13": "Statehood Day", "2006-07-14": "Statehood Day", "2007-01-01": "New Year's Day", @@ -820,7 +820,7 @@ "2008-05-22": "Independence Day", "2008-07-13": "Statehood Day", "2008-07-14": "Statehood Day", - "2008-07-15": "Statehood Day (Observed)", + "2008-07-15": "Statehood Day (observed)", "2009-01-01": "New Year's Day", "2009-01-02": "New Year's Day", "2009-01-06": "Orthodox Christmas Eve", @@ -843,14 +843,14 @@ "2010-04-05": "Orthodox Easter Monday", "2010-05-01": "Labour Day", "2010-05-02": "Labour Day", - "2010-05-03": "Labour Day (Observed)", + "2010-05-03": "Labour Day (observed)", "2010-05-21": "Independence Day", "2010-05-22": "Independence Day", "2010-07-13": "Statehood Day", "2010-07-14": "Statehood Day", "2011-01-01": "New Year's Day", "2011-01-02": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-06": "Orthodox Christmas Eve", "2011-01-07": "Orthodox Christmas", "2011-04-22": "Orthodox Good Friday", @@ -858,15 +858,15 @@ "2011-04-25": "Orthodox Easter Monday", "2011-05-01": "Labour Day", "2011-05-02": "Labour Day", - "2011-05-03": "Labour Day (Observed)", + "2011-05-03": "Labour Day (observed)", "2011-05-21": "Independence Day", "2011-05-22": "Independence Day", - "2011-05-23": "Independence Day (Observed)", + "2011-05-23": "Independence Day (observed)", "2011-07-13": "Statehood Day", "2011-07-14": "Statehood Day", "2012-01-01": "New Year's Day", "2012-01-02": "New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-01-06": "Orthodox Christmas Eve", "2012-01-07": "Orthodox Christmas", "2012-04-13": "Orthodox Good Friday", @@ -891,7 +891,7 @@ "2013-05-22": "Independence Day", "2013-07-13": "Statehood Day", "2013-07-14": "Statehood Day", - "2013-07-15": "Statehood Day (Observed)", + "2013-07-15": "Statehood Day (observed)", "2014-01-01": "New Year's Day", "2014-01-02": "New Year's Day", "2014-01-06": "Orthodox Christmas Eve", @@ -905,7 +905,7 @@ "2014-05-22": "Independence Day", "2014-07-13": "Statehood Day", "2014-07-14": "Statehood Day", - "2014-07-15": "Statehood Day (Observed)", + "2014-07-15": "Statehood Day (observed)", "2015-01-01": "New Year's Day", "2015-01-02": "New Year's Day", "2015-01-06": "Orthodox Christmas Eve", @@ -926,15 +926,15 @@ "2016-04-29": "Orthodox Good Friday", "2016-05-01": "Labour Day; Orthodox Easter Sunday", "2016-05-02": "Labour Day; Orthodox Easter Monday", - "2016-05-03": "Labour Day (Observed)", + "2016-05-03": "Labour Day (observed)", "2016-05-21": "Independence Day", "2016-05-22": "Independence Day", - "2016-05-23": "Independence Day (Observed)", + "2016-05-23": "Independence Day (observed)", "2016-07-13": "Statehood Day", "2016-07-14": "Statehood Day", "2017-01-01": "New Year's Day", "2017-01-02": "New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-01-06": "Orthodox Christmas Eve", "2017-01-07": "Orthodox Christmas", "2017-04-14": "Orthodox Good Friday", @@ -944,7 +944,7 @@ "2017-05-02": "Labour Day", "2017-05-21": "Independence Day", "2017-05-22": "Independence Day", - "2017-05-23": "Independence Day (Observed)", + "2017-05-23": "Independence Day (observed)", "2017-07-13": "Statehood Day", "2017-07-14": "Statehood Day", "2018-01-01": "New Year's Day", @@ -973,7 +973,7 @@ "2019-05-22": "Independence Day", "2019-07-13": "Statehood Day", "2019-07-14": "Statehood Day", - "2019-07-15": "Statehood Day (Observed)", + "2019-07-15": "Statehood Day (observed)", "2020-01-01": "New Year's Day", "2020-01-02": "New Year's Day", "2020-01-06": "Orthodox Christmas Eve", @@ -994,14 +994,14 @@ "2021-04-30": "Orthodox Good Friday", "2021-05-01": "Labour Day", "2021-05-02": "Labour Day; Orthodox Easter Sunday", - "2021-05-03": "Labour Day (Observed); Orthodox Easter Monday", + "2021-05-03": "Labour Day (observed); Orthodox Easter Monday", "2021-05-21": "Independence Day", "2021-05-22": "Independence Day", "2021-07-13": "Statehood Day", "2021-07-14": "Statehood Day", "2022-01-01": "New Year's Day", "2022-01-02": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-06": "Orthodox Christmas Eve", "2022-01-07": "Orthodox Christmas", "2022-04-22": "Orthodox Good Friday", @@ -1009,15 +1009,15 @@ "2022-04-25": "Orthodox Easter Monday", "2022-05-01": "Labour Day", "2022-05-02": "Labour Day", - "2022-05-03": "Labour Day (Observed)", + "2022-05-03": "Labour Day (observed)", "2022-05-21": "Independence Day", "2022-05-22": "Independence Day", - "2022-05-23": "Independence Day (Observed)", + "2022-05-23": "Independence Day (observed)", "2022-07-13": "Statehood Day", "2022-07-14": "Statehood Day", "2023-01-01": "New Year's Day", "2023-01-02": "New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-01-06": "Orthodox Christmas Eve", "2023-01-07": "Orthodox Christmas", "2023-04-14": "Orthodox Good Friday", @@ -1027,7 +1027,7 @@ "2023-05-02": "Labour Day", "2023-05-21": "Independence Day", "2023-05-22": "Independence Day", - "2023-05-23": "Independence Day (Observed)", + "2023-05-23": "Independence Day (observed)", "2023-07-13": "Statehood Day", "2023-07-14": "Statehood Day", "2024-01-01": "New Year's Day", @@ -1043,7 +1043,7 @@ "2024-05-22": "Independence Day", "2024-07-13": "Statehood Day", "2024-07-14": "Statehood Day", - "2024-07-15": "Statehood Day (Observed)", + "2024-07-15": "Statehood Day (observed)", "2025-01-01": "New Year's Day", "2025-01-02": "New Year's Day", "2025-01-06": "Orthodox Christmas Eve", @@ -1057,7 +1057,7 @@ "2025-05-22": "Independence Day", "2025-07-13": "Statehood Day", "2025-07-14": "Statehood Day", - "2025-07-15": "Statehood Day (Observed)", + "2025-07-15": "Statehood Day (observed)", "2026-01-01": "New Year's Day", "2026-01-02": "New Year's Day", "2026-01-06": "Orthodox Christmas Eve", @@ -1078,14 +1078,14 @@ "2027-04-30": "Orthodox Good Friday", "2027-05-01": "Labour Day", "2027-05-02": "Labour Day; Orthodox Easter Sunday", - "2027-05-03": "Labour Day (Observed); Orthodox Easter Monday", + "2027-05-03": "Labour Day (observed); Orthodox Easter Monday", "2027-05-21": "Independence Day", "2027-05-22": "Independence Day", "2027-07-13": "Statehood Day", "2027-07-14": "Statehood Day", "2028-01-01": "New Year's Day", "2028-01-02": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-06": "Orthodox Christmas Eve", "2028-01-07": "Orthodox Christmas", "2028-04-14": "Orthodox Good Friday", @@ -1095,7 +1095,7 @@ "2028-05-02": "Labour Day", "2028-05-21": "Independence Day", "2028-05-22": "Independence Day", - "2028-05-23": "Independence Day (Observed)", + "2028-05-23": "Independence Day (observed)", "2028-07-13": "Statehood Day", "2028-07-14": "Statehood Day", "2029-01-01": "New Year's Day", @@ -1124,7 +1124,7 @@ "2030-05-22": "Independence Day", "2030-07-13": "Statehood Day", "2030-07-14": "Statehood Day", - "2030-07-15": "Statehood Day (Observed)", + "2030-07-15": "Statehood Day (observed)", "2031-01-01": "New Year's Day", "2031-01-02": "New Year's Day", "2031-01-06": "Orthodox Christmas Eve", @@ -1138,7 +1138,7 @@ "2031-05-22": "Independence Day", "2031-07-13": "Statehood Day", "2031-07-14": "Statehood Day", - "2031-07-15": "Statehood Day (Observed)", + "2031-07-15": "Statehood Day (observed)", "2032-01-01": "New Year's Day", "2032-01-02": "New Year's Day", "2032-01-06": "Orthodox Christmas Eve", @@ -1146,14 +1146,14 @@ "2032-04-30": "Orthodox Good Friday", "2032-05-01": "Labour Day", "2032-05-02": "Labour Day; Orthodox Easter Sunday", - "2032-05-03": "Labour Day (Observed); Orthodox Easter Monday", + "2032-05-03": "Labour Day (observed); Orthodox Easter Monday", "2032-05-21": "Independence Day", "2032-05-22": "Independence Day", "2032-07-13": "Statehood Day", "2032-07-14": "Statehood Day", "2033-01-01": "New Year's Day", "2033-01-02": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-06": "Orthodox Christmas Eve", "2033-01-07": "Orthodox Christmas", "2033-04-22": "Orthodox Good Friday", @@ -1161,15 +1161,15 @@ "2033-04-25": "Orthodox Easter Monday", "2033-05-01": "Labour Day", "2033-05-02": "Labour Day", - "2033-05-03": "Labour Day (Observed)", + "2033-05-03": "Labour Day (observed)", "2033-05-21": "Independence Day", "2033-05-22": "Independence Day", - "2033-05-23": "Independence Day (Observed)", + "2033-05-23": "Independence Day (observed)", "2033-07-13": "Statehood Day", "2033-07-14": "Statehood Day", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-01-06": "Orthodox Christmas Eve", "2034-01-07": "Orthodox Christmas", "2034-04-07": "Orthodox Good Friday", @@ -1179,7 +1179,7 @@ "2034-05-02": "Labour Day", "2034-05-21": "Independence Day", "2034-05-22": "Independence Day", - "2034-05-23": "Independence Day (Observed)", + "2034-05-23": "Independence Day (observed)", "2034-07-13": "Statehood Day", "2034-07-14": "Statehood Day", "2035-01-01": "New Year's Day", @@ -1208,7 +1208,7 @@ "2036-05-22": "Independence Day", "2036-07-13": "Statehood Day", "2036-07-14": "Statehood Day", - "2036-07-15": "Statehood Day (Observed)", + "2036-07-15": "Statehood Day (observed)", "2037-01-01": "New Year's Day", "2037-01-02": "New Year's Day", "2037-01-06": "Orthodox Christmas Eve", @@ -1231,14 +1231,14 @@ "2038-04-26": "Orthodox Easter Monday", "2038-05-01": "Labour Day", "2038-05-02": "Labour Day", - "2038-05-03": "Labour Day (Observed)", + "2038-05-03": "Labour Day (observed)", "2038-05-21": "Independence Day", "2038-05-22": "Independence Day", "2038-07-13": "Statehood Day", "2038-07-14": "Statehood Day", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-06": "Orthodox Christmas Eve", "2039-01-07": "Orthodox Christmas", "2039-04-15": "Orthodox Good Friday", @@ -1246,15 +1246,15 @@ "2039-04-18": "Orthodox Easter Monday", "2039-05-01": "Labour Day", "2039-05-02": "Labour Day", - "2039-05-03": "Labour Day (Observed)", + "2039-05-03": "Labour Day (observed)", "2039-05-21": "Independence Day", "2039-05-22": "Independence Day", - "2039-05-23": "Independence Day (Observed)", + "2039-05-23": "Independence Day (observed)", "2039-07-13": "Statehood Day", "2039-07-14": "Statehood Day", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-01-06": "Orthodox Christmas Eve", "2040-01-07": "Orthodox Christmas", "2040-05-01": "Labour Day", @@ -1279,7 +1279,7 @@ "2041-05-22": "Independence Day", "2041-07-13": "Statehood Day", "2041-07-14": "Statehood Day", - "2041-07-15": "Statehood Day (Observed)", + "2041-07-15": "Statehood Day (observed)", "2042-01-01": "New Year's Day", "2042-01-02": "New Year's Day", "2042-01-06": "Orthodox Christmas Eve", @@ -1293,7 +1293,7 @@ "2042-05-22": "Independence Day", "2042-07-13": "Statehood Day", "2042-07-14": "Statehood Day", - "2042-07-15": "Statehood Day (Observed)", + "2042-07-15": "Statehood Day (observed)", "2043-01-01": "New Year's Day", "2043-01-02": "New Year's Day", "2043-01-06": "Orthodox Christmas Eve", @@ -1315,15 +1315,15 @@ "2044-04-25": "Orthodox Easter Monday", "2044-05-01": "Labour Day", "2044-05-02": "Labour Day", - "2044-05-03": "Labour Day (Observed)", + "2044-05-03": "Labour Day (observed)", "2044-05-21": "Independence Day", "2044-05-22": "Independence Day", - "2044-05-23": "Independence Day (Observed)", + "2044-05-23": "Independence Day (observed)", "2044-07-13": "Statehood Day", "2044-07-14": "Statehood Day", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-01-06": "Orthodox Christmas Eve", "2045-01-07": "Orthodox Christmas", "2045-04-07": "Orthodox Good Friday", @@ -1333,7 +1333,7 @@ "2045-05-02": "Labour Day", "2045-05-21": "Independence Day", "2045-05-22": "Independence Day", - "2045-05-23": "Independence Day (Observed)", + "2045-05-23": "Independence Day (observed)", "2045-07-13": "Statehood Day", "2045-07-14": "Statehood Day", "2046-01-01": "New Year's Day", @@ -1362,7 +1362,7 @@ "2047-05-22": "Independence Day", "2047-07-13": "Statehood Day", "2047-07-14": "Statehood Day", - "2047-07-15": "Statehood Day (Observed)", + "2047-07-15": "Statehood Day (observed)", "2048-01-01": "New Year's Day", "2048-01-02": "New Year's Day", "2048-01-06": "Orthodox Christmas Eve", @@ -1385,14 +1385,14 @@ "2049-04-26": "Orthodox Easter Monday", "2049-05-01": "Labour Day", "2049-05-02": "Labour Day", - "2049-05-03": "Labour Day (Observed)", + "2049-05-03": "Labour Day (observed)", "2049-05-21": "Independence Day", "2049-05-22": "Independence Day", "2049-07-13": "Statehood Day", "2049-07-14": "Statehood Day", "2050-01-01": "New Year's Day", "2050-01-02": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-06": "Orthodox Christmas Eve", "2050-01-07": "Orthodox Christmas", "2050-04-15": "Orthodox Good Friday", @@ -1400,10 +1400,10 @@ "2050-04-18": "Orthodox Easter Monday", "2050-05-01": "Labour Day", "2050-05-02": "Labour Day", - "2050-05-03": "Labour Day (Observed)", + "2050-05-03": "Labour Day (observed)", "2050-05-21": "Independence Day", "2050-05-22": "Independence Day", - "2050-05-23": "Independence Day (Observed)", + "2050-05-23": "Independence Day (observed)", "2050-07-13": "Statehood Day", "2050-07-14": "Statehood Day" } diff --git a/snapshots/countries/MP_COMMON.json b/snapshots/countries/MP_COMMON.json index 35f3aa7e6..949e44e63 100644 --- a/snapshots/countries/MP_COMMON.json +++ b/snapshots/countries/MP_COMMON.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-03-24": "Commonwealth Covenant Day", "1950-04-07": "Good Friday", @@ -8,27 +8,27 @@ "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-09": "Commonwealth Cultural Day", - "1950-11-03": "Citizenship Day (Observed)", + "1950-11-03": "Citizenship Day (observed)", "1950-11-04": "Citizenship Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-08": "Constitution Day", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", "1951-02-22": "Washington's Birthday", - "1951-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "1951-03-23": "Commonwealth Covenant Day (observed); Good Friday", "1951-03-24": "Commonwealth Covenant Day", "1951-05-30": "Memorial Day", "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-10-08": "Commonwealth Cultural Day", "1951-11-04": "Citizenship Day", - "1951-11-05": "Citizenship Day (Observed)", + "1951-11-05": "Citizenship Day (observed)", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", - "1951-12-07": "Constitution Day (Observed)", + "1951-12-07": "Constitution Day (observed)", "1951-12-08": "Constitution Day", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -49,7 +49,7 @@ "1953-03-24": "Commonwealth Covenant Day", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Commonwealth Cultural Day", @@ -64,16 +64,16 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-11": "Commonwealth Cultural Day", "1954-11-04": "Citizenship Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", "1954-12-08": "Constitution Day", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-03-24": "Commonwealth Covenant Day", @@ -87,11 +87,11 @@ "1955-11-24": "Thanksgiving", "1955-12-08": "Constitution Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", - "1956-03-23": "Commonwealth Covenant Day (Observed)", + "1956-03-23": "Commonwealth Covenant Day (observed)", "1956-03-24": "Commonwealth Covenant Day", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -99,17 +99,17 @@ "1956-09-03": "Labor Day", "1956-10-08": "Commonwealth Cultural Day", "1956-11-04": "Citizenship Day", - "1956-11-05": "Citizenship Day (Observed)", + "1956-11-05": "Citizenship Day (observed)", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", - "1956-12-07": "Constitution Day (Observed)", + "1956-12-07": "Constitution Day (observed)", "1956-12-08": "Constitution Day", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-02-22": "Washington's Birthday", "1957-03-24": "Commonwealth Covenant Day", - "1957-03-25": "Commonwealth Covenant Day (Observed)", + "1957-03-25": "Commonwealth Covenant Day (observed)", "1957-04-19": "Good Friday", "1957-05-30": "Memorial Day", "1957-07-04": "Independence Day", @@ -119,7 +119,7 @@ "1957-11-11": "Veterans Day", "1957-11-28": "Thanksgiving", "1957-12-08": "Constitution Day", - "1957-12-09": "Constitution Day (Observed)", + "1957-12-09": "Constitution Day (observed)", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-02-22": "Washington's Birthday", @@ -139,7 +139,7 @@ "1959-03-24": "Commonwealth Covenant Day", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Commonwealth Cultural Day", @@ -161,9 +161,9 @@ "1960-11-24": "Thanksgiving", "1960-12-08": "Constitution Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-24": "Commonwealth Covenant Day", "1961-03-31": "Good Friday", @@ -171,16 +171,16 @@ "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-09": "Commonwealth Cultural Day", - "1961-11-03": "Citizenship Day (Observed)", + "1961-11-03": "Citizenship Day (observed)", "1961-11-04": "Citizenship Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-08": "Constitution Day", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", "1962-02-22": "Washington's Birthday", - "1962-03-23": "Commonwealth Covenant Day (Observed)", + "1962-03-23": "Commonwealth Covenant Day (observed)", "1962-03-24": "Commonwealth Covenant Day", "1962-04-20": "Good Friday", "1962-05-30": "Memorial Day", @@ -188,17 +188,17 @@ "1962-09-03": "Labor Day", "1962-10-08": "Commonwealth Cultural Day", "1962-11-04": "Citizenship Day", - "1962-11-05": "Citizenship Day (Observed)", + "1962-11-05": "Citizenship Day (observed)", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", - "1962-12-07": "Constitution Day (Observed)", + "1962-12-07": "Constitution Day (observed)", "1962-12-08": "Constitution Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-02-22": "Washington's Birthday", "1963-03-24": "Commonwealth Covenant Day", - "1963-03-25": "Commonwealth Covenant Day (Observed)", + "1963-03-25": "Commonwealth Covenant Day (observed)", "1963-04-12": "Good Friday", "1963-05-30": "Memorial Day", "1963-07-04": "Independence Day", @@ -208,14 +208,14 @@ "1963-11-11": "Veterans Day", "1963-11-28": "Thanksgiving", "1963-12-08": "Constitution Day", - "1963-12-09": "Constitution Day (Observed)", + "1963-12-09": "Constitution Day (observed)", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-03-24": "Commonwealth Covenant Day", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Commonwealth Cultural Day", @@ -230,16 +230,16 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-11": "Commonwealth Cultural Day", "1965-11-04": "Citizenship Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", "1965-12-08": "Constitution Day", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-03-24": "Commonwealth Covenant Day", @@ -253,18 +253,18 @@ "1966-11-24": "Thanksgiving", "1966-12-08": "Constitution Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Commonwealth Covenant Day; Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-09": "Commonwealth Cultural Day", - "1967-11-03": "Citizenship Day (Observed)", + "1967-11-03": "Citizenship Day (observed)", "1967-11-04": "Citizenship Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-08": "Constitution Day", @@ -272,7 +272,7 @@ "1968-01-01": "New Year's Day", "1968-02-22": "Washington's Birthday", "1968-03-24": "Commonwealth Covenant Day", - "1968-03-25": "Commonwealth Covenant Day (Observed)", + "1968-03-25": "Commonwealth Covenant Day (observed)", "1968-04-12": "Good Friday", "1968-05-30": "Memorial Day", "1968-07-04": "Independence Day", @@ -282,7 +282,7 @@ "1968-11-11": "Veterans Day", "1968-11-28": "Thanksgiving", "1968-12-08": "Constitution Day", - "1968-12-09": "Constitution Day (Observed)", + "1968-12-09": "Constitution Day (observed)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-22": "Washington's Birthday", @@ -302,7 +302,7 @@ "1970-03-24": "Commonwealth Covenant Day", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Commonwealth Cultural Day", @@ -317,16 +317,16 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Commonwealth Cultural Day", "1971-10-25": "Veterans Day", "1971-11-04": "Citizenship Day", "1971-11-25": "Thanksgiving", "1971-12-08": "Constitution Day", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-24": "Commonwealth Covenant Day", @@ -336,14 +336,14 @@ "1972-09-04": "Labor Day", "1972-10-09": "Commonwealth Cultural Day", "1972-10-23": "Veterans Day", - "1972-11-03": "Citizenship Day (Observed)", + "1972-11-03": "Citizenship Day (observed)", "1972-11-04": "Citizenship Day", "1972-11-23": "Thanksgiving", "1972-12-08": "Constitution Day", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-02-19": "Washington's Birthday", - "1973-03-23": "Commonwealth Covenant Day (Observed)", + "1973-03-23": "Commonwealth Covenant Day (observed)", "1973-03-24": "Commonwealth Covenant Day", "1973-04-20": "Good Friday", "1973-05-28": "Memorial Day", @@ -352,15 +352,15 @@ "1973-10-08": "Commonwealth Cultural Day", "1973-10-22": "Veterans Day", "1973-11-04": "Citizenship Day", - "1973-11-05": "Citizenship Day (Observed)", + "1973-11-05": "Citizenship Day (observed)", "1973-11-22": "Thanksgiving", - "1973-12-07": "Constitution Day (Observed)", + "1973-12-07": "Constitution Day (observed)", "1973-12-08": "Constitution Day", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-02-18": "Washington's Birthday", "1974-03-24": "Commonwealth Covenant Day", - "1974-03-25": "Commonwealth Covenant Day (Observed)", + "1974-03-25": "Commonwealth Covenant Day (observed)", "1974-04-12": "Good Friday", "1974-05-27": "Memorial Day", "1974-07-04": "Independence Day", @@ -370,7 +370,7 @@ "1974-11-04": "Citizenship Day", "1974-11-28": "Thanksgiving", "1974-12-08": "Constitution Day", - "1974-12-09": "Constitution Day (Observed)", + "1974-12-09": "Constitution Day (observed)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-02-17": "Washington's Birthday", @@ -391,16 +391,16 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Commonwealth Cultural Day", "1976-10-25": "Veterans Day", "1976-11-04": "Citizenship Day", "1976-11-25": "Thanksgiving", "1976-12-08": "Constitution Day", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-03-24": "Commonwealth Covenant Day", @@ -414,25 +414,25 @@ "1977-11-24": "Thanksgiving", "1977-12-08": "Constitution Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Commonwealth Covenant Day; Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Commonwealth Cultural Day", - "1978-11-03": "Citizenship Day (Observed)", + "1978-11-03": "Citizenship Day (observed)", "1978-11-04": "Citizenship Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-08": "Constitution Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-19": "Washington's Birthday", - "1979-03-23": "Commonwealth Covenant Day (Observed)", + "1979-03-23": "Commonwealth Covenant Day (observed)", "1979-03-24": "Commonwealth Covenant Day", "1979-04-13": "Good Friday", "1979-05-28": "Memorial Day", @@ -440,11 +440,11 @@ "1979-09-03": "Labor Day", "1979-10-08": "Commonwealth Cultural Day", "1979-11-04": "Citizenship Day", - "1979-11-05": "Citizenship Day (Observed)", + "1979-11-05": "Citizenship Day (observed)", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", - "1979-12-07": "Constitution Day (Observed)", + "1979-12-07": "Constitution Day (observed)", "1979-12-08": "Constitution Day", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -465,7 +465,7 @@ "1981-03-24": "Commonwealth Covenant Day", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Commonwealth Cultural Day", @@ -480,16 +480,16 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Commonwealth Cultural Day", "1982-11-04": "Citizenship Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-12-08": "Constitution Day", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-03-24": "Commonwealth Covenant Day", @@ -503,11 +503,11 @@ "1983-11-24": "Thanksgiving", "1983-12-08": "Constitution Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", - "1984-03-23": "Commonwealth Covenant Day (Observed)", + "1984-03-23": "Commonwealth Covenant Day (observed)", "1984-03-24": "Commonwealth Covenant Day", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", @@ -515,17 +515,17 @@ "1984-09-03": "Labor Day", "1984-10-08": "Commonwealth Cultural Day", "1984-11-04": "Citizenship Day", - "1984-11-05": "Citizenship Day (Observed)", + "1984-11-05": "Citizenship Day (observed)", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", - "1984-12-07": "Constitution Day (Observed)", + "1984-12-07": "Constitution Day (observed)", "1984-12-08": "Constitution Day", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-18": "Washington's Birthday", "1985-03-24": "Commonwealth Covenant Day", - "1985-03-25": "Commonwealth Covenant Day (Observed)", + "1985-03-25": "Commonwealth Covenant Day (observed)", "1985-04-05": "Good Friday", "1985-05-27": "Memorial Day", "1985-07-04": "Independence Day", @@ -535,7 +535,7 @@ "1985-11-11": "Veterans Day", "1985-11-28": "Thanksgiving", "1985-12-08": "Constitution Day", - "1985-12-09": "Constitution Day (Observed)", + "1985-12-09": "Constitution Day (observed)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-01-20": "Martin Luther King Jr. Day", @@ -557,7 +557,7 @@ "1987-03-24": "Commonwealth Covenant Day", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Commonwealth Cultural Day", @@ -580,9 +580,9 @@ "1988-11-24": "Thanksgiving", "1988-12-08": "Constitution Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-24": "Commonwealth Covenant Day; Good Friday", @@ -590,9 +590,9 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Commonwealth Cultural Day", - "1989-11-03": "Citizenship Day (Observed)", + "1989-11-03": "Citizenship Day (observed)", "1989-11-04": "Citizenship Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-08": "Constitution Day", @@ -600,7 +600,7 @@ "1990-01-01": "New Year's Day", "1990-01-15": "Martin Luther King Jr. Day", "1990-02-19": "Washington's Birthday", - "1990-03-23": "Commonwealth Covenant Day (Observed)", + "1990-03-23": "Commonwealth Covenant Day (observed)", "1990-03-24": "Commonwealth Covenant Day", "1990-04-13": "Good Friday", "1990-05-28": "Memorial Day", @@ -608,18 +608,18 @@ "1990-09-03": "Labor Day", "1990-10-08": "Commonwealth Cultural Day", "1990-11-04": "Citizenship Day", - "1990-11-05": "Citizenship Day (Observed)", + "1990-11-05": "Citizenship Day (observed)", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", - "1990-12-07": "Constitution Day (Observed)", + "1990-12-07": "Constitution Day (observed)", "1990-12-08": "Constitution Day", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-01-21": "Martin Luther King Jr. Day", "1991-02-18": "Washington's Birthday", "1991-03-24": "Commonwealth Covenant Day", - "1991-03-25": "Commonwealth Covenant Day (Observed)", + "1991-03-25": "Commonwealth Covenant Day (observed)", "1991-03-29": "Good Friday", "1991-05-27": "Memorial Day", "1991-07-04": "Independence Day", @@ -629,7 +629,7 @@ "1991-11-11": "Veterans Day", "1991-11-28": "Thanksgiving", "1991-12-08": "Constitution Day", - "1991-12-09": "Constitution Day (Observed)", + "1991-12-09": "Constitution Day (observed)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-20": "Martin Luther King Jr. Day", @@ -637,7 +637,7 @@ "1992-03-24": "Commonwealth Covenant Day", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Commonwealth Cultural Day", @@ -653,16 +653,16 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Commonwealth Cultural Day", "1993-11-04": "Citizenship Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-12-08": "Constitution Day", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -677,9 +677,9 @@ "1994-11-24": "Thanksgiving", "1994-12-08": "Constitution Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-03-24": "Commonwealth Covenant Day", @@ -688,9 +688,9 @@ "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Commonwealth Cultural Day", - "1995-11-03": "Citizenship Day (Observed)", + "1995-11-03": "Citizenship Day (observed)", "1995-11-04": "Citizenship Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-08": "Constitution Day", @@ -699,7 +699,7 @@ "1996-01-15": "Martin Luther King Jr. Day", "1996-02-19": "Washington's Birthday", "1996-03-24": "Commonwealth Covenant Day", - "1996-03-25": "Commonwealth Covenant Day (Observed)", + "1996-03-25": "Commonwealth Covenant Day (observed)", "1996-04-05": "Good Friday", "1996-05-27": "Memorial Day", "1996-07-04": "Independence Day", @@ -709,7 +709,7 @@ "1996-11-11": "Veterans Day", "1996-11-28": "Thanksgiving", "1996-12-08": "Constitution Day", - "1996-12-09": "Constitution Day (Observed)", + "1996-12-09": "Constitution Day (observed)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-20": "Martin Luther King Jr. Day", @@ -731,7 +731,7 @@ "1998-03-24": "Commonwealth Covenant Day", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Commonwealth Cultural Day", @@ -747,16 +747,16 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Commonwealth Cultural Day", "1999-11-04": "Citizenship Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-12-08": "Constitution Day", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -766,9 +766,9 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Commonwealth Cultural Day", - "2000-11-03": "Citizenship Day (Observed)", + "2000-11-03": "Citizenship Day (observed)", "2000-11-04": "Citizenship Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-08": "Constitution Day", @@ -776,7 +776,7 @@ "2001-01-01": "New Year's Day", "2001-01-15": "Martin Luther King Jr. Day", "2001-02-19": "Washington's Birthday", - "2001-03-23": "Commonwealth Covenant Day (Observed)", + "2001-03-23": "Commonwealth Covenant Day (observed)", "2001-03-24": "Commonwealth Covenant Day", "2001-04-13": "Good Friday", "2001-05-28": "Memorial Day", @@ -784,18 +784,18 @@ "2001-09-03": "Labor Day", "2001-10-08": "Commonwealth Cultural Day", "2001-11-04": "Citizenship Day", - "2001-11-05": "Citizenship Day (Observed)", + "2001-11-05": "Citizenship Day (observed)", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", - "2001-12-07": "Constitution Day (Observed)", + "2001-12-07": "Constitution Day (observed)", "2001-12-08": "Constitution Day", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-21": "Martin Luther King Jr. Day", "2002-02-18": "Washington's Birthday", "2002-03-24": "Commonwealth Covenant Day", - "2002-03-25": "Commonwealth Covenant Day (Observed)", + "2002-03-25": "Commonwealth Covenant Day (observed)", "2002-03-29": "Good Friday", "2002-05-27": "Memorial Day", "2002-07-04": "Independence Day", @@ -805,7 +805,7 @@ "2002-11-11": "Veterans Day", "2002-11-28": "Thanksgiving", "2002-12-08": "Constitution Day", - "2002-12-09": "Constitution Day (Observed)", + "2002-12-09": "Constitution Day (observed)", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-01-20": "Martin Luther King Jr. Day", @@ -828,16 +828,16 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Commonwealth Cultural Day", "2004-11-04": "Citizenship Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-12-08": "Constitution Day", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -852,9 +852,9 @@ "2005-11-24": "Thanksgiving", "2005-12-08": "Constitution Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-03-24": "Commonwealth Covenant Day", @@ -863,9 +863,9 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Commonwealth Cultural Day", - "2006-11-03": "Citizenship Day (Observed)", + "2006-11-03": "Citizenship Day (observed)", "2006-11-04": "Citizenship Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-08": "Constitution Day", @@ -873,7 +873,7 @@ "2007-01-01": "New Year's Day", "2007-01-15": "Martin Luther King Jr. Day", "2007-02-19": "Washington's Birthday", - "2007-03-23": "Commonwealth Covenant Day (Observed)", + "2007-03-23": "Commonwealth Covenant Day (observed)", "2007-03-24": "Commonwealth Covenant Day", "2007-04-06": "Good Friday", "2007-05-28": "Memorial Day", @@ -881,11 +881,11 @@ "2007-09-03": "Labor Day", "2007-10-08": "Commonwealth Cultural Day", "2007-11-04": "Citizenship Day", - "2007-11-05": "Citizenship Day (Observed)", + "2007-11-05": "Citizenship Day (observed)", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", - "2007-12-07": "Constitution Day (Observed)", + "2007-12-07": "Constitution Day (observed)", "2007-12-08": "Constitution Day", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -908,7 +908,7 @@ "2009-03-24": "Commonwealth Covenant Day", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Commonwealth Cultural Day", @@ -924,7 +924,7 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Commonwealth Cultural Day", "2010-11-02": "Election Day", @@ -932,9 +932,9 @@ "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-12-08": "Constitution Day", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -949,12 +949,12 @@ "2011-11-24": "Thanksgiving", "2011-12-08": "Constitution Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", - "2012-03-23": "Commonwealth Covenant Day (Observed)", + "2012-03-23": "Commonwealth Covenant Day (observed)", "2012-03-24": "Commonwealth Covenant Day", "2012-04-06": "Good Friday", "2012-05-28": "Memorial Day", @@ -962,19 +962,19 @@ "2012-09-03": "Labor Day", "2012-10-08": "Commonwealth Cultural Day", "2012-11-04": "Citizenship Day", - "2012-11-05": "Citizenship Day (Observed)", + "2012-11-05": "Citizenship Day (observed)", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", - "2012-12-07": "Constitution Day (Observed)", + "2012-12-07": "Constitution Day (observed)", "2012-12-08": "Constitution Day", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-21": "Martin Luther King Jr. Day", "2013-02-18": "Washington's Birthday", "2013-03-24": "Commonwealth Covenant Day", - "2013-03-25": "Commonwealth Covenant Day (Observed)", + "2013-03-25": "Commonwealth Covenant Day (observed)", "2013-03-29": "Good Friday", "2013-05-27": "Memorial Day", "2013-07-04": "Independence Day", @@ -984,7 +984,7 @@ "2013-11-11": "Veterans Day", "2013-11-28": "Thanksgiving", "2013-12-08": "Constitution Day", - "2013-12-09": "Constitution Day (Observed)", + "2013-12-09": "Constitution Day (observed)", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-20": "Martin Luther King Jr. Day", @@ -1006,7 +1006,7 @@ "2015-03-24": "Commonwealth Covenant Day", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Commonwealth Cultural Day", @@ -1030,9 +1030,9 @@ "2016-11-24": "Thanksgiving", "2016-12-08": "Constitution Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-03-24": "Commonwealth Covenant Day", @@ -1041,9 +1041,9 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Commonwealth Cultural Day", - "2017-11-03": "Citizenship Day (Observed)", + "2017-11-03": "Citizenship Day (observed)", "2017-11-04": "Citizenship Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-08": "Constitution Day", @@ -1051,7 +1051,7 @@ "2018-01-01": "New Year's Day", "2018-01-15": "Martin Luther King Jr. Day", "2018-02-19": "Washington's Birthday", - "2018-03-23": "Commonwealth Covenant Day (Observed)", + "2018-03-23": "Commonwealth Covenant Day (observed)", "2018-03-24": "Commonwealth Covenant Day", "2018-03-30": "Good Friday", "2018-05-28": "Memorial Day", @@ -1059,19 +1059,19 @@ "2018-09-03": "Labor Day", "2018-10-08": "Commonwealth Cultural Day", "2018-11-04": "Citizenship Day", - "2018-11-05": "Citizenship Day (Observed)", + "2018-11-05": "Citizenship Day (observed)", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", - "2018-12-07": "Constitution Day (Observed)", + "2018-12-07": "Constitution Day (observed)", "2018-12-08": "Constitution Day", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-01-21": "Martin Luther King Jr. Day", "2019-02-18": "Washington's Birthday", "2019-03-24": "Commonwealth Covenant Day", - "2019-03-25": "Commonwealth Covenant Day (Observed)", + "2019-03-25": "Commonwealth Covenant Day (observed)", "2019-04-19": "Good Friday", "2019-05-27": "Memorial Day", "2019-07-04": "Independence Day", @@ -1081,7 +1081,7 @@ "2019-11-11": "Veterans Day", "2019-11-28": "Thanksgiving", "2019-12-08": "Constitution Day", - "2019-12-09": "Constitution Day (Observed)", + "2019-12-09": "Constitution Day (observed)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-20": "Martin Luther King Jr. Day", @@ -1089,7 +1089,7 @@ "2020-03-24": "Commonwealth Covenant Day", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Commonwealth Cultural Day", @@ -1105,19 +1105,19 @@ "2021-03-24": "Commonwealth Covenant Day", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Commonwealth Cultural Day", "2021-11-04": "Citizenship Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-12-08": "Constitution Day", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", @@ -1125,7 +1125,7 @@ "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Commonwealth Cultural Day", @@ -1135,9 +1135,9 @@ "2022-11-24": "Thanksgiving", "2022-12-08": "Constitution Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-03-24": "Commonwealth Covenant Day", @@ -1147,9 +1147,9 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Commonwealth Cultural Day", - "2023-11-03": "Citizenship Day (Observed)", + "2023-11-03": "Citizenship Day (observed)", "2023-11-04": "Citizenship Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-08": "Constitution Day", @@ -1158,7 +1158,7 @@ "2024-01-15": "Martin Luther King Jr. Day", "2024-02-19": "Washington's Birthday", "2024-03-24": "Commonwealth Covenant Day", - "2024-03-25": "Commonwealth Covenant Day (Observed)", + "2024-03-25": "Commonwealth Covenant Day (observed)", "2024-03-29": "Good Friday", "2024-05-27": "Memorial Day", "2024-06-19": "Juneteenth National Independence Day", @@ -1170,7 +1170,7 @@ "2024-11-11": "Veterans Day", "2024-11-28": "Thanksgiving", "2024-12-08": "Constitution Day", - "2024-12-09": "Constitution Day (Observed)", + "2024-12-09": "Constitution Day (observed)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-20": "Martin Luther King Jr. Day", @@ -1194,7 +1194,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Commonwealth Cultural Day", @@ -1210,19 +1210,19 @@ "2027-03-24": "Commonwealth Covenant Day", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Commonwealth Cultural Day", "2027-11-04": "Citizenship Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-12-08": "Constitution Day", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -1233,10 +1233,10 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Commonwealth Cultural Day", - "2028-11-03": "Citizenship Day (Observed)", + "2028-11-03": "Citizenship Day (observed)", "2028-11-04": "Citizenship Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-08": "Constitution Day", @@ -1244,7 +1244,7 @@ "2029-01-01": "New Year's Day", "2029-01-15": "Martin Luther King Jr. Day", "2029-02-19": "Washington's Birthday", - "2029-03-23": "Commonwealth Covenant Day (Observed)", + "2029-03-23": "Commonwealth Covenant Day (observed)", "2029-03-24": "Commonwealth Covenant Day", "2029-03-30": "Good Friday", "2029-05-28": "Memorial Day", @@ -1253,18 +1253,18 @@ "2029-09-03": "Labor Day", "2029-10-08": "Commonwealth Cultural Day", "2029-11-04": "Citizenship Day", - "2029-11-05": "Citizenship Day (Observed)", + "2029-11-05": "Citizenship Day (observed)", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", - "2029-12-07": "Constitution Day (Observed)", + "2029-12-07": "Constitution Day (observed)", "2029-12-08": "Constitution Day", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Martin Luther King Jr. Day", "2030-02-18": "Washington's Birthday", "2030-03-24": "Commonwealth Covenant Day", - "2030-03-25": "Commonwealth Covenant Day (Observed)", + "2030-03-25": "Commonwealth Covenant Day (observed)", "2030-04-19": "Good Friday", "2030-05-27": "Memorial Day", "2030-06-19": "Juneteenth National Independence Day", @@ -1276,7 +1276,7 @@ "2030-11-11": "Veterans Day", "2030-11-28": "Thanksgiving", "2030-12-08": "Constitution Day", - "2030-12-09": "Constitution Day (Observed)", + "2030-12-09": "Constitution Day (observed)", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-20": "Martin Luther King Jr. Day", @@ -1299,10 +1299,10 @@ "2032-03-24": "Commonwealth Covenant Day", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Commonwealth Cultural Day", "2032-11-02": "Election Day", @@ -1310,9 +1310,9 @@ "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-12-08": "Constitution Day", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", @@ -1320,7 +1320,7 @@ "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Commonwealth Cultural Day", @@ -1329,9 +1329,9 @@ "2033-11-24": "Thanksgiving", "2033-12-08": "Constitution Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-03-24": "Commonwealth Covenant Day", @@ -1341,10 +1341,10 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Commonwealth Cultural Day", - "2034-11-03": "Citizenship Day (Observed)", + "2034-11-03": "Citizenship Day (observed)", "2034-11-04": "Citizenship Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-08": "Constitution Day", @@ -1352,7 +1352,7 @@ "2035-01-01": "New Year's Day", "2035-01-15": "Martin Luther King Jr. Day", "2035-02-19": "Washington's Birthday", - "2035-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "2035-03-23": "Commonwealth Covenant Day (observed); Good Friday", "2035-03-24": "Commonwealth Covenant Day", "2035-05-28": "Memorial Day", "2035-06-19": "Juneteenth National Independence Day", @@ -1360,11 +1360,11 @@ "2035-09-03": "Labor Day", "2035-10-08": "Commonwealth Cultural Day", "2035-11-04": "Citizenship Day", - "2035-11-05": "Citizenship Day (Observed)", + "2035-11-05": "Citizenship Day (observed)", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", - "2035-12-07": "Constitution Day (Observed)", + "2035-12-07": "Constitution Day (observed)", "2035-12-08": "Constitution Day", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1389,7 +1389,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Commonwealth Cultural Day", @@ -1404,10 +1404,10 @@ "2038-03-24": "Commonwealth Covenant Day", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Commonwealth Cultural Day", "2038-11-02": "Election Day", @@ -1415,9 +1415,9 @@ "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-12-08": "Constitution Day", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", @@ -1425,7 +1425,7 @@ "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Commonwealth Cultural Day", @@ -1434,12 +1434,12 @@ "2039-11-24": "Thanksgiving", "2039-12-08": "Constitution Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", - "2040-03-23": "Commonwealth Covenant Day (Observed)", + "2040-03-23": "Commonwealth Covenant Day (observed)", "2040-03-24": "Commonwealth Covenant Day", "2040-03-30": "Good Friday", "2040-05-28": "Memorial Day", @@ -1448,19 +1448,19 @@ "2040-09-03": "Labor Day", "2040-10-08": "Commonwealth Cultural Day", "2040-11-04": "Citizenship Day", - "2040-11-05": "Citizenship Day (Observed)", + "2040-11-05": "Citizenship Day (observed)", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", - "2040-12-07": "Constitution Day (Observed)", + "2040-12-07": "Constitution Day (observed)", "2040-12-08": "Constitution Day", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-21": "Martin Luther King Jr. Day", "2041-02-18": "Washington's Birthday", "2041-03-24": "Commonwealth Covenant Day", - "2041-03-25": "Commonwealth Covenant Day (Observed)", + "2041-03-25": "Commonwealth Covenant Day (observed)", "2041-04-19": "Good Friday", "2041-05-27": "Memorial Day", "2041-06-19": "Juneteenth National Independence Day", @@ -1471,7 +1471,7 @@ "2041-11-11": "Veterans Day", "2041-11-28": "Thanksgiving", "2041-12-08": "Constitution Day", - "2041-12-09": "Constitution Day (Observed)", + "2041-12-09": "Constitution Day (observed)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-20": "Martin Luther King Jr. Day", @@ -1495,7 +1495,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Commonwealth Cultural Day", @@ -1511,7 +1511,7 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Commonwealth Cultural Day", @@ -1521,9 +1521,9 @@ "2044-11-24": "Thanksgiving", "2044-12-08": "Constitution Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-03-24": "Commonwealth Covenant Day", @@ -1533,9 +1533,9 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Commonwealth Cultural Day", - "2045-11-03": "Citizenship Day (Observed)", + "2045-11-03": "Citizenship Day (observed)", "2045-11-04": "Citizenship Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-08": "Constitution Day", @@ -1543,7 +1543,7 @@ "2046-01-01": "New Year's Day", "2046-01-15": "Martin Luther King Jr. Day", "2046-02-19": "Washington's Birthday", - "2046-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "2046-03-23": "Commonwealth Covenant Day (observed); Good Friday", "2046-03-24": "Commonwealth Covenant Day", "2046-05-28": "Memorial Day", "2046-06-19": "Juneteenth National Independence Day", @@ -1551,19 +1551,19 @@ "2046-09-03": "Labor Day", "2046-10-08": "Commonwealth Cultural Day", "2046-11-04": "Citizenship Day", - "2046-11-05": "Citizenship Day (Observed)", + "2046-11-05": "Citizenship Day (observed)", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", - "2046-12-07": "Constitution Day (Observed)", + "2046-12-07": "Constitution Day (observed)", "2046-12-08": "Constitution Day", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-01-21": "Martin Luther King Jr. Day", "2047-02-18": "Washington's Birthday", "2047-03-24": "Commonwealth Covenant Day", - "2047-03-25": "Commonwealth Covenant Day (Observed)", + "2047-03-25": "Commonwealth Covenant Day (observed)", "2047-04-12": "Good Friday", "2047-05-27": "Memorial Day", "2047-06-19": "Juneteenth National Independence Day", @@ -1574,7 +1574,7 @@ "2047-11-11": "Veterans Day", "2047-11-28": "Thanksgiving", "2047-12-08": "Constitution Day", - "2047-12-09": "Constitution Day (Observed)", + "2047-12-09": "Constitution Day (observed)", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-01-20": "Martin Luther King Jr. Day", @@ -1583,7 +1583,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Commonwealth Cultural Day", @@ -1599,19 +1599,19 @@ "2049-03-24": "Commonwealth Covenant Day", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Commonwealth Cultural Day", "2049-11-04": "Citizenship Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-12-08": "Constitution Day", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", @@ -1619,7 +1619,7 @@ "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Commonwealth Cultural Day", @@ -1629,5 +1629,5 @@ "2050-11-24": "Thanksgiving", "2050-12-08": "Constitution Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/MW_COMMON.json b/snapshots/countries/MW_COMMON.json index af97c2861..c9c428ca3 100644 --- a/snapshots/countries/MW_COMMON.json +++ b/snapshots/countries/MW_COMMON.json @@ -1,23 +1,23 @@ { "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-15": "John Chilembwe Day", - "2000-01-17": "John Chilembwe Day (Observed)", + "2000-01-17": "John Chilembwe Day (observed)", "2000-03-03": "Martyrs Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-01": "Labour Day", "2000-05-14": "Kamuzu Day", - "2000-05-15": "Kamuzu Day (Observed)", + "2000-05-15": "Kamuzu Day (observed)", "2000-07-06": "Independence Day", "2000-10-15": "Mother's Day", - "2000-10-16": "Mother's Day (Observed)", + "2000-10-16": "Mother's Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-01-15": "John Chilembwe Day", "2001-03-03": "Martyrs Day", - "2001-03-05": "Martyrs Day (Observed)", + "2001-03-05": "Martyrs Day (observed)", "2001-04-13": "Good Friday", "2001-04-16": "Easter Monday", "2001-05-01": "Labour Day", @@ -29,13 +29,13 @@ "2002-01-01": "New Year's Day", "2002-01-15": "John Chilembwe Day", "2002-03-03": "Martyrs Day", - "2002-03-04": "Martyrs Day (Observed)", + "2002-03-04": "Martyrs Day (observed)", "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", "2002-05-01": "Labour Day", "2002-05-14": "Kamuzu Day", "2002-07-06": "Independence Day", - "2002-07-08": "Independence Day (Observed)", + "2002-07-08": "Independence Day (observed)", "2002-10-15": "Mother's Day", "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", @@ -47,7 +47,7 @@ "2003-05-01": "Labour Day", "2003-05-14": "Kamuzu Day", "2003-07-06": "Independence Day", - "2003-07-07": "Independence Day (Observed)", + "2003-07-07": "Independence Day (observed)", "2003-10-15": "Mother's Day", "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", @@ -57,50 +57,50 @@ "2004-04-09": "Good Friday", "2004-04-12": "Easter Monday", "2004-05-01": "Labour Day", - "2004-05-03": "Labour Day (Observed)", + "2004-05-03": "Labour Day (observed)", "2004-05-14": "Kamuzu Day", "2004-07-06": "Independence Day", "2004-10-15": "Mother's Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-15": "John Chilembwe Day", - "2005-01-17": "John Chilembwe Day (Observed)", + "2005-01-17": "John Chilembwe Day (observed)", "2005-03-03": "Martyrs Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-05-14": "Kamuzu Day", - "2005-05-16": "Kamuzu Day (Observed)", + "2005-05-16": "Kamuzu Day (observed)", "2005-07-06": "Independence Day", "2005-10-15": "Mother's Day", - "2005-10-17": "Mother's Day (Observed)", + "2005-10-17": "Mother's Day (observed)", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-15": "John Chilembwe Day", - "2006-01-16": "John Chilembwe Day (Observed)", + "2006-01-16": "John Chilembwe Day (observed)", "2006-03-03": "Martyrs Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-01": "Labour Day", "2006-05-14": "Kamuzu Day", - "2006-05-15": "Kamuzu Day (Observed)", + "2006-05-15": "Kamuzu Day (observed)", "2006-07-06": "Independence Day", "2006-10-15": "Mother's Day", - "2006-10-16": "Mother's Day (Observed)", + "2006-10-16": "Mother's Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-01-15": "John Chilembwe Day", "2007-03-03": "Martyrs Day", - "2007-03-05": "Martyrs Day (Observed)", + "2007-03-05": "Martyrs Day (observed)", "2007-04-06": "Good Friday", "2007-04-09": "Easter Monday", "2007-05-01": "Labour Day", @@ -117,7 +117,7 @@ "2008-05-01": "Labour Day", "2008-05-14": "Kamuzu Day", "2008-07-06": "Independence Day", - "2008-07-07": "Independence Day (Observed)", + "2008-07-07": "Independence Day (observed)", "2008-10-15": "Mother's Day", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", @@ -132,44 +132,44 @@ "2009-10-15": "Mother's Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-15": "John Chilembwe Day", "2010-03-03": "Martyrs Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", "2010-05-01": "Labour Day", - "2010-05-03": "Labour Day (Observed)", + "2010-05-03": "Labour Day (observed)", "2010-05-14": "Kamuzu Day", "2010-07-06": "Independence Day", "2010-10-15": "Mother's Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-15": "John Chilembwe Day", - "2011-01-17": "John Chilembwe Day (Observed)", + "2011-01-17": "John Chilembwe Day (observed)", "2011-03-03": "Martyrs Day", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-05-14": "Kamuzu Day", - "2011-05-16": "Kamuzu Day (Observed)", + "2011-05-16": "Kamuzu Day (observed)", "2011-07-06": "Independence Day", "2011-10-15": "Mother's Day", - "2011-10-17": "Mother's Day (Observed)", + "2011-10-17": "Mother's Day (observed)", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-15": "John Chilembwe Day", - "2012-01-16": "John Chilembwe Day (Observed)", + "2012-01-16": "John Chilembwe Day (observed)", "2012-03-03": "Martyrs Day", - "2012-03-05": "Martyrs Day (Observed)", + "2012-03-05": "Martyrs Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-01": "Labour Day", @@ -181,13 +181,13 @@ "2013-01-01": "New Year's Day", "2013-01-15": "John Chilembwe Day", "2013-03-03": "Martyrs Day", - "2013-03-04": "Martyrs Day (Observed)", + "2013-03-04": "Martyrs Day (observed)", "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", "2013-05-01": "Labour Day", "2013-05-14": "Kamuzu Day", "2013-07-06": "Independence Day", - "2013-07-08": "Independence Day (Observed)", + "2013-07-08": "Independence Day (observed)", "2013-10-15": "Mother's Day", "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", @@ -199,7 +199,7 @@ "2014-05-01": "Labour Day", "2014-05-14": "Kamuzu Day", "2014-07-06": "Independence Day", - "2014-07-07": "Independence Day (Observed)", + "2014-07-07": "Independence Day (observed)", "2014-10-15": "Mother's Day", "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", @@ -214,41 +214,41 @@ "2015-10-15": "Mother's Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-15": "John Chilembwe Day", "2016-03-03": "Martyrs Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-05-14": "Kamuzu Day", - "2016-05-16": "Kamuzu Day (Observed)", + "2016-05-16": "Kamuzu Day (observed)", "2016-07-06": "Independence Day", "2016-10-15": "Mother's Day", - "2016-10-17": "Mother's Day (Observed)", + "2016-10-17": "Mother's Day (observed)", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-15": "John Chilembwe Day", - "2017-01-16": "John Chilembwe Day (Observed)", + "2017-01-16": "John Chilembwe Day (observed)", "2017-03-03": "Martyrs Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-01": "Labour Day", "2017-05-14": "Kamuzu Day", - "2017-05-15": "Kamuzu Day (Observed)", + "2017-05-15": "Kamuzu Day (observed)", "2017-07-06": "Independence Day", "2017-10-15": "Mother's Day", - "2017-10-16": "Mother's Day (Observed)", + "2017-10-16": "Mother's Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", "2018-01-15": "John Chilembwe Day", "2018-03-03": "Martyrs Day", - "2018-03-05": "Martyrs Day (Observed)", + "2018-03-05": "Martyrs Day (observed)", "2018-03-30": "Good Friday", "2018-04-02": "Easter Monday", "2018-05-01": "Labour Day", @@ -260,13 +260,13 @@ "2019-01-01": "New Year's Day", "2019-01-15": "John Chilembwe Day", "2019-03-03": "Martyrs Day", - "2019-03-04": "Martyrs Day (Observed)", + "2019-03-04": "Martyrs Day (observed)", "2019-04-19": "Good Friday", "2019-04-22": "Easter Monday", "2019-05-01": "Labour Day", "2019-05-14": "Kamuzu Day", "2019-07-06": "Independence Day", - "2019-07-08": "Independence Day (Observed)", + "2019-07-08": "Independence Day (observed)", "2019-10-15": "Mother's Day", "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", @@ -281,63 +281,63 @@ "2020-10-15": "Mother's Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-15": "John Chilembwe Day", "2021-03-03": "Martyrs Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-05-01": "Labour Day", - "2021-05-03": "Labour Day (Observed)", + "2021-05-03": "Labour Day (observed)", "2021-05-14": "Kamuzu Day", "2021-07-06": "Independence Day", "2021-10-15": "Mother's Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-15": "John Chilembwe Day", - "2022-01-17": "John Chilembwe Day (Observed)", + "2022-01-17": "John Chilembwe Day (observed)", "2022-03-03": "Martyrs Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-05-14": "Kamuzu Day", - "2022-05-16": "Kamuzu Day (Observed)", + "2022-05-16": "Kamuzu Day (observed)", "2022-07-06": "Independence Day", "2022-10-15": "Mother's Day", - "2022-10-17": "Mother's Day (Observed)", + "2022-10-17": "Mother's Day (observed)", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-15": "John Chilembwe Day", - "2023-01-16": "John Chilembwe Day (Observed)", + "2023-01-16": "John Chilembwe Day (observed)", "2023-03-03": "Martyrs Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-01": "Labour Day", "2023-05-14": "Kamuzu Day", - "2023-05-15": "Kamuzu Day (Observed)", + "2023-05-15": "Kamuzu Day (observed)", "2023-07-06": "Independence Day", "2023-10-15": "Mother's Day", - "2023-10-16": "Mother's Day (Observed)", + "2023-10-16": "Mother's Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", "2024-01-15": "John Chilembwe Day", "2024-03-03": "Martyrs Day", - "2024-03-04": "Martyrs Day (Observed)", + "2024-03-04": "Martyrs Day (observed)", "2024-03-29": "Good Friday", "2024-04-01": "Easter Monday", "2024-05-01": "Labour Day", "2024-05-14": "Kamuzu Day", "2024-07-06": "Independence Day", - "2024-07-08": "Independence Day (Observed)", + "2024-07-08": "Independence Day (observed)", "2024-10-15": "Mother's Day", "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", @@ -349,7 +349,7 @@ "2025-05-01": "Labour Day", "2025-05-14": "Kamuzu Day", "2025-07-06": "Independence Day", - "2025-07-07": "Independence Day (Observed)", + "2025-07-07": "Independence Day (observed)", "2025-10-15": "Mother's Day", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", @@ -364,40 +364,40 @@ "2026-10-15": "Mother's Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-15": "John Chilembwe Day", "2027-03-03": "Martyrs Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-05-01": "Labour Day", - "2027-05-03": "Labour Day (Observed)", + "2027-05-03": "Labour Day (observed)", "2027-05-14": "Kamuzu Day", "2027-07-06": "Independence Day", "2027-10-15": "Mother's Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-15": "John Chilembwe Day", - "2028-01-17": "John Chilembwe Day (Observed)", + "2028-01-17": "John Chilembwe Day (observed)", "2028-03-03": "Martyrs Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-01": "Labour Day", "2028-05-14": "Kamuzu Day", - "2028-05-15": "Kamuzu Day (Observed)", + "2028-05-15": "Kamuzu Day (observed)", "2028-07-06": "Independence Day", "2028-10-15": "Mother's Day", - "2028-10-16": "Mother's Day (Observed)", + "2028-10-16": "Mother's Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", "2029-01-15": "John Chilembwe Day", "2029-03-03": "Martyrs Day", - "2029-03-05": "Martyrs Day (Observed)", + "2029-03-05": "Martyrs Day (observed)", "2029-03-30": "Good Friday", "2029-04-02": "Easter Monday", "2029-05-01": "Labour Day", @@ -409,13 +409,13 @@ "2030-01-01": "New Year's Day", "2030-01-15": "John Chilembwe Day", "2030-03-03": "Martyrs Day", - "2030-03-04": "Martyrs Day (Observed)", + "2030-03-04": "Martyrs Day (observed)", "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", "2030-05-01": "Labour Day", "2030-05-14": "Kamuzu Day", "2030-07-06": "Independence Day", - "2030-07-08": "Independence Day (Observed)", + "2030-07-08": "Independence Day (observed)", "2030-10-15": "Mother's Day", "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", @@ -427,7 +427,7 @@ "2031-05-01": "Labour Day", "2031-05-14": "Kamuzu Day", "2031-07-06": "Independence Day", - "2031-07-07": "Independence Day (Observed)", + "2031-07-07": "Independence Day (observed)", "2031-10-15": "Mother's Day", "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", @@ -437,50 +437,50 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-05-01": "Labour Day", - "2032-05-03": "Labour Day (Observed)", + "2032-05-03": "Labour Day (observed)", "2032-05-14": "Kamuzu Day", "2032-07-06": "Independence Day", "2032-10-15": "Mother's Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-15": "John Chilembwe Day", - "2033-01-17": "John Chilembwe Day (Observed)", + "2033-01-17": "John Chilembwe Day (observed)", "2033-03-03": "Martyrs Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-05-14": "Kamuzu Day", - "2033-05-16": "Kamuzu Day (Observed)", + "2033-05-16": "Kamuzu Day (observed)", "2033-07-06": "Independence Day", "2033-10-15": "Mother's Day", - "2033-10-17": "Mother's Day (Observed)", + "2033-10-17": "Mother's Day (observed)", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-15": "John Chilembwe Day", - "2034-01-16": "John Chilembwe Day (Observed)", + "2034-01-16": "John Chilembwe Day (observed)", "2034-03-03": "Martyrs Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-01": "Labour Day", "2034-05-14": "Kamuzu Day", - "2034-05-15": "Kamuzu Day (Observed)", + "2034-05-15": "Kamuzu Day (observed)", "2034-07-06": "Independence Day", "2034-10-15": "Mother's Day", - "2034-10-16": "Mother's Day (Observed)", + "2034-10-16": "Mother's Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", "2035-01-15": "John Chilembwe Day", "2035-03-03": "Martyrs Day", - "2035-03-05": "Martyrs Day (Observed)", + "2035-03-05": "Martyrs Day (observed)", "2035-03-23": "Good Friday", "2035-03-26": "Easter Monday", "2035-05-01": "Labour Day", @@ -497,7 +497,7 @@ "2036-05-01": "Labour Day", "2036-05-14": "Kamuzu Day", "2036-07-06": "Independence Day", - "2036-07-07": "Independence Day (Observed)", + "2036-07-07": "Independence Day (observed)", "2036-10-15": "Mother's Day", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", @@ -512,44 +512,44 @@ "2037-10-15": "Mother's Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-15": "John Chilembwe Day", "2038-03-03": "Martyrs Day", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-05-01": "Labour Day", - "2038-05-03": "Labour Day (Observed)", + "2038-05-03": "Labour Day (observed)", "2038-05-14": "Kamuzu Day", "2038-07-06": "Independence Day", "2038-10-15": "Mother's Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-15": "John Chilembwe Day", - "2039-01-17": "John Chilembwe Day (Observed)", + "2039-01-17": "John Chilembwe Day (observed)", "2039-03-03": "Martyrs Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-05-14": "Kamuzu Day", - "2039-05-16": "Kamuzu Day (Observed)", + "2039-05-16": "Kamuzu Day (observed)", "2039-07-06": "Independence Day", "2039-10-15": "Mother's Day", - "2039-10-17": "Mother's Day (Observed)", + "2039-10-17": "Mother's Day (observed)", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-15": "John Chilembwe Day", - "2040-01-16": "John Chilembwe Day (Observed)", + "2040-01-16": "John Chilembwe Day (observed)", "2040-03-03": "Martyrs Day", - "2040-03-05": "Martyrs Day (Observed)", + "2040-03-05": "Martyrs Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-01": "Labour Day", @@ -561,13 +561,13 @@ "2041-01-01": "New Year's Day", "2041-01-15": "John Chilembwe Day", "2041-03-03": "Martyrs Day", - "2041-03-04": "Martyrs Day (Observed)", + "2041-03-04": "Martyrs Day (observed)", "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", "2041-05-01": "Labour Day", "2041-05-14": "Kamuzu Day", "2041-07-06": "Independence Day", - "2041-07-08": "Independence Day (Observed)", + "2041-07-08": "Independence Day (observed)", "2041-10-15": "Mother's Day", "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", @@ -579,7 +579,7 @@ "2042-05-01": "Labour Day", "2042-05-14": "Kamuzu Day", "2042-07-06": "Independence Day", - "2042-07-07": "Independence Day (Observed)", + "2042-07-07": "Independence Day (observed)", "2042-10-15": "Mother's Day", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", @@ -594,41 +594,41 @@ "2043-10-15": "Mother's Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-15": "John Chilembwe Day", "2044-03-03": "Martyrs Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-05-14": "Kamuzu Day", - "2044-05-16": "Kamuzu Day (Observed)", + "2044-05-16": "Kamuzu Day (observed)", "2044-07-06": "Independence Day", "2044-10-15": "Mother's Day", - "2044-10-17": "Mother's Day (Observed)", + "2044-10-17": "Mother's Day (observed)", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-15": "John Chilembwe Day", - "2045-01-16": "John Chilembwe Day (Observed)", + "2045-01-16": "John Chilembwe Day (observed)", "2045-03-03": "Martyrs Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-01": "Labour Day", "2045-05-14": "Kamuzu Day", - "2045-05-15": "Kamuzu Day (Observed)", + "2045-05-15": "Kamuzu Day (observed)", "2045-07-06": "Independence Day", "2045-10-15": "Mother's Day", - "2045-10-16": "Mother's Day (Observed)", + "2045-10-16": "Mother's Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", "2046-01-15": "John Chilembwe Day", "2046-03-03": "Martyrs Day", - "2046-03-05": "Martyrs Day (Observed)", + "2046-03-05": "Martyrs Day (observed)", "2046-03-23": "Good Friday", "2046-03-26": "Easter Monday", "2046-05-01": "Labour Day", @@ -640,13 +640,13 @@ "2047-01-01": "New Year's Day", "2047-01-15": "John Chilembwe Day", "2047-03-03": "Martyrs Day", - "2047-03-04": "Martyrs Day (Observed)", + "2047-03-04": "Martyrs Day (observed)", "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", "2047-05-01": "Labour Day", "2047-05-14": "Kamuzu Day", "2047-07-06": "Independence Day", - "2047-07-08": "Independence Day (Observed)", + "2047-07-08": "Independence Day (observed)", "2047-10-15": "Mother's Day", "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", @@ -661,36 +661,36 @@ "2048-10-15": "Mother's Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-15": "John Chilembwe Day", "2049-03-03": "Martyrs Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-05-01": "Labour Day", - "2049-05-03": "Labour Day (Observed)", + "2049-05-03": "Labour Day (observed)", "2049-05-14": "Kamuzu Day", "2049-07-06": "Independence Day", "2049-10-15": "Mother's Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-15": "John Chilembwe Day", - "2050-01-17": "John Chilembwe Day (Observed)", + "2050-01-17": "John Chilembwe Day (observed)", "2050-03-03": "Martyrs Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-05-14": "Kamuzu Day", - "2050-05-16": "Kamuzu Day (Observed)", + "2050-05-16": "Kamuzu Day (observed)", "2050-07-06": "Independence Day", "2050-10-15": "Mother's Day", - "2050-10-17": "Mother's Day (Observed)", + "2050-10-17": "Mother's Day (observed)", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/MY_COMMON.json b/snapshots/countries/MY_COMMON.json index 91053b062..b99796c84 100644 --- a/snapshots/countries/MY_COMMON.json +++ b/snapshots/countries/MY_COMMON.json @@ -1,13 +1,13 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -18,7 +18,7 @@ "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-07-06": "Hari Raya Puasa (estimated)", "1951-07-07": "Second day of Hari Raya Puasa (estimated)", @@ -26,33 +26,33 @@ "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -75,7 +75,7 @@ "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", "1955-05-24": "Second day of Hari Raya Puasa (estimated)", @@ -86,10 +86,10 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", "1956-05-12": "Second day of Hari Raya Puasa (estimated)", @@ -111,28 +111,28 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-02-18": "Chinese New Year (estimated)", "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", @@ -149,7 +149,7 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -157,12 +157,12 @@ "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -182,7 +182,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", @@ -190,7 +190,7 @@ "1963-01-26": "Chinese New Year Holiday (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -215,7 +215,7 @@ "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -226,18 +226,18 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -265,7 +265,7 @@ "1968-11-18": "Deepavali", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-02-17": "Chinese New Year (estimated)", "1969-02-18": "Chinese New Year Holiday (estimated)", @@ -275,7 +275,7 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-11-08": "Deepavali", "1969-12-10": "Hari Raya Puasa (estimated)", "1969-12-11": "Second day of Hari Raya Puasa (estimated)", @@ -300,7 +300,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-11-16": "Deepavali", @@ -320,12 +320,12 @@ "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -333,7 +333,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-23": "Chinese New Year (estimated)", @@ -354,10 +354,10 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", @@ -366,7 +366,7 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -383,7 +383,7 @@ "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-31": "National Day", "1977-09-14": "Hari Raya Puasa (estimated)", @@ -392,26 +392,26 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", @@ -421,27 +421,27 @@ "1979-08-31": "National Day", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", @@ -449,7 +449,7 @@ "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", @@ -471,9 +471,9 @@ "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-07-11": "Hari Raya Puasa (estimated)", @@ -484,7 +484,7 @@ "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-05-01": "Labour Day", @@ -492,7 +492,7 @@ "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -510,22 +510,22 @@ "1985-08-31": "National Day", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -546,7 +546,7 @@ "1988-02-17": "Chinese New Year (estimated)", "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", "1988-05-30": "Vesak Day (estimated)", @@ -557,13 +557,13 @@ "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", @@ -574,7 +574,7 @@ "1989-12-25": "Christmas Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", @@ -603,10 +603,10 @@ "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -616,7 +616,7 @@ "1992-12-25": "Christmas Day", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", @@ -625,7 +625,7 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", @@ -633,9 +633,9 @@ "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -644,7 +644,7 @@ "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-03-02": "Hari Raya Puasa (estimated)", @@ -652,7 +652,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -673,7 +673,7 @@ "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", @@ -681,7 +681,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-28": "Chinese New Year (estimated)", @@ -691,7 +691,7 @@ "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", @@ -713,10 +713,10 @@ "1999-12-25": "Christmas Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", @@ -751,13 +751,13 @@ "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2002-08-31": "National Day", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", "2002-12-25": "Christmas Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-05-01": "Labour Day", @@ -765,7 +765,7 @@ "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-23": "Deepavali", "2003-11-26": "Hari Raya Puasa", "2003-11-27": "Second day of Hari Raya Puasa", @@ -777,33 +777,33 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-21": "Hari Raya Haji", "2005-02-09": "Chinese New Year", "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-08-31": "National Day", "2005-11-01": "Deepavali", "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", "2006-05-12": "Vesak Day", @@ -814,18 +814,18 @@ "2006-10-25": "Second day of Hari Raya Puasa", "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2007-08-31": "National Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-25": "Christmas Day", @@ -837,7 +837,7 @@ "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", "2008-10-27": "Deepavali", @@ -853,14 +853,14 @@ "2009-08-31": "National Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", "2009-12-18": "Awal Muharram (Hijri New Year)", "2009-12-25": "Christmas Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-05-01": "Labour Day", "2010-05-28": "Vesak Day", @@ -877,7 +877,7 @@ "2011-02-04": "Chinese New Year Holiday", "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2011-08-31": "Hari Raya Puasa; National Day", @@ -887,20 +887,20 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", @@ -908,7 +908,7 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", @@ -929,10 +929,10 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", @@ -941,7 +941,7 @@ "2015-02-20": "Chinese New Year Holiday", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-07-17": "Hari Raya Puasa", "2015-07-18": "Second day of Hari Raya Puasa", @@ -955,7 +955,7 @@ "2016-02-08": "Chinese New Year", "2016-02-09": "Chinese New Year Holiday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2016-07-06": "Hari Raya Puasa", @@ -967,16 +967,16 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -994,10 +994,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2018-12-25": "Christmas Day", @@ -1005,28 +1005,28 @@ "2019-02-06": "Chinese New Year Holiday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-31": "Hari Raya Haji", "2020-08-20": "Awal Muharram (Hijri New Year)", @@ -1054,25 +1054,25 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1082,38 +1082,38 @@ "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-29": "Chinese New Year (estimated)", "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", @@ -1133,12 +1133,12 @@ "2026-12-25": "Christmas Day", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1151,7 +1151,7 @@ "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-09": "Vesak Day (estimated)", @@ -1169,19 +1169,19 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-25": "Christmas Day", "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", @@ -1202,7 +1202,7 @@ "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", @@ -1214,23 +1214,23 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", "2032-12-25": "Christmas Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1240,10 +1240,10 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", @@ -1259,20 +1259,20 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-29": "Deepavali", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", @@ -1283,17 +1283,17 @@ "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", "2037-05-29": "Vesak Day (estimated)", @@ -1303,7 +1303,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-16": "Hari Raya Haji (estimated)", "2038-02-04": "Chinese New Year (estimated)", @@ -1324,7 +1324,7 @@ "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", @@ -1334,22 +1334,22 @@ "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1373,21 +1373,21 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", @@ -1401,10 +1401,10 @@ "2043-12-25": "Christmas Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-08-24": "Hari Raya Puasa (estimated)", @@ -1415,7 +1415,7 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", @@ -1434,13 +1434,13 @@ "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1448,7 +1448,7 @@ "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -1461,7 +1461,7 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-05-01": "Labour Day", @@ -1469,7 +1469,7 @@ "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", @@ -1481,7 +1481,7 @@ "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-07-01": "Hari Raya Puasa (estimated)", "2049-07-02": "Second day of Hari Raya Puasa (estimated)", @@ -1494,20 +1494,20 @@ "2049-12-25": "Christmas Day", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_JHR.json b/snapshots/countries/MY_JHR.json index 0f38b7c3a..8f531481a 100644 --- a/snapshots/countries/MY_JHR.json +++ b/snapshots/countries/MY_JHR.json @@ -2,9 +2,9 @@ "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-02-19": "Chinese New Year (estimated) [In lieu]", + "1950-02-19": "Chinese New Year (estimated) (in lieu)", "1950-03-03": "Thaipusam", - "1950-03-05": "Thaipusam [In lieu]", + "1950-03-05": "Thaipusam (in lieu)", "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1950-06-17": "Beginning of Ramadan (estimated)", @@ -15,7 +15,7 @@ "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1950-12-25": "Christmas Day", "1951-02-06": "Chinese New Year (estimated)", "1951-02-07": "Chinese New Year Holiday (estimated)", @@ -26,9 +26,9 @@ "1951-06-06": "Beginning of Ramadan (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-07-08": "Hari Raya Puasa (estimated) [In lieu]", + "1951-07-08": "Hari Raya Puasa (estimated) (in lieu)", "1951-08-31": "National Day", - "1951-09-02": "National Day [In lieu]", + "1951-09-02": "National Day (in lieu)", "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", @@ -52,7 +52,7 @@ "1953-02-15": "Chinese New Year Holiday (estimated)", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", - "1953-05-03": "Labour Day [In lieu]", + "1953-05-03": "Labour Day (in lieu)", "1953-05-14": "Beginning of Ramadan (estimated)", "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -64,7 +64,7 @@ "1953-11-05": "Deepavali", "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", - "1953-12-27": "Christmas Day [In lieu]", + "1953-12-27": "Christmas Day (in lieu)", "1954-02-03": "Chinese New Year (estimated)", "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-02-18": "Thaipusam", @@ -86,7 +86,7 @@ "1955-04-24": "Beginning of Ramadan (estimated)", "1955-05-01": "Labour Day", "1955-05-06": "Vesak Day (estimated)", - "1955-05-08": "Vesak Day (estimated) [In lieu]", + "1955-05-08": "Vesak Day (estimated) (in lieu)", "1955-05-23": "Hari Raya Puasa (estimated)", "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -103,21 +103,21 @@ "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-13": "Hari Raya Puasa (estimated) [In lieu]", + "1956-05-13": "Hari Raya Puasa (estimated) (in lieu)", "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1956-07-19": "Hari Raya Haji (estimated)", "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-09-02": "National Day [In lieu]", + "1956-09-02": "National Day (in lieu)", "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-31": "Chinese New Year (estimated)", "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-03": "Chinese New Year Holiday (estimated) [In lieu]", + "1957-02-03": "Chinese New Year Holiday (estimated) (in lieu)", "1957-02-15": "Thaipusam", - "1957-02-17": "Thaipusam [In lieu]", + "1957-02-17": "Thaipusam (in lieu)", "1957-04-01": "Beginning of Ramadan (estimated)", "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", "1957-05-02": "Second day of Hari Raya Puasa (estimated)", @@ -133,18 +133,18 @@ "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", "1958-03-21": "Beginning of Ramadan (estimated)", - "1958-03-23": "Beginning of Ramadan (estimated) [In lieu]", + "1958-03-23": "Beginning of Ramadan (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", - "1958-06-29": "Hari Raya Haji (estimated) [In lieu]", + "1958-06-29": "Hari Raya Haji (estimated) (in lieu)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1958-11-09": "Deepavali", "1958-12-25": "Christmas Day", "1959-02-08": "Chinese New Year (estimated)", @@ -153,24 +153,24 @@ "1959-03-11": "Beginning of Ramadan (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-04-12": "Hari Raya Puasa (estimated) [In lieu]", + "1959-04-12": "Hari Raya Puasa (estimated) (in lieu)", "1959-05-01": "Labour Day", - "1959-05-03": "Labour Day [In lieu]", + "1959-05-03": "Labour Day (in lieu)", "1959-05-22": "Vesak Day (estimated)", - "1959-05-24": "Vesak Day (estimated) [In lieu]", + "1959-05-24": "Vesak Day (estimated) (in lieu)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1959-06-17": "Hari Raya Haji (estimated)", "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", "1959-08-31": "National Day", "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", - "1959-11-01": "Deepavali [In lieu]", + "1959-11-01": "Deepavali (in lieu)", "1959-12-25": "Christmas Day", - "1959-12-27": "Christmas Day [In lieu]", + "1959-12-27": "Christmas Day (in lieu)", "1960-01-13": "Thaipusam", "1960-01-28": "Chinese New Year (estimated)", "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-01-31": "Chinese New Year Holiday (estimated) [In lieu]", + "1960-01-31": "Chinese New Year Holiday (estimated) (in lieu)", "1960-02-28": "Beginning of Ramadan (estimated)", "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", @@ -204,29 +204,29 @@ "1962-05-01": "Labour Day", "1962-05-14": "Hari Raya Haji (estimated)", "1962-05-18": "Vesak Day (estimated)", - "1962-05-20": "Vesak Day (estimated) [In lieu]", + "1962-05-20": "Vesak Day (estimated) (in lieu)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1962-08-31": "National Day", - "1962-09-02": "National Day [In lieu]", + "1962-09-02": "National Day (in lieu)", "1962-10-26": "Deepavali", - "1962-10-28": "Deepavali [In lieu]", + "1962-10-28": "Deepavali (in lieu)", "1962-12-25": "Christmas Day", "1963-01-10": "Thaipusam", "1963-01-25": "Chinese New Year (estimated)", "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1963-01-27": "Chinese New Year (estimated) [In lieu]", + "1963-01-27": "Chinese New Year (estimated) (in lieu)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", - "1963-05-05": "Hari Raya Haji (estimated) [In lieu]", + "1963-05-05": "Hari Raya Haji (estimated) (in lieu)", "1963-05-08": "Vesak Day (estimated)", "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", @@ -234,12 +234,12 @@ "1964-02-13": "Chinese New Year (estimated)", "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-16": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1964-02-16": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", "1964-02-28": "Thaipusam", - "1964-03-01": "Thaipusam [In lieu]", + "1964-03-01": "Thaipusam (in lieu)", "1964-04-22": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-03": "Labour Day [In lieu]", + "1964-05-03": "Labour Day (in lieu)", "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -247,7 +247,7 @@ "1964-08-31": "National Day", "1964-11-02": "Deepavali", "1964-12-25": "Christmas Day", - "1964-12-27": "Christmas Day [In lieu]", + "1964-12-27": "Christmas Day (in lieu)", "1965-01-03": "Beginning of Ramadan (estimated)", "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", @@ -259,34 +259,34 @@ "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", - "1965-10-24": "Deepavali [In lieu]", + "1965-10-24": "Deepavali (in lieu)", "1965-12-23": "Beginning of Ramadan (estimated)", "1965-12-25": "Christmas Day", "1966-01-06": "Thaipusam", "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Chinese New Year (estimated) [In lieu]", + "1966-01-24": "Chinese New Year (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", - "1966-04-03": "Hari Raya Haji (estimated) [In lieu]", + "1966-04-03": "Hari Raya Haji (estimated) (in lieu)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-13": "Beginning of Ramadan (estimated)", "1966-12-25": "Christmas Day", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-01-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1967-01-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1967-02-09": "Chinese New Year (estimated)", "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "1967-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "1967-02-24": "Thaipusam", - "1967-02-26": "Thaipusam [In lieu]", + "1967-02-26": "Thaipusam (in lieu)", "1967-03-21": "Hari Raya Haji (estimated)", "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", "1967-05-01": "Labour Day", @@ -330,12 +330,12 @@ "1969-12-25": "Christmas Day", "1970-02-06": "Chinese New Year (estimated)", "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-08": "Chinese New Year (estimated) [In lieu]", + "1970-02-08": "Chinese New Year (estimated) (in lieu)", "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-21": "Thaipusam", "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-03": "Labour Day [In lieu]", + "1970-05-03": "Labour Day (in lieu)", "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -345,7 +345,7 @@ "1970-11-30": "Hari Raya Puasa (estimated)", "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", - "1970-12-27": "Christmas Day [In lieu]", + "1970-12-27": "Christmas Day (in lieu)", "1971-01-12": "Thaipusam", "1971-01-27": "Chinese New Year (estimated)", "1971-01-28": "Chinese New Year Holiday (estimated)", @@ -354,14 +354,14 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-10-20": "Beginning of Ramadan (estimated)", "1971-11-16": "Deepavali", "1971-11-19": "Hari Raya Puasa (estimated)", "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-11-21": "Hari Raya Puasa (estimated) [In lieu]", + "1971-11-21": "Hari Raya Puasa (estimated) (in lieu)", "1971-12-25": "Christmas Day", "1972-01-26": "Hari Raya Haji (estimated)", "1972-02-15": "Chinese New Year (estimated)", @@ -386,7 +386,7 @@ "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-31": "National Day", - "1973-09-02": "National Day [In lieu]", + "1973-09-02": "National Day (in lieu)", "1973-09-27": "Beginning of Ramadan (estimated)", "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", @@ -427,7 +427,7 @@ "1976-02-01": "Chinese New Year Holiday (estimated)", "1976-02-15": "Thaipusam", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -435,15 +435,15 @@ "1976-08-31": "National Day", "1976-09-24": "Hari Raya Puasa (estimated)", "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-09-26": "Hari Raya Puasa (estimated) [In lieu]", + "1976-09-26": "Hari Raya Puasa (estimated) (in lieu)", "1976-11-19": "Deepavali", - "1976-11-21": "Deepavali [In lieu]", + "1976-11-21": "Deepavali (in lieu)", "1976-12-01": "Hari Raya Haji (estimated)", "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-02-18": "Chinese New Year (estimated)", "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-02-20": "Chinese New Year (estimated) [In lieu]", + "1977-02-20": "Chinese New Year (estimated) (in lieu)", "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", @@ -470,23 +470,23 @@ "1978-09-04": "Second day of Hari Raya Puasa (estimated)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", - "1978-11-12": "Hari Raya Haji (estimated) [In lieu]", + "1978-11-12": "Hari Raya Haji (estimated) (in lieu)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-13": "Thaipusam", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1979-07-25": "Beginning of Ramadan (estimated)", "1979-08-23": "Hari Raya Puasa (estimated)", "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1979-08-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1979-08-31": "National Day", - "1979-09-02": "National Day [In lieu]", + "1979-09-02": "National Day (in lieu)", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", @@ -509,10 +509,10 @@ "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "1981-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "1981-02-19": "Thaipusam", "1981-05-01": "Labour Day", - "1981-05-03": "Labour Day [In lieu]", + "1981-05-03": "Labour Day (in lieu)", "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1981-07-02": "Beginning of Ramadan (estimated)", @@ -523,7 +523,7 @@ "1981-10-26": "Deepavali", "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", - "1981-12-27": "Christmas Day [In lieu]", + "1981-12-27": "Christmas Day (in lieu)", "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", "1982-01-25": "Chinese New Year (estimated)", @@ -545,7 +545,7 @@ "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", "1983-05-27": "Vesak Day (estimated)", - "1983-05-29": "Vesak Day (estimated) [In lieu]", + "1983-05-29": "Vesak Day (estimated) (in lieu)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-12": "Beginning of Ramadan (estimated)", "1983-07-11": "Hari Raya Puasa (estimated)", @@ -555,13 +555,13 @@ "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1983-12-25": "Christmas Day", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1984-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1984-02-17": "Thaipusam", - "1984-02-19": "Thaipusam [In lieu]", + "1984-02-19": "Thaipusam (in lieu)", "1984-05-01": "Labour Day", "1984-05-15": "Vesak Day (estimated)", "1984-05-31": "Beginning of Ramadan (estimated)", @@ -569,7 +569,7 @@ "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", "1984-08-31": "National Day", - "1984-09-02": "National Day [In lieu]", + "1984-09-02": "National Day (in lieu)", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", "1984-10-22": "Deepavali", @@ -595,32 +595,32 @@ "1986-02-23": "Thaipusam", "1986-05-01": "Labour Day", "1986-05-09": "Beginning of Ramadan (estimated)", - "1986-05-11": "Beginning of Ramadan (estimated) [In lieu]", + "1986-05-11": "Beginning of Ramadan (estimated) (in lieu)", "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Vesak Day (estimated) [In lieu]", + "1986-05-25": "Vesak Day (estimated) (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", "1986-08-15": "Hari Raya Haji (estimated)", - "1986-08-17": "Hari Raya Haji (estimated) [In lieu]", + "1986-08-17": "Hari Raya Haji (estimated) (in lieu)", "1986-08-31": "National Day", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-02": "Deepavali [In lieu]", + "1986-11-02": "Deepavali (in lieu)", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1986-12-25": "Christmas Day", "1987-01-14": "Thaipusam", "1987-01-29": "Chinese New Year (estimated)", "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "1987-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "1987-04-29": "Beginning of Ramadan (estimated)", "1987-05-01": "Labour Day", - "1987-05-03": "Labour Day [In lieu]", + "1987-05-03": "Labour Day (in lieu)", "1987-05-12": "Vesak Day (estimated)", "1987-05-28": "Hari Raya Puasa (estimated)", "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-05-31": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1987-05-31": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1987-08-04": "Hari Raya Haji (estimated)", "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -628,7 +628,7 @@ "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", - "1987-12-27": "Christmas Day [In lieu]", + "1987-12-27": "Christmas Day (in lieu)", "1988-02-17": "Chinese New Year (estimated)", "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", @@ -648,43 +648,43 @@ "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", "1989-04-07": "Beginning of Ramadan (estimated)", - "1989-04-09": "Beginning of Ramadan (estimated) [In lieu]", + "1989-04-09": "Beginning of Ramadan (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", "1989-05-19": "Vesak Day (estimated)", - "1989-05-21": "Vesak Day (estimated) [In lieu]", + "1989-05-21": "Vesak Day (estimated) (in lieu)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", - "1989-10-29": "Deepavali [In lieu]", + "1989-10-29": "Deepavali (in lieu)", "1989-12-25": "Christmas Day", "1990-01-12": "Thaipusam", - "1990-01-14": "Thaipusam [In lieu]", + "1990-01-14": "Thaipusam (in lieu)", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", "1990-03-27": "Beginning of Ramadan (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-04-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1990-04-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1990-05-01": "Labour Day", "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1990-07-02": "Hari Raya Haji (estimated)", "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-09-02": "National Day [In lieu]", + "1990-09-02": "National Day (in lieu)", "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-02-15": "Chinese New Year (estimated)", "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-02-17": "Chinese New Year (estimated) [In lieu]", + "1991-02-17": "Chinese New Year (estimated) (in lieu)", "1991-03-01": "Thaipusam", - "1991-03-03": "Thaipusam [In lieu]", + "1991-03-03": "Thaipusam (in lieu)", "1991-03-17": "Beginning of Ramadan (estimated)", "1991-04-15": "Hari Raya Puasa (estimated)", "1991-04-16": "Second day of Hari Raya Puasa (estimated)", @@ -695,7 +695,7 @@ "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-02-04": "Chinese New Year (estimated)", @@ -705,7 +705,7 @@ "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", "1992-05-01": "Labour Day", - "1992-05-03": "Labour Day [In lieu]", + "1992-05-03": "Labour Day (in lieu)", "1992-05-17": "Vesak Day (estimated)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", @@ -714,9 +714,9 @@ "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", - "1992-12-27": "Christmas Day [In lieu]", + "1992-12-27": "Christmas Day (in lieu)", "1993-01-08": "Thaipusam", - "1993-01-10": "Thaipusam [In lieu]", + "1993-01-10": "Thaipusam (in lieu)", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", "1993-02-22": "Beginning of Ramadan (estimated)", @@ -730,23 +730,23 @@ "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", - "1993-11-14": "Deepavali [In lieu]", + "1993-11-14": "Deepavali (in lieu)", "1993-12-25": "Christmas Day", "1994-02-10": "Chinese New Year (estimated)", "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1994-02-13": "Beginning of Ramadan (estimated) [In lieu]; Chinese New Year Holiday (estimated) [In lieu]", + "1994-02-13": "Beginning of Ramadan (estimated) (in lieu); Chinese New Year Holiday (estimated) (in lieu)", "1994-02-25": "Thaipusam", - "1994-02-27": "Thaipusam [In lieu]", + "1994-02-27": "Thaipusam (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", "1994-05-01": "Labour Day", "1994-05-20": "Hari Raya Haji (estimated)", - "1994-05-22": "Hari Raya Haji (estimated) [In lieu]", + "1994-05-22": "Hari Raya Haji (estimated) (in lieu)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", @@ -755,7 +755,7 @@ "1995-02-14": "Thaipusam", "1995-03-02": "Hari Raya Puasa (estimated)", "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-03-05": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1995-03-05": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", @@ -779,11 +779,11 @@ "1996-11-09": "Deepavali", "1996-12-25": "Christmas Day", "1997-01-10": "Beginning of Ramadan (estimated)", - "1997-01-12": "Beginning of Ramadan (estimated) [In lieu]", + "1997-01-12": "Beginning of Ramadan (estimated) (in lieu)", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Chinese New Year (estimated) [In lieu]", + "1997-02-10": "Chinese New Year (estimated) (in lieu)", "1997-02-22": "Thaipusam", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -799,11 +799,11 @@ "1998-01-28": "Chinese New Year (estimated)", "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-02-01": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1998-02-01": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1998-04-07": "Hari Raya Haji (estimated)", "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-03": "Labour Day [In lieu]", + "1998-05-03": "Labour Day (in lieu)", "1998-05-10": "Vesak Day (estimated)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -811,7 +811,7 @@ "1998-11-17": "Deepavali", "1998-12-19": "Beginning of Ramadan (estimated)", "1998-12-25": "Christmas Day", - "1998-12-27": "Christmas Day [In lieu]", + "1998-12-27": "Christmas Day (in lieu)", "1999-01-18": "Hari Raya Puasa (estimated)", "1999-01-19": "Second day of Hari Raya Puasa (estimated)", "1999-02-16": "Chinese New Year (estimated)", @@ -855,7 +855,7 @@ "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2001-08-31": "National Day", - "2001-09-02": "National Day [In lieu]", + "2001-09-02": "National Day (in lieu)", "2001-11-14": "Deepavali", "2001-11-17": "Beginning of Ramadan", "2001-12-17": "Hari Raya Puasa", @@ -868,7 +868,7 @@ "2002-03-15": "Awal Muharram (Hijri New Year)", "2002-05-01": "Labour Day", "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2002-05-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2002-05-27": "Vesak Day", "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2002-08-31": "National Day", @@ -876,7 +876,7 @@ "2002-11-06": "Beginning of Ramadan", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-08": "Hari Raya Puasa [In lieu]", + "2002-12-08": "Hari Raya Puasa (in lieu)", "2002-12-25": "Christmas Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", @@ -896,7 +896,7 @@ "2004-01-07": "Thaipusam", "2004-01-22": "Chinese New Year", "2004-01-23": "Chinese New Year Holiday", - "2004-01-25": "Chinese New Year Holiday [In lieu]", + "2004-01-25": "Chinese New Year Holiday (in lieu)", "2004-02-02": "Hari Raya Haji", "2004-02-22": "Awal Muharram (Hijri New Year)", "2004-05-01": "Labour Day", @@ -910,7 +910,7 @@ "2004-11-15": "Second day of Hari Raya Puasa", "2004-12-25": "Christmas Day", "2005-01-21": "Hari Raya Haji", - "2005-01-23": "Hari Raya Haji [In lieu]", + "2005-01-23": "Hari Raya Haji (in lieu)", "2005-02-09": "Chinese New Year", "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", "2005-02-23": "Thaipusam", @@ -923,7 +923,7 @@ "2005-11-01": "Deepavali", "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", - "2005-11-06": "Second day of Hari Raya Puasa [In lieu]", + "2005-11-06": "Second day of Hari Raya Puasa (in lieu)", "2005-12-25": "Christmas Day", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", @@ -933,7 +933,7 @@ "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", "2006-05-12": "Vesak Day", - "2006-05-14": "Vesak Day [In lieu]", + "2006-05-14": "Vesak Day (in lieu)", "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2006-08-31": "National Day", "2006-09-24": "Beginning of Ramadan", @@ -950,7 +950,7 @@ "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2007-08-31": "National Day", - "2007-09-02": "National Day [In lieu]", + "2007-09-02": "National Day (in lieu)", "2007-09-13": "Beginning of Ramadan", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", @@ -960,9 +960,9 @@ "2008-01-10": "Awal Muharram (Hijri New Year)", "2008-02-07": "Chinese New Year", "2008-02-08": "Chinese New Year Holiday", - "2008-02-10": "Chinese New Year Holiday [In lieu]", + "2008-02-10": "Chinese New Year Holiday (in lieu)", "2008-02-22": "Thaipusam", - "2008-02-24": "Thaipusam [In lieu]", + "2008-02-24": "Thaipusam (in lieu)", "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2008-05-01": "Labour Day", "2008-05-19": "Vesak Day", @@ -980,7 +980,7 @@ "2009-01-27": "Chinese New Year Holiday", "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2009-05-01": "Labour Day", - "2009-05-03": "Labour Day [In lieu]", + "2009-05-03": "Labour Day (in lieu)", "2009-05-09": "Vesak Day", "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2009-08-22": "Beginning of Ramadan", @@ -991,34 +991,34 @@ "2009-11-28": "Hari Raya Haji", "2009-12-18": "Awal Muharram (Hijri New Year)", "2009-12-25": "Christmas Day", - "2009-12-27": "Christmas Day [In lieu]", + "2009-12-27": "Christmas Day (in lieu)", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-02-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2010-02-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2010-03-01": "Thaipusam", "2010-05-01": "Labour Day", "2010-05-28": "Vesak Day", - "2010-05-30": "Vesak Day [In lieu]", + "2010-05-30": "Vesak Day (in lieu)", "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2010-08-11": "Beginning of Ramadan", "2010-08-31": "National Day", "2010-09-10": "Hari Raya Puasa", "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-12": "Hari Raya Puasa [In lieu]", + "2010-09-12": "Hari Raya Puasa (in lieu)", "2010-09-16": "Malaysia Day", "2010-11-05": "Deepavali", - "2010-11-07": "Deepavali [In lieu]", + "2010-11-07": "Deepavali (in lieu)", "2010-11-17": "Hari Raya Haji", "2010-12-08": "Awal Muharram (Hijri New Year)", "2010-12-25": "Christmas Day", "2011-01-12": "Hari Hol of Sultan Iskandar of Johor", "2011-02-03": "Chinese New Year", "2011-02-04": "Chinese New Year Holiday", - "2011-02-06": "Chinese New Year Holiday [In lieu]", + "2011-02-06": "Chinese New Year Holiday (in lieu)", "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-02-18": "Thaipusam", - "2011-02-20": "Thaipusam [In lieu]", + "2011-02-20": "Thaipusam (in lieu)", "2011-05-01": "Labour Day", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1026,7 +1026,7 @@ "2011-08-31": "Hari Raya Puasa; National Day", "2011-09-01": "Second day of Hari Raya Puasa", "2011-09-16": "Malaysia Day", - "2011-09-18": "Malaysia Day [In lieu]", + "2011-09-18": "Malaysia Day (in lieu)", "2011-10-26": "Deepavali", "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", @@ -1040,14 +1040,14 @@ "2012-05-05": "Vesak Day", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-07-20": "Beginning of Ramadan", - "2012-07-22": "Beginning of Ramadan [In lieu]", + "2012-07-22": "Beginning of Ramadan (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", "2012-08-31": "National Day", - "2012-09-02": "National Day [In lieu]", + "2012-09-02": "National Day (in lieu)", "2012-09-16": "Malaysia Day", "2012-10-26": "Hari Raya Haji", - "2012-10-28": "Hari Raya Haji [In lieu]", + "2012-10-28": "Hari Raya Haji (in lieu)", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", "2012-12-20": "Hari Hol of Sultan Iskandar of Johor", @@ -1058,12 +1058,12 @@ "2013-02-25": "Thaipusam", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", - "2013-05-26": "Vesak Day [In lieu]", + "2013-05-26": "Vesak Day (in lieu)", "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2013-07-09": "Beginning of Ramadan", "2013-08-08": "Hari Raya Puasa", "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-11": "Second day of Hari Raya Puasa [In lieu]", + "2013-08-11": "Second day of Hari Raya Puasa (in lieu)", "2013-08-31": "National Day", "2013-09-16": "Malaysia Day", "2013-10-15": "Hari Raya Haji", @@ -1074,9 +1074,9 @@ "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2014-01-31": "Chinese New Year", "2014-02-01": "Chinese New Year Holiday", - "2014-02-02": "Chinese New Year [In lieu]", + "2014-02-02": "Chinese New Year (in lieu)", "2014-02-14": "Thaipusam", - "2014-02-16": "Thaipusam [In lieu]", + "2014-02-16": "Thaipusam (in lieu)", "2014-05-01": "Labour Day", "2014-05-13": "Vesak Day", "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1093,17 +1093,17 @@ "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2015-02-19": "Chinese New Year", "2015-02-20": "Chinese New Year Holiday", - "2015-02-22": "Chinese New Year Holiday [In lieu]", + "2015-02-22": "Chinese New Year Holiday (in lieu)", "2015-03-05": "Thaipusam", "2015-03-23": "Birthday of the Sultan of Johor", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Labour Day [In lieu]", + "2015-05-04": "Labour Day (in lieu)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-06-18": "Beginning of Ramadan", "2015-07-17": "Hari Raya Puasa", "2015-07-18": "Second day of Hari Raya Puasa", - "2015-07-19": "Hari Raya Puasa [In lieu]", + "2015-07-19": "Hari Raya Puasa (in lieu)", "2015-08-31": "National Day", "2015-09-16": "Malaysia Day", "2015-09-24": "Hari Raya Haji", @@ -1112,7 +1112,7 @@ "2015-11-19": "Hari Hol of Sultan Iskandar of Johor", "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2015-12-25": "Christmas Day", - "2015-12-27": "Christmas Day [In lieu]", + "2015-12-27": "Christmas Day (in lieu)", "2016-02-08": "Chinese New Year", "2016-02-09": "Chinese New Year Holiday", "2016-02-23": "Thaipusam", @@ -1126,14 +1126,14 @@ "2016-08-31": "National Day", "2016-09-12": "Hari Raya Haji", "2016-09-16": "Malaysia Day", - "2016-09-18": "Malaysia Day [In lieu]", + "2016-09-18": "Malaysia Day (in lieu)", "2016-10-02": "Awal Muharram (Hijri New Year)", "2016-10-29": "Deepavali", "2016-11-07": "Hari Hol of Sultan Iskandar of Johor", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", "2017-01-13": "Thaipusam", - "2017-01-15": "Thaipusam [In lieu]", + "2017-01-15": "Thaipusam (in lieu)", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", "2017-03-23": "Birthday of the Sultan of Johor", @@ -1145,18 +1145,18 @@ "2017-06-26": "Second day of Hari Raya Puasa", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", - "2017-09-03": "Hari Raya Haji [In lieu]", + "2017-09-03": "Hari Raya Haji (in lieu)", "2017-09-16": "Malaysia Day", "2017-09-22": "Awal Muharram (Hijri New Year)", "2017-10-18": "Deepavali", "2017-10-27": "Hari Hol of Sultan Iskandar of Johor", "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2017-12-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2017-12-25": "Christmas Day", "2018-01-31": "Thaipusam", "2018-02-16": "Chinese New Year", "2018-02-17": "Chinese New Year Holiday", - "2018-02-18": "Chinese New Year [In lieu]", + "2018-02-18": "Chinese New Year (in lieu)", "2018-03-23": "Birthday of the Sultan of Johor", "2018-05-01": "Labour Day", "2018-05-09": "Malaysia General Election Holiday", @@ -1164,10 +1164,10 @@ "2018-05-29": "Vesak Day", "2018-06-15": "Hari Raya Puasa", "2018-06-16": "Second day of Hari Raya Puasa", - "2018-06-17": "Hari Raya Puasa [In lieu]", + "2018-06-17": "Hari Raya Puasa (in lieu)", "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", - "2018-09-02": "National Day [In lieu]", + "2018-09-02": "National Day (in lieu)", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", @@ -1199,15 +1199,15 @@ "2020-02-08": "Thaipusam", "2020-03-23": "Birthday of the Sultan of Johor", "2020-04-24": "Beginning of Ramadan", - "2020-04-26": "Beginning of Ramadan [In lieu]", + "2020-04-26": "Beginning of Ramadan (in lieu)", "2020-05-01": "Labour Day", - "2020-05-03": "Labour Day [In lieu]", + "2020-05-03": "Labour Day (in lieu)", "2020-05-07": "Vesak Day", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-31": "Hari Raya Haji", - "2020-08-02": "Hari Raya Haji [In lieu]", + "2020-08-02": "Hari Raya Haji (in lieu)", "2020-08-20": "Awal Muharram (Hijri New Year)", "2020-08-31": "National Day", "2020-09-16": "Malaysia Day", @@ -1215,17 +1215,17 @@ "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2020-11-14": "Deepavali", "2020-12-25": "Christmas Day", - "2020-12-27": "Christmas Day [In lieu]", + "2020-12-27": "Christmas Day (in lieu)", "2021-01-28": "Thaipusam", "2021-02-12": "Chinese New Year", "2021-02-13": "Chinese New Year Holiday", - "2021-02-14": "Chinese New Year [In lieu]", + "2021-02-14": "Chinese New Year (in lieu)", "2021-03-23": "Birthday of the Sultan of Johor", "2021-04-13": "Beginning of Ramadan", "2021-05-01": "Labour Day", "2021-05-13": "Hari Raya Puasa", "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-16": "Second day of Hari Raya Puasa [In lieu]", + "2021-05-16": "Second day of Hari Raya Puasa (in lieu)", "2021-05-26": "Vesak Day", "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2021-07-20": "Hari Raya Haji", @@ -1252,7 +1252,7 @@ "2022-08-31": "National Day", "2022-09-03": "Hari Hol of Sultan Iskandar of Johor", "2022-09-16": "Malaysia Day", - "2022-09-18": "Malaysia Day [In lieu]", + "2022-09-18": "Malaysia Day (in lieu)", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", @@ -1302,7 +1302,7 @@ "2025-05-11": "Vesak Day (estimated)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", - "2025-06-08": "Hari Raya Haji (estimated) [In lieu]", + "2025-06-08": "Hari Raya Haji (estimated) (in lieu)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-07-31": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2025-08-31": "National Day", @@ -1315,10 +1315,10 @@ "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", "2026-03-20": "Hari Raya Puasa (estimated)", "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-03-22": "Hari Raya Puasa (estimated) [In lieu]", + "2026-03-22": "Hari Raya Puasa (estimated) (in lieu)", "2026-03-23": "Birthday of the Sultan of Johor", "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-03": "Labour Day [In lieu]; Vesak Day (estimated) [In lieu]", + "2026-05-03": "Labour Day (in lieu); Vesak Day (estimated) (in lieu)", "2026-05-27": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2026-06-16": "Awal Muharram (Hijri New Year) (estimated)", @@ -1328,9 +1328,9 @@ "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", - "2026-12-27": "Christmas Day [In lieu]", + "2026-12-27": "Christmas Day (in lieu)", "2027-01-22": "Thaipusam", - "2027-01-24": "Thaipusam [In lieu]", + "2027-01-24": "Thaipusam (in lieu)", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", "2027-02-08": "Beginning of Ramadan (estimated)", @@ -1352,13 +1352,13 @@ "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-01-28": "Beginning of Ramadan (estimated)", - "2028-01-30": "Beginning of Ramadan (estimated) [In lieu]", + "2028-01-30": "Beginning of Ramadan (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", "2028-03-23": "Birthday of the Sultan of Johor", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", - "2028-05-07": "Hari Raya Haji (estimated) [In lieu]", + "2028-05-07": "Hari Raya Haji (estimated) (in lieu)", "2028-05-09": "Vesak Day (estimated)", "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1382,7 +1382,7 @@ "2029-06-18": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", - "2029-09-02": "National Day [In lieu]", + "2029-09-02": "National Day (in lieu)", "2029-09-16": "Malaysia Day", "2029-11-04": "Deepavali", "2029-12-25": "Christmas Day", @@ -1402,14 +1402,14 @@ "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", - "2030-10-27": "Deepavali [In lieu]", + "2030-10-27": "Deepavali (in lieu)", "2030-12-25": "Christmas Day", "2030-12-26": "Beginning of Ramadan (estimated)", "2031-01-08": "Thaipusam", "2031-01-23": "Chinese New Year (estimated)", "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-01-26": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "2031-01-26": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", "2031-03-23": "Birthday of the Sultan of Johor", "2031-04-02": "Hari Raya Haji (estimated)", "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", @@ -1447,25 +1447,25 @@ "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-02-14": "Thaipusam", "2033-03-11": "Hari Raya Haji (estimated)", - "2033-03-13": "Hari Raya Haji (estimated) [In lieu]", + "2033-03-13": "Hari Raya Haji (estimated) (in lieu)", "2033-03-23": "Birthday of the Sultan of Johor", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-05": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2033-05-13": "Vesak Day (estimated)", - "2033-05-15": "Vesak Day (estimated) [In lieu]", + "2033-05-15": "Vesak Day (estimated) (in lieu)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", - "2033-09-18": "Malaysia Day [In lieu]", + "2033-09-18": "Malaysia Day (in lieu)", "2033-10-21": "Deepavali", - "2033-10-23": "Deepavali [In lieu]", + "2033-10-23": "Deepavali (in lieu)", "2033-11-23": "Beginning of Ramadan (estimated)", "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Hari Raya Puasa (estimated) [In lieu]", + "2033-12-26": "Hari Raya Puasa (estimated) (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", "2034-03-01": "Hari Raya Haji (estimated)", @@ -1486,10 +1486,10 @@ "2034-12-25": "Christmas Day", "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-11": "Chinese New Year Holiday (estimated) [In lieu]", + "2035-02-11": "Chinese New Year Holiday (estimated) (in lieu)", "2035-02-18": "Hari Raya Haji (estimated)", "2035-02-23": "Thaipusam", - "2035-02-25": "Thaipusam [In lieu]", + "2035-02-25": "Thaipusam (in lieu)", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-03-23": "Birthday of the Sultan of Johor", "2035-04-14": "Hari Hol of Sultan Iskandar of Johor (estimated)", @@ -1498,7 +1498,7 @@ "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", - "2035-09-02": "National Day [In lieu]", + "2035-09-02": "National Day (in lieu)", "2035-09-16": "Malaysia Day", "2035-10-29": "Deepavali", "2035-11-01": "Beginning of Ramadan (estimated)", @@ -1530,9 +1530,9 @@ "2037-03-23": "Birthday of the Sultan of Johor; Hari Hol of Sultan Iskandar of Johor (estimated)", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-03": "Labour Day [In lieu]", + "2037-05-03": "Labour Day (in lieu)", "2037-05-29": "Vesak Day (estimated)", - "2037-05-31": "Vesak Day (estimated) [In lieu]", + "2037-05-31": "Vesak Day (estimated) (in lieu)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-08-31": "National Day", "2037-09-16": "Malaysia Day", @@ -1541,13 +1541,13 @@ "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", "2037-12-25": "Christmas Day", - "2037-12-27": "Christmas Day [In lieu]", + "2037-12-27": "Christmas Day (in lieu)", "2038-01-16": "Hari Raya Haji (estimated)", "2038-02-04": "Chinese New Year (estimated)", "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2038-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2038-02-19": "Thaipusam", - "2038-02-21": "Thaipusam [In lieu]", + "2038-02-21": "Thaipusam (in lieu)", "2038-03-12": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2038-03-23": "Birthday of the Sultan of Johor", "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1560,7 +1560,7 @@ "2038-10-26": "Deepavali", "2038-10-29": "Hari Raya Puasa (estimated)", "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-10-31": "Hari Raya Puasa (estimated) [In lieu]", + "2038-10-31": "Hari Raya Puasa (estimated) (in lieu)", "2038-12-25": "Christmas Day", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", @@ -1575,7 +1575,7 @@ "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-09-18": "Malaysia Day [In lieu]", + "2039-09-18": "Malaysia Day (in lieu)", "2039-09-19": "Beginning of Ramadan (estimated)", "2039-10-19": "Hari Raya Puasa (estimated)", "2039-10-20": "Second day of Hari Raya Puasa (estimated)", @@ -1591,28 +1591,28 @@ "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", - "2040-05-27": "Vesak Day (estimated) [In lieu]", + "2040-05-27": "Vesak Day (estimated) (in lieu)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", - "2040-09-02": "National Day [In lieu]", + "2040-09-02": "National Day (in lieu)", "2040-09-07": "Beginning of Ramadan (estimated)", - "2040-09-09": "Beginning of Ramadan (estimated) [In lieu]", + "2040-09-09": "Beginning of Ramadan (estimated) (in lieu)", "2040-09-16": "Malaysia Day", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", - "2040-12-16": "Hari Raya Haji (estimated) [In lieu]", + "2040-12-16": "Hari Raya Haji (estimated) (in lieu)", "2040-12-25": "Christmas Day", "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", "2041-02-01": "Chinese New Year (estimated)", "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-03": "Chinese New Year (estimated) [In lieu]", + "2041-02-03": "Chinese New Year (estimated) (in lieu)", "2041-02-07": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2041-02-15": "Thaipusam", - "2041-02-17": "Thaipusam [In lieu]", + "2041-02-17": "Thaipusam (in lieu)", "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2041-03-23": "Birthday of the Sultan of Johor", "2041-05-01": "Labour Day", "2041-05-14": "Vesak Day (estimated)", @@ -1622,7 +1622,7 @@ "2041-09-16": "Malaysia Day", "2041-09-26": "Hari Raya Puasa (estimated)", "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-09-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2041-09-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2041-10-23": "Deepavali", "2041-12-04": "Hari Raya Haji (estimated)", "2041-12-24": "Awal Muharram (Hijri New Year) (estimated)", @@ -1651,20 +1651,20 @@ "2043-02-24": "Thaipusam", "2043-03-23": "Birthday of the Sultan of Johor", "2043-05-01": "Labour Day", - "2043-05-03": "Labour Day [In lieu]", + "2043-05-03": "Labour Day (in lieu)", "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2043-08-06": "Beginning of Ramadan (estimated)", "2043-08-31": "National Day", "2043-09-04": "Hari Raya Puasa (estimated)", "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-06": "Hari Raya Puasa (estimated) [In lieu]", + "2043-09-06": "Hari Raya Puasa (estimated) (in lieu)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", "2043-11-12": "Hari Raya Haji (estimated)", "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", - "2043-12-27": "Christmas Day [In lieu]", + "2043-12-27": "Christmas Day (in lieu)", "2044-01-07": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", @@ -1679,7 +1679,7 @@ "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-09-18": "Malaysia Day [In lieu]", + "2044-09-18": "Malaysia Day (in lieu)", "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", @@ -1688,7 +1688,7 @@ "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-02-19": "Chinese New Year (estimated) [In lieu]", + "2045-02-19": "Chinese New Year (estimated) (in lieu)", "2045-03-04": "Thaipusam", "2045-03-23": "Birthday of the Sultan of Johor", "2045-05-01": "Labour Day; Vesak Day (estimated)", @@ -1704,7 +1704,7 @@ "2045-12-15": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2045-12-25": "Christmas Day", "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2046-02-06": "Chinese New Year (estimated)", "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-02-21": "Thaipusam", @@ -1715,9 +1715,9 @@ "2046-07-05": "Beginning of Ramadan (estimated)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-05": "Hari Raya Puasa (estimated) [In lieu]", + "2046-08-05": "Hari Raya Puasa (estimated) (in lieu)", "2046-08-31": "National Day", - "2046-09-02": "National Day [In lieu]", + "2046-09-02": "National Day (in lieu)", "2046-09-16": "Malaysia Day", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", @@ -1726,7 +1726,7 @@ "2046-12-25": "Christmas Day", "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-11": "Thaipusam", - "2047-01-13": "Thaipusam [In lieu]", + "2047-01-13": "Thaipusam (in lieu)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", "2047-03-23": "Birthday of the Sultan of Johor", @@ -1741,22 +1741,22 @@ "2047-09-30": "Hari Raya Haji (estimated)", "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", - "2047-11-17": "Deepavali [In lieu]", + "2047-11-17": "Deepavali (in lieu)", "2047-11-24": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-16": "Chinese New Year (estimated) [In lieu]", + "2048-02-16": "Chinese New Year (estimated) (in lieu)", "2048-02-28": "Thaipusam", - "2048-03-01": "Thaipusam [In lieu]", + "2048-03-01": "Thaipusam (in lieu)", "2048-03-23": "Birthday of the Sultan of Johor", "2048-05-01": "Labour Day", - "2048-05-03": "Labour Day [In lieu]", + "2048-05-03": "Labour Day (in lieu)", "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-12": "Beginning of Ramadan (estimated)", - "2048-06-14": "Beginning of Ramadan (estimated) [In lieu]", + "2048-06-14": "Beginning of Ramadan (estimated) (in lieu)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", "2048-08-31": "National Day", @@ -1766,9 +1766,9 @@ "2048-11-04": "Deepavali", "2048-11-12": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-12-25": "Christmas Day", - "2048-12-27": "Christmas Day [In lieu]", + "2048-12-27": "Christmas Day (in lieu)", "2049-02-02": "Chinese New Year (estimated)", "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-02-17": "Thaipusam", @@ -1779,7 +1779,7 @@ "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-07-01": "Hari Raya Puasa (estimated)", "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-07-04": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2049-07-04": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2049-08-31": "National Day", "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-16": "Malaysia Day", @@ -1802,7 +1802,7 @@ "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-09-18": "Malaysia Day [In lieu]", + "2050-09-18": "Malaysia Day (in lieu)", "2050-10-22": "Hari Hol of Sultan Iskandar of Johor (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", diff --git a/snapshots/countries/MY_KDH.json b/snapshots/countries/MY_KDH.json index 517403a4e..5a42689d0 100644 --- a/snapshots/countries/MY_KDH.json +++ b/snapshots/countries/MY_KDH.json @@ -2,7 +2,7 @@ "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-02-19": "Chinese New Year (estimated) [In lieu]", + "1950-02-19": "Chinese New Year (estimated) (in lieu)", "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-05-14": "Isra and Mi'raj (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -15,21 +15,21 @@ "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1950-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1950-12-25": "Christmas Day", "1951-02-06": "Chinese New Year (estimated)", "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", "1951-05-04": "Isra and Mi'raj (estimated)", - "1951-05-06": "Isra and Mi'raj (estimated) [In lieu]", + "1951-05-06": "Isra and Mi'raj (estimated) (in lieu)", "1951-05-20": "Vesak Day (estimated)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-06": "Beginning of Ramadan (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-07-08": "Hari Raya Puasa (estimated) [In lieu]", + "1951-07-08": "Hari Raya Puasa (estimated) (in lieu)", "1951-08-31": "National Day", - "1951-09-02": "National Day [In lieu]", + "1951-09-02": "National Day (in lieu)", "1951-09-12": "Hari Raya Haji (estimated)", "1951-09-13": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", @@ -55,7 +55,7 @@ "1953-02-15": "Chinese New Year Holiday (estimated)", "1953-04-12": "Isra and Mi'raj (estimated)", "1953-05-01": "Labour Day", - "1953-05-03": "Labour Day [In lieu]", + "1953-05-03": "Labour Day (in lieu)", "1953-05-14": "Beginning of Ramadan (estimated)", "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -63,13 +63,13 @@ "1953-06-14": "Second day of Hari Raya Puasa (estimated)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-21": "Hari Raya Haji (estimated)", - "1953-08-23": "Hari Raya Haji (estimated) [In lieu]", + "1953-08-23": "Hari Raya Haji (estimated) (in lieu)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", "1953-11-05": "Deepavali", "1953-11-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1953-12-25": "Christmas Day", - "1953-12-27": "Christmas Day [In lieu]", + "1953-12-27": "Christmas Day (in lieu)", "1954-02-03": "Chinese New Year (estimated)", "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-04-01": "Isra and Mi'raj (estimated)", @@ -92,7 +92,7 @@ "1955-04-24": "Beginning of Ramadan (estimated)", "1955-05-01": "Labour Day", "1955-05-06": "Vesak Day (estimated)", - "1955-05-08": "Vesak Day (estimated) [In lieu]", + "1955-05-08": "Vesak Day (estimated) (in lieu)", "1955-05-23": "Hari Raya Puasa (estimated)", "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -110,21 +110,21 @@ "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-13": "Hari Raya Puasa (estimated) [In lieu]", + "1956-05-13": "Hari Raya Puasa (estimated) (in lieu)", "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1956-07-19": "Hari Raya Haji (estimated)", "1956-07-20": "Hari Raya Haji (estimated)", - "1956-07-22": "Hari Raya Haji (estimated) [In lieu]", + "1956-07-22": "Hari Raya Haji (estimated) (in lieu)", "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", "1956-08-31": "National Day", - "1956-09-02": "National Day [In lieu]", + "1956-09-02": "National Day (in lieu)", "1956-10-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1956-11-01": "Deepavali", "1956-12-25": "Christmas Day", "1957-01-31": "Chinese New Year (estimated)", "1957-02-01": "Chinese New Year Holiday (estimated)", - "1957-02-03": "Chinese New Year Holiday (estimated) [In lieu]", + "1957-02-03": "Chinese New Year Holiday (estimated) (in lieu)", "1957-02-27": "Isra and Mi'raj (estimated)", "1957-04-01": "Beginning of Ramadan (estimated)", "1957-05-01": "Hari Raya Puasa (estimated); Labour Day", @@ -142,7 +142,7 @@ "1958-02-18": "Chinese New Year (estimated)", "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-21": "Beginning of Ramadan (estimated)", - "1958-03-23": "Beginning of Ramadan (estimated) [In lieu]", + "1958-03-23": "Beginning of Ramadan (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", "1958-05-01": "Labour Day", @@ -150,25 +150,25 @@ "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-06-28": "Hari Raya Haji (estimated)", - "1958-06-29": "Hari Raya Haji (estimated) [In lieu]", + "1958-06-29": "Hari Raya Haji (estimated) (in lieu)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1958-09-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1958-11-09": "Deepavali", "1958-12-25": "Christmas Day", "1959-02-06": "Isra and Mi'raj (estimated)", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Isra and Mi'raj (estimated) [In lieu]", + "1959-02-10": "Isra and Mi'raj (estimated) (in lieu)", "1959-03-11": "Beginning of Ramadan (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-04-12": "Hari Raya Puasa (estimated) [In lieu]", + "1959-04-12": "Hari Raya Puasa (estimated) (in lieu)", "1959-05-01": "Labour Day", - "1959-05-03": "Labour Day [In lieu]", + "1959-05-03": "Labour Day (in lieu)", "1959-05-22": "Vesak Day (estimated)", - "1959-05-24": "Vesak Day (estimated) [In lieu]", + "1959-05-24": "Vesak Day (estimated) (in lieu)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1959-06-17": "Hari Raya Haji (estimated)", "1959-06-18": "Hari Raya Haji (estimated)", @@ -176,13 +176,13 @@ "1959-08-31": "National Day", "1959-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1959-10-30": "Deepavali", - "1959-11-01": "Deepavali [In lieu]", + "1959-11-01": "Deepavali (in lieu)", "1959-12-25": "Christmas Day", - "1959-12-27": "Christmas Day [In lieu]", + "1959-12-27": "Christmas Day (in lieu)", "1960-01-26": "Isra and Mi'raj (estimated)", "1960-01-28": "Chinese New Year (estimated)", "1960-01-29": "Chinese New Year Holiday (estimated)", - "1960-01-31": "Chinese New Year Holiday (estimated) [In lieu]", + "1960-01-31": "Chinese New Year Holiday (estimated) (in lieu)", "1960-02-28": "Beginning of Ramadan (estimated)", "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", @@ -203,7 +203,7 @@ "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-26": "Hari Raya Haji (estimated)", - "1961-05-28": "Hari Raya Haji (estimated) [In lieu]", + "1961-05-28": "Hari Raya Haji (estimated) (in lieu)", "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", @@ -220,44 +220,44 @@ "1962-05-14": "Hari Raya Haji (estimated)", "1962-05-15": "Hari Raya Haji (estimated)", "1962-05-18": "Vesak Day (estimated)", - "1962-05-20": "Vesak Day (estimated) [In lieu]", + "1962-05-20": "Vesak Day (estimated) (in lieu)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1962-08-31": "National Day", - "1962-09-02": "National Day [In lieu]", + "1962-09-02": "National Day (in lieu)", "1962-10-26": "Deepavali", - "1962-10-28": "Deepavali [In lieu]", + "1962-10-28": "Deepavali (in lieu)", "1962-12-24": "Isra and Mi'raj (estimated)", "1962-12-25": "Christmas Day", "1963-01-25": "Chinese New Year (estimated)", "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1963-01-27": "Chinese New Year (estimated) [In lieu]", + "1963-01-27": "Chinese New Year (estimated) (in lieu)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-04": "Hari Raya Haji (estimated)", - "1963-05-05": "Hari Raya Haji (estimated) [In lieu]", + "1963-05-05": "Hari Raya Haji (estimated) (in lieu)", "1963-05-08": "Vesak Day (estimated)", "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1963-08-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1963-08-31": "National Day", "1963-11-14": "Deepavali", "1963-12-13": "Isra and Mi'raj (estimated)", - "1963-12-15": "Isra and Mi'raj (estimated) [In lieu]", + "1963-12-15": "Isra and Mi'raj (estimated) (in lieu)", "1963-12-25": "Christmas Day", "1964-01-15": "Beginning of Ramadan (estimated)", "1964-02-13": "Chinese New Year (estimated)", "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-16": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1964-02-16": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", "1964-04-22": "Hari Raya Haji (estimated)", "1964-04-23": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", - "1964-05-03": "Labour Day [In lieu]", + "1964-05-03": "Labour Day (in lieu)", "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -266,7 +266,7 @@ "1964-11-02": "Deepavali", "1964-12-01": "Isra and Mi'raj (estimated)", "1964-12-25": "Christmas Day", - "1964-12-27": "Christmas Day [In lieu]", + "1964-12-27": "Christmas Day (in lieu)", "1965-01-03": "Beginning of Ramadan (estimated)", "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", @@ -278,33 +278,33 @@ "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", - "1965-10-24": "Deepavali [In lieu]", + "1965-10-24": "Deepavali (in lieu)", "1965-11-20": "Isra and Mi'raj (estimated)", "1965-12-23": "Beginning of Ramadan (estimated)", "1965-12-25": "Christmas Day", "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Chinese New Year (estimated) [In lieu]", + "1966-01-24": "Chinese New Year (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-02": "Hari Raya Haji (estimated)", - "1966-04-03": "Hari Raya Haji (estimated) [In lieu]", + "1966-04-03": "Hari Raya Haji (estimated) (in lieu)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1966-07-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1966-08-31": "National Day", "1966-11-10": "Deepavali; Isra and Mi'raj (estimated)", "1966-12-13": "Beginning of Ramadan (estimated)", "1966-12-25": "Christmas Day", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", - "1967-01-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1967-01-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1967-02-09": "Chinese New Year (estimated)", "1967-02-10": "Chinese New Year Holiday (estimated)", - "1967-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "1967-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "1967-03-21": "Hari Raya Haji (estimated)", "1967-03-22": "Hari Raya Haji (estimated)", "1967-04-11": "Awal Muharram (Hijri New Year) (estimated)", @@ -339,7 +339,7 @@ "1969-02-18": "Chinese New Year Holiday (estimated)", "1969-02-27": "Hari Raya Haji (estimated)", "1969-02-28": "Hari Raya Haji (estimated)", - "1969-03-02": "Hari Raya Haji (estimated) [In lieu]", + "1969-03-02": "Hari Raya Haji (estimated) (in lieu)", "1969-03-19": "Awal Muharram (Hijri New Year) (estimated)", "1969-05-01": "Labour Day; Vesak Day (estimated)", "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -353,12 +353,12 @@ "1969-12-25": "Christmas Day", "1970-02-06": "Chinese New Year (estimated)", "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-08": "Chinese New Year (estimated) [In lieu]", + "1970-02-08": "Chinese New Year (estimated) (in lieu)", "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-17": "Hari Raya Haji (estimated)", "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", "1970-05-01": "Labour Day", - "1970-05-03": "Labour Day [In lieu]", + "1970-05-03": "Labour Day (in lieu)", "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -369,7 +369,7 @@ "1970-11-30": "Hari Raya Puasa (estimated)", "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", - "1970-12-27": "Christmas Day [In lieu]", + "1970-12-27": "Christmas Day (in lieu)", "1971-01-27": "Chinese New Year (estimated)", "1971-01-28": "Chinese New Year Holiday (estimated)", "1971-02-06": "Hari Raya Haji (estimated)", @@ -378,16 +378,16 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1971-05-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-09-17": "Isra and Mi'raj (estimated)", - "1971-09-19": "Isra and Mi'raj (estimated) [In lieu]", + "1971-09-19": "Isra and Mi'raj (estimated) (in lieu)", "1971-10-20": "Beginning of Ramadan (estimated)", "1971-11-16": "Deepavali", "1971-11-19": "Hari Raya Puasa (estimated)", "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-11-21": "Hari Raya Puasa (estimated) [In lieu]", + "1971-11-21": "Hari Raya Puasa (estimated) (in lieu)", "1971-12-25": "Christmas Day", "1972-01-26": "Hari Raya Haji (estimated)", "1972-01-27": "Hari Raya Haji (estimated)", @@ -414,7 +414,7 @@ "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1973-08-25": "Isra and Mi'raj (estimated)", "1973-08-31": "National Day", - "1973-09-02": "National Day [In lieu]", + "1973-09-02": "National Day (in lieu)", "1973-09-27": "Beginning of Ramadan (estimated)", "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", @@ -422,7 +422,7 @@ "1973-12-25": "Christmas Day", "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-04": "Hari Raya Haji (estimated)", - "1974-01-06": "Hari Raya Haji (estimated) [In lieu]", + "1974-01-06": "Hari Raya Haji (estimated) (in lieu)", "1974-01-23": "Chinese New Year (estimated)", "1974-01-24": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "1974-04-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -457,7 +457,7 @@ "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1976-03-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -466,16 +466,16 @@ "1976-08-31": "National Day", "1976-09-24": "Hari Raya Puasa (estimated)", "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-09-26": "Hari Raya Puasa (estimated) [In lieu]", + "1976-09-26": "Hari Raya Puasa (estimated) (in lieu)", "1976-11-19": "Deepavali", - "1976-11-21": "Deepavali [In lieu]", + "1976-11-21": "Deepavali (in lieu)", "1976-12-01": "Hari Raya Haji (estimated)", "1976-12-02": "Hari Raya Haji (estimated)", "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", "1977-02-18": "Chinese New Year (estimated)", "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-02-20": "Chinese New Year (estimated) [In lieu]", + "1977-02-20": "Chinese New Year (estimated) (in lieu)", "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", @@ -504,24 +504,24 @@ "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-11-11": "Hari Raya Haji (estimated)", - "1978-11-12": "Hari Raya Haji (estimated) [In lieu]", + "1978-11-12": "Hari Raya Haji (estimated) (in lieu)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1979-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1979-06-22": "Isra and Mi'raj (estimated)", - "1979-06-24": "Isra and Mi'raj (estimated) [In lieu]", + "1979-06-24": "Isra and Mi'raj (estimated) (in lieu)", "1979-07-25": "Beginning of Ramadan (estimated)", "1979-08-23": "Hari Raya Puasa (estimated)", "1979-08-24": "Second day of Hari Raya Puasa (estimated)", - "1979-08-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1979-08-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1979-08-31": "National Day", - "1979-09-02": "National Day [In lieu]", + "1979-09-02": "National Day (in lieu)", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-01": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", @@ -546,9 +546,9 @@ "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", - "1981-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "1981-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "1981-05-01": "Labour Day", - "1981-05-03": "Labour Day [In lieu]", + "1981-05-03": "Labour Day (in lieu)", "1981-05-18": "Vesak Day (estimated)", "1981-05-31": "Isra and Mi'raj (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -558,11 +558,11 @@ "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-09": "Hari Raya Haji (estimated)", - "1981-10-11": "Hari Raya Haji (estimated) [In lieu]", + "1981-10-11": "Hari Raya Haji (estimated) (in lieu)", "1981-10-26": "Deepavali", "1981-10-28": "Awal Muharram (Hijri New Year) (estimated)", "1981-12-25": "Christmas Day", - "1981-12-27": "Christmas Day [In lieu]", + "1981-12-27": "Christmas Day (in lieu)", "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year Holiday (estimated)", @@ -585,7 +585,7 @@ "1983-05-01": "Labour Day", "1983-05-10": "Isra and Mi'raj (estimated)", "1983-05-27": "Vesak Day (estimated)", - "1983-05-29": "Vesak Day (estimated) [In lieu]", + "1983-05-29": "Vesak Day (estimated) (in lieu)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-12": "Beginning of Ramadan (estimated)", "1983-07-11": "Hari Raya Puasa (estimated)", @@ -596,11 +596,11 @@ "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1983-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1983-12-25": "Christmas Day", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", - "1984-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1984-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1984-04-28": "Isra and Mi'raj (estimated)", "1984-05-01": "Labour Day", "1984-05-15": "Vesak Day (estimated)", @@ -609,7 +609,7 @@ "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", "1984-08-31": "National Day", - "1984-09-02": "National Day [In lieu]", + "1984-09-02": "National Day (in lieu)", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-06": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -637,34 +637,34 @@ "1986-04-06": "Isra and Mi'raj (estimated)", "1986-05-01": "Labour Day", "1986-05-09": "Beginning of Ramadan (estimated)", - "1986-05-11": "Beginning of Ramadan (estimated) [In lieu]", + "1986-05-11": "Beginning of Ramadan (estimated) (in lieu)", "1986-05-23": "Vesak Day (estimated)", - "1986-05-25": "Vesak Day (estimated) [In lieu]", + "1986-05-25": "Vesak Day (estimated) (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-16": "Hari Raya Haji (estimated)", - "1986-08-17": "Hari Raya Haji (estimated) [In lieu]", + "1986-08-17": "Hari Raya Haji (estimated) (in lieu)", "1986-08-31": "National Day", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", - "1986-11-02": "Deepavali [In lieu]", + "1986-11-02": "Deepavali (in lieu)", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1986-11-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1986-12-25": "Christmas Day", "1987-01-29": "Chinese New Year (estimated)", "1987-01-30": "Chinese New Year Holiday (estimated)", - "1987-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "1987-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "1987-03-27": "Isra and Mi'raj (estimated)", - "1987-03-29": "Isra and Mi'raj (estimated) [In lieu]", + "1987-03-29": "Isra and Mi'raj (estimated) (in lieu)", "1987-04-29": "Beginning of Ramadan (estimated)", "1987-05-01": "Labour Day", - "1987-05-03": "Labour Day [In lieu]", + "1987-05-03": "Labour Day (in lieu)", "1987-05-12": "Vesak Day (estimated)", "1987-05-28": "Hari Raya Puasa (estimated)", "1987-05-29": "Second day of Hari Raya Puasa (estimated)", - "1987-05-31": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1987-05-31": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1987-08-04": "Hari Raya Haji (estimated)", "1987-08-05": "Hari Raya Haji (estimated)", @@ -673,7 +673,7 @@ "1987-11-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1987-11-19": "Deepavali", "1987-12-25": "Christmas Day", - "1987-12-27": "Christmas Day [In lieu]", + "1987-12-27": "Christmas Day (in lieu)", "1988-02-17": "Chinese New Year (estimated)", "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-15": "Isra and Mi'raj (estimated)", @@ -694,21 +694,21 @@ "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-03-05": "Isra and Mi'raj (estimated)", "1989-04-07": "Beginning of Ramadan (estimated)", - "1989-04-09": "Beginning of Ramadan (estimated) [In lieu]", + "1989-04-09": "Beginning of Ramadan (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", "1989-05-19": "Vesak Day (estimated)", - "1989-05-21": "Vesak Day (estimated) [In lieu]", + "1989-05-21": "Vesak Day (estimated) (in lieu)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", "1989-07-14": "Hari Raya Haji (estimated)", - "1989-07-16": "Hari Raya Haji (estimated) [In lieu]", + "1989-07-16": "Hari Raya Haji (estimated) (in lieu)", "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", "1989-08-31": "National Day", "1989-10-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1989-10-27": "Deepavali", - "1989-10-29": "Deepavali [In lieu]", + "1989-10-29": "Deepavali (in lieu)", "1989-12-25": "Christmas Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", @@ -716,7 +716,7 @@ "1990-03-27": "Beginning of Ramadan (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", - "1990-04-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1990-04-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1990-05-01": "Labour Day", "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -724,14 +724,14 @@ "1990-07-03": "Hari Raya Haji (estimated)", "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", "1990-08-31": "National Day", - "1990-09-02": "National Day [In lieu]", + "1990-09-02": "National Day (in lieu)", "1990-10-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1990-11-15": "Deepavali", "1990-12-25": "Christmas Day", "1991-02-11": "Isra and Mi'raj (estimated)", "1991-02-15": "Chinese New Year (estimated)", "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-02-17": "Chinese New Year (estimated) [In lieu]", + "1991-02-17": "Chinese New Year (estimated) (in lieu)", "1991-03-17": "Beginning of Ramadan (estimated)", "1991-04-15": "Hari Raya Puasa (estimated)", "1991-04-16": "Second day of Hari Raya Puasa (estimated)", @@ -743,29 +743,29 @@ "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1991-09-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-01-31": "Isra and Mi'raj (estimated)", - "1992-02-02": "Isra and Mi'raj (estimated) [In lieu]", + "1992-02-02": "Isra and Mi'raj (estimated) (in lieu)", "1992-02-04": "Chinese New Year (estimated)", "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-03-05": "Beginning of Ramadan (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", "1992-05-01": "Labour Day", - "1992-05-03": "Labour Day [In lieu]", + "1992-05-03": "Labour Day (in lieu)", "1992-05-17": "Vesak Day (estimated)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-06-12": "Hari Raya Haji (estimated)", - "1992-06-14": "Hari Raya Haji (estimated) [In lieu]", + "1992-06-14": "Hari Raya Haji (estimated) (in lieu)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", "1992-12-25": "Christmas Day", - "1992-12-27": "Christmas Day [In lieu]", + "1992-12-27": "Christmas Day (in lieu)", "1993-01-20": "Isra and Mi'raj (estimated)", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", @@ -781,23 +781,23 @@ "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", - "1993-11-14": "Deepavali [In lieu]", + "1993-11-14": "Deepavali (in lieu)", "1993-12-25": "Christmas Day", "1994-01-09": "Isra and Mi'raj (estimated)", "1994-02-10": "Chinese New Year (estimated)", "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", - "1994-02-13": "Beginning of Ramadan (estimated) [In lieu]; Chinese New Year Holiday (estimated) [In lieu]", + "1994-02-13": "Beginning of Ramadan (estimated) (in lieu); Chinese New Year Holiday (estimated) (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", "1994-05-01": "Labour Day", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-21": "Hari Raya Haji (estimated)", - "1994-05-22": "Hari Raya Haji (estimated) [In lieu]", + "1994-05-22": "Hari Raya Haji (estimated) (in lieu)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1994-08-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", @@ -806,7 +806,7 @@ "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-03-02": "Hari Raya Puasa (estimated)", "1995-03-03": "Second day of Hari Raya Puasa (estimated)", - "1995-03-05": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1995-03-05": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-10": "Hari Raya Haji (estimated)", @@ -833,14 +833,14 @@ "1996-12-08": "Isra and Mi'raj (estimated)", "1996-12-25": "Christmas Day", "1997-01-10": "Beginning of Ramadan (estimated)", - "1997-01-12": "Beginning of Ramadan (estimated) [In lieu]", + "1997-01-12": "Beginning of Ramadan (estimated) (in lieu)", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Chinese New Year (estimated) [In lieu]", + "1997-02-10": "Chinese New Year (estimated) (in lieu)", "1997-04-17": "Hari Raya Haji (estimated)", "1997-04-18": "Hari Raya Haji (estimated)", - "1997-04-20": "Hari Raya Haji (estimated) [In lieu]", + "1997-04-20": "Hari Raya Haji (estimated) (in lieu)", "1997-05-01": "Labour Day", "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", "1997-05-21": "Vesak Day (estimated)", @@ -854,12 +854,12 @@ "1998-01-28": "Chinese New Year (estimated)", "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1998-01-30": "Second day of Hari Raya Puasa (estimated)", - "1998-02-01": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1998-02-01": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1998-04-07": "Hari Raya Haji (estimated)", "1998-04-08": "Hari Raya Haji (estimated)", "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", - "1998-05-03": "Labour Day [In lieu]", + "1998-05-03": "Labour Day (in lieu)", "1998-05-10": "Vesak Day (estimated)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -868,7 +868,7 @@ "1998-11-17": "Deepavali", "1998-12-19": "Beginning of Ramadan (estimated)", "1998-12-25": "Christmas Day", - "1998-12-27": "Christmas Day [In lieu]", + "1998-12-27": "Christmas Day (in lieu)", "1999-01-18": "Hari Raya Puasa (estimated)", "1999-01-19": "Second day of Hari Raya Puasa (estimated)", "1999-02-16": "Chinese New Year (estimated)", @@ -883,7 +883,7 @@ "1999-08-31": "National Day", "1999-11-05": "Isra and Mi'raj (estimated)", "1999-11-06": "Deepavali", - "1999-11-07": "Isra and Mi'raj (estimated) [In lieu]", + "1999-11-07": "Isra and Mi'raj (estimated) (in lieu)", "1999-11-29": "Malaysia General Election Holiday", "1999-12-09": "Beginning of Ramadan (estimated)", "1999-12-25": "Christmas Day", @@ -893,7 +893,7 @@ "2000-02-06": "Chinese New Year Holiday (estimated)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-03-17": "Hari Raya Haji (estimated)", - "2000-03-19": "Hari Raya Haji (estimated) [In lieu]", + "2000-03-19": "Hari Raya Haji (estimated) (in lieu)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", "2000-05-18": "Vesak Day (estimated)", @@ -916,7 +916,7 @@ "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2001-08-31": "National Day", - "2001-09-02": "National Day [In lieu]", + "2001-09-02": "National Day (in lieu)", "2001-10-15": "Isra and Mi'raj", "2001-11-14": "Deepavali", "2001-11-17": "Beginning of Ramadan", @@ -930,17 +930,17 @@ "2002-03-15": "Awal Muharram (Hijri New Year)", "2002-05-01": "Labour Day", "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2002-05-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2002-05-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2002-05-27": "Vesak Day", "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2002-08-31": "National Day", "2002-10-04": "Isra and Mi'raj", - "2002-10-06": "Isra and Mi'raj [In lieu]", + "2002-10-06": "Isra and Mi'raj (in lieu)", "2002-11-03": "Deepavali", "2002-11-06": "Beginning of Ramadan", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-08": "Hari Raya Puasa [In lieu]", + "2002-12-08": "Hari Raya Puasa (in lieu)", "2002-12-25": "Christmas Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", @@ -960,7 +960,7 @@ "2003-12-25": "Christmas Day", "2004-01-22": "Chinese New Year", "2004-01-23": "Chinese New Year Holiday", - "2004-01-25": "Chinese New Year Holiday [In lieu]", + "2004-01-25": "Chinese New Year Holiday (in lieu)", "2004-02-02": "Hari Raya Haji", "2004-02-03": "Hari Raya Haji", "2004-02-22": "Awal Muharram (Hijri New Year)", @@ -977,7 +977,7 @@ "2004-12-25": "Christmas Day", "2005-01-21": "Hari Raya Haji", "2005-01-22": "Hari Raya Haji", - "2005-01-23": "Hari Raya Haji [In lieu]", + "2005-01-23": "Hari Raya Haji (in lieu)", "2005-02-09": "Chinese New Year", "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -990,7 +990,7 @@ "2005-11-01": "Deepavali", "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", - "2005-11-06": "Second day of Hari Raya Puasa [In lieu]", + "2005-11-06": "Second day of Hari Raya Puasa (in lieu)", "2005-12-25": "Christmas Day", "2006-01-10": "Hari Raya Haji", "2006-01-11": "Hari Raya Haji", @@ -1000,7 +1000,7 @@ "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", "2006-05-12": "Vesak Day", - "2006-05-14": "Vesak Day [In lieu]", + "2006-05-14": "Vesak Day (in lieu)", "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2006-08-22": "Isra and Mi'raj", "2006-08-31": "National Day", @@ -1019,19 +1019,19 @@ "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2007-08-11": "Isra and Mi'raj", "2007-08-31": "National Day", - "2007-09-02": "National Day [In lieu]", + "2007-09-02": "National Day (in lieu)", "2007-09-13": "Beginning of Ramadan", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-21": "Hari Raya Haji", - "2007-12-23": "Hari Raya Haji [In lieu]", + "2007-12-23": "Hari Raya Haji (in lieu)", "2007-12-25": "Christmas Day", "2008-01-10": "Awal Muharram (Hijri New Year)", "2008-02-07": "Chinese New Year", "2008-02-08": "Chinese New Year Holiday", - "2008-02-10": "Chinese New Year Holiday [In lieu]", + "2008-02-10": "Chinese New Year Holiday (in lieu)", "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2008-05-01": "Labour Day", "2008-05-19": "Vesak Day", @@ -1050,7 +1050,7 @@ "2009-01-27": "Chinese New Year Holiday", "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2009-05-01": "Labour Day", - "2009-05-03": "Labour Day [In lieu]", + "2009-05-03": "Labour Day (in lieu)", "2009-05-09": "Vesak Day", "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2009-07-20": "Isra and Mi'raj", @@ -1063,32 +1063,32 @@ "2009-11-29": "Hari Raya Haji", "2009-12-18": "Awal Muharram (Hijri New Year)", "2009-12-25": "Christmas Day", - "2009-12-27": "Christmas Day [In lieu]", + "2009-12-27": "Christmas Day (in lieu)", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2010-02-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2010-02-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2010-05-01": "Labour Day", "2010-05-28": "Vesak Day", - "2010-05-30": "Vesak Day [In lieu]", + "2010-05-30": "Vesak Day (in lieu)", "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2010-07-09": "Isra and Mi'raj", - "2010-07-11": "Isra and Mi'raj [In lieu]", + "2010-07-11": "Isra and Mi'raj (in lieu)", "2010-08-11": "Beginning of Ramadan", "2010-08-31": "National Day", "2010-09-10": "Hari Raya Puasa", "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-12": "Hari Raya Puasa [In lieu]", + "2010-09-12": "Hari Raya Puasa (in lieu)", "2010-09-16": "Malaysia Day", "2010-11-05": "Deepavali", - "2010-11-07": "Deepavali [In lieu]", + "2010-11-07": "Deepavali (in lieu)", "2010-11-17": "Hari Raya Haji", "2010-11-18": "Hari Raya Haji", "2010-12-08": "Awal Muharram (Hijri New Year)", "2010-12-25": "Christmas Day", "2011-02-03": "Chinese New Year", "2011-02-04": "Chinese New Year Holiday", - "2011-02-06": "Chinese New Year Holiday [In lieu]", + "2011-02-06": "Chinese New Year Holiday (in lieu)", "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-05-01": "Labour Day", "2011-05-17": "Vesak Day", @@ -1098,7 +1098,7 @@ "2011-08-31": "Hari Raya Puasa; National Day", "2011-09-01": "Second day of Hari Raya Puasa", "2011-09-16": "Malaysia Day", - "2011-09-18": "Malaysia Day [In lieu]", + "2011-09-18": "Malaysia Day (in lieu)", "2011-10-26": "Deepavali", "2011-11-07": "Hari Raya Haji", "2011-11-08": "Hari Raya Haji", @@ -1112,15 +1112,15 @@ "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-06-17": "Isra and Mi'raj", "2012-07-20": "Beginning of Ramadan", - "2012-07-22": "Beginning of Ramadan [In lieu]", + "2012-07-22": "Beginning of Ramadan (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", "2012-08-31": "National Day", - "2012-09-02": "National Day [In lieu]", + "2012-09-02": "National Day (in lieu)", "2012-09-16": "Malaysia Day", "2012-10-26": "Hari Raya Haji", "2012-10-27": "Hari Raya Haji", - "2012-10-28": "Hari Raya Haji [In lieu]", + "2012-10-28": "Hari Raya Haji (in lieu)", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", "2012-12-25": "Christmas Day", @@ -1129,13 +1129,13 @@ "2013-02-11": "Chinese New Year Holiday", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", - "2013-05-26": "Vesak Day [In lieu]", + "2013-05-26": "Vesak Day (in lieu)", "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2013-06-06": "Isra and Mi'raj", "2013-07-09": "Beginning of Ramadan", "2013-08-08": "Hari Raya Puasa", "2013-08-09": "Second day of Hari Raya Puasa", - "2013-08-11": "Second day of Hari Raya Puasa [In lieu]", + "2013-08-11": "Second day of Hari Raya Puasa (in lieu)", "2013-08-31": "National Day", "2013-09-16": "Malaysia Day", "2013-10-15": "Hari Raya Haji", @@ -1146,7 +1146,7 @@ "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2014-01-31": "Chinese New Year", "2014-02-01": "Chinese New Year Holiday", - "2014-02-02": "Chinese New Year [In lieu]", + "2014-02-02": "Chinese New Year (in lieu)", "2014-05-01": "Labour Day", "2014-05-13": "Vesak Day", "2014-05-27": "Isra and Mi'raj", @@ -1164,26 +1164,26 @@ "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2015-02-19": "Chinese New Year", "2015-02-20": "Chinese New Year Holiday", - "2015-02-22": "Chinese New Year Holiday [In lieu]", + "2015-02-22": "Chinese New Year Holiday (in lieu)", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Labour Day [In lieu]", + "2015-05-04": "Labour Day (in lieu)", "2015-05-16": "Isra and Mi'raj", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-06-18": "Beginning of Ramadan", "2015-07-17": "Hari Raya Puasa", "2015-07-18": "Second day of Hari Raya Puasa", - "2015-07-19": "Hari Raya Puasa [In lieu]", + "2015-07-19": "Hari Raya Puasa (in lieu)", "2015-08-31": "National Day", "2015-09-16": "Malaysia Day", "2015-09-24": "Hari Raya Haji", "2015-09-25": "Hari Raya Haji", - "2015-09-27": "Hari Raya Haji [In lieu]", + "2015-09-27": "Hari Raya Haji (in lieu)", "2015-10-14": "Awal Muharram (Hijri New Year)", "2015-11-10": "Deepavali", "2015-12-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2015-12-25": "Christmas Day", - "2015-12-27": "Christmas Day [In lieu]", + "2015-12-27": "Christmas Day (in lieu)", "2016-02-08": "Chinese New Year", "2016-02-09": "Chinese New Year Holiday", "2016-05-01": "Labour Day", @@ -1197,7 +1197,7 @@ "2016-09-12": "Hari Raya Haji", "2016-09-13": "Hari Raya Haji", "2016-09-16": "Malaysia Day", - "2016-09-18": "Malaysia Day [In lieu]", + "2016-09-18": "Malaysia Day (in lieu)", "2016-10-02": "Awal Muharram (Hijri New Year)", "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1214,16 +1214,16 @@ "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-02": "Hari Raya Haji", - "2017-09-03": "Hari Raya Haji [In lieu]", + "2017-09-03": "Hari Raya Haji (in lieu)", "2017-09-16": "Malaysia Day", "2017-09-22": "Awal Muharram (Hijri New Year)", "2017-10-18": "Deepavali", "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2017-12-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2017-12-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2017-12-25": "Christmas Day", "2018-02-16": "Chinese New Year", "2018-02-17": "Chinese New Year Holiday", - "2018-02-18": "Chinese New Year [In lieu]", + "2018-02-18": "Chinese New Year (in lieu)", "2018-04-14": "Isra and Mi'raj", "2018-05-01": "Labour Day", "2018-05-09": "Malaysia General Election Holiday", @@ -1231,11 +1231,11 @@ "2018-05-29": "Vesak Day", "2018-06-15": "Hari Raya Puasa", "2018-06-16": "Second day of Hari Raya Puasa", - "2018-06-17": "Hari Raya Puasa [In lieu]", + "2018-06-17": "Hari Raya Puasa (in lieu)", "2018-08-22": "Hari Raya Haji", "2018-08-23": "Hari Raya Haji", "2018-08-31": "National Day", - "2018-09-02": "National Day [In lieu]", + "2018-09-02": "National Day (in lieu)", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", @@ -1264,9 +1264,9 @@ "2020-01-26": "Chinese New Year Holiday", "2020-03-22": "Isra and Mi'raj", "2020-04-24": "Beginning of Ramadan", - "2020-04-26": "Beginning of Ramadan [In lieu]", + "2020-04-26": "Beginning of Ramadan (in lieu)", "2020-05-01": "Labour Day", - "2020-05-03": "Labour Day [In lieu]", + "2020-05-03": "Labour Day (in lieu)", "2020-05-07": "Vesak Day", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", @@ -1274,23 +1274,23 @@ "2020-06-21": "Birthday of The Sultan of Kedah", "2020-07-31": "Hari Raya Haji", "2020-08-01": "Hari Raya Haji", - "2020-08-02": "Hari Raya Haji [In lieu]", + "2020-08-02": "Hari Raya Haji (in lieu)", "2020-08-20": "Awal Muharram (Hijri New Year)", "2020-08-31": "National Day", "2020-09-16": "Malaysia Day", "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2020-11-14": "Deepavali", "2020-12-25": "Christmas Day", - "2020-12-27": "Christmas Day [In lieu]", + "2020-12-27": "Christmas Day (in lieu)", "2021-02-12": "Chinese New Year", "2021-02-13": "Chinese New Year Holiday", - "2021-02-14": "Chinese New Year [In lieu]", + "2021-02-14": "Chinese New Year (in lieu)", "2021-03-11": "Isra and Mi'raj", "2021-04-13": "Beginning of Ramadan", "2021-05-01": "Labour Day", "2021-05-13": "Hari Raya Puasa", "2021-05-14": "Second day of Hari Raya Puasa", - "2021-05-16": "Second day of Hari Raya Puasa [In lieu]", + "2021-05-16": "Second day of Hari Raya Puasa (in lieu)", "2021-05-26": "Vesak Day", "2021-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2021-06-20": "Birthday of The Sultan of Kedah", @@ -1319,7 +1319,7 @@ "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", - "2022-09-18": "Malaysia Day [In lieu]", + "2022-09-18": "Malaysia Day (in lieu)", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", @@ -1335,7 +1335,7 @@ "2023-06-18": "Birthday of The Sultan of Kedah", "2023-06-29": "Hari Raya Haji", "2023-06-30": "Hari Raya Haji", - "2023-07-02": "Hari Raya Haji [In lieu]", + "2023-07-02": "Hari Raya Haji (in lieu)", "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", @@ -1370,7 +1370,7 @@ "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-07": "Hari Raya Haji (estimated)", - "2025-06-08": "Hari Raya Haji (estimated) [In lieu]", + "2025-06-08": "Hari Raya Haji (estimated) (in lieu)", "2025-06-15": "Birthday of The Sultan of Kedah", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", @@ -1379,14 +1379,14 @@ "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-16": "Isra and Mi'raj (estimated)", - "2026-01-18": "Isra and Mi'raj (estimated) [In lieu]", + "2026-01-18": "Isra and Mi'raj (estimated) (in lieu)", "2026-02-17": "Chinese New Year (estimated)", "2026-02-18": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", "2026-03-20": "Hari Raya Puasa (estimated)", "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-03-22": "Hari Raya Puasa (estimated) [In lieu]", + "2026-03-22": "Hari Raya Puasa (estimated) (in lieu)", "2026-05-01": "Labour Day; Vesak Day (estimated)", - "2026-05-03": "Labour Day [In lieu]; Vesak Day (estimated) [In lieu]", + "2026-05-03": "Labour Day (in lieu); Vesak Day (estimated) (in lieu)", "2026-05-27": "Hari Raya Haji (estimated)", "2026-05-28": "Hari Raya Haji (estimated)", "2026-06-01": "Birthday of SPB Yang di-Pertuan Agong", @@ -1397,7 +1397,7 @@ "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", - "2026-12-27": "Christmas Day [In lieu]", + "2026-12-27": "Christmas Day (in lieu)", "2027-01-05": "Isra and Mi'raj (estimated)", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", @@ -1419,13 +1419,13 @@ "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-01-28": "Beginning of Ramadan (estimated)", - "2028-01-30": "Beginning of Ramadan (estimated) [In lieu]", + "2028-01-30": "Beginning of Ramadan (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-06": "Hari Raya Haji (estimated)", - "2028-05-07": "Hari Raya Haji (estimated) [In lieu]", + "2028-05-07": "Hari Raya Haji (estimated) (in lieu)", "2028-05-09": "Vesak Day (estimated)", "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1449,7 +1449,7 @@ "2029-06-17": "Birthday of The Sultan of Kedah", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", - "2029-09-02": "National Day [In lieu]", + "2029-09-02": "National Day (in lieu)", "2029-09-16": "Malaysia Day", "2029-11-04": "Deepavali", "2029-12-03": "Isra and Mi'raj (estimated)", @@ -1469,14 +1469,14 @@ "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", - "2030-10-27": "Deepavali [In lieu]", + "2030-10-27": "Deepavali (in lieu)", "2030-11-23": "Isra and Mi'raj (estimated)", "2030-12-25": "Christmas Day", "2030-12-26": "Beginning of Ramadan (estimated)", "2031-01-23": "Chinese New Year (estimated)", "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-01-26": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "2031-01-26": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", "2031-04-02": "Hari Raya Haji (estimated)", "2031-04-03": "Hari Raya Haji (estimated)", "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", @@ -1513,24 +1513,24 @@ "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-03-12": "Hari Raya Haji (estimated)", - "2033-03-13": "Hari Raya Haji (estimated) [In lieu]", + "2033-03-13": "Hari Raya Haji (estimated) (in lieu)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-13": "Vesak Day (estimated)", - "2033-05-15": "Vesak Day (estimated) [In lieu]", + "2033-05-15": "Vesak Day (estimated) (in lieu)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-06-19": "Birthday of The Sultan of Kedah", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", - "2033-09-18": "Malaysia Day [In lieu]", + "2033-09-18": "Malaysia Day (in lieu)", "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", - "2033-10-23": "Deepavali [In lieu]; Isra and Mi'raj (estimated) [In lieu]", + "2033-10-23": "Deepavali (in lieu); Isra and Mi'raj (estimated) (in lieu)", "2033-11-23": "Beginning of Ramadan (estimated)", "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Hari Raya Puasa (estimated) [In lieu]", + "2033-12-26": "Hari Raya Puasa (estimated) (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", "2034-03-01": "Hari Raya Haji (estimated)", @@ -1551,7 +1551,7 @@ "2034-12-25": "Christmas Day", "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", - "2035-02-11": "Chinese New Year Holiday (estimated) [In lieu]", + "2035-02-11": "Chinese New Year Holiday (estimated) (in lieu)", "2035-02-18": "Hari Raya Haji (estimated)", "2035-02-19": "Hari Raya Haji (estimated)", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", @@ -1561,7 +1561,7 @@ "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-06-17": "Birthday of The Sultan of Kedah", "2035-08-31": "National Day", - "2035-09-02": "National Day [In lieu]", + "2035-09-02": "National Day (in lieu)", "2035-09-16": "Malaysia Day", "2035-09-29": "Isra and Mi'raj (estimated)", "2035-10-29": "Deepavali", @@ -1573,7 +1573,7 @@ "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-07": "Hari Raya Haji (estimated)", "2036-02-08": "Hari Raya Haji (estimated)", - "2036-02-10": "Hari Raya Haji (estimated) [In lieu]", + "2036-02-10": "Hari Raya Haji (estimated) (in lieu)", "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-05-01": "Labour Day", "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1594,9 +1594,9 @@ "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", - "2037-05-03": "Labour Day [In lieu]", + "2037-05-03": "Labour Day (in lieu)", "2037-05-29": "Vesak Day (estimated)", - "2037-05-31": "Vesak Day (estimated) [In lieu]", + "2037-05-31": "Vesak Day (estimated) (in lieu)", "2037-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2037-06-21": "Birthday of The Sultan of Kedah", "2037-08-31": "National Day", @@ -1607,12 +1607,12 @@ "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", "2037-12-25": "Christmas Day", - "2037-12-27": "Christmas Day [In lieu]", + "2037-12-27": "Christmas Day (in lieu)", "2038-01-16": "Hari Raya Haji (estimated)", "2038-01-17": "Hari Raya Haji (estimated)", "2038-02-04": "Chinese New Year (estimated)", "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2038-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2038-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2038-05-01": "Labour Day", "2038-05-18": "Vesak Day (estimated)", @@ -1625,7 +1625,7 @@ "2038-10-26": "Deepavali", "2038-10-29": "Hari Raya Puasa (estimated)", "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-10-31": "Hari Raya Puasa (estimated) [In lieu]", + "2038-10-31": "Hari Raya Puasa (estimated) (in lieu)", "2038-12-25": "Christmas Day", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-06": "Hari Raya Haji (estimated)", @@ -1640,7 +1640,7 @@ "2039-08-17": "Isra and Mi'raj (estimated)", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", - "2039-09-18": "Malaysia Day [In lieu]", + "2039-09-18": "Malaysia Day (in lieu)", "2039-09-19": "Beginning of Ramadan (estimated)", "2039-10-19": "Hari Raya Puasa (estimated)", "2039-10-20": "Second day of Hari Raya Puasa (estimated)", @@ -1654,28 +1654,28 @@ "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", - "2040-05-27": "Vesak Day (estimated) [In lieu]", + "2040-05-27": "Vesak Day (estimated) (in lieu)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-06-17": "Birthday of The Sultan of Kedah", "2040-08-05": "Isra and Mi'raj (estimated)", "2040-08-31": "National Day", - "2040-09-02": "National Day [In lieu]", + "2040-09-02": "National Day (in lieu)", "2040-09-07": "Beginning of Ramadan (estimated)", - "2040-09-09": "Beginning of Ramadan (estimated) [In lieu]", + "2040-09-09": "Beginning of Ramadan (estimated) (in lieu)", "2040-09-16": "Malaysia Day", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-15": "Hari Raya Haji (estimated)", - "2040-12-16": "Hari Raya Haji (estimated) [In lieu]", + "2040-12-16": "Hari Raya Haji (estimated) (in lieu)", "2040-12-25": "Christmas Day", "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", "2041-02-01": "Chinese New Year (estimated)", "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-03": "Chinese New Year (estimated) [In lieu]", + "2041-02-03": "Chinese New Year (estimated) (in lieu)", "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2041-03-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2041-05-01": "Labour Day", "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -1686,7 +1686,7 @@ "2041-09-16": "Malaysia Day", "2041-09-26": "Hari Raya Puasa (estimated)", "2041-09-27": "Second day of Hari Raya Puasa (estimated)", - "2041-09-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2041-09-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2041-10-23": "Deepavali", "2041-12-04": "Hari Raya Haji (estimated)", "2041-12-05": "Hari Raya Haji (estimated)", @@ -1713,7 +1713,7 @@ "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2043-05-01": "Labour Day", - "2043-05-03": "Labour Day [In lieu]", + "2043-05-03": "Labour Day (in lieu)", "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2043-06-21": "Birthday of The Sultan of Kedah", @@ -1722,15 +1722,15 @@ "2043-08-31": "National Day", "2043-09-04": "Hari Raya Puasa (estimated)", "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-06": "Hari Raya Puasa (estimated) [In lieu]", + "2043-09-06": "Hari Raya Puasa (estimated) (in lieu)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", "2043-11-12": "Hari Raya Haji (estimated)", "2043-11-13": "Hari Raya Haji (estimated)", - "2043-11-15": "Hari Raya Haji (estimated) [In lieu]", + "2043-11-15": "Hari Raya Haji (estimated) (in lieu)", "2043-12-03": "Awal Muharram (Hijri New Year) (estimated)", "2043-12-25": "Christmas Day", - "2043-12-27": "Christmas Day [In lieu]", + "2043-12-27": "Christmas Day (in lieu)", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1744,7 +1744,7 @@ "2044-08-25": "Second day of Hari Raya Puasa (estimated)", "2044-08-31": "National Day", "2044-09-16": "Malaysia Day", - "2044-09-18": "Malaysia Day [In lieu]", + "2044-09-18": "Malaysia Day (in lieu)", "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-01": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", @@ -1753,7 +1753,7 @@ "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-02-19": "Chinese New Year (estimated) [In lieu]", + "2045-02-19": "Chinese New Year (estimated) (in lieu)", "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2045-06-13": "Isra and Mi'raj (estimated)", @@ -1769,7 +1769,7 @@ "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2046-01-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2046-02-06": "Chinese New Year (estimated)", "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", @@ -1780,9 +1780,9 @@ "2046-07-05": "Beginning of Ramadan (estimated)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-05": "Hari Raya Puasa (estimated) [In lieu]", + "2046-08-05": "Hari Raya Puasa (estimated) (in lieu)", "2046-08-31": "National Day", - "2046-09-02": "National Day [In lieu]", + "2046-09-02": "National Day (in lieu)", "2046-09-16": "Malaysia Day", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-11": "Hari Raya Haji (estimated)", @@ -1806,19 +1806,19 @@ "2047-10-01": "Hari Raya Haji (estimated)", "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-11-15": "Deepavali", - "2047-11-17": "Deepavali [In lieu]", + "2047-11-17": "Deepavali (in lieu)", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-16": "Chinese New Year (estimated) [In lieu]", + "2048-02-16": "Chinese New Year (estimated) (in lieu)", "2048-05-01": "Labour Day", - "2048-05-03": "Labour Day [In lieu]", + "2048-05-03": "Labour Day (in lieu)", "2048-05-10": "Isra and Mi'raj (estimated)", "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-12": "Beginning of Ramadan (estimated)", - "2048-06-14": "Beginning of Ramadan (estimated) [In lieu]", + "2048-06-14": "Beginning of Ramadan (estimated) (in lieu)", "2048-06-21": "Birthday of The Sultan of Kedah", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", @@ -1829,9 +1829,9 @@ "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2048-12-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-12-25": "Christmas Day", - "2048-12-27": "Christmas Day [In lieu]", + "2048-12-27": "Christmas Day (in lieu)", "2049-02-02": "Chinese New Year (estimated)", "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-04-29": "Isra and Mi'raj (estimated)", @@ -1842,7 +1842,7 @@ "2049-06-20": "Birthday of The Sultan of Kedah", "2049-07-01": "Hari Raya Puasa (estimated)", "2049-07-02": "Second day of Hari Raya Puasa (estimated)", - "2049-07-04": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2049-07-04": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2049-08-31": "National Day", "2049-09-08": "Hari Raya Haji (estimated)", "2049-09-09": "Hari Raya Haji (estimated)", @@ -1866,7 +1866,7 @@ "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", - "2050-09-18": "Malaysia Day [In lieu]", + "2050-09-18": "Malaysia Day (in lieu)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/MY_KTN.json b/snapshots/countries/MY_KTN.json index 08235e679..0abe5a441 100644 --- a/snapshots/countries/MY_KTN.json +++ b/snapshots/countries/MY_KTN.json @@ -2,17 +2,17 @@ "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-02-19": "Chinese New Year Holiday (estimated) [In lieu]", + "1950-02-19": "Chinese New Year Holiday (estimated) (in lieu)", "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1950-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-09-24": "Hari Raya Haji (estimated)", - "1950-09-25": "Hari Raya Haji (estimated) [In lieu]", + "1950-09-25": "Hari Raya Haji (estimated) (in lieu)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -22,11 +22,11 @@ "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1951-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1951-06-22": "Nuzul Al-Quran Day (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-07-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1951-07-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1951-08-31": "National Day", "1951-09-12": "Hari Raya Haji (estimated)", "1951-09-13": "Hari Raya Haji (estimated)", @@ -39,7 +39,7 @@ "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1952-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1952-06-10": "Nuzul Al-Quran Day (estimated)", "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", @@ -47,21 +47,21 @@ "1952-09-01": "Hari Raya Haji (estimated)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-16": "Deepavali [In lieu]", + "1952-11-16": "Deepavali (in lieu)", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1952-12-25": "Christmas Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year (estimated) [In lieu]", + "1953-02-16": "Chinese New Year (estimated) (in lieu)", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-05-31": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1953-05-31": "Nuzul Al-Quran Day (estimated) (in lieu)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1953-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-21": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", @@ -72,13 +72,13 @@ "1954-02-03": "Chinese New Year (estimated)", "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-05-01": "Labour Day", - "1954-05-02": "Labour Day [In lieu]", + "1954-05-02": "Labour Day (in lieu)", "1954-05-17": "Vesak Day (estimated)", "1954-05-20": "Nuzul Al-Quran Day (estimated)", "1954-06-02": "Hari Raya Puasa (estimated)", "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1954-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1954-08-09": "Hari Raya Haji (estimated)", "1954-08-10": "Hari Raya Haji (estimated)", "1954-08-30": "Awal Muharram (Hijri New Year) (estimated)", @@ -86,7 +86,7 @@ "1954-10-25": "Deepavali", "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", - "1954-12-26": "Christmas Day [In lieu]", + "1954-12-26": "Christmas Day (in lieu)", "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", @@ -95,28 +95,28 @@ "1955-05-23": "Hari Raya Puasa (estimated)", "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1955-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1955-07-30": "Hari Raya Haji (estimated)", "1955-07-31": "Hari Raya Haji (estimated)", - "1955-08-01": "Hari Raya Haji (estimated) [In lieu]", + "1955-08-01": "Hari Raya Haji (estimated) (in lieu)", "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1955-11-12": "Deepavali", - "1955-11-13": "Deepavali [In lieu]", + "1955-11-13": "Deepavali (in lieu)", "1955-12-25": "Christmas Day", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-04-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1956-04-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-13": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1956-05-13": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1956-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1956-07-19": "Hari Raya Haji (estimated)", "1956-07-20": "Hari Raya Haji (estimated)", "1956-08-08": "Awal Muharram (Hijri New Year) (estimated)", @@ -131,12 +131,12 @@ "1957-05-02": "Second day of Hari Raya Puasa (estimated)", "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1957-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1957-07-08": "Hari Raya Haji (estimated)", "1957-07-09": "Hari Raya Haji (estimated)", "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-09-01": "National Day [In lieu]", + "1957-09-01": "National Day (in lieu)", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", @@ -147,12 +147,12 @@ "1958-04-21": "Second day of Hari Raya Puasa (estimated)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", - "1958-05-04": "Vesak Day (estimated) [In lieu]", + "1958-05-04": "Vesak Day (estimated) (in lieu)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1958-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1958-06-27": "Hari Raya Haji (estimated)", "1958-06-28": "Hari Raya Haji (estimated)", - "1958-06-29": "Hari Raya Haji (estimated) [In lieu]", + "1958-06-29": "Hari Raya Haji (estimated) (in lieu)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -163,11 +163,11 @@ "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-04-12": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1959-04-12": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1959-05-01": "Labour Day", "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1959-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1959-06-17": "Hari Raya Haji (estimated)", "1959-06-18": "Hari Raya Haji (estimated)", "1959-07-07": "Awal Muharram (Hijri New Year) (estimated)", @@ -184,26 +184,26 @@ "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-05": "Hari Raya Haji (estimated)", - "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Hari Raya Haji (estimated) [In lieu]", + "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu); Hari Raya Haji (estimated) (in lieu)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-05": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1961-03-05": "Nuzul Al-Quran Day (estimated) (in lieu)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-26": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1961-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", @@ -219,42 +219,42 @@ "1962-05-15": "Hari Raya Haji (estimated)", "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated); Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated); Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-25": "Chinese New Year (estimated)", "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-01-27": "Chinese New Year Holiday (estimated) [In lieu]", + "1963-01-27": "Chinese New Year Holiday (estimated) (in lieu)", "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-04": "Hari Raya Haji (estimated)", - "1963-05-05": "Hari Raya Haji (estimated) [In lieu]", + "1963-05-05": "Hari Raya Haji (estimated) (in lieu)", "1963-05-08": "Vesak Day (estimated)", "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1963-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", - "1963-09-01": "National Day [In lieu]", + "1963-09-01": "National Day (in lieu)", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-01-31": "Nuzul Al-Quran Day (estimated)", "1964-02-13": "Chinese New Year (estimated)", "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-16": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1964-02-16": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1964-04-22": "Hari Raya Haji (estimated)", "1964-04-23": "Hari Raya Haji (estimated)", "1964-05-01": "Labour Day", "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1964-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", @@ -265,31 +265,31 @@ "1965-04-11": "Hari Raya Haji (estimated)", "1965-04-12": "Hari Raya Haji (estimated)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-02": "Labour Day [In lieu]", + "1965-05-02": "Labour Day (in lieu)", "1965-05-15": "Vesak Day (estimated)", - "1965-05-16": "Vesak Day (estimated) [In lieu]", + "1965-05-16": "Vesak Day (estimated) (in lieu)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1965-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", - "1965-12-26": "Christmas Day [In lieu]", + "1965-12-26": "Christmas Day (in lieu)", "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-09": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1966-01-09": "Nuzul Al-Quran Day (estimated) (in lieu)", "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-02": "Hari Raya Haji (estimated)", - "1966-04-03": "Hari Raya Haji (estimated) [In lieu]", + "1966-04-03": "Hari Raya Haji (estimated) (in lieu)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1966-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", @@ -305,7 +305,7 @@ "1967-05-01": "Labour Day", "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1967-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", @@ -317,23 +317,23 @@ "1968-01-31": "Chinese New Year Holiday (estimated)", "1968-03-09": "Hari Raya Haji (estimated)", "1968-03-10": "Hari Raya Haji (estimated)", - "1968-03-11": "Hari Raya Haji (estimated) [In lieu]", + "1968-03-11": "Hari Raya Haji (estimated) (in lieu)", "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", "1968-05-11": "Vesak Day (estimated)", - "1968-05-12": "Vesak Day (estimated) [In lieu]", + "1968-05-12": "Vesak Day (estimated) (in lieu)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1968-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1968-08-31": "National Day", - "1968-09-01": "National Day [In lieu]", + "1968-09-01": "National Day (in lieu)", "1968-11-18": "Deepavali", "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-08": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1968-12-08": "Nuzul Al-Quran Day (estimated) (in lieu)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-02-17": "Chinese New Year (estimated)", "1969-02-18": "Chinese New Year Holiday (estimated)", @@ -343,17 +343,17 @@ "1969-05-01": "Labour Day; Vesak Day (estimated)", "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1969-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1969-08-31": "National Day", "1969-11-08": "Deepavali", - "1969-11-09": "Deepavali [In lieu]", + "1969-11-09": "Deepavali (in lieu)", "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-12-10": "Hari Raya Puasa (estimated)", "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-02-06": "Chinese New Year (estimated)", "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "1970-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-17": "Hari Raya Haji (estimated)", "1970-03-09": "Awal Muharram (Hijri New Year) (estimated)", @@ -361,7 +361,7 @@ "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1970-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1970-08-31": "National Day", "1970-10-28": "Deepavali", "1970-11-17": "Nuzul Al-Quran Day (estimated)", @@ -372,22 +372,22 @@ "1971-01-28": "Chinese New Year Holiday (estimated)", "1971-02-06": "Hari Raya Haji (estimated)", "1971-02-07": "Hari Raya Haji (estimated)", - "1971-02-08": "Hari Raya Haji (estimated) [In lieu]", + "1971-02-08": "Hari Raya Haji (estimated) (in lieu)", "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-02": "Labour Day [In lieu]", + "1971-05-02": "Labour Day (in lieu)", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1971-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1971-08-31": "National Day", "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", "1971-11-19": "Hari Raya Puasa (estimated)", "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-11-21": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1971-11-21": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1971-12-25": "Christmas Day", - "1971-12-26": "Christmas Day [In lieu]", + "1971-12-26": "Christmas Day (in lieu)", "1972-01-26": "Hari Raya Haji (estimated)", "1972-01-27": "Hari Raya Haji (estimated)", "1972-02-15": "Chinese New Year (estimated)", @@ -395,13 +395,13 @@ "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", "1972-05-27": "Vesak Day (estimated)", - "1972-05-28": "Vesak Day (estimated) [In lieu]", + "1972-05-28": "Vesak Day (estimated) (in lieu)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1972-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1972-08-31": "National Day", "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-05": "Deepavali [In lieu]", + "1972-11-05": "Deepavali (in lieu)", "1972-11-07": "Hari Raya Puasa (estimated)", "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", @@ -409,19 +409,19 @@ "1973-01-15": "Hari Raya Haji (estimated)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year (estimated) [In lieu]", + "1973-02-05": "Chinese New Year (estimated) (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1973-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1973-08-31": "National Day", "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1973-10-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-04": "Hari Raya Haji (estimated)", @@ -431,9 +431,9 @@ "1974-05-01": "Labour Day", "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1974-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1974-08-31": "National Day", - "1974-09-01": "National Day [In lieu]", + "1974-09-01": "National Day (in lieu)", "1974-10-03": "Nuzul Al-Quran Day (estimated)", "1974-10-16": "Hari Raya Puasa (estimated)", "1974-10-17": "Second day of Hari Raya Puasa (estimated)", @@ -447,47 +447,47 @@ "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1975-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1975-08-31": "National Day", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-11-02": "Deepavali [In lieu]", + "1975-11-02": "Deepavali (in lieu)", "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-14": "Hari Raya Haji (estimated)", - "1975-12-15": "Hari Raya Haji (estimated) [In lieu]", + "1975-12-15": "Hari Raya Haji (estimated) (in lieu)", "1975-12-25": "Christmas Day", "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year (estimated) [In lieu]", + "1976-02-02": "Chinese New Year (estimated) (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-02": "Labour Day [In lieu]", + "1976-05-02": "Labour Day (in lieu)", "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1976-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1976-08-31": "National Day", "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-12": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1976-09-12": "Nuzul Al-Quran Day (estimated) (in lieu)", "1976-09-24": "Hari Raya Puasa (estimated)", "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-09-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1976-09-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1976-11-19": "Deepavali", "1976-12-01": "Hari Raya Haji (estimated)", "1976-12-02": "Hari Raya Haji (estimated)", "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", - "1976-12-26": "Christmas Day [In lieu]", + "1976-12-26": "Christmas Day (in lieu)", "1977-02-18": "Chinese New Year (estimated)", "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-02-20": "Chinese New Year Holiday (estimated) [In lieu]", + "1977-02-20": "Chinese New Year Holiday (estimated) (in lieu)", "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1977-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", "1977-09-14": "Hari Raya Puasa (estimated)", "1977-09-15": "Second day of Hari Raya Puasa (estimated)", @@ -502,7 +502,7 @@ "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1978-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", @@ -510,7 +510,7 @@ "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-11-11": "Hari Raya Haji (estimated)", - "1978-11-12": "Hari Raya Haji (estimated) [In lieu]", + "1978-11-12": "Hari Raya Haji (estimated) (in lieu)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-28": "Chinese New Year (estimated)", @@ -519,7 +519,7 @@ "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1979-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1979-08-10": "Nuzul Al-Quran Day (estimated)", "1979-08-23": "Hari Raya Puasa (estimated)", "1979-08-24": "Second day of Hari Raya Puasa (estimated)", @@ -532,11 +532,11 @@ "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year (estimated) [In lieu]", + "1980-02-18": "Chinese New Year (estimated) (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1980-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1980-07-29": "Nuzul Al-Quran Day (estimated)", "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", @@ -552,12 +552,12 @@ "1981-05-01": "Labour Day", "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1981-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-07-19": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1981-07-19": "Nuzul Al-Quran Day (estimated) (in lieu)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-09": "Hari Raya Haji (estimated)", @@ -568,11 +568,11 @@ "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-02": "Labour Day [In lieu]", + "1982-05-02": "Labour Day (in lieu)", "1982-05-08": "Vesak Day (estimated)", - "1982-05-09": "Vesak Day (estimated) [In lieu]", + "1982-05-09": "Vesak Day (estimated) (in lieu)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1982-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1982-07-08": "Nuzul Al-Quran Day (estimated)", "1982-07-21": "Hari Raya Puasa (estimated)", "1982-07-22": "Second day of Hari Raya Puasa (estimated)", @@ -581,23 +581,23 @@ "1982-09-28": "Hari Raya Haji (estimated)", "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", - "1982-11-14": "Deepavali [In lieu]", + "1982-11-14": "Deepavali (in lieu)", "1982-12-25": "Christmas Day", - "1982-12-26": "Christmas Day [In lieu]", + "1982-12-26": "Christmas Day (in lieu)", "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", "1983-05-01": "Labour Day", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1983-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1983-06-28": "Nuzul Al-Quran Day (estimated)", "1983-07-11": "Hari Raya Puasa (estimated)", "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", "1983-09-17": "Hari Raya Haji (estimated)", "1983-09-18": "Hari Raya Haji (estimated)", - "1983-09-19": "Hari Raya Haji (estimated) [In lieu]", + "1983-09-19": "Hari Raya Haji (estimated) (in lieu)", "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -607,12 +607,12 @@ "1984-05-01": "Labour Day", "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1984-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-17": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1984-06-17": "Nuzul Al-Quran Day (estimated) (in lieu)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-06": "Hari Raya Haji (estimated)", @@ -624,16 +624,16 @@ "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-05-01": "Labour Day", "1985-05-04": "Vesak Day (estimated)", - "1985-05-05": "Vesak Day (estimated) [In lieu]", + "1985-05-05": "Vesak Day (estimated) (in lieu)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1985-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1985-06-05": "Nuzul Al-Quran Day (estimated)", "1985-06-19": "Hari Raya Puasa (estimated)", "1985-06-20": "Second day of Hari Raya Puasa (estimated)", "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-27": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-01": "National Day [In lieu]", + "1985-09-01": "National Day (in lieu)", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -646,10 +646,10 @@ "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1986-06-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-16": "Hari Raya Haji (estimated)", - "1986-08-17": "Hari Raya Haji (estimated) [In lieu]", + "1986-08-17": "Hari Raya Haji (estimated) (in lieu)", "1986-08-31": "National Day", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", @@ -663,7 +663,7 @@ "1987-05-28": "Hari Raya Puasa (estimated)", "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1987-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1987-08-04": "Hari Raya Haji (estimated)", "1987-08-05": "Hari Raya Haji (estimated)", "1987-08-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -679,14 +679,14 @@ "1988-05-17": "Second day of Hari Raya Puasa (estimated)", "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1988-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1988-07-23": "Hari Raya Haji (estimated)", "1988-07-24": "Hari Raya Haji (estimated)", - "1988-07-25": "Hari Raya Haji (estimated) [In lieu]", + "1988-07-25": "Hari Raya Haji (estimated) (in lieu)", "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1989-02-06": "Chinese New Year (estimated)", @@ -695,10 +695,10 @@ "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1989-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1989-07-13": "Hari Raya Haji (estimated)", "1989-07-14": "Hari Raya Haji (estimated)", "1989-08-02": "Awal Muharram (Hijri New Year) (estimated)", @@ -708,14 +708,14 @@ "1989-12-25": "Christmas Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year (estimated) [In lieu]", + "1990-01-29": "Chinese New Year (estimated) (in lieu)", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1990-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1990-07-02": "Hari Raya Haji (estimated)", "1990-07-03": "Hari Raya Haji (estimated)", "1990-07-23": "Awal Muharram (Hijri New Year) (estimated)", @@ -725,61 +725,61 @@ "1990-12-25": "Christmas Day", "1991-02-15": "Chinese New Year (estimated)", "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-02-17": "Chinese New Year Holiday (estimated) [In lieu]", + "1991-02-17": "Chinese New Year Holiday (estimated) (in lieu)", "1991-04-02": "Nuzul Al-Quran Day (estimated)", "1991-04-15": "Hari Raya Puasa (estimated)", "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1991-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1991-06-22": "Hari Raya Haji (estimated)", "1991-06-23": "Hari Raya Haji (estimated)", - "1991-06-24": "Hari Raya Haji (estimated) [In lieu]", + "1991-06-24": "Hari Raya Haji (estimated) (in lieu)", "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-01": "National Day [In lieu]", + "1991-09-01": "National Day (in lieu)", "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-02-04": "Chinese New Year (estimated)", "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-03-22": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1992-03-22": "Nuzul Al-Quran Day (estimated) (in lieu)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1992-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1992-06-11": "Hari Raya Haji (estimated)", "1992-06-12": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", "1992-08-31": "National Day", "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", - "1992-10-25": "Deepavali [In lieu]", + "1992-10-25": "Deepavali (in lieu)", "1992-12-25": "Christmas Day", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year (estimated) [In lieu]", + "1993-01-25": "Chinese New Year (estimated) (in lieu)", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-02": "Labour Day [In lieu]", + "1993-05-02": "Labour Day (in lieu)", "1993-05-06": "Vesak Day (estimated)", "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-01": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1993-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", - "1993-12-26": "Christmas Day [In lieu]", + "1993-12-26": "Christmas Day (in lieu)", "1994-02-10": "Chinese New Year (estimated)", "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-27": "Nuzul Al-Quran Day (estimated)", @@ -788,10 +788,10 @@ "1994-05-01": "Labour Day", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-21": "Hari Raya Haji (estimated)", - "1994-05-22": "Hari Raya Haji (estimated) [In lieu]", + "1994-05-22": "Hari Raya Haji (estimated) (in lieu)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1994-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", @@ -808,7 +808,7 @@ "1995-05-14": "Vesak Day (estimated)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1995-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", @@ -818,31 +818,31 @@ "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-04-27": "Hari Raya Haji (estimated)", "1996-04-28": "Hari Raya Haji (estimated)", - "1996-04-29": "Hari Raya Haji (estimated) [In lieu]", + "1996-04-29": "Hari Raya Haji (estimated) (in lieu)", "1996-05-01": "Labour Day", "1996-05-02": "Vesak Day (estimated)", "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1996-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1996-08-31": "National Day", - "1996-09-01": "National Day [In lieu]", + "1996-09-01": "National Day (in lieu)", "1996-11-09": "Deepavali", - "1996-11-10": "Deepavali [In lieu]", + "1996-11-10": "Deepavali (in lieu)", "1996-12-25": "Christmas Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", "1997-04-17": "Hari Raya Haji (estimated)", "1997-04-18": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1997-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-10-29": "Deepavali", @@ -857,7 +857,7 @@ "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1998-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", @@ -869,35 +869,35 @@ "1999-02-17": "Chinese New Year Holiday (estimated)", "1999-03-27": "Hari Raya Haji (estimated)", "1999-03-28": "Hari Raya Haji (estimated)", - "1999-03-29": "Hari Raya Haji (estimated) [In lieu]", + "1999-03-29": "Hari Raya Haji (estimated) (in lieu)", "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-02": "Labour Day [In lieu]", + "1999-05-02": "Labour Day (in lieu)", "1999-05-29": "Vesak Day (estimated)", - "1999-05-30": "Vesak Day (estimated) [In lieu]", + "1999-05-30": "Vesak Day (estimated) (in lieu)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1999-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1999-08-31": "National Day", "1999-11-06": "Deepavali", - "1999-11-07": "Deepavali [In lieu]", + "1999-11-07": "Deepavali (in lieu)", "1999-11-29": "Malaysia General Election Holiday", "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "1999-12-26": "Christmas Day [In lieu]; Nuzul Al-Quran Day (estimated) [In lieu]", + "1999-12-26": "Christmas Day (in lieu); Nuzul Al-Quran Day (estimated) (in lieu)", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year (estimated) [In lieu]", + "2000-02-07": "Chinese New Year (estimated) (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-03-17": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2000-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", @@ -913,7 +913,7 @@ "2001-05-01": "Labour Day", "2001-05-07": "Vesak Day", "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2001-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2001-08-31": "National Day", "2001-11-14": "Deepavali", @@ -925,24 +925,24 @@ "2002-02-13": "Chinese New Year Holiday", "2002-02-23": "Hari Raya Haji", "2002-02-24": "Hari Raya Haji", - "2002-02-25": "Hari Raya Haji [In lieu]", + "2002-02-25": "Hari Raya Haji (in lieu)", "2002-03-15": "Awal Muharram (Hijri New Year)", "2002-05-01": "Labour Day", "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2002-05-27": "Vesak Day", "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2002-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2002-08-31": "National Day", - "2002-09-01": "National Day [In lieu]", + "2002-09-01": "National Day (in lieu)", "2002-11-03": "Deepavali", "2002-11-22": "Nuzul Al-Quran Day", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-08": "Second day of Hari Raya Puasa [In lieu]", + "2002-12-08": "Second day of Hari Raya Puasa (in lieu)", "2002-12-25": "Christmas Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year [In lieu]", + "2003-02-03": "Chinese New Year (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-02-13": "Hari Raya Haji", "2003-03-05": "Awal Muharram (Hijri New Year)", @@ -950,7 +950,7 @@ "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2003-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2003-08-31": "National Day", "2003-10-23": "Deepavali", "2003-11-12": "Nuzul Al-Quran Day", @@ -965,26 +965,26 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Labour Day [In lieu]", + "2004-05-04": "Labour Day (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2004-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2004-08-31": "National Day", "2004-11-01": "Nuzul Al-Quran Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", "2004-12-25": "Christmas Day", - "2004-12-26": "Christmas Day [In lieu]", + "2004-12-26": "Christmas Day (in lieu)", "2005-01-21": "Hari Raya Haji", "2005-01-22": "Hari Raya Haji", - "2005-01-23": "Hari Raya Haji [In lieu]", + "2005-01-23": "Hari Raya Haji (in lieu)", "2005-02-09": "Chinese New Year", "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", "2005-05-22": "Vesak Day", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2005-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2005-08-31": "National Day", "2005-10-21": "Nuzul Al-Quran Day", "2005-11-01": "Deepavali", @@ -1000,11 +1000,11 @@ "2006-05-01": "Labour Day", "2006-05-12": "Vesak Day", "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2006-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2006-08-31": "National Day", "2006-10-10": "Nuzul Al-Quran Day", "2006-10-21": "Deepavali", - "2006-10-22": "Deepavali [In lieu]", + "2006-10-22": "Deepavali (in lieu)", "2006-10-24": "Hari Raya Puasa", "2006-10-25": "Second day of Hari Raya Puasa", "2006-12-25": "Christmas Day", @@ -1014,16 +1014,16 @@ "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-04-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2007-04-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2007-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2007-08-31": "National Day", "2007-09-29": "Nuzul Al-Quran Day", - "2007-09-30": "Nuzul Al-Quran Day [In lieu]", + "2007-09-30": "Nuzul Al-Quran Day (in lieu)", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Hari Raya Puasa [In lieu]", + "2007-10-15": "Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-21": "Hari Raya Haji", @@ -1035,7 +1035,7 @@ "2008-05-01": "Labour Day", "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2008-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2008-08-31": "National Day", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", @@ -1050,33 +1050,33 @@ "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2009-05-01": "Labour Day", "2009-05-09": "Vesak Day", - "2009-05-10": "Vesak Day [In lieu]", + "2009-05-10": "Vesak Day (in lieu)", "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2009-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2009-08-31": "National Day", "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", "2009-10-17": "Deepavali", - "2009-10-18": "Deepavali [In lieu]", + "2009-10-18": "Deepavali (in lieu)", "2009-11-28": "Hari Raya Haji", "2009-11-29": "Hari Raya Haji", - "2009-11-30": "Hari Raya Haji [In lieu]", + "2009-11-30": "Hari Raya Haji (in lieu)", "2009-12-18": "Awal Muharram (Hijri New Year)", "2009-12-25": "Christmas Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-05-01": "Labour Day", - "2010-05-02": "Labour Day [In lieu]", + "2010-05-02": "Labour Day (in lieu)", "2010-05-28": "Vesak Day", "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2010-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2010-08-27": "Nuzul Al-Quran Day", "2010-08-31": "National Day", "2010-09-10": "Hari Raya Puasa", "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-12": "Second day of Hari Raya Puasa [In lieu]", + "2010-09-12": "Second day of Hari Raya Puasa (in lieu)", "2010-09-16": "Malaysia Day", "2010-11-05": "Deepavali", "2010-11-11": "Birthday of the Sultan of Kelantan", @@ -1085,14 +1085,14 @@ "2010-11-18": "Hari Raya Haji", "2010-12-08": "Awal Muharram (Hijri New Year)", "2010-12-25": "Christmas Day", - "2010-12-26": "Christmas Day [In lieu]", + "2010-12-26": "Christmas Day (in lieu)", "2011-02-03": "Chinese New Year", "2011-02-04": "Chinese New Year Holiday", "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-05-01": "Labour Day", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2011-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2011-08-17": "Nuzul Al-Quran Day", "2011-08-31": "Hari Raya Puasa; National Day", "2011-09-01": "Second day of Hari Raya Puasa", @@ -1109,9 +1109,9 @@ "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", - "2012-05-06": "Vesak Day [In lieu]", + "2012-05-06": "Vesak Day (in lieu)", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2012-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2012-08-05": "Nuzul Al-Quran Day", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", @@ -1119,7 +1119,7 @@ "2012-09-16": "Malaysia Day", "2012-10-26": "Hari Raya Haji", "2012-10-27": "Hari Raya Haji", - "2012-10-28": "Hari Raya Haji [In lieu]", + "2012-10-28": "Hari Raya Haji (in lieu)", "2012-11-11": "Birthday of the Sultan of Kelantan", "2012-11-12": "Birthday of the Sultan of Kelantan", "2012-11-13": "Deepavali", @@ -1131,17 +1131,17 @@ "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2013-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2013-07-25": "Nuzul Al-Quran Day", "2013-08-08": "Hari Raya Puasa", "2013-08-09": "Second day of Hari Raya Puasa", "2013-08-31": "National Day", - "2013-09-01": "National Day [In lieu]", + "2013-09-01": "National Day (in lieu)", "2013-09-16": "Malaysia Day", "2013-10-15": "Hari Raya Haji", "2013-10-16": "Hari Raya Haji", "2013-11-02": "Deepavali", - "2013-11-03": "Deepavali [In lieu]", + "2013-11-03": "Deepavali (in lieu)", "2013-11-05": "Awal Muharram (Hijri New Year)", "2013-11-11": "Birthday of the Sultan of Kelantan", "2013-11-12": "Birthday of the Sultan of Kelantan", @@ -1149,11 +1149,11 @@ "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2014-01-31": "Chinese New Year", "2014-02-01": "Chinese New Year Holiday", - "2014-02-02": "Chinese New Year Holiday [In lieu]", + "2014-02-02": "Chinese New Year Holiday (in lieu)", "2014-05-01": "Labour Day", "2014-05-13": "Vesak Day", "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2014-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2014-07-15": "Nuzul Al-Quran Day", "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", @@ -1167,18 +1167,18 @@ "2014-11-12": "Birthday of the Sultan of Kelantan", "2014-12-25": "Christmas Day", "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-01-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2015-01-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2015-02-19": "Chinese New Year", "2015-02-20": "Chinese New Year Holiday", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2015-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-05": "Nuzul Al-Quran Day [In lieu]", + "2015-07-05": "Nuzul Al-Quran Day (in lieu)", "2015-07-17": "Hari Raya Puasa", "2015-07-18": "Second day of Hari Raya Puasa", - "2015-07-19": "Second day of Hari Raya Puasa [In lieu]", + "2015-07-19": "Second day of Hari Raya Puasa (in lieu)", "2015-08-31": "National Day", "2015-09-16": "Malaysia Day", "2015-09-24": "Hari Raya Haji", @@ -1193,9 +1193,9 @@ "2016-02-09": "Chinese New Year Holiday", "2016-05-01": "Labour Day", "2016-05-21": "Vesak Day", - "2016-05-22": "Vesak Day [In lieu]", + "2016-05-22": "Vesak Day (in lieu)", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2016-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2016-06-22": "Nuzul Al-Quran Day", "2016-07-06": "Hari Raya Puasa", "2016-07-07": "Second day of Hari Raya Puasa", @@ -1205,27 +1205,27 @@ "2016-09-16": "Malaysia Day", "2016-10-02": "Awal Muharram (Hijri New Year)", "2016-10-29": "Deepavali", - "2016-10-30": "Deepavali [In lieu]", + "2016-10-30": "Deepavali (in lieu)", "2016-11-11": "Birthday of the Sultan of Kelantan", "2016-11-12": "Birthday of the Sultan of Kelantan", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year [In lieu]", + "2017-01-30": "Chinese New Year (in lieu)", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2017-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-02": "Hari Raya Haji", - "2017-09-03": "Hari Raya Haji [In lieu]", + "2017-09-03": "Hari Raya Haji (in lieu)", "2017-09-16": "Malaysia Day", - "2017-09-17": "Malaysia Day [In lieu]", + "2017-09-17": "Malaysia Day (in lieu)", "2017-09-22": "Awal Muharram (Hijri New Year)", "2017-10-18": "Deepavali", "2017-11-11": "Birthday of the Sultan of Kelantan", @@ -1234,15 +1234,15 @@ "2017-12-25": "Christmas Day", "2018-02-16": "Chinese New Year", "2018-02-17": "Chinese New Year Holiday", - "2018-02-18": "Chinese New Year Holiday [In lieu]", + "2018-02-18": "Chinese New Year Holiday (in lieu)", "2018-05-01": "Labour Day", "2018-05-09": "Malaysia General Election Holiday", "2018-05-29": "Vesak Day", "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-03": "Nuzul Al-Quran Day [In lieu]", + "2018-06-03": "Nuzul Al-Quran Day (in lieu)", "2018-06-15": "Hari Raya Puasa", "2018-06-16": "Second day of Hari Raya Puasa", - "2018-06-17": "Second day of Hari Raya Puasa [In lieu]", + "2018-06-17": "Second day of Hari Raya Puasa (in lieu)", "2018-08-22": "Hari Raya Haji", "2018-08-23": "Hari Raya Haji", "2018-08-31": "National Day", @@ -1266,17 +1266,17 @@ "2019-08-11": "Hari Raya Haji", "2019-08-12": "Hari Raya Haji", "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year); National Day [In lieu]", + "2019-09-01": "Awal Muharram (Hijri New Year); National Day (in lieu)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-11-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2019-11-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2019-11-11": "Birthday of the Sultan of Kelantan", "2019-11-12": "Birthday of the Sultan of Kelantan", "2019-12-25": "Christmas Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year [In lieu]", + "2020-01-27": "Chinese New Year (in lieu)", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", @@ -1285,7 +1285,7 @@ "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-31": "Hari Raya Haji", "2020-08-01": "Hari Raya Haji", - "2020-08-02": "Hari Raya Haji [In lieu]", + "2020-08-02": "Hari Raya Haji (in lieu)", "2020-08-20": "Awal Muharram (Hijri New Year)", "2020-08-31": "National Day", "2020-09-16": "Malaysia Day", @@ -1293,14 +1293,14 @@ "2020-11-11": "Birthday of the Sultan of Kelantan", "2020-11-12": "Birthday of the Sultan of Kelantan", "2020-11-14": "Deepavali", - "2020-11-15": "Deepavali [In lieu]", + "2020-11-15": "Deepavali (in lieu)", "2020-12-25": "Christmas Day", "2021-02-12": "Chinese New Year", "2021-02-13": "Chinese New Year Holiday", - "2021-02-14": "Chinese New Year Holiday [In lieu]", + "2021-02-14": "Chinese New Year Holiday (in lieu)", "2021-04-29": "Nuzul Al-Quran Day", "2021-05-01": "Labour Day", - "2021-05-02": "Labour Day [In lieu]", + "2021-05-02": "Labour Day (in lieu)", "2021-05-13": "Hari Raya Puasa", "2021-05-14": "Second day of Hari Raya Puasa", "2021-05-26": "Vesak Day", @@ -1315,7 +1315,7 @@ "2021-11-11": "Birthday of the Sultan of Kelantan", "2021-11-12": "Birthday of the Sultan of Kelantan", "2021-12-25": "Christmas Day", - "2021-12-26": "Christmas Day [In lieu]", + "2021-12-26": "Christmas Day (in lieu)", "2022-02-01": "Chinese New Year", "2022-02-02": "Chinese New Year Holiday", "2022-04-19": "Nuzul Al-Quran Day", @@ -1338,10 +1338,10 @@ "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-09": "Nuzul Al-Quran Day [In lieu]", + "2023-04-09": "Nuzul Al-Quran Day (in lieu)", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Hari Raya Puasa [In lieu]", + "2023-04-24": "Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1350,14 +1350,14 @@ "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-17": "Malaysia Day [In lieu]", + "2023-09-17": "Malaysia Day (in lieu)", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-11": "Birthday of the Sultan of Kelantan", "2023-11-12": "Birthday of the Sultan of Kelantan; Deepavali", "2023-12-25": "Christmas Day", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year (estimated) [In lieu]", + "2024-02-12": "Chinese New Year (estimated) (in lieu)", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1368,7 +1368,7 @@ "2024-06-17": "Hari Raya Haji (estimated)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-01": "National Day [In lieu]", + "2024-09-01": "National Day (in lieu)", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", "2024-10-30": "Deepavali", @@ -1385,7 +1385,7 @@ "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-07": "Hari Raya Haji (estimated)", - "2025-06-08": "Hari Raya Haji (estimated) [In lieu]", + "2025-06-08": "Hari Raya Haji (estimated) (in lieu)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1399,7 +1399,7 @@ "2026-03-06": "Nuzul Al-Quran Day (estimated)", "2026-03-20": "Hari Raya Puasa (estimated)", "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-03-22": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2026-03-22": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2026-05-01": "Labour Day; Vesak Day (estimated)", "2026-05-27": "Hari Raya Haji (estimated)", "2026-05-28": "Hari Raya Haji (estimated)", @@ -1409,49 +1409,49 @@ "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", - "2026-11-08": "Deepavali [In lieu]", + "2026-11-08": "Deepavali (in lieu)", "2026-11-11": "Birthday of the Sultan of Kelantan", "2026-11-12": "Birthday of the Sultan of Kelantan", "2026-12-25": "Christmas Day", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year (estimated) [In lieu]", + "2027-02-08": "Chinese New Year (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", - "2027-05-02": "Labour Day [In lieu]", + "2027-05-02": "Labour Day (in lieu)", "2027-05-16": "Hari Raya Haji (estimated)", "2027-05-17": "Hari Raya Haji (estimated)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-11-11": "Birthday of the Sultan of Kelantan", "2027-11-12": "Birthday of the Sultan of Kelantan", "2027-12-25": "Christmas Day", - "2027-12-26": "Christmas Day [In lieu]", + "2027-12-26": "Christmas Day (in lieu)", "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-13": "Nuzul Al-Quran Day (estimated)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-06": "Hari Raya Haji (estimated)", - "2028-05-07": "Hari Raya Haji (estimated) [In lieu]", + "2028-05-07": "Hari Raya Haji (estimated) (in lieu)", "2028-05-09": "Vesak Day (estimated)", "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", - "2028-09-17": "Malaysia Day [In lieu]", + "2028-09-17": "Malaysia Day (in lieu)", "2028-11-11": "Birthday of the Sultan of Kelantan", "2028-11-12": "Birthday of the Sultan of Kelantan", "2028-11-14": "Deepavali", @@ -1479,26 +1479,26 @@ "2030-02-05": "Second day of Hari Raya Puasa (estimated)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-14": "Hari Raya Haji (estimated)", - "2030-04-15": "Hari Raya Haji (estimated) [In lieu]", + "2030-04-15": "Hari Raya Haji (estimated) (in lieu)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2030-08-31": "National Day", - "2030-09-01": "National Day [In lieu]", + "2030-09-01": "National Day (in lieu)", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-11-11": "Birthday of the Sultan of Kelantan", "2030-11-12": "Birthday of the Sultan of Kelantan", "2030-12-25": "Christmas Day", "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-12": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2031-01-12": "Nuzul Al-Quran Day (estimated) (in lieu)", "2031-01-23": "Chinese New Year (estimated)", "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-01-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2031-01-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2031-04-02": "Hari Raya Haji (estimated)", "2031-04-03": "Hari Raya Haji (estimated)", "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", @@ -1521,7 +1521,7 @@ "2032-03-23": "Hari Raya Haji (estimated)", "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", - "2032-05-02": "Labour Day [In lieu]", + "2032-05-02": "Labour Day (in lieu)", "2032-05-23": "Vesak Day (estimated)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1532,14 +1532,14 @@ "2032-11-12": "Birthday of the Sultan of Kelantan", "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", - "2032-12-26": "Christmas Day [In lieu]", + "2032-12-26": "Christmas Day (in lieu)", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-03-12": "Hari Raya Haji (estimated)", - "2033-03-13": "Hari Raya Haji (estimated) [In lieu]", + "2033-03-13": "Hari Raya Haji (estimated) (in lieu)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", "2033-05-13": "Vesak Day (estimated)", @@ -1554,7 +1554,7 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2033-12-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", "2034-03-01": "Hari Raya Haji (estimated)", @@ -1566,7 +1566,7 @@ "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", - "2034-09-17": "Malaysia Day [In lieu]", + "2034-09-17": "Malaysia Day (in lieu)", "2034-11-09": "Deepavali", "2034-11-11": "Birthday of the Sultan of Kelantan", "2034-11-12": "Birthday of the Sultan of Kelantan", @@ -1589,10 +1589,10 @@ "2035-11-11": "Birthday of the Sultan of Kelantan", "2035-11-12": "Birthday of the Sultan of Kelantan", "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-11-18": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2035-11-18": "Nuzul Al-Quran Day (estimated) (in lieu)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", @@ -1602,7 +1602,7 @@ "2036-05-01": "Labour Day", "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2036-05-10": "Vesak Day (estimated)", - "2036-05-11": "Vesak Day (estimated) [In lieu]", + "2036-05-11": "Vesak Day (estimated) (in lieu)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-16": "Malaysia Day", @@ -1632,27 +1632,27 @@ "2037-12-25": "Christmas Day", "2038-01-16": "Hari Raya Haji (estimated)", "2038-01-17": "Hari Raya Haji (estimated)", - "2038-01-18": "Hari Raya Haji (estimated) [In lieu]", + "2038-01-18": "Hari Raya Haji (estimated) (in lieu)", "2038-02-04": "Chinese New Year (estimated)", "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2038-05-01": "Labour Day", - "2038-05-02": "Labour Day [In lieu]", + "2038-05-02": "Labour Day (in lieu)", "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-17": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2038-10-17": "Nuzul Al-Quran Day (estimated) (in lieu)", "2038-10-26": "Deepavali", "2038-10-29": "Hari Raya Puasa (estimated)", "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-10-31": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2038-10-31": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2038-11-11": "Birthday of the Sultan of Kelantan", "2038-11-12": "Birthday of the Sultan of Kelantan", "2038-12-25": "Christmas Day", - "2038-12-26": "Christmas Day [In lieu]", + "2038-12-26": "Christmas Day (in lieu)", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-06": "Hari Raya Haji (estimated)", "2039-01-24": "Chinese New Year (estimated)", @@ -1661,7 +1661,7 @@ "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", "2039-05-07": "Vesak Day (estimated)", - "2039-05-08": "Vesak Day (estimated) [In lieu]", + "2039-05-08": "Vesak Day (estimated) (in lieu)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", @@ -1687,23 +1687,23 @@ "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", "2040-11-03": "Deepavali", - "2040-11-04": "Deepavali [In lieu]", + "2040-11-04": "Deepavali (in lieu)", "2040-11-11": "Birthday of the Sultan of Kelantan", "2040-11-12": "Birthday of the Sultan of Kelantan", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-15": "Hari Raya Haji (estimated)", - "2040-12-16": "Hari Raya Haji (estimated) [In lieu]", + "2040-12-16": "Hari Raya Haji (estimated) (in lieu)", "2040-12-25": "Christmas Day", "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", "2041-02-01": "Chinese New Year (estimated)", "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-03": "Chinese New Year Holiday (estimated) [In lieu]", + "2041-02-03": "Chinese New Year Holiday (estimated) (in lieu)", "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-05-01": "Labour Day", "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-08-31": "National Day", - "2041-09-01": "National Day [In lieu]", + "2041-09-01": "National Day (in lieu)", "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", "2041-09-26": "Hari Raya Puasa (estimated)", @@ -1736,17 +1736,17 @@ "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", - "2043-05-24": "Vesak Day (estimated) [In lieu]", + "2043-05-24": "Vesak Day (estimated) (in lieu)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-23": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2043-08-23": "Nuzul Al-Quran Day (estimated) (in lieu)", "2043-08-31": "National Day", "2043-09-04": "Hari Raya Puasa (estimated)", "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2043-09-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-01": "Deepavali [In lieu]", + "2043-11-01": "Deepavali (in lieu)", "2043-11-11": "Birthday of the Sultan of Kelantan", "2043-11-12": "Birthday of the Sultan of Kelantan; Hari Raya Haji (estimated)", "2043-11-13": "Hari Raya Haji (estimated)", @@ -1754,7 +1754,7 @@ "2043-12-25": "Christmas Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year (estimated) [In lieu]", + "2044-02-01": "Chinese New Year (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", "2044-05-12": "Vesak Day (estimated)", @@ -1774,7 +1774,7 @@ "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-02-19": "Chinese New Year Holiday (estimated) [In lieu]", + "2045-02-19": "Chinese New Year Holiday (estimated) (in lieu)", "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2045-07-31": "Nuzul Al-Quran Day (estimated)", @@ -1782,10 +1782,10 @@ "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-09-17": "Malaysia Day [In lieu]", + "2045-09-17": "Malaysia Day (in lieu)", "2045-10-21": "Hari Raya Haji (estimated)", "2045-10-22": "Hari Raya Haji (estimated)", - "2045-10-23": "Hari Raya Haji (estimated) [In lieu]", + "2045-10-23": "Hari Raya Haji (estimated) (in lieu)", "2045-11-07": "Deepavali", "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-11-11": "Birthday of the Sultan of Kelantan", @@ -1798,16 +1798,16 @@ "2046-05-20": "Vesak Day (estimated)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-07-22": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2046-07-22": "Nuzul Al-Quran Day (estimated) (in lieu)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-05": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2046-08-05": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-11": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-28": "Deepavali [In lieu]", + "2046-10-28": "Deepavali (in lieu)", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-11-11": "Birthday of the Sultan of Kelantan", "2046-11-12": "Birthday of the Sultan of Kelantan", @@ -1815,7 +1815,7 @@ "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year (estimated) [In lieu]", + "2047-01-28": "Chinese New Year (estimated) (in lieu)", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -1823,7 +1823,7 @@ "2047-07-24": "Hari Raya Puasa (estimated)", "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", - "2047-09-01": "National Day [In lieu]", + "2047-09-01": "National Day (in lieu)", "2047-09-16": "Malaysia Day", "2047-09-30": "Hari Raya Haji (estimated)", "2047-10-01": "Hari Raya Haji (estimated)", @@ -1835,7 +1835,7 @@ "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "2048-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "2048-05-01": "Labour Day", "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", @@ -1846,7 +1846,7 @@ "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", "2048-09-20": "Hari Raya Haji (estimated)", - "2048-09-21": "Hari Raya Haji (estimated) [In lieu]", + "2048-09-21": "Hari Raya Haji (estimated) (in lieu)", "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", "2048-11-11": "Birthday of the Sultan of Kelantan", @@ -1856,7 +1856,7 @@ "2049-02-02": "Chinese New Year (estimated)", "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-05-01": "Labour Day", - "2049-05-02": "Labour Day [In lieu]", + "2049-05-02": "Labour Day (in lieu)", "2049-05-16": "Vesak Day (estimated)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", @@ -1872,7 +1872,7 @@ "2049-11-12": "Birthday of the Sultan of Kelantan", "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", - "2049-12-26": "Christmas Day [In lieu]", + "2049-12-26": "Christmas Day (in lieu)", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", "2050-05-01": "Labour Day", @@ -1888,8 +1888,8 @@ "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-11": "Birthday of the Sultan of Kelantan", "2050-11-12": "Birthday of the Sultan of Kelantan; Deepavali", - "2050-11-13": "Deepavali [In lieu]", + "2050-11-13": "Deepavali (in lieu)", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/MY_KUL.json b/snapshots/countries/MY_KUL.json index 48bf15ebd..61c0fbf60 100644 --- a/snapshots/countries/MY_KUL.json +++ b/snapshots/countries/MY_KUL.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", @@ -9,7 +9,7 @@ "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -22,7 +22,7 @@ "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-22": "Nuzul Al-Quran Day (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", @@ -31,14 +31,14 @@ "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -46,16 +46,16 @@ "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", @@ -63,7 +63,7 @@ "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -88,11 +88,11 @@ "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam [In lieu]", + "1955-01-10": "Thaipusam (in lieu)", "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-10": "Nuzul Al-Quran Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", @@ -104,14 +104,14 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam [In lieu]", + "1956-02-27": "Thaipusam (in lieu)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -137,7 +137,7 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", @@ -145,27 +145,27 @@ "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam [In lieu]", + "1959-02-23": "Thaipusam (in lieu)", "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -186,7 +186,7 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -194,16 +194,16 @@ "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", "1961-03-04": "Nuzul Al-Quran Day (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -226,7 +226,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", @@ -237,7 +237,7 @@ "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -268,7 +268,7 @@ "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -282,21 +282,21 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -328,7 +328,7 @@ "1968-12-07": "Nuzul Al-Quran Day (estimated)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -340,7 +340,7 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-11-08": "Deepavali", "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-12-10": "Hari Raya Puasa (estimated)", @@ -371,7 +371,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-11-05": "Nuzul Al-Quran Day (estimated)", @@ -396,14 +396,14 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam [In lieu]", + "1973-02-19": "Thaipusam (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -412,7 +412,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-03": "Hari Raya Haji (estimated)", @@ -440,10 +440,10 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", @@ -454,9 +454,9 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]; Federal Territory Day [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu); Federal Territory Day (in lieu)", "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam [In lieu]", + "1976-02-16": "Thaipusam (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -477,7 +477,7 @@ "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", "1977-09-14": "Hari Raya Puasa (estimated)", @@ -486,24 +486,24 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-01": "Federal Territory Day", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -512,7 +512,7 @@ "1979-01-13": "Thaipusam", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-01": "Federal Territory Day", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", @@ -524,7 +524,7 @@ "1979-08-31": "National Day", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -532,9 +532,9 @@ "1980-02-01": "Federal Territory Day", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam [In lieu]", + "1980-03-03": "Thaipusam (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -542,17 +542,17 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-01": "Federal Territory Day", - "1981-02-02": "Federal Territory Day [In lieu]", + "1981-02-02": "Federal Territory Day (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", @@ -562,7 +562,7 @@ "1981-07-18": "Nuzul Al-Quran Day (estimated)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", @@ -571,7 +571,7 @@ "1982-01-01": "New Year's Day", "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam [In lieu]", + "1982-01-11": "Thaipusam (in lieu)", "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-02-01": "Federal Territory Day", @@ -591,10 +591,10 @@ "1983-02-01": "Federal Territory Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-28": "Nuzul Al-Quran Day (estimated)", @@ -606,9 +606,9 @@ "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-01": "Federal Territory Day", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", @@ -619,7 +619,7 @@ "1984-06-16": "Nuzul Al-Quran Day (estimated)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -641,28 +641,28 @@ "1985-08-31": "National Day", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-01": "Federal Territory Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam [In lieu]", + "1986-02-24": "Thaipusam (in lieu)", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -672,7 +672,7 @@ "1987-01-29": "Chinese New Year (estimated)", "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-02-01": "Federal Territory Day", - "1987-02-02": "Federal Territory Day [In lieu]", + "1987-02-02": "Federal Territory Day (in lieu)", "1987-05-01": "Labour Day", "1987-05-12": "Vesak Day (estimated)", "1987-05-15": "Nuzul Al-Quran Day (estimated)", @@ -691,7 +691,7 @@ "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-03": "Nuzul Al-Quran Day (estimated)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", @@ -703,19 +703,19 @@ "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-01": "Federal Territory Day", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", @@ -728,7 +728,7 @@ "1990-01-12": "Thaipusam", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-02-01": "Federal Territory Day", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", @@ -767,10 +767,10 @@ "1992-03-21": "Nuzul Al-Quran Day (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -782,7 +782,7 @@ "1993-01-08": "Thaipusam", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-02-01": "Federal Territory Day", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", @@ -793,7 +793,7 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", @@ -803,12 +803,12 @@ "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -817,9 +817,9 @@ "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "1995-02-14": "Thaipusam", @@ -829,7 +829,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -853,12 +853,12 @@ "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", "1997-02-01": "Federal Territory Day", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-02-22": "Thaipusam", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -867,7 +867,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", @@ -877,12 +877,12 @@ "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1998-01-30": "Second day of Hari Raya Puasa (estimated)", "1998-02-01": "Federal Territory Day", - "1998-02-02": "Federal Territory Day [In lieu]", + "1998-02-02": "Federal Territory Day (in lieu)", "1998-04-07": "Hari Raya Haji (estimated)", "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", @@ -909,13 +909,13 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-01": "Federal Territory Day", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam [In lieu]", + "2000-02-21": "Thaipusam (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", @@ -958,7 +958,7 @@ "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2002-08-31": "National Day", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-11-22": "Nuzul Al-Quran Day", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", @@ -966,17 +966,17 @@ "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year; Federal Territory Day", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam [In lieu]", + "2003-02-17": "Thaipusam (in lieu)", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-05-01": "Labour Day", "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-23": "Deepavali", "2003-11-12": "Nuzul Al-Quran Day", "2003-11-26": "Hari Raya Puasa", @@ -988,19 +988,19 @@ "2004-01-23": "Chinese New Year Holiday", "2004-02-01": "Federal Territory Day", "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Federal Territory Day [In lieu]", + "2004-02-03": "Federal Territory Day (in lieu)", "2004-02-22": "Awal Muharram (Hijri New Year)", "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-11-01": "Nuzul Al-Quran Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -1010,9 +1010,9 @@ "2005-02-23": "Thaipusam", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-08-31": "National Day", "2005-10-21": "Nuzul Al-Quran Day", @@ -1020,13 +1020,13 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-02-01": "Federal Territory Day", "2006-02-13": "Thaipusam", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1041,14 +1041,14 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-01": "Federal Territory Day", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam [In lieu]", + "2007-03-05": "Thaipusam (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -1056,7 +1056,7 @@ "2007-09-29": "Nuzul Al-Quran Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-25": "Christmas Day", @@ -1071,7 +1071,7 @@ "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", @@ -1081,11 +1081,11 @@ "2008-12-29": "Awal Muharram (Hijri New Year)", "2009-01-01": "New Year's Day", "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam [In lieu]", + "2009-01-12": "Thaipusam (in lieu)", "2009-01-26": "Chinese New Year", "2009-01-27": "Chinese New Year Holiday", "2009-02-01": "Federal Territory Day", - "2009-02-02": "Federal Territory Day [In lieu]", + "2009-02-02": "Federal Territory Day (in lieu)", "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2009-05-01": "Labour Day", "2009-05-09": "Vesak Day", @@ -1094,7 +1094,7 @@ "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", "2009-12-18": "Awal Muharram (Hijri New Year)", @@ -1103,7 +1103,7 @@ "2010-02-01": "Federal Territory Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-03-01": "Thaipusam", "2010-05-01": "Labour Day", @@ -1125,7 +1125,7 @@ "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-02-18": "Thaipusam", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2011-08-17": "Nuzul Al-Quran Day", @@ -1136,27 +1136,27 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam [In lieu]", + "2012-01-09": "Thaipusam (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-01": "Federal Territory Day", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day [In lieu]", + "2012-08-06": "Nuzul Al-Quran Day (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", @@ -1166,7 +1166,7 @@ "2013-02-01": "Federal Territory Day", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-02-25": "Thaipusam", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", @@ -1192,23 +1192,23 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2015-02-01": "Federal Territory Day", - "2015-02-02": "Federal Territory Day [In lieu]", + "2015-02-02": "Federal Territory Day (in lieu)", "2015-02-19": "Chinese New Year", "2015-02-20": "Chinese New Year Holiday", "2015-03-05": "Thaipusam", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-07-04": "Nuzul Al-Quran Day", "2015-07-17": "Hari Raya Puasa", @@ -1226,7 +1226,7 @@ "2016-02-09": "Chinese New Year Holiday", "2016-02-23": "Thaipusam", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2016-06-22": "Nuzul Al-Quran Day", @@ -1239,13 +1239,13 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-13": "Thaipusam", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-02-01": "Federal Territory Day", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", @@ -1253,7 +1253,7 @@ "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -1275,10 +1275,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2018-12-25": "Christmas Day", @@ -1289,34 +1289,34 @@ "2019-02-06": "Chinese New Year Holiday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-05-22": "Nuzul Al-Quran Day", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-02-01": "Federal Territory Day", "2020-02-08": "Thaipusam", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day [In lieu]", + "2020-05-11": "Nuzul Al-Quran Day (in lieu)", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-31": "Hari Raya Haji", "2020-08-20": "Awal Muharram (Hijri New Year)", @@ -1352,31 +1352,31 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-02-01": "Federal Territory Day", "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam [In lieu]", + "2023-02-06": "Thaipusam (in lieu)", "2023-04-08": "Nuzul Al-Quran Day", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1386,14 +1386,14 @@ "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", "2024-02-01": "Federal Territory Day", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1401,12 +1401,12 @@ "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", @@ -1417,22 +1417,22 @@ "2025-03-17": "Nuzul Al-Quran Day (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Federal Territory Day; Thaipusam", - "2026-02-02": "Federal Territory Day [In lieu]; Thaipusam [In lieu]", + "2026-02-02": "Federal Territory Day (in lieu); Thaipusam (in lieu)", "2026-02-17": "Chinese New Year (estimated)", "2026-02-18": "Chinese New Year Holiday (estimated)", "2026-03-06": "Nuzul Al-Quran Day (estimated)", @@ -1452,13 +1452,13 @@ "2027-02-01": "Federal Territory Day", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1473,10 +1473,10 @@ "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-01": "Federal Territory Day", "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-09": "Vesak Day (estimated)", @@ -1497,14 +1497,14 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Nuzul Al-Quran Day (estimated)", @@ -1512,9 +1512,9 @@ "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam [In lieu]", + "2030-02-18": "Thaipusam (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", @@ -1539,7 +1539,7 @@ "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", @@ -1548,7 +1548,7 @@ "2032-01-14": "Hari Raya Puasa (estimated)", "2032-01-15": "Second day of Hari Raya Puasa (estimated)", "2032-02-01": "Federal Territory Day", - "2032-02-02": "Federal Territory Day [In lieu]", + "2032-02-02": "Federal Territory Day (in lieu)", "2032-02-11": "Chinese New Year (estimated)", "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-02-26": "Thaipusam", @@ -1556,10 +1556,10 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", @@ -1568,14 +1568,14 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "2033-02-14": "Thaipusam", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1586,16 +1586,16 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-01": "Federal Territory Day", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam [In lieu]", + "2034-03-06": "Thaipusam (in lieu)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", "2034-05-03": "Vesak Day (estimated)", @@ -1613,26 +1613,26 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-02-23": "Thaipusam", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-29": "Deepavali", "2035-11-17": "Nuzul Al-Quran Day (estimated)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam [In lieu]", + "2036-01-14": "Thaipusam (in lieu)", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-01": "Federal Territory Day", @@ -1643,21 +1643,21 @@ "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-01": "Federal Territory Day", - "2037-02-02": "Federal Territory Day [In lieu]", + "2037-02-02": "Federal Territory Day (in lieu)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-03-02": "Thaipusam", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", @@ -1669,7 +1669,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Hari Raya Haji (estimated)", @@ -1691,14 +1691,14 @@ "2039-01-01": "New Year's Day", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam [In lieu]", + "2039-01-10": "Thaipusam (in lieu)", "2039-01-24": "Chinese New Year (estimated)", "2039-01-25": "Chinese New Year Holiday (estimated)", "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-02-01": "Federal Territory Day", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", @@ -1709,28 +1709,28 @@ "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-01": "Federal Territory Day", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-02-27": "Thaipusam", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1760,25 +1760,25 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-02": "Nuzul Al-Quran Day (estimated)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-01": "Federal Territory Day", - "2043-02-02": "Federal Territory Day [In lieu]", + "2043-02-02": "Federal Territory Day (in lieu)", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", @@ -1796,12 +1796,12 @@ "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", "2044-02-01": "Federal Territory Day", - "2044-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam [In lieu]", + "2044-02-15": "Thaipusam (in lieu)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-08-11": "Nuzul Al-Quran Day (estimated)", @@ -1813,9 +1813,9 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-01": "Federal Territory Day", "2045-02-17": "Chinese New Year (estimated)", @@ -1840,14 +1840,14 @@ "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-21": "Nuzul Al-Quran Day (estimated)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1857,7 +1857,7 @@ "2047-01-11": "Thaipusam", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-02-01": "Federal Territory Day", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", @@ -1872,7 +1872,7 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-01": "Federal Territory Day", "2048-02-14": "Chinese New Year (estimated)", @@ -1882,10 +1882,10 @@ "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", @@ -1900,7 +1900,7 @@ "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", "2049-07-01": "Hari Raya Puasa (estimated)", @@ -1916,22 +1916,22 @@ "2050-01-08": "Thaipusam", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-02-01": "Federal Territory Day", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-07": "Nuzul Al-Quran Day (estimated)", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_LBN.json b/snapshots/countries/MY_LBN.json index b090c3cda..647789d33 100644 --- a/snapshots/countries/MY_LBN.json +++ b/snapshots/countries/MY_LBN.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-05-01": "Labour Day; Vesak Day (estimated)", @@ -10,7 +10,7 @@ "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -22,7 +22,7 @@ "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-05-30": "Pesta Kaamatan", "1951-05-31": "Pesta Kaamatan (Second day)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -33,13 +33,13 @@ "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-05-30": "Pesta Kaamatan", @@ -49,16 +49,16 @@ "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", "1953-05-30": "Nuzul Al-Quran Day (estimated); Pesta Kaamatan", @@ -66,7 +66,7 @@ "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -94,7 +94,7 @@ "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-10": "Nuzul Al-Quran Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", @@ -108,12 +108,12 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -142,17 +142,17 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-02-18": "Chinese New Year (estimated)", "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-05-30": "Pesta Kaamatan", @@ -161,15 +161,15 @@ "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -191,7 +191,7 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-05-30": "Pesta Kaamatan", "1960-05-31": "Pesta Kaamatan (Second day)", @@ -201,15 +201,15 @@ "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-04": "Nuzul Al-Quran Day (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -235,7 +235,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", @@ -245,7 +245,7 @@ "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -278,7 +278,7 @@ "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-05-30": "Pesta Kaamatan", @@ -293,11 +293,11 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-05-30": "Pesta Kaamatan", "1966-05-31": "Pesta Kaamatan (Second day)", @@ -306,10 +306,10 @@ "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -343,7 +343,7 @@ "1968-12-07": "Nuzul Al-Quran Day (estimated)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -356,7 +356,7 @@ "1969-05-31": "Pesta Kaamatan (Second day)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-11-08": "Deepavali", "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-12-10": "Hari Raya Puasa (estimated)", @@ -387,7 +387,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-05-30": "Pesta Kaamatan", "1971-05-31": "Pesta Kaamatan (Second day)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -415,12 +415,12 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-05-30": "Pesta Kaamatan", @@ -431,7 +431,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-03": "Hari Raya Haji (estimated)", @@ -459,12 +459,12 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-05-30": "Pesta Kaamatan", "1975-05-31": "Pesta Kaamatan (Second day)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", @@ -475,7 +475,7 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]; Federal Territory Day [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu); Federal Territory Day (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -497,7 +497,7 @@ "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-05-30": "Pesta Kaamatan", "1977-05-31": "Pesta Kaamatan (Second day)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -508,17 +508,17 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-01": "Federal Territory Day", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-05-30": "Pesta Kaamatan", "1978-05-31": "Pesta Kaamatan (Second day)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -526,7 +526,7 @@ "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -534,7 +534,7 @@ "1979-01-01": "New Year's Day", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-01": "Federal Territory Day", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", @@ -548,7 +548,7 @@ "1979-08-31": "National Day", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -556,7 +556,7 @@ "1980-02-01": "Federal Territory Day", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-05-30": "Pesta Kaamatan", @@ -566,17 +566,17 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-01": "Federal Territory Day", - "1981-02-02": "Federal Territory Day [In lieu]", + "1981-02-02": "Federal Territory Day (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", @@ -587,7 +587,7 @@ "1981-07-18": "Nuzul Al-Quran Day (estimated)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", @@ -616,9 +616,9 @@ "1983-02-01": "Federal Territory Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-05-30": "Pesta Kaamatan", "1983-05-31": "Pesta Kaamatan (Second day)", @@ -632,9 +632,9 @@ "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-01": "Federal Territory Day", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", @@ -646,7 +646,7 @@ "1984-06-16": "Nuzul Al-Quran Day (estimated)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -669,28 +669,28 @@ "1985-08-31": "National Day", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-01": "Federal Territory Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", "1986-05-30": "Pesta Kaamatan", "1986-05-31": "Pesta Kaamatan (Second day)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -699,7 +699,7 @@ "1987-01-29": "Chinese New Year (estimated)", "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-02-01": "Federal Territory Day", - "1987-02-02": "Federal Territory Day [In lieu]", + "1987-02-02": "Federal Territory Day (in lieu)", "1987-05-01": "Labour Day", "1987-05-12": "Vesak Day (estimated)", "1987-05-15": "Nuzul Al-Quran Day (estimated)", @@ -719,7 +719,7 @@ "1988-02-17": "Chinese New Year (estimated)", "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-03": "Nuzul Al-Quran Day (estimated)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", @@ -732,18 +732,18 @@ "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-01": "Federal Territory Day", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-05-30": "Pesta Kaamatan", "1989-05-31": "Pesta Kaamatan (Second day)", @@ -757,7 +757,7 @@ "1990-01-01": "New Year's Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-02-01": "Federal Territory Day", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", @@ -798,10 +798,10 @@ "1992-03-21": "Nuzul Al-Quran Day (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-05-30": "Pesta Kaamatan", "1992-05-31": "Pesta Kaamatan (Second day)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -814,7 +814,7 @@ "1993-01-01": "New Year's Day", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-02-01": "Federal Territory Day", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", @@ -826,7 +826,7 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", @@ -835,12 +835,12 @@ "1994-02-10": "Chinese New Year (estimated)", "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-05-30": "Pesta Kaamatan", @@ -851,9 +851,9 @@ "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "1995-02-16": "Nuzul Al-Quran Day (estimated)", @@ -862,7 +862,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated); Pesta Kaamatan", "1995-05-31": "Pesta Kaamatan (Second day)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -888,12 +888,12 @@ "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", "1997-02-01": "Federal Territory Day", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", @@ -903,7 +903,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", @@ -912,12 +912,12 @@ "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1998-01-30": "Second day of Hari Raya Puasa (estimated)", "1998-02-01": "Federal Territory Day", - "1998-02-02": "Federal Territory Day [In lieu]", + "1998-02-02": "Federal Territory Day (in lieu)", "1998-04-07": "Hari Raya Haji (estimated)", "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-05-30": "Pesta Kaamatan", "1998-05-31": "Pesta Kaamatan (Second day)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -947,11 +947,11 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-01": "Federal Territory Day", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", @@ -998,7 +998,7 @@ "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2002-08-31": "National Day", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-11-22": "Nuzul Al-Quran Day", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", @@ -1006,7 +1006,7 @@ "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year; Federal Territory Day", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-05-01": "Labour Day", @@ -1016,7 +1016,7 @@ "2003-05-31": "Pesta Kaamatan (Second day)", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-23": "Deepavali", "2003-11-12": "Nuzul Al-Quran Day", "2003-11-26": "Hari Raya Puasa", @@ -1027,12 +1027,12 @@ "2004-01-23": "Chinese New Year Holiday", "2004-02-01": "Federal Territory Day", "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Federal Territory Day [In lieu]", + "2004-02-03": "Federal Territory Day (in lieu)", "2004-02-22": "Awal Muharram (Hijri New Year)", "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-05-30": "Pesta Kaamatan", "2004-05-31": "Pesta Kaamatan (Second day)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1041,7 +1041,7 @@ "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -1050,9 +1050,9 @@ "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-05-30": "Pesta Kaamatan", "2005-05-31": "Pesta Kaamatan (Second day)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1062,13 +1062,13 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-02-01": "Federal Territory Day", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", @@ -1084,12 +1084,12 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-01": "Federal Territory Day", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-05-30": "Pesta Kaamatan", @@ -1099,7 +1099,7 @@ "2007-09-29": "Nuzul Al-Quran Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-25": "Christmas Day", @@ -1115,7 +1115,7 @@ "2008-05-31": "Pesta Kaamatan (Second day)", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", @@ -1127,7 +1127,7 @@ "2009-01-26": "Chinese New Year", "2009-01-27": "Chinese New Year Holiday", "2009-02-01": "Federal Territory Day", - "2009-02-02": "Federal Territory Day [In lieu]", + "2009-02-02": "Federal Territory Day (in lieu)", "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2009-05-01": "Labour Day", "2009-05-09": "Vesak Day", @@ -1138,7 +1138,7 @@ "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", "2009-12-18": "Awal Muharram (Hijri New Year)", @@ -1147,7 +1147,7 @@ "2010-02-01": "Federal Territory Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-05-01": "Labour Day", "2010-05-28": "Vesak Day", @@ -1169,7 +1169,7 @@ "2011-02-04": "Chinese New Year Holiday", "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-05-30": "Pesta Kaamatan", "2011-05-31": "Pesta Kaamatan (Second day)", @@ -1182,27 +1182,27 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-01": "Federal Territory Day", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-05-30": "Pesta Kaamatan", "2012-05-31": "Pesta Kaamatan (Second day)", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day [In lieu]", + "2012-08-06": "Nuzul Al-Quran Day (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", @@ -1212,7 +1212,7 @@ "2013-02-01": "Federal Territory Day", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", "2013-05-30": "Pesta Kaamatan", @@ -1240,22 +1240,22 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2015-02-01": "Federal Territory Day", - "2015-02-02": "Federal Territory Day [In lieu]", + "2015-02-02": "Federal Territory Day (in lieu)", "2015-02-19": "Chinese New Year", "2015-02-20": "Chinese New Year Holiday", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-05-30": "Pesta Kaamatan", "2015-05-31": "Pesta Kaamatan (Second day)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -1274,7 +1274,7 @@ "2016-02-08": "Chinese New Year", "2016-02-09": "Chinese New Year Holiday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-05-30": "Pesta Kaamatan", "2016-05-31": "Pesta Kaamatan (Second day)", @@ -1289,12 +1289,12 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-02-01": "Federal Territory Day", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", @@ -1304,7 +1304,7 @@ "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -1327,10 +1327,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2018-12-25": "Christmas Day", @@ -1340,7 +1340,7 @@ "2019-02-06": "Chinese New Year Holiday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-05-22": "Nuzul Al-Quran Day", "2019-05-30": "Pesta Kaamatan", "2019-05-31": "Pesta Kaamatan (Second day)", @@ -1349,26 +1349,26 @@ "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-02-01": "Federal Territory Day", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day [In lieu]", + "2020-05-11": "Nuzul Al-Quran Day (in lieu)", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-05-30": "Pesta Kaamatan", "2020-05-31": "Pesta Kaamatan (Second day)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", @@ -1406,31 +1406,31 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-05-30": "Pesta Kaamatan", "2022-05-31": "Pesta Kaamatan (Second day)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-02-01": "Federal Territory Day", "2023-04-08": "Nuzul Al-Quran Day", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-05-30": "Pesta Kaamatan", @@ -1442,13 +1442,13 @@ "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-02-01": "Federal Territory Day", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1458,12 +1458,12 @@ "2024-05-31": "Pesta Kaamatan (Second day)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", @@ -1473,24 +1473,24 @@ "2025-03-17": "Nuzul Al-Quran Day (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-05-30": "Pesta Kaamatan", "2025-05-31": "Pesta Kaamatan (Second day)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Federal Territory Day", - "2026-02-02": "Federal Territory Day [In lieu]", + "2026-02-02": "Federal Territory Day (in lieu)", "2026-02-17": "Chinese New Year (estimated)", "2026-02-18": "Chinese New Year Holiday (estimated)", "2026-03-06": "Nuzul Al-Quran Day (estimated)", @@ -1511,13 +1511,13 @@ "2027-02-01": "Federal Territory Day", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-05-30": "Pesta Kaamatan", "2027-05-31": "Pesta Kaamatan (Second day)", @@ -1533,10 +1533,10 @@ "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-01": "Federal Territory Day", "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-09": "Vesak Day (estimated)", @@ -1558,16 +1558,16 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-05-30": "Pesta Kaamatan", "2029-05-31": "Pesta Kaamatan (Second day)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Nuzul Al-Quran Day (estimated)", @@ -1575,7 +1575,7 @@ "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", @@ -1603,7 +1603,7 @@ "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", @@ -1612,19 +1612,19 @@ "2032-01-14": "Hari Raya Puasa (estimated)", "2032-01-15": "Second day of Hari Raya Puasa (estimated)", "2032-02-01": "Federal Territory Day", - "2032-02-02": "Federal Territory Day [In lieu]", + "2032-02-02": "Federal Territory Day (in lieu)", "2032-02-11": "Chinese New Year (estimated)", "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-03-22": "Hari Raya Haji (estimated)", "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-05-30": "Pesta Kaamatan", "2032-05-31": "Pesta Kaamatan (Second day)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", @@ -1633,13 +1633,13 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-05-30": "Pesta Kaamatan", "2033-05-31": "Pesta Kaamatan (Second day)", @@ -1652,13 +1652,13 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-01": "Federal Territory Day", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", @@ -1678,23 +1678,23 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-05-30": "Pesta Kaamatan", "2035-05-31": "Pesta Kaamatan (Second day)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-29": "Deepavali", "2035-11-17": "Nuzul Al-Quran Day (estimated)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-28": "Chinese New Year (estimated)", @@ -1709,21 +1709,21 @@ "2036-05-31": "Pesta Kaamatan (Second day)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-01": "Federal Territory Day", - "2037-02-02": "Federal Territory Day [In lieu]", + "2037-02-02": "Federal Territory Day (in lieu)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", "2037-05-29": "Vesak Day (estimated)", @@ -1736,7 +1736,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Hari Raya Haji (estimated)", @@ -1764,7 +1764,7 @@ "2039-02-01": "Federal Territory Day", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-05-30": "Pesta Kaamatan", "2039-05-31": "Pesta Kaamatan (Second day)", @@ -1777,16 +1777,16 @@ "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-01": "Federal Territory Day", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-05-30": "Pesta Kaamatan", @@ -1794,12 +1794,12 @@ "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1829,27 +1829,27 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-05-30": "Pesta Kaamatan", "2042-05-31": "Pesta Kaamatan (Second day)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-02": "Nuzul Al-Quran Day (estimated)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-01": "Federal Territory Day", - "2043-02-02": "Federal Territory Day [In lieu]", + "2043-02-02": "Federal Territory Day (in lieu)", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", "2043-05-30": "Pesta Kaamatan", @@ -1868,10 +1868,10 @@ "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", "2044-02-01": "Federal Territory Day", - "2044-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-05-30": "Pesta Kaamatan", "2044-05-31": "Pesta Kaamatan (Second day)", @@ -1885,9 +1885,9 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-01": "Federal Territory Day", "2045-02-17": "Chinese New Year (estimated)", @@ -1912,7 +1912,7 @@ "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-05-30": "Pesta Kaamatan", "2046-05-31": "Pesta Kaamatan (Second day)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1921,7 +1921,7 @@ "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1930,7 +1930,7 @@ "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-02-01": "Federal Territory Day", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", @@ -1947,7 +1947,7 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-01": "Federal Territory Day", "2048-02-14": "Chinese New Year (estimated)", @@ -1958,10 +1958,10 @@ "2048-05-31": "Pesta Kaamatan (Second day)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", @@ -1975,7 +1975,7 @@ "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-05-30": "Pesta Kaamatan", "2049-05-31": "Pesta Kaamatan (Second day)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1992,10 +1992,10 @@ "2050-01-01": "New Year's Day", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-02-01": "Federal Territory Day", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-05-30": "Pesta Kaamatan", "2050-05-31": "Pesta Kaamatan (Second day)", @@ -2004,12 +2004,12 @@ "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_MLK.json b/snapshots/countries/MY_MLK.json index b2f924ef8..f60ed7e74 100644 --- a/snapshots/countries/MY_MLK.json +++ b/snapshots/countries/MY_MLK.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-05-01": "Labour Day; Vesak Day (estimated)", @@ -8,7 +8,7 @@ "1950-06-17": "Beginning of Ramadan (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated); Birthday of the Governor of Malacca", @@ -20,7 +20,7 @@ "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-06": "Beginning of Ramadan (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", @@ -30,39 +30,39 @@ "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-12": "Birthday of the Governor of Malacca", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-05-25": "Beginning of Ramadan (estimated)", - "1952-05-26": "Beginning of Ramadan (estimated) [In lieu]", + "1952-05-26": "Beginning of Ramadan (estimated) (in lieu)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-10-10": "Birthday of the Governor of Malacca", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-05-01": "Labour Day", "1953-05-14": "Beginning of Ramadan (estimated)", "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -90,9 +90,9 @@ "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-04-24": "Beginning of Ramadan (estimated)", - "1955-04-25": "Beginning of Ramadan (estimated) [In lieu]", + "1955-04-25": "Beginning of Ramadan (estimated) (in lieu)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", "1955-05-24": "Second day of Hari Raya Puasa (estimated)", @@ -104,12 +104,12 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-04-12": "Beginning of Ramadan (estimated)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -135,7 +135,7 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-10-11": "Birthday of the Governor of Malacca", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", @@ -145,23 +145,23 @@ "1958-03-21": "Beginning of Ramadan (estimated)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-10-10": "Birthday of the Governor of Malacca", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-03-11": "Beginning of Ramadan (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -179,11 +179,11 @@ "1960-01-28": "Chinese New Year (estimated)", "1960-01-29": "Chinese New Year Holiday (estimated)", "1960-02-28": "Beginning of Ramadan (estimated)", - "1960-02-29": "Beginning of Ramadan (estimated) [In lieu]", + "1960-02-29": "Beginning of Ramadan (estimated) (in lieu)", "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -192,14 +192,14 @@ "1960-10-14": "Birthday of the Governor of Malacca", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -221,7 +221,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-12": "Birthday of the Governor of Malacca", "1962-10-26": "Deepavali", @@ -231,7 +231,7 @@ "1963-01-26": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -259,11 +259,11 @@ "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-01-03": "Beginning of Ramadan (estimated)", - "1965-01-04": "Beginning of Ramadan (estimated) [In lieu]", + "1965-01-04": "Beginning of Ramadan (estimated) (in lieu)", "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -277,11 +277,11 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -290,9 +290,9 @@ "1966-11-10": "Deepavali", "1966-12-13": "Beginning of Ramadan (estimated)", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -324,7 +324,7 @@ "1968-11-21": "Beginning of Ramadan (estimated)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -335,7 +335,7 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-10-10": "Birthday of the Governor of Malacca", "1969-11-08": "Deepavali", "1969-11-10": "Beginning of Ramadan (estimated)", @@ -355,7 +355,7 @@ "1970-10-09": "Birthday of the Governor of Malacca", "1970-10-28": "Deepavali", "1970-11-01": "Beginning of Ramadan (estimated)", - "1970-11-02": "Beginning of Ramadan (estimated) [In lieu]", + "1970-11-02": "Beginning of Ramadan (estimated) (in lieu)", "1970-11-30": "Hari Raya Puasa (estimated)", "1970-12-01": "Second day of Hari Raya Puasa (estimated)", "1970-12-25": "Christmas Day", @@ -367,7 +367,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-10-08": "Birthday of the Governor of Malacca", @@ -386,7 +386,7 @@ "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1972-08-31": "National Day", "1972-10-08": "Beginning of Ramadan (estimated)", - "1972-10-09": "Beginning of Ramadan (estimated) [In lieu]", + "1972-10-09": "Beginning of Ramadan (estimated) (in lieu)", "1972-10-13": "Birthday of the Governor of Malacca", "1972-11-04": "Deepavali", "1972-11-07": "Hari Raya Puasa (estimated)", @@ -394,12 +394,12 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -409,7 +409,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-03": "Hari Raya Haji (estimated)", @@ -434,10 +434,10 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-09-06": "Beginning of Ramadan (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", @@ -449,7 +449,7 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -469,7 +469,7 @@ "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-15": "Beginning of Ramadan (estimated)", "1977-08-31": "National Day", @@ -480,22 +480,22 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-05": "Beginning of Ramadan (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-13": "Birthday of the Governor of Malacca", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", @@ -504,7 +504,7 @@ "1979-01-01": "New Year's Day", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", @@ -516,32 +516,32 @@ "1979-10-12": "Birthday of the Governor of Malacca", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1980-07-13": "Beginning of Ramadan (estimated)", - "1980-07-14": "Beginning of Ramadan (estimated) [In lieu]", + "1980-07-14": "Beginning of Ramadan (estimated) (in lieu)", "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-10": "Birthday of the Governor of Malacca", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", @@ -550,7 +550,7 @@ "1981-07-02": "Beginning of Ramadan (estimated)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-09": "Birthday of the Governor of Malacca", @@ -577,13 +577,13 @@ "1983-01-01": "New Year's Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-12": "Beginning of Ramadan (estimated)", - "1983-06-13": "Beginning of Ramadan (estimated) [In lieu]", + "1983-06-13": "Beginning of Ramadan (estimated) (in lieu)", "1983-07-11": "Hari Raya Puasa (estimated)", "1983-07-12": "Second day of Hari Raya Puasa (estimated)", "1983-08-31": "National Day", @@ -593,9 +593,9 @@ "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-05-01": "Labour Day", @@ -604,7 +604,7 @@ "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -626,24 +626,24 @@ "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-10-11": "Birthday of the Governor of Malacca", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-05-01": "Labour Day", "1986-05-09": "Beginning of Ramadan (estimated)", "1986-05-23": "Vesak Day (estimated)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-10": "Birthday of the Governor of Malacca", "1986-10-31": "Deepavali", @@ -669,9 +669,9 @@ "1988-02-17": "Chinese New Year (estimated)", "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-04-17": "Beginning of Ramadan (estimated)", - "1988-04-18": "Beginning of Ramadan (estimated) [In lieu]", + "1988-04-18": "Beginning of Ramadan (estimated) (in lieu)", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", "1988-05-30": "Vesak Day (estimated)", @@ -683,9 +683,9 @@ "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-04-07": "Beginning of Ramadan (estimated)", @@ -693,7 +693,7 @@ "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", @@ -706,10 +706,10 @@ "1990-01-01": "New Year's Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-03-27": "Beginning of Ramadan (estimated)", "1990-04-15": "Declaration of Malacca as a Historical City", - "1990-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "1990-04-16": "Declaration of Malacca as a Historical City (in lieu)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", @@ -726,7 +726,7 @@ "1991-02-15": "Chinese New Year (estimated)", "1991-02-16": "Chinese New Year Holiday (estimated)", "1991-03-17": "Beginning of Ramadan (estimated)", - "1991-03-18": "Beginning of Ramadan (estimated) [In lieu]", + "1991-03-18": "Beginning of Ramadan (estimated) (in lieu)", "1991-04-15": "Declaration of Malacca as a Historical City; Hari Raya Puasa (estimated)", "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", @@ -745,11 +745,11 @@ "1992-03-05": "Beginning of Ramadan (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-04-15": "Declaration of Malacca as a Historical City", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -761,7 +761,7 @@ "1993-01-01": "New Year's Day", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-02-22": "Beginning of Ramadan (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", @@ -772,7 +772,7 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-10-08": "Birthday of the Governor of Malacca", "1993-11-12": "Deepavali", @@ -782,10 +782,10 @@ "1994-02-11": "Beginning of Ramadan (estimated); Chinese New Year Holiday (estimated)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-04-15": "Declaration of Malacca as a Historical City", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -795,9 +795,9 @@ "1994-10-14": "Birthday of the Governor of Malacca", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Beginning of Ramadan (estimated); Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-03-02": "Hari Raya Puasa (estimated)", @@ -806,7 +806,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -816,7 +816,7 @@ "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-01-21": "Beginning of Ramadan (estimated)", - "1996-01-22": "Beginning of Ramadan (estimated) [In lieu]", + "1996-01-22": "Beginning of Ramadan (estimated) (in lieu)", "1996-02-19": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-04-15": "Declaration of Malacca as a Historical City", @@ -835,7 +835,7 @@ "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-04-15": "Declaration of Malacca as a Historical City", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -844,7 +844,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-10": "Birthday of the Governor of Malacca", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", @@ -858,7 +858,7 @@ "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", @@ -887,10 +887,10 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-04-15": "Declaration of Malacca as a Historical City", @@ -911,7 +911,7 @@ "2001-03-06": "Hari Raya Haji", "2001-03-26": "Awal Muharram (Hijri New Year)", "2001-04-15": "Declaration of Malacca as a Historical City", - "2001-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2001-04-16": "Declaration of Malacca as a Historical City (in lieu)", "2001-05-01": "Labour Day", "2001-05-07": "Vesak Day", "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -936,7 +936,7 @@ "2002-08-31": "National Day", "2002-10-11": "Birthday of the Governor of Malacca", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-11-06": "Beginning of Ramadan", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", @@ -944,7 +944,7 @@ "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-04-15": "Declaration of Malacca as a Historical City", @@ -953,7 +953,7 @@ "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-10": "Birthday of the Governor of Malacca", "2003-10-23": "Deepavali", "2003-10-27": "Beginning of Ramadan", @@ -969,7 +969,7 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-10-08": "Birthday of the Governor of Malacca", @@ -977,7 +977,7 @@ "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -986,9 +986,9 @@ "2005-04-15": "Declaration of Malacca as a Historical City", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-08-31": "National Day", "2005-10-05": "Beginning of Ramadan", @@ -997,13 +997,13 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-04-15": "Declaration of Malacca as a Historical City", "2006-05-01": "Labour Day", @@ -1011,7 +1011,7 @@ "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2006-08-31": "National Day", "2006-09-24": "Beginning of Ramadan", - "2006-09-25": "Beginning of Ramadan [In lieu]", + "2006-09-25": "Beginning of Ramadan (in lieu)", "2006-10-13": "Birthday of the Governor of Malacca", "2006-10-21": "Deepavali", "2006-10-24": "Hari Raya Puasa", @@ -1019,14 +1019,14 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-04-15": "Declaration of Malacca as a Historical City", - "2007-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2007-04-16": "Declaration of Malacca as a Historical City (in lieu)", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2007-08-31": "National Day", @@ -1034,7 +1034,7 @@ "2007-10-12": "Birthday of the Governor of Malacca", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-25": "Christmas Day", @@ -1048,7 +1048,7 @@ "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-09-02": "Beginning of Ramadan", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", @@ -1069,7 +1069,7 @@ "2009-08-31": "National Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-09": "Birthday of the Governor of Malacca", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", @@ -1078,7 +1078,7 @@ "2010-01-01": "New Year's Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-04-15": "Declaration of Malacca as a Historical City", "2010-05-01": "Labour Day", @@ -1100,7 +1100,7 @@ "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-04-15": "Declaration of Malacca as a Historical City", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2011-08-01": "Beginning of Ramadan", @@ -1112,25 +1112,25 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-04-15": "Declaration of Malacca as a Historical City", - "2012-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2012-04-16": "Declaration of Malacca as a Historical City (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-07-20": "Beginning of Ramadan", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-12": "Birthday of the Governor of Malacca", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", @@ -1140,7 +1140,7 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-04-15": "Declaration of Malacca as a Historical City", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", @@ -1164,14 +1164,14 @@ "2014-05-13": "Vesak Day", "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2014-06-29": "Beginning of Ramadan", - "2014-06-30": "Beginning of Ramadan [In lieu]", + "2014-06-30": "Beginning of Ramadan (in lieu)", "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-10": "Birthday of the Governor of Malacca", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", @@ -1183,7 +1183,7 @@ "2015-04-15": "Declaration of Malacca as a Historical City", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-06-18": "Beginning of Ramadan", "2015-07-17": "Hari Raya Puasa", @@ -1201,7 +1201,7 @@ "2016-02-09": "Chinese New Year Holiday", "2016-04-15": "Declaration of Malacca as a Historical City", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2016-06-07": "Beginning of Ramadan", @@ -1215,12 +1215,12 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-04-15": "Declaration of Malacca as a Historical City", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", @@ -1228,7 +1228,7 @@ "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -1241,7 +1241,7 @@ "2018-02-16": "Chinese New Year", "2018-02-17": "Chinese New Year Holiday", "2018-04-15": "Declaration of Malacca as a Historical City", - "2018-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2018-04-16": "Declaration of Malacca as a Historical City (in lieu)", "2018-05-01": "Labour Day", "2018-05-09": "Malaysia General Election Holiday", "2018-05-17": "Beginning of Ramadan", @@ -1251,10 +1251,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-10-12": "Birthday of the Governor of Malacca", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1266,32 +1266,32 @@ "2019-05-01": "Labour Day", "2019-05-06": "Beginning of Ramadan", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-11": "Birthday of the Governor of Malacca", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-04-15": "Declaration of Malacca as a Historical City", "2020-04-24": "Beginning of Ramadan", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-31": "Hari Raya Haji", "2020-08-20": "Awal Muharram (Hijri New Year)", @@ -1323,17 +1323,17 @@ "2022-02-01": "Chinese New Year", "2022-02-02": "Chinese New Year Holiday", "2022-04-03": "Beginning of Ramadan", - "2022-04-04": "Beginning of Ramadan [In lieu]", + "2022-04-04": "Beginning of Ramadan (in lieu)", "2022-04-15": "Declaration of Malacca as a Historical City", "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-24": "Birthday of the Governor of Malacca", "2022-08-31": "National Day", @@ -1341,17 +1341,17 @@ "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-03-23": "Beginning of Ramadan", "2023-04-15": "Declaration of Malacca as a Historical City", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1362,12 +1362,12 @@ "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-11": "Beginning of Ramadan (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1376,13 +1376,13 @@ "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-24": "Birthday of the Governor of Malacca", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", @@ -1391,18 +1391,18 @@ "2025-03-01": "Beginning of Ramadan (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-04-15": "Declaration of Malacca as a Historical City", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-24": "Birthday of the Governor of Malacca", - "2025-08-25": "Birthday of the Governor of Malacca [In lieu]", + "2025-08-25": "Birthday of the Governor of Malacca (in lieu)", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", @@ -1427,13 +1427,13 @@ "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", "2027-02-08": "Beginning of Ramadan (estimated)", - "2027-02-09": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-09": "Chinese New Year Holiday (estimated) (in lieu)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-04-15": "Declaration of Malacca as a Historical City", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1449,7 +1449,7 @@ "2028-01-28": "Beginning of Ramadan (estimated)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-04-15": "Declaration of Malacca as a Historical City", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", @@ -1468,27 +1468,27 @@ "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2029-02-15": "Second day of Hari Raya Puasa (estimated)", "2029-04-15": "Declaration of Malacca as a Historical City", - "2029-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2029-04-16": "Declaration of Malacca as a Historical City (in lieu)", "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-24": "Birthday of the Governor of Malacca", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-05": "Beginning of Ramadan (estimated)", "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-15": "Declaration of Malacca as a Historical City", "2030-05-01": "Labour Day", @@ -1514,9 +1514,9 @@ "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-24": "Birthday of the Governor of Malacca", - "2031-08-25": "Birthday of the Governor of Malacca [In lieu]", + "2031-08-25": "Birthday of the Governor of Malacca (in lieu)", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-15": "Beginning of Ramadan (estimated)", @@ -1531,10 +1531,10 @@ "2032-04-15": "Declaration of Malacca as a Historical City", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-08-24": "Birthday of the Governor of Malacca", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", @@ -1544,14 +1544,14 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-04-15": "Declaration of Malacca as a Historical City", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1563,12 +1563,12 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-04-15": "Declaration of Malacca as a Historical City", @@ -1581,7 +1581,7 @@ "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", "2034-11-12": "Beginning of Ramadan (estimated)", - "2034-11-13": "Beginning of Ramadan (estimated) [In lieu]", + "2034-11-13": "Beginning of Ramadan (estimated) (in lieu)", "2034-12-12": "Hari Raya Puasa (estimated)", "2034-12-13": "Second day of Hari Raya Puasa (estimated)", "2034-12-25": "Christmas Day", @@ -1589,24 +1589,24 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-04-15": "Declaration of Malacca as a Historical City", - "2035-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2035-04-16": "Declaration of Malacca as a Historical City (in lieu)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-24": "Birthday of the Governor of Malacca", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-29": "Deepavali", "2035-11-01": "Beginning of Ramadan (estimated)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-28": "Chinese New Year (estimated)", @@ -1619,13 +1619,13 @@ "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-24": "Birthday of the Governor of Malacca", - "2036-08-25": "Birthday of the Governor of Malacca [In lieu]", + "2036-08-25": "Birthday of the Governor of Malacca (in lieu)", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-10-20": "Beginning of Ramadan (estimated)", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", @@ -1633,7 +1633,7 @@ "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-04-15": "Declaration of Malacca as a Historical City", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", @@ -1646,7 +1646,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Hari Raya Haji (estimated)", @@ -1673,7 +1673,7 @@ "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-04-15": "Declaration of Malacca as a Historical City", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-24": "Birthday of the Governor of Malacca", @@ -1685,17 +1685,17 @@ "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-04-15": "Declaration of Malacca as a Historical City", - "2040-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2040-04-16": "Declaration of Malacca as a Historical City (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1703,10 +1703,10 @@ "2040-08-31": "National Day", "2040-09-07": "Beginning of Ramadan (estimated)", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1736,26 +1736,26 @@ "2042-04-15": "Declaration of Malacca as a Historical City", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-17": "Beginning of Ramadan (estimated)", - "2042-08-18": "Beginning of Ramadan (estimated) [In lieu]", + "2042-08-18": "Beginning of Ramadan (estimated) (in lieu)", "2042-08-24": "Birthday of the Governor of Malacca", - "2042-08-25": "Birthday of the Governor of Malacca [In lieu]", + "2042-08-25": "Birthday of the Governor of Malacca (in lieu)", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-04-15": "Declaration of Malacca as a Historical City", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", @@ -1773,11 +1773,11 @@ "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-04-15": "Declaration of Malacca as a Historical City", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-07-26": "Beginning of Ramadan (estimated)", @@ -1789,9 +1789,9 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", @@ -1813,10 +1813,10 @@ "2046-02-06": "Chinese New Year (estimated)", "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-04-15": "Declaration of Malacca as a Historical City", - "2046-04-16": "Declaration of Malacca as a Historical City [In lieu]", + "2046-04-16": "Declaration of Malacca as a Historical City (in lieu)", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-05": "Beginning of Ramadan (estimated)", "2046-08-03": "Hari Raya Puasa (estimated)", @@ -1824,7 +1824,7 @@ "2046-08-24": "Birthday of the Governor of Malacca", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1833,7 +1833,7 @@ "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-04-15": "Declaration of Malacca as a Historical City", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", @@ -1849,7 +1849,7 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", @@ -1860,7 +1860,7 @@ "2048-06-12": "Beginning of Ramadan (estimated)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-24": "Birthday of the Governor of Malacca", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", @@ -1875,7 +1875,7 @@ "2049-04-15": "Declaration of Malacca as a Historical City", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-02": "Beginning of Ramadan (estimated)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-07-01": "Hari Raya Puasa (estimated)", @@ -1891,24 +1891,24 @@ "2050-01-01": "New Year's Day", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-04-15": "Declaration of Malacca as a Historical City", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-05-22": "Beginning of Ramadan (estimated)", - "2050-05-23": "Beginning of Ramadan (estimated) [In lieu]", + "2050-05-23": "Beginning of Ramadan (estimated) (in lieu)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-24": "Birthday of the Governor of Malacca", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_NSN.json b/snapshots/countries/MY_NSN.json index 6cb6c5923..3d043d3b8 100644 --- a/snapshots/countries/MY_NSN.json +++ b/snapshots/countries/MY_NSN.json @@ -1,16 +1,16 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-05-14": "Isra and Mi'raj (estimated)", - "1950-05-15": "Isra and Mi'raj (estimated) [In lieu]", + "1950-05-15": "Isra and Mi'raj (estimated) (in lieu)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -24,7 +24,7 @@ "1951-05-01": "Labour Day", "1951-05-04": "Isra and Mi'raj (estimated)", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-07-06": "Hari Raya Puasa (estimated)", "1951-07-07": "Second day of Hari Raya Puasa (estimated)", @@ -32,14 +32,14 @@ "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-04-22": "Isra and Mi'raj (estimated)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", @@ -47,25 +47,25 @@ "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-02-28": "Thaipusam", "1953-04-12": "Isra and Mi'raj (estimated)", - "1953-04-13": "Isra and Mi'raj (estimated) [In lieu]", + "1953-04-13": "Isra and Mi'raj (estimated) (in lieu)", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -90,12 +90,12 @@ "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam [In lieu]", + "1955-01-10": "Thaipusam (in lieu)", "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-03-21": "Isra and Mi'raj (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", "1955-05-24": "Second day of Hari Raya Puasa (estimated)", @@ -106,14 +106,14 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam [In lieu]", + "1956-02-27": "Thaipusam (in lieu)", "1956-03-10": "Isra and Mi'raj (estimated)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -139,36 +139,36 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-02-16": "Isra and Mi'raj (estimated)", - "1958-02-17": "Isra and Mi'raj (estimated) [In lieu]", + "1958-02-17": "Isra and Mi'raj (estimated) (in lieu)", "1958-02-18": "Chinese New Year (estimated)", "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-06": "Isra and Mi'raj (estimated)", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam [In lieu]", + "1959-02-23": "Thaipusam (in lieu)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", "1959-05-01": "Labour Day", @@ -188,7 +188,7 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -196,16 +196,16 @@ "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-01-14": "Isra and Mi'raj (estimated)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -228,7 +228,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-24": "Isra and Mi'raj (estimated)", @@ -239,7 +239,7 @@ "1963-01-26": "Chinese New Year Holiday (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -270,7 +270,7 @@ "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -284,20 +284,20 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali; Isra and Mi'raj (estimated)", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -329,7 +329,7 @@ "1968-11-18": "Deepavali", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -341,7 +341,7 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-10-08": "Isra and Mi'raj (estimated)", "1969-11-08": "Deepavali", "1969-12-10": "Hari Raya Puasa (estimated)", @@ -372,7 +372,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-09-17": "Isra and Mi'raj (estimated)", @@ -397,14 +397,14 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam [In lieu]", + "1973-02-19": "Thaipusam (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -413,7 +413,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-03": "Hari Raya Haji (estimated)", @@ -439,11 +439,11 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-05": "Isra and Mi'raj (estimated)", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", @@ -453,9 +453,9 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam [In lieu]", + "1976-02-16": "Thaipusam (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -475,7 +475,7 @@ "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-07-13": "Isra and Mi'raj (estimated)", "1977-08-31": "National Day", @@ -485,24 +485,24 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-07-02": "Isra and Mi'raj (estimated)", - "1978-07-03": "Isra and Mi'raj (estimated) [In lieu]", + "1978-07-03": "Isra and Mi'raj (estimated) (in lieu)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -511,7 +511,7 @@ "1979-01-13": "Thaipusam", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", @@ -522,16 +522,16 @@ "1979-08-31": "National Day", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam [In lieu]", + "1980-03-03": "Thaipusam (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -539,26 +539,26 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", "1981-05-01": "Labour Day", "1981-05-18": "Vesak Day (estimated)", "1981-05-31": "Isra and Mi'raj (estimated)", - "1981-06-01": "Isra and Mi'raj (estimated) [In lieu]", + "1981-06-01": "Isra and Mi'raj (estimated) (in lieu)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", @@ -567,7 +567,7 @@ "1982-01-01": "New Year's Day", "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam [In lieu]", + "1982-01-11": "Thaipusam (in lieu)", "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", @@ -585,10 +585,10 @@ "1983-01-01": "New Year's Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-10": "Isra and Mi'raj (estimated)", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -600,9 +600,9 @@ "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", @@ -612,7 +612,7 @@ "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -633,27 +633,27 @@ "1985-08-31": "National Day", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam [In lieu]", + "1986-02-24": "Thaipusam (in lieu)", "1986-04-06": "Isra and Mi'raj (estimated)", - "1986-04-07": "Isra and Mi'raj (estimated) [In lieu]", + "1986-04-07": "Isra and Mi'raj (estimated) (in lieu)", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -680,7 +680,7 @@ "1988-03-03": "Thaipusam", "1988-03-15": "Isra and Mi'raj (estimated)", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", "1988-05-30": "Vesak Day (estimated)", @@ -691,18 +691,18 @@ "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", "1989-03-05": "Isra and Mi'raj (estimated)", - "1989-03-06": "Isra and Mi'raj (estimated) [In lieu]", + "1989-03-06": "Isra and Mi'raj (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", @@ -715,7 +715,7 @@ "1990-01-12": "Thaipusam", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-02-22": "Isra and Mi'raj (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", @@ -751,10 +751,10 @@ "1992-02-18": "Thaipusam", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -767,7 +767,7 @@ "1993-01-20": "Isra and Mi'raj (estimated)", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", @@ -776,21 +776,21 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-01-09": "Isra and Mi'raj (estimated)", - "1994-01-10": "Isra and Mi'raj (estimated) [In lieu]", + "1994-01-10": "Isra and Mi'raj (estimated) (in lieu)", "1994-02-10": "Chinese New Year (estimated)", "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -799,10 +799,10 @@ "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1994-12-29": "Isra and Mi'raj (estimated)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-14": "Thaipusam", @@ -811,7 +811,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -832,13 +832,13 @@ "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-12-08": "Isra and Mi'raj (estimated)", - "1996-12-09": "Isra and Mi'raj (estimated) [In lieu]", + "1996-12-09": "Isra and Mi'raj (estimated) (in lieu)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-02-22": "Thaipusam", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -847,7 +847,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-29": "Deepavali", "1997-11-27": "Isra and Mi'raj (estimated)", "1997-12-25": "Christmas Day", @@ -860,7 +860,7 @@ "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", @@ -887,12 +887,12 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam [In lieu]", + "2000-02-21": "Thaipusam (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", @@ -934,24 +934,24 @@ "2002-08-31": "National Day", "2002-10-04": "Isra and Mi'raj", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam [In lieu]", + "2003-02-17": "Thaipusam (in lieu)", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-05-01": "Labour Day", "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-09-24": "Isra and Mi'raj", "2003-10-23": "Deepavali", "2003-11-26": "Hari Raya Puasa", @@ -966,15 +966,15 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-09-12": "Isra and Mi'raj", - "2004-09-13": "Isra and Mi'raj [In lieu]", + "2004-09-13": "Isra and Mi'raj (in lieu)", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -983,9 +983,9 @@ "2005-02-23": "Thaipusam", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-08-31": "National Day", "2005-09-01": "Isra and Mi'raj", @@ -993,13 +993,13 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-02-13": "Thaipusam", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", @@ -1013,13 +1013,13 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam [In lieu]", + "2007-03-05": "Thaipusam (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -1027,7 +1027,7 @@ "2007-08-31": "National Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-25": "Christmas Day", @@ -1042,7 +1042,7 @@ "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-07-31": "Isra and Mi'raj", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", "2008-10-27": "Deepavali", @@ -1051,7 +1051,7 @@ "2008-12-29": "Awal Muharram (Hijri New Year)", "2009-01-01": "New Year's Day", "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam [In lieu]", + "2009-01-12": "Thaipusam (in lieu)", "2009-01-14": "Birthday of the Sultan of Negeri Sembilan", "2009-01-26": "Chinese New Year", "2009-01-27": "Chinese New Year Holiday", @@ -1063,7 +1063,7 @@ "2009-08-31": "National Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", "2009-12-18": "Awal Muharram (Hijri New Year)", @@ -1072,7 +1072,7 @@ "2010-01-14": "Birthday of the Sultan of Negeri Sembilan", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-03-01": "Thaipusam", "2010-05-01": "Labour Day", @@ -1094,7 +1094,7 @@ "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-02-18": "Thaipusam", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2011-06-29": "Isra and Mi'raj", @@ -1105,27 +1105,27 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam [In lieu]", + "2012-01-09": "Thaipusam (in lieu)", "2012-01-14": "Birthday of the Sultan of Negeri Sembilan", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-06-17": "Isra and Mi'raj", - "2012-06-18": "Isra and Mi'raj [In lieu]", + "2012-06-18": "Isra and Mi'raj (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", @@ -1135,7 +1135,7 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-02-25": "Thaipusam", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", @@ -1161,10 +1161,10 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", @@ -1176,7 +1176,7 @@ "2015-03-05": "Thaipusam", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-05-16": "Isra and Mi'raj", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-07-17": "Hari Raya Puasa", @@ -1194,7 +1194,7 @@ "2016-02-09": "Chinese New Year Holiday", "2016-02-23": "Thaipusam", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-05": "Isra and Mi'raj", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1207,21 +1207,21 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-13": "Thaipusam", "2017-01-14": "Birthday of the Sultan of Negeri Sembilan", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-04-24": "Isra and Mi'raj", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -1231,7 +1231,7 @@ "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", "2018-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2018-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2018-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", "2018-01-31": "Thaipusam", "2018-02-16": "Chinese New Year", "2018-02-17": "Chinese New Year Holiday", @@ -1244,10 +1244,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2018-12-25": "Christmas Day", @@ -1259,33 +1259,33 @@ "2019-04-03": "Isra and Mi'raj", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-14": "Birthday of the Sultan of Negeri Sembilan", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-02-08": "Thaipusam", "2020-03-22": "Isra and Mi'raj", - "2020-03-23": "Isra and Mi'raj [In lieu]", + "2020-03-23": "Isra and Mi'raj (in lieu)", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-31": "Hari Raya Haji", "2020-08-20": "Awal Muharram (Hijri New Year)", @@ -1321,31 +1321,31 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-14": "Birthday of the Sultan of Negeri Sembilan", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam [In lieu]", + "2023-02-06": "Thaipusam (in lieu)", "2023-02-18": "Isra and Mi'raj", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1355,28 +1355,28 @@ "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2024-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2024-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", "2024-01-25": "Thaipusam", "2024-02-08": "Isra and Mi'raj (estimated)", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", "2024-05-01": "Labour Day", "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", @@ -1387,15 +1387,15 @@ "2025-02-11": "Thaipusam", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", @@ -1404,7 +1404,7 @@ "2026-01-14": "Birthday of the Sultan of Negeri Sembilan", "2026-01-16": "Isra and Mi'raj (estimated)", "2026-02-01": "Thaipusam", - "2026-02-02": "Thaipusam [In lieu]", + "2026-02-02": "Thaipusam (in lieu)", "2026-02-17": "Chinese New Year (estimated)", "2026-02-18": "Chinese New Year Holiday (estimated)", "2026-03-20": "Hari Raya Puasa (estimated)", @@ -1424,12 +1424,12 @@ "2027-01-22": "Thaipusam", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1445,7 +1445,7 @@ "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-09": "Vesak Day (estimated)", @@ -1459,7 +1459,7 @@ "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2029-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2029-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", "2029-02-13": "Chinese New Year (estimated)", "2029-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2029-02-15": "Second day of Hari Raya Puasa (estimated)", @@ -1468,14 +1468,14 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-03": "Isra and Mi'raj (estimated)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1483,9 +1483,9 @@ "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam [In lieu]", + "2030-02-18": "Thaipusam (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", @@ -1510,7 +1510,7 @@ "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-12": "Isra and Mi'raj (estimated)", "2031-11-13": "Deepavali", @@ -1525,10 +1525,10 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", @@ -1536,7 +1536,7 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-14": "Birthday of the Sultan of Negeri Sembilan", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", @@ -1544,7 +1544,7 @@ "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1554,16 +1554,16 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-01-14": "Birthday of the Sultan of Negeri Sembilan", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam [In lieu]", + "2034-03-06": "Thaipusam (in lieu)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", "2034-05-03": "Vesak Day (estimated)", @@ -1578,31 +1578,31 @@ "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2035-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2035-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-02-23": "Thaipusam", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-09-29": "Isra and Mi'raj (estimated)", "2035-10-29": "Deepavali", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", "2036-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2036-01-15": "Thaipusam [In lieu]", + "2036-01-15": "Thaipusam (in lieu)", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-07": "Hari Raya Haji (estimated)", @@ -1612,11 +1612,11 @@ "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-09-18": "Isra and Mi'raj (estimated)", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", @@ -1625,7 +1625,7 @@ "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-03-02": "Thaipusam", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", @@ -1637,7 +1637,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-14": "Birthday of the Sultan of Negeri Sembilan", @@ -1659,14 +1659,14 @@ "2039-01-01": "New Year's Day", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam [In lieu]", + "2039-01-10": "Thaipusam (in lieu)", "2039-01-14": "Birthday of the Sultan of Negeri Sembilan", "2039-01-24": "Chinese New Year (estimated)", "2039-01-25": "Chinese New Year Holiday (estimated)", "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-17": "Isra and Mi'raj (estimated)", @@ -1677,28 +1677,28 @@ "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-14": "Birthday of the Sultan of Negeri Sembilan", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-02-27": "Thaipusam", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-05": "Isra and Mi'raj (estimated)", - "2040-08-06": "Isra and Mi'raj (estimated) [In lieu]", + "2040-08-06": "Isra and Mi'raj (estimated) (in lieu)", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1729,16 +1729,16 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-07-15": "Isra and Mi'raj (estimated)", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", @@ -1746,7 +1746,7 @@ "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", @@ -1764,12 +1764,12 @@ "2044-01-14": "Birthday of the Sultan of Negeri Sembilan", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam [In lieu]", + "2044-02-15": "Thaipusam (in lieu)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-06-23": "Isra and Mi'raj (estimated)", @@ -1781,9 +1781,9 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-14": "Birthday of the Sultan of Negeri Sembilan", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", @@ -1802,21 +1802,21 @@ "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-01-14": "Birthday of the Sultan of Negeri Sembilan", - "2046-01-15": "Birthday of the Sultan of Negeri Sembilan [In lieu]", + "2046-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", "2046-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2046-02-06": "Chinese New Year (estimated)", "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-02": "Isra and Mi'raj (estimated)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1827,7 +1827,7 @@ "2047-01-14": "Birthday of the Sultan of Negeri Sembilan", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", "2047-05-22": "Isra and Mi'raj (estimated)", @@ -1841,7 +1841,7 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-01-14": "Birthday of the Sultan of Negeri Sembilan", "2048-02-14": "Chinese New Year (estimated)", @@ -1849,12 +1849,12 @@ "2048-02-28": "Thaipusam", "2048-05-01": "Labour Day", "2048-05-10": "Isra and Mi'raj (estimated)", - "2048-05-11": "Isra and Mi'raj (estimated) [In lieu]", + "2048-05-11": "Isra and Mi'raj (estimated) (in lieu)", "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", @@ -1870,7 +1870,7 @@ "2049-04-29": "Isra and Mi'raj (estimated)", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-07-01": "Hari Raya Puasa (estimated)", "2049-07-02": "Second day of Hari Raya Puasa (estimated)", @@ -1886,21 +1886,21 @@ "2050-01-14": "Birthday of the Sultan of Negeri Sembilan", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-04-19": "Isra and Mi'raj (estimated)", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_PHG.json b/snapshots/countries/MY_PHG.json index 99d10882b..09b4d9ba1 100644 --- a/snapshots/countries/MY_PHG.json +++ b/snapshots/countries/MY_PHG.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-05-01": "Labour Day; Vesak Day (estimated)", @@ -8,7 +8,7 @@ "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -20,7 +20,7 @@ "1951-02-07": "Chinese New Year Holiday (estimated)", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-22": "Nuzul Al-Quran Day (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", @@ -29,13 +29,13 @@ "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -43,23 +43,23 @@ "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", "1953-05-30": "Nuzul Al-Quran Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -85,7 +85,7 @@ "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-10": "Nuzul Al-Quran Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", @@ -97,12 +97,12 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -127,32 +127,32 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-02-18": "Chinese New Year (estimated)", "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -172,7 +172,7 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -180,15 +180,15 @@ "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-04": "Nuzul Al-Quran Day (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -210,7 +210,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", @@ -220,7 +220,7 @@ "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -249,7 +249,7 @@ "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -262,21 +262,21 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -306,7 +306,7 @@ "1968-12-07": "Nuzul Al-Quran Day (estimated)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -317,7 +317,7 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-11-08": "Deepavali", "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-12-10": "Hari Raya Puasa (estimated)", @@ -346,7 +346,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-11-05": "Nuzul Al-Quran Day (estimated)", @@ -370,12 +370,12 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -384,7 +384,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-03": "Hari Raya Haji (estimated)", @@ -409,10 +409,10 @@ "1975-05-01": "Labour Day", "1975-05-07": "Hari Hol of Pahang", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", @@ -424,7 +424,7 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-07": "Hari Hol of Pahang", @@ -435,7 +435,7 @@ "1976-09-24": "Hari Raya Puasa (estimated)", "1976-09-25": "Second day of Hari Raya Puasa (estimated)", "1976-10-24": "Birthday of the Sultan of Pahang", - "1976-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "1976-10-25": "Birthday of the Sultan of Pahang (in lieu)", "1976-11-19": "Deepavali", "1976-12-01": "Hari Raya Haji (estimated)", "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", @@ -446,7 +446,7 @@ "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-05-07": "Hari Hol of Pahang", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", @@ -457,24 +457,24 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-05-01": "Labour Day", "1978-05-07": "Hari Hol of Pahang", - "1978-05-08": "Hari Hol of Pahang [In lieu]", + "1978-05-08": "Hari Hol of Pahang (in lieu)", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-24": "Birthday of the Sultan of Pahang", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", @@ -483,7 +483,7 @@ "1979-01-01": "New Year's Day", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", "1979-05-07": "Hari Hol of Pahang", @@ -496,14 +496,14 @@ "1979-10-24": "Birthday of the Sultan of Pahang", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-05-01": "Labour Day", "1980-05-07": "Hari Hol of Pahang", "1980-05-28": "Vesak Day (estimated)", @@ -512,16 +512,16 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-10-24": "Birthday of the Sultan of Pahang", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", @@ -531,7 +531,7 @@ "1981-07-18": "Nuzul Al-Quran Day (estimated)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-24": "Birthday of the Sultan of Pahang", @@ -553,16 +553,16 @@ "1982-09-27": "Hari Raya Haji (estimated)", "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-10-24": "Birthday of the Sultan of Pahang", - "1982-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "1982-10-25": "Birthday of the Sultan of Pahang (in lieu)", "1982-11-13": "Deepavali", "1982-12-25": "Christmas Day", "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-01-01": "New Year's Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-07": "Hari Hol of Pahang", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -576,9 +576,9 @@ "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-05-01": "Labour Day", @@ -588,7 +588,7 @@ "1984-06-16": "Nuzul Al-Quran Day (estimated)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -611,26 +611,26 @@ "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-10-24": "Birthday of the Sultan of Pahang", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-05-01": "Labour Day", "1986-05-07": "Hari Hol of Pahang", "1986-05-23": "Vesak Day (estimated)", "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-24": "Birthday of the Sultan of Pahang", "1986-10-31": "Deepavali", @@ -657,7 +657,7 @@ "1988-02-17": "Chinese New Year (estimated)", "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-03": "Nuzul Al-Quran Day (estimated)", "1988-05-07": "Hari Hol of Pahang", "1988-05-16": "Hari Raya Puasa (estimated)", @@ -671,17 +671,17 @@ "1988-10-24": "Birthday of the Sultan of Pahang", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Hari Hol of Pahang; Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Hari Hol of Pahang [In lieu]; Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Hari Hol of Pahang (in lieu); Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", @@ -694,7 +694,7 @@ "1990-01-01": "New Year's Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", @@ -732,11 +732,11 @@ "1992-03-21": "Nuzul Al-Quran Day (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-07": "Hari Hol of Pahang", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -747,7 +747,7 @@ "1993-01-01": "New Year's Day", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", @@ -758,22 +758,22 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-10-24": "Birthday of the Sultan of Pahang", - "1993-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "1993-10-25": "Birthday of the Sultan of Pahang (in lieu)", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-02-10": "Chinese New Year (estimated)", "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-07": "Hari Hol of Pahang", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", @@ -784,9 +784,9 @@ "1994-10-24": "Birthday of the Sultan of Pahang", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-16": "Nuzul Al-Quran Day (estimated)", @@ -794,10 +794,10 @@ "1995-03-03": "Second day of Hari Raya Puasa (estimated)", "1995-05-01": "Labour Day", "1995-05-07": "Hari Hol of Pahang", - "1995-05-08": "Hari Hol of Pahang [In lieu]", + "1995-05-08": "Hari Hol of Pahang (in lieu)", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -822,11 +822,11 @@ "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", "1997-05-07": "Awal Muharram (Hijri New Year) (estimated); Hari Hol of Pahang", @@ -834,7 +834,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-24": "Birthday of the Sultan of Pahang", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", @@ -848,7 +848,7 @@ "1998-05-01": "Labour Day", "1998-05-07": "Hari Hol of Pahang", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", @@ -870,22 +870,22 @@ "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1999-08-31": "National Day", "1999-10-24": "Birthday of the Sultan of Pahang", - "1999-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "1999-10-25": "Birthday of the Sultan of Pahang (in lieu)", "1999-11-06": "Deepavali", "1999-11-29": "Malaysia General Election Holiday", "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", "2000-05-07": "Hari Hol of Pahang", - "2000-05-08": "Hari Hol of Pahang [In lieu]", + "2000-05-08": "Hari Hol of Pahang (in lieu)", "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -925,7 +925,7 @@ "2002-08-31": "National Day", "2002-10-24": "Birthday of the Sultan of Pahang", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-11-22": "Nuzul Al-Quran Day", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", @@ -933,7 +933,7 @@ "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-05-01": "Labour Day", @@ -942,7 +942,7 @@ "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-23": "Deepavali", "2003-10-24": "Birthday of the Sultan of Pahang", "2003-11-12": "Nuzul Al-Quran Day", @@ -957,17 +957,17 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-05-07": "Hari Hol of Pahang", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-10-24": "Birthday of the Sultan of Pahang", - "2004-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "2004-10-25": "Birthday of the Sultan of Pahang (in lieu)", "2004-11-01": "Nuzul Al-Quran Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -975,10 +975,10 @@ "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-07": "Hari Hol of Pahang", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-08-31": "National Day", "2005-10-21": "Nuzul Al-Quran Day", @@ -987,17 +987,17 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", "2006-05-07": "Hari Hol of Pahang", - "2006-05-08": "Hari Hol of Pahang [In lieu]", + "2006-05-08": "Hari Hol of Pahang (in lieu)", "2006-05-12": "Vesak Day", "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2006-08-31": "National Day", @@ -1008,11 +1008,11 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-05-07": "Hari Hol of Pahang", @@ -1021,7 +1021,7 @@ "2007-09-29": "Nuzul Al-Quran Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-10-24": "Birthday of the Sultan of Pahang", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", @@ -1036,7 +1036,7 @@ "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", @@ -1057,7 +1057,7 @@ "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-10-24": "Birthday of the Sultan of Pahang", "2009-11-28": "Hari Raya Haji", @@ -1066,7 +1066,7 @@ "2010-01-01": "New Year's Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-05-01": "Labour Day", "2010-05-07": "Hari Hol of Pahang", @@ -1078,7 +1078,7 @@ "2010-09-11": "Second day of Hari Raya Puasa", "2010-09-16": "Malaysia Day", "2010-10-24": "Birthday of the Sultan of Pahang", - "2010-10-25": "Birthday of the Sultan of Pahang [In lieu]", + "2010-10-25": "Birthday of the Sultan of Pahang (in lieu)", "2010-11-05": "Deepavali", "2010-11-17": "Hari Raya Haji", "2010-12-08": "Awal Muharram (Hijri New Year)", @@ -1088,7 +1088,7 @@ "2011-02-04": "Chinese New Year Holiday", "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-07": "Hari Hol of Pahang", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1101,25 +1101,25 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-05-07": "Hari Hol of Pahang", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day [In lieu]", + "2012-08-06": "Nuzul Al-Quran Day (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-24": "Birthday of the Sultan of Pahang", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", @@ -1129,7 +1129,7 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-05-01": "Labour Day", "2013-05-07": "Hari Hol of Pahang", "2013-05-24": "Vesak Day", @@ -1156,10 +1156,10 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-24": "Birthday of the Sultan of Pahang", "2014-10-25": "Awal Muharram (Hijri New Year)", @@ -1170,7 +1170,7 @@ "2015-02-20": "Chinese New Year Holiday", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-05-07": "Hari Hol of Pahang", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-07-04": "Nuzul Al-Quran Day", @@ -1188,7 +1188,7 @@ "2016-02-08": "Chinese New Year", "2016-02-09": "Chinese New Year Holiday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-07": "Hari Hol of Pahang", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1203,21 +1203,21 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-05-01": "Labour Day", "2017-05-07": "Hari Hol of Pahang", - "2017-05-08": "Hari Hol of Pahang [In lieu]", + "2017-05-08": "Hari Hol of Pahang (in lieu)", "2017-05-10": "Vesak Day", "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -1239,10 +1239,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-10-24": "Birthday of the Sultan of Pahang", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1253,32 +1253,32 @@ "2019-05-01": "Labour Day", "2019-05-07": "Hari Hol of Pahang", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-05-22": "Nuzul Al-Quran Day", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Birthday of the Sultan of Pahang; Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-05-01": "Labour Day", "2020-05-07": "Hari Hol of Pahang; Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day [In lieu]", + "2020-05-11": "Nuzul Al-Quran Day (in lieu)", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-30": "Birthday of the Sultan of Pahang", "2020-07-31": "Hari Raya Haji", @@ -1313,30 +1313,30 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-05-22": "Hari Hol of Pahang", - "2022-05-23": "Hari Hol of Pahang [In lieu]", + "2022-05-23": "Hari Hol of Pahang (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year); Birthday of the Sultan of Pahang", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-04-08": "Nuzul Al-Quran Day", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-05-22": "Hari Hol of Pahang", @@ -1344,17 +1344,17 @@ "2023-06-29": "Hari Raya Haji", "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-07-30": "Birthday of the Sultan of Pahang", - "2023-07-31": "Birthday of the Sultan of Pahang [In lieu]", + "2023-07-31": "Birthday of the Sultan of Pahang (in lieu)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1362,13 +1362,13 @@ "2024-05-22": "Hari Hol of Pahang; Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-07-30": "Birthday of the Sultan of Pahang", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", @@ -1377,17 +1377,17 @@ "2025-03-17": "Nuzul Al-Quran Day (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-05-22": "Hari Hol of Pahang", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-07-30": "Birthday of the Sultan of Pahang", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", @@ -1412,13 +1412,13 @@ "2027-01-01": "New Year's Day", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-05-22": "Hari Hol of Pahang", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", @@ -1433,10 +1433,10 @@ "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-09": "Vesak Day (estimated)", @@ -1444,7 +1444,7 @@ "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2028-07-30": "Birthday of the Sultan of Pahang", - "2028-07-31": "Birthday of the Sultan of Pahang [In lieu]", + "2028-07-31": "Birthday of the Sultan of Pahang (in lieu)", "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", @@ -1460,22 +1460,22 @@ "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-22": "Hari Hol of Pahang", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-07-30": "Birthday of the Sultan of Pahang", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Nuzul Al-Quran Day (estimated)", "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", @@ -1502,7 +1502,7 @@ "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-07-30": "Birthday of the Sultan of Pahang", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", @@ -1517,10 +1517,10 @@ "2032-05-01": "Labour Day", "2032-05-22": "Hari Hol of Pahang", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-07-30": "Birthday of the Sultan of Pahang", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", @@ -1530,16 +1530,16 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-05-22": "Hari Hol of Pahang", - "2033-05-23": "Hari Hol of Pahang [In lieu]", + "2033-05-23": "Hari Hol of Pahang (in lieu)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-07-30": "Birthday of the Sultan of Pahang", @@ -1550,12 +1550,12 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", @@ -1564,7 +1564,7 @@ "2034-05-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-07-30": "Birthday of the Sultan of Pahang", - "2034-07-31": "Birthday of the Sultan of Pahang [In lieu]", + "2034-07-31": "Birthday of the Sultan of Pahang (in lieu)", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", "2034-11-09": "Deepavali", @@ -1576,22 +1576,22 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Hari Hol of Pahang; Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-07-30": "Birthday of the Sultan of Pahang", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-29": "Deepavali", "2035-11-17": "Nuzul Al-Quran Day (estimated)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-28": "Chinese New Year (estimated)", @@ -1605,11 +1605,11 @@ "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-07-30": "Birthday of the Sultan of Pahang", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", @@ -1617,7 +1617,7 @@ "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", "2037-05-22": "Hari Hol of Pahang", @@ -1630,7 +1630,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Hari Raya Haji (estimated)", @@ -1656,10 +1656,10 @@ "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-05-22": "Hari Hol of Pahang", - "2039-05-23": "Hari Hol of Pahang [In lieu]", + "2039-05-23": "Hari Hol of Pahang (in lieu)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-07-30": "Birthday of the Sultan of Pahang", "2039-08-31": "National Day", @@ -1670,15 +1670,15 @@ "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-22": "Hari Hol of Pahang", "2040-05-25": "Vesak Day (estimated)", @@ -1686,12 +1686,12 @@ "2040-07-30": "Birthday of the Sultan of Pahang", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1720,25 +1720,25 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-05-22": "Hari Hol of Pahang", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-07-30": "Birthday of the Sultan of Pahang", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-02": "Nuzul Al-Quran Day (estimated)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-05-01": "Labour Day", "2043-05-22": "Hari Hol of Pahang", "2043-05-23": "Vesak Day (estimated)", @@ -1756,13 +1756,13 @@ "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-05-22": "Hari Hol of Pahang", - "2044-05-23": "Hari Hol of Pahang [In lieu]", + "2044-05-23": "Hari Hol of Pahang (in lieu)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-07-30": "Birthday of the Sultan of Pahang", "2044-08-11": "Nuzul Al-Quran Day (estimated)", @@ -1774,9 +1774,9 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", @@ -1785,7 +1785,7 @@ "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2045-07-30": "Birthday of the Sultan of Pahang", "2045-07-31": "Nuzul Al-Quran Day (estimated)", - "2045-08-01": "Birthday of the Sultan of Pahang [In lieu]", + "2045-08-01": "Birthday of the Sultan of Pahang (in lieu)", "2045-08-14": "Hari Raya Puasa (estimated)", "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", @@ -1800,7 +1800,7 @@ "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-05-22": "Hari Hol of Pahang", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-21": "Nuzul Al-Quran Day (estimated)", @@ -1809,7 +1809,7 @@ "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1818,7 +1818,7 @@ "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", "2047-05-22": "Hari Hol of Pahang", @@ -1834,7 +1834,7 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", @@ -1843,10 +1843,10 @@ "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-07-30": "Birthday of the Sultan of Pahang", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", @@ -1860,7 +1860,7 @@ "2049-02-03": "Chinese New Year Holiday (estimated)", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-05-22": "Hari Hol of Pahang", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", @@ -1877,24 +1877,24 @@ "2050-01-01": "New Year's Day", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-05-22": "Hari Hol of Pahang", - "2050-05-23": "Hari Hol of Pahang [In lieu]", + "2050-05-23": "Hari Hol of Pahang (in lieu)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-07": "Nuzul Al-Quran Day (estimated)", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-07-30": "Birthday of the Sultan of Pahang", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_PJY.json b/snapshots/countries/MY_PJY.json index 48bf15ebd..61c0fbf60 100644 --- a/snapshots/countries/MY_PJY.json +++ b/snapshots/countries/MY_PJY.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", @@ -9,7 +9,7 @@ "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -22,7 +22,7 @@ "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-22": "Nuzul Al-Quran Day (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", @@ -31,14 +31,14 @@ "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -46,16 +46,16 @@ "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", @@ -63,7 +63,7 @@ "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -88,11 +88,11 @@ "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam [In lieu]", + "1955-01-10": "Thaipusam (in lieu)", "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-10": "Nuzul Al-Quran Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", @@ -104,14 +104,14 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam [In lieu]", + "1956-02-27": "Thaipusam (in lieu)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -137,7 +137,7 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", @@ -145,27 +145,27 @@ "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam [In lieu]", + "1959-02-23": "Thaipusam (in lieu)", "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -186,7 +186,7 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -194,16 +194,16 @@ "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", "1961-03-04": "Nuzul Al-Quran Day (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -226,7 +226,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", @@ -237,7 +237,7 @@ "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -268,7 +268,7 @@ "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -282,21 +282,21 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -328,7 +328,7 @@ "1968-12-07": "Nuzul Al-Quran Day (estimated)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -340,7 +340,7 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-11-08": "Deepavali", "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-12-10": "Hari Raya Puasa (estimated)", @@ -371,7 +371,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-11-05": "Nuzul Al-Quran Day (estimated)", @@ -396,14 +396,14 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam [In lieu]", + "1973-02-19": "Thaipusam (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -412,7 +412,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-03": "Hari Raya Haji (estimated)", @@ -440,10 +440,10 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", @@ -454,9 +454,9 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]; Federal Territory Day [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu); Federal Territory Day (in lieu)", "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam [In lieu]", + "1976-02-16": "Thaipusam (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -477,7 +477,7 @@ "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", "1977-09-14": "Hari Raya Puasa (estimated)", @@ -486,24 +486,24 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-01": "Federal Territory Day", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -512,7 +512,7 @@ "1979-01-13": "Thaipusam", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-01": "Federal Territory Day", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", @@ -524,7 +524,7 @@ "1979-08-31": "National Day", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -532,9 +532,9 @@ "1980-02-01": "Federal Territory Day", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam [In lieu]", + "1980-03-03": "Thaipusam (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -542,17 +542,17 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-01": "Federal Territory Day", - "1981-02-02": "Federal Territory Day [In lieu]", + "1981-02-02": "Federal Territory Day (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", @@ -562,7 +562,7 @@ "1981-07-18": "Nuzul Al-Quran Day (estimated)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", @@ -571,7 +571,7 @@ "1982-01-01": "New Year's Day", "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam [In lieu]", + "1982-01-11": "Thaipusam (in lieu)", "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-02-01": "Federal Territory Day", @@ -591,10 +591,10 @@ "1983-02-01": "Federal Territory Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-28": "Nuzul Al-Quran Day (estimated)", @@ -606,9 +606,9 @@ "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-01": "Federal Territory Day", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", @@ -619,7 +619,7 @@ "1984-06-16": "Nuzul Al-Quran Day (estimated)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -641,28 +641,28 @@ "1985-08-31": "National Day", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-01": "Federal Territory Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam [In lieu]", + "1986-02-24": "Thaipusam (in lieu)", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -672,7 +672,7 @@ "1987-01-29": "Chinese New Year (estimated)", "1987-01-30": "Chinese New Year Holiday (estimated)", "1987-02-01": "Federal Territory Day", - "1987-02-02": "Federal Territory Day [In lieu]", + "1987-02-02": "Federal Territory Day (in lieu)", "1987-05-01": "Labour Day", "1987-05-12": "Vesak Day (estimated)", "1987-05-15": "Nuzul Al-Quran Day (estimated)", @@ -691,7 +691,7 @@ "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-03": "Nuzul Al-Quran Day (estimated)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", @@ -703,19 +703,19 @@ "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-01": "Federal Territory Day", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", @@ -728,7 +728,7 @@ "1990-01-12": "Thaipusam", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-02-01": "Federal Territory Day", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", @@ -767,10 +767,10 @@ "1992-03-21": "Nuzul Al-Quran Day (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -782,7 +782,7 @@ "1993-01-08": "Thaipusam", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-02-01": "Federal Territory Day", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", @@ -793,7 +793,7 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", @@ -803,12 +803,12 @@ "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -817,9 +817,9 @@ "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "1995-02-14": "Thaipusam", @@ -829,7 +829,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -853,12 +853,12 @@ "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", "1997-02-01": "Federal Territory Day", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-02-22": "Thaipusam", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -867,7 +867,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", @@ -877,12 +877,12 @@ "1998-01-29": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1998-01-30": "Second day of Hari Raya Puasa (estimated)", "1998-02-01": "Federal Territory Day", - "1998-02-02": "Federal Territory Day [In lieu]", + "1998-02-02": "Federal Territory Day (in lieu)", "1998-04-07": "Hari Raya Haji (estimated)", "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", @@ -909,13 +909,13 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-01": "Federal Territory Day", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam [In lieu]", + "2000-02-21": "Thaipusam (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", @@ -958,7 +958,7 @@ "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2002-08-31": "National Day", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-11-22": "Nuzul Al-Quran Day", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", @@ -966,17 +966,17 @@ "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year; Federal Territory Day", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam [In lieu]", + "2003-02-17": "Thaipusam (in lieu)", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-05-01": "Labour Day", "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-23": "Deepavali", "2003-11-12": "Nuzul Al-Quran Day", "2003-11-26": "Hari Raya Puasa", @@ -988,19 +988,19 @@ "2004-01-23": "Chinese New Year Holiday", "2004-02-01": "Federal Territory Day", "2004-02-02": "Hari Raya Haji", - "2004-02-03": "Federal Territory Day [In lieu]", + "2004-02-03": "Federal Territory Day (in lieu)", "2004-02-22": "Awal Muharram (Hijri New Year)", "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-11-01": "Nuzul Al-Quran Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -1010,9 +1010,9 @@ "2005-02-23": "Thaipusam", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-08-31": "National Day", "2005-10-21": "Nuzul Al-Quran Day", @@ -1020,13 +1020,13 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-02-01": "Federal Territory Day", "2006-02-13": "Thaipusam", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1041,14 +1041,14 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-01": "Federal Territory Day", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam [In lieu]", + "2007-03-05": "Thaipusam (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -1056,7 +1056,7 @@ "2007-09-29": "Nuzul Al-Quran Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-25": "Christmas Day", @@ -1071,7 +1071,7 @@ "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", @@ -1081,11 +1081,11 @@ "2008-12-29": "Awal Muharram (Hijri New Year)", "2009-01-01": "New Year's Day", "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam [In lieu]", + "2009-01-12": "Thaipusam (in lieu)", "2009-01-26": "Chinese New Year", "2009-01-27": "Chinese New Year Holiday", "2009-02-01": "Federal Territory Day", - "2009-02-02": "Federal Territory Day [In lieu]", + "2009-02-02": "Federal Territory Day (in lieu)", "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2009-05-01": "Labour Day", "2009-05-09": "Vesak Day", @@ -1094,7 +1094,7 @@ "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", "2009-12-18": "Awal Muharram (Hijri New Year)", @@ -1103,7 +1103,7 @@ "2010-02-01": "Federal Territory Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-03-01": "Thaipusam", "2010-05-01": "Labour Day", @@ -1125,7 +1125,7 @@ "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-02-18": "Thaipusam", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2011-08-17": "Nuzul Al-Quran Day", @@ -1136,27 +1136,27 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam [In lieu]", + "2012-01-09": "Thaipusam (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-01": "Federal Territory Day", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day [In lieu]", + "2012-08-06": "Nuzul Al-Quran Day (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", @@ -1166,7 +1166,7 @@ "2013-02-01": "Federal Territory Day", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-02-25": "Thaipusam", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", @@ -1192,23 +1192,23 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2015-02-01": "Federal Territory Day", - "2015-02-02": "Federal Territory Day [In lieu]", + "2015-02-02": "Federal Territory Day (in lieu)", "2015-02-19": "Chinese New Year", "2015-02-20": "Chinese New Year Holiday", "2015-03-05": "Thaipusam", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-07-04": "Nuzul Al-Quran Day", "2015-07-17": "Hari Raya Puasa", @@ -1226,7 +1226,7 @@ "2016-02-09": "Chinese New Year Holiday", "2016-02-23": "Thaipusam", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2016-06-22": "Nuzul Al-Quran Day", @@ -1239,13 +1239,13 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-13": "Thaipusam", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-02-01": "Federal Territory Day", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", @@ -1253,7 +1253,7 @@ "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -1275,10 +1275,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2018-12-25": "Christmas Day", @@ -1289,34 +1289,34 @@ "2019-02-06": "Chinese New Year Holiday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-05-22": "Nuzul Al-Quran Day", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-02-01": "Federal Territory Day", "2020-02-08": "Thaipusam", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day [In lieu]", + "2020-05-11": "Nuzul Al-Quran Day (in lieu)", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-31": "Hari Raya Haji", "2020-08-20": "Awal Muharram (Hijri New Year)", @@ -1352,31 +1352,31 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-02-01": "Federal Territory Day", "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam [In lieu]", + "2023-02-06": "Thaipusam (in lieu)", "2023-04-08": "Nuzul Al-Quran Day", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1386,14 +1386,14 @@ "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", "2024-02-01": "Federal Territory Day", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1401,12 +1401,12 @@ "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", @@ -1417,22 +1417,22 @@ "2025-03-17": "Nuzul Al-Quran Day (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Federal Territory Day; Thaipusam", - "2026-02-02": "Federal Territory Day [In lieu]; Thaipusam [In lieu]", + "2026-02-02": "Federal Territory Day (in lieu); Thaipusam (in lieu)", "2026-02-17": "Chinese New Year (estimated)", "2026-02-18": "Chinese New Year Holiday (estimated)", "2026-03-06": "Nuzul Al-Quran Day (estimated)", @@ -1452,13 +1452,13 @@ "2027-02-01": "Federal Territory Day", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1473,10 +1473,10 @@ "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-01": "Federal Territory Day", "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-09": "Vesak Day (estimated)", @@ -1497,14 +1497,14 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Nuzul Al-Quran Day (estimated)", @@ -1512,9 +1512,9 @@ "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam [In lieu]", + "2030-02-18": "Thaipusam (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", @@ -1539,7 +1539,7 @@ "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", @@ -1548,7 +1548,7 @@ "2032-01-14": "Hari Raya Puasa (estimated)", "2032-01-15": "Second day of Hari Raya Puasa (estimated)", "2032-02-01": "Federal Territory Day", - "2032-02-02": "Federal Territory Day [In lieu]", + "2032-02-02": "Federal Territory Day (in lieu)", "2032-02-11": "Chinese New Year (estimated)", "2032-02-12": "Chinese New Year Holiday (estimated)", "2032-02-26": "Thaipusam", @@ -1556,10 +1556,10 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", @@ -1568,14 +1568,14 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated); Federal Territory Day", "2033-02-14": "Thaipusam", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1586,16 +1586,16 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-01": "Federal Territory Day", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam [In lieu]", + "2034-03-06": "Thaipusam (in lieu)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", "2034-05-03": "Vesak Day (estimated)", @@ -1613,26 +1613,26 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-02-23": "Thaipusam", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-29": "Deepavali", "2035-11-17": "Nuzul Al-Quran Day (estimated)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam [In lieu]", + "2036-01-14": "Thaipusam (in lieu)", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-01": "Federal Territory Day", @@ -1643,21 +1643,21 @@ "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-01": "Federal Territory Day", - "2037-02-02": "Federal Territory Day [In lieu]", + "2037-02-02": "Federal Territory Day (in lieu)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-03-02": "Thaipusam", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", @@ -1669,7 +1669,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Hari Raya Haji (estimated)", @@ -1691,14 +1691,14 @@ "2039-01-01": "New Year's Day", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam [In lieu]", + "2039-01-10": "Thaipusam (in lieu)", "2039-01-24": "Chinese New Year (estimated)", "2039-01-25": "Chinese New Year Holiday (estimated)", "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-02-01": "Federal Territory Day", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", @@ -1709,28 +1709,28 @@ "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-01": "Federal Territory Day", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-02-27": "Thaipusam", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1760,25 +1760,25 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-02": "Nuzul Al-Quran Day (estimated)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-01": "Federal Territory Day", - "2043-02-02": "Federal Territory Day [In lieu]", + "2043-02-02": "Federal Territory Day (in lieu)", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", @@ -1796,12 +1796,12 @@ "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", "2044-02-01": "Federal Territory Day", - "2044-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam [In lieu]", + "2044-02-15": "Thaipusam (in lieu)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-08-11": "Nuzul Al-Quran Day (estimated)", @@ -1813,9 +1813,9 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-01": "Federal Territory Day", "2045-02-17": "Chinese New Year (estimated)", @@ -1840,14 +1840,14 @@ "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-21": "Nuzul Al-Quran Day (estimated)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1857,7 +1857,7 @@ "2047-01-11": "Thaipusam", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-02-01": "Federal Territory Day", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", @@ -1872,7 +1872,7 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-01": "Federal Territory Day", "2048-02-14": "Chinese New Year (estimated)", @@ -1882,10 +1882,10 @@ "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", @@ -1900,7 +1900,7 @@ "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", "2049-07-01": "Hari Raya Puasa (estimated)", @@ -1916,22 +1916,22 @@ "2050-01-08": "Thaipusam", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-02-01": "Federal Territory Day", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-07": "Nuzul Al-Quran Day (estimated)", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_PLS.json b/snapshots/countries/MY_PLS.json index 7f9f3e42f..34913b475 100644 --- a/snapshots/countries/MY_PLS.json +++ b/snapshots/countries/MY_PLS.json @@ -1,20 +1,20 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-05-14": "Isra and Mi'raj (estimated)", - "1950-05-15": "Isra and Mi'raj (estimated) [In lieu]", + "1950-05-15": "Isra and Mi'raj (estimated) (in lieu)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-09-24": "Hari Raya Haji (estimated)", - "1950-09-25": "Hari Raya Haji (estimated) [In lieu]", + "1950-09-25": "Hari Raya Haji (estimated) (in lieu)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -24,7 +24,7 @@ "1951-05-01": "Labour Day", "1951-05-04": "Isra and Mi'raj (estimated)", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-22": "Nuzul Al-Quran Day (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", @@ -34,12 +34,12 @@ "1951-09-13": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-04-22": "Isra and Mi'raj (estimated)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", @@ -49,24 +49,24 @@ "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", "1952-09-01": "Hari Raya Haji (estimated)", - "1952-09-02": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-02": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-04-12": "Isra and Mi'raj (estimated)", - "1953-04-13": "Isra and Mi'raj (estimated) [In lieu]", + "1953-04-13": "Isra and Mi'raj (estimated) (in lieu)", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", "1953-05-30": "Nuzul Al-Quran Day (estimated)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-21": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", @@ -94,7 +94,7 @@ "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-03-21": "Isra and Mi'raj (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-10": "Nuzul Al-Quran Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", @@ -102,16 +102,16 @@ "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1955-07-30": "Hari Raya Haji (estimated)", "1955-07-31": "Hari Raya Haji (estimated)", - "1955-08-01": "Hari Raya Haji (estimated) [In lieu]", + "1955-08-01": "Hari Raya Haji (estimated) (in lieu)", "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-03-10": "Isra and Mi'raj (estimated)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", @@ -139,18 +139,18 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-02-16": "Isra and Mi'raj (estimated)", - "1958-02-17": "Isra and Mi'raj (estimated) [In lieu]", + "1958-02-17": "Isra and Mi'raj (estimated) (in lieu)", "1958-02-18": "Chinese New Year (estimated)", "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -158,15 +158,15 @@ "1958-06-28": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-02-06": "Isra and Mi'raj (estimated)", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -187,24 +187,24 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-05": "Hari Raya Haji (estimated)", - "1960-06-06": "Hari Raya Haji (estimated) [In lieu]", + "1960-06-06": "Hari Raya Haji (estimated) (in lieu)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-14": "Isra and Mi'raj (estimated)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-04": "Nuzul Al-Quran Day (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-26": "Hari Raya Haji (estimated)", @@ -228,7 +228,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-24": "Isra and Mi'raj (estimated)", @@ -238,7 +238,7 @@ "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-04": "Hari Raya Haji (estimated)", @@ -270,7 +270,7 @@ "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-04-11": "Hari Raya Haji (estimated)", "1965-04-12": "Hari Raya Haji (estimated)", - "1965-04-13": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-13": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -283,19 +283,19 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-02": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali; Isra and Mi'raj (estimated)", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", @@ -319,7 +319,7 @@ "1968-01-31": "Chinese New Year Holiday (estimated)", "1968-03-09": "Hari Raya Haji (estimated)", "1968-03-10": "Hari Raya Haji (estimated)", - "1968-03-11": "Hari Raya Haji (estimated) [In lieu]", + "1968-03-11": "Hari Raya Haji (estimated) (in lieu)", "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", "1968-05-11": "Vesak Day (estimated)", @@ -331,7 +331,7 @@ "1968-12-07": "Nuzul Al-Quran Day (estimated)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-02-17": "Chinese New Year (estimated)", "1969-02-18": "Chinese New Year Holiday (estimated)", @@ -342,7 +342,7 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-10-08": "Isra and Mi'raj (estimated)", "1969-11-08": "Deepavali", "1969-11-26": "Nuzul Al-Quran Day (estimated)", @@ -369,12 +369,12 @@ "1971-01-28": "Chinese New Year Holiday (estimated)", "1971-02-06": "Hari Raya Haji (estimated)", "1971-02-07": "Hari Raya Haji (estimated)", - "1971-02-08": "Hari Raya Haji (estimated) [In lieu]", + "1971-02-08": "Hari Raya Haji (estimated) (in lieu)", "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-09-17": "Isra and Mi'raj (estimated)", @@ -400,12 +400,12 @@ "1972-12-25": "Christmas Day", "1973-01-14": "Hari Raya Haji (estimated)", "1973-01-15": "Hari Raya Haji (estimated)", - "1973-01-16": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-16": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -415,7 +415,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-03": "Hari Raya Haji (estimated)", "1974-01-04": "Hari Raya Haji (estimated)", @@ -439,23 +439,23 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-05": "Isra and Mi'raj (estimated)", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-14": "Hari Raya Haji (estimated)", - "1975-12-15": "Hari Raya Haji (estimated) [In lieu]", + "1975-12-15": "Hari Raya Haji (estimated) (in lieu)", "1975-12-25": "Christmas Day", "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -475,7 +475,7 @@ "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-07-13": "Isra and Mi'raj (estimated)", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", @@ -486,22 +486,22 @@ "1977-11-22": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-07-02": "Isra and Mi'raj (estimated)", - "1978-07-03": "Isra and Mi'raj (estimated) [In lieu]", + "1978-07-03": "Isra and Mi'raj (estimated) (in lieu)", "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-11-11": "Hari Raya Haji (estimated)", @@ -509,7 +509,7 @@ "1978-12-25": "Christmas Day", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", @@ -522,13 +522,13 @@ "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-01": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -537,26 +537,26 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", "1980-10-20": "Hari Raya Haji (estimated)", - "1980-10-21": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-21": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-05-01": "Labour Day", "1981-05-18": "Vesak Day (estimated)", "1981-05-31": "Isra and Mi'raj (estimated)", - "1981-06-01": "Isra and Mi'raj (estimated) [In lieu]", + "1981-06-01": "Isra and Mi'raj (estimated) (in lieu)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1981-07-18": "Nuzul Al-Quran Day (estimated)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-09": "Hari Raya Haji (estimated)", @@ -582,9 +582,9 @@ "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-10": "Isra and Mi'raj (estimated)", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -594,12 +594,12 @@ "1983-08-31": "National Day", "1983-09-17": "Hari Raya Haji (estimated)", "1983-09-18": "Hari Raya Haji (estimated)", - "1983-09-19": "Hari Raya Haji (estimated) [In lieu]", + "1983-09-19": "Hari Raya Haji (estimated) (in lieu)", "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-04-28": "Isra and Mi'raj (estimated)", @@ -609,7 +609,7 @@ "1984-06-16": "Nuzul Al-Quran Day (estimated)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-06": "Hari Raya Haji (estimated)", @@ -631,27 +631,27 @@ "1985-08-31": "National Day", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-04-06": "Isra and Mi'raj (estimated)", - "1986-04-07": "Isra and Mi'raj (estimated) [In lieu]", + "1986-04-07": "Isra and Mi'raj (estimated) (in lieu)", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-16": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -676,7 +676,7 @@ "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-15": "Isra and Mi'raj (estimated)", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-03": "Nuzul Al-Quran Day (estimated)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", @@ -684,23 +684,23 @@ "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1988-07-23": "Hari Raya Haji (estimated)", "1988-07-24": "Hari Raya Haji (estimated)", - "1988-07-25": "Hari Raya Haji (estimated) [In lieu]", + "1988-07-25": "Hari Raya Haji (estimated) (in lieu)", "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-03-05": "Isra and Mi'raj (estimated)", - "1989-03-06": "Isra and Mi'raj (estimated) [In lieu]", + "1989-03-06": "Isra and Mi'raj (estimated) (in lieu)", "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", @@ -712,7 +712,7 @@ "1989-12-25": "Christmas Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-02-22": "Isra and Mi'raj (estimated)", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", @@ -738,7 +738,7 @@ "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", "1991-06-22": "Hari Raya Haji (estimated)", "1991-06-23": "Hari Raya Haji (estimated)", - "1991-06-24": "Hari Raya Haji (estimated) [In lieu]", + "1991-06-24": "Hari Raya Haji (estimated) (in lieu)", "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -750,10 +750,10 @@ "1992-03-21": "Nuzul Al-Quran Day (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-06-12": "Hari Raya Haji (estimated)", @@ -765,7 +765,7 @@ "1993-01-20": "Isra and Mi'raj (estimated)", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", @@ -776,21 +776,21 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", "1994-01-09": "Isra and Mi'raj (estimated)", - "1994-01-10": "Isra and Mi'raj (estimated) [In lieu]", + "1994-01-10": "Isra and Mi'raj (estimated) (in lieu)", "1994-02-10": "Chinese New Year (estimated)", "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-21": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", @@ -800,7 +800,7 @@ "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1994-12-29": "Isra and Mi'raj (estimated)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", @@ -811,7 +811,7 @@ "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-10": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -824,7 +824,7 @@ "1996-02-20": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1996-04-27": "Hari Raya Haji (estimated)", "1996-04-28": "Hari Raya Haji (estimated)", - "1996-04-29": "Hari Raya Haji (estimated) [In lieu]", + "1996-04-29": "Hari Raya Haji (estimated) (in lieu)", "1996-05-01": "Labour Day", "1996-05-02": "Vesak Day (estimated)", "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", @@ -833,14 +833,14 @@ "1996-08-31": "National Day", "1996-11-09": "Deepavali", "1996-12-08": "Isra and Mi'raj (estimated)", - "1996-12-09": "Isra and Mi'raj (estimated) [In lieu]", + "1996-12-09": "Isra and Mi'raj (estimated) (in lieu)", "1996-12-25": "Christmas Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-04-17": "Hari Raya Haji (estimated)", "1997-04-18": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -849,7 +849,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-29": "Deepavali", "1997-11-27": "Isra and Mi'raj (estimated)", "1997-12-25": "Christmas Day", @@ -862,7 +862,7 @@ "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", @@ -876,7 +876,7 @@ "1999-02-17": "Chinese New Year Holiday (estimated)", "1999-03-27": "Hari Raya Haji (estimated)", "1999-03-28": "Hari Raya Haji (estimated)", - "1999-03-29": "Hari Raya Haji (estimated) [In lieu]", + "1999-03-29": "Hari Raya Haji (estimated) (in lieu)", "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", "1999-05-29": "Vesak Day (estimated)", @@ -889,10 +889,10 @@ "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-03-17": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", @@ -929,7 +929,7 @@ "2002-02-13": "Chinese New Year Holiday", "2002-02-23": "Hari Raya Haji", "2002-02-24": "Hari Raya Haji", - "2002-02-25": "Hari Raya Haji [In lieu]", + "2002-02-25": "Hari Raya Haji (in lieu)", "2002-03-15": "Awal Muharram (Hijri New Year)", "2002-05-01": "Labour Day", "2002-05-17": "Birthday of The Raja of Perlis", @@ -939,14 +939,14 @@ "2002-08-31": "National Day", "2002-10-04": "Isra and Mi'raj", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-11-22": "Nuzul Al-Quran Day", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", "2002-12-25": "Christmas Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-02-13": "Hari Raya Haji", "2003-03-05": "Awal Muharram (Hijri New Year)", @@ -956,7 +956,7 @@ "2003-05-17": "Birthday of The Raja of Perlis", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-09-24": "Isra and Mi'raj", "2003-10-23": "Deepavali", "2003-11-12": "Nuzul Al-Quran Day", @@ -971,17 +971,17 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-05-17": "Birthday of The Raja of Perlis", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-09-12": "Isra and Mi'raj", - "2004-09-13": "Isra and Mi'raj [In lieu]", + "2004-09-13": "Isra and Mi'raj (in lieu)", "2004-11-01": "Nuzul Al-Quran Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-21": "Hari Raya Haji", "2005-01-22": "Hari Raya Haji", @@ -989,10 +989,10 @@ "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-17": "Birthday of The Raja of Perlis", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-08-31": "National Day", "2005-09-01": "Isra and Mi'raj", @@ -1001,12 +1001,12 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-11": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", "2006-05-12": "Vesak Day", @@ -1021,11 +1021,11 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "Hari Raya Haji", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-05-17": "Birthday of The Raja of Perlis", @@ -1035,7 +1035,7 @@ "2007-09-29": "Nuzul Al-Quran Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-21": "Hari Raya Haji", @@ -1050,7 +1050,7 @@ "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-07-31": "Isra and Mi'raj", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", @@ -1065,23 +1065,23 @@ "2009-05-01": "Labour Day", "2009-05-09": "Vesak Day", "2009-05-17": "Birthday of The Raja of Perlis", - "2009-05-18": "Birthday of The Raja of Perlis [In lieu]", + "2009-05-18": "Birthday of The Raja of Perlis (in lieu)", "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2009-07-20": "Isra and Mi'raj", "2009-08-31": "National Day", "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", "2009-11-29": "Hari Raya Haji", - "2009-11-30": "Hari Raya Haji [In lieu]", + "2009-11-30": "Hari Raya Haji (in lieu)", "2009-12-18": "Awal Muharram (Hijri New Year)", "2009-12-25": "Christmas Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-05-01": "Labour Day", "2010-05-17": "Birthday of The Raja of Perlis", @@ -1102,7 +1102,7 @@ "2011-02-04": "Chinese New Year Holiday", "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Birthday of The Raja of Perlis; Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2011-06-29": "Isra and Mi'raj", @@ -1115,25 +1115,25 @@ "2011-11-08": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-05-17": "Birthday of The Raja of Perlis", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-06-17": "Isra and Mi'raj", - "2012-06-18": "Isra and Mi'raj [In lieu]", + "2012-06-18": "Isra and Mi'raj (in lieu)", "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day [In lieu]", + "2012-08-06": "Nuzul Al-Quran Day (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-26": "Hari Raya Haji", "2012-10-27": "Hari Raya Haji", "2012-11-13": "Deepavali", @@ -1142,7 +1142,7 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-05-01": "Labour Day", "2013-05-17": "Birthday of The Raja of Perlis", "2013-05-24": "Vesak Day", @@ -1170,11 +1170,11 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", "2014-10-06": "Hari Raya Haji", - "2014-10-07": "Hari Raya Haji [In lieu]", + "2014-10-07": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", @@ -1183,10 +1183,10 @@ "2015-02-20": "Chinese New Year Holiday", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-05-16": "Isra and Mi'raj", "2015-05-17": "Birthday of The Raja of Perlis", - "2015-05-18": "Birthday of The Raja of Perlis [In lieu]", + "2015-05-18": "Birthday of The Raja of Perlis (in lieu)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-07-04": "Nuzul Al-Quran Day", "2015-07-17": "Hari Raya Puasa", @@ -1202,7 +1202,7 @@ "2016-02-08": "Chinese New Year", "2016-02-09": "Chinese New Year Holiday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-05": "Isra and Mi'raj", "2016-05-17": "Birthday of The Raja of Perlis", "2016-05-21": "Vesak Day", @@ -1218,10 +1218,10 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-04-24": "Isra and Mi'raj", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", @@ -1230,7 +1230,7 @@ "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-02": "Hari Raya Haji", @@ -1253,10 +1253,10 @@ "2018-08-23": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2018-12-25": "Christmas Day", @@ -1265,7 +1265,7 @@ "2019-04-03": "Isra and Mi'raj", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-05-22": "Nuzul Al-Quran Day", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", @@ -1274,26 +1274,26 @@ "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", "2019-08-12": "Hari Raya Haji", - "2019-08-13": "Hari Raya Haji [In lieu]", + "2019-08-13": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-03-22": "Isra and Mi'raj", - "2020-03-23": "Isra and Mi'raj [In lieu]", + "2020-03-23": "Isra and Mi'raj (in lieu)", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day [In lieu]", + "2020-05-11": "Nuzul Al-Quran Day (in lieu)", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-17": "Birthday of The Raja of Perlis", "2020-07-31": "Hari Raya Haji", @@ -1329,30 +1329,30 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", "2022-07-11": "Hari Raya Haji", - "2022-07-12": "Hari Raya Haji [In lieu]", + "2022-07-12": "Hari Raya Haji (in lieu)", "2022-07-17": "Birthday of The Raja of Perlis", - "2022-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2022-07-18": "Birthday of The Raja of Perlis (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-02-18": "Isra and Mi'raj", "2023-04-08": "Nuzul Al-Quran Day", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1364,12 +1364,12 @@ "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-02-08": "Isra and Mi'raj (estimated)", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1378,13 +1378,13 @@ "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", "2024-06-17": "Hari Raya Haji (estimated)", - "2024-06-18": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-18": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-07-17": "Birthday of The Raja of Perlis", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-27": "Isra and Mi'raj (estimated)", @@ -1393,17 +1393,17 @@ "2025-03-17": "Nuzul Al-Quran Day (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-07": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-07-17": "Birthday of The Raja of Perlis", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", @@ -1428,14 +1428,14 @@ "2027-01-05": "Isra and Mi'raj (estimated)", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", "2027-05-17": "Hari Raya Haji (estimated)", - "2027-05-18": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-18": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1448,10 +1448,10 @@ "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-06": "Hari Raya Haji (estimated)", @@ -1474,25 +1474,25 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-17": "Birthday of The Raja of Perlis", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-03": "Isra and Mi'raj (estimated)", "2029-12-25": "Christmas Day", "2030-01-21": "Nuzul Al-Quran Day (estimated)", "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-14": "Hari Raya Haji (estimated)", - "2030-04-15": "Hari Raya Haji (estimated) [In lieu]", + "2030-04-15": "Hari Raya Haji (estimated) (in lieu)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", "2030-05-16": "Vesak Day (estimated)", @@ -1517,7 +1517,7 @@ "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-07-17": "Birthday of The Raja of Perlis", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-12": "Isra and Mi'raj (estimated)", "2031-11-13": "Deepavali", @@ -1532,10 +1532,10 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-07-17": "Birthday of The Raja of Perlis", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", @@ -1544,19 +1544,19 @@ "2032-12-25": "Christmas Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-03-12": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2033-07-17": "Birthday of The Raja of Perlis", - "2033-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2033-07-18": "Birthday of The Raja of Perlis (in lieu)", "2033-08-31": "National Day", "2033-09-16": "Malaysia Day", "2033-10-21": "Deepavali; Isra and Mi'raj (estimated)", @@ -1564,10 +1564,10 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-02": "Hari Raya Haji (estimated)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", @@ -1588,23 +1588,23 @@ "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", "2035-02-19": "Hari Raya Haji (estimated)", - "2035-02-20": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-20": "Hari Raya Haji (estimated) (in lieu)", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-07-17": "Birthday of The Raja of Perlis", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-09-29": "Isra and Mi'raj (estimated)", "2035-10-29": "Deepavali", "2035-11-17": "Nuzul Al-Quran Day (estimated)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", @@ -1617,12 +1617,12 @@ "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-07-17": "Birthday of The Raja of Perlis", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-09-18": "Isra and Mi'raj (estimated)", "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", @@ -1630,7 +1630,7 @@ "2037-01-27": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", "2037-05-29": "Vesak Day (estimated)", @@ -1643,11 +1643,11 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-16": "Hari Raya Haji (estimated)", "2038-01-17": "Hari Raya Haji (estimated)", - "2038-01-18": "Hari Raya Haji (estimated) [In lieu]", + "2038-01-18": "Hari Raya Haji (estimated) (in lieu)", "2038-02-04": "Chinese New Year (estimated)", "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1670,11 +1670,11 @@ "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-07-17": "Birthday of The Raja of Perlis", - "2039-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2039-07-18": "Birthday of The Raja of Perlis (in lieu)", "2039-08-17": "Isra and Mi'raj (estimated)", "2039-08-31": "National Day", "2039-09-16": "Malaysia Day", @@ -1685,27 +1685,27 @@ "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", "2039-12-27": "Hari Raya Haji (estimated)", - "2039-12-28": "Christmas Day [In lieu]", + "2039-12-28": "Christmas Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-07-17": "Birthday of The Raja of Perlis", "2040-08-05": "Isra and Mi'raj (estimated)", - "2040-08-06": "Isra and Mi'raj (estimated) [In lieu]", + "2040-08-06": "Isra and Mi'raj (estimated) (in lieu)", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-15": "Hari Raya Haji (estimated)", @@ -1734,25 +1734,25 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-07-15": "Isra and Mi'raj (estimated)", "2042-07-17": "Birthday of The Raja of Perlis", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-02": "Nuzul Al-Quran Day (estimated)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", "2042-11-24": "Hari Raya Haji (estimated)", - "2042-11-25": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-25": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", @@ -1770,15 +1770,15 @@ "2043-12-25": "Christmas Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-06-23": "Isra and Mi'raj (estimated)", "2044-07-17": "Birthday of The Raja of Perlis", - "2044-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2044-07-18": "Birthday of The Raja of Perlis (in lieu)", "2044-08-11": "Nuzul Al-Quran Day (estimated)", "2044-08-24": "Hari Raya Puasa (estimated)", "2044-08-25": "Second day of Hari Raya Puasa (estimated)", @@ -1789,7 +1789,7 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", @@ -1804,7 +1804,7 @@ "2045-09-16": "Malaysia Day", "2045-10-21": "Hari Raya Haji (estimated)", "2045-10-22": "Hari Raya Haji (estimated)", - "2045-10-23": "Hari Raya Haji (estimated) [In lieu]", + "2045-10-23": "Hari Raya Haji (estimated) (in lieu)", "2045-11-07": "Deepavali", "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", @@ -1813,7 +1813,7 @@ "2046-02-07": "Chinese New Year Holiday (estimated)", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-02": "Isra and Mi'raj (estimated)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-17": "Birthday of The Raja of Perlis", @@ -1822,7 +1822,7 @@ "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-11": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", @@ -1831,7 +1831,7 @@ "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", "2047-05-22": "Isra and Mi'raj (estimated)", @@ -1848,25 +1848,25 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", "2048-05-01": "Labour Day", "2048-05-10": "Isra and Mi'raj (estimated)", - "2048-05-11": "Isra and Mi'raj (estimated) [In lieu]", + "2048-05-11": "Isra and Mi'raj (estimated) (in lieu)", "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-07-17": "Birthday of The Raja of Perlis", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", "2048-09-20": "Hari Raya Haji (estimated)", - "2048-09-21": "Hari Raya Haji (estimated) [In lieu]", + "2048-09-21": "Hari Raya Haji (estimated) (in lieu)", "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1876,7 +1876,7 @@ "2049-04-29": "Isra and Mi'raj (estimated)", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", "2049-07-01": "Hari Raya Puasa (estimated)", @@ -1892,25 +1892,25 @@ "2049-12-25": "Christmas Day", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-04-19": "Isra and Mi'raj (estimated)", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-07": "Nuzul Al-Quran Day (estimated)", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-07-17": "Birthday of The Raja of Perlis", - "2050-07-18": "Birthday of The Raja of Perlis [In lieu]", + "2050-07-18": "Birthday of The Raja of Perlis (in lieu)", "2050-08-28": "Hari Raya Haji (estimated)", "2050-08-29": "Hari Raya Haji (estimated)", - "2050-08-30": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-30": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_PNG.json b/snapshots/countries/MY_PNG.json index de6b77b18..a0952d1f0 100644 --- a/snapshots/countries/MY_PNG.json +++ b/snapshots/countries/MY_PNG.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", @@ -10,7 +10,7 @@ "1950-07-08": "Birthday of the Governor of Penang", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -23,7 +23,7 @@ "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-22": "Nuzul Al-Quran Day (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", @@ -33,14 +33,14 @@ "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -49,16 +49,16 @@ "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-07-12": "Birthday of the Governor of Penang", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", @@ -66,7 +66,7 @@ "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-07-11": "Birthday of the Governor of Penang", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", @@ -93,11 +93,11 @@ "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam [In lieu]", + "1955-01-10": "Thaipusam (in lieu)", "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-10": "Nuzul Al-Quran Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", @@ -110,14 +110,14 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam [In lieu]", + "1956-02-27": "Thaipusam (in lieu)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -145,7 +145,7 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", @@ -153,10 +153,10 @@ "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -164,17 +164,17 @@ "1958-07-12": "Birthday of the Governor of Penang", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam [In lieu]", + "1959-02-23": "Thaipusam (in lieu)", "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -196,7 +196,7 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -205,16 +205,16 @@ "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", "1961-03-04": "Nuzul Al-Quran Day (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -239,7 +239,7 @@ "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-07-14": "Birthday of the Governor of Penang", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", @@ -250,7 +250,7 @@ "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -283,7 +283,7 @@ "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -297,11 +297,11 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -309,10 +309,10 @@ "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -346,7 +346,7 @@ "1968-12-07": "Nuzul Al-Quran Day (estimated)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -359,7 +359,7 @@ "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-07-12": "Birthday of the Governor of Penang", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-11-08": "Deepavali", "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-12-10": "Hari Raya Puasa (estimated)", @@ -391,7 +391,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-07-10": "Birthday of the Governor of Penang", "1971-08-31": "National Day", @@ -418,14 +418,14 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam [In lieu]", + "1973-02-19": "Thaipusam (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -435,7 +435,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-03": "Hari Raya Haji (estimated)", @@ -462,11 +462,11 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-07-12": "Birthday of the Governor of Penang", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", @@ -477,9 +477,9 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam [In lieu]", + "1976-02-16": "Thaipusam (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -500,7 +500,7 @@ "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-07-09": "Birthday of the Governor of Penang", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", @@ -510,24 +510,24 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-07-08": "Birthday of the Governor of Penang", "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -536,7 +536,7 @@ "1979-01-13": "Thaipusam", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", @@ -548,16 +548,16 @@ "1979-08-31": "National Day", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam [In lieu]", + "1980-03-03": "Thaipusam (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -566,15 +566,15 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", @@ -585,7 +585,7 @@ "1981-07-18": "Nuzul Al-Quran Day (estimated)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", @@ -594,7 +594,7 @@ "1982-01-01": "New Year's Day", "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam [In lieu]", + "1982-01-11": "Thaipusam (in lieu)", "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", @@ -613,10 +613,10 @@ "1983-01-01": "New Year's Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-28": "Nuzul Al-Quran Day (estimated)", @@ -629,9 +629,9 @@ "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", @@ -641,7 +641,7 @@ "1984-06-16": "Nuzul Al-Quran Day (estimated)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-07-14": "Birthday of the Governor of Penang", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", @@ -664,28 +664,28 @@ "1985-08-31": "National Day", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam [In lieu]", + "1986-02-24": "Thaipusam (in lieu)", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-07-12": "Birthday of the Governor of Penang", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -712,7 +712,7 @@ "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-03": "Nuzul Al-Quran Day (estimated)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", @@ -725,18 +725,18 @@ "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-08": "Birthday of the Governor of Penang", @@ -750,7 +750,7 @@ "1990-01-12": "Thaipusam", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", @@ -788,10 +788,10 @@ "1992-03-21": "Nuzul Al-Quran Day (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -804,7 +804,7 @@ "1993-01-08": "Thaipusam", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", @@ -815,7 +815,7 @@ "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-07-10": "Birthday of the Governor of Penang", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", @@ -824,12 +824,12 @@ "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -839,9 +839,9 @@ "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-14": "Thaipusam", @@ -851,7 +851,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-07-08": "Birthday of the Governor of Penang", @@ -876,11 +876,11 @@ "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-02-22": "Thaipusam", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -890,7 +890,7 @@ "1997-07-12": "Birthday of the Governor of Penang", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", @@ -903,7 +903,7 @@ "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-07-11": "Birthday of the Governor of Penang", @@ -931,12 +931,12 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam [In lieu]", + "2000-02-21": "Thaipusam (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", @@ -980,7 +980,7 @@ "2002-07-13": "Birthday of the Governor of Penang", "2002-08-31": "National Day", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-11-22": "Nuzul Al-Quran Day", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", @@ -988,10 +988,10 @@ "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam [In lieu]", + "2003-02-17": "Thaipusam (in lieu)", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-05-01": "Labour Day", "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -999,7 +999,7 @@ "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-07-12": "Birthday of the Governor of Penang", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-23": "Deepavali", "2003-11-12": "Nuzul Al-Quran Day", "2003-11-26": "Hari Raya Puasa", @@ -1014,7 +1014,7 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-07-10": "Birthday of the Governor of Penang", "2004-08-31": "National Day", @@ -1022,7 +1022,7 @@ "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -1031,9 +1031,9 @@ "2005-02-23": "Thaipusam", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-07-09": "Birthday of the Governor of Penang", "2005-08-31": "National Day", @@ -1042,13 +1042,13 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-02-13": "Thaipusam", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", @@ -1063,13 +1063,13 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam [In lieu]", + "2007-03-05": "Thaipusam (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -1078,7 +1078,7 @@ "2007-09-29": "Nuzul Al-Quran Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-25": "Christmas Day", @@ -1093,7 +1093,7 @@ "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-07-12": "Birthday of the Governor of Penang", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", @@ -1103,7 +1103,7 @@ "2008-12-29": "Awal Muharram (Hijri New Year)", "2009-01-01": "New Year's Day", "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam [In lieu]", + "2009-01-12": "Thaipusam (in lieu)", "2009-01-26": "Chinese New Year", "2009-01-27": "Chinese New Year Holiday", "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1116,7 +1116,7 @@ "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", "2009-12-18": "Awal Muharram (Hijri New Year)", @@ -1124,7 +1124,7 @@ "2010-01-01": "New Year's Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-03-01": "Thaipusam", "2010-05-01": "Labour Day", @@ -1147,7 +1147,7 @@ "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-02-18": "Thaipusam", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2011-07-07": "George Town Heritage Day", @@ -1160,28 +1160,28 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam [In lieu]", + "2012-01-09": "Thaipusam (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-07-07": "George Town Heritage Day", "2012-07-14": "Birthday of the Governor of Penang", "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day [In lieu]", + "2012-08-06": "Nuzul Al-Quran Day (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", @@ -1190,13 +1190,13 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-02-25": "Thaipusam", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2013-07-07": "George Town Heritage Day", - "2013-07-08": "George Town Heritage Day [In lieu]", + "2013-07-08": "George Town Heritage Day (in lieu)", "2013-07-13": "Birthday of the Governor of Penang", "2013-07-25": "Nuzul Al-Quran Day", "2013-08-08": "Hari Raya Puasa", @@ -1221,10 +1221,10 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", @@ -1235,7 +1235,7 @@ "2015-03-05": "Thaipusam", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-07-04": "Nuzul Al-Quran Day", "2015-07-07": "George Town Heritage Day", @@ -1254,7 +1254,7 @@ "2016-02-09": "Chinese New Year Holiday", "2016-02-23": "Thaipusam", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2016-06-22": "Nuzul Al-Quran Day", @@ -1268,20 +1268,20 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-13": "Thaipusam", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-07-07": "George Town Heritage Day", "2017-07-08": "Birthday of the Governor of Penang", "2017-08-31": "National Day", @@ -1306,10 +1306,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2018-12-25": "Christmas Day", @@ -1319,36 +1319,36 @@ "2019-02-06": "Chinese New Year Holiday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-05-22": "Nuzul Al-Quran Day", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-07": "George Town Heritage Day", - "2019-07-08": "George Town Heritage Day [In lieu]", + "2019-07-08": "George Town Heritage Day (in lieu)", "2019-07-13": "Birthday of the Governor of Penang", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-02-08": "Thaipusam", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day [In lieu]", + "2020-05-11": "Nuzul Al-Quran Day (in lieu)", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-07": "George Town Heritage Day", "2020-07-11": "Birthday of the Governor of Penang", @@ -1386,32 +1386,32 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-07": "George Town Heritage Day", "2022-07-09": "Birthday of the Governor of Penang", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam [In lieu]", + "2023-02-06": "Thaipusam (in lieu)", "2023-04-08": "Nuzul Al-Quran Day", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1423,13 +1423,13 @@ "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1437,14 +1437,14 @@ "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated); George Town Heritage Day", - "2024-07-08": "George Town Heritage Day [In lieu]", + "2024-07-08": "George Town Heritage Day (in lieu)", "2024-07-13": "Birthday of the Governor of Penang", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", @@ -1454,24 +1454,24 @@ "2025-03-17": "Nuzul Al-Quran Day (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-07-07": "George Town Heritage Day", "2025-07-12": "Birthday of the Governor of Penang", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Thaipusam", - "2026-02-02": "Thaipusam [In lieu]", + "2026-02-02": "Thaipusam (in lieu)", "2026-02-17": "Chinese New Year (estimated)", "2026-02-18": "Chinese New Year Holiday (estimated)", "2026-03-06": "Nuzul Al-Quran Day (estimated)", @@ -1492,13 +1492,13 @@ "2027-01-22": "Thaipusam", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1514,10 +1514,10 @@ "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-09": "Vesak Day (estimated)", @@ -1540,32 +1540,32 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-07": "George Town Heritage Day", "2029-07-14": "Birthday of the Governor of Penang", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Nuzul Al-Quran Day (estimated)", "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam [In lieu]", + "2030-02-18": "Thaipusam (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2030-07-07": "George Town Heritage Day", - "2030-07-08": "George Town Heritage Day [In lieu]", + "2030-07-08": "George Town Heritage Day (in lieu)", "2030-07-13": "Birthday of the Governor of Penang; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-08-31": "National Day", "2030-09-16": "Malaysia Day", @@ -1586,7 +1586,7 @@ "2031-07-07": "George Town Heritage Day", "2031-07-12": "Birthday of the Governor of Penang", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-25": "Christmas Day", @@ -1601,10 +1601,10 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-07-07": "George Town Heritage Day", "2032-07-10": "Birthday of the Governor of Penang", "2032-08-31": "National Day", @@ -1615,14 +1615,14 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-02-14": "Thaipusam", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1635,15 +1635,15 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam [In lieu]", + "2034-03-06": "Thaipusam (in lieu)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", "2034-05-03": "Vesak Day (estimated)", @@ -1662,28 +1662,28 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-02-23": "Thaipusam", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-07-07": "George Town Heritage Day", "2035-07-14": "Birthday of the Governor of Penang", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-29": "Deepavali", "2035-11-17": "Nuzul Al-Quran Day (estimated)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam [In lieu]", + "2036-01-14": "Thaipusam (in lieu)", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-07": "Hari Raya Haji (estimated)", @@ -1695,11 +1695,11 @@ "2036-07-07": "George Town Heritage Day", "2036-07-12": "Birthday of the Governor of Penang", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", @@ -1707,7 +1707,7 @@ "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-03-02": "Thaipusam", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", @@ -1721,7 +1721,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Hari Raya Haji (estimated)", @@ -1744,13 +1744,13 @@ "2039-01-01": "New Year's Day", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam [In lieu]", + "2039-01-10": "Thaipusam (in lieu)", "2039-01-24": "Chinese New Year (estimated)", "2039-01-25": "Chinese New Year Holiday (estimated)", "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-07-07": "George Town Heritage Day", @@ -1763,16 +1763,16 @@ "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-02-27": "Thaipusam", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1780,12 +1780,12 @@ "2040-07-14": "Birthday of the Governor of Penang", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1799,7 +1799,7 @@ "2041-05-14": "Vesak Day (estimated)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-07-07": "George Town Heritage Day", - "2041-07-08": "George Town Heritage Day [In lieu]", + "2041-07-08": "George Town Heritage Day (in lieu)", "2041-07-13": "Birthday of the Governor of Penang", "2041-08-31": "National Day", "2041-09-13": "Nuzul Al-Quran Day (estimated)", @@ -1817,25 +1817,25 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-07-07": "George Town Heritage Day", "2042-07-12": "Birthday of the Governor of Penang", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-02": "Nuzul Al-Quran Day (estimated)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", @@ -1854,12 +1854,12 @@ "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam [In lieu]", + "2044-02-15": "Thaipusam (in lieu)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-07-07": "George Town Heritage Day", @@ -1873,9 +1873,9 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", @@ -1900,7 +1900,7 @@ "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-07": "George Town Heritage Day", "2046-07-14": "Birthday of the Governor of Penang", @@ -1909,7 +1909,7 @@ "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1919,12 +1919,12 @@ "2047-01-11": "Thaipusam", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2047-07-07": "George Town Heritage Day", - "2047-07-08": "George Town Heritage Day [In lieu]", + "2047-07-08": "George Town Heritage Day (in lieu)", "2047-07-10": "Nuzul Al-Quran Day (estimated)", "2047-07-13": "Birthday of the Governor of Penang", "2047-07-24": "Hari Raya Puasa (estimated)", @@ -1936,7 +1936,7 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", @@ -1945,12 +1945,12 @@ "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "2048-07-07": "George Town Heritage Day", "2048-07-11": "Birthday of the Governor of Penang", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", @@ -1964,7 +1964,7 @@ "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", "2049-07-01": "Hari Raya Puasa (estimated)", @@ -1982,9 +1982,9 @@ "2050-01-08": "Thaipusam", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-07": "Nuzul Al-Quran Day (estimated)", @@ -1993,12 +1993,12 @@ "2050-07-07": "George Town Heritage Day", "2050-07-09": "Birthday of the Governor of Penang", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_PRK.json b/snapshots/countries/MY_PRK.json index 0224fc699..693c35d10 100644 --- a/snapshots/countries/MY_PRK.json +++ b/snapshots/countries/MY_PRK.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", @@ -9,7 +9,7 @@ "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -23,7 +23,7 @@ "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-22": "Nuzul Al-Quran Day (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", @@ -32,7 +32,7 @@ "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-11-27": "Birthday of the Sultan of Perak", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", @@ -40,7 +40,7 @@ "1952-01-12": "Thaipusam", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -48,17 +48,17 @@ "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-27": "Birthday of the Sultan of Perak", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", @@ -66,7 +66,7 @@ "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -93,11 +93,11 @@ "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam [In lieu]", + "1955-01-10": "Thaipusam (in lieu)", "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-10": "Nuzul Al-Quran Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", @@ -110,14 +110,14 @@ "1955-11-12": "Deepavali", "1955-11-27": "Birthday of the Sultan of Perak", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam [In lieu]", + "1956-02-27": "Thaipusam (in lieu)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -144,7 +144,7 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-11-27": "Birthday of the Sultan of Perak", "1957-12-25": "Christmas Day", @@ -153,28 +153,28 @@ "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-11-27": "Birthday of the Sultan of Perak", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam [In lieu]", + "1959-02-23": "Thaipusam (in lieu)", "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -196,7 +196,7 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -205,16 +205,16 @@ "1960-11-17": "Deepavali", "1960-11-27": "Birthday of the Sultan of Perak", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", "1961-03-04": "Nuzul Al-Quran Day (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -238,7 +238,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-11-27": "Birthday of the Sultan of Perak", @@ -250,7 +250,7 @@ "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -283,7 +283,7 @@ "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -298,11 +298,11 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -310,10 +310,10 @@ "1966-11-10": "Deepavali", "1966-11-27": "Birthday of the Sultan of Perak", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -347,7 +347,7 @@ "1968-12-07": "Nuzul Al-Quran Day (estimated)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -359,7 +359,7 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-11-08": "Deepavali", "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-11-27": "Birthday of the Sultan of Perak", @@ -392,7 +392,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-11-05": "Nuzul Al-Quran Day (estimated)", @@ -419,14 +419,14 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam [In lieu]", + "1973-02-19": "Thaipusam (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -435,7 +435,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-11-27": "Birthday of the Sultan of Perak", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", @@ -463,10 +463,10 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", @@ -478,9 +478,9 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam [In lieu]", + "1976-02-16": "Thaipusam (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -501,7 +501,7 @@ "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", "1977-09-14": "Hari Raya Puasa (estimated)", @@ -511,23 +511,23 @@ "1977-11-27": "Birthday of the Sultan of Perak", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-11-27": "Birthday of the Sultan of Perak", @@ -537,7 +537,7 @@ "1979-01-13": "Thaipusam", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", @@ -548,7 +548,7 @@ "1979-08-31": "National Day", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-11-27": "Birthday of the Sultan of Perak", "1979-12-25": "Christmas Day", @@ -556,9 +556,9 @@ "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam [In lieu]", + "1980-03-03": "Thaipusam (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -566,16 +566,16 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-11-27": "Birthday of the Sultan of Perak", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", @@ -585,7 +585,7 @@ "1981-07-18": "Nuzul Al-Quran Day (estimated)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", @@ -595,7 +595,7 @@ "1982-01-01": "New Year's Day", "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam [In lieu]", + "1982-01-11": "Thaipusam (in lieu)", "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", @@ -614,10 +614,10 @@ "1983-01-01": "New Year's Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-28": "Nuzul Al-Quran Day (estimated)", @@ -630,9 +630,9 @@ "1983-11-27": "Birthday of the Sultan of Perak", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", @@ -642,7 +642,7 @@ "1984-06-16": "Nuzul Al-Quran Day (estimated)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -664,28 +664,28 @@ "1985-08-31": "National Day", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-11-27": "Birthday of the Sultan of Perak", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam [In lieu]", + "1986-02-24": "Thaipusam (in lieu)", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -713,7 +713,7 @@ "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-03": "Nuzul Al-Quran Day (estimated)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", @@ -726,18 +726,18 @@ "1988-11-07": "Deepavali", "1988-11-27": "Birthday of the Sultan of Perak", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", @@ -751,7 +751,7 @@ "1990-01-12": "Thaipusam", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", @@ -789,10 +789,10 @@ "1992-03-21": "Nuzul Al-Quran Day (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -805,7 +805,7 @@ "1993-01-08": "Thaipusam", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", @@ -815,7 +815,7 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-11-27": "Birthday of the Sultan of Perak", @@ -825,12 +825,12 @@ "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -840,9 +840,9 @@ "1994-11-01": "Deepavali", "1994-11-27": "Birthday of the Sultan of Perak", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-14": "Thaipusam", @@ -852,7 +852,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -877,11 +877,11 @@ "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-02-22": "Thaipusam", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -890,7 +890,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-29": "Deepavali", "1997-11-27": "Birthday of the Sultan of Perak", "1997-12-25": "Christmas Day", @@ -904,7 +904,7 @@ "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", @@ -932,12 +932,12 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam [In lieu]", + "2000-02-21": "Thaipusam (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", @@ -980,7 +980,7 @@ "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2002-08-31": "National Day", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-11-22": "Nuzul Al-Quran Day", "2002-11-27": "Birthday of the Sultan of Perak", "2002-12-06": "Hari Raya Puasa", @@ -989,17 +989,17 @@ "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam [In lieu]", + "2003-02-17": "Thaipusam (in lieu)", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-05-01": "Labour Day", "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-23": "Deepavali", "2003-11-12": "Nuzul Al-Quran Day", "2003-11-26": "Hari Raya Puasa", @@ -1014,14 +1014,14 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-11-01": "Nuzul Al-Quran Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-11-27": "Birthday of the Sultan of Perak", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", @@ -1031,9 +1031,9 @@ "2005-02-23": "Thaipusam", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-08-31": "National Day", "2005-10-21": "Nuzul Al-Quran Day", @@ -1042,13 +1042,13 @@ "2005-11-04": "Second day of Hari Raya Puasa", "2005-11-27": "Birthday of the Sultan of Perak", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-02-13": "Thaipusam", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", @@ -1063,13 +1063,13 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam [In lieu]", + "2007-03-05": "Thaipusam (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -1077,7 +1077,7 @@ "2007-09-29": "Nuzul Al-Quran Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-11-27": "Birthday of the Sultan of Perak", "2007-12-20": "Hari Raya Haji", @@ -1092,7 +1092,7 @@ "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", @@ -1103,7 +1103,7 @@ "2008-12-29": "Awal Muharram (Hijri New Year)", "2009-01-01": "New Year's Day", "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam [In lieu]", + "2009-01-12": "Thaipusam (in lieu)", "2009-01-26": "Chinese New Year", "2009-01-27": "Chinese New Year Holiday", "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1114,7 +1114,7 @@ "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-11-27": "Birthday of the Sultan of Perak", "2009-11-28": "Hari Raya Haji", @@ -1123,7 +1123,7 @@ "2010-01-01": "New Year's Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-03-01": "Thaipusam", "2010-05-01": "Labour Day", @@ -1145,7 +1145,7 @@ "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-02-18": "Thaipusam", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2011-08-17": "Nuzul Al-Quran Day", @@ -1156,26 +1156,26 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year); Birthday of the Sultan of Perak", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam [In lieu]", + "2012-01-09": "Thaipusam (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day [In lieu]", + "2012-08-06": "Nuzul Al-Quran Day (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", @@ -1185,7 +1185,7 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-02-25": "Thaipusam", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", @@ -1212,10 +1212,10 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-11-27": "Birthday of the Sultan of Perak", @@ -1227,7 +1227,7 @@ "2015-03-05": "Thaipusam", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-07-04": "Nuzul Al-Quran Day", "2015-07-17": "Hari Raya Puasa", @@ -1245,7 +1245,7 @@ "2016-02-09": "Chinese New Year Holiday", "2016-02-23": "Thaipusam", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2016-06-22": "Nuzul Al-Quran Day", @@ -1259,20 +1259,20 @@ "2016-11-27": "Birthday of the Sultan of Perak", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-13": "Thaipusam", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -1294,10 +1294,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-11-02": "Birthday of the Sultan of Perak", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1308,34 +1308,34 @@ "2019-02-06": "Chinese New Year Holiday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-05-22": "Nuzul Al-Quran Day", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-01": "Birthday of the Sultan of Perak", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-02-08": "Thaipusam", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day [In lieu]", + "2020-05-11": "Nuzul Al-Quran Day (in lieu)", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-31": "Hari Raya Haji", "2020-08-20": "Awal Muharram (Hijri New Year)", @@ -1371,12 +1371,12 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", @@ -1384,18 +1384,18 @@ "2022-10-24": "Deepavali", "2022-11-04": "Birthday of the Sultan of Perak", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam [In lieu]", + "2023-02-06": "Thaipusam (in lieu)", "2023-04-08": "Nuzul Al-Quran Day", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1406,13 +1406,13 @@ "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-03": "Birthday of the Sultan of Perak", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1420,12 +1420,12 @@ "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-11-01": "Birthday of the Sultan of Perak", "2024-12-25": "Christmas Day", @@ -1436,15 +1436,15 @@ "2025-03-17": "Nuzul Al-Quran Day (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-07": "Birthday of the Sultan of Perak", @@ -1452,7 +1452,7 @@ "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Thaipusam", - "2026-02-02": "Thaipusam [In lieu]", + "2026-02-02": "Thaipusam (in lieu)", "2026-02-17": "Chinese New Year (estimated)", "2026-02-18": "Chinese New Year Holiday (estimated)", "2026-03-06": "Nuzul Al-Quran Day (estimated)", @@ -1472,13 +1472,13 @@ "2027-01-22": "Thaipusam", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1493,10 +1493,10 @@ "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-09": "Vesak Day (estimated)", @@ -1518,24 +1518,24 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-02": "Birthday of the Sultan of Perak", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Nuzul Al-Quran Day (estimated)", "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam [In lieu]", + "2030-02-18": "Thaipusam (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", @@ -1560,7 +1560,7 @@ "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-07": "Birthday of the Sultan of Perak", "2031-11-13": "Deepavali", @@ -1576,10 +1576,10 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", @@ -1589,14 +1589,14 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-02-14": "Thaipusam", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1608,15 +1608,15 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam [In lieu]", + "2034-03-06": "Thaipusam (in lieu)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", "2034-05-03": "Vesak Day (estimated)", @@ -1634,27 +1634,27 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-02-23": "Thaipusam", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-29": "Deepavali", "2035-11-02": "Birthday of the Sultan of Perak", "2035-11-17": "Nuzul Al-Quran Day (estimated)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam [In lieu]", + "2036-01-14": "Thaipusam (in lieu)", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-07": "Hari Raya Haji (estimated)", @@ -1664,12 +1664,12 @@ "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-07": "Birthday of the Sultan of Perak", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", @@ -1677,7 +1677,7 @@ "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-03-02": "Thaipusam", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", @@ -1690,7 +1690,7 @@ "2037-11-06": "Birthday of the Sultan of Perak", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Hari Raya Haji (estimated)", @@ -1712,13 +1712,13 @@ "2039-01-01": "New Year's Day", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam [In lieu]", + "2039-01-10": "Thaipusam (in lieu)", "2039-01-24": "Chinese New Year (estimated)", "2039-01-25": "Chinese New Year Holiday (estimated)", "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", @@ -1730,27 +1730,27 @@ "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-02-27": "Thaipusam", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-02": "Birthday of the Sultan of Perak", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", @@ -1781,24 +1781,24 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-02": "Nuzul Al-Quran Day (estimated)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-07": "Birthday of the Sultan of Perak", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", @@ -1816,12 +1816,12 @@ "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam [In lieu]", + "2044-02-15": "Thaipusam (in lieu)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-08-11": "Nuzul Al-Quran Day (estimated)", @@ -1834,9 +1834,9 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", @@ -1860,14 +1860,14 @@ "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-21": "Nuzul Al-Quran Day (estimated)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1878,7 +1878,7 @@ "2047-01-11": "Thaipusam", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -1893,7 +1893,7 @@ "2047-11-15": "Deepavali", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", @@ -1902,10 +1902,10 @@ "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", @@ -1920,7 +1920,7 @@ "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", "2049-07-01": "Hari Raya Puasa (estimated)", @@ -1937,16 +1937,16 @@ "2050-01-08": "Thaipusam", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-07": "Nuzul Al-Quran Day (estimated)", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", @@ -1954,5 +1954,5 @@ "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_SBH.json b/snapshots/countries/MY_SBH.json index 200b6e608..88d9e4bac 100644 --- a/snapshots/countries/MY_SBH.json +++ b/snapshots/countries/MY_SBH.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-04-07": "Good Friday", @@ -10,7 +10,7 @@ "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-07": "Birthday of the Governor of Sabah", @@ -24,7 +24,7 @@ "1951-03-23": "Good Friday", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-05-30": "Pesta Kaamatan", "1951-05-31": "Pesta Kaamatan (Second day)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -35,13 +35,13 @@ "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-06": "Birthday of the Governor of Sabah", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-04-11": "Good Friday", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", @@ -51,17 +51,17 @@ "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-10-04": "Birthday of the Governor of Sabah", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-04-03": "Good Friday", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", @@ -70,7 +70,7 @@ "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -101,7 +101,7 @@ "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-04-08": "Good Friday", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", "1955-05-24": "Second day of Hari Raya Puasa (estimated)", @@ -115,12 +115,12 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-03-30": "Good Friday", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -151,7 +151,7 @@ "1957-08-31": "National Day", "1957-10-05": "Birthday of the Governor of Sabah", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", @@ -160,7 +160,7 @@ "1958-04-04": "Good Friday", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-05-30": "Pesta Kaamatan", @@ -169,16 +169,16 @@ "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-10-04": "Birthday of the Governor of Sabah", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-03-27": "Good Friday", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -201,7 +201,7 @@ "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-04-15": "Good Friday", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-05-30": "Pesta Kaamatan", "1960-05-31": "Pesta Kaamatan (Second day)", @@ -212,14 +212,14 @@ "1960-10-01": "Birthday of the Governor of Sabah", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-03-31": "Good Friday", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", @@ -247,7 +247,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-06": "Birthday of the Governor of Sabah", "1962-10-26": "Deepavali", @@ -257,7 +257,7 @@ "1963-01-26": "Chinese New Year Holiday (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-04-12": "Good Friday", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", @@ -292,7 +292,7 @@ "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-04-16": "Good Friday", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", @@ -308,12 +308,12 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-08": "Good Friday", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-05-30": "Pesta Kaamatan", "1966-05-31": "Pesta Kaamatan (Second day)", @@ -323,9 +323,9 @@ "1966-10-01": "Birthday of the Governor of Sabah", "1966-11-10": "Deepavali", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -361,7 +361,7 @@ "1968-11-18": "Deepavali", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -375,7 +375,7 @@ "1969-05-31": "Pesta Kaamatan (Second day)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-10-04": "Birthday of the Governor of Sabah", "1969-11-08": "Deepavali", "1969-12-10": "Hari Raya Puasa (estimated)", @@ -408,7 +408,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-05-30": "Pesta Kaamatan", "1971-05-31": "Pesta Kaamatan (Second day)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -437,12 +437,12 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-04-20": "Good Friday", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", @@ -454,7 +454,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-03": "Hari Raya Haji (estimated)", @@ -482,12 +482,12 @@ "1975-03-28": "Good Friday", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-05-30": "Pesta Kaamatan", "1975-05-31": "Pesta Kaamatan (Second day)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-10-04": "Birthday of the Governor of Sabah", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", @@ -498,7 +498,7 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-04-16": "Good Friday", "1976-05-01": "Labour Day", @@ -521,7 +521,7 @@ "1977-04-08": "Good Friday", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-05-30": "Pesta Kaamatan", "1977-05-31": "Pesta Kaamatan (Second day)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -533,24 +533,24 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-03-24": "Good Friday", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-05-30": "Pesta Kaamatan", "1978-05-31": "Pesta Kaamatan (Second day)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-07": "Birthday of the Governor of Sabah", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", @@ -559,7 +559,7 @@ "1979-01-01": "New Year's Day", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-04-13": "Good Friday", "1979-05-01": "Labour Day", @@ -573,14 +573,14 @@ "1979-10-06": "Birthday of the Governor of Sabah", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-04-04": "Good Friday", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", @@ -590,16 +590,16 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-04": "Birthday of the Governor of Sabah", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-04-17": "Good Friday", @@ -610,7 +610,7 @@ "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-03": "Birthday of the Governor of Sabah", "1981-10-08": "Hari Raya Haji (estimated)", @@ -639,10 +639,10 @@ "1983-01-01": "New Year's Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-04-01": "Good Friday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-05-30": "Pesta Kaamatan", "1983-05-31": "Pesta Kaamatan (Second day)", @@ -656,9 +656,9 @@ "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-04-20": "Good Friday", @@ -669,7 +669,7 @@ "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -693,14 +693,14 @@ "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-10-05": "Birthday of the Governor of Sabah", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-03-28": "Good Friday", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", @@ -709,10 +709,10 @@ "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-04": "Birthday of the Governor of Sabah", "1986-10-31": "Deepavali", @@ -741,7 +741,7 @@ "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-04-01": "Good Friday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", "1988-05-30": "Pesta Kaamatan; Vesak Day (estimated)", @@ -754,16 +754,16 @@ "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-03-24": "Good Friday", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-05-30": "Pesta Kaamatan", "1989-05-31": "Pesta Kaamatan (Second day)", @@ -778,7 +778,7 @@ "1990-01-01": "New Year's Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-04-13": "Good Friday", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", @@ -817,11 +817,11 @@ "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-04-17": "Good Friday", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-05-30": "Pesta Kaamatan", "1992-05-31": "Pesta Kaamatan (Second day)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -835,7 +835,7 @@ "1993-01-01": "New Year's Day", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-04-09": "Good Friday", @@ -846,7 +846,7 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-10-02": "Birthday of the Governor of Sabah", "1993-11-12": "Deepavali", @@ -856,10 +856,10 @@ "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-04-01": "Good Friday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-05-30": "Pesta Kaamatan", @@ -871,9 +871,9 @@ "1994-10-01": "Birthday of the Governor of Sabah", "1994-11-01": "Deepavali", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-03-02": "Hari Raya Puasa (estimated)", @@ -882,7 +882,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated); Pesta Kaamatan", "1995-05-31": "Pesta Kaamatan (Second day)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -911,7 +911,7 @@ "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-03-28": "Good Friday", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -922,7 +922,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-04": "Birthday of the Governor of Sabah", "1997-10-29": "Deepavali", "1997-12-25": "Christmas Day", @@ -935,7 +935,7 @@ "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-05-30": "Pesta Kaamatan", "1998-05-31": "Pesta Kaamatan (Second day)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -966,10 +966,10 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-04-21": "Good Friday", @@ -1018,14 +1018,14 @@ "2002-08-31": "National Day", "2002-10-05": "Birthday of the Governor of Sabah", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-04-18": "Good Friday", @@ -1036,7 +1036,7 @@ "2003-05-31": "Pesta Kaamatan (Second day)", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-04": "Birthday of the Governor of Sabah", "2003-10-23": "Deepavali", "2003-11-26": "Hari Raya Puasa", @@ -1051,7 +1051,7 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-05-30": "Pesta Kaamatan", "2004-05-31": "Pesta Kaamatan (Second day)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1060,7 +1060,7 @@ "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -1069,9 +1069,9 @@ "2005-03-25": "Good Friday", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-05-30": "Pesta Kaamatan", "2005-05-31": "Pesta Kaamatan (Second day)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1081,13 +1081,13 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-04-14": "Good Friday", "2006-05-01": "Labour Day", @@ -1103,11 +1103,11 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-04-06": "Good Friday", "2007-05-01": "Labour Day; Vesak Day", @@ -1118,7 +1118,7 @@ "2007-10-06": "Birthday of the Governor of Sabah", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-20": "Hari Raya Haji", "2007-12-25": "Christmas Day", @@ -1134,7 +1134,7 @@ "2008-05-31": "Pesta Kaamatan (Second day)", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", "2008-10-04": "Birthday of the Governor of Sabah", @@ -1155,7 +1155,7 @@ "2009-08-31": "National Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-03": "Birthday of the Governor of Sabah", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", @@ -1164,7 +1164,7 @@ "2010-01-01": "New Year's Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-04-02": "Good Friday", "2010-05-01": "Labour Day", @@ -1187,7 +1187,7 @@ "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-04-22": "Good Friday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-05-30": "Pesta Kaamatan", "2011-05-31": "Pesta Kaamatan (Second day)", @@ -1200,13 +1200,13 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-04-06": "Good Friday", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", @@ -1215,10 +1215,10 @@ "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-06": "Birthday of the Governor of Sabah", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", @@ -1228,7 +1228,7 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-03-29": "Good Friday", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", @@ -1257,11 +1257,11 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-04": "Birthday of the Governor of Sabah", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", @@ -1272,7 +1272,7 @@ "2015-04-03": "Good Friday", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-05-30": "Pesta Kaamatan", "2015-05-31": "Pesta Kaamatan (Second day)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -1291,7 +1291,7 @@ "2016-02-09": "Chinese New Year Holiday", "2016-03-25": "Good Friday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-05-30": "Pesta Kaamatan", "2016-05-31": "Pesta Kaamatan (Second day)", @@ -1306,12 +1306,12 @@ "2016-10-29": "Deepavali", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-04-14": "Good Friday", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", @@ -1320,7 +1320,7 @@ "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -1343,10 +1343,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-10-06": "Birthday of the Governor of Sabah", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1357,7 +1357,7 @@ "2019-04-19": "Good Friday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-05-30": "Pesta Kaamatan", "2019-05-31": "Pesta Kaamatan (Second day)", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -1365,26 +1365,26 @@ "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-05": "Birthday of the Governor of Sabah", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-24": "Christmas Eve", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-04-10": "Good Friday", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-05-30": "Pesta Kaamatan", "2020-05-31": "Pesta Kaamatan (Second day)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", @@ -1424,14 +1424,14 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-05-30": "Pesta Kaamatan", "2022-05-31": "Pesta Kaamatan (Second day)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", @@ -1440,16 +1440,16 @@ "2022-10-24": "Deepavali", "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-04-07": "Good Friday", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-05-30": "Pesta Kaamatan", @@ -1462,13 +1462,13 @@ "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-10-07": "Birthday of the Governor of Sabah", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-29": "Good Friday", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1478,12 +1478,12 @@ "2024-05-31": "Pesta Kaamatan (Second day)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-05": "Birthday of the Governor of Sabah", "2024-10-30": "Deepavali", "2024-12-24": "Christmas Eve", @@ -1493,18 +1493,18 @@ "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-05-30": "Pesta Kaamatan", "2025-05-31": "Pesta Kaamatan (Second day)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-10-04": "Birthday of the Governor of Sabah", @@ -1533,13 +1533,13 @@ "2027-01-01": "New Year's Day", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-03-26": "Good Friday", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-05-30": "Pesta Kaamatan", "2027-05-31": "Pesta Kaamatan (Second day)", @@ -1557,7 +1557,7 @@ "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-04-14": "Good Friday", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", @@ -1582,24 +1582,24 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-05-30": "Pesta Kaamatan", "2029-05-31": "Pesta Kaamatan (Second day)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-10-06": "Birthday of the Governor of Sabah", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-19": "Good Friday", "2030-05-01": "Labour Day", @@ -1629,7 +1629,7 @@ "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-10-04": "Birthday of the Governor of Sabah", "2031-11-13": "Deepavali", @@ -1645,12 +1645,12 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-05-30": "Pesta Kaamatan", "2032-05-31": "Pesta Kaamatan (Second day)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-10-02": "Birthday of the Governor of Sabah", @@ -1660,14 +1660,14 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-05-30": "Pesta Kaamatan", "2033-05-31": "Pesta Kaamatan (Second day)", @@ -1680,12 +1680,12 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Christmas Eve; Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-04-07": "Good Friday", @@ -1706,24 +1706,24 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-03-23": "Good Friday", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-05-30": "Pesta Kaamatan", "2035-05-31": "Pesta Kaamatan (Second day)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-06": "Birthday of the Governor of Sabah", "2035-10-29": "Deepavali", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1739,11 +1739,11 @@ "2036-05-31": "Pesta Kaamatan (Second day)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-10-04": "Birthday of the Governor of Sabah", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-24": "Christmas Eve", @@ -1752,7 +1752,7 @@ "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-04-03": "Good Friday", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", @@ -1766,7 +1766,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-24": "Christmas Eve", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", @@ -1796,7 +1796,7 @@ "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-05-30": "Pesta Kaamatan", "2039-05-31": "Pesta Kaamatan (Second day)", @@ -1810,15 +1810,15 @@ "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-03-30": "Good Friday", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", @@ -1827,11 +1827,11 @@ "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-10-06": "Birthday of the Governor of Sabah", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-24": "Christmas Eve", @@ -1863,18 +1863,18 @@ "2042-04-04": "Good Friday", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-05-30": "Pesta Kaamatan", "2042-05-31": "Pesta Kaamatan (Second day)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-10-04": "Birthday of the Governor of Sabah", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-24": "Christmas Eve", "2042-12-25": "Christmas Day", @@ -1882,7 +1882,7 @@ "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-03-27": "Good Friday", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", @@ -1902,11 +1902,11 @@ "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-05-30": "Pesta Kaamatan", "2044-05-31": "Pesta Kaamatan (Second day)", @@ -1921,9 +1921,9 @@ "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", @@ -1949,7 +1949,7 @@ "2046-03-23": "Good Friday", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-05-30": "Pesta Kaamatan", "2046-05-31": "Pesta Kaamatan (Second day)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1957,7 +1957,7 @@ "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-06": "Birthday of the Governor of Sabah", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", @@ -1968,7 +1968,7 @@ "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-04-12": "Good Friday", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", @@ -1986,7 +1986,7 @@ "2047-12-24": "Christmas Eve", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", @@ -1998,7 +1998,7 @@ "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", @@ -2014,7 +2014,7 @@ "2049-04-16": "Good Friday", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-05-30": "Pesta Kaamatan", "2049-05-31": "Pesta Kaamatan (Second day)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -2032,10 +2032,10 @@ "2050-01-01": "New Year's Day", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-05-30": "Pesta Kaamatan", "2050-05-31": "Pesta Kaamatan (Second day)", @@ -2043,7 +2043,7 @@ "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", @@ -2052,5 +2052,5 @@ "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_SGR.json b/snapshots/countries/MY_SGR.json index b5cd218be..b23e8b5b6 100644 --- a/snapshots/countries/MY_SGR.json +++ b/snapshots/countries/MY_SGR.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-03-03": "Thaipusam", @@ -9,7 +9,7 @@ "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -23,7 +23,7 @@ "1951-02-21": "Thaipusam", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1951-06-22": "Nuzul Al-Quran Day (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", @@ -32,14 +32,14 @@ "1951-09-12": "Hari Raya Haji (estimated)", "1951-10-02": "Awal Muharram (Hijri New Year) (estimated)", "1951-10-28": "Deepavali", - "1951-10-29": "Deepavali [In lieu]", + "1951-10-29": "Deepavali (in lieu)", "1951-12-11": "Birthday of The Sultan of Selangor; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-01-12": "Thaipusam", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -47,17 +47,17 @@ "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-11": "Birthday of The Sultan of Selangor", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-02-28": "Thaipusam", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", @@ -65,7 +65,7 @@ "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -92,11 +92,11 @@ "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Thaipusam", - "1955-01-10": "Thaipusam [In lieu]", + "1955-01-10": "Thaipusam (in lieu)", "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-10": "Nuzul Al-Quran Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", @@ -108,16 +108,16 @@ "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-11-12": "Deepavali", "1955-12-11": "Birthday of The Sultan of Selangor", - "1955-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1955-12-12": "Birthday of The Sultan of Selangor (in lieu)", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-02-26": "Thaipusam", - "1956-02-27": "Thaipusam [In lieu]", + "1956-02-27": "Thaipusam (in lieu)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -144,7 +144,7 @@ "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-11-20": "Deepavali", "1957-12-11": "Birthday of The Sultan of Selangor", "1957-12-25": "Christmas Day", @@ -153,28 +153,28 @@ "1958-02-19": "Chinese New Year Holiday (estimated)", "1958-03-05": "Thaipusam", "1958-04-06": "Nuzul Al-Quran Day (estimated)", - "1958-04-07": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1958-04-07": "Nuzul Al-Quran Day (estimated) (in lieu)", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-11-09": "Deepavali", - "1958-11-10": "Deepavali [In lieu]", + "1958-11-10": "Deepavali (in lieu)", "1958-12-11": "Birthday of The Sultan of Selangor", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-02-22": "Thaipusam", - "1959-02-23": "Thaipusam [In lieu]", + "1959-02-23": "Thaipusam (in lieu)", "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -196,7 +196,7 @@ "1960-03-28": "Hari Raya Puasa (estimated)", "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", @@ -204,18 +204,18 @@ "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-11-17": "Deepavali", "1960-12-11": "Birthday of The Sultan of Selangor", - "1960-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1960-12-12": "Birthday of The Sultan of Selangor (in lieu)", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-02": "Thaipusam", "1961-03-04": "Nuzul Al-Quran Day (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", @@ -239,7 +239,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-11": "Birthday of The Sultan of Selangor", @@ -251,7 +251,7 @@ "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-08": "Vesak Day (estimated)", @@ -284,7 +284,7 @@ "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-02-16": "Thaipusam", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -299,23 +299,23 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", "1966-12-11": "Birthday of The Sultan of Selangor", - "1966-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1966-12-12": "Birthday of The Sultan of Selangor (in lieu)", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1966-12-29": "Nuzul Al-Quran Day (estimated)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -349,7 +349,7 @@ "1968-12-11": "Birthday of The Sultan of Selangor", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -361,7 +361,7 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-11-08": "Deepavali", "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-12-10": "Hari Raya Puasa (estimated)", @@ -393,7 +393,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1971-08-31": "National Day", "1971-11-05": "Nuzul Al-Quran Day (estimated)", @@ -420,14 +420,14 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-02-18": "Thaipusam", - "1973-02-19": "Thaipusam [In lieu]", + "1973-02-19": "Thaipusam (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -436,7 +436,7 @@ "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-11": "Birthday of The Sultan of Selangor", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", @@ -464,10 +464,10 @@ "1975-03-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", @@ -479,9 +479,9 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-02-15": "Thaipusam", - "1976-02-16": "Thaipusam [In lieu]", + "1976-02-16": "Thaipusam (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", "1976-05-13": "Vesak Day (estimated)", @@ -502,7 +502,7 @@ "1977-03-05": "Thaipusam", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", "1977-09-14": "Hari Raya Puasa (estimated)", @@ -510,25 +510,25 @@ "1977-11-09": "Deepavali", "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated); Birthday of The Sultan of Selangor", - "1977-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1977-12-12": "Birthday of The Sultan of Selangor (in lieu)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-02-22": "Thaipusam", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-30": "Deepavali", "1978-11-10": "Hari Raya Haji (estimated)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -538,7 +538,7 @@ "1979-01-13": "Thaipusam", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", @@ -549,7 +549,7 @@ "1979-08-31": "National Day", "1979-10-31": "Hari Raya Haji (estimated)", "1979-11-18": "Deepavali", - "1979-11-19": "Deepavali [In lieu]", + "1979-11-19": "Deepavali (in lieu)", "1979-11-20": "Awal Muharram (Hijri New Year) (estimated)", "1979-12-11": "Birthday of The Sultan of Selangor", "1979-12-25": "Christmas Day", @@ -557,9 +557,9 @@ "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-03-02": "Thaipusam", - "1980-03-03": "Thaipusam [In lieu]", + "1980-03-03": "Thaipusam (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -567,16 +567,16 @@ "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-11": "Birthday of The Sultan of Selangor", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-02-19": "Thaipusam", @@ -586,7 +586,7 @@ "1981-07-18": "Nuzul Al-Quran Day (estimated)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-26": "Deepavali", @@ -596,7 +596,7 @@ "1982-01-01": "New Year's Day", "1982-01-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1982-01-10": "Thaipusam", - "1982-01-11": "Thaipusam [In lieu]", + "1982-01-11": "Thaipusam (in lieu)", "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", @@ -615,10 +615,10 @@ "1983-01-01": "New Year's Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-02-28": "Thaipusam", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", "1983-06-28": "Nuzul Al-Quran Day (estimated)", @@ -629,12 +629,12 @@ "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", "1983-12-11": "Birthday of The Sultan of Selangor", - "1983-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1983-12-12": "Birthday of The Sultan of Selangor (in lieu)", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-02-17": "Thaipusam", @@ -644,7 +644,7 @@ "1984-06-16": "Nuzul Al-Quran Day (estimated)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -666,28 +666,28 @@ "1985-08-31": "National Day", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", - "1985-11-11": "Deepavali [In lieu]", + "1985-11-11": "Deepavali (in lieu)", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-11": "Birthday of The Sultan of Selangor", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-02-23": "Thaipusam", - "1986-02-24": "Thaipusam [In lieu]", + "1986-02-24": "Thaipusam (in lieu)", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-05-25": "Nuzul Al-Quran Day (estimated)", - "1986-05-26": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1986-05-26": "Nuzul Al-Quran Day (estimated) (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -715,7 +715,7 @@ "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-03-03": "Thaipusam", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-03": "Nuzul Al-Quran Day (estimated)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", @@ -727,20 +727,20 @@ "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-11-07": "Deepavali", "1988-12-11": "Birthday of The Sultan of Selangor", - "1988-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1988-12-12": "Birthday of The Sultan of Selangor (in lieu)", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-02-21": "Thaipusam", "1989-04-23": "Nuzul Al-Quran Day (estimated)", - "1989-04-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1989-04-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1989-07-13": "Hari Raya Haji (estimated)", @@ -754,7 +754,7 @@ "1990-01-12": "Thaipusam", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", @@ -792,10 +792,10 @@ "1992-03-21": "Nuzul Al-Quran Day (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1992-06-11": "Hari Raya Haji (estimated)", "1992-07-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -808,7 +808,7 @@ "1993-01-08": "Thaipusam", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", @@ -818,7 +818,7 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-11": "Birthday of The Sultan of Selangor", @@ -828,12 +828,12 @@ "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-25": "Thaipusam", "1994-02-27": "Nuzul Al-Quran Day (estimated)", - "1994-02-28": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1994-02-28": "Nuzul Al-Quran Day (estimated) (in lieu)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -842,11 +842,11 @@ "1994-08-31": "National Day", "1994-11-01": "Deepavali", "1994-12-11": "Birthday of The Sultan of Selangor", - "1994-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "1994-12-12": "Birthday of The Sultan of Selangor (in lieu)", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-02-14": "Thaipusam", @@ -856,7 +856,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -881,11 +881,11 @@ "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", - "1997-01-27": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1997-01-27": "Nuzul Al-Quran Day (estimated) (in lieu)", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-02-22": "Thaipusam", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -894,7 +894,7 @@ "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-29": "Deepavali", "1997-12-11": "Birthday of The Sultan of Selangor", "1997-12-25": "Christmas Day", @@ -908,7 +908,7 @@ "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", @@ -936,12 +936,12 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-02-20": "Thaipusam", - "2000-02-21": "Thaipusam [In lieu]", + "2000-02-21": "Thaipusam (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-05-01": "Labour Day", @@ -984,7 +984,7 @@ "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2002-08-31": "National Day", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali [In lieu]", + "2002-11-04": "Deepavali (in lieu)", "2002-11-22": "Nuzul Al-Quran Day", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", @@ -993,17 +993,17 @@ "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-02-16": "Thaipusam", - "2003-02-17": "Thaipusam [In lieu]", + "2003-02-17": "Thaipusam (in lieu)", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-05-01": "Labour Day", "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-23": "Deepavali", "2003-11-12": "Nuzul Al-Quran Day", "2003-11-26": "Hari Raya Puasa", @@ -1019,14 +1019,14 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2004-08-31": "National Day", "2004-11-01": "Nuzul Al-Quran Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-11": "Birthday of The Sultan of Selangor", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", @@ -1036,9 +1036,9 @@ "2005-02-23": "Thaipusam", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2005-08-31": "National Day", "2005-10-21": "Nuzul Al-Quran Day", @@ -1046,15 +1046,15 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-11": "Birthday of The Sultan of Selangor", - "2005-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2005-12-12": "Birthday of The Sultan of Selangor (in lieu)", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-02-13": "Thaipusam", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-05-01": "Labour Day", @@ -1069,13 +1069,13 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-04": "Thaipusam", - "2007-03-05": "Thaipusam [In lieu]", + "2007-03-05": "Thaipusam (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -1083,7 +1083,7 @@ "2007-09-29": "Nuzul Al-Quran Day", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-11": "Birthday of The Sultan of Selangor", "2007-12-20": "Hari Raya Haji", @@ -1098,7 +1098,7 @@ "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", @@ -1109,7 +1109,7 @@ "2008-12-29": "Awal Muharram (Hijri New Year)", "2009-01-01": "New Year's Day", "2009-01-11": "Thaipusam", - "2009-01-12": "Thaipusam [In lieu]", + "2009-01-12": "Thaipusam (in lieu)", "2009-01-26": "Chinese New Year", "2009-01-27": "Chinese New Year Holiday", "2009-03-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1120,7 +1120,7 @@ "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-17": "Deepavali", "2009-11-28": "Hari Raya Haji", "2009-12-11": "Birthday of The Sultan of Selangor", @@ -1129,7 +1129,7 @@ "2010-01-01": "New Year's Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-03-01": "Thaipusam", "2010-05-01": "Labour Day", @@ -1151,7 +1151,7 @@ "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-02-18": "Thaipusam", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2011-08-17": "Nuzul Al-Quran Day", @@ -1162,28 +1162,28 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-11": "Birthday of The Sultan of Selangor", - "2011-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2011-12-12": "Birthday of The Sultan of Selangor (in lieu)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-08": "Thaipusam", - "2012-01-09": "Thaipusam [In lieu]", + "2012-01-09": "Thaipusam (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2012-08-05": "Nuzul Al-Quran Day", - "2012-08-06": "Nuzul Al-Quran Day [In lieu]", + "2012-08-06": "Nuzul Al-Quran Day (in lieu)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", @@ -1193,7 +1193,7 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-02-25": "Thaipusam", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", @@ -1220,10 +1220,10 @@ "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-11": "Birthday of The Sultan of Selangor", @@ -1235,7 +1235,7 @@ "2015-03-05": "Thaipusam", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2015-07-04": "Nuzul Al-Quran Day", "2015-07-17": "Hari Raya Puasa", @@ -1253,7 +1253,7 @@ "2016-02-09": "Chinese New Year Holiday", "2016-02-23": "Thaipusam", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2016-06-22": "Nuzul Al-Quran Day", @@ -1266,22 +1266,22 @@ "2016-10-29": "Deepavali", "2016-12-11": "Birthday of The Sultan of Selangor", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2016-12-13": "Birthday of The Sultan of Selangor [In lieu]", + "2016-12-13": "Birthday of The Sultan of Selangor (in lieu)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-13": "Thaipusam", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", "2017-09-16": "Malaysia Day", @@ -1303,10 +1303,10 @@ "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-11-06": "Deepavali", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2018-12-11": "Birthday of The Sultan of Selangor", @@ -1317,34 +1317,34 @@ "2019-02-06": "Chinese New Year Holiday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-05-22": "Nuzul Al-Quran Day", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali [In lieu]", + "2019-10-28": "Deepavali (in lieu)", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2019-12-11": "Birthday of The Sultan of Selangor", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-02-08": "Thaipusam", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-10": "Nuzul Al-Quran Day", - "2020-05-11": "Nuzul Al-Quran Day [In lieu]", + "2020-05-11": "Nuzul Al-Quran Day (in lieu)", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", "2020-07-31": "Hari Raya Haji", "2020-08-20": "Awal Muharram (Hijri New Year)", @@ -1380,32 +1380,32 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-10-24": "Deepavali", "2022-12-11": "Birthday of The Sultan of Selangor", - "2022-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2022-12-12": "Birthday of The Sultan of Selangor (in lieu)", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-02-05": "Thaipusam", - "2023-02-06": "Thaipusam [In lieu]", + "2023-02-06": "Thaipusam (in lieu)", "2023-04-08": "Nuzul Al-Quran Day", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1415,14 +1415,14 @@ "2023-09-16": "Malaysia Day", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali [In lieu]", + "2023-11-13": "Deepavali (in lieu)", "2023-12-11": "Birthday of The Sultan of Selangor", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1430,12 +1430,12 @@ "2024-05-22": "Vesak Day (estimated)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-30": "Deepavali", "2024-12-11": "Birthday of The Sultan of Selangor", "2024-12-25": "Christmas Day", @@ -1446,15 +1446,15 @@ "2025-03-17": "Nuzul Al-Quran Day (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-11-18": "Deepavali", @@ -1462,7 +1462,7 @@ "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-02-01": "Thaipusam", - "2026-02-02": "Thaipusam [In lieu]", + "2026-02-02": "Thaipusam (in lieu)", "2026-02-17": "Chinese New Year (estimated)", "2026-02-18": "Chinese New Year Holiday (estimated)", "2026-03-06": "Nuzul Al-Quran Day (estimated)", @@ -1482,13 +1482,13 @@ "2027-01-22": "Thaipusam", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1503,10 +1503,10 @@ "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-13": "Nuzul Al-Quran Day (estimated)", - "2028-02-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2028-02-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-09": "Vesak Day (estimated)", @@ -1528,14 +1528,14 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali [In lieu]", + "2029-11-05": "Deepavali (in lieu)", "2029-12-11": "Birthday of The Sultan of Selangor", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1543,9 +1543,9 @@ "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-02-17": "Thaipusam", - "2030-02-18": "Thaipusam [In lieu]", + "2030-02-18": "Thaipusam (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", @@ -1570,7 +1570,7 @@ "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-11-13": "Deepavali", "2031-12-11": "Birthday of The Sultan of Selangor", @@ -1586,10 +1586,10 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", "2032-11-01": "Deepavali", @@ -1599,14 +1599,14 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-02-14": "Thaipusam", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2033-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1615,19 +1615,19 @@ "2033-10-21": "Deepavali", "2033-12-09": "Nuzul Al-Quran Day (estimated)", "2033-12-11": "Birthday of The Sultan of Selangor", - "2033-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2033-12-12": "Birthday of The Sultan of Selangor (in lieu)", "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-05": "Thaipusam", - "2034-03-06": "Thaipusam [In lieu]", + "2034-03-06": "Thaipusam (in lieu)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-05-01": "Labour Day", "2034-05-03": "Vesak Day (estimated)", @@ -1645,27 +1645,27 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-02-23": "Thaipusam", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-29": "Deepavali", "2035-11-17": "Nuzul Al-Quran Day (estimated)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-11": "Birthday of The Sultan of Selangor", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-13": "Thaipusam", - "2036-01-14": "Thaipusam [In lieu]", + "2036-01-14": "Thaipusam (in lieu)", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", "2036-02-07": "Hari Raya Haji (estimated)", @@ -1675,11 +1675,11 @@ "2036-05-10": "Vesak Day (estimated)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-11-05": "Nuzul Al-Quran Day (estimated)", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali [In lieu]", + "2036-11-17": "Deepavali (in lieu)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-11-20": "Second day of Hari Raya Puasa (estimated)", "2036-12-11": "Birthday of The Sultan of Selangor", @@ -1688,7 +1688,7 @@ "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-03-02": "Thaipusam", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", @@ -1700,7 +1700,7 @@ "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-11": "Birthday of The Sultan of Selangor", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", @@ -1723,13 +1723,13 @@ "2039-01-01": "New Year's Day", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-09": "Thaipusam", - "2039-01-10": "Thaipusam [In lieu]", + "2039-01-10": "Thaipusam (in lieu)", "2039-01-24": "Chinese New Year (estimated)", "2039-01-25": "Chinese New Year Holiday (estimated)", "2039-01-26": "Awal Muharram (Hijri New Year) (estimated)", "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-31": "National Day", @@ -1739,30 +1739,30 @@ "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-11": "Birthday of The Sultan of Selangor", - "2039-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2039-12-12": "Birthday of The Sultan of Selangor (in lieu)", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-02-27": "Thaipusam", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-09-23": "Nuzul Al-Quran Day (estimated)", - "2040-09-24": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2040-09-24": "Nuzul Al-Quran Day (estimated) (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-11-03": "Deepavali", "2040-12-11": "Birthday of The Sultan of Selangor", "2040-12-14": "Hari Raya Haji (estimated)", @@ -1793,16 +1793,16 @@ "2042-03-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-02": "Nuzul Al-Quran Day (estimated)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-11": "Birthday of The Sultan of Selangor", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", @@ -1810,7 +1810,7 @@ "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-02-24": "Thaipusam", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", @@ -1828,12 +1828,12 @@ "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-02-14": "Thaipusam", - "2044-02-15": "Thaipusam [In lieu]", + "2044-02-15": "Thaipusam (in lieu)", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2044-08-11": "Nuzul Al-Quran Day (estimated)", @@ -1845,11 +1845,11 @@ "2044-11-17": "Deepavali", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-11": "Birthday of The Sultan of Selangor", - "2044-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2044-12-12": "Birthday of The Sultan of Selangor (in lieu)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", @@ -1873,14 +1873,14 @@ "2046-02-21": "Thaipusam", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-21": "Nuzul Al-Quran Day (estimated)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1891,7 +1891,7 @@ "2047-01-11": "Thaipusam", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", @@ -1906,7 +1906,7 @@ "2047-12-11": "Birthday of The Sultan of Selangor", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", @@ -1915,10 +1915,10 @@ "2048-05-27": "Vesak Day (estimated)", "2048-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2048-06-28": "Nuzul Al-Quran Day (estimated)", - "2048-06-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2048-06-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", "2048-09-19": "Hari Raya Haji (estimated)", @@ -1933,7 +1933,7 @@ "2049-02-17": "Thaipusam", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", "2049-07-01": "Hari Raya Puasa (estimated)", @@ -1950,23 +1950,23 @@ "2050-01-08": "Thaipusam", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2050-06-07": "Nuzul Al-Quran Day (estimated)", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-11": "Birthday of The Sultan of Selangor", - "2050-12-12": "Birthday of The Sultan of Selangor [In lieu]", + "2050-12-12": "Birthday of The Sultan of Selangor (in lieu)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_SWK.json b/snapshots/countries/MY_SWK.json index dc632f089..4cb711143 100644 --- a/snapshots/countries/MY_SWK.json +++ b/snapshots/countries/MY_SWK.json @@ -1,6 +1,6 @@ { "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated); New Year's Day", - "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]; New Year's Day [In lieu]", + "1950-01-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu); New Year's Day (in lieu)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", "1950-04-07": "Good Friday", @@ -10,7 +10,7 @@ "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", - "1950-07-18": "Hari Raya Puasa (estimated) [In lieu]", + "1950-07-18": "Hari Raya Puasa (estimated) (in lieu)", "1950-08-31": "National Day", "1950-09-23": "Hari Raya Haji (estimated)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", @@ -23,7 +23,7 @@ "1951-03-23": "Good Friday", "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", - "1951-05-21": "Vesak Day (estimated) [In lieu]", + "1951-05-21": "Vesak Day (estimated) (in lieu)", "1951-06-01": "Gawai Dayak", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", "1951-07-06": "Hari Raya Puasa (estimated)", @@ -37,27 +37,27 @@ "1952-01-01": "New Year's Day", "1952-01-27": "Chinese New Year (estimated)", "1952-01-28": "Chinese New Year Holiday (estimated)", - "1952-01-29": "Chinese New Year (estimated) [In lieu]", + "1952-01-29": "Chinese New Year (estimated) (in lieu)", "1952-04-11": "Good Friday", "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-01": "Gawai Dayak", "1952-06-02": "Gawai Dayak (Second day)", - "1952-06-03": "Gawai Dayak [In lieu]", + "1952-06-03": "Gawai Dayak (in lieu)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", - "1952-09-01": "Hari Raya Haji (estimated) [In lieu]; National Day [In lieu]", + "1952-09-01": "Hari Raya Haji (estimated) (in lieu); National Day (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-10-11": "Birthday of the Governor of Sarawak", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1952-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "1953-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "1953-04-03": "Good Friday", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", @@ -66,7 +66,7 @@ "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-31": "National Day", "1953-09-10": "Awal Muharram (Hijri New Year) (estimated)", @@ -94,7 +94,7 @@ "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-04-08": "Good Friday", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day [In lieu]", + "1955-05-02": "Labour Day (in lieu)", "1955-05-06": "Vesak Day (estimated)", "1955-05-23": "Hari Raya Puasa (estimated)", "1955-05-24": "Second day of Hari Raya Puasa (estimated)", @@ -107,12 +107,12 @@ "1955-10-08": "Birthday of the Governor of Sarawak", "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day [In lieu]", + "1955-12-26": "Christmas Day (in lieu)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day [In lieu]", + "1956-01-02": "New Year's Day (in lieu)", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", - "1956-02-14": "Chinese New Year (estimated) [In lieu]", + "1956-02-14": "Chinese New Year (estimated) (in lieu)", "1956-03-30": "Good Friday", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", @@ -135,12 +135,12 @@ "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1957-06-02": "Gawai Dayak (Second day)", - "1957-06-03": "Gawai Dayak (Second day) [In lieu]", + "1957-06-03": "Gawai Dayak (Second day) (in lieu)", "1957-07-08": "Hari Raya Haji (estimated)", "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1957-10-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1957-10-12": "Birthday of the Governor of Sarawak", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", @@ -149,24 +149,24 @@ "1958-04-04": "Good Friday", "1958-04-20": "Hari Raya Puasa (estimated)", "1958-04-21": "Second day of Hari Raya Puasa (estimated)", - "1958-04-22": "Hari Raya Puasa (estimated) [In lieu]", + "1958-04-22": "Hari Raya Puasa (estimated) (in lieu)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", "1958-06-01": "Gawai Dayak", "1958-06-02": "Gawai Dayak (Second day)", - "1958-06-03": "Gawai Dayak [In lieu]", + "1958-06-03": "Gawai Dayak (in lieu)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1958-06-27": "Hari Raya Haji (estimated)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", - "1958-09-01": "National Day [In lieu]", + "1958-09-01": "National Day (in lieu)", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1958-10-11": "Birthday of the Governor of Sarawak", "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-02-08": "Chinese New Year (estimated)", "1959-02-09": "Chinese New Year Holiday (estimated)", - "1959-02-10": "Chinese New Year (estimated) [In lieu]", + "1959-02-10": "Chinese New Year (estimated) (in lieu)", "1959-03-27": "Good Friday", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -188,7 +188,7 @@ "1960-03-29": "Second day of Hari Raya Puasa (estimated)", "1960-04-15": "Good Friday", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day [In lieu]", + "1960-05-02": "Labour Day (in lieu)", "1960-05-10": "Vesak Day (estimated)", "1960-06-01": "Gawai Dayak", "1960-06-02": "Gawai Dayak (Second day)", @@ -198,14 +198,14 @@ "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1960-10-08": "Birthday of the Governor of Sarawak", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day [In lieu]", + "1960-12-26": "Christmas Day (in lieu)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day [In lieu]", + "1961-01-02": "New Year's Day (in lieu)", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1961-03-31": "Good Friday", "1961-05-01": "Labour Day", "1961-05-25": "Hari Raya Haji (estimated)", @@ -231,7 +231,7 @@ "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", "1962-06-03": "Awal Muharram (Hijri New Year) (estimated)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1962-08-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1962-08-31": "National Day", "1962-10-13": "Birthday of the Governor of Sarawak", "1962-12-25": "Christmas Day", @@ -240,7 +240,7 @@ "1963-01-26": "Chinese New Year Holiday (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", - "1963-02-26": "Hari Raya Puasa (estimated) [In lieu]", + "1963-02-26": "Hari Raya Puasa (estimated) (in lieu)", "1963-04-12": "Good Friday", "1963-05-01": "Labour Day", "1963-05-03": "Hari Raya Haji (estimated)", @@ -248,7 +248,7 @@ "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1963-06-02": "Gawai Dayak (Second day)", - "1963-06-03": "Gawai Dayak (Second day) [In lieu]", + "1963-06-03": "Gawai Dayak (Second day) (in lieu)", "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", "1963-10-12": "Birthday of the Governor of Sarawak", @@ -273,7 +273,7 @@ "1965-02-02": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", "1965-02-03": "Chinese New Year Holiday (estimated); Second day of Hari Raya Puasa (estimated)", "1965-04-11": "Hari Raya Haji (estimated)", - "1965-04-12": "Hari Raya Haji (estimated) [In lieu]", + "1965-04-12": "Hari Raya Haji (estimated) (in lieu)", "1965-04-16": "Good Friday", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", "1965-05-15": "Vesak Day (estimated)", @@ -288,12 +288,12 @@ "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-08": "Good Friday", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day [In lieu]", + "1966-05-02": "Labour Day (in lieu)", "1966-05-05": "Vesak Day (estimated)", "1966-06-01": "Gawai Dayak", "1966-06-02": "Gawai Dayak (Second day)", @@ -302,9 +302,9 @@ "1966-08-31": "National Day", "1966-10-08": "Birthday of the Governor of Sarawak", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day [In lieu]", + "1966-12-26": "Christmas Day (in lieu)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day [In lieu]", + "1967-01-02": "New Year's Day (in lieu)", "1967-01-12": "Hari Raya Puasa (estimated)", "1967-01-13": "Second day of Hari Raya Puasa (estimated)", "1967-02-09": "Chinese New Year (estimated)", @@ -332,13 +332,13 @@ "1968-05-11": "Vesak Day (estimated)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1968-06-02": "Gawai Dayak (Second day)", - "1968-06-03": "Gawai Dayak (Second day) [In lieu]", + "1968-06-03": "Gawai Dayak (Second day) (in lieu)", "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1968-08-31": "National Day", "1968-10-12": "Birthday of the Governor of Sarawak", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-17": "Chinese New Year (estimated)", @@ -350,10 +350,10 @@ "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-01": "Gawai Dayak", "1969-06-02": "Gawai Dayak (Second day)", - "1969-06-03": "Gawai Dayak [In lieu]", + "1969-06-03": "Gawai Dayak (in lieu)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1969-08-31": "National Day", - "1969-09-01": "National Day [In lieu]", + "1969-09-01": "National Day (in lieu)", "1969-10-11": "Birthday of the Governor of Sarawak", "1969-12-10": "Hari Raya Puasa (estimated)", "1969-12-11": "Second day of Hari Raya Puasa (estimated)", @@ -384,7 +384,7 @@ "1971-05-01": "Labour Day", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", - "1971-05-10": "Vesak Day (estimated) [In lieu]", + "1971-05-10": "Vesak Day (estimated) (in lieu)", "1971-06-01": "Gawai Dayak", "1971-06-02": "Gawai Dayak (Second day)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -411,12 +411,12 @@ "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-01-14": "Hari Raya Haji (estimated)", - "1973-01-15": "Hari Raya Haji (estimated) [In lieu]", + "1973-01-15": "Hari Raya Haji (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year Holiday (estimated) [In lieu]", + "1973-02-05": "Chinese New Year Holiday (estimated) (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1973-04-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1973-04-20": "Good Friday", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", @@ -426,7 +426,7 @@ "1973-10-13": "Birthday of the Governor of Sarawak", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-01-03": "Hari Raya Haji (estimated)", @@ -438,7 +438,7 @@ "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1974-06-02": "Gawai Dayak (Second day)", - "1974-06-03": "Gawai Dayak (Second day) [In lieu]", + "1974-06-03": "Gawai Dayak (Second day) (in lieu)", "1974-08-31": "National Day", "1974-10-12": "Birthday of the Governor of Sarawak", "1974-10-16": "Hari Raya Puasa (estimated)", @@ -453,13 +453,13 @@ "1975-03-28": "Good Friday", "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", - "1975-05-26": "Vesak Day (estimated) [In lieu]", + "1975-05-26": "Vesak Day (estimated) (in lieu)", "1975-06-01": "Gawai Dayak", "1975-06-02": "Gawai Dayak (Second day)", - "1975-06-03": "Gawai Dayak [In lieu]", + "1975-06-03": "Gawai Dayak (in lieu)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1975-08-31": "National Day", - "1975-09-01": "National Day [In lieu]", + "1975-09-01": "National Day (in lieu)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-10-11": "Birthday of the Governor of Sarawak", @@ -469,7 +469,7 @@ "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year Holiday (estimated) [In lieu]", + "1976-02-02": "Chinese New Year Holiday (estimated) (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-04-16": "Good Friday", "1976-05-01": "Labour Day", @@ -491,7 +491,7 @@ "1977-04-08": "Good Friday", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", - "1977-05-03": "Labour Day [In lieu]", + "1977-05-03": "Labour Day (in lieu)", "1977-06-01": "Gawai Dayak", "1977-06-02": "Gawai Dayak (Second day)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -502,24 +502,24 @@ "1977-11-21": "Hari Raya Haji (estimated)", "1977-12-11": "Awal Muharram (Hijri New Year) (estimated)", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day [In lieu]", + "1977-12-26": "Christmas Day (in lieu)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day [In lieu]", + "1978-01-02": "New Year's Day (in lieu)", "1978-02-07": "Chinese New Year (estimated)", "1978-02-08": "Chinese New Year Holiday (estimated)", "1978-02-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1978-02-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1978-03-24": "Good Friday", "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", - "1978-05-22": "Vesak Day (estimated) [In lieu]", + "1978-05-22": "Vesak Day (estimated) (in lieu)", "1978-06-01": "Gawai Dayak", "1978-06-02": "Gawai Dayak (Second day)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", "1978-09-04": "Second day of Hari Raya Puasa (estimated)", - "1978-09-05": "Hari Raya Puasa (estimated) [In lieu]", + "1978-09-05": "Hari Raya Puasa (estimated) (in lieu)", "1978-10-14": "Birthday of the Governor of Sarawak", "1978-11-10": "Hari Raya Haji (estimated)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", @@ -527,7 +527,7 @@ "1979-01-01": "New Year's Day", "1979-01-28": "Chinese New Year (estimated)", "1979-01-29": "Chinese New Year Holiday (estimated)", - "1979-01-30": "Chinese New Year (estimated) [In lieu]", + "1979-01-30": "Chinese New Year (estimated) (in lieu)", "1979-02-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1979-04-13": "Good Friday", "1979-05-01": "Labour Day", @@ -545,26 +545,26 @@ "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year Holiday (estimated) [In lieu]", + "1980-02-18": "Chinese New Year Holiday (estimated) (in lieu)", "1980-04-04": "Good Friday", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-01": "Gawai Dayak", "1980-06-02": "Gawai Dayak (Second day)", - "1980-06-03": "Gawai Dayak [In lieu]", + "1980-06-03": "Gawai Dayak (in lieu)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", "1980-08-31": "National Day", - "1980-09-01": "National Day [In lieu]", + "1980-09-01": "National Day (in lieu)", "1980-10-11": "Birthday of the Governor of Sarawak", "1980-10-19": "Hari Raya Haji (estimated)", - "1980-10-20": "Hari Raya Haji (estimated) [In lieu]", + "1980-10-20": "Hari Raya Haji (estimated) (in lieu)", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-01-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1981-01-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1981-02-05": "Chinese New Year (estimated)", "1981-02-06": "Chinese New Year Holiday (estimated)", "1981-04-17": "Good Friday", @@ -575,7 +575,7 @@ "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-08": "Hari Raya Haji (estimated)", "1981-10-10": "Birthday of the Governor of Sarawak", @@ -602,10 +602,10 @@ "1983-01-01": "New Year's Day", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", - "1983-02-15": "Chinese New Year (estimated) [In lieu]", + "1983-02-15": "Chinese New Year (estimated) (in lieu)", "1983-04-01": "Good Friday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day [In lieu]", + "1983-05-02": "Labour Day (in lieu)", "1983-05-27": "Vesak Day (estimated)", "1983-06-01": "Gawai Dayak", "1983-06-02": "Gawai Dayak (Second day)", @@ -618,9 +618,9 @@ "1983-10-08": "Birthday of the Governor of Sarawak", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day [In lieu]", + "1983-12-26": "Christmas Day (in lieu)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day [In lieu]", + "1984-01-02": "New Year's Day (in lieu)", "1984-02-02": "Chinese New Year (estimated)", "1984-02-03": "Chinese New Year Holiday (estimated)", "1984-04-20": "Good Friday", @@ -630,7 +630,7 @@ "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-05": "Hari Raya Haji (estimated)", "1984-09-26": "Awal Muharram (Hijri New Year) (estimated)", @@ -645,7 +645,7 @@ "1985-05-04": "Vesak Day (estimated)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1985-06-02": "Gawai Dayak (Second day)", - "1985-06-03": "Gawai Dayak (Second day) [In lieu]", + "1985-06-03": "Gawai Dayak (Second day) (in lieu)", "1985-06-19": "Hari Raya Puasa (estimated)", "1985-06-20": "Second day of Hari Raya Puasa (estimated)", "1985-08-26": "Hari Raya Haji (estimated)", @@ -653,25 +653,25 @@ "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-10-12": "Birthday of the Governor of Sarawak", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1985-11-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Chinese New Year (estimated)", "1986-02-10": "Chinese New Year Holiday (estimated)", - "1986-02-11": "Chinese New Year (estimated) [In lieu]", + "1986-02-11": "Chinese New Year (estimated) (in lieu)", "1986-03-28": "Good Friday", "1986-05-01": "Labour Day", "1986-05-23": "Vesak Day (estimated)", "1986-06-01": "Gawai Dayak", "1986-06-02": "Gawai Dayak (Second day)", - "1986-06-03": "Gawai Dayak [In lieu]", + "1986-06-03": "Gawai Dayak (in lieu)", "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Hari Raya Puasa (estimated) [In lieu]", + "1986-06-10": "Hari Raya Puasa (estimated) (in lieu)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-31": "National Day", - "1986-09-01": "National Day [In lieu]", + "1986-09-01": "National Day (in lieu)", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-11": "Birthday of the Governor of Sarawak", "1986-11-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -698,7 +698,7 @@ "1988-02-18": "Chinese New Year Holiday (estimated)", "1988-04-01": "Good Friday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day [In lieu]", + "1988-05-02": "Labour Day (in lieu)", "1988-05-16": "Hari Raya Puasa (estimated)", "1988-05-17": "Second day of Hari Raya Puasa (estimated)", "1988-05-30": "Vesak Day (estimated)", @@ -711,16 +711,16 @@ "1988-10-08": "Birthday of the Governor of Sarawak", "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day [In lieu]", + "1988-12-26": "Christmas Day (in lieu)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day [In lieu]", + "1989-01-02": "New Year's Day (in lieu)", "1989-02-06": "Chinese New Year (estimated)", "1989-02-07": "Chinese New Year Holiday (estimated)", "1989-03-24": "Good Friday", "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-01": "Gawai Dayak", "1989-06-02": "Gawai Dayak (Second day)", @@ -734,7 +734,7 @@ "1990-01-01": "New Year's Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year Holiday (estimated) [In lieu]", + "1990-01-29": "Chinese New Year Holiday (estimated) (in lieu)", "1990-04-13": "Good Friday", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", @@ -758,7 +758,7 @@ "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1991-06-02": "Gawai Dayak (Second day)", - "1991-06-03": "Gawai Dayak (Second day) [In lieu]", + "1991-06-03": "Gawai Dayak (Second day) (in lieu)", "1991-06-22": "Hari Raya Haji (estimated)", "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", @@ -770,11 +770,11 @@ "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1992-04-17": "Good Friday", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", - "1992-05-18": "Vesak Day (estimated) [In lieu]", + "1992-05-18": "Vesak Day (estimated) (in lieu)", "1992-06-01": "Gawai Dayak", "1992-06-02": "Gawai Dayak (Second day)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -787,7 +787,7 @@ "1993-01-01": "New Year's Day", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year Holiday (estimated) [In lieu]", + "1993-01-25": "Chinese New Year Holiday (estimated) (in lieu)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-04-09": "Good Friday", @@ -799,7 +799,7 @@ "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1993-08-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1993-08-31": "National Day", "1993-10-09": "Birthday of the Governor of Sarawak", "1993-12-25": "Christmas Day", @@ -808,10 +808,10 @@ "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-03-13": "Hari Raya Puasa (estimated)", "1994-03-14": "Second day of Hari Raya Puasa (estimated)", - "1994-03-15": "Hari Raya Puasa (estimated) [In lieu]", + "1994-03-15": "Hari Raya Puasa (estimated) (in lieu)", "1994-04-01": "Good Friday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day [In lieu]", + "1994-05-02": "Labour Day (in lieu)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-25": "Vesak Day (estimated)", "1994-06-01": "Gawai Dayak", @@ -822,9 +822,9 @@ "1994-08-31": "National Day", "1994-10-08": "Birthday of the Governor of Sarawak", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day [In lieu]", + "1994-12-26": "Christmas Day (in lieu)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day [In lieu]", + "1995-01-02": "New Year's Day (in lieu)", "1995-01-31": "Chinese New Year (estimated)", "1995-02-01": "Chinese New Year Holiday (estimated)", "1995-03-02": "Hari Raya Puasa (estimated)", @@ -833,7 +833,7 @@ "1995-05-01": "Labour Day", "1995-05-09": "Hari Raya Haji (estimated)", "1995-05-14": "Vesak Day (estimated)", - "1995-05-15": "Vesak Day (estimated) [In lieu]", + "1995-05-15": "Vesak Day (estimated) (in lieu)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-01": "Gawai Dayak", "1995-06-02": "Gawai Dayak (Second day)", @@ -852,7 +852,7 @@ "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "1996-06-02": "Gawai Dayak (Second day)", - "1996-06-03": "Gawai Dayak (Second day) [In lieu]", + "1996-06-03": "Gawai Dayak (Second day) (in lieu)", "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1996-08-31": "National Day", "1996-10-12": "Birthday of the Governor of Sarawak", @@ -861,7 +861,7 @@ "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1997-03-28": "Good Friday", "1997-04-17": "Hari Raya Haji (estimated)", "1997-05-01": "Labour Day", @@ -869,11 +869,11 @@ "1997-05-21": "Vesak Day (estimated)", "1997-06-01": "Gawai Dayak", "1997-06-02": "Gawai Dayak (Second day)", - "1997-06-03": "Gawai Dayak [In lieu]", + "1997-06-03": "Gawai Dayak (in lieu)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", - "1997-09-01": "National Day [In lieu]", + "1997-09-01": "National Day (in lieu)", "1997-10-11": "Birthday of the Governor of Sarawak", "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", @@ -885,7 +885,7 @@ "1998-04-27": "Awal Muharram (Hijri New Year) (estimated)", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) [In lieu]", + "1998-05-11": "Vesak Day (estimated) (in lieu)", "1998-06-01": "Gawai Dayak", "1998-06-02": "Gawai Dayak (Second day)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -914,10 +914,10 @@ "2000-01-01": "New Year's Day", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year Holiday (estimated) [In lieu]", + "2000-02-07": "Chinese New Year Holiday (estimated) (in lieu)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-06": "Awal Muharram (Hijri New Year) (estimated)", "2000-04-21": "Good Friday", @@ -959,7 +959,7 @@ "2002-05-27": "Vesak Day", "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "2002-06-02": "Gawai Dayak (Second day)", - "2002-06-03": "Gawai Dayak (Second day) [In lieu]", + "2002-06-03": "Gawai Dayak (Second day) (in lieu)", "2002-08-31": "National Day", "2002-10-12": "Birthday of the Governor of Sarawak", "2002-12-06": "Hari Raya Puasa", @@ -968,7 +968,7 @@ "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year Holiday [In lieu]", + "2003-02-03": "Chinese New Year Holiday (in lieu)", "2003-02-12": "Hari Raya Haji", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-04-18": "Good Friday", @@ -977,10 +977,10 @@ "2003-05-15": "Vesak Day", "2003-06-01": "Gawai Dayak", "2003-06-02": "Gawai Dayak (Second day)", - "2003-06-03": "Gawai Dayak [In lieu]", + "2003-06-03": "Gawai Dayak (in lieu)", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2003-08-31": "National Day", - "2003-09-01": "National Day [In lieu]", + "2003-09-01": "National Day (in lieu)", "2003-10-11": "Birthday of the Governor of Sarawak", "2003-11-26": "Hari Raya Puasa", "2003-11-27": "Second day of Hari Raya Puasa", @@ -994,7 +994,7 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2004-05-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2004-06-01": "Gawai Dayak", "2004-06-02": "Gawai Dayak (Second day)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1002,7 +1002,7 @@ "2004-10-09": "Birthday of the Governor of Sarawak", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", - "2004-11-16": "Hari Raya Puasa [In lieu]", + "2004-11-16": "Hari Raya Puasa (in lieu)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -1011,9 +1011,9 @@ "2005-03-25": "Good Friday", "2005-04-21": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day [In lieu]", + "2005-05-02": "Labour Day (in lieu)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day [In lieu]", + "2005-05-23": "Vesak Day (in lieu)", "2005-06-01": "Gawai Dayak", "2005-06-02": "Gawai Dayak (Second day)", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", @@ -1022,13 +1022,13 @@ "2005-11-03": "Hari Raya Puasa", "2005-11-04": "Second day of Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day [In lieu]", + "2005-12-26": "Christmas Day (in lieu)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day [In lieu]", + "2006-01-02": "New Year's Day (in lieu)", "2006-01-10": "Hari Raya Haji", "2006-01-29": "Chinese New Year", "2006-01-30": "Chinese New Year Holiday", - "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year [In lieu]", + "2006-01-31": "Awal Muharram (Hijri New Year); Chinese New Year (in lieu)", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-04-14": "Good Friday", "2006-05-01": "Labour Day", @@ -1043,11 +1043,11 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji [In lieu]", + "2007-01-02": "Hari Raya Haji (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", - "2007-02-20": "Chinese New Year [In lieu]", + "2007-02-20": "Chinese New Year (in lieu)", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2007-04-06": "Good Friday", "2007-05-01": "Labour Day; Vesak Day", @@ -1056,7 +1056,7 @@ "2007-08-31": "National Day", "2007-10-13": "Birthday of the Governor of Sarawak; Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Second day of Hari Raya Puasa [In lieu]", + "2007-10-15": "Second day of Hari Raya Puasa (in lieu)", "2007-12-20": "Hari Raya Haji", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -1069,10 +1069,10 @@ "2008-05-19": "Vesak Day", "2008-06-01": "Gawai Dayak", "2008-06-02": "Gawai Dayak (Second day)", - "2008-06-03": "Gawai Dayak [In lieu]", + "2008-06-03": "Gawai Dayak (in lieu)", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2008-08-31": "National Day", - "2008-09-01": "National Day [In lieu]", + "2008-09-01": "National Day (in lieu)", "2008-10-01": "Hari Raya Puasa", "2008-10-02": "Second day of Hari Raya Puasa", "2008-10-11": "Birthday of the Governor of Sarawak", @@ -1092,7 +1092,7 @@ "2009-08-31": "National Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", - "2009-09-22": "Hari Raya Puasa [In lieu]", + "2009-09-22": "Hari Raya Puasa (in lieu)", "2009-10-10": "Birthday of the Governor of Sarawak", "2009-11-28": "Hari Raya Haji", "2009-12-18": "Awal Muharram (Hijri New Year)", @@ -1100,7 +1100,7 @@ "2010-01-01": "New Year's Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year Holiday", - "2010-02-16": "Chinese New Year [In lieu]", + "2010-02-16": "Chinese New Year (in lieu)", "2010-02-26": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2010-04-02": "Good Friday", "2010-05-01": "Labour Day", @@ -1122,7 +1122,7 @@ "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2011-04-22": "Good Friday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day [In lieu]", + "2011-05-02": "Labour Day (in lieu)", "2011-05-17": "Vesak Day", "2011-06-01": "Gawai Dayak", "2011-06-02": "Gawai Dayak (Second day)", @@ -1134,13 +1134,13 @@ "2011-11-07": "Hari Raya Haji", "2011-11-27": "Awal Muharram (Hijri New Year)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day [In lieu]", + "2011-12-26": "Christmas Day (in lieu)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day [In lieu]", + "2012-01-02": "New Year's Day (in lieu)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year Holiday", "2012-02-05": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2012-02-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2012-04-06": "Good Friday", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", @@ -1148,10 +1148,10 @@ "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", - "2012-08-21": "Hari Raya Puasa [In lieu]", + "2012-08-21": "Hari Raya Puasa (in lieu)", "2012-08-31": "National Day", "2012-09-16": "Malaysia Day", - "2012-09-17": "Malaysia Day [In lieu]", + "2012-09-17": "Malaysia Day (in lieu)", "2012-10-13": "Birthday of the Governor of Sarawak", "2012-10-26": "Hari Raya Haji", "2012-11-15": "Awal Muharram (Hijri New Year)", @@ -1160,13 +1160,13 @@ "2013-01-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year Holiday", - "2013-02-12": "Chinese New Year [In lieu]", + "2013-02-12": "Chinese New Year (in lieu)", "2013-03-29": "Good Friday", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak", "2013-06-02": "Gawai Dayak (Second day)", - "2013-06-03": "Gawai Dayak (Second day) [In lieu]", + "2013-06-03": "Gawai Dayak (Second day) (in lieu)", "2013-08-08": "Hari Raya Puasa", "2013-08-09": "Second day of Hari Raya Puasa", "2013-08-31": "National Day", @@ -1184,15 +1184,15 @@ "2014-05-13": "Vesak Day", "2014-06-01": "Gawai Dayak", "2014-06-02": "Gawai Dayak (Second day)", - "2014-06-03": "Gawai Dayak [In lieu]", + "2014-06-03": "Gawai Dayak (in lieu)", "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", "2014-08-31": "National Day", - "2014-09-01": "National Day [In lieu]", + "2014-09-01": "National Day (in lieu)", "2014-09-16": "Malaysia Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji [In lieu]", + "2014-10-06": "Hari Raya Haji (in lieu)", "2014-10-11": "Birthday of the Governor of Sarawak", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", @@ -1203,7 +1203,7 @@ "2015-04-03": "Good Friday", "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", - "2015-05-04": "Vesak Day [In lieu]", + "2015-05-04": "Vesak Day (in lieu)", "2015-06-01": "Gawai Dayak", "2015-06-02": "Gawai Dayak (Second day)", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", @@ -1221,7 +1221,7 @@ "2016-02-09": "Chinese New Year Holiday", "2016-03-25": "Good Friday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day [In lieu]", + "2016-05-02": "Labour Day (in lieu)", "2016-05-21": "Vesak Day", "2016-06-01": "Gawai Dayak", "2016-06-02": "Gawai Dayak (Second day)", @@ -1235,12 +1235,12 @@ "2016-10-08": "Birthday of the Governor of Sarawak", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day [In lieu]", + "2016-12-26": "Christmas Day (in lieu)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day [In lieu]", + "2017-01-02": "New Year's Day (in lieu)", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year Holiday [In lieu]", + "2017-01-30": "Chinese New Year Holiday (in lieu)", "2017-04-14": "Good Friday", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", @@ -1249,7 +1249,7 @@ "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", - "2017-06-27": "Hari Raya Puasa [In lieu]", + "2017-06-27": "Hari Raya Puasa (in lieu)", "2017-07-22": "Sarawak Day", "2017-08-31": "National Day", "2017-09-01": "Hari Raya Haji", @@ -1270,14 +1270,14 @@ "2018-06-15": "Hari Raya Puasa", "2018-06-16": "Second day of Hari Raya Puasa", "2018-07-22": "Sarawak Day", - "2018-07-23": "Sarawak Day [In lieu]", + "2018-07-23": "Sarawak Day (in lieu)", "2018-08-22": "Hari Raya Haji", "2018-08-31": "National Day", "2018-09-09": "Birthday of SPB Yang di-Pertuan Agong", - "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2018-09-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2018-09-11": "Awal Muharram (Hijri New Year)", "2018-09-16": "Malaysia Day", - "2018-09-17": "Malaysia Day [In lieu]", + "2018-09-17": "Malaysia Day (in lieu)", "2018-10-13": "Birthday of the Governor of Sarawak", "2018-11-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2018-12-25": "Christmas Day", @@ -1287,17 +1287,17 @@ "2019-04-19": "Good Friday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day [In lieu]", + "2019-05-20": "Vesak Day (in lieu)", "2019-06-01": "Gawai Dayak", "2019-06-02": "Gawai Dayak (Second day)", "2019-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2019-06-04": "Gawai Dayak (Second day) [In lieu]", + "2019-06-04": "Gawai Dayak (Second day) (in lieu)", "2019-06-05": "Hari Raya Puasa", "2019-06-06": "Second day of Hari Raya Puasa", "2019-07-22": "Sarawak Day", "2019-07-30": "Installation of New King", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji [In lieu]", + "2019-08-12": "Hari Raya Haji (in lieu)", "2019-08-31": "National Day", "2019-09-01": "Awal Muharram (Hijri New Year)", "2019-09-16": "Malaysia Day", @@ -1307,13 +1307,13 @@ "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year Holiday [In lieu]", + "2020-01-27": "Chinese New Year Holiday (in lieu)", "2020-04-10": "Good Friday", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-24": "Hari Raya Puasa", "2020-05-25": "Second day of Hari Raya Puasa", - "2020-05-26": "Hari Raya Puasa [In lieu]", + "2020-05-26": "Hari Raya Puasa (in lieu)", "2020-06-01": "Gawai Dayak", "2020-06-02": "Gawai Dayak (Second day)", "2020-06-08": "Birthday of SPB Yang di-Pertuan Agong", @@ -1351,14 +1351,14 @@ "2022-05-01": "Labour Day", "2022-05-02": "Hari Raya Puasa", "2022-05-03": "Second day of Hari Raya Puasa", - "2022-05-04": "Labour Day [In lieu]", + "2022-05-04": "Labour Day (in lieu)", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day [In lieu]", + "2022-05-16": "Vesak Day (in lieu)", "2022-06-01": "Gawai Dayak", "2022-06-02": "Gawai Dayak (Second day)", "2022-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji [In lieu]", + "2022-07-11": "Hari Raya Haji (in lieu)", "2022-07-22": "Sarawak Day", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", @@ -1366,16 +1366,16 @@ "2022-10-08": "Birthday of the Governor of Sarawak", "2022-10-10": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day [In lieu]", + "2022-12-26": "Christmas Day (in lieu)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day [In lieu]", + "2023-01-02": "New Year's Day (in lieu)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", - "2023-01-24": "Chinese New Year [In lieu]", + "2023-01-24": "Chinese New Year (in lieu)", "2023-04-07": "Good Friday", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Second day of Hari Raya Puasa [In lieu]", + "2023-04-24": "Second day of Hari Raya Puasa (in lieu)", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", "2023-06-01": "Gawai Dayak", @@ -1392,7 +1392,7 @@ "2024-01-01": "New Year's Day", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) [In lieu]", + "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", "2024-03-29": "Good Friday", "2024-04-10": "Hari Raya Puasa (estimated)", "2024-04-11": "Second day of Hari Raya Puasa (estimated)", @@ -1401,15 +1401,15 @@ "2024-06-01": "Gawai Dayak", "2024-06-02": "Gawai Dayak (Second day)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-04": "Gawai Dayak (Second day) [In lieu]", + "2024-06-04": "Gawai Dayak (Second day) (in lieu)", "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) [In lieu]", + "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-07-22": "Sarawak Day", "2024-08-31": "National Day", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2024-10-12": "Birthday of the Governor of Sarawak", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", @@ -1417,19 +1417,19 @@ "2025-01-30": "Chinese New Year Holiday (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", - "2025-04-01": "Hari Raya Puasa (estimated) [In lieu]", + "2025-04-01": "Hari Raya Puasa (estimated) (in lieu)", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) [In lieu]", + "2025-05-12": "Vesak Day (estimated) (in lieu)", "2025-06-01": "Gawai Dayak", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2025-06-03": "Gawai Dayak [In lieu]", + "2025-06-03": "Gawai Dayak (in lieu)", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-07-22": "Sarawak Day", "2025-08-31": "National Day", - "2025-09-01": "National Day [In lieu]", + "2025-09-01": "National Day (in lieu)", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2025-09-16": "Malaysia Day", "2025-10-11": "Birthday of the Governor of Sarawak", @@ -1454,13 +1454,13 @@ "2027-01-01": "New Year's Day", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "2027-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-03-26": "Good Friday", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) [In lieu]", + "2027-05-17": "Hari Raya Haji (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-01": "Gawai Dayak", "2027-06-02": "Gawai Dayak (Second day)", @@ -1477,7 +1477,7 @@ "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2028-04-14": "Good Friday", "2028-05-01": "Labour Day", "2028-05-05": "Hari Raya Haji (estimated)", @@ -1501,23 +1501,23 @@ "2029-05-01": "Labour Day", "2029-05-14": "Awal Muharram (Hijri New Year) (estimated)", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) [In lieu]", + "2029-05-28": "Vesak Day (estimated) (in lieu)", "2029-06-01": "Gawai Dayak", "2029-06-02": "Gawai Dayak (Second day)", "2029-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2029-07-22": "Sarawak Day", - "2029-07-23": "Sarawak Day [In lieu]", + "2029-07-23": "Sarawak Day (in lieu)", "2029-07-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2029-08-31": "National Day", "2029-09-16": "Malaysia Day", - "2029-09-17": "Malaysia Day [In lieu]", + "2029-09-17": "Malaysia Day (in lieu)", "2029-10-13": "Birthday of the Governor of Sarawak", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2030-02-05": "Second day of Hari Raya Puasa (estimated)", - "2030-02-06": "Chinese New Year (estimated) [In lieu]", + "2030-02-06": "Chinese New Year (estimated) (in lieu)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-19": "Good Friday", "2030-05-01": "Labour Day", @@ -1526,7 +1526,7 @@ "2030-06-01": "Gawai Dayak", "2030-06-02": "Gawai Dayak (Second day)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2030-06-04": "Gawai Dayak (Second day) [In lieu]", + "2030-06-04": "Gawai Dayak (Second day) (in lieu)", "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2030-07-22": "Sarawak Day", "2030-08-31": "National Day", @@ -1544,11 +1544,11 @@ "2031-05-06": "Vesak Day (estimated)", "2031-06-01": "Gawai Dayak", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2031-06-03": "Gawai Dayak [In lieu]", + "2031-06-03": "Gawai Dayak (in lieu)", "2031-07-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2031-07-22": "Sarawak Day", "2031-08-31": "National Day", - "2031-09-01": "National Day [In lieu]", + "2031-09-01": "National Day (in lieu)", "2031-09-16": "Malaysia Day", "2031-10-11": "Birthday of the Governor of Sarawak", "2031-12-25": "Christmas Day", @@ -1562,12 +1562,12 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) [In lieu]", + "2032-05-24": "Vesak Day (estimated) (in lieu)", "2032-06-01": "Gawai Dayak", "2032-06-02": "Gawai Dayak (Second day)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2032-06-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2032-07-22": "Sarawak Day", "2032-08-31": "National Day", "2032-09-16": "Malaysia Day", @@ -1576,14 +1576,14 @@ "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", - "2033-01-04": "Hari Raya Puasa (estimated) [In lieu]", + "2033-01-04": "Hari Raya Puasa (estimated) (in lieu)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year Holiday (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day [In lieu]", + "2033-05-02": "Labour Day (in lieu)", "2033-05-13": "Vesak Day (estimated)", "2033-06-01": "Gawai Dayak", "2033-06-02": "Gawai Dayak (Second day)", @@ -1596,12 +1596,12 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day [In lieu]", + "2033-12-26": "Christmas Day (in lieu)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day [In lieu]", + "2034-01-02": "New Year's Day (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", - "2034-02-21": "Chinese New Year (estimated) [In lieu]", + "2034-02-21": "Chinese New Year (estimated) (in lieu)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-04-07": "Good Friday", @@ -1622,25 +1622,25 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year Holiday (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) [In lieu]", + "2035-02-19": "Hari Raya Haji (estimated) (in lieu)", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-03-23": "Good Friday", "2035-05-01": "Labour Day", "2035-05-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2035-05-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2035-05-22": "Vesak Day (estimated)", "2035-06-01": "Gawai Dayak", "2035-06-02": "Gawai Dayak (Second day)", "2035-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2035-07-22": "Sarawak Day", - "2035-07-23": "Sarawak Day [In lieu]", + "2035-07-23": "Sarawak Day (in lieu)", "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", - "2035-09-17": "Malaysia Day [In lieu]", + "2035-09-17": "Malaysia Day (in lieu)", "2035-10-13": "Birthday of the Governor of Sarawak", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-28": "Chinese New Year (estimated)", @@ -1653,10 +1653,10 @@ "2036-05-10": "Vesak Day (estimated)", "2036-06-01": "Gawai Dayak", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2036-06-03": "Gawai Dayak [In lieu]", + "2036-06-03": "Gawai Dayak (in lieu)", "2036-07-22": "Sarawak Day", "2036-08-31": "National Day", - "2036-09-01": "National Day [In lieu]", + "2036-09-01": "National Day (in lieu)", "2036-09-16": "Malaysia Day", "2036-10-11": "Birthday of the Governor of Sarawak", "2036-11-19": "Hari Raya Puasa (estimated)", @@ -1666,7 +1666,7 @@ "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "2037-02-17": "Chinese New Year (estimated) [In lieu]", + "2037-02-17": "Chinese New Year (estimated) (in lieu)", "2037-04-03": "Good Friday", "2037-04-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2037-05-01": "Labour Day", @@ -1679,7 +1679,7 @@ "2037-10-10": "Birthday of the Governor of Sarawak", "2037-11-08": "Hari Raya Puasa (estimated)", "2037-11-09": "Second day of Hari Raya Puasa (estimated)", - "2037-11-10": "Hari Raya Puasa (estimated) [In lieu]", + "2037-11-10": "Hari Raya Puasa (estimated) (in lieu)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Hari Raya Haji (estimated)", @@ -1707,7 +1707,7 @@ "2039-04-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day [In lieu]", + "2039-05-02": "Labour Day (in lieu)", "2039-05-07": "Vesak Day (estimated)", "2039-06-01": "Gawai Dayak", "2039-06-02": "Gawai Dayak (Second day)", @@ -1720,15 +1720,15 @@ "2039-10-20": "Second day of Hari Raya Puasa (estimated)", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day [In lieu]", + "2039-12-27": "Christmas Day (in lieu)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day [In lieu]", + "2040-01-02": "New Year's Day (in lieu)", "2040-01-15": "Awal Muharram (Hijri New Year) (estimated)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year Holiday (estimated)", - "2040-02-14": "Chinese New Year (estimated) [In lieu]", + "2040-02-14": "Chinese New Year (estimated) (in lieu)", "2040-03-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2040-03-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2040-03-30": "Good Friday", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", @@ -1736,13 +1736,13 @@ "2040-06-02": "Gawai Dayak (Second day)", "2040-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2040-07-22": "Sarawak Day", - "2040-07-23": "Sarawak Day [In lieu]", + "2040-07-23": "Sarawak Day (in lieu)", "2040-08-31": "National Day", "2040-09-16": "Malaysia Day", - "2040-09-17": "Malaysia Day [In lieu]", + "2040-09-17": "Malaysia Day (in lieu)", "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", - "2040-10-09": "Hari Raya Puasa (estimated) [In lieu]", + "2040-10-09": "Hari Raya Puasa (estimated) (in lieu)", "2040-10-13": "Birthday of the Governor of Sarawak", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1757,7 +1757,7 @@ "2041-06-01": "Gawai Dayak", "2041-06-02": "Gawai Dayak (Second day)", "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2041-06-04": "Gawai Dayak (Second day) [In lieu]", + "2041-06-04": "Gawai Dayak (Second day) (in lieu)", "2041-07-22": "Sarawak Day", "2041-08-31": "National Day", "2041-09-16": "Malaysia Day", @@ -1774,25 +1774,25 @@ "2042-04-04": "Good Friday", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", - "2042-05-05": "Vesak Day (estimated) [In lieu]", + "2042-05-05": "Vesak Day (estimated) (in lieu)", "2042-06-01": "Gawai Dayak", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong; Gawai Dayak (Second day)", - "2042-06-03": "Gawai Dayak [In lieu]", + "2042-06-03": "Gawai Dayak (in lieu)", "2042-07-22": "Sarawak Day", "2042-08-31": "National Day", - "2042-09-01": "National Day [In lieu]", + "2042-09-01": "National Day (in lieu)", "2042-09-15": "Hari Raya Puasa (estimated)", "2042-09-16": "Malaysia Day; Second day of Hari Raya Puasa (estimated)", "2042-10-11": "Birthday of the Governor of Sarawak", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) [In lieu]", + "2042-11-24": "Hari Raya Haji (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Chinese New Year (estimated)", "2043-02-11": "Chinese New Year Holiday (estimated)", "2043-02-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2043-02-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2043-03-27": "Good Friday", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", @@ -1810,11 +1810,11 @@ "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year Holiday (estimated) [In lieu]", + "2044-02-01": "Chinese New Year Holiday (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day [In lieu]", + "2044-05-02": "Labour Day (in lieu)", "2044-05-12": "Vesak Day (estimated)", "2044-06-01": "Gawai Dayak", "2044-06-02": "Gawai Dayak (Second day)", @@ -1828,9 +1828,9 @@ "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-21": "Awal Muharram (Hijri New Year) (estimated)", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day [In lieu]", + "2044-12-26": "Christmas Day (in lieu)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day [In lieu]", + "2045-01-02": "New Year's Day (in lieu)", "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", @@ -1855,17 +1855,17 @@ "2046-03-23": "Good Friday", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) [In lieu]", + "2046-05-21": "Vesak Day (estimated) (in lieu)", "2046-06-01": "Gawai Dayak", "2046-06-02": "Gawai Dayak (Second day)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-22": "Sarawak Day", - "2046-07-23": "Sarawak Day [In lieu]", + "2046-07-23": "Sarawak Day (in lieu)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", - "2046-09-17": "Malaysia Day [In lieu]", + "2046-09-17": "Malaysia Day (in lieu)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-13": "Birthday of the Governor of Sarawak", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", @@ -1874,14 +1874,14 @@ "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year Holiday (estimated) [In lieu]", + "2047-01-28": "Chinese New Year Holiday (estimated) (in lieu)", "2047-04-12": "Good Friday", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", "2047-06-01": "Gawai Dayak", "2047-06-02": "Gawai Dayak (Second day)", "2047-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2047-06-04": "Gawai Dayak (Second day) [In lieu]", + "2047-06-04": "Gawai Dayak (Second day) (in lieu)", "2047-07-22": "Sarawak Day", "2047-07-24": "Hari Raya Puasa (estimated)", "2047-07-25": "Second day of Hari Raya Puasa (estimated)", @@ -1892,7 +1892,7 @@ "2047-10-20": "Awal Muharram (Hijri New Year) (estimated)", "2047-12-25": "Christmas Day", "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2047-12-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2048-01-01": "New Year's Day", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", @@ -1903,7 +1903,7 @@ "2048-06-02": "Gawai Dayak (Second day)", "2048-07-12": "Hari Raya Puasa (estimated)", "2048-07-13": "Second day of Hari Raya Puasa (estimated)", - "2048-07-14": "Hari Raya Puasa (estimated) [In lieu]", + "2048-07-14": "Hari Raya Puasa (estimated) (in lieu)", "2048-07-22": "Sarawak Day", "2048-08-31": "National Day", "2048-09-16": "Malaysia Day", @@ -1918,7 +1918,7 @@ "2049-04-16": "Good Friday", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) [In lieu]", + "2049-05-17": "Vesak Day (estimated) (in lieu)", "2049-06-01": "Gawai Dayak", "2049-06-02": "Gawai Dayak (Second day)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", @@ -1935,10 +1935,10 @@ "2050-01-01": "New Year's Day", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", - "2050-01-25": "Chinese New Year (estimated) [In lieu]", + "2050-01-25": "Chinese New Year (estimated) (in lieu)", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day [In lieu]", + "2050-05-02": "Labour Day (in lieu)", "2050-05-05": "Vesak Day (estimated)", "2050-06-01": "Gawai Dayak", "2050-06-02": "Gawai Dayak (Second day)", @@ -1947,12 +1947,12 @@ "2050-06-21": "Second day of Hari Raya Puasa (estimated)", "2050-07-22": "Sarawak Day", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) [In lieu]", + "2050-08-29": "Hari Raya Haji (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-10-08": "Birthday of the Governor of Sarawak", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day [In lieu]" + "2050-12-26": "Christmas Day (in lieu)" } diff --git a/snapshots/countries/MY_TRG.json b/snapshots/countries/MY_TRG.json index 975fb10e7..c244be84b 100644 --- a/snapshots/countries/MY_TRG.json +++ b/snapshots/countries/MY_TRG.json @@ -2,10 +2,10 @@ "1950-01-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1950-02-17": "Chinese New Year (estimated)", "1950-02-18": "Chinese New Year Holiday (estimated)", - "1950-02-19": "Chinese New Year Holiday (estimated) [In lieu]", + "1950-02-19": "Chinese New Year Holiday (estimated) (in lieu)", "1950-05-01": "Labour Day; Vesak Day (estimated)", "1950-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1950-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1950-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1950-07-03": "Nuzul Al-Quran Day (estimated)", "1950-07-16": "Hari Raya Puasa (estimated)", "1950-07-17": "Second day of Hari Raya Puasa (estimated)", @@ -13,7 +13,7 @@ "1950-09-22": "Arafat Day (estimated)", "1950-09-23": "Hari Raya Haji (estimated)", "1950-09-24": "Hari Raya Haji (estimated)", - "1950-09-25": "Hari Raya Haji (estimated) [In lieu]", + "1950-09-25": "Hari Raya Haji (estimated) (in lieu)", "1950-10-13": "Awal Muharram (Hijri New Year) (estimated)", "1950-11-08": "Deepavali", "1950-12-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -23,11 +23,11 @@ "1951-05-01": "Labour Day", "1951-05-20": "Vesak Day (estimated)", "1951-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1951-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1951-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1951-06-22": "Nuzul Al-Quran Day (estimated)", "1951-07-06": "Hari Raya Puasa (estimated)", "1951-07-07": "Second day of Hari Raya Puasa (estimated)", - "1951-07-08": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1951-07-08": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1951-08-31": "National Day", "1951-09-11": "Arafat Day (estimated)", "1951-09-12": "Hari Raya Haji (estimated)", @@ -41,31 +41,31 @@ "1952-05-01": "Labour Day", "1952-05-08": "Vesak Day (estimated)", "1952-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1952-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1952-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1952-06-10": "Nuzul Al-Quran Day (estimated)", "1952-06-23": "Hari Raya Puasa (estimated)", "1952-06-24": "Second day of Hari Raya Puasa (estimated)", "1952-08-30": "Arafat Day (estimated)", "1952-08-31": "Hari Raya Haji (estimated); National Day", "1952-09-01": "Hari Raya Haji (estimated)", - "1952-09-02": "Arafat Day (estimated) [In lieu]", + "1952-09-02": "Arafat Day (estimated) (in lieu)", "1952-09-21": "Awal Muharram (Hijri New Year) (estimated)", "1952-11-15": "Deepavali", - "1952-11-16": "Deepavali [In lieu]", + "1952-11-16": "Deepavali (in lieu)", "1952-11-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1952-12-25": "Christmas Day", "1953-02-14": "Chinese New Year (estimated)", "1953-02-15": "Chinese New Year Holiday (estimated)", - "1953-02-16": "Chinese New Year (estimated) [In lieu]", + "1953-02-16": "Chinese New Year (estimated) (in lieu)", "1953-05-01": "Labour Day", "1953-05-27": "Vesak Day (estimated)", "1953-05-30": "Nuzul Al-Quran Day (estimated)", - "1953-05-31": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1953-05-31": "Nuzul Al-Quran Day (estimated) (in lieu)", "1953-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1953-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1953-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1953-06-13": "Hari Raya Puasa (estimated)", "1953-06-14": "Second day of Hari Raya Puasa (estimated)", - "1953-06-15": "Hari Raya Puasa (estimated) [In lieu]", + "1953-06-15": "Hari Raya Puasa (estimated) (in lieu)", "1953-08-19": "Arafat Day (estimated)", "1953-08-20": "Hari Raya Haji (estimated)", "1953-08-21": "Hari Raya Haji (estimated)", @@ -77,13 +77,13 @@ "1954-02-03": "Chinese New Year (estimated)", "1954-02-04": "Chinese New Year Holiday (estimated)", "1954-05-01": "Labour Day", - "1954-05-02": "Labour Day [In lieu]", + "1954-05-02": "Labour Day (in lieu)", "1954-05-17": "Vesak Day (estimated)", "1954-05-20": "Nuzul Al-Quran Day (estimated)", "1954-06-02": "Hari Raya Puasa (estimated)", "1954-06-03": "Second day of Hari Raya Puasa (estimated)", "1954-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1954-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1954-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1954-08-08": "Arafat Day (estimated)", "1954-08-09": "Hari Raya Haji (estimated)", "1954-08-10": "Hari Raya Haji (estimated)", @@ -92,7 +92,7 @@ "1954-10-25": "Deepavali", "1954-11-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1954-12-25": "Christmas Day", - "1954-12-26": "Christmas Day [In lieu]", + "1954-12-26": "Christmas Day (in lieu)", "1955-01-24": "Chinese New Year (estimated)", "1955-01-25": "Chinese New Year Holiday (estimated)", "1955-05-01": "Labour Day", @@ -101,29 +101,29 @@ "1955-05-23": "Hari Raya Puasa (estimated)", "1955-05-24": "Second day of Hari Raya Puasa (estimated)", "1955-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1955-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1955-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1955-07-29": "Arafat Day (estimated)", "1955-07-30": "Hari Raya Haji (estimated)", "1955-07-31": "Hari Raya Haji (estimated)", - "1955-08-01": "Hari Raya Haji (estimated) [In lieu]", + "1955-08-01": "Hari Raya Haji (estimated) (in lieu)", "1955-08-20": "Awal Muharram (Hijri New Year) (estimated)", "1955-08-31": "National Day", "1955-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1955-10-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1955-11-12": "Deepavali", - "1955-11-13": "Deepavali [In lieu]", + "1955-11-13": "Deepavali (in lieu)", "1955-12-25": "Christmas Day", "1956-02-12": "Chinese New Year (estimated)", "1956-02-13": "Chinese New Year Holiday (estimated)", "1956-04-28": "Nuzul Al-Quran Day (estimated)", - "1956-04-29": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1956-04-29": "Nuzul Al-Quran Day (estimated) (in lieu)", "1956-05-01": "Labour Day", "1956-05-11": "Hari Raya Puasa (estimated)", "1956-05-12": "Second day of Hari Raya Puasa (estimated)", - "1956-05-13": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1956-05-13": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1956-05-24": "Vesak Day (estimated)", "1956-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1956-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1956-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1956-07-18": "Arafat Day (estimated)", "1956-07-19": "Hari Raya Haji (estimated)", "1956-07-20": "Hari Raya Haji (estimated)", @@ -139,13 +139,13 @@ "1957-05-02": "Second day of Hari Raya Puasa (estimated)", "1957-05-14": "Vesak Day (estimated)", "1957-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1957-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1957-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1957-07-07": "Arafat Day (estimated)", "1957-07-08": "Hari Raya Haji (estimated)", "1957-07-09": "Hari Raya Haji (estimated)", "1957-07-28": "Awal Muharram (Hijri New Year) (estimated)", "1957-08-31": "National Day", - "1957-09-01": "National Day [In lieu]", + "1957-09-01": "National Day (in lieu)", "1957-10-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1957-11-20": "Deepavali", "1957-12-25": "Christmas Day", @@ -156,13 +156,13 @@ "1958-04-21": "Second day of Hari Raya Puasa (estimated)", "1958-05-01": "Labour Day", "1958-05-03": "Vesak Day (estimated)", - "1958-05-04": "Vesak Day (estimated) [In lieu]", + "1958-05-04": "Vesak Day (estimated) (in lieu)", "1958-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1958-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1958-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1958-06-26": "Arafat Day (estimated)", "1958-06-27": "Hari Raya Haji (estimated)", "1958-06-28": "Hari Raya Haji (estimated)", - "1958-06-29": "Hari Raya Haji (estimated) [In lieu]", + "1958-06-29": "Hari Raya Haji (estimated) (in lieu)", "1958-07-18": "Awal Muharram (Hijri New Year) (estimated)", "1958-08-31": "National Day", "1958-09-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -173,11 +173,11 @@ "1959-03-27": "Nuzul Al-Quran Day (estimated)", "1959-04-10": "Hari Raya Puasa (estimated)", "1959-04-11": "Second day of Hari Raya Puasa (estimated)", - "1959-04-12": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1959-04-12": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1959-05-01": "Labour Day", "1959-05-22": "Vesak Day (estimated)", "1959-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1959-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1959-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1959-06-16": "Arafat Day (estimated)", "1959-06-17": "Hari Raya Haji (estimated)", "1959-06-18": "Hari Raya Haji (estimated)", @@ -196,27 +196,27 @@ "1960-06-03": "Arafat Day (estimated)", "1960-06-04": "Birthday of SPB Yang di-Pertuan Agong; Hari Raya Haji (estimated)", "1960-06-05": "Hari Raya Haji (estimated)", - "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]; Hari Raya Haji (estimated) [In lieu]", + "1960-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu); Hari Raya Haji (estimated) (in lieu)", "1960-06-25": "Awal Muharram (Hijri New Year) (estimated)", "1960-08-31": "National Day", "1960-09-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1960-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1960-11-17": "Deepavali", "1960-12-25": "Christmas Day", "1961-02-15": "Chinese New Year (estimated)", "1961-02-16": "Chinese New Year Holiday (estimated)", "1961-03-04": "Nuzul Al-Quran Day (estimated)", - "1961-03-05": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1961-03-05": "Nuzul Al-Quran Day (estimated) (in lieu)", "1961-03-18": "Hari Raya Puasa (estimated)", "1961-03-19": "Second day of Hari Raya Puasa (estimated)", - "1961-03-20": "Hari Raya Puasa (estimated) [In lieu]", + "1961-03-20": "Hari Raya Puasa (estimated) (in lieu)", "1961-05-01": "Labour Day", "1961-05-24": "Arafat Day (estimated)", "1961-05-25": "Hari Raya Haji (estimated)", "1961-05-26": "Hari Raya Haji (estimated)", "1961-05-29": "Vesak Day (estimated)", "1961-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1961-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1961-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1961-06-14": "Awal Muharram (Hijri New Year) (estimated)", "1961-08-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1961-08-31": "National Day", @@ -233,14 +233,14 @@ "1962-05-15": "Hari Raya Haji (estimated)", "1962-05-18": "Vesak Day (estimated)", "1962-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1962-06-03": "Awal Muharram (Hijri New Year) (estimated); Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1962-06-03": "Awal Muharram (Hijri New Year) (estimated); Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1962-08-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1962-08-31": "National Day", "1962-10-26": "Deepavali", "1962-12-25": "Christmas Day", "1963-01-25": "Chinese New Year (estimated)", "1963-01-26": "Chinese New Year Holiday (estimated)", - "1963-01-27": "Chinese New Year Holiday (estimated) [In lieu]", + "1963-01-27": "Chinese New Year Holiday (estimated) (in lieu)", "1963-02-11": "Nuzul Al-Quran Day (estimated)", "1963-02-24": "Hari Raya Puasa (estimated)", "1963-02-25": "Second day of Hari Raya Puasa (estimated)", @@ -248,21 +248,21 @@ "1963-05-02": "Arafat Day (estimated)", "1963-05-03": "Hari Raya Haji (estimated)", "1963-05-04": "Hari Raya Haji (estimated)", - "1963-05-05": "Hari Raya Haji (estimated) [In lieu]", + "1963-05-05": "Hari Raya Haji (estimated) (in lieu)", "1963-05-08": "Vesak Day (estimated)", "1963-05-24": "Awal Muharram (Hijri New Year) (estimated)", "1963-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1963-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1963-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1963-08-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1963-08-31": "National Day", - "1963-09-01": "National Day [In lieu]", + "1963-09-01": "National Day (in lieu)", "1963-11-14": "Deepavali", "1963-12-25": "Christmas Day", "1964-01-31": "Nuzul Al-Quran Day (estimated)", "1964-02-13": "Chinese New Year (estimated)", "1964-02-14": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1964-02-15": "Second day of Hari Raya Puasa (estimated)", - "1964-02-16": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1964-02-16": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1964-04-21": "Arafat Day (estimated)", "1964-04-22": "Hari Raya Haji (estimated)", "1964-04-23": "Hari Raya Haji (estimated)", @@ -270,7 +270,7 @@ "1964-05-12": "Awal Muharram (Hijri New Year) (estimated)", "1964-05-26": "Vesak Day (estimated)", "1964-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1964-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1964-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1964-07-21": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1964-08-31": "National Day", "1964-11-02": "Deepavali", @@ -281,34 +281,34 @@ "1965-04-10": "Arafat Day (estimated)", "1965-04-11": "Hari Raya Haji (estimated)", "1965-04-12": "Hari Raya Haji (estimated)", - "1965-04-13": "Arafat Day (estimated) [In lieu]", + "1965-04-13": "Arafat Day (estimated) (in lieu)", "1965-05-01": "Awal Muharram (Hijri New Year) (estimated); Labour Day", - "1965-05-02": "Labour Day [In lieu]", + "1965-05-02": "Labour Day (in lieu)", "1965-05-15": "Vesak Day (estimated)", - "1965-05-16": "Vesak Day (estimated) [In lieu]", + "1965-05-16": "Vesak Day (estimated) (in lieu)", "1965-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1965-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1965-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1965-07-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1965-07-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1965-08-31": "National Day", "1965-10-22": "Deepavali", "1965-12-25": "Christmas Day", - "1965-12-26": "Christmas Day [In lieu]", + "1965-12-26": "Christmas Day (in lieu)", "1966-01-08": "Nuzul Al-Quran Day (estimated)", - "1966-01-09": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1966-01-09": "Nuzul Al-Quran Day (estimated) (in lieu)", "1966-01-21": "Chinese New Year (estimated)", "1966-01-22": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1966-01-23": "Second day of Hari Raya Puasa (estimated)", - "1966-01-24": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1966-01-24": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", "1966-03-31": "Arafat Day (estimated)", "1966-04-01": "Hari Raya Haji (estimated)", "1966-04-02": "Hari Raya Haji (estimated)", - "1966-04-03": "Hari Raya Haji (estimated) [In lieu]", + "1966-04-03": "Hari Raya Haji (estimated) (in lieu)", "1966-04-21": "Awal Muharram (Hijri New Year) (estimated)", "1966-05-01": "Labour Day", "1966-05-05": "Vesak Day (estimated)", "1966-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1966-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1966-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1966-07-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1966-08-31": "National Day", "1966-11-10": "Deepavali", @@ -325,7 +325,7 @@ "1967-05-01": "Labour Day", "1967-05-23": "Vesak Day (estimated)", "1967-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1967-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1967-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1967-06-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1967-08-31": "National Day", "1967-10-31": "Deepavali", @@ -338,23 +338,23 @@ "1968-03-08": "Arafat Day (estimated)", "1968-03-09": "Hari Raya Haji (estimated)", "1968-03-10": "Hari Raya Haji (estimated)", - "1968-03-11": "Hari Raya Haji (estimated) [In lieu]", + "1968-03-11": "Hari Raya Haji (estimated) (in lieu)", "1968-03-30": "Awal Muharram (Hijri New Year) (estimated)", "1968-05-01": "Labour Day", "1968-05-11": "Vesak Day (estimated)", - "1968-05-12": "Vesak Day (estimated) [In lieu]", + "1968-05-12": "Vesak Day (estimated) (in lieu)", "1968-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1968-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1968-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1968-06-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1968-06-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1968-08-31": "National Day", - "1968-09-01": "National Day [In lieu]", + "1968-09-01": "National Day (in lieu)", "1968-11-18": "Deepavali", "1968-12-07": "Nuzul Al-Quran Day (estimated)", - "1968-12-08": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1968-12-08": "Nuzul Al-Quran Day (estimated) (in lieu)", "1968-12-21": "Hari Raya Puasa (estimated)", "1968-12-22": "Second day of Hari Raya Puasa (estimated)", - "1968-12-23": "Hari Raya Puasa (estimated) [In lieu]", + "1968-12-23": "Hari Raya Puasa (estimated) (in lieu)", "1968-12-25": "Christmas Day", "1969-02-17": "Chinese New Year (estimated)", "1969-02-18": "Chinese New Year Holiday (estimated)", @@ -365,17 +365,17 @@ "1969-05-01": "Labour Day; Vesak Day (estimated)", "1969-05-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1969-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1969-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1969-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1969-08-31": "National Day", "1969-11-08": "Deepavali", - "1969-11-09": "Deepavali [In lieu]", + "1969-11-09": "Deepavali (in lieu)", "1969-11-26": "Nuzul Al-Quran Day (estimated)", "1969-12-10": "Hari Raya Puasa (estimated)", "1969-12-11": "Second day of Hari Raya Puasa (estimated)", "1969-12-25": "Christmas Day", "1970-02-06": "Chinese New Year (estimated)", "1970-02-07": "Chinese New Year Holiday (estimated)", - "1970-02-08": "Chinese New Year Holiday (estimated) [In lieu]", + "1970-02-08": "Chinese New Year Holiday (estimated) (in lieu)", "1970-02-15": "Arafat Day (estimated)", "1970-02-16": "Hari Raya Haji (estimated)", "1970-02-17": "Hari Raya Haji (estimated)", @@ -384,7 +384,7 @@ "1970-05-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1970-05-19": "Vesak Day (estimated)", "1970-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1970-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1970-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1970-08-31": "National Day", "1970-10-28": "Deepavali", "1970-11-17": "Nuzul Al-Quran Day (estimated)", @@ -396,22 +396,22 @@ "1971-02-05": "Arafat Day (estimated)", "1971-02-06": "Hari Raya Haji (estimated)", "1971-02-07": "Hari Raya Haji (estimated)", - "1971-02-08": "Hari Raya Haji (estimated) [In lieu]", + "1971-02-08": "Hari Raya Haji (estimated) (in lieu)", "1971-02-26": "Awal Muharram (Hijri New Year) (estimated)", "1971-05-01": "Labour Day", - "1971-05-02": "Labour Day [In lieu]", + "1971-05-02": "Labour Day (in lieu)", "1971-05-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1971-05-09": "Vesak Day (estimated)", "1971-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1971-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1971-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1971-08-31": "National Day", "1971-11-05": "Nuzul Al-Quran Day (estimated)", "1971-11-16": "Deepavali", "1971-11-19": "Hari Raya Puasa (estimated)", "1971-11-20": "Second day of Hari Raya Puasa (estimated)", - "1971-11-21": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1971-11-21": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1971-12-25": "Christmas Day", - "1971-12-26": "Christmas Day [In lieu]", + "1971-12-26": "Christmas Day (in lieu)", "1972-01-25": "Arafat Day (estimated)", "1972-01-26": "Hari Raya Haji (estimated)", "1972-01-27": "Hari Raya Haji (estimated)", @@ -420,35 +420,35 @@ "1972-04-25": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1972-05-01": "Labour Day", "1972-05-27": "Vesak Day (estimated)", - "1972-05-28": "Vesak Day (estimated) [In lieu]", + "1972-05-28": "Vesak Day (estimated) (in lieu)", "1972-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1972-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1972-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1972-08-31": "National Day", "1972-10-24": "Nuzul Al-Quran Day (estimated)", "1972-11-04": "Deepavali", - "1972-11-05": "Deepavali [In lieu]", + "1972-11-05": "Deepavali (in lieu)", "1972-11-07": "Hari Raya Puasa (estimated)", "1972-11-08": "Second day of Hari Raya Puasa (estimated)", "1972-12-25": "Christmas Day", "1973-01-13": "Arafat Day (estimated)", "1973-01-14": "Hari Raya Haji (estimated)", "1973-01-15": "Hari Raya Haji (estimated)", - "1973-01-16": "Arafat Day (estimated) [In lieu]", + "1973-01-16": "Arafat Day (estimated) (in lieu)", "1973-02-03": "Chinese New Year (estimated)", "1973-02-04": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", - "1973-02-05": "Chinese New Year (estimated) [In lieu]", + "1973-02-05": "Chinese New Year (estimated) (in lieu)", "1973-04-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1973-05-01": "Labour Day", "1973-05-17": "Vesak Day (estimated)", "1973-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1973-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1973-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1973-08-31": "National Day", "1973-10-13": "Nuzul Al-Quran Day (estimated)", - "1973-10-14": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1973-10-14": "Nuzul Al-Quran Day (estimated) (in lieu)", "1973-10-24": "Deepavali", "1973-10-27": "Hari Raya Puasa (estimated)", "1973-10-28": "Second day of Hari Raya Puasa (estimated)", - "1973-10-29": "Hari Raya Puasa (estimated) [In lieu]", + "1973-10-29": "Hari Raya Puasa (estimated) (in lieu)", "1973-12-25": "Christmas Day", "1974-01-02": "Arafat Day (estimated)", "1974-01-03": "Hari Raya Haji (estimated)", @@ -459,9 +459,9 @@ "1974-05-01": "Labour Day", "1974-05-06": "Vesak Day (estimated)", "1974-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1974-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1974-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1974-08-31": "National Day", - "1974-09-01": "National Day [In lieu]", + "1974-09-01": "National Day (in lieu)", "1974-10-03": "Nuzul Al-Quran Day (estimated)", "1974-10-16": "Hari Raya Puasa (estimated)", "1974-10-17": "Second day of Hari Raya Puasa (estimated)", @@ -476,49 +476,49 @@ "1975-05-01": "Labour Day", "1975-05-25": "Vesak Day (estimated)", "1975-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1975-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1975-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1975-08-31": "National Day", "1975-09-22": "Nuzul Al-Quran Day (estimated)", "1975-10-06": "Hari Raya Puasa (estimated)", "1975-10-07": "Second day of Hari Raya Puasa (estimated)", "1975-11-01": "Deepavali", - "1975-11-02": "Deepavali [In lieu]", + "1975-11-02": "Deepavali (in lieu)", "1975-12-12": "Arafat Day (estimated)", "1975-12-13": "Hari Raya Haji (estimated)", "1975-12-14": "Hari Raya Haji (estimated)", - "1975-12-15": "Hari Raya Haji (estimated) [In lieu]", + "1975-12-15": "Hari Raya Haji (estimated) (in lieu)", "1975-12-25": "Christmas Day", "1976-01-02": "Awal Muharram (Hijri New Year) (estimated)", "1976-01-31": "Chinese New Year (estimated)", "1976-02-01": "Chinese New Year Holiday (estimated)", - "1976-02-02": "Chinese New Year (estimated) [In lieu]", + "1976-02-02": "Chinese New Year (estimated) (in lieu)", "1976-03-12": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1976-05-01": "Labour Day", - "1976-05-02": "Labour Day [In lieu]", + "1976-05-02": "Labour Day (in lieu)", "1976-05-13": "Vesak Day (estimated)", "1976-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1976-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1976-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1976-08-31": "National Day", "1976-09-11": "Nuzul Al-Quran Day (estimated)", - "1976-09-12": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1976-09-12": "Nuzul Al-Quran Day (estimated) (in lieu)", "1976-09-24": "Hari Raya Puasa (estimated)", "1976-09-25": "Second day of Hari Raya Puasa (estimated)", - "1976-09-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "1976-09-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", "1976-11-19": "Deepavali", "1976-11-30": "Arafat Day (estimated)", "1976-12-01": "Hari Raya Haji (estimated)", "1976-12-02": "Hari Raya Haji (estimated)", "1976-12-22": "Awal Muharram (Hijri New Year) (estimated)", "1976-12-25": "Christmas Day", - "1976-12-26": "Christmas Day [In lieu]", + "1976-12-26": "Christmas Day (in lieu)", "1977-02-18": "Chinese New Year (estimated)", "1977-02-19": "Chinese New Year Holiday (estimated)", - "1977-02-20": "Chinese New Year Holiday (estimated) [In lieu]", + "1977-02-20": "Chinese New Year Holiday (estimated) (in lieu)", "1977-03-02": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1977-05-01": "Labour Day", "1977-05-02": "Vesak Day (estimated)", "1977-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1977-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1977-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1977-08-31": "National Day; Nuzul Al-Quran Day (estimated)", "1977-09-14": "Hari Raya Puasa (estimated)", "1977-09-15": "Second day of Hari Raya Puasa (estimated)", @@ -534,7 +534,7 @@ "1978-05-01": "Labour Day", "1978-05-21": "Vesak Day (estimated)", "1978-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1978-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1978-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1978-08-21": "Nuzul Al-Quran Day (estimated)", "1978-08-31": "National Day", "1978-09-03": "Hari Raya Puasa (estimated)", @@ -543,7 +543,7 @@ "1978-11-09": "Arafat Day (estimated)", "1978-11-10": "Hari Raya Haji (estimated)", "1978-11-11": "Hari Raya Haji (estimated)", - "1978-11-12": "Hari Raya Haji (estimated) [In lieu]", + "1978-11-12": "Hari Raya Haji (estimated) (in lieu)", "1978-12-01": "Awal Muharram (Hijri New Year) (estimated)", "1978-12-25": "Christmas Day", "1979-01-28": "Chinese New Year (estimated)", @@ -552,7 +552,7 @@ "1979-05-01": "Labour Day", "1979-05-10": "Vesak Day (estimated)", "1979-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1979-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1979-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1979-08-10": "Nuzul Al-Quran Day (estimated)", "1979-08-23": "Hari Raya Puasa (estimated)", "1979-08-24": "Second day of Hari Raya Puasa (estimated)", @@ -566,11 +566,11 @@ "1980-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1980-02-16": "Chinese New Year (estimated)", "1980-02-17": "Chinese New Year Holiday (estimated)", - "1980-02-18": "Chinese New Year (estimated) [In lieu]", + "1980-02-18": "Chinese New Year (estimated) (in lieu)", "1980-05-01": "Labour Day", "1980-05-28": "Vesak Day (estimated)", "1980-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1980-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1980-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1980-07-29": "Nuzul Al-Quran Day (estimated)", "1980-08-12": "Hari Raya Puasa (estimated)", "1980-08-13": "Second day of Hari Raya Puasa (estimated)", @@ -578,7 +578,7 @@ "1980-10-18": "Arafat Day (estimated)", "1980-10-19": "Hari Raya Haji (estimated)", "1980-10-20": "Hari Raya Haji (estimated)", - "1980-10-21": "Arafat Day (estimated) [In lieu]", + "1980-10-21": "Arafat Day (estimated) (in lieu)", "1980-11-06": "Deepavali", "1980-11-09": "Awal Muharram (Hijri New Year) (estimated)", "1980-12-25": "Christmas Day", @@ -588,12 +588,12 @@ "1981-05-01": "Labour Day", "1981-05-18": "Vesak Day (estimated)", "1981-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1981-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1981-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1981-07-18": "Nuzul Al-Quran Day (estimated)", - "1981-07-19": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1981-07-19": "Nuzul Al-Quran Day (estimated) (in lieu)", "1981-08-01": "Hari Raya Puasa (estimated)", "1981-08-02": "Second day of Hari Raya Puasa (estimated)", - "1981-08-03": "Hari Raya Puasa (estimated) [In lieu]", + "1981-08-03": "Hari Raya Puasa (estimated) (in lieu)", "1981-08-31": "National Day", "1981-10-07": "Arafat Day (estimated)", "1981-10-08": "Hari Raya Haji (estimated)", @@ -605,11 +605,11 @@ "1982-01-25": "Chinese New Year (estimated)", "1982-01-26": "Chinese New Year Holiday (estimated)", "1982-05-01": "Labour Day", - "1982-05-02": "Labour Day [In lieu]", + "1982-05-02": "Labour Day (in lieu)", "1982-05-08": "Vesak Day (estimated)", - "1982-05-09": "Vesak Day (estimated) [In lieu]", + "1982-05-09": "Vesak Day (estimated) (in lieu)", "1982-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1982-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1982-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1982-07-08": "Nuzul Al-Quran Day (estimated)", "1982-07-21": "Hari Raya Puasa (estimated)", "1982-07-22": "Second day of Hari Raya Puasa (estimated)", @@ -619,16 +619,16 @@ "1982-09-28": "Hari Raya Haji (estimated)", "1982-10-18": "Awal Muharram (Hijri New Year) (estimated)", "1982-11-13": "Deepavali", - "1982-11-14": "Deepavali [In lieu]", + "1982-11-14": "Deepavali (in lieu)", "1982-12-25": "Christmas Day", - "1982-12-26": "Christmas Day [In lieu]", + "1982-12-26": "Christmas Day (in lieu)", "1982-12-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1983-02-13": "Chinese New Year (estimated)", "1983-02-14": "Chinese New Year Holiday (estimated)", "1983-05-01": "Labour Day", "1983-05-27": "Vesak Day (estimated)", "1983-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1983-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1983-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1983-06-28": "Nuzul Al-Quran Day (estimated)", "1983-07-11": "Hari Raya Puasa (estimated)", "1983-07-12": "Second day of Hari Raya Puasa (estimated)", @@ -636,7 +636,7 @@ "1983-09-16": "Arafat Day (estimated)", "1983-09-17": "Hari Raya Haji (estimated)", "1983-09-18": "Hari Raya Haji (estimated)", - "1983-09-19": "Hari Raya Haji (estimated) [In lieu]", + "1983-09-19": "Hari Raya Haji (estimated) (in lieu)", "1983-10-07": "Awal Muharram (Hijri New Year) (estimated)", "1983-11-03": "Deepavali", "1983-12-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -646,12 +646,12 @@ "1984-05-01": "Labour Day", "1984-05-15": "Vesak Day (estimated)", "1984-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1984-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1984-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1984-06-16": "Nuzul Al-Quran Day (estimated)", - "1984-06-17": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1984-06-17": "Nuzul Al-Quran Day (estimated) (in lieu)", "1984-06-30": "Hari Raya Puasa (estimated)", "1984-07-01": "Second day of Hari Raya Puasa (estimated)", - "1984-07-02": "Hari Raya Puasa (estimated) [In lieu]", + "1984-07-02": "Hari Raya Puasa (estimated) (in lieu)", "1984-08-31": "National Day", "1984-09-04": "Arafat Day (estimated)", "1984-09-05": "Hari Raya Haji (estimated)", @@ -664,9 +664,9 @@ "1985-02-21": "Chinese New Year Holiday (estimated)", "1985-05-01": "Labour Day", "1985-05-04": "Vesak Day (estimated)", - "1985-05-05": "Vesak Day (estimated) [In lieu]", + "1985-05-05": "Vesak Day (estimated) (in lieu)", "1985-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1985-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1985-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1985-06-05": "Nuzul Al-Quran Day (estimated)", "1985-06-19": "Hari Raya Puasa (estimated)", "1985-06-20": "Second day of Hari Raya Puasa (estimated)", @@ -674,7 +674,7 @@ "1985-08-26": "Hari Raya Haji (estimated)", "1985-08-27": "Hari Raya Haji (estimated)", "1985-08-31": "National Day", - "1985-09-01": "National Day [In lieu]", + "1985-09-01": "National Day (in lieu)", "1985-09-15": "Awal Muharram (Hijri New Year) (estimated)", "1985-11-10": "Deepavali", "1985-11-24": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -687,11 +687,11 @@ "1986-06-07": "Birthday of SPB Yang di-Pertuan Agong", "1986-06-08": "Hari Raya Puasa (estimated)", "1986-06-09": "Second day of Hari Raya Puasa (estimated)", - "1986-06-10": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1986-06-10": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1986-08-14": "Arafat Day (estimated)", "1986-08-15": "Hari Raya Haji (estimated)", "1986-08-16": "Hari Raya Haji (estimated)", - "1986-08-17": "Hari Raya Haji (estimated) [In lieu]", + "1986-08-17": "Hari Raya Haji (estimated) (in lieu)", "1986-08-31": "National Day", "1986-09-05": "Awal Muharram (Hijri New Year) (estimated)", "1986-10-31": "Deepavali", @@ -705,7 +705,7 @@ "1987-05-28": "Hari Raya Puasa (estimated)", "1987-05-29": "Second day of Hari Raya Puasa (estimated)", "1987-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1987-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1987-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1987-08-03": "Arafat Day (estimated)", "1987-08-04": "Hari Raya Haji (estimated)", "1987-08-05": "Hari Raya Haji (estimated)", @@ -722,15 +722,15 @@ "1988-05-17": "Second day of Hari Raya Puasa (estimated)", "1988-05-30": "Vesak Day (estimated)", "1988-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1988-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1988-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1988-07-22": "Arafat Day (estimated)", "1988-07-23": "Hari Raya Haji (estimated)", "1988-07-24": "Hari Raya Haji (estimated)", - "1988-07-25": "Hari Raya Haji (estimated) [In lieu]", + "1988-07-25": "Hari Raya Haji (estimated) (in lieu)", "1988-08-13": "Awal Muharram (Hijri New Year) (estimated)", "1988-08-31": "National Day", "1988-10-22": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1988-10-23": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1988-11-07": "Deepavali", "1988-12-25": "Christmas Day", "1989-02-06": "Chinese New Year (estimated)", @@ -739,10 +739,10 @@ "1989-05-01": "Labour Day", "1989-05-06": "Hari Raya Puasa (estimated)", "1989-05-07": "Second day of Hari Raya Puasa (estimated)", - "1989-05-08": "Hari Raya Puasa (estimated) [In lieu]", + "1989-05-08": "Hari Raya Puasa (estimated) (in lieu)", "1989-05-19": "Vesak Day (estimated)", "1989-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1989-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1989-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1989-07-12": "Arafat Day (estimated)", "1989-07-13": "Hari Raya Haji (estimated)", "1989-07-14": "Hari Raya Haji (estimated)", @@ -753,14 +753,14 @@ "1989-12-25": "Christmas Day", "1990-01-27": "Chinese New Year (estimated)", "1990-01-28": "Chinese New Year Holiday (estimated)", - "1990-01-29": "Chinese New Year (estimated) [In lieu]", + "1990-01-29": "Chinese New Year (estimated) (in lieu)", "1990-04-12": "Nuzul Al-Quran Day (estimated)", "1990-04-26": "Hari Raya Puasa (estimated)", "1990-04-27": "Second day of Hari Raya Puasa (estimated)", "1990-05-01": "Labour Day", "1990-05-09": "Vesak Day (estimated)", "1990-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "1990-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1990-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1990-07-01": "Arafat Day (estimated)", "1990-07-02": "Hari Raya Haji (estimated)", "1990-07-03": "Hari Raya Haji (estimated)", @@ -771,35 +771,35 @@ "1990-12-25": "Christmas Day", "1991-02-15": "Chinese New Year (estimated)", "1991-02-16": "Chinese New Year Holiday (estimated)", - "1991-02-17": "Chinese New Year Holiday (estimated) [In lieu]", + "1991-02-17": "Chinese New Year Holiday (estimated) (in lieu)", "1991-04-02": "Nuzul Al-Quran Day (estimated)", "1991-04-15": "Hari Raya Puasa (estimated)", "1991-04-16": "Second day of Hari Raya Puasa (estimated)", "1991-05-01": "Labour Day", "1991-05-28": "Vesak Day (estimated)", "1991-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1991-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1991-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1991-06-21": "Arafat Day (estimated)", "1991-06-22": "Hari Raya Haji (estimated)", "1991-06-23": "Hari Raya Haji (estimated)", - "1991-06-24": "Hari Raya Haji (estimated) [In lieu]", + "1991-06-24": "Hari Raya Haji (estimated) (in lieu)", "1991-07-12": "Awal Muharram (Hijri New Year) (estimated)", "1991-08-31": "National Day", - "1991-09-01": "National Day [In lieu]", + "1991-09-01": "National Day (in lieu)", "1991-09-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1991-11-04": "Deepavali", "1991-12-25": "Christmas Day", "1992-02-04": "Chinese New Year (estimated)", "1992-02-05": "Chinese New Year Holiday (estimated)", "1992-03-21": "Nuzul Al-Quran Day (estimated)", - "1992-03-22": "Nuzul Al-Quran Day (estimated) [In lieu]", + "1992-03-22": "Nuzul Al-Quran Day (estimated) (in lieu)", "1992-04-04": "Hari Raya Puasa (estimated)", "1992-04-05": "Second day of Hari Raya Puasa (estimated)", - "1992-04-06": "Hari Raya Puasa (estimated) [In lieu]", + "1992-04-06": "Hari Raya Puasa (estimated) (in lieu)", "1992-05-01": "Labour Day", "1992-05-17": "Vesak Day (estimated)", "1992-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1992-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1992-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1992-06-10": "Arafat Day (estimated)", "1992-06-11": "Hari Raya Haji (estimated)", "1992-06-12": "Hari Raya Haji (estimated)", @@ -807,28 +807,28 @@ "1992-08-31": "National Day", "1992-09-09": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1992-10-24": "Deepavali", - "1992-10-25": "Deepavali [In lieu]", + "1992-10-25": "Deepavali (in lieu)", "1992-12-25": "Christmas Day", "1993-01-23": "Chinese New Year (estimated)", "1993-01-24": "Chinese New Year Holiday (estimated)", - "1993-01-25": "Chinese New Year (estimated) [In lieu]", + "1993-01-25": "Chinese New Year (estimated) (in lieu)", "1993-03-10": "Nuzul Al-Quran Day (estimated)", "1993-03-24": "Hari Raya Puasa (estimated)", "1993-03-25": "Second day of Hari Raya Puasa (estimated)", "1993-05-01": "Labour Day", - "1993-05-02": "Labour Day [In lieu]", + "1993-05-02": "Labour Day (in lieu)", "1993-05-06": "Vesak Day (estimated)", "1993-05-30": "Arafat Day (estimated)", "1993-05-31": "Hari Raya Haji (estimated)", "1993-06-01": "Hari Raya Haji (estimated)", "1993-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1993-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1993-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1993-06-21": "Awal Muharram (Hijri New Year) (estimated)", "1993-08-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1993-08-31": "National Day", "1993-11-12": "Deepavali", "1993-12-25": "Christmas Day", - "1993-12-26": "Christmas Day [In lieu]", + "1993-12-26": "Christmas Day (in lieu)", "1994-02-10": "Chinese New Year (estimated)", "1994-02-11": "Chinese New Year Holiday (estimated)", "1994-02-27": "Nuzul Al-Quran Day (estimated)", @@ -838,10 +838,10 @@ "1994-05-19": "Arafat Day (estimated)", "1994-05-20": "Hari Raya Haji (estimated)", "1994-05-21": "Hari Raya Haji (estimated)", - "1994-05-22": "Hari Raya Haji (estimated) [In lieu]", + "1994-05-22": "Hari Raya Haji (estimated) (in lieu)", "1994-05-25": "Vesak Day (estimated)", "1994-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "1994-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1994-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1994-06-10": "Awal Muharram (Hijri New Year) (estimated)", "1994-08-19": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1994-08-31": "National Day", @@ -859,7 +859,7 @@ "1995-05-14": "Vesak Day (estimated)", "1995-05-30": "Awal Muharram (Hijri New Year) (estimated)", "1995-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "1995-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1995-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1995-08-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1995-08-31": "National Day", "1995-11-20": "Deepavali", @@ -870,24 +870,24 @@ "1996-04-26": "Arafat Day (estimated)", "1996-04-27": "Hari Raya Haji (estimated)", "1996-04-28": "Hari Raya Haji (estimated)", - "1996-04-29": "Hari Raya Haji (estimated) [In lieu]", + "1996-04-29": "Hari Raya Haji (estimated) (in lieu)", "1996-05-01": "Labour Day", "1996-05-02": "Vesak Day (estimated)", "1996-05-18": "Awal Muharram (Hijri New Year) (estimated)", "1996-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "1996-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1996-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1996-07-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1996-07-28": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1996-08-31": "National Day", - "1996-09-01": "National Day [In lieu]", + "1996-09-01": "National Day (in lieu)", "1996-11-09": "Deepavali", - "1996-11-10": "Deepavali [In lieu]", + "1996-11-10": "Deepavali (in lieu)", "1996-12-25": "Christmas Day", "1997-01-26": "Nuzul Al-Quran Day (estimated)", "1997-02-07": "Chinese New Year (estimated)", "1997-02-08": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "1997-02-09": "Second day of Hari Raya Puasa (estimated)", - "1997-02-10": "Chinese New Year Holiday (estimated) [In lieu]; Hari Raya Puasa (estimated) [In lieu]", + "1997-02-10": "Chinese New Year Holiday (estimated) (in lieu); Hari Raya Puasa (estimated) (in lieu)", "1997-04-16": "Arafat Day (estimated)", "1997-04-17": "Hari Raya Haji (estimated)", "1997-04-18": "Hari Raya Haji (estimated)", @@ -895,7 +895,7 @@ "1997-05-07": "Awal Muharram (Hijri New Year) (estimated)", "1997-05-21": "Vesak Day (estimated)", "1997-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "1997-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1997-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1997-07-16": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1997-08-31": "National Day", "1997-10-29": "Deepavali", @@ -911,7 +911,7 @@ "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", "1998-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "1998-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1998-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1998-07-06": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "1998-08-31": "National Day", "1998-11-17": "Deepavali", @@ -924,30 +924,30 @@ "1999-03-26": "Arafat Day (estimated)", "1999-03-27": "Hari Raya Haji (estimated)", "1999-03-28": "Hari Raya Haji (estimated)", - "1999-03-29": "Hari Raya Haji (estimated) [In lieu]", + "1999-03-29": "Hari Raya Haji (estimated) (in lieu)", "1999-04-17": "Awal Muharram (Hijri New Year) (estimated)", "1999-05-01": "Labour Day", - "1999-05-02": "Labour Day [In lieu]", + "1999-05-02": "Labour Day (in lieu)", "1999-05-29": "Vesak Day (estimated)", - "1999-05-30": "Vesak Day (estimated) [In lieu]", + "1999-05-30": "Vesak Day (estimated) (in lieu)", "1999-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "1999-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "1999-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "1999-06-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "1999-06-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "1999-08-31": "National Day", "1999-11-06": "Deepavali", - "1999-11-07": "Deepavali [In lieu]", + "1999-11-07": "Deepavali (in lieu)", "1999-11-29": "Malaysia General Election Holiday", "1999-12-25": "Christmas Day; Nuzul Al-Quran Day (estimated)", - "1999-12-26": "Christmas Day [In lieu]; Nuzul Al-Quran Day (estimated) [In lieu]", + "1999-12-26": "Christmas Day (in lieu); Nuzul Al-Quran Day (estimated) (in lieu)", "2000-01-08": "Hari Raya Puasa (estimated)", "2000-01-09": "Second day of Hari Raya Puasa (estimated)", - "2000-01-10": "Hari Raya Puasa (estimated) [In lieu]", + "2000-01-10": "Hari Raya Puasa (estimated) (in lieu)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year Holiday (estimated)", - "2000-02-07": "Chinese New Year (estimated) [In lieu]", + "2000-02-07": "Chinese New Year (estimated) (in lieu)", "2000-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2000-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2000-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", "2000-03-15": "Arafat Day (estimated)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-03-17": "Hari Raya Haji (estimated)", @@ -956,7 +956,7 @@ "2000-05-01": "Labour Day", "2000-05-18": "Vesak Day (estimated)", "2000-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2000-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2000-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2000-06-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2000-08-31": "National Day", "2000-10-25": "Deepavali", @@ -975,7 +975,7 @@ "2001-05-01": "Labour Day", "2001-05-07": "Vesak Day", "2001-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2001-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2001-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2001-06-04": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2001-08-31": "National Day", "2001-11-14": "Deepavali", @@ -988,7 +988,7 @@ "2002-02-22": "Arafat Day", "2002-02-23": "Hari Raya Haji", "2002-02-24": "Hari Raya Haji", - "2002-02-25": "Hari Raya Haji [In lieu]", + "2002-02-25": "Hari Raya Haji (in lieu)", "2002-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2002-03-15": "Awal Muharram (Hijri New Year)", "2002-04-26": "Birthday of the Sultan of Terengganu", @@ -996,30 +996,30 @@ "2002-05-24": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2002-05-27": "Vesak Day", "2002-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2002-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2002-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2002-08-31": "National Day", - "2002-09-01": "National Day [In lieu]", + "2002-09-01": "National Day (in lieu)", "2002-11-03": "Deepavali", "2002-11-22": "Nuzul Al-Quran Day", "2002-12-06": "Hari Raya Puasa", "2002-12-07": "Second day of Hari Raya Puasa", - "2002-12-08": "Second day of Hari Raya Puasa [In lieu]", + "2002-12-08": "Second day of Hari Raya Puasa (in lieu)", "2002-12-25": "Christmas Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year Holiday", - "2003-02-03": "Chinese New Year [In lieu]", + "2003-02-03": "Chinese New Year (in lieu)", "2003-02-11": "Arafat Day", "2003-02-12": "Hari Raya Haji", "2003-02-13": "Hari Raya Haji", "2003-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2003-03-05": "Awal Muharram (Hijri New Year)", "2003-04-26": "Birthday of the Sultan of Terengganu", - "2003-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2003-04-27": "Birthday of the Sultan of Terengganu (in lieu)", "2003-05-01": "Labour Day", "2003-05-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2003-05-15": "Vesak Day", "2003-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2003-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2003-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2003-08-31": "National Day", "2003-10-23": "Deepavali", "2003-11-12": "Nuzul Al-Quran Day", @@ -1037,20 +1037,20 @@ "2004-05-01": "Labour Day", "2004-05-02": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2004-05-03": "Vesak Day", - "2004-05-04": "Labour Day [In lieu]", + "2004-05-04": "Labour Day (in lieu)", "2004-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2004-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2004-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2004-08-31": "National Day", "2004-11-01": "Nuzul Al-Quran Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", "2004-11-15": "Second day of Hari Raya Puasa", "2004-12-25": "Christmas Day", - "2004-12-26": "Christmas Day [In lieu]", + "2004-12-26": "Christmas Day (in lieu)", "2005-01-20": "Arafat Day", "2005-01-21": "Hari Raya Haji", "2005-01-22": "Hari Raya Haji", - "2005-01-23": "Hari Raya Haji [In lieu]", + "2005-01-23": "Hari Raya Haji (in lieu)", "2005-02-09": "Chinese New Year", "2005-02-10": "Awal Muharram (Hijri New Year); Chinese New Year Holiday", "2005-03-04": "Anniversary of the Installation of the Sultan of Terengganu", @@ -1059,7 +1059,7 @@ "2005-05-01": "Labour Day", "2005-05-22": "Vesak Day", "2005-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2005-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2005-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2005-08-31": "National Day", "2005-10-21": "Nuzul Al-Quran Day", "2005-11-01": "Deepavali", @@ -1073,40 +1073,40 @@ "2006-01-30": "Chinese New Year Holiday", "2006-01-31": "Awal Muharram (Hijri New Year)", "2006-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2006-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2006-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", "2006-04-11": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2006-04-26": "Birthday of the Sultan of Terengganu", "2006-05-01": "Labour Day", "2006-05-12": "Vesak Day", "2006-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2006-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2006-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2006-08-31": "National Day", "2006-10-10": "Nuzul Al-Quran Day", "2006-10-21": "Deepavali", - "2006-10-22": "Deepavali [In lieu]", + "2006-10-22": "Deepavali (in lieu)", "2006-10-24": "Hari Raya Puasa", "2006-10-25": "Second day of Hari Raya Puasa", "2006-12-25": "Christmas Day", "2006-12-30": "Arafat Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "Hari Raya Haji", - "2007-01-02": "Arafat Day [In lieu]", + "2007-01-02": "Arafat Day (in lieu)", "2007-01-20": "Awal Muharram (Hijri New Year)", "2007-02-18": "Chinese New Year", "2007-02-19": "Chinese New Year Holiday", "2007-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2007-03-31": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2007-04-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2007-04-01": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2007-04-26": "Birthday of the Sultan of Terengganu", "2007-05-01": "Labour Day; Vesak Day", "2007-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2007-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2007-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2007-08-31": "National Day", "2007-09-29": "Nuzul Al-Quran Day", - "2007-09-30": "Nuzul Al-Quran Day [In lieu]", + "2007-09-30": "Nuzul Al-Quran Day (in lieu)", "2007-10-13": "Hari Raya Puasa", "2007-10-14": "Second day of Hari Raya Puasa", - "2007-10-15": "Hari Raya Puasa [In lieu]", + "2007-10-15": "Hari Raya Puasa (in lieu)", "2007-11-08": "Deepavali", "2007-12-19": "Arafat Day", "2007-12-20": "Hari Raya Haji", @@ -1118,11 +1118,11 @@ "2008-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2008-03-20": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2008-04-26": "Birthday of the Sultan of Terengganu", - "2008-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2008-04-27": "Birthday of the Sultan of Terengganu (in lieu)", "2008-05-01": "Labour Day", "2008-05-19": "Vesak Day", "2008-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2008-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2008-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2008-08-31": "National Day", "2008-09-18": "Nuzul Al-Quran Day", "2008-10-01": "Hari Raya Puasa", @@ -1140,19 +1140,19 @@ "2009-04-26": "Birthday of the Sultan of Terengganu", "2009-05-01": "Labour Day", "2009-05-09": "Vesak Day", - "2009-05-10": "Vesak Day [In lieu]", + "2009-05-10": "Vesak Day (in lieu)", "2009-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2009-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2009-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2009-08-31": "National Day", "2009-09-07": "Nuzul Al-Quran Day", "2009-09-20": "Hari Raya Puasa", "2009-09-21": "Second day of Hari Raya Puasa", "2009-10-17": "Deepavali", - "2009-10-18": "Deepavali [In lieu]", + "2009-10-18": "Deepavali (in lieu)", "2009-11-27": "Arafat Day", "2009-11-28": "Hari Raya Haji", "2009-11-29": "Hari Raya Haji", - "2009-11-30": "Hari Raya Haji [In lieu]", + "2009-11-30": "Hari Raya Haji (in lieu)", "2009-12-18": "Awal Muharram (Hijri New Year)", "2009-12-25": "Christmas Day", "2010-02-14": "Chinese New Year", @@ -1161,15 +1161,15 @@ "2010-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2010-04-26": "Birthday of the Sultan of Terengganu", "2010-05-01": "Labour Day", - "2010-05-02": "Labour Day [In lieu]", + "2010-05-02": "Labour Day (in lieu)", "2010-05-28": "Vesak Day", "2010-06-05": "Birthday of SPB Yang di-Pertuan Agong", - "2010-06-06": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2010-06-06": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2010-08-27": "Nuzul Al-Quran Day", "2010-08-31": "National Day", "2010-09-10": "Hari Raya Puasa", "2010-09-11": "Second day of Hari Raya Puasa", - "2010-09-12": "Second day of Hari Raya Puasa [In lieu]", + "2010-09-12": "Second day of Hari Raya Puasa (in lieu)", "2010-09-16": "Malaysia Day", "2010-11-05": "Deepavali", "2010-11-16": "Arafat Day", @@ -1177,7 +1177,7 @@ "2010-11-18": "Hari Raya Haji", "2010-12-08": "Awal Muharram (Hijri New Year)", "2010-12-25": "Christmas Day", - "2010-12-26": "Christmas Day [In lieu]", + "2010-12-26": "Christmas Day (in lieu)", "2011-02-03": "Chinese New Year", "2011-02-04": "Chinese New Year Holiday", "2011-02-16": "Maulidur Rasul (Birthday of the Prophet Muhammad)", @@ -1186,7 +1186,7 @@ "2011-05-01": "Labour Day", "2011-05-17": "Vesak Day", "2011-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2011-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2011-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2011-08-17": "Nuzul Al-Quran Day", "2011-08-31": "Hari Raya Puasa; National Day", "2011-09-01": "Second day of Hari Raya Puasa", @@ -1204,9 +1204,9 @@ "2012-04-26": "Birthday of the Sultan of Terengganu", "2012-05-01": "Labour Day", "2012-05-05": "Vesak Day", - "2012-05-06": "Vesak Day [In lieu]", + "2012-05-06": "Vesak Day (in lieu)", "2012-06-02": "Birthday of SPB Yang di-Pertuan Agong", - "2012-06-03": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2012-06-03": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2012-08-05": "Nuzul Al-Quran Day", "2012-08-19": "Hari Raya Puasa", "2012-08-20": "Second day of Hari Raya Puasa", @@ -1215,7 +1215,7 @@ "2012-10-25": "Arafat Day", "2012-10-26": "Hari Raya Haji", "2012-10-27": "Hari Raya Haji", - "2012-10-28": "Hari Raya Haji [In lieu]", + "2012-10-28": "Hari Raya Haji (in lieu)", "2012-11-13": "Deepavali", "2012-11-15": "Awal Muharram (Hijri New Year)", "2012-12-25": "Christmas Day", @@ -1227,31 +1227,31 @@ "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", "2013-06-01": "Birthday of SPB Yang di-Pertuan Agong", - "2013-06-02": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2013-06-02": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2013-07-25": "Nuzul Al-Quran Day", "2013-08-08": "Hari Raya Puasa", "2013-08-09": "Second day of Hari Raya Puasa", "2013-08-31": "National Day", - "2013-09-01": "National Day [In lieu]", + "2013-09-01": "National Day (in lieu)", "2013-09-16": "Malaysia Day", "2013-10-14": "Arafat Day", "2013-10-15": "Hari Raya Haji", "2013-10-16": "Hari Raya Haji", "2013-11-02": "Deepavali", - "2013-11-03": "Deepavali [In lieu]", + "2013-11-03": "Deepavali (in lieu)", "2013-11-05": "Awal Muharram (Hijri New Year)", "2013-12-25": "Christmas Day", "2014-01-14": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2014-01-31": "Chinese New Year", "2014-02-01": "Chinese New Year Holiday", - "2014-02-02": "Chinese New Year Holiday [In lieu]", + "2014-02-02": "Chinese New Year Holiday (in lieu)", "2014-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2014-04-26": "Birthday of the Sultan of Terengganu", - "2014-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2014-04-27": "Birthday of the Sultan of Terengganu (in lieu)", "2014-05-01": "Labour Day", "2014-05-13": "Vesak Day", "2014-06-07": "Birthday of SPB Yang di-Pertuan Agong", - "2014-06-08": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2014-06-08": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2014-07-15": "Nuzul Al-Quran Day", "2014-07-28": "Hari Raya Puasa", "2014-07-29": "Second day of Hari Raya Puasa", @@ -1260,12 +1260,12 @@ "2014-10-04": "Arafat Day", "2014-10-05": "Hari Raya Haji", "2014-10-06": "Hari Raya Haji", - "2014-10-07": "Arafat Day [In lieu]", + "2014-10-07": "Arafat Day (in lieu)", "2014-10-22": "Deepavali", "2014-10-25": "Awal Muharram (Hijri New Year)", "2014-12-25": "Christmas Day", "2015-01-03": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2015-01-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2015-01-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2015-02-19": "Chinese New Year", "2015-02-20": "Chinese New Year Holiday", "2015-03-04": "Anniversary of the Installation of the Sultan of Terengganu", @@ -1273,12 +1273,12 @@ "2015-05-01": "Labour Day", "2015-05-03": "Vesak Day", "2015-06-06": "Birthday of SPB Yang di-Pertuan Agong", - "2015-06-07": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2015-06-07": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2015-07-04": "Nuzul Al-Quran Day", - "2015-07-05": "Nuzul Al-Quran Day [In lieu]", + "2015-07-05": "Nuzul Al-Quran Day (in lieu)", "2015-07-17": "Hari Raya Puasa", "2015-07-18": "Second day of Hari Raya Puasa", - "2015-07-19": "Second day of Hari Raya Puasa [In lieu]", + "2015-07-19": "Second day of Hari Raya Puasa (in lieu)", "2015-08-31": "National Day", "2015-09-16": "Malaysia Day", "2015-09-23": "Arafat Day", @@ -1294,9 +1294,9 @@ "2016-04-26": "Birthday of the Sultan of Terengganu", "2016-05-01": "Labour Day", "2016-05-21": "Vesak Day", - "2016-05-22": "Vesak Day [In lieu]", + "2016-05-22": "Vesak Day (in lieu)", "2016-06-04": "Birthday of SPB Yang di-Pertuan Agong", - "2016-06-05": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2016-06-05": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2016-06-22": "Nuzul Al-Quran Day", "2016-07-06": "Hari Raya Puasa", "2016-07-07": "Second day of Hari Raya Puasa", @@ -1307,45 +1307,45 @@ "2016-09-16": "Malaysia Day", "2016-10-02": "Awal Muharram (Hijri New Year)", "2016-10-29": "Deepavali", - "2016-10-30": "Deepavali [In lieu]", + "2016-10-30": "Deepavali (in lieu)", "2016-12-12": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2016-12-25": "Christmas Day", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year Holiday", - "2017-01-30": "Chinese New Year [In lieu]", + "2017-01-30": "Chinese New Year (in lieu)", "2017-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2017-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2017-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", "2017-04-26": "Birthday of the Sultan of Terengganu", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", "2017-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2017-06-04": "Birthday of SPB Yang di-Pertuan Agong [In lieu]", + "2017-06-04": "Birthday of SPB Yang di-Pertuan Agong (in lieu)", "2017-06-12": "Nuzul Al-Quran Day", "2017-06-25": "Hari Raya Puasa", "2017-06-26": "Second day of Hari Raya Puasa", "2017-08-31": "Arafat Day; National Day", "2017-09-01": "Hari Raya Haji", "2017-09-02": "Hari Raya Haji", - "2017-09-03": "Hari Raya Haji [In lieu]", + "2017-09-03": "Hari Raya Haji (in lieu)", "2017-09-16": "Malaysia Day", - "2017-09-17": "Malaysia Day [In lieu]", + "2017-09-17": "Malaysia Day (in lieu)", "2017-09-22": "Awal Muharram (Hijri New Year)", "2017-10-18": "Deepavali", "2017-12-01": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2017-12-25": "Christmas Day", "2018-02-16": "Chinese New Year", "2018-02-17": "Chinese New Year Holiday", - "2018-02-18": "Chinese New Year Holiday [In lieu]", + "2018-02-18": "Chinese New Year Holiday (in lieu)", "2018-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2018-04-26": "Birthday of the Sultan of Terengganu", "2018-05-01": "Labour Day", "2018-05-09": "Malaysia General Election Holiday", "2018-05-29": "Vesak Day", "2018-06-02": "Nuzul Al-Quran Day", - "2018-06-03": "Nuzul Al-Quran Day [In lieu]", + "2018-06-03": "Nuzul Al-Quran Day (in lieu)", "2018-06-15": "Hari Raya Puasa", "2018-06-16": "Second day of Hari Raya Puasa", - "2018-06-17": "Second day of Hari Raya Puasa [In lieu]", + "2018-06-17": "Second day of Hari Raya Puasa (in lieu)", "2018-08-21": "Arafat Day", "2018-08-22": "Hari Raya Haji", "2018-08-23": "Hari Raya Haji", @@ -1370,17 +1370,17 @@ "2019-08-10": "Arafat Day", "2019-08-11": "Hari Raya Haji", "2019-08-12": "Hari Raya Haji", - "2019-08-13": "Arafat Day [In lieu]", + "2019-08-13": "Arafat Day (in lieu)", "2019-08-31": "National Day", - "2019-09-01": "Awal Muharram (Hijri New Year); National Day [In lieu]", + "2019-09-01": "Awal Muharram (Hijri New Year); National Day (in lieu)", "2019-09-16": "Malaysia Day", "2019-10-27": "Deepavali", "2019-11-09": "Maulidur Rasul (Birthday of the Prophet Muhammad)", - "2019-11-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) [In lieu]", + "2019-11-10": "Maulidur Rasul (Birthday of the Prophet Muhammad) (in lieu)", "2019-12-25": "Christmas Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year Holiday", - "2020-01-27": "Chinese New Year [In lieu]", + "2020-01-27": "Chinese New Year (in lieu)", "2020-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2020-03-22": "Isra and Mi'raj", "2020-04-26": "Birthday of the Sultan of Terengganu", @@ -1393,23 +1393,23 @@ "2020-07-30": "Arafat Day", "2020-07-31": "Hari Raya Haji", "2020-08-01": "Hari Raya Haji", - "2020-08-02": "Hari Raya Haji [In lieu]", + "2020-08-02": "Hari Raya Haji (in lieu)", "2020-08-20": "Awal Muharram (Hijri New Year)", "2020-08-31": "National Day", "2020-09-16": "Malaysia Day", "2020-10-29": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2020-11-14": "Deepavali", - "2020-11-15": "Deepavali [In lieu]", + "2020-11-15": "Deepavali (in lieu)", "2020-12-25": "Christmas Day", "2021-02-12": "Chinese New Year", "2021-02-13": "Chinese New Year Holiday", - "2021-02-14": "Chinese New Year Holiday [In lieu]", + "2021-02-14": "Chinese New Year Holiday (in lieu)", "2021-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2021-03-11": "Isra and Mi'raj", "2021-04-26": "Birthday of the Sultan of Terengganu", "2021-04-29": "Nuzul Al-Quran Day", "2021-05-01": "Labour Day", - "2021-05-02": "Labour Day [In lieu]", + "2021-05-02": "Labour Day (in lieu)", "2021-05-13": "Hari Raya Puasa", "2021-05-14": "Second day of Hari Raya Puasa", "2021-05-26": "Vesak Day", @@ -1423,7 +1423,7 @@ "2021-10-19": "Maulidur Rasul (Birthday of the Prophet Muhammad)", "2021-11-04": "Deepavali", "2021-12-25": "Christmas Day", - "2021-12-26": "Christmas Day [In lieu]", + "2021-12-26": "Christmas Day (in lieu)", "2022-02-01": "Chinese New Year", "2022-02-02": "Chinese New Year Holiday", "2022-03-01": "Isra and Mi'raj", @@ -1439,7 +1439,7 @@ "2022-07-09": "Arafat Day", "2022-07-10": "Hari Raya Haji", "2022-07-11": "Hari Raya Haji", - "2022-07-12": "Arafat Day [In lieu]", + "2022-07-12": "Arafat Day (in lieu)", "2022-07-30": "Awal Muharram (Hijri New Year)", "2022-08-31": "National Day", "2022-09-16": "Malaysia Day", @@ -1449,14 +1449,14 @@ "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year Holiday", "2023-02-18": "Isra and Mi'raj", - "2023-02-19": "Isra and Mi'raj [In lieu]", + "2023-02-19": "Isra and Mi'raj (in lieu)", "2023-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2023-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2023-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", "2023-04-08": "Nuzul Al-Quran Day", - "2023-04-09": "Nuzul Al-Quran Day [In lieu]", + "2023-04-09": "Nuzul Al-Quran Day (in lieu)", "2023-04-22": "Hari Raya Puasa", "2023-04-23": "Second day of Hari Raya Puasa", - "2023-04-24": "Hari Raya Puasa [In lieu]", + "2023-04-24": "Hari Raya Puasa (in lieu)", "2023-04-26": "Birthday of the Sultan of Terengganu", "2023-05-01": "Labour Day", "2023-05-04": "Vesak Day", @@ -1467,14 +1467,14 @@ "2023-07-19": "Awal Muharram (Hijri New Year) (estimated)", "2023-08-31": "National Day", "2023-09-16": "Malaysia Day", - "2023-09-17": "Malaysia Day [In lieu]", + "2023-09-17": "Malaysia Day (in lieu)", "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-12-25": "Christmas Day", "2024-02-08": "Isra and Mi'raj (estimated)", "2024-02-10": "Chinese New Year (estimated)", "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year (estimated) [In lieu]", + "2024-02-12": "Chinese New Year (estimated) (in lieu)", "2024-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2024-03-27": "Nuzul Al-Quran Day (estimated)", "2024-04-10": "Hari Raya Puasa (estimated)", @@ -1486,10 +1486,10 @@ "2024-06-15": "Arafat Day (estimated)", "2024-06-16": "Hari Raya Haji (estimated)", "2024-06-17": "Hari Raya Haji (estimated)", - "2024-06-18": "Arafat Day (estimated) [In lieu]", + "2024-06-18": "Arafat Day (estimated) (in lieu)", "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", "2024-08-31": "National Day", - "2024-09-01": "National Day [In lieu]", + "2024-09-01": "National Day (in lieu)", "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2024-09-16": "Malaysia Day", "2024-10-30": "Deepavali", @@ -1502,14 +1502,14 @@ "2025-03-30": "Hari Raya Puasa (estimated)", "2025-03-31": "Second day of Hari Raya Puasa (estimated)", "2025-04-26": "Birthday of the Sultan of Terengganu", - "2025-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2025-04-27": "Birthday of the Sultan of Terengganu (in lieu)", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", "2025-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2025-06-05": "Arafat Day (estimated)", "2025-06-06": "Hari Raya Haji (estimated)", "2025-06-07": "Hari Raya Haji (estimated)", - "2025-06-08": "Hari Raya Haji (estimated) [In lieu]", + "2025-06-08": "Hari Raya Haji (estimated) (in lieu)", "2025-06-26": "Awal Muharram (Hijri New Year) (estimated)", "2025-08-31": "National Day", "2025-09-04": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1523,7 +1523,7 @@ "2026-03-06": "Nuzul Al-Quran Day (estimated)", "2026-03-20": "Hari Raya Puasa (estimated)", "2026-03-21": "Second day of Hari Raya Puasa (estimated)", - "2026-03-22": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2026-03-22": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2026-04-26": "Birthday of the Sultan of Terengganu", "2026-05-01": "Labour Day; Vesak Day (estimated)", "2026-05-26": "Arafat Day (estimated)", @@ -1535,54 +1535,54 @@ "2026-08-31": "National Day", "2026-09-16": "Malaysia Day", "2026-11-07": "Deepavali", - "2026-11-08": "Deepavali [In lieu]", + "2026-11-08": "Deepavali (in lieu)", "2026-12-25": "Christmas Day", "2027-01-05": "Isra and Mi'raj (estimated)", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year Holiday (estimated)", - "2027-02-08": "Chinese New Year (estimated) [In lieu]", + "2027-02-08": "Chinese New Year (estimated) (in lieu)", "2027-02-24": "Nuzul Al-Quran Day (estimated)", "2027-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-10": "Second day of Hari Raya Puasa (estimated)", "2027-04-26": "Birthday of the Sultan of Terengganu", "2027-05-01": "Labour Day", - "2027-05-02": "Labour Day [In lieu]", + "2027-05-02": "Labour Day (in lieu)", "2027-05-15": "Arafat Day (estimated)", "2027-05-16": "Hari Raya Haji (estimated)", "2027-05-17": "Hari Raya Haji (estimated)", - "2027-05-18": "Arafat Day (estimated) [In lieu]", + "2027-05-18": "Arafat Day (estimated) (in lieu)", "2027-05-20": "Vesak Day (estimated)", "2027-06-06": "Awal Muharram (Hijri New Year) (estimated)", "2027-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2027-08-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2027-08-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2027-08-31": "National Day", "2027-09-16": "Malaysia Day", "2027-10-27": "Deepavali", "2027-12-25": "Christmas Day; Isra and Mi'raj (estimated)", - "2027-12-26": "Christmas Day [In lieu]; Isra and Mi'raj (estimated) [In lieu]", + "2027-12-26": "Christmas Day (in lieu); Isra and Mi'raj (estimated) (in lieu)", "2028-01-26": "Chinese New Year (estimated)", "2028-01-27": "Chinese New Year Holiday (estimated)", "2028-02-13": "Nuzul Al-Quran Day (estimated)", "2028-02-26": "Hari Raya Puasa (estimated)", "2028-02-27": "Second day of Hari Raya Puasa (estimated)", - "2028-02-28": "Hari Raya Puasa (estimated) [In lieu]", + "2028-02-28": "Hari Raya Puasa (estimated) (in lieu)", "2028-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2028-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2028-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", "2028-04-26": "Birthday of the Sultan of Terengganu", "2028-05-01": "Labour Day", "2028-05-04": "Arafat Day (estimated)", "2028-05-05": "Hari Raya Haji (estimated)", "2028-05-06": "Hari Raya Haji (estimated)", - "2028-05-07": "Hari Raya Haji (estimated) [In lieu]", + "2028-05-07": "Hari Raya Haji (estimated) (in lieu)", "2028-05-09": "Vesak Day (estimated)", "2028-05-25": "Awal Muharram (Hijri New Year) (estimated)", "2028-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2028-08-03": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2028-08-31": "National Day", "2028-09-16": "Malaysia Day", - "2028-09-17": "Malaysia Day [In lieu]", + "2028-09-17": "Malaysia Day (in lieu)", "2028-11-14": "Deepavali", "2028-12-14": "Isra and Mi'raj (estimated)", "2028-12-25": "Christmas Day", @@ -1613,34 +1613,34 @@ "2030-04-12": "Arafat Day (estimated)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-14": "Hari Raya Haji (estimated)", - "2030-04-15": "Hari Raya Haji (estimated) [In lieu]", + "2030-04-15": "Hari Raya Haji (estimated) (in lieu)", "2030-04-26": "Birthday of the Sultan of Terengganu", "2030-05-01": "Labour Day", "2030-05-03": "Awal Muharram (Hijri New Year) (estimated)", "2030-05-16": "Vesak Day (estimated)", "2030-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2030-07-13": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2030-07-14": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2030-08-31": "National Day", - "2030-09-01": "National Day [In lieu]", + "2030-09-01": "National Day (in lieu)", "2030-09-16": "Malaysia Day", "2030-10-25": "Deepavali", "2030-11-23": "Isra and Mi'raj (estimated)", - "2030-11-24": "Isra and Mi'raj (estimated) [In lieu]", + "2030-11-24": "Isra and Mi'raj (estimated) (in lieu)", "2030-12-25": "Christmas Day", "2031-01-11": "Nuzul Al-Quran Day (estimated)", - "2031-01-12": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2031-01-12": "Nuzul Al-Quran Day (estimated) (in lieu)", "2031-01-23": "Chinese New Year (estimated)", "2031-01-24": "Chinese New Year Holiday (estimated); Hari Raya Puasa (estimated)", "2031-01-25": "Second day of Hari Raya Puasa (estimated)", - "2031-01-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2031-01-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2031-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2031-04-01": "Arafat Day (estimated)", "2031-04-02": "Hari Raya Haji (estimated)", "2031-04-03": "Hari Raya Haji (estimated)", "2031-04-23": "Awal Muharram (Hijri New Year) (estimated)", "2031-04-26": "Birthday of the Sultan of Terengganu", - "2031-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2031-04-27": "Birthday of the Sultan of Terengganu (in lieu)", "2031-05-01": "Labour Day", "2031-05-06": "Vesak Day (estimated)", "2031-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -1662,7 +1662,7 @@ "2032-04-11": "Awal Muharram (Hijri New Year) (estimated)", "2032-04-26": "Birthday of the Sultan of Terengganu", "2032-05-01": "Labour Day", - "2032-05-02": "Labour Day [In lieu]", + "2032-05-02": "Labour Day (in lieu)", "2032-05-23": "Vesak Day (estimated)", "2032-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2032-06-20": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -1671,7 +1671,7 @@ "2032-11-01": "Deepavali; Isra and Mi'raj (estimated)", "2032-12-20": "Nuzul Al-Quran Day (estimated)", "2032-12-25": "Christmas Day", - "2032-12-26": "Christmas Day [In lieu]", + "2032-12-26": "Christmas Day (in lieu)", "2033-01-02": "Hari Raya Puasa (estimated)", "2033-01-03": "Second day of Hari Raya Puasa (estimated)", "2033-01-31": "Chinese New Year (estimated)", @@ -1680,7 +1680,7 @@ "2033-03-10": "Arafat Day (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-03-12": "Hari Raya Haji (estimated)", - "2033-03-13": "Hari Raya Haji (estimated) [In lieu]", + "2033-03-13": "Hari Raya Haji (estimated) (in lieu)", "2033-04-01": "Awal Muharram (Hijri New Year) (estimated)", "2033-04-26": "Birthday of the Sultan of Terengganu", "2033-05-01": "Labour Day", @@ -1694,14 +1694,14 @@ "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-24": "Second day of Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2033-12-26": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year Holiday (estimated)", "2034-02-28": "Arafat Day (estimated)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-03-02": "Hari Raya Haji (estimated)", "2034-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2034-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2034-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", "2034-03-21": "Awal Muharram (Hijri New Year) (estimated)", "2034-04-26": "Birthday of the Sultan of Terengganu", "2034-05-01": "Labour Day", @@ -1710,7 +1710,7 @@ "2034-06-05": "Birthday of SPB Yang di-Pertuan Agong", "2034-08-31": "National Day", "2034-09-16": "Malaysia Day", - "2034-09-17": "Malaysia Day [In lieu]", + "2034-09-17": "Malaysia Day (in lieu)", "2034-10-10": "Isra and Mi'raj (estimated)", "2034-11-09": "Deepavali", "2034-11-28": "Nuzul Al-Quran Day (estimated)", @@ -1722,7 +1722,7 @@ "2035-02-17": "Arafat Day (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", "2035-02-19": "Hari Raya Haji (estimated)", - "2035-02-20": "Arafat Day (estimated) [In lieu]", + "2035-02-20": "Arafat Day (estimated) (in lieu)", "2035-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2035-03-11": "Awal Muharram (Hijri New Year) (estimated)", "2035-04-26": "Birthday of the Sultan of Terengganu", @@ -1733,13 +1733,13 @@ "2035-08-31": "National Day", "2035-09-16": "Malaysia Day", "2035-09-29": "Isra and Mi'raj (estimated)", - "2035-09-30": "Isra and Mi'raj (estimated) [In lieu]", + "2035-09-30": "Isra and Mi'raj (estimated) (in lieu)", "2035-10-29": "Deepavali", "2035-11-17": "Nuzul Al-Quran Day (estimated)", - "2035-11-18": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2035-11-18": "Nuzul Al-Quran Day (estimated) (in lieu)", "2035-12-01": "Hari Raya Puasa (estimated)", "2035-12-02": "Second day of Hari Raya Puasa (estimated)", - "2035-12-03": "Hari Raya Puasa (estimated) [In lieu]", + "2035-12-03": "Hari Raya Puasa (estimated) (in lieu)", "2035-12-25": "Christmas Day", "2036-01-28": "Chinese New Year (estimated)", "2036-01-29": "Chinese New Year Holiday (estimated)", @@ -1749,11 +1749,11 @@ "2036-02-28": "Awal Muharram (Hijri New Year) (estimated)", "2036-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2036-04-26": "Birthday of the Sultan of Terengganu", - "2036-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2036-04-27": "Birthday of the Sultan of Terengganu (in lieu)", "2036-05-01": "Labour Day", "2036-05-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2036-05-10": "Vesak Day (estimated)", - "2036-05-11": "Vesak Day (estimated) [In lieu]", + "2036-05-11": "Vesak Day (estimated) (in lieu)", "2036-06-02": "Birthday of SPB Yang di-Pertuan Agong", "2036-08-31": "National Day", "2036-09-16": "Malaysia Day", @@ -1785,29 +1785,29 @@ "2038-01-15": "Arafat Day (estimated)", "2038-01-16": "Hari Raya Haji (estimated)", "2038-01-17": "Hari Raya Haji (estimated)", - "2038-01-18": "Hari Raya Haji (estimated) [In lieu]", + "2038-01-18": "Hari Raya Haji (estimated) (in lieu)", "2038-02-04": "Chinese New Year (estimated)", "2038-02-05": "Awal Muharram (Hijri New Year) (estimated); Chinese New Year Holiday (estimated)", "2038-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2038-04-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2038-04-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2038-04-26": "Birthday of the Sultan of Terengganu", "2038-05-01": "Labour Day", - "2038-05-02": "Labour Day [In lieu]", + "2038-05-02": "Labour Day (in lieu)", "2038-05-18": "Vesak Day (estimated)", "2038-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2038-08-28": "Isra and Mi'raj (estimated)", - "2038-08-29": "Isra and Mi'raj (estimated) [In lieu]", + "2038-08-29": "Isra and Mi'raj (estimated) (in lieu)", "2038-08-31": "National Day", "2038-09-16": "Malaysia Day", "2038-10-16": "Nuzul Al-Quran Day (estimated)", - "2038-10-17": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2038-10-17": "Nuzul Al-Quran Day (estimated) (in lieu)", "2038-10-26": "Deepavali", "2038-10-29": "Hari Raya Puasa (estimated)", "2038-10-30": "Second day of Hari Raya Puasa (estimated)", - "2038-10-31": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2038-10-31": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2038-12-25": "Christmas Day", - "2038-12-26": "Christmas Day [In lieu]", + "2038-12-26": "Christmas Day (in lieu)", "2039-01-04": "Arafat Day (estimated)", "2039-01-05": "Hari Raya Haji (estimated)", "2039-01-06": "Hari Raya Haji (estimated)", @@ -1819,7 +1819,7 @@ "2039-04-26": "Birthday of the Sultan of Terengganu", "2039-05-01": "Labour Day", "2039-05-07": "Vesak Day (estimated)", - "2039-05-08": "Vesak Day (estimated) [In lieu]", + "2039-05-08": "Vesak Day (estimated) (in lieu)", "2039-06-06": "Birthday of SPB Yang di-Pertuan Agong", "2039-08-17": "Isra and Mi'raj (estimated)", "2039-08-31": "National Day", @@ -1847,16 +1847,16 @@ "2040-10-07": "Hari Raya Puasa (estimated)", "2040-10-08": "Second day of Hari Raya Puasa (estimated)", "2040-11-03": "Deepavali", - "2040-11-04": "Deepavali [In lieu]", + "2040-11-04": "Deepavali (in lieu)", "2040-12-13": "Arafat Day (estimated)", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-15": "Hari Raya Haji (estimated)", - "2040-12-16": "Hari Raya Haji (estimated) [In lieu]", + "2040-12-16": "Hari Raya Haji (estimated) (in lieu)", "2040-12-25": "Christmas Day", "2041-01-04": "Awal Muharram (Hijri New Year) (estimated)", "2041-02-01": "Chinese New Year (estimated)", "2041-02-02": "Chinese New Year Holiday (estimated)", - "2041-02-03": "Chinese New Year Holiday (estimated) [In lieu]", + "2041-02-03": "Chinese New Year Holiday (estimated) (in lieu)", "2041-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2041-03-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2041-04-26": "Birthday of the Sultan of Terengganu", @@ -1865,7 +1865,7 @@ "2041-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2041-07-25": "Isra and Mi'raj (estimated)", "2041-08-31": "National Day", - "2041-09-01": "National Day [In lieu]", + "2041-09-01": "National Day (in lieu)", "2041-09-13": "Nuzul Al-Quran Day (estimated)", "2041-09-16": "Malaysia Day", "2041-09-26": "Hari Raya Puasa (estimated)", @@ -1880,7 +1880,7 @@ "2042-01-23": "Chinese New Year Holiday (estimated)", "2042-03-04": "Anniversary of the Installation of the Sultan of Terengganu; Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2042-04-26": "Birthday of the Sultan of Terengganu", - "2042-04-27": "Birthday of the Sultan of Terengganu [In lieu]", + "2042-04-27": "Birthday of the Sultan of Terengganu (in lieu)", "2042-05-01": "Labour Day", "2042-05-04": "Vesak Day (estimated)", "2042-06-02": "Birthday of SPB Yang di-Pertuan Agong", @@ -1893,7 +1893,7 @@ "2042-11-22": "Arafat Day (estimated)", "2042-11-23": "Hari Raya Haji (estimated)", "2042-11-24": "Hari Raya Haji (estimated)", - "2042-11-25": "Arafat Day (estimated) [In lieu]", + "2042-11-25": "Arafat Day (estimated) (in lieu)", "2042-12-14": "Awal Muharram (Hijri New Year) (estimated)", "2042-12-25": "Christmas Day", "2043-02-10": "Chinese New Year (estimated)", @@ -1903,19 +1903,19 @@ "2043-04-26": "Birthday of the Sultan of Terengganu", "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", - "2043-05-24": "Vesak Day (estimated) [In lieu]", + "2043-05-24": "Vesak Day (estimated) (in lieu)", "2043-06-01": "Birthday of SPB Yang di-Pertuan Agong", "2043-07-04": "Isra and Mi'raj (estimated)", - "2043-07-05": "Isra and Mi'raj (estimated) [In lieu]", + "2043-07-05": "Isra and Mi'raj (estimated) (in lieu)", "2043-08-22": "Nuzul Al-Quran Day (estimated)", - "2043-08-23": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2043-08-23": "Nuzul Al-Quran Day (estimated) (in lieu)", "2043-08-31": "National Day", "2043-09-04": "Hari Raya Puasa (estimated)", "2043-09-05": "Second day of Hari Raya Puasa (estimated)", - "2043-09-06": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2043-09-06": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2043-09-16": "Malaysia Day", "2043-10-31": "Deepavali", - "2043-11-01": "Deepavali [In lieu]", + "2043-11-01": "Deepavali (in lieu)", "2043-11-11": "Arafat Day (estimated)", "2043-11-12": "Hari Raya Haji (estimated)", "2043-11-13": "Hari Raya Haji (estimated)", @@ -1923,7 +1923,7 @@ "2043-12-25": "Christmas Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year Holiday (estimated)", - "2044-02-01": "Chinese New Year (estimated) [In lieu]", + "2044-02-01": "Chinese New Year (estimated) (in lieu)", "2044-02-11": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2044-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2044-04-26": "Birthday of the Sultan of Terengganu", @@ -1945,9 +1945,9 @@ "2045-01-30": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year Holiday (estimated)", - "2045-02-19": "Chinese New Year Holiday (estimated) [In lieu]", + "2045-02-19": "Chinese New Year Holiday (estimated) (in lieu)", "2045-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2045-03-05": "Anniversary of the Installation of the Sultan of Terengganu [In lieu]", + "2045-03-05": "Anniversary of the Installation of the Sultan of Terengganu (in lieu)", "2045-04-26": "Birthday of the Sultan of Terengganu", "2045-05-01": "Labour Day; Vesak Day (estimated)", "2045-06-05": "Birthday of SPB Yang di-Pertuan Agong", @@ -1957,11 +1957,11 @@ "2045-08-15": "Second day of Hari Raya Puasa (estimated)", "2045-08-31": "National Day", "2045-09-16": "Malaysia Day", - "2045-09-17": "Malaysia Day [In lieu]", + "2045-09-17": "Malaysia Day (in lieu)", "2045-10-20": "Arafat Day (estimated)", "2045-10-21": "Hari Raya Haji (estimated)", "2045-10-22": "Hari Raya Haji (estimated)", - "2045-10-23": "Hari Raya Haji (estimated) [In lieu]", + "2045-10-23": "Hari Raya Haji (estimated) (in lieu)", "2045-11-07": "Deepavali", "2045-11-10": "Awal Muharram (Hijri New Year) (estimated)", "2045-12-25": "Christmas Day", @@ -1973,26 +1973,26 @@ "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", "2046-06-02": "Isra and Mi'raj (estimated)", - "2046-06-03": "Isra and Mi'raj (estimated) [In lieu]", + "2046-06-03": "Isra and Mi'raj (estimated) (in lieu)", "2046-06-04": "Birthday of SPB Yang di-Pertuan Agong", "2046-07-21": "Nuzul Al-Quran Day (estimated)", - "2046-07-22": "Nuzul Al-Quran Day (estimated) [In lieu]", + "2046-07-22": "Nuzul Al-Quran Day (estimated) (in lieu)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-04": "Second day of Hari Raya Puasa (estimated)", - "2046-08-05": "Second day of Hari Raya Puasa (estimated) [In lieu]", + "2046-08-05": "Second day of Hari Raya Puasa (estimated) (in lieu)", "2046-08-31": "National Day", "2046-09-16": "Malaysia Day", "2046-10-09": "Arafat Day (estimated)", "2046-10-10": "Hari Raya Haji (estimated)", "2046-10-11": "Hari Raya Haji (estimated)", "2046-10-27": "Deepavali", - "2046-10-28": "Deepavali [In lieu]", + "2046-10-28": "Deepavali (in lieu)", "2046-10-31": "Awal Muharram (Hijri New Year) (estimated)", "2046-12-25": "Christmas Day", "2047-01-08": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year Holiday (estimated)", - "2047-01-28": "Chinese New Year (estimated) [In lieu]", + "2047-01-28": "Chinese New Year (estimated) (in lieu)", "2047-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2047-04-26": "Birthday of the Sultan of Terengganu", "2047-05-01": "Labour Day", @@ -2003,7 +2003,7 @@ "2047-07-24": "Hari Raya Puasa (estimated)", "2047-07-25": "Second day of Hari Raya Puasa (estimated)", "2047-08-31": "National Day", - "2047-09-01": "National Day [In lieu]", + "2047-09-01": "National Day (in lieu)", "2047-09-16": "Malaysia Day", "2047-09-29": "Arafat Day (estimated)", "2047-09-30": "Hari Raya Haji (estimated)", @@ -2014,7 +2014,7 @@ "2047-12-29": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2048-02-14": "Chinese New Year (estimated)", "2048-02-15": "Chinese New Year Holiday (estimated)", - "2048-02-16": "Chinese New Year Holiday (estimated) [In lieu]", + "2048-02-16": "Chinese New Year Holiday (estimated) (in lieu)", "2048-03-04": "Anniversary of the Installation of the Sultan of Terengganu", "2048-04-26": "Birthday of the Sultan of Terengganu", "2048-05-01": "Labour Day", @@ -2029,7 +2029,7 @@ "2048-09-18": "Arafat Day (estimated)", "2048-09-19": "Hari Raya Haji (estimated)", "2048-09-20": "Hari Raya Haji (estimated)", - "2048-09-21": "Hari Raya Haji (estimated) [In lieu]", + "2048-09-21": "Hari Raya Haji (estimated) (in lieu)", "2048-10-09": "Awal Muharram (Hijri New Year) (estimated)", "2048-11-04": "Deepavali", "2048-12-18": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", @@ -2040,7 +2040,7 @@ "2049-04-26": "Birthday of the Sultan of Terengganu", "2049-04-29": "Isra and Mi'raj (estimated)", "2049-05-01": "Labour Day", - "2049-05-02": "Labour Day [In lieu]", + "2049-05-02": "Labour Day (in lieu)", "2049-05-16": "Vesak Day (estimated)", "2049-06-07": "Birthday of SPB Yang di-Pertuan Agong", "2049-06-18": "Nuzul Al-Quran Day (estimated)", @@ -2055,7 +2055,7 @@ "2049-10-25": "Deepavali", "2049-12-07": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2049-12-25": "Christmas Day", - "2049-12-26": "Christmas Day [In lieu]", + "2049-12-26": "Christmas Day (in lieu)", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year Holiday (estimated)", "2050-03-04": "Anniversary of the Installation of the Sultan of Terengganu", @@ -2070,13 +2070,13 @@ "2050-08-27": "Arafat Day (estimated)", "2050-08-28": "Hari Raya Haji (estimated)", "2050-08-29": "Hari Raya Haji (estimated)", - "2050-08-30": "Arafat Day (estimated) [In lieu]", + "2050-08-30": "Arafat Day (estimated) (in lieu)", "2050-08-31": "National Day", "2050-09-16": "Malaysia Day", "2050-09-17": "Awal Muharram (Hijri New Year) (estimated)", "2050-11-12": "Deepavali", - "2050-11-13": "Deepavali [In lieu]", + "2050-11-13": "Deepavali (in lieu)", "2050-11-26": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) [In lieu]", + "2050-11-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", "2050-12-25": "Christmas Day" } diff --git a/snapshots/countries/MZ_COMMON.json b/snapshots/countries/MZ_COMMON.json index 19b374c09..0a6189142 100644 --- a/snapshots/countries/MZ_COMMON.json +++ b/snapshots/countries/MZ_COMMON.json @@ -5,7 +5,7 @@ "1975-05-01": "International Workers' Day", "1975-06-25": "Independence Day", "1975-09-07": "Victory Day", - "1975-09-08": "Victory Day (Observed)", + "1975-09-08": "Victory Day (observed)", "1975-09-25": "Armed Forces Day", "1975-12-25": "Family Day", "1976-01-01": "International Fraternalism Day", @@ -20,20 +20,20 @@ "1977-02-03": "Heroes' Day", "1977-04-07": "Women's Day", "1977-05-01": "International Workers' Day", - "1977-05-02": "International Workers' Day (Observed)", + "1977-05-02": "International Workers' Day (observed)", "1977-06-25": "Independence Day", "1977-09-07": "Victory Day", "1977-09-25": "Armed Forces Day", - "1977-09-26": "Armed Forces Day (Observed)", + "1977-09-26": "Armed Forces Day (observed)", "1977-12-25": "Family Day", - "1977-12-26": "Family Day (Observed)", + "1977-12-26": "Family Day (observed)", "1978-01-01": "International Fraternalism Day", - "1978-01-02": "International Fraternalism Day (Observed)", + "1978-01-02": "International Fraternalism Day (observed)", "1978-02-03": "Heroes' Day", "1978-04-07": "Women's Day", "1978-05-01": "International Workers' Day", "1978-06-25": "Independence Day", - "1978-06-26": "Independence Day (Observed)", + "1978-06-26": "Independence Day (observed)", "1978-09-07": "Victory Day", "1978-09-25": "Armed Forces Day", "1978-12-25": "Family Day", @@ -47,12 +47,12 @@ "1979-12-25": "Family Day", "1980-01-01": "International Fraternalism Day", "1980-02-03": "Heroes' Day", - "1980-02-04": "Heroes' Day (Observed)", + "1980-02-04": "Heroes' Day (observed)", "1980-04-07": "Women's Day", "1980-05-01": "International Workers' Day", "1980-06-25": "Independence Day", "1980-09-07": "Victory Day", - "1980-09-08": "Victory Day (Observed)", + "1980-09-08": "Victory Day (observed)", "1980-09-25": "Armed Forces Day", "1980-12-25": "Family Day", "1981-01-01": "International Fraternalism Day", @@ -75,15 +75,15 @@ "1983-02-03": "Heroes' Day", "1983-04-07": "Women's Day", "1983-05-01": "International Workers' Day", - "1983-05-02": "International Workers' Day (Observed)", + "1983-05-02": "International Workers' Day (observed)", "1983-06-25": "Independence Day", "1983-09-07": "Victory Day", "1983-09-25": "Armed Forces Day", - "1983-09-26": "Armed Forces Day (Observed)", + "1983-09-26": "Armed Forces Day (observed)", "1983-12-25": "Family Day", - "1983-12-26": "Family Day (Observed)", + "1983-12-26": "Family Day (observed)", "1984-01-01": "International Fraternalism Day", - "1984-01-02": "International Fraternalism Day (Observed)", + "1984-01-02": "International Fraternalism Day (observed)", "1984-02-03": "Heroes' Day", "1984-04-07": "Women's Day", "1984-05-01": "International Workers' Day", @@ -93,9 +93,9 @@ "1984-12-25": "Family Day", "1985-01-01": "International Fraternalism Day", "1985-02-03": "Heroes' Day", - "1985-02-04": "Heroes' Day (Observed)", + "1985-02-04": "Heroes' Day (observed)", "1985-04-07": "Women's Day", - "1985-04-08": "Women's Day (Observed)", + "1985-04-08": "Women's Day (observed)", "1985-05-01": "International Workers' Day", "1985-06-25": "Independence Day", "1985-09-07": "Victory Day", @@ -107,7 +107,7 @@ "1986-05-01": "International Workers' Day", "1986-06-25": "Independence Day", "1986-09-07": "Victory Day", - "1986-09-08": "Victory Day (Observed)", + "1986-09-08": "Victory Day (observed)", "1986-09-25": "Armed Forces Day", "1986-12-25": "Family Day", "1987-01-01": "International Fraternalism Day", @@ -122,20 +122,20 @@ "1988-02-03": "Heroes' Day", "1988-04-07": "Women's Day", "1988-05-01": "International Workers' Day", - "1988-05-02": "International Workers' Day (Observed)", + "1988-05-02": "International Workers' Day (observed)", "1988-06-25": "Independence Day", "1988-09-07": "Victory Day", "1988-09-25": "Armed Forces Day", - "1988-09-26": "Armed Forces Day (Observed)", + "1988-09-26": "Armed Forces Day (observed)", "1988-12-25": "Family Day", - "1988-12-26": "Family Day (Observed)", + "1988-12-26": "Family Day (observed)", "1989-01-01": "International Fraternalism Day", - "1989-01-02": "International Fraternalism Day (Observed)", + "1989-01-02": "International Fraternalism Day (observed)", "1989-02-03": "Heroes' Day", "1989-04-07": "Women's Day", "1989-05-01": "International Workers' Day", "1989-06-25": "Independence Day", - "1989-06-26": "Independence Day (Observed)", + "1989-06-26": "Independence Day (observed)", "1989-09-07": "Victory Day", "1989-09-25": "Armed Forces Day", "1989-12-25": "Family Day", @@ -149,9 +149,9 @@ "1990-12-25": "Family Day", "1991-01-01": "International Fraternalism Day", "1991-02-03": "Heroes' Day", - "1991-02-04": "Heroes' Day (Observed)", + "1991-02-04": "Heroes' Day (observed)", "1991-04-07": "Women's Day", - "1991-04-08": "Women's Day (Observed)", + "1991-04-08": "Women's Day (observed)", "1991-05-01": "International Workers' Day", "1991-06-25": "Independence Day", "1991-09-07": "Victory Day", @@ -178,21 +178,21 @@ "1994-02-03": "Heroes' Day", "1994-04-07": "Women's Day", "1994-05-01": "International Workers' Day", - "1994-05-02": "International Workers' Day (Observed)", + "1994-05-02": "International Workers' Day (observed)", "1994-06-25": "Independence Day", "1994-09-07": "Victory Day", "1994-09-25": "Armed Forces Day", - "1994-09-26": "Armed Forces Day (Observed)", + "1994-09-26": "Armed Forces Day (observed)", "1994-10-04": "Peace and Reconciliation Day", "1994-12-25": "Family Day", - "1994-12-26": "Family Day (Observed)", + "1994-12-26": "Family Day (observed)", "1995-01-01": "International Fraternalism Day", - "1995-01-02": "International Fraternalism Day (Observed)", + "1995-01-02": "International Fraternalism Day (observed)", "1995-02-03": "Heroes' Day", "1995-04-07": "Women's Day", "1995-05-01": "International Workers' Day", "1995-06-25": "Independence Day", - "1995-06-26": "Independence Day (Observed)", + "1995-06-26": "Independence Day (observed)", "1995-09-07": "Victory Day", "1995-09-25": "Armed Forces Day", "1995-10-04": "Peace and Reconciliation Day", @@ -200,7 +200,7 @@ "1996-01-01": "International Fraternalism Day", "1996-02-03": "Heroes' Day", "1996-04-07": "Women's Day", - "1996-04-08": "Women's Day (Observed)", + "1996-04-08": "Women's Day (observed)", "1996-05-01": "International Workers' Day", "1996-06-25": "Independence Day", "1996-09-07": "Victory Day", @@ -213,7 +213,7 @@ "1997-05-01": "International Workers' Day", "1997-06-25": "Independence Day", "1997-09-07": "Victory Day", - "1997-09-08": "Victory Day (Observed)", + "1997-09-08": "Victory Day (observed)", "1997-09-25": "Armed Forces Day", "1997-10-04": "Peace and Reconciliation Day", "1997-12-25": "Family Day", @@ -225,7 +225,7 @@ "1998-09-07": "Victory Day", "1998-09-25": "Armed Forces Day", "1998-10-04": "Peace and Reconciliation Day", - "1998-10-05": "Peace and Reconciliation Day (Observed)", + "1998-10-05": "Peace and Reconciliation Day (observed)", "1998-12-25": "Family Day", "1999-01-01": "International Fraternalism Day", "1999-02-03": "Heroes' Day", @@ -241,7 +241,7 @@ "2000-04-07": "Women's Day", "2000-05-01": "International Workers' Day", "2000-06-25": "Independence Day", - "2000-06-26": "Independence Day (Observed)", + "2000-06-26": "Independence Day (observed)", "2000-09-07": "Victory Day", "2000-09-25": "Armed Forces Day", "2000-10-04": "Peace and Reconciliation Day", @@ -257,9 +257,9 @@ "2001-12-25": "Family Day", "2002-01-01": "International Fraternalism Day", "2002-02-03": "Heroes' Day", - "2002-02-04": "Heroes' Day (Observed)", + "2002-02-04": "Heroes' Day (observed)", "2002-04-07": "Women's Day", - "2002-04-08": "Women's Day (Observed)", + "2002-04-08": "Women's Day (observed)", "2002-05-01": "International Workers' Day", "2002-06-25": "Independence Day", "2002-09-07": "Victory Day", @@ -272,7 +272,7 @@ "2003-05-01": "International Workers' Day", "2003-06-25": "Independence Day", "2003-09-07": "Victory Day", - "2003-09-08": "Victory Day (Observed)", + "2003-09-08": "Victory Day (observed)", "2003-09-25": "Armed Forces Day", "2003-10-04": "Peace and Reconciliation Day", "2003-12-25": "Family Day", @@ -289,21 +289,21 @@ "2005-02-03": "Heroes' Day", "2005-04-07": "Women's Day", "2005-05-01": "International Workers' Day", - "2005-05-02": "International Workers' Day (Observed)", + "2005-05-02": "International Workers' Day (observed)", "2005-06-25": "Independence Day", "2005-09-07": "Victory Day", "2005-09-25": "Armed Forces Day", - "2005-09-26": "Armed Forces Day (Observed)", + "2005-09-26": "Armed Forces Day (observed)", "2005-10-04": "Peace and Reconciliation Day", "2005-12-25": "Family Day", - "2005-12-26": "Family Day (Observed)", + "2005-12-26": "Family Day (observed)", "2006-01-01": "International Fraternalism Day", - "2006-01-02": "International Fraternalism Day (Observed)", + "2006-01-02": "International Fraternalism Day (observed)", "2006-02-03": "Heroes' Day", "2006-04-07": "Women's Day", "2006-05-01": "International Workers' Day", "2006-06-25": "Independence Day", - "2006-06-26": "Independence Day (Observed)", + "2006-06-26": "Independence Day (observed)", "2006-09-07": "Victory Day", "2006-09-25": "Armed Forces Day", "2006-10-04": "Peace and Reconciliation Day", @@ -319,12 +319,12 @@ "2007-12-25": "Family Day", "2008-01-01": "International Fraternalism Day", "2008-02-03": "Heroes' Day", - "2008-02-04": "Heroes' Day (Observed)", + "2008-02-04": "Heroes' Day (observed)", "2008-04-07": "Women's Day", "2008-05-01": "International Workers' Day", "2008-06-25": "Independence Day", "2008-09-07": "Victory Day", - "2008-09-08": "Victory Day (Observed)", + "2008-09-08": "Victory Day (observed)", "2008-09-25": "Armed Forces Day", "2008-10-04": "Peace and Reconciliation Day", "2008-12-25": "Family Day", @@ -336,7 +336,7 @@ "2009-09-07": "Victory Day", "2009-09-25": "Armed Forces Day", "2009-10-04": "Peace and Reconciliation Day", - "2009-10-05": "Peace and Reconciliation Day (Observed)", + "2009-10-05": "Peace and Reconciliation Day (observed)", "2009-12-25": "Family Day", "2010-01-01": "International Fraternalism Day", "2010-02-03": "Heroes' Day", @@ -351,16 +351,16 @@ "2011-02-03": "Heroes' Day", "2011-04-07": "Women's Day", "2011-05-01": "International Workers' Day", - "2011-05-02": "International Workers' Day (Observed)", + "2011-05-02": "International Workers' Day (observed)", "2011-06-25": "Independence Day", "2011-09-07": "Victory Day", "2011-09-25": "Armed Forces Day", - "2011-09-26": "Armed Forces Day (Observed)", + "2011-09-26": "Armed Forces Day (observed)", "2011-10-04": "Peace and Reconciliation Day", "2011-12-25": "Family Day", - "2011-12-26": "Family Day (Observed)", + "2011-12-26": "Family Day (observed)", "2012-01-01": "International Fraternalism Day", - "2012-01-02": "International Fraternalism Day (Observed)", + "2012-01-02": "International Fraternalism Day (observed)", "2012-02-03": "Heroes' Day", "2012-04-07": "Women's Day", "2012-05-01": "International Workers' Day", @@ -371,9 +371,9 @@ "2012-12-25": "Family Day", "2013-01-01": "International Fraternalism Day", "2013-02-03": "Heroes' Day", - "2013-02-04": "Heroes' Day (Observed)", + "2013-02-04": "Heroes' Day (observed)", "2013-04-07": "Women's Day", - "2013-04-08": "Women's Day (Observed)", + "2013-04-08": "Women's Day (observed)", "2013-05-01": "International Workers' Day", "2013-06-25": "Independence Day", "2013-09-07": "Victory Day", @@ -386,7 +386,7 @@ "2014-05-01": "International Workers' Day", "2014-06-25": "Independence Day", "2014-09-07": "Victory Day", - "2014-09-08": "Victory Day (Observed)", + "2014-09-08": "Victory Day (observed)", "2014-09-25": "Armed Forces Day", "2014-10-04": "Peace and Reconciliation Day", "2014-12-25": "Family Day", @@ -398,27 +398,27 @@ "2015-09-07": "Victory Day", "2015-09-25": "Armed Forces Day", "2015-10-04": "Peace and Reconciliation Day", - "2015-10-05": "Peace and Reconciliation Day (Observed)", + "2015-10-05": "Peace and Reconciliation Day (observed)", "2015-12-25": "Family Day", "2016-01-01": "International Fraternalism Day", "2016-02-03": "Heroes' Day", "2016-04-07": "Women's Day", "2016-05-01": "International Workers' Day", - "2016-05-02": "International Workers' Day (Observed)", + "2016-05-02": "International Workers' Day (observed)", "2016-06-25": "Independence Day", "2016-09-07": "Victory Day", "2016-09-25": "Armed Forces Day", - "2016-09-26": "Armed Forces Day (Observed)", + "2016-09-26": "Armed Forces Day (observed)", "2016-10-04": "Peace and Reconciliation Day", "2016-12-25": "Family Day", - "2016-12-26": "Family Day (Observed)", + "2016-12-26": "Family Day (observed)", "2017-01-01": "International Fraternalism Day", - "2017-01-02": "International Fraternalism Day (Observed)", + "2017-01-02": "International Fraternalism Day (observed)", "2017-02-03": "Heroes' Day", "2017-04-07": "Women's Day", "2017-05-01": "International Workers' Day", "2017-06-25": "Independence Day", - "2017-06-26": "Independence Day (Observed)", + "2017-06-26": "Independence Day (observed)", "2017-09-07": "Victory Day", "2017-09-25": "Armed Forces Day", "2017-10-04": "Peace and Reconciliation Day", @@ -434,9 +434,9 @@ "2018-12-25": "Family Day", "2019-01-01": "International Fraternalism Day", "2019-02-03": "Heroes' Day", - "2019-02-04": "Heroes' Day (Observed)", + "2019-02-04": "Heroes' Day (observed)", "2019-04-07": "Women's Day", - "2019-04-08": "Women's Day (Observed)", + "2019-04-08": "Women's Day (observed)", "2019-05-01": "International Workers' Day", "2019-06-25": "Independence Day", "2019-09-07": "Victory Day", @@ -451,7 +451,7 @@ "2020-09-07": "Victory Day", "2020-09-25": "Armed Forces Day", "2020-10-04": "Peace and Reconciliation Day", - "2020-10-05": "Peace and Reconciliation Day (Observed)", + "2020-10-05": "Peace and Reconciliation Day (observed)", "2020-12-25": "Family Day", "2021-01-01": "International Fraternalism Day", "2021-02-03": "Heroes' Day", @@ -466,21 +466,21 @@ "2022-02-03": "Heroes' Day", "2022-04-07": "Women's Day", "2022-05-01": "International Workers' Day", - "2022-05-02": "International Workers' Day (Observed)", + "2022-05-02": "International Workers' Day (observed)", "2022-06-25": "Independence Day", "2022-09-07": "Victory Day", "2022-09-25": "Armed Forces Day", - "2022-09-26": "Armed Forces Day (Observed)", + "2022-09-26": "Armed Forces Day (observed)", "2022-10-04": "Peace and Reconciliation Day", "2022-12-25": "Family Day", - "2022-12-26": "Family Day (Observed)", + "2022-12-26": "Family Day (observed)", "2023-01-01": "International Fraternalism Day", - "2023-01-02": "International Fraternalism Day (Observed)", + "2023-01-02": "International Fraternalism Day (observed)", "2023-02-03": "Heroes' Day", "2023-04-07": "Women's Day", "2023-05-01": "International Workers' Day", "2023-06-25": "Independence Day", - "2023-06-26": "Independence Day (Observed)", + "2023-06-26": "Independence Day (observed)", "2023-09-07": "Victory Day", "2023-09-25": "Armed Forces Day", "2023-10-04": "Peace and Reconciliation Day", @@ -488,7 +488,7 @@ "2024-01-01": "International Fraternalism Day", "2024-02-03": "Heroes' Day", "2024-04-07": "Women's Day", - "2024-04-08": "Women's Day (Observed)", + "2024-04-08": "Women's Day (observed)", "2024-05-01": "International Workers' Day", "2024-06-25": "Independence Day", "2024-09-07": "Victory Day", @@ -501,7 +501,7 @@ "2025-05-01": "International Workers' Day", "2025-06-25": "Independence Day", "2025-09-07": "Victory Day", - "2025-09-08": "Victory Day (Observed)", + "2025-09-08": "Victory Day (observed)", "2025-09-25": "Armed Forces Day", "2025-10-04": "Peace and Reconciliation Day", "2025-12-25": "Family Day", @@ -513,7 +513,7 @@ "2026-09-07": "Victory Day", "2026-09-25": "Armed Forces Day", "2026-10-04": "Peace and Reconciliation Day", - "2026-10-05": "Peace and Reconciliation Day (Observed)", + "2026-10-05": "Peace and Reconciliation Day (observed)", "2026-12-25": "Family Day", "2027-01-01": "International Fraternalism Day", "2027-02-03": "Heroes' Day", @@ -529,7 +529,7 @@ "2028-04-07": "Women's Day", "2028-05-01": "International Workers' Day", "2028-06-25": "Independence Day", - "2028-06-26": "Independence Day (Observed)", + "2028-06-26": "Independence Day (observed)", "2028-09-07": "Victory Day", "2028-09-25": "Armed Forces Day", "2028-10-04": "Peace and Reconciliation Day", @@ -545,9 +545,9 @@ "2029-12-25": "Family Day", "2030-01-01": "International Fraternalism Day", "2030-02-03": "Heroes' Day", - "2030-02-04": "Heroes' Day (Observed)", + "2030-02-04": "Heroes' Day (observed)", "2030-04-07": "Women's Day", - "2030-04-08": "Women's Day (Observed)", + "2030-04-08": "Women's Day (observed)", "2030-05-01": "International Workers' Day", "2030-06-25": "Independence Day", "2030-09-07": "Victory Day", @@ -560,7 +560,7 @@ "2031-05-01": "International Workers' Day", "2031-06-25": "Independence Day", "2031-09-07": "Victory Day", - "2031-09-08": "Victory Day (Observed)", + "2031-09-08": "Victory Day (observed)", "2031-09-25": "Armed Forces Day", "2031-10-04": "Peace and Reconciliation Day", "2031-12-25": "Family Day", @@ -577,21 +577,21 @@ "2033-02-03": "Heroes' Day", "2033-04-07": "Women's Day", "2033-05-01": "International Workers' Day", - "2033-05-02": "International Workers' Day (Observed)", + "2033-05-02": "International Workers' Day (observed)", "2033-06-25": "Independence Day", "2033-09-07": "Victory Day", "2033-09-25": "Armed Forces Day", - "2033-09-26": "Armed Forces Day (Observed)", + "2033-09-26": "Armed Forces Day (observed)", "2033-10-04": "Peace and Reconciliation Day", "2033-12-25": "Family Day", - "2033-12-26": "Family Day (Observed)", + "2033-12-26": "Family Day (observed)", "2034-01-01": "International Fraternalism Day", - "2034-01-02": "International Fraternalism Day (Observed)", + "2034-01-02": "International Fraternalism Day (observed)", "2034-02-03": "Heroes' Day", "2034-04-07": "Women's Day", "2034-05-01": "International Workers' Day", "2034-06-25": "Independence Day", - "2034-06-26": "Independence Day (Observed)", + "2034-06-26": "Independence Day (observed)", "2034-09-07": "Victory Day", "2034-09-25": "Armed Forces Day", "2034-10-04": "Peace and Reconciliation Day", @@ -607,12 +607,12 @@ "2035-12-25": "Family Day", "2036-01-01": "International Fraternalism Day", "2036-02-03": "Heroes' Day", - "2036-02-04": "Heroes' Day (Observed)", + "2036-02-04": "Heroes' Day (observed)", "2036-04-07": "Women's Day", "2036-05-01": "International Workers' Day", "2036-06-25": "Independence Day", "2036-09-07": "Victory Day", - "2036-09-08": "Victory Day (Observed)", + "2036-09-08": "Victory Day (observed)", "2036-09-25": "Armed Forces Day", "2036-10-04": "Peace and Reconciliation Day", "2036-12-25": "Family Day", @@ -624,7 +624,7 @@ "2037-09-07": "Victory Day", "2037-09-25": "Armed Forces Day", "2037-10-04": "Peace and Reconciliation Day", - "2037-10-05": "Peace and Reconciliation Day (Observed)", + "2037-10-05": "Peace and Reconciliation Day (observed)", "2037-12-25": "Family Day", "2038-01-01": "International Fraternalism Day", "2038-02-03": "Heroes' Day", @@ -639,16 +639,16 @@ "2039-02-03": "Heroes' Day", "2039-04-07": "Women's Day", "2039-05-01": "International Workers' Day", - "2039-05-02": "International Workers' Day (Observed)", + "2039-05-02": "International Workers' Day (observed)", "2039-06-25": "Independence Day", "2039-09-07": "Victory Day", "2039-09-25": "Armed Forces Day", - "2039-09-26": "Armed Forces Day (Observed)", + "2039-09-26": "Armed Forces Day (observed)", "2039-10-04": "Peace and Reconciliation Day", "2039-12-25": "Family Day", - "2039-12-26": "Family Day (Observed)", + "2039-12-26": "Family Day (observed)", "2040-01-01": "International Fraternalism Day", - "2040-01-02": "International Fraternalism Day (Observed)", + "2040-01-02": "International Fraternalism Day (observed)", "2040-02-03": "Heroes' Day", "2040-04-07": "Women's Day", "2040-05-01": "International Workers' Day", @@ -659,9 +659,9 @@ "2040-12-25": "Family Day", "2041-01-01": "International Fraternalism Day", "2041-02-03": "Heroes' Day", - "2041-02-04": "Heroes' Day (Observed)", + "2041-02-04": "Heroes' Day (observed)", "2041-04-07": "Women's Day", - "2041-04-08": "Women's Day (Observed)", + "2041-04-08": "Women's Day (observed)", "2041-05-01": "International Workers' Day", "2041-06-25": "Independence Day", "2041-09-07": "Victory Day", @@ -674,7 +674,7 @@ "2042-05-01": "International Workers' Day", "2042-06-25": "Independence Day", "2042-09-07": "Victory Day", - "2042-09-08": "Victory Day (Observed)", + "2042-09-08": "Victory Day (observed)", "2042-09-25": "Armed Forces Day", "2042-10-04": "Peace and Reconciliation Day", "2042-12-25": "Family Day", @@ -686,27 +686,27 @@ "2043-09-07": "Victory Day", "2043-09-25": "Armed Forces Day", "2043-10-04": "Peace and Reconciliation Day", - "2043-10-05": "Peace and Reconciliation Day (Observed)", + "2043-10-05": "Peace and Reconciliation Day (observed)", "2043-12-25": "Family Day", "2044-01-01": "International Fraternalism Day", "2044-02-03": "Heroes' Day", "2044-04-07": "Women's Day", "2044-05-01": "International Workers' Day", - "2044-05-02": "International Workers' Day (Observed)", + "2044-05-02": "International Workers' Day (observed)", "2044-06-25": "Independence Day", "2044-09-07": "Victory Day", "2044-09-25": "Armed Forces Day", - "2044-09-26": "Armed Forces Day (Observed)", + "2044-09-26": "Armed Forces Day (observed)", "2044-10-04": "Peace and Reconciliation Day", "2044-12-25": "Family Day", - "2044-12-26": "Family Day (Observed)", + "2044-12-26": "Family Day (observed)", "2045-01-01": "International Fraternalism Day", - "2045-01-02": "International Fraternalism Day (Observed)", + "2045-01-02": "International Fraternalism Day (observed)", "2045-02-03": "Heroes' Day", "2045-04-07": "Women's Day", "2045-05-01": "International Workers' Day", "2045-06-25": "Independence Day", - "2045-06-26": "Independence Day (Observed)", + "2045-06-26": "Independence Day (observed)", "2045-09-07": "Victory Day", "2045-09-25": "Armed Forces Day", "2045-10-04": "Peace and Reconciliation Day", @@ -722,9 +722,9 @@ "2046-12-25": "Family Day", "2047-01-01": "International Fraternalism Day", "2047-02-03": "Heroes' Day", - "2047-02-04": "Heroes' Day (Observed)", + "2047-02-04": "Heroes' Day (observed)", "2047-04-07": "Women's Day", - "2047-04-08": "Women's Day (Observed)", + "2047-04-08": "Women's Day (observed)", "2047-05-01": "International Workers' Day", "2047-06-25": "Independence Day", "2047-09-07": "Victory Day", @@ -739,7 +739,7 @@ "2048-09-07": "Victory Day", "2048-09-25": "Armed Forces Day", "2048-10-04": "Peace and Reconciliation Day", - "2048-10-05": "Peace and Reconciliation Day (Observed)", + "2048-10-05": "Peace and Reconciliation Day (observed)", "2048-12-25": "Family Day", "2049-01-01": "International Fraternalism Day", "2049-02-03": "Heroes' Day", @@ -754,12 +754,12 @@ "2050-02-03": "Heroes' Day", "2050-04-07": "Women's Day", "2050-05-01": "International Workers' Day", - "2050-05-02": "International Workers' Day (Observed)", + "2050-05-02": "International Workers' Day (observed)", "2050-06-25": "Independence Day", "2050-09-07": "Victory Day", "2050-09-25": "Armed Forces Day", - "2050-09-26": "Armed Forces Day (Observed)", + "2050-09-26": "Armed Forces Day (observed)", "2050-10-04": "Peace and Reconciliation Day", "2050-12-25": "Family Day", - "2050-12-26": "Family Day (Observed)" + "2050-12-26": "Family Day (observed)" } diff --git a/snapshots/countries/NA_COMMON.json b/snapshots/countries/NA_COMMON.json index a2efcf821..f54c0aa64 100644 --- a/snapshots/countries/NA_COMMON.json +++ b/snapshots/countries/NA_COMMON.json @@ -37,7 +37,7 @@ "1992-12-26": "Family Day", "1993-01-01": "New Year's Day", "1993-03-21": "Independence Day", - "1993-03-22": "Independence Day (Observed)", + "1993-03-22": "Independence Day (observed)", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", "1993-05-01": "Workers' Day", @@ -48,13 +48,13 @@ "1993-09-10": "International Human Rights Day", "1993-12-25": "Christmas Day", "1993-12-26": "Family Day", - "1993-12-27": "Family Day (Observed)", + "1993-12-27": "Family Day (observed)", "1994-01-01": "New Year's Day", "1994-03-21": "Independence Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-01": "Workers' Day", - "1994-05-02": "Workers' Day (Observed)", + "1994-05-02": "Workers' Day (observed)", "1994-05-04": "Cassinga Day", "1994-05-12": "Ascension Day", "1994-05-25": "Africa Day", @@ -63,7 +63,7 @@ "1994-12-25": "Christmas Day", "1994-12-26": "Family Day", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-03-21": "Independence Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -72,7 +72,7 @@ "1995-05-25": "Africa Day; Ascension Day", "1995-08-26": "Heroes' Day", "1995-09-10": "International Human Rights Day", - "1995-09-11": "International Human Rights Day (Observed)", + "1995-09-11": "International Human Rights Day (observed)", "1995-12-25": "Christmas Day", "1995-12-26": "Family Day", "1996-01-01": "New Year's Day", @@ -93,10 +93,10 @@ "1997-03-31": "Easter Monday", "1997-05-01": "Workers' Day", "1997-05-04": "Cassinga Day", - "1997-05-05": "Cassinga Day (Observed)", + "1997-05-05": "Cassinga Day (observed)", "1997-05-08": "Ascension Day", "1997-05-25": "Africa Day", - "1997-05-26": "Africa Day (Observed)", + "1997-05-26": "Africa Day (observed)", "1997-08-26": "Heroes' Day", "1997-09-10": "International Human Rights Day", "1997-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1998-12-26": "Family Day", "1999-01-01": "New Year's Day", "1999-03-21": "Independence Day", - "1999-03-22": "Independence Day (Observed)", + "1999-03-22": "Independence Day (observed)", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", "1999-05-01": "Workers' Day", @@ -126,7 +126,7 @@ "1999-09-10": "International Human Rights Day", "1999-12-25": "Christmas Day", "1999-12-26": "Family Day", - "1999-12-27": "Family Day (Observed)", + "1999-12-27": "Family Day (observed)", "1999-12-31": "Y2K changeover", "2000-01-01": "New Year's Day", "2000-01-03": "Y2K changeover", @@ -139,7 +139,7 @@ "2000-06-01": "Ascension Day", "2000-08-26": "Heroes' Day", "2000-09-10": "International Human Rights Day", - "2000-09-11": "International Human Rights Day (Observed)", + "2000-09-11": "International Human Rights Day (observed)", "2000-12-25": "Christmas Day", "2000-12-26": "Family Day", "2001-01-01": "New Year's Day", @@ -151,7 +151,7 @@ "2001-05-24": "Ascension Day", "2001-05-25": "Africa Day", "2001-08-26": "Heroes' Day", - "2001-08-27": "Heroes' Day (Observed)", + "2001-08-27": "Heroes' Day (observed)", "2001-09-10": "International Human Rights Day", "2001-12-25": "Christmas Day", "2001-12-26": "Family Day", @@ -173,9 +173,9 @@ "2003-04-21": "Easter Monday", "2003-05-01": "Workers' Day", "2003-05-04": "Cassinga Day", - "2003-05-05": "Cassinga Day (Observed)", + "2003-05-05": "Cassinga Day (observed)", "2003-05-25": "Africa Day", - "2003-05-26": "Africa Day (Observed)", + "2003-05-26": "Africa Day (observed)", "2003-05-29": "Ascension Day", "2003-08-26": "Heroes' Day", "2003-09-10": "International Human Rights Day", @@ -183,7 +183,7 @@ "2003-12-26": "Family Day", "2004-01-01": "New Year's Day", "2004-03-21": "Independence Day", - "2004-03-22": "Independence Day (Observed)", + "2004-03-22": "Independence Day (observed)", "2004-04-09": "Good Friday", "2004-04-12": "Easter Monday", "2004-05-01": "Workers' Day", @@ -194,13 +194,13 @@ "2004-09-10": "International Human Rights Day", "2004-12-25": "Christmas Day", "2004-12-26": "Family Day", - "2004-12-27": "Family Day (Observed)", + "2004-12-27": "Family Day (observed)", "2005-01-01": "New Year's Day", "2005-03-21": "Independence Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-01": "Workers' Day", - "2005-05-02": "Workers' Day (Observed)", + "2005-05-02": "Workers' Day (observed)", "2005-05-04": "Cassinga Day", "2005-05-05": "Ascension Day", "2005-05-25": "Africa Day", @@ -209,7 +209,7 @@ "2005-12-25": "Christmas Day", "2005-12-26": "Family Day", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-03-21": "Independence Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -218,7 +218,7 @@ "2006-05-25": "Africa Day; Ascension Day", "2006-08-26": "Heroes' Day", "2006-09-10": "Day of the Namibian Women and International Human Rights Day", - "2006-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2006-09-11": "Day of the Namibian Women and International Human Rights Day (observed)", "2006-12-25": "Christmas Day", "2006-12-26": "Family Day", "2007-01-01": "New Year's Day", @@ -230,7 +230,7 @@ "2007-05-17": "Ascension Day", "2007-05-25": "Africa Day", "2007-08-26": "Heroes' Day", - "2007-08-27": "Heroes' Day (Observed)", + "2007-08-27": "Heroes' Day (observed)", "2007-09-10": "Day of the Namibian Women and International Human Rights Day", "2007-12-25": "Christmas Day", "2007-12-26": "Family Day", @@ -239,9 +239,9 @@ "2008-03-24": "Easter Monday", "2008-05-01": "Ascension Day; Workers' Day", "2008-05-04": "Cassinga Day", - "2008-05-05": "Cassinga Day (Observed)", + "2008-05-05": "Cassinga Day (observed)", "2008-05-25": "Africa Day", - "2008-05-26": "Africa Day (Observed)", + "2008-05-26": "Africa Day (observed)", "2008-08-26": "Heroes' Day", "2008-09-10": "Day of the Namibian Women and International Human Rights Day", "2008-12-25": "Christmas Day", @@ -260,7 +260,7 @@ "2009-12-26": "Family Day", "2010-01-01": "New Year's Day", "2010-03-21": "Independence Day", - "2010-03-22": "Independence Day (Observed)", + "2010-03-22": "Independence Day (observed)", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", "2010-05-01": "Workers' Day", @@ -271,13 +271,13 @@ "2010-09-10": "Day of the Namibian Women and International Human Rights Day", "2010-12-25": "Christmas Day", "2010-12-26": "Family Day", - "2010-12-27": "Family Day (Observed)", + "2010-12-27": "Family Day (observed)", "2011-01-01": "New Year's Day", "2011-03-21": "Independence Day", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-05-01": "Workers' Day", - "2011-05-02": "Workers' Day (Observed)", + "2011-05-02": "Workers' Day (observed)", "2011-05-04": "Cassinga Day", "2011-05-25": "Africa Day", "2011-06-02": "Ascension Day", @@ -286,7 +286,7 @@ "2011-12-25": "Christmas Day", "2011-12-26": "Family Day", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-03-21": "Independence Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -295,7 +295,7 @@ "2012-05-17": "Ascension Day", "2012-05-25": "Africa Day", "2012-08-26": "Heroes' Day", - "2012-08-27": "Heroes' Day (Observed)", + "2012-08-27": "Heroes' Day (observed)", "2012-09-10": "Day of the Namibian Women and International Human Rights Day", "2012-12-25": "Christmas Day", "2012-12-26": "Family Day", @@ -317,9 +317,9 @@ "2014-04-21": "Easter Monday", "2014-05-01": "Workers' Day", "2014-05-04": "Cassinga Day", - "2014-05-05": "Cassinga Day (Observed)", + "2014-05-05": "Cassinga Day (observed)", "2014-05-25": "Africa Day", - "2014-05-26": "Africa Day (Observed)", + "2014-05-26": "Africa Day (observed)", "2014-05-29": "Ascension Day", "2014-08-26": "Heroes' Day", "2014-09-10": "Day of the Namibian Women and International Human Rights Day", @@ -342,7 +342,7 @@ "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-05-01": "Workers' Day", - "2016-05-02": "Workers' Day (Observed)", + "2016-05-02": "Workers' Day (observed)", "2016-05-04": "Cassinga Day", "2016-05-05": "Ascension Day", "2016-05-25": "Africa Day", @@ -351,7 +351,7 @@ "2016-12-25": "Christmas Day", "2016-12-26": "Family Day", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-03-21": "Independence Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -360,7 +360,7 @@ "2017-05-25": "Africa Day; Ascension Day", "2017-08-26": "Heroes' Day", "2017-09-10": "Day of the Namibian Women and International Human Rights Day", - "2017-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2017-09-11": "Day of the Namibian Women and International Human Rights Day (observed)", "2017-12-25": "Christmas Day", "2017-12-26": "Family Day", "2018-01-01": "New Year's Day", @@ -372,7 +372,7 @@ "2018-05-10": "Ascension Day", "2018-05-25": "Africa Day", "2018-08-26": "Heroes' Day", - "2018-08-27": "Heroes' Day (Observed)", + "2018-08-27": "Heroes' Day (observed)", "2018-09-10": "Day of the Namibian Women and International Human Rights Day", "2018-12-25": "Christmas Day", "2018-12-26": "Family Day", @@ -402,7 +402,7 @@ "2020-12-26": "Family Day", "2021-01-01": "New Year's Day", "2021-03-21": "Independence Day", - "2021-03-22": "Independence Day (Observed)", + "2021-03-22": "Independence Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-05-01": "Workers' Day", @@ -413,13 +413,13 @@ "2021-09-10": "Day of the Namibian Women and International Human Rights Day", "2021-12-25": "Christmas Day", "2021-12-26": "Family Day", - "2021-12-27": "Family Day (Observed)", + "2021-12-27": "Family Day (observed)", "2022-01-01": "New Year's Day", "2022-03-21": "Independence Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-01": "Workers' Day", - "2022-05-02": "Workers' Day (Observed)", + "2022-05-02": "Workers' Day (observed)", "2022-05-04": "Cassinga Day", "2022-05-25": "Africa Day", "2022-05-26": "Ascension Day", @@ -428,7 +428,7 @@ "2022-12-25": "Christmas Day", "2022-12-26": "Family Day", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-03-21": "Independence Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -438,7 +438,7 @@ "2023-05-25": "Africa Day", "2023-08-26": "Heroes' Day", "2023-09-10": "Day of the Namibian Women and International Human Rights Day", - "2023-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2023-09-11": "Day of the Namibian Women and International Human Rights Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Family Day", "2024-01-01": "New Year's Day", @@ -459,9 +459,9 @@ "2025-04-21": "Easter Monday", "2025-05-01": "Workers' Day", "2025-05-04": "Cassinga Day", - "2025-05-05": "Cassinga Day (Observed)", + "2025-05-05": "Cassinga Day (observed)", "2025-05-25": "Africa Day", - "2025-05-26": "Africa Day (Observed)", + "2025-05-26": "Africa Day (observed)", "2025-05-29": "Ascension Day", "2025-08-26": "Heroes' Day", "2025-09-10": "Day of the Namibian Women and International Human Rights Day", @@ -481,7 +481,7 @@ "2026-12-26": "Family Day", "2027-01-01": "New Year's Day", "2027-03-21": "Independence Day", - "2027-03-22": "Independence Day (Observed)", + "2027-03-22": "Independence Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-05-01": "Workers' Day", @@ -492,7 +492,7 @@ "2027-09-10": "Day of the Namibian Women and International Human Rights Day", "2027-12-25": "Christmas Day", "2027-12-26": "Family Day", - "2027-12-27": "Family Day (Observed)", + "2027-12-27": "Family Day (observed)", "2028-01-01": "New Year's Day", "2028-03-21": "Independence Day", "2028-04-14": "Good Friday", @@ -502,7 +502,7 @@ "2028-05-25": "Africa Day; Ascension Day", "2028-08-26": "Heroes' Day", "2028-09-10": "Day of the Namibian Women and International Human Rights Day", - "2028-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2028-09-11": "Day of the Namibian Women and International Human Rights Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Family Day", "2029-01-01": "New Year's Day", @@ -514,7 +514,7 @@ "2029-05-10": "Ascension Day", "2029-05-25": "Africa Day", "2029-08-26": "Heroes' Day", - "2029-08-27": "Heroes' Day (Observed)", + "2029-08-27": "Heroes' Day (observed)", "2029-09-10": "Day of the Namibian Women and International Human Rights Day", "2029-12-25": "Christmas Day", "2029-12-26": "Family Day", @@ -536,17 +536,17 @@ "2031-04-14": "Easter Monday", "2031-05-01": "Workers' Day", "2031-05-04": "Cassinga Day", - "2031-05-05": "Cassinga Day (Observed)", + "2031-05-05": "Cassinga Day (observed)", "2031-05-22": "Ascension Day", "2031-05-25": "Africa Day", - "2031-05-26": "Africa Day (Observed)", + "2031-05-26": "Africa Day (observed)", "2031-08-26": "Heroes' Day", "2031-09-10": "Day of the Namibian Women and International Human Rights Day", "2031-12-25": "Christmas Day", "2031-12-26": "Family Day", "2032-01-01": "New Year's Day", "2032-03-21": "Independence Day", - "2032-03-22": "Independence Day (Observed)", + "2032-03-22": "Independence Day (observed)", "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-05-01": "Workers' Day", @@ -557,13 +557,13 @@ "2032-09-10": "Day of the Namibian Women and International Human Rights Day", "2032-12-25": "Christmas Day", "2032-12-26": "Family Day", - "2032-12-27": "Family Day (Observed)", + "2032-12-27": "Family Day (observed)", "2033-01-01": "New Year's Day", "2033-03-21": "Independence Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-01": "Workers' Day", - "2033-05-02": "Workers' Day (Observed)", + "2033-05-02": "Workers' Day (observed)", "2033-05-04": "Cassinga Day", "2033-05-25": "Africa Day", "2033-05-26": "Ascension Day", @@ -572,7 +572,7 @@ "2033-12-25": "Christmas Day", "2033-12-26": "Family Day", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-21": "Independence Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -582,7 +582,7 @@ "2034-05-25": "Africa Day", "2034-08-26": "Heroes' Day", "2034-09-10": "Day of the Namibian Women and International Human Rights Day", - "2034-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2034-09-11": "Day of the Namibian Women and International Human Rights Day (observed)", "2034-12-25": "Christmas Day", "2034-12-26": "Family Day", "2035-01-01": "New Year's Day", @@ -594,7 +594,7 @@ "2035-05-04": "Cassinga Day", "2035-05-25": "Africa Day", "2035-08-26": "Heroes' Day", - "2035-08-27": "Heroes' Day (Observed)", + "2035-08-27": "Heroes' Day (observed)", "2035-09-10": "Day of the Namibian Women and International Human Rights Day", "2035-12-25": "Christmas Day", "2035-12-26": "Family Day", @@ -604,10 +604,10 @@ "2036-04-14": "Easter Monday", "2036-05-01": "Workers' Day", "2036-05-04": "Cassinga Day", - "2036-05-05": "Cassinga Day (Observed)", + "2036-05-05": "Cassinga Day (observed)", "2036-05-22": "Ascension Day", "2036-05-25": "Africa Day", - "2036-05-26": "Africa Day (Observed)", + "2036-05-26": "Africa Day (observed)", "2036-08-26": "Heroes' Day", "2036-09-10": "Day of the Namibian Women and International Human Rights Day", "2036-12-25": "Christmas Day", @@ -626,7 +626,7 @@ "2037-12-26": "Family Day", "2038-01-01": "New Year's Day", "2038-03-21": "Independence Day", - "2038-03-22": "Independence Day (Observed)", + "2038-03-22": "Independence Day (observed)", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-05-01": "Workers' Day", @@ -637,13 +637,13 @@ "2038-09-10": "Day of the Namibian Women and International Human Rights Day", "2038-12-25": "Christmas Day", "2038-12-26": "Family Day", - "2038-12-27": "Family Day (Observed)", + "2038-12-27": "Family Day (observed)", "2039-01-01": "New Year's Day", "2039-03-21": "Independence Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-01": "Workers' Day", - "2039-05-02": "Workers' Day (Observed)", + "2039-05-02": "Workers' Day (observed)", "2039-05-04": "Cassinga Day", "2039-05-19": "Ascension Day", "2039-05-25": "Africa Day", @@ -652,7 +652,7 @@ "2039-12-25": "Christmas Day", "2039-12-26": "Family Day", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-21": "Independence Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -661,7 +661,7 @@ "2040-05-10": "Ascension Day", "2040-05-25": "Africa Day", "2040-08-26": "Heroes' Day", - "2040-08-27": "Heroes' Day (Observed)", + "2040-08-27": "Heroes' Day (observed)", "2040-09-10": "Day of the Namibian Women and International Human Rights Day", "2040-12-25": "Christmas Day", "2040-12-26": "Family Day", @@ -683,10 +683,10 @@ "2042-04-07": "Easter Monday", "2042-05-01": "Workers' Day", "2042-05-04": "Cassinga Day", - "2042-05-05": "Cassinga Day (Observed)", + "2042-05-05": "Cassinga Day (observed)", "2042-05-15": "Ascension Day", "2042-05-25": "Africa Day", - "2042-05-26": "Africa Day (Observed)", + "2042-05-26": "Africa Day (observed)", "2042-08-26": "Heroes' Day", "2042-09-10": "Day of the Namibian Women and International Human Rights Day", "2042-12-25": "Christmas Day", @@ -708,7 +708,7 @@ "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-05-01": "Workers' Day", - "2044-05-02": "Workers' Day (Observed)", + "2044-05-02": "Workers' Day (observed)", "2044-05-04": "Cassinga Day", "2044-05-25": "Africa Day", "2044-05-26": "Ascension Day", @@ -717,7 +717,7 @@ "2044-12-25": "Christmas Day", "2044-12-26": "Family Day", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-03-21": "Independence Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -727,7 +727,7 @@ "2045-05-25": "Africa Day", "2045-08-26": "Heroes' Day", "2045-09-10": "Day of the Namibian Women and International Human Rights Day", - "2045-09-11": "Day of the Namibian Women and International Human Rights Day (Observed)", + "2045-09-11": "Day of the Namibian Women and International Human Rights Day (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Family Day", "2046-01-01": "New Year's Day", @@ -739,7 +739,7 @@ "2046-05-04": "Cassinga Day", "2046-05-25": "Africa Day", "2046-08-26": "Heroes' Day", - "2046-08-27": "Heroes' Day (Observed)", + "2046-08-27": "Heroes' Day (observed)", "2046-09-10": "Day of the Namibian Women and International Human Rights Day", "2046-12-25": "Christmas Day", "2046-12-26": "Family Day", @@ -769,7 +769,7 @@ "2048-12-26": "Family Day", "2049-01-01": "New Year's Day", "2049-03-21": "Independence Day", - "2049-03-22": "Independence Day (Observed)", + "2049-03-22": "Independence Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-05-01": "Workers' Day", @@ -780,13 +780,13 @@ "2049-09-10": "Day of the Namibian Women and International Human Rights Day", "2049-12-25": "Christmas Day", "2049-12-26": "Family Day", - "2049-12-27": "Family Day (Observed)", + "2049-12-27": "Family Day (observed)", "2050-01-01": "New Year's Day", "2050-03-21": "Independence Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-01": "Workers' Day", - "2050-05-02": "Workers' Day (Observed)", + "2050-05-02": "Workers' Day (observed)", "2050-05-04": "Cassinga Day", "2050-05-19": "Ascension Day", "2050-05-25": "Africa Day", diff --git a/snapshots/countries/NG_COMMON.json b/snapshots/countries/NG_COMMON.json index 85532769b..d5aec12cf 100644 --- a/snapshots/countries/NG_COMMON.json +++ b/snapshots/countries/NG_COMMON.json @@ -463,35 +463,35 @@ "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-05-01": "Workers' Day", - "2016-05-02": "Workers' Day (Observed)", + "2016-05-02": "Workers' Day (observed)", "2016-05-29": "Democracy Day", - "2016-05-30": "Democracy Day (Observed)", + "2016-05-30": "Democracy Day (observed)", "2016-07-06": "Eid-el-Fitr (estimated)", "2016-07-07": "Eid-el-Fitr Holiday (estimated)", "2016-09-11": "Eid-el-Kabir (estimated)", "2016-09-12": "Eid-el-Kabir Holiday (estimated)", - "2016-09-13": "Eid-el-Kabir (estimated) (Observed)", + "2016-09-13": "Eid-el-Kabir (estimated) (observed)", "2016-10-01": "Independence Day", - "2016-10-03": "Independence Day (Observed)", + "2016-10-03": "Independence Day (observed)", "2016-12-11": "Eid-el-Mawlid (estimated)", - "2016-12-12": "Eid-el-Mawlid (estimated) (Observed)", + "2016-12-12": "Eid-el-Mawlid (estimated) (observed)", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-01": "Workers' Day", "2017-05-29": "Democracy Day", "2017-06-25": "Eid-el-Fitr (estimated)", "2017-06-26": "Eid-el-Fitr Holiday (estimated)", - "2017-06-27": "Eid-el-Fitr (estimated) (Observed)", + "2017-06-27": "Eid-el-Fitr (estimated) (observed)", "2017-09-01": "Eid-el-Kabir (estimated)", "2017-09-02": "Eid-el-Kabir Holiday (estimated)", - "2017-09-04": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2017-09-04": "Eid-el-Kabir Holiday (estimated) (observed)", "2017-10-01": "Independence Day", - "2017-10-02": "Independence Day (Observed)", + "2017-10-02": "Independence Day (observed)", "2017-11-30": "Eid-el-Mawlid (estimated)", "2017-12-25": "Christmas Day", "2017-12-26": "Boxing Day", @@ -502,7 +502,7 @@ "2018-05-29": "Democracy Day", "2018-06-15": "Eid-el-Fitr (estimated)", "2018-06-16": "Eid-el-Fitr Holiday (estimated)", - "2018-06-18": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2018-06-18": "Eid-el-Fitr Holiday (estimated) (observed)", "2018-08-21": "Eid-el-Kabir (estimated)", "2018-08-22": "Eid-el-Kabir Holiday (estimated)", "2018-10-01": "Independence Day", @@ -520,10 +520,10 @@ "2019-06-12": "Democracy Day", "2019-08-11": "Eid-el-Kabir (estimated)", "2019-08-12": "Eid-el-Kabir Holiday (estimated)", - "2019-08-13": "Eid-el-Kabir (estimated) (Observed)", + "2019-08-13": "Eid-el-Kabir (estimated) (observed)", "2019-10-01": "Independence Day", "2019-11-09": "Eid-el-Mawlid (estimated)", - "2019-11-11": "Eid-el-Mawlid (estimated) (Observed)", + "2019-11-11": "Eid-el-Mawlid (estimated) (observed)", "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", @@ -532,68 +532,68 @@ "2020-05-01": "Workers' Day", "2020-05-24": "Eid-el-Fitr (estimated)", "2020-05-25": "Eid-el-Fitr Holiday (estimated)", - "2020-05-26": "Eid-el-Fitr (estimated) (Observed)", + "2020-05-26": "Eid-el-Fitr (estimated) (observed)", "2020-06-12": "Democracy Day", "2020-07-31": "Eid-el-Kabir (estimated)", "2020-08-01": "Eid-el-Kabir Holiday (estimated)", - "2020-08-03": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2020-08-03": "Eid-el-Kabir Holiday (estimated) (observed)", "2020-10-01": "Independence Day", "2020-10-29": "Eid-el-Mawlid (estimated)", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-05-01": "Workers' Day", - "2021-05-03": "Workers' Day (Observed)", + "2021-05-03": "Workers' Day (observed)", "2021-05-13": "Eid-el-Fitr (estimated)", "2021-05-14": "Eid-el-Fitr Holiday (estimated)", "2021-06-12": "Democracy Day", - "2021-06-14": "Democracy Day (Observed)", + "2021-06-14": "Democracy Day (observed)", "2021-07-20": "Eid-el-Kabir (estimated)", "2021-07-21": "Eid-el-Kabir Holiday (estimated)", "2021-10-01": "Independence Day", "2021-10-18": "Eid-el-Mawlid (estimated)", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-01": "Workers' Day", "2022-05-02": "Eid-el-Fitr (estimated)", "2022-05-03": "Eid-el-Fitr Holiday (estimated)", - "2022-05-04": "Workers' Day (Observed)", + "2022-05-04": "Workers' Day (observed)", "2022-06-12": "Democracy Day", - "2022-06-13": "Democracy Day (Observed)", + "2022-06-13": "Democracy Day (observed)", "2022-07-09": "Eid-el-Kabir (estimated)", "2022-07-10": "Eid-el-Kabir Holiday (estimated)", - "2022-07-11": "Eid-el-Kabir (estimated) (Observed)", - "2022-07-12": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2022-07-11": "Eid-el-Kabir (estimated) (observed)", + "2022-07-12": "Eid-el-Kabir Holiday (estimated) (observed)", "2022-10-01": "Independence Day", - "2022-10-03": "Independence Day (Observed)", + "2022-10-03": "Independence Day (observed)", "2022-10-08": "Eid-el-Mawlid (estimated)", - "2022-10-10": "Eid-el-Mawlid (estimated) (Observed)", + "2022-10-10": "Eid-el-Mawlid (estimated) (observed)", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-04-21": "Eid-el-Fitr (estimated)", "2023-04-22": "Eid-el-Fitr Holiday (estimated)", - "2023-04-24": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2023-04-24": "Eid-el-Fitr Holiday (estimated) (observed)", "2023-05-01": "Workers' Day", "2023-06-12": "Democracy Day", "2023-06-28": "Eid-el-Kabir (estimated)", "2023-06-29": "Eid-el-Kabir Holiday (estimated)", "2023-09-27": "Eid-el-Mawlid (estimated)", "2023-10-01": "Independence Day", - "2023-10-02": "Independence Day (Observed)", + "2023-10-02": "Independence Day (observed)", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", @@ -605,22 +605,22 @@ "2024-06-12": "Democracy Day", "2024-06-16": "Eid-el-Kabir (estimated)", "2024-06-17": "Eid-el-Kabir Holiday (estimated)", - "2024-06-18": "Eid-el-Kabir (estimated) (Observed)", + "2024-06-18": "Eid-el-Kabir (estimated) (observed)", "2024-09-15": "Eid-el-Mawlid (estimated)", - "2024-09-16": "Eid-el-Mawlid (estimated) (Observed)", + "2024-09-16": "Eid-el-Mawlid (estimated) (observed)", "2024-10-01": "Independence Day", "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-03-30": "Eid-el-Fitr (estimated)", "2025-03-31": "Eid-el-Fitr Holiday (estimated)", - "2025-04-01": "Eid-el-Fitr (estimated) (Observed)", + "2025-04-01": "Eid-el-Fitr (estimated) (observed)", "2025-04-18": "Good Friday", "2025-04-21": "Easter Monday", "2025-05-01": "Workers' Day", "2025-06-06": "Eid-el-Kabir (estimated)", "2025-06-07": "Eid-el-Kabir Holiday (estimated)", - "2025-06-09": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2025-06-09": "Eid-el-Kabir Holiday (estimated) (observed)", "2025-06-12": "Democracy Day", "2025-09-04": "Eid-el-Mawlid (estimated)", "2025-10-01": "Independence Day", @@ -629,7 +629,7 @@ "2026-01-01": "New Year's Day", "2026-03-20": "Eid-el-Fitr (estimated)", "2026-03-21": "Eid-el-Fitr Holiday (estimated)", - "2026-03-23": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2026-03-23": "Eid-el-Fitr Holiday (estimated) (observed)", "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-05-01": "Workers' Day", @@ -640,42 +640,42 @@ "2026-10-01": "Independence Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-09": "Eid-el-Fitr (estimated)", "2027-03-10": "Eid-el-Fitr Holiday (estimated)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-05-01": "Workers' Day", - "2027-05-03": "Workers' Day (Observed)", + "2027-05-03": "Workers' Day (observed)", "2027-05-16": "Eid-el-Kabir (estimated)", "2027-05-17": "Eid-el-Kabir Holiday (estimated)", - "2027-05-18": "Eid-el-Kabir (estimated) (Observed)", + "2027-05-18": "Eid-el-Kabir (estimated) (observed)", "2027-06-12": "Democracy Day", - "2027-06-14": "Democracy Day (Observed)", + "2027-06-14": "Democracy Day (observed)", "2027-08-14": "Eid-el-Mawlid (estimated)", - "2027-08-16": "Eid-el-Mawlid (estimated) (Observed)", + "2027-08-16": "Eid-el-Mawlid (estimated) (observed)", "2027-10-01": "Independence Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-26": "Eid-el-Fitr (estimated)", "2028-02-27": "Eid-el-Fitr Holiday (estimated)", - "2028-02-28": "Eid-el-Fitr (estimated) (Observed)", - "2028-02-29": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2028-02-28": "Eid-el-Fitr (estimated) (observed)", + "2028-02-29": "Eid-el-Fitr Holiday (estimated) (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-01": "Workers' Day", "2028-05-05": "Eid-el-Kabir (estimated)", "2028-05-06": "Eid-el-Kabir Holiday (estimated)", - "2028-05-08": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2028-05-08": "Eid-el-Kabir Holiday (estimated) (observed)", "2028-06-12": "Democracy Day", "2028-08-03": "Eid-el-Mawlid (estimated)", "2028-10-01": "Independence Day", - "2028-10-02": "Independence Day (Observed)", + "2028-10-02": "Independence Day (observed)", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", @@ -696,21 +696,21 @@ "2030-02-05": "Eid-el-Fitr Holiday (estimated)", "2030-04-13": "Eid-el-Kabir (estimated)", "2030-04-14": "Eid-el-Kabir Holiday (estimated)", - "2030-04-15": "Eid-el-Kabir (estimated) (Observed)", - "2030-04-16": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2030-04-15": "Eid-el-Kabir (estimated) (observed)", + "2030-04-16": "Eid-el-Kabir Holiday (estimated) (observed)", "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", "2030-05-01": "Workers' Day", "2030-06-12": "Democracy Day", "2030-07-13": "Eid-el-Mawlid (estimated)", - "2030-07-15": "Eid-el-Mawlid (estimated) (Observed)", + "2030-07-15": "Eid-el-Mawlid (estimated) (observed)", "2030-10-01": "Independence Day", "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-01-24": "Eid-el-Fitr (estimated)", "2031-01-25": "Eid-el-Fitr Holiday (estimated)", - "2031-01-27": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2031-01-27": "Eid-el-Fitr Holiday (estimated) (observed)", "2031-04-02": "Eid-el-Kabir (estimated)", "2031-04-03": "Eid-el-Kabir Holiday (estimated)", "2031-04-11": "Good Friday", @@ -729,41 +729,41 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-05-01": "Workers' Day", - "2032-05-03": "Workers' Day (Observed)", + "2032-05-03": "Workers' Day (observed)", "2032-06-12": "Democracy Day", - "2032-06-14": "Democracy Day (Observed)", + "2032-06-14": "Democracy Day (observed)", "2032-06-20": "Eid-el-Mawlid (estimated)", - "2032-06-21": "Eid-el-Mawlid (estimated) (Observed)", + "2032-06-21": "Eid-el-Mawlid (estimated) (observed)", "2032-10-01": "Independence Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Eid-el-Fitr (estimated)", "2033-01-03": "Eid-el-Fitr Holiday (estimated)", - "2033-01-04": "New Year's Day (Observed)", - "2033-01-05": "Eid-el-Fitr (estimated) (Observed)", + "2033-01-04": "New Year's Day (observed)", + "2033-01-05": "Eid-el-Fitr (estimated) (observed)", "2033-03-11": "Eid-el-Kabir (estimated)", "2033-03-12": "Eid-el-Kabir Holiday (estimated)", - "2033-03-14": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2033-03-14": "Eid-el-Kabir Holiday (estimated) (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-01": "Workers' Day", - "2033-05-02": "Workers' Day (Observed)", + "2033-05-02": "Workers' Day (observed)", "2033-06-09": "Eid-el-Mawlid (estimated)", "2033-06-12": "Democracy Day", - "2033-06-13": "Democracy Day (Observed)", + "2033-06-13": "Democracy Day (observed)", "2033-10-01": "Independence Day", - "2033-10-03": "Independence Day (Observed)", + "2033-10-03": "Independence Day (observed)", "2033-12-23": "Eid-el-Fitr (estimated)", "2033-12-24": "Eid-el-Fitr Holiday (estimated)", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Eid-el-Fitr Holiday (estimated) (Observed)", - "2033-12-28": "Christmas Day (Observed)", + "2033-12-27": "Eid-el-Fitr Holiday (estimated) (observed)", + "2033-12-28": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-01": "Eid-el-Kabir (estimated)", "2034-03-02": "Eid-el-Kabir Holiday (estimated)", "2034-04-07": "Good Friday", @@ -772,7 +772,7 @@ "2034-05-30": "Eid-el-Mawlid (estimated)", "2034-06-12": "Democracy Day", "2034-10-01": "Independence Day", - "2034-10-02": "Independence Day (Observed)", + "2034-10-02": "Independence Day (observed)", "2034-12-12": "Eid-el-Fitr (estimated)", "2034-12-13": "Eid-el-Fitr Holiday (estimated)", "2034-12-25": "Christmas Day", @@ -780,18 +780,18 @@ "2035-01-01": "New Year's Day", "2035-02-18": "Eid-el-Kabir (estimated)", "2035-02-19": "Eid-el-Kabir Holiday (estimated)", - "2035-02-20": "Eid-el-Kabir (estimated) (Observed)", + "2035-02-20": "Eid-el-Kabir (estimated) (observed)", "2035-03-23": "Good Friday", "2035-03-26": "Easter Monday", "2035-05-01": "Workers' Day", "2035-05-20": "Eid-el-Mawlid (estimated)", - "2035-05-21": "Eid-el-Mawlid (estimated) (Observed)", + "2035-05-21": "Eid-el-Mawlid (estimated) (observed)", "2035-06-12": "Democracy Day", "2035-10-01": "Independence Day", "2035-12-01": "Eid-el-Fitr (estimated)", "2035-12-02": "Eid-el-Fitr Holiday (estimated)", - "2035-12-03": "Eid-el-Fitr (estimated) (Observed)", - "2035-12-04": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2035-12-03": "Eid-el-Fitr (estimated) (observed)", + "2035-12-04": "Eid-el-Fitr Holiday (estimated) (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -818,54 +818,54 @@ "2037-10-01": "Independence Day", "2037-11-08": "Eid-el-Fitr (estimated)", "2037-11-09": "Eid-el-Fitr Holiday (estimated)", - "2037-11-10": "Eid-el-Fitr (estimated) (Observed)", + "2037-11-10": "Eid-el-Fitr (estimated) (observed)", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-16": "Eid-el-Kabir (estimated)", "2038-01-17": "Eid-el-Kabir Holiday (estimated)", - "2038-01-18": "Eid-el-Kabir (estimated) (Observed)", - "2038-01-19": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2038-01-18": "Eid-el-Kabir (estimated) (observed)", + "2038-01-19": "Eid-el-Kabir Holiday (estimated) (observed)", "2038-04-17": "Eid-el-Mawlid (estimated)", - "2038-04-19": "Eid-el-Mawlid (estimated) (Observed)", + "2038-04-19": "Eid-el-Mawlid (estimated) (observed)", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-05-01": "Workers' Day", - "2038-05-03": "Workers' Day (Observed)", + "2038-05-03": "Workers' Day (observed)", "2038-06-12": "Democracy Day", - "2038-06-14": "Democracy Day (Observed)", + "2038-06-14": "Democracy Day (observed)", "2038-10-01": "Independence Day", "2038-10-29": "Eid-el-Fitr (estimated)", "2038-10-30": "Eid-el-Fitr Holiday (estimated)", - "2038-11-01": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2038-11-01": "Eid-el-Fitr Holiday (estimated) (observed)", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-05": "Eid-el-Kabir (estimated)", "2039-01-06": "Eid-el-Kabir Holiday (estimated)", "2039-04-06": "Eid-el-Mawlid (estimated)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-01": "Workers' Day", - "2039-05-02": "Workers' Day (Observed)", + "2039-05-02": "Workers' Day (observed)", "2039-06-12": "Democracy Day", - "2039-06-13": "Democracy Day (Observed)", + "2039-06-13": "Democracy Day (observed)", "2039-10-01": "Independence Day", - "2039-10-03": "Independence Day (Observed)", + "2039-10-03": "Independence Day (observed)", "2039-10-19": "Eid-el-Fitr (estimated)", "2039-10-20": "Eid-el-Fitr Holiday (estimated)", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day; Eid-el-Kabir (estimated)", "2039-12-27": "Eid-el-Kabir Holiday (estimated)", - "2039-12-28": "Christmas Day (Observed)", + "2039-12-28": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-25": "Eid-el-Mawlid (estimated)", - "2040-03-26": "Eid-el-Mawlid (estimated) (Observed)", + "2040-03-26": "Eid-el-Mawlid (estimated) (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-01": "Workers' Day", @@ -873,10 +873,10 @@ "2040-10-01": "Independence Day", "2040-10-07": "Eid-el-Fitr (estimated)", "2040-10-08": "Eid-el-Fitr Holiday (estimated)", - "2040-10-09": "Eid-el-Fitr (estimated) (Observed)", + "2040-10-09": "Eid-el-Fitr (estimated) (observed)", "2040-12-14": "Eid-el-Kabir (estimated)", "2040-12-15": "Eid-el-Kabir Holiday (estimated)", - "2040-12-17": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2040-12-17": "Eid-el-Kabir Holiday (estimated) (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -903,44 +903,44 @@ "2042-10-01": "Independence Day", "2042-11-23": "Eid-el-Kabir (estimated)", "2042-11-24": "Eid-el-Kabir Holiday (estimated)", - "2042-11-25": "Eid-el-Kabir (estimated) (Observed)", + "2042-11-25": "Eid-el-Kabir (estimated) (observed)", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2043-01-01": "New Year's Day", "2043-02-22": "Eid-el-Mawlid (estimated)", - "2043-02-23": "Eid-el-Mawlid (estimated) (Observed)", + "2043-02-23": "Eid-el-Mawlid (estimated) (observed)", "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-05-01": "Workers' Day", "2043-06-12": "Democracy Day", "2043-09-04": "Eid-el-Fitr (estimated)", "2043-09-05": "Eid-el-Fitr Holiday (estimated)", - "2043-09-07": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2043-09-07": "Eid-el-Fitr Holiday (estimated) (observed)", "2043-10-01": "Independence Day", "2043-11-12": "Eid-el-Kabir (estimated)", "2043-11-13": "Eid-el-Kabir Holiday (estimated)", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-02-11": "Eid-el-Mawlid (estimated)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-05-01": "Workers' Day", - "2044-05-02": "Workers' Day (Observed)", + "2044-05-02": "Workers' Day (observed)", "2044-06-12": "Democracy Day", - "2044-06-13": "Democracy Day (Observed)", + "2044-06-13": "Democracy Day (observed)", "2044-08-24": "Eid-el-Fitr (estimated)", "2044-08-25": "Eid-el-Fitr Holiday (estimated)", "2044-10-01": "Independence Day", - "2044-10-03": "Independence Day (Observed)", + "2044-10-03": "Independence Day (observed)", "2044-10-31": "Eid-el-Kabir (estimated)", "2044-11-01": "Eid-el-Kabir Holiday (estimated)", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-30": "Eid-el-Mawlid (estimated)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -949,11 +949,11 @@ "2045-08-14": "Eid-el-Fitr (estimated)", "2045-08-15": "Eid-el-Fitr Holiday (estimated)", "2045-10-01": "Independence Day", - "2045-10-02": "Independence Day (Observed)", + "2045-10-02": "Independence Day (observed)", "2045-10-21": "Eid-el-Kabir (estimated)", "2045-10-22": "Eid-el-Kabir Holiday (estimated)", - "2045-10-23": "Eid-el-Kabir (estimated) (Observed)", - "2045-10-24": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2045-10-23": "Eid-el-Kabir (estimated) (observed)", + "2045-10-24": "Eid-el-Kabir Holiday (estimated) (observed)", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", @@ -964,7 +964,7 @@ "2046-06-12": "Democracy Day", "2046-08-03": "Eid-el-Fitr (estimated)", "2046-08-04": "Eid-el-Fitr Holiday (estimated)", - "2046-08-06": "Eid-el-Fitr Holiday (estimated) (Observed)", + "2046-08-06": "Eid-el-Fitr Holiday (estimated) (observed)", "2046-10-01": "Independence Day", "2046-10-10": "Eid-el-Kabir (estimated)", "2046-10-11": "Eid-el-Kabir Holiday (estimated)", @@ -983,7 +983,7 @@ "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2047-12-29": "Eid-el-Mawlid (estimated)", - "2047-12-30": "Eid-el-Mawlid (estimated) (Observed)", + "2047-12-30": "Eid-el-Mawlid (estimated) (observed)", "2048-01-01": "New Year's Day", "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", @@ -991,23 +991,23 @@ "2048-06-12": "Democracy Day", "2048-07-12": "Eid-el-Fitr (estimated)", "2048-07-13": "Eid-el-Fitr Holiday (estimated)", - "2048-07-14": "Eid-el-Fitr (estimated) (Observed)", + "2048-07-14": "Eid-el-Fitr (estimated) (observed)", "2048-09-19": "Eid-el-Kabir (estimated)", "2048-09-20": "Eid-el-Kabir Holiday (estimated)", - "2048-09-21": "Eid-el-Kabir (estimated) (Observed)", - "2048-09-22": "Eid-el-Kabir Holiday (estimated) (Observed)", + "2048-09-21": "Eid-el-Kabir (estimated) (observed)", + "2048-09-22": "Eid-el-Kabir Holiday (estimated) (observed)", "2048-10-01": "Independence Day", "2048-12-18": "Eid-el-Mawlid (estimated)", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-05-01": "Workers' Day", - "2049-05-03": "Workers' Day (Observed)", + "2049-05-03": "Workers' Day (observed)", "2049-06-12": "Democracy Day", - "2049-06-14": "Democracy Day (Observed)", + "2049-06-14": "Democracy Day (observed)", "2049-07-01": "Eid-el-Fitr (estimated)", "2049-07-02": "Eid-el-Fitr Holiday (estimated)", "2049-09-08": "Eid-el-Kabir (estimated)", @@ -1016,26 +1016,26 @@ "2049-12-07": "Eid-el-Mawlid (estimated)", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-01": "Workers' Day", - "2050-05-02": "Workers' Day (Observed)", + "2050-05-02": "Workers' Day (observed)", "2050-06-12": "Democracy Day", - "2050-06-13": "Democracy Day (Observed)", + "2050-06-13": "Democracy Day (observed)", "2050-06-20": "Eid-el-Fitr (estimated)", "2050-06-21": "Eid-el-Fitr Holiday (estimated)", "2050-08-28": "Eid-el-Kabir (estimated)", "2050-08-29": "Eid-el-Kabir Holiday (estimated)", - "2050-08-30": "Eid-el-Kabir (estimated) (Observed)", + "2050-08-30": "Eid-el-Kabir (estimated) (observed)", "2050-10-01": "Independence Day", - "2050-10-03": "Independence Day (Observed)", + "2050-10-03": "Independence Day (observed)", "2050-11-26": "Eid-el-Mawlid (estimated)", - "2050-11-28": "Eid-el-Mawlid (estimated) (Observed)", + "2050-11-28": "Eid-el-Mawlid (estimated) (observed)", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_AUK.json b/snapshots/countries/NZ_AUK.json index 73aa62b74..1d8232e2a 100644 --- a/snapshots/countries/NZ_AUK.json +++ b/snapshots/countries/NZ_AUK.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-01-30": "Auckland Anniversary Day", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", @@ -40,10 +40,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-02-01": "Auckland Anniversary Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", @@ -52,12 +52,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-01-31": "Auckland Anniversary Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", @@ -66,10 +66,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-01-30": "Auckland Anniversary Day", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", @@ -108,10 +108,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-02-01": "Auckland Anniversary Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", @@ -120,10 +120,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-01-30": "Auckland Anniversary Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -162,10 +162,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-02-01": "Auckland Anniversary Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", @@ -174,12 +174,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-01-31": "Auckland Anniversary Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", @@ -188,10 +188,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-01-30": "Auckland Anniversary Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -230,10 +230,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-02-01": "Auckland Anniversary Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -242,12 +242,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-01-31": "Auckland Anniversary Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -299,12 +299,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-01-31": "Auckland Anniversary Day", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", @@ -314,10 +314,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-01-30": "Auckland Anniversary Day", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", @@ -360,10 +360,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-01": "Auckland Anniversary Day", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", @@ -373,12 +373,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-01-31": "Auckland Anniversary Day", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", @@ -388,10 +388,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-01-30": "Auckland Anniversary Day", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", @@ -434,10 +434,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-01": "Auckland Anniversary Day", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", @@ -447,10 +447,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-01-30": "Auckland Anniversary Day", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", @@ -493,10 +493,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-01": "Auckland Anniversary Day", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", @@ -506,12 +506,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-01-31": "Auckland Anniversary Day", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", @@ -521,10 +521,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-01-30": "Auckland Anniversary Day", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", @@ -567,10 +567,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-01": "Auckland Anniversary Day", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", @@ -580,12 +580,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-01-31": "Auckland Anniversary Day", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", @@ -639,12 +639,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-01-31": "Auckland Anniversary Day", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", @@ -654,10 +654,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-30": "Auckland Anniversary Day", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", @@ -700,10 +700,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-01": "Auckland Anniversary Day", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", @@ -713,12 +713,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-01-31": "Auckland Anniversary Day", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", @@ -727,10 +727,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-01-30": "Auckland Anniversary Day", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", @@ -769,18 +769,18 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-01": "Auckland Anniversary Day", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -788,10 +788,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-01-30": "Auckland Anniversary Day", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", @@ -830,35 +830,35 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-01": "Auckland Anniversary Day", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-01-31": "Auckland Anniversary Day", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -868,10 +868,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-01-30": "Auckland Anniversary Day", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", @@ -913,37 +913,37 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-01": "Auckland Anniversary Day", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-01-31": "Auckland Anniversary Day", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -995,21 +995,21 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-01-31": "Auckland Anniversary Day", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -1018,10 +1018,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-01-30": "Auckland Anniversary Day", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", @@ -1063,36 +1063,36 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-01": "Auckland Anniversary Day", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-01-31": "Auckland Anniversary Day", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1101,10 +1101,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-01-30": "Auckland Anniversary Day", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", @@ -1146,19 +1146,19 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-01": "Auckland Anniversary Day", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1167,10 +1167,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-01-30": "Auckland Anniversary Day", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", @@ -1212,37 +1212,37 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-01": "Auckland Anniversary Day", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-01-31": "Auckland Anniversary Day", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1251,5 +1251,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_BOP.json b/snapshots/countries/NZ_BOP.json index abfa2c331..59fa57831 100644 --- a/snapshots/countries/NZ_BOP.json +++ b/snapshots/countries/NZ_BOP.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -36,10 +36,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -47,12 +47,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -60,10 +60,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -98,10 +98,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -109,10 +109,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -147,10 +147,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -158,12 +158,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -171,10 +171,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -209,10 +209,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -220,12 +220,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -272,12 +272,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -286,10 +286,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -328,10 +328,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -340,12 +340,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -354,10 +354,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -396,10 +396,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -408,10 +408,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -450,10 +450,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -462,12 +462,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -476,10 +476,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -518,10 +518,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -530,12 +530,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -584,12 +584,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -598,10 +598,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -640,10 +640,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -652,12 +652,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -665,10 +665,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -703,17 +703,17 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -721,10 +721,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -759,33 +759,33 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -795,10 +795,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -836,35 +836,35 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -912,20 +912,20 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -934,10 +934,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -975,34 +975,34 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1011,10 +1011,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1052,18 +1052,18 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1072,10 +1072,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1113,35 +1113,35 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1150,5 +1150,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_CAN.json b/snapshots/countries/NZ_CAN.json index 4ffe2db1e..0bf7a2577 100644 --- a/snapshots/countries/NZ_CAN.json +++ b/snapshots/countries/NZ_CAN.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -40,10 +40,10 @@ "1953-11-13": "Canterbury Anniversary Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -52,12 +52,12 @@ "1954-11-12": "Canterbury Anniversary Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -66,10 +66,10 @@ "1955-11-11": "Canterbury Anniversary Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -108,10 +108,10 @@ "1959-11-13": "Canterbury Anniversary Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -120,10 +120,10 @@ "1960-11-11": "Canterbury Anniversary Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -162,10 +162,10 @@ "1964-11-13": "Canterbury Anniversary Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -174,12 +174,12 @@ "1965-11-12": "Canterbury Anniversary Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -188,10 +188,10 @@ "1966-11-11": "Canterbury Anniversary Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -230,10 +230,10 @@ "1970-11-13": "Canterbury Anniversary Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -242,12 +242,12 @@ "1971-11-12": "Canterbury Anniversary Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -299,12 +299,12 @@ "1976-11-12": "Canterbury Anniversary Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -314,10 +314,10 @@ "1977-11-11": "Canterbury Anniversary Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -360,10 +360,10 @@ "1981-11-13": "Canterbury Anniversary Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -373,12 +373,12 @@ "1982-11-12": "Canterbury Anniversary Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -388,10 +388,10 @@ "1983-11-11": "Canterbury Anniversary Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -434,10 +434,10 @@ "1987-11-13": "Canterbury Anniversary Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -447,10 +447,10 @@ "1988-11-11": "Canterbury Anniversary Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -493,10 +493,10 @@ "1992-11-13": "Canterbury Anniversary Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -506,12 +506,12 @@ "1993-11-12": "Canterbury Anniversary Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -521,10 +521,10 @@ "1994-11-11": "Canterbury Anniversary Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -567,10 +567,10 @@ "1998-11-13": "Canterbury Anniversary Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -580,12 +580,12 @@ "1999-11-12": "Canterbury Anniversary Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -639,12 +639,12 @@ "2004-11-12": "Canterbury Anniversary Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -654,10 +654,10 @@ "2005-11-11": "Canterbury Anniversary Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -700,10 +700,10 @@ "2009-11-13": "Canterbury Anniversary Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -713,12 +713,12 @@ "2010-11-12": "Canterbury Anniversary Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -727,10 +727,10 @@ "2011-11-11": "Canterbury Anniversary Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -768,18 +768,18 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-11-13": "Canterbury Anniversary Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -788,10 +788,10 @@ "2016-11-11": "Canterbury Anniversary Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -829,35 +829,35 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-11-13": "Canterbury Anniversary Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-11-12": "Canterbury Anniversary Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -868,10 +868,10 @@ "2022-11-11": "Canterbury Anniversary Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -912,37 +912,37 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-11-13": "Canterbury Anniversary Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-11-12": "Canterbury Anniversary Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -994,21 +994,21 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-11-12": "Canterbury Anniversary Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -1018,10 +1018,10 @@ "2033-11-11": "Canterbury Anniversary Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -1062,36 +1062,36 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-11-13": "Canterbury Anniversary Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-11-12": "Canterbury Anniversary Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1101,10 +1101,10 @@ "2039-11-11": "Canterbury Anniversary Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1145,19 +1145,19 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-11-13": "Canterbury Anniversary Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1167,10 +1167,10 @@ "2044-11-11": "Canterbury Anniversary Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1211,37 +1211,37 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-11-13": "Canterbury Anniversary Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-11-12": "Canterbury Anniversary Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1251,5 +1251,5 @@ "2050-11-11": "Canterbury Anniversary Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_CIT.json b/snapshots/countries/NZ_CIT.json index f0ef8ec57..70d9278c3 100644 --- a/snapshots/countries/NZ_CIT.json +++ b/snapshots/countries/NZ_CIT.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -40,10 +40,10 @@ "1953-11-30": "Chatham Islands Anniversary Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -52,12 +52,12 @@ "1954-11-29": "Chatham Islands Anniversary Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -66,10 +66,10 @@ "1955-11-28": "Chatham Islands Anniversary Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -108,10 +108,10 @@ "1959-11-30": "Chatham Islands Anniversary Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -120,10 +120,10 @@ "1960-11-28": "Chatham Islands Anniversary Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -162,10 +162,10 @@ "1964-11-30": "Chatham Islands Anniversary Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -174,12 +174,12 @@ "1965-11-29": "Chatham Islands Anniversary Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -188,10 +188,10 @@ "1966-11-28": "Chatham Islands Anniversary Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -230,10 +230,10 @@ "1970-11-30": "Chatham Islands Anniversary Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -242,12 +242,12 @@ "1971-11-29": "Chatham Islands Anniversary Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -299,12 +299,12 @@ "1976-11-29": "Chatham Islands Anniversary Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -314,10 +314,10 @@ "1977-11-28": "Chatham Islands Anniversary Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -360,10 +360,10 @@ "1981-11-30": "Chatham Islands Anniversary Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -373,12 +373,12 @@ "1982-11-29": "Chatham Islands Anniversary Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -388,10 +388,10 @@ "1983-11-28": "Chatham Islands Anniversary Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -434,10 +434,10 @@ "1987-11-30": "Chatham Islands Anniversary Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -447,10 +447,10 @@ "1988-11-28": "Chatham Islands Anniversary Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -493,10 +493,10 @@ "1992-11-30": "Chatham Islands Anniversary Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -506,12 +506,12 @@ "1993-11-29": "Chatham Islands Anniversary Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -521,10 +521,10 @@ "1994-11-28": "Chatham Islands Anniversary Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -567,10 +567,10 @@ "1998-11-30": "Chatham Islands Anniversary Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -580,12 +580,12 @@ "1999-11-29": "Chatham Islands Anniversary Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -639,12 +639,12 @@ "2004-11-29": "Chatham Islands Anniversary Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -654,10 +654,10 @@ "2005-11-28": "Chatham Islands Anniversary Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -700,10 +700,10 @@ "2009-11-30": "Chatham Islands Anniversary Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -713,12 +713,12 @@ "2010-11-29": "Chatham Islands Anniversary Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -727,10 +727,10 @@ "2011-11-28": "Chatham Islands Anniversary Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -768,18 +768,18 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-11-30": "Chatham Islands Anniversary Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -788,10 +788,10 @@ "2016-11-28": "Chatham Islands Anniversary Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -829,35 +829,35 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-11-30": "Chatham Islands Anniversary Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-11-29": "Chatham Islands Anniversary Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -868,10 +868,10 @@ "2022-11-28": "Chatham Islands Anniversary Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -912,37 +912,37 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-11-30": "Chatham Islands Anniversary Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-11-29": "Chatham Islands Anniversary Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -994,21 +994,21 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-11-29": "Chatham Islands Anniversary Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -1018,10 +1018,10 @@ "2033-11-28": "Chatham Islands Anniversary Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -1062,36 +1062,36 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-11-30": "Chatham Islands Anniversary Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-11-29": "Chatham Islands Anniversary Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1101,10 +1101,10 @@ "2039-11-28": "Chatham Islands Anniversary Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1145,19 +1145,19 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-11-30": "Chatham Islands Anniversary Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1167,10 +1167,10 @@ "2044-11-28": "Chatham Islands Anniversary Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1211,37 +1211,37 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-11-30": "Chatham Islands Anniversary Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-11-29": "Chatham Islands Anniversary Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1251,5 +1251,5 @@ "2050-11-28": "Chatham Islands Anniversary Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_COMMON.json b/snapshots/countries/NZ_COMMON.json index abfa2c331..59fa57831 100644 --- a/snapshots/countries/NZ_COMMON.json +++ b/snapshots/countries/NZ_COMMON.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -36,10 +36,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -47,12 +47,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -60,10 +60,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -98,10 +98,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -109,10 +109,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -147,10 +147,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -158,12 +158,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -171,10 +171,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -209,10 +209,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -220,12 +220,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -272,12 +272,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -286,10 +286,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -328,10 +328,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -340,12 +340,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -354,10 +354,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -396,10 +396,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -408,10 +408,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -450,10 +450,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -462,12 +462,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -476,10 +476,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -518,10 +518,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -530,12 +530,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -584,12 +584,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -598,10 +598,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -640,10 +640,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -652,12 +652,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -665,10 +665,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -703,17 +703,17 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -721,10 +721,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -759,33 +759,33 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -795,10 +795,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -836,35 +836,35 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -912,20 +912,20 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -934,10 +934,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -975,34 +975,34 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1011,10 +1011,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1052,18 +1052,18 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1072,10 +1072,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1113,35 +1113,35 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1150,5 +1150,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_GIS.json b/snapshots/countries/NZ_GIS.json index abfa2c331..59fa57831 100644 --- a/snapshots/countries/NZ_GIS.json +++ b/snapshots/countries/NZ_GIS.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -36,10 +36,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -47,12 +47,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -60,10 +60,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -98,10 +98,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -109,10 +109,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -147,10 +147,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -158,12 +158,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -171,10 +171,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -209,10 +209,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -220,12 +220,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -272,12 +272,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -286,10 +286,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -328,10 +328,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -340,12 +340,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -354,10 +354,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -396,10 +396,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -408,10 +408,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -450,10 +450,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -462,12 +462,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -476,10 +476,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -518,10 +518,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -530,12 +530,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -584,12 +584,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -598,10 +598,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -640,10 +640,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -652,12 +652,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -665,10 +665,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -703,17 +703,17 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -721,10 +721,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -759,33 +759,33 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -795,10 +795,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -836,35 +836,35 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -912,20 +912,20 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -934,10 +934,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -975,34 +975,34 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1011,10 +1011,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1052,18 +1052,18 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1072,10 +1072,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1113,35 +1113,35 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1150,5 +1150,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_HKB.json b/snapshots/countries/NZ_HKB.json index b9d288526..a714270e0 100644 --- a/snapshots/countries/NZ_HKB.json +++ b/snapshots/countries/NZ_HKB.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -40,10 +40,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -52,12 +52,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -66,10 +66,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -108,10 +108,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -120,10 +120,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -162,10 +162,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -174,12 +174,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -188,10 +188,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -230,10 +230,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -242,12 +242,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -299,12 +299,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -314,10 +314,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -360,10 +360,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -373,12 +373,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -388,10 +388,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -434,10 +434,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -447,10 +447,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -493,10 +493,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -506,12 +506,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -521,10 +521,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -567,10 +567,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -580,12 +580,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -639,12 +639,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -654,10 +654,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -700,10 +700,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -713,12 +713,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -727,10 +727,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -768,18 +768,18 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-23": "Hawke's Bay Anniversary Day", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -788,10 +788,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -829,35 +829,35 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-23": "Hawke's Bay Anniversary Day", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-22": "Hawke's Bay Anniversary Day", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -868,10 +868,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -912,37 +912,37 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-23": "Hawke's Bay Anniversary Day", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-22": "Hawke's Bay Anniversary Day", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -994,21 +994,21 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-22": "Hawke's Bay Anniversary Day", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -1018,10 +1018,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -1062,36 +1062,36 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-23": "Hawke's Bay Anniversary Day", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-22": "Hawke's Bay Anniversary Day", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1101,10 +1101,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1145,19 +1145,19 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-23": "Hawke's Bay Anniversary Day", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1167,10 +1167,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1211,37 +1211,37 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-23": "Hawke's Bay Anniversary Day", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-22": "Hawke's Bay Anniversary Day", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1251,5 +1251,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_MBH.json b/snapshots/countries/NZ_MBH.json index 283311a77..c9628ab6b 100644 --- a/snapshots/countries/NZ_MBH.json +++ b/snapshots/countries/NZ_MBH.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -40,10 +40,10 @@ "1953-11-02": "Marlborough Anniversary Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -52,12 +52,12 @@ "1954-11-01": "Marlborough Anniversary Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -66,10 +66,10 @@ "1955-10-31": "Marlborough Anniversary Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -108,10 +108,10 @@ "1959-11-02": "Marlborough Anniversary Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -120,10 +120,10 @@ "1960-10-31": "Marlborough Anniversary Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -162,10 +162,10 @@ "1964-11-02": "Marlborough Anniversary Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -174,12 +174,12 @@ "1965-11-01": "Marlborough Anniversary Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -188,10 +188,10 @@ "1966-10-31": "Marlborough Anniversary Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -230,10 +230,10 @@ "1970-11-02": "Marlborough Anniversary Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -242,12 +242,12 @@ "1971-11-01": "Marlborough Anniversary Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -299,12 +299,12 @@ "1976-11-01": "Marlborough Anniversary Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -314,10 +314,10 @@ "1977-10-31": "Marlborough Anniversary Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -360,10 +360,10 @@ "1981-11-02": "Marlborough Anniversary Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -373,12 +373,12 @@ "1982-11-01": "Marlborough Anniversary Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -388,10 +388,10 @@ "1983-10-31": "Marlborough Anniversary Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -434,10 +434,10 @@ "1987-11-02": "Marlborough Anniversary Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -447,10 +447,10 @@ "1988-10-31": "Marlborough Anniversary Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -493,10 +493,10 @@ "1992-11-02": "Marlborough Anniversary Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -506,12 +506,12 @@ "1993-11-01": "Marlborough Anniversary Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -521,10 +521,10 @@ "1994-10-31": "Marlborough Anniversary Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -567,10 +567,10 @@ "1998-11-02": "Marlborough Anniversary Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -580,12 +580,12 @@ "1999-11-01": "Marlborough Anniversary Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -639,12 +639,12 @@ "2004-11-01": "Marlborough Anniversary Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -654,10 +654,10 @@ "2005-10-31": "Marlborough Anniversary Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -700,10 +700,10 @@ "2009-11-02": "Marlborough Anniversary Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -713,12 +713,12 @@ "2010-11-01": "Marlborough Anniversary Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -727,10 +727,10 @@ "2011-10-31": "Marlborough Anniversary Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -768,18 +768,18 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-11-02": "Marlborough Anniversary Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -788,10 +788,10 @@ "2016-10-31": "Marlborough Anniversary Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -829,35 +829,35 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-11-02": "Marlborough Anniversary Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-11-01": "Marlborough Anniversary Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -868,10 +868,10 @@ "2022-10-31": "Marlborough Anniversary Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -912,37 +912,37 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-11-02": "Marlborough Anniversary Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-11-01": "Marlborough Anniversary Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -994,21 +994,21 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-11-01": "Marlborough Anniversary Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -1018,10 +1018,10 @@ "2033-10-31": "Marlborough Anniversary Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -1062,36 +1062,36 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-11-02": "Marlborough Anniversary Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-11-01": "Marlborough Anniversary Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1101,10 +1101,10 @@ "2039-10-31": "Marlborough Anniversary Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1145,19 +1145,19 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-11-02": "Marlborough Anniversary Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1167,10 +1167,10 @@ "2044-10-31": "Marlborough Anniversary Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1211,37 +1211,37 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-11-02": "Marlborough Anniversary Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-11-01": "Marlborough Anniversary Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1251,5 +1251,5 @@ "2050-10-31": "Marlborough Anniversary Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_MWT.json b/snapshots/countries/NZ_MWT.json index abfa2c331..59fa57831 100644 --- a/snapshots/countries/NZ_MWT.json +++ b/snapshots/countries/NZ_MWT.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -36,10 +36,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -47,12 +47,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -60,10 +60,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -98,10 +98,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -109,10 +109,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -147,10 +147,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -158,12 +158,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -171,10 +171,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -209,10 +209,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -220,12 +220,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -272,12 +272,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -286,10 +286,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -328,10 +328,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -340,12 +340,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -354,10 +354,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -396,10 +396,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -408,10 +408,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -450,10 +450,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -462,12 +462,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -476,10 +476,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -518,10 +518,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -530,12 +530,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -584,12 +584,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -598,10 +598,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -640,10 +640,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -652,12 +652,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -665,10 +665,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -703,17 +703,17 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -721,10 +721,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -759,33 +759,33 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -795,10 +795,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -836,35 +836,35 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -912,20 +912,20 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -934,10 +934,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -975,34 +975,34 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1011,10 +1011,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1052,18 +1052,18 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1072,10 +1072,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1113,35 +1113,35 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1150,5 +1150,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_NSN.json b/snapshots/countries/NZ_NSN.json index 4b9236168..a302bed64 100644 --- a/snapshots/countries/NZ_NSN.json +++ b/snapshots/countries/NZ_NSN.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-01-30": "Nelson Anniversary Day", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", @@ -40,10 +40,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-02-01": "Nelson Anniversary Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", @@ -52,12 +52,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-01-31": "Nelson Anniversary Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", @@ -66,10 +66,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-01-30": "Nelson Anniversary Day", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", @@ -108,10 +108,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-02-01": "Nelson Anniversary Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", @@ -120,10 +120,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-01-30": "Nelson Anniversary Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -162,10 +162,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-02-01": "Nelson Anniversary Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", @@ -174,12 +174,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-01-31": "Nelson Anniversary Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", @@ -188,10 +188,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-01-30": "Nelson Anniversary Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -230,10 +230,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-02-01": "Nelson Anniversary Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -242,12 +242,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-01-31": "Nelson Anniversary Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -299,12 +299,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-01-31": "Nelson Anniversary Day", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", @@ -314,10 +314,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-01-30": "Nelson Anniversary Day", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", @@ -360,10 +360,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-01": "Nelson Anniversary Day", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", @@ -373,12 +373,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-01-31": "Nelson Anniversary Day", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", @@ -388,10 +388,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-01-30": "Nelson Anniversary Day", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", @@ -434,10 +434,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-01": "Nelson Anniversary Day", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", @@ -447,10 +447,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-01-30": "Nelson Anniversary Day", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", @@ -493,10 +493,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-01": "Nelson Anniversary Day", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", @@ -506,12 +506,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-01-31": "Nelson Anniversary Day", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", @@ -521,10 +521,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-01-30": "Nelson Anniversary Day", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", @@ -567,10 +567,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-01": "Nelson Anniversary Day", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", @@ -580,12 +580,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-01-31": "Nelson Anniversary Day", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", @@ -639,12 +639,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-01-31": "Nelson Anniversary Day", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", @@ -654,10 +654,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-30": "Nelson Anniversary Day", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", @@ -700,10 +700,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-01": "Nelson Anniversary Day", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", @@ -713,12 +713,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-01-31": "Nelson Anniversary Day", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", @@ -727,10 +727,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-01-30": "Nelson Anniversary Day", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", @@ -769,18 +769,18 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-01": "Nelson Anniversary Day", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -788,10 +788,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-01-30": "Nelson Anniversary Day", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", @@ -830,35 +830,35 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-01": "Nelson Anniversary Day", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-01-31": "Nelson Anniversary Day", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -868,10 +868,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-01-30": "Nelson Anniversary Day", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", @@ -913,37 +913,37 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-01": "Nelson Anniversary Day", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-01-31": "Nelson Anniversary Day", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -995,21 +995,21 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-01-31": "Nelson Anniversary Day", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -1018,10 +1018,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-01-30": "Nelson Anniversary Day", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", @@ -1063,36 +1063,36 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-01": "Nelson Anniversary Day", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-01-31": "Nelson Anniversary Day", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1101,10 +1101,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-01-30": "Nelson Anniversary Day", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", @@ -1146,19 +1146,19 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-01": "Nelson Anniversary Day", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1167,10 +1167,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-01-30": "Nelson Anniversary Day", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", @@ -1212,37 +1212,37 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-01": "Nelson Anniversary Day", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-01-31": "Nelson Anniversary Day", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1251,5 +1251,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_NTL.json b/snapshots/countries/NZ_NTL.json index 657d2d16a..a8cb022be 100644 --- a/snapshots/countries/NZ_NTL.json +++ b/snapshots/countries/NZ_NTL.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-01-30": "Auckland Anniversary Day", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", @@ -40,10 +40,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-02-01": "Auckland Anniversary Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", @@ -52,12 +52,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-01-31": "Auckland Anniversary Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", @@ -66,10 +66,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-01-30": "Auckland Anniversary Day", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", @@ -108,10 +108,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-02-01": "Auckland Anniversary Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", @@ -120,10 +120,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-01-30": "Auckland Anniversary Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -162,10 +162,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-02-08": "Waitangi Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", @@ -174,12 +174,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-02-07": "Waitangi Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", @@ -188,10 +188,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-02-06": "Waitangi Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -230,10 +230,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-02-08": "Waitangi Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -242,12 +242,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-02-07": "Waitangi Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -299,12 +299,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-01-31": "Auckland Anniversary Day", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", @@ -314,10 +314,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-01-30": "Auckland Anniversary Day", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", @@ -360,10 +360,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-01": "Auckland Anniversary Day", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", @@ -373,12 +373,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-01-31": "Auckland Anniversary Day", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", @@ -388,10 +388,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-01-30": "Auckland Anniversary Day", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", @@ -434,10 +434,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-01": "Auckland Anniversary Day", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", @@ -447,10 +447,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-01-30": "Auckland Anniversary Day", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", @@ -493,10 +493,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-01": "Auckland Anniversary Day", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", @@ -506,12 +506,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-01-31": "Auckland Anniversary Day", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", @@ -521,10 +521,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-01-30": "Auckland Anniversary Day", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", @@ -567,10 +567,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-01": "Auckland Anniversary Day", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", @@ -580,12 +580,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-01-31": "Auckland Anniversary Day", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", @@ -639,12 +639,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-01-31": "Auckland Anniversary Day", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", @@ -654,10 +654,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-30": "Auckland Anniversary Day", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", @@ -700,10 +700,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-01": "Auckland Anniversary Day", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", @@ -713,12 +713,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-01-31": "Auckland Anniversary Day", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", @@ -727,10 +727,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-01-30": "Auckland Anniversary Day", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", @@ -769,18 +769,18 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-01": "Auckland Anniversary Day", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -788,10 +788,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-01-30": "Auckland Anniversary Day", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", @@ -830,35 +830,35 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-01": "Auckland Anniversary Day", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-01-31": "Auckland Anniversary Day", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -868,10 +868,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-01-30": "Auckland Anniversary Day", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", @@ -913,37 +913,37 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-01": "Auckland Anniversary Day", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-01-31": "Auckland Anniversary Day", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -995,21 +995,21 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-01-31": "Auckland Anniversary Day", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -1018,10 +1018,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-01-30": "Auckland Anniversary Day", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", @@ -1063,36 +1063,36 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-01": "Auckland Anniversary Day", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-01-31": "Auckland Anniversary Day", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1101,10 +1101,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-01-30": "Auckland Anniversary Day", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", @@ -1146,19 +1146,19 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-01": "Auckland Anniversary Day", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1167,10 +1167,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-01-30": "Auckland Anniversary Day", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", @@ -1212,37 +1212,37 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-01": "Auckland Anniversary Day", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-01-31": "Auckland Anniversary Day", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1251,5 +1251,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_OTA.json b/snapshots/countries/NZ_OTA.json index accf66d02..0699614e0 100644 --- a/snapshots/countries/NZ_OTA.json +++ b/snapshots/countries/NZ_OTA.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-03-20": "Otago Anniversary Day", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", @@ -40,10 +40,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-03-22": "Otago Anniversary Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", @@ -52,12 +52,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-03-21": "Otago Anniversary Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", @@ -66,10 +66,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-26": "Otago Anniversary Day", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", @@ -108,10 +108,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-03-21": "Otago Anniversary Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", @@ -120,10 +120,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-20": "Otago Anniversary Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -162,10 +162,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-03-22": "Otago Anniversary Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", @@ -174,12 +174,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-03-21": "Otago Anniversary Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", @@ -188,10 +188,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-20": "Otago Anniversary Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -230,10 +230,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-03-22": "Otago Anniversary Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -242,12 +242,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-20": "Otago Anniversary Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -299,12 +299,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-03-21": "Otago Anniversary Day", "1977-04-08": "Good Friday", @@ -314,10 +314,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-20": "Otago Anniversary Day", "1978-03-24": "Good Friday", @@ -360,10 +360,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-03-22": "Otago Anniversary Day", "1982-04-09": "Good Friday", @@ -373,12 +373,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-03-21": "Otago Anniversary Day", "1983-04-01": "Good Friday", @@ -388,10 +388,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-03-26": "Otago Anniversary Day", "1984-04-20": "Good Friday", @@ -434,10 +434,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-03-21": "Otago Anniversary Day", "1988-04-01": "Good Friday", @@ -447,10 +447,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-20": "Otago Anniversary Day", "1989-03-24": "Good Friday", @@ -493,10 +493,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-03-22": "Otago Anniversary Day", "1993-04-09": "Good Friday", @@ -506,12 +506,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-03-21": "Otago Anniversary Day", "1994-04-01": "Good Friday", @@ -521,10 +521,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-03-20": "Otago Anniversary Day", "1995-04-14": "Good Friday", @@ -567,10 +567,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-03-22": "Otago Anniversary Day", "1999-04-02": "Good Friday", @@ -580,12 +580,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-03-20": "Otago Anniversary Day", "2000-04-21": "Good Friday", @@ -639,12 +639,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-21": "Otago Anniversary Day", "2005-03-25": "Good Friday", @@ -654,10 +654,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-03-20": "Otago Anniversary Day", "2006-04-14": "Good Friday", @@ -700,10 +700,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-03-22": "Otago Anniversary Day", "2010-04-02": "Good Friday", @@ -713,12 +713,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-03-21": "Otago Anniversary Day", "2011-04-22": "Good Friday", @@ -727,10 +727,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-03-26": "Otago Anniversary Day", "2012-04-06": "Good Friday", @@ -769,17 +769,17 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-21": "Otago Anniversary Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", @@ -788,10 +788,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-03-20": "Otago Anniversary Day", "2017-04-14": "Good Friday", @@ -830,34 +830,34 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-03-22": "Otago Anniversary Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-03-21": "Otago Anniversary Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", @@ -868,10 +868,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-03-20": "Otago Anniversary Day", "2023-04-07": "Good Friday", @@ -913,36 +913,36 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-22": "Otago Anniversary Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-03-20": "Otago Anniversary Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", @@ -995,20 +995,20 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-03-21": "Otago Anniversary Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", @@ -1018,10 +1018,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-03-20": "Otago Anniversary Day", "2034-04-07": "Good Friday", @@ -1063,35 +1063,35 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-03-22": "Otago Anniversary Day", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-03-21": "Otago Anniversary Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", @@ -1101,10 +1101,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-26": "Otago Anniversary Day", "2040-03-30": "Good Friday", @@ -1146,18 +1146,18 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-03-21": "Otago Anniversary Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", @@ -1167,10 +1167,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-03-20": "Otago Anniversary Day", "2045-04-07": "Good Friday", @@ -1212,36 +1212,36 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-03-22": "Otago Anniversary Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-03-21": "Otago Anniversary Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", @@ -1251,5 +1251,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_STL.json b/snapshots/countries/NZ_STL.json index 2a0718e43..a9b8f5813 100644 --- a/snapshots/countries/NZ_STL.json +++ b/snapshots/countries/NZ_STL.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-01-16": "Southland Anniversary Day", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", @@ -40,10 +40,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-01-18": "Southland Anniversary Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", @@ -52,12 +52,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-01-17": "Southland Anniversary Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", @@ -66,10 +66,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-01-16": "Southland Anniversary Day", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", @@ -108,10 +108,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-01-18": "Southland Anniversary Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", @@ -120,10 +120,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-01-16": "Southland Anniversary Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -162,10 +162,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-01-18": "Southland Anniversary Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", @@ -174,12 +174,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-01-17": "Southland Anniversary Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", @@ -188,10 +188,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-01-16": "Southland Anniversary Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -230,10 +230,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-01-18": "Southland Anniversary Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -242,12 +242,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-01-17": "Southland Anniversary Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -299,12 +299,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-01-17": "Southland Anniversary Day", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", @@ -314,10 +314,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-01-16": "Southland Anniversary Day", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", @@ -360,10 +360,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-01-18": "Southland Anniversary Day", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", @@ -373,12 +373,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-01-17": "Southland Anniversary Day", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", @@ -388,10 +388,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-01-16": "Southland Anniversary Day", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", @@ -434,10 +434,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-01-18": "Southland Anniversary Day", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", @@ -447,10 +447,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-01-16": "Southland Anniversary Day", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", @@ -493,10 +493,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-01-18": "Southland Anniversary Day", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", @@ -506,12 +506,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-01-17": "Southland Anniversary Day", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", @@ -521,10 +521,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-01-16": "Southland Anniversary Day", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", @@ -567,10 +567,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-01-18": "Southland Anniversary Day", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", @@ -580,12 +580,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-01-17": "Southland Anniversary Day", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", @@ -639,12 +639,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-01-17": "Southland Anniversary Day", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", @@ -654,10 +654,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-16": "Southland Anniversary Day", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", @@ -700,10 +700,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-01-18": "Southland Anniversary Day", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", @@ -713,12 +713,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-01-17": "Southland Anniversary Day", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", @@ -727,10 +727,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -769,17 +769,17 @@ "2015-04-06": "Easter Monday", "2015-04-07": "Southland Anniversary Day", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-03-29": "Southland Anniversary Day", @@ -788,10 +788,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -830,34 +830,34 @@ "2020-04-13": "Easter Monday", "2020-04-14": "Southland Anniversary Day", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-06": "Southland Anniversary Day", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-19": "Southland Anniversary Day", @@ -868,10 +868,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -913,36 +913,36 @@ "2026-04-06": "Easter Monday", "2026-04-07": "Southland Anniversary Day", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-03-30": "Southland Anniversary Day", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-18": "Southland Anniversary Day", @@ -995,20 +995,20 @@ "2032-03-29": "Easter Monday", "2032-03-30": "Southland Anniversary Day", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-19": "Southland Anniversary Day", @@ -1018,10 +1018,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -1063,35 +1063,35 @@ "2037-04-06": "Easter Monday", "2037-04-07": "Southland Anniversary Day", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-04-27": "Southland Anniversary Day", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-12": "Southland Anniversary Day", @@ -1101,10 +1101,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1146,18 +1146,18 @@ "2043-03-30": "Easter Monday", "2043-03-31": "Southland Anniversary Day", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-19": "Southland Anniversary Day", @@ -1167,10 +1167,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1212,36 +1212,36 @@ "2048-04-06": "Easter Monday", "2048-04-07": "Southland Anniversary Day", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-20": "Southland Anniversary Day", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-12": "Southland Anniversary Day", @@ -1251,5 +1251,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_TAS.json b/snapshots/countries/NZ_TAS.json index abfa2c331..59fa57831 100644 --- a/snapshots/countries/NZ_TAS.json +++ b/snapshots/countries/NZ_TAS.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -36,10 +36,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -47,12 +47,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -60,10 +60,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -98,10 +98,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -109,10 +109,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -147,10 +147,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -158,12 +158,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -171,10 +171,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -209,10 +209,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -220,12 +220,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -272,12 +272,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -286,10 +286,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -328,10 +328,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -340,12 +340,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -354,10 +354,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -396,10 +396,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -408,10 +408,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -450,10 +450,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -462,12 +462,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -476,10 +476,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -518,10 +518,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -530,12 +530,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -584,12 +584,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -598,10 +598,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -640,10 +640,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -652,12 +652,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -665,10 +665,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -703,17 +703,17 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -721,10 +721,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -759,33 +759,33 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -795,10 +795,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -836,35 +836,35 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -912,20 +912,20 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -934,10 +934,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -975,34 +975,34 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1011,10 +1011,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1052,18 +1052,18 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1072,10 +1072,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1113,35 +1113,35 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1150,5 +1150,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_TKI.json b/snapshots/countries/NZ_TKI.json index 61e12b832..d15d211ee 100644 --- a/snapshots/countries/NZ_TKI.json +++ b/snapshots/countries/NZ_TKI.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-03-13": "Taranaki Anniversary Day", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", @@ -40,10 +40,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-03-08": "Taranaki Anniversary Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", @@ -52,12 +52,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-03-14": "Taranaki Anniversary Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", @@ -66,10 +66,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-12": "Taranaki Anniversary Day", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", @@ -108,10 +108,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-03-14": "Taranaki Anniversary Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", @@ -120,10 +120,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-13": "Taranaki Anniversary Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -162,10 +162,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-03-08": "Taranaki Anniversary Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", @@ -174,12 +174,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-03-14": "Taranaki Anniversary Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", @@ -188,10 +188,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-13": "Taranaki Anniversary Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -230,10 +230,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-03-08": "Taranaki Anniversary Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -242,12 +242,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-13": "Taranaki Anniversary Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -299,12 +299,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-03-14": "Taranaki Anniversary Day", "1977-04-08": "Good Friday", @@ -314,10 +314,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-13": "Taranaki Anniversary Day", "1978-03-24": "Good Friday", @@ -360,10 +360,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-03-08": "Taranaki Anniversary Day", "1982-04-09": "Good Friday", @@ -373,12 +373,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-03-14": "Taranaki Anniversary Day", "1983-04-01": "Good Friday", @@ -388,10 +388,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-03-12": "Taranaki Anniversary Day", "1984-04-20": "Good Friday", @@ -434,10 +434,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-03-14": "Taranaki Anniversary Day", "1988-04-01": "Good Friday", @@ -447,10 +447,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-13": "Taranaki Anniversary Day", "1989-03-24": "Good Friday", @@ -493,10 +493,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-03-08": "Taranaki Anniversary Day", "1993-04-09": "Good Friday", @@ -506,12 +506,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-03-14": "Taranaki Anniversary Day", "1994-04-01": "Good Friday", @@ -521,10 +521,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-03-13": "Taranaki Anniversary Day", "1995-04-14": "Good Friday", @@ -567,10 +567,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-03-08": "Taranaki Anniversary Day", "1999-04-02": "Good Friday", @@ -580,12 +580,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-03-13": "Taranaki Anniversary Day", "2000-04-21": "Good Friday", @@ -639,12 +639,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-14": "Taranaki Anniversary Day", "2005-03-25": "Good Friday", @@ -654,10 +654,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-03-13": "Taranaki Anniversary Day", "2006-04-14": "Good Friday", @@ -700,10 +700,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-03-08": "Taranaki Anniversary Day", "2010-04-02": "Good Friday", @@ -713,12 +713,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-03-14": "Taranaki Anniversary Day", "2011-04-22": "Good Friday", @@ -727,10 +727,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-03-12": "Taranaki Anniversary Day", "2012-04-06": "Good Friday", @@ -769,17 +769,17 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-14": "Taranaki Anniversary Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", @@ -788,10 +788,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-03-13": "Taranaki Anniversary Day", "2017-04-14": "Good Friday", @@ -830,34 +830,34 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-03-08": "Taranaki Anniversary Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-03-14": "Taranaki Anniversary Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", @@ -868,10 +868,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-03-13": "Taranaki Anniversary Day", "2023-04-07": "Good Friday", @@ -913,36 +913,36 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-08": "Taranaki Anniversary Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-03-13": "Taranaki Anniversary Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", @@ -995,20 +995,20 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-03-14": "Taranaki Anniversary Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", @@ -1018,10 +1018,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-03-13": "Taranaki Anniversary Day", "2034-04-07": "Good Friday", @@ -1063,35 +1063,35 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-03-08": "Taranaki Anniversary Day", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-03-14": "Taranaki Anniversary Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", @@ -1101,10 +1101,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-12": "Taranaki Anniversary Day", "2040-03-30": "Good Friday", @@ -1146,18 +1146,18 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-03-14": "Taranaki Anniversary Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", @@ -1167,10 +1167,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-03-13": "Taranaki Anniversary Day", "2045-04-07": "Good Friday", @@ -1212,36 +1212,36 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-03-08": "Taranaki Anniversary Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-03-14": "Taranaki Anniversary Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", @@ -1251,5 +1251,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_WGN.json b/snapshots/countries/NZ_WGN.json index c42c1a018..fa075d207 100644 --- a/snapshots/countries/NZ_WGN.json +++ b/snapshots/countries/NZ_WGN.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-01-23": "Wellington Anniversary Day", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", @@ -40,10 +40,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-01-25": "Wellington Anniversary Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", @@ -52,12 +52,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-01-24": "Wellington Anniversary Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", @@ -66,10 +66,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-01-23": "Wellington Anniversary Day", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", @@ -108,10 +108,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-01-25": "Wellington Anniversary Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", @@ -120,10 +120,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-01-23": "Wellington Anniversary Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -162,10 +162,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-01-25": "Wellington Anniversary Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", @@ -174,12 +174,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-01-24": "Wellington Anniversary Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", @@ -188,10 +188,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-01-23": "Wellington Anniversary Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -230,10 +230,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-01-25": "Wellington Anniversary Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -242,12 +242,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-01-24": "Wellington Anniversary Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -299,12 +299,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-01-24": "Wellington Anniversary Day", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", @@ -314,10 +314,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-01-23": "Wellington Anniversary Day", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", @@ -360,10 +360,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-01-25": "Wellington Anniversary Day", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", @@ -373,12 +373,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-01-24": "Wellington Anniversary Day", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", @@ -388,10 +388,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-01-23": "Wellington Anniversary Day", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", @@ -434,10 +434,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-01-25": "Wellington Anniversary Day", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", @@ -447,10 +447,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-01-23": "Wellington Anniversary Day", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", @@ -493,10 +493,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-01-25": "Wellington Anniversary Day", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", @@ -506,12 +506,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-01-24": "Wellington Anniversary Day", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", @@ -521,10 +521,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-01-23": "Wellington Anniversary Day", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", @@ -567,10 +567,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-01-25": "Wellington Anniversary Day", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", @@ -580,12 +580,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-01-24": "Wellington Anniversary Day", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", @@ -639,12 +639,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-01-24": "Wellington Anniversary Day", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", @@ -654,10 +654,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-23": "Wellington Anniversary Day", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", @@ -700,10 +700,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-01-25": "Wellington Anniversary Day", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", @@ -713,12 +713,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-01-24": "Wellington Anniversary Day", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", @@ -727,10 +727,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-01-23": "Wellington Anniversary Day", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", @@ -769,18 +769,18 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-01-25": "Wellington Anniversary Day", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -788,10 +788,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-01-23": "Wellington Anniversary Day", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", @@ -830,35 +830,35 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-01-25": "Wellington Anniversary Day", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-01-24": "Wellington Anniversary Day", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -868,10 +868,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-01-23": "Wellington Anniversary Day", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", @@ -913,37 +913,37 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-01-25": "Wellington Anniversary Day", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-01-24": "Wellington Anniversary Day", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -995,21 +995,21 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-01-24": "Wellington Anniversary Day", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -1018,10 +1018,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-01-23": "Wellington Anniversary Day", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", @@ -1063,36 +1063,36 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-01-25": "Wellington Anniversary Day", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-01-24": "Wellington Anniversary Day", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1101,10 +1101,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-01-23": "Wellington Anniversary Day", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", @@ -1146,19 +1146,19 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-01-25": "Wellington Anniversary Day", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1167,10 +1167,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-01-23": "Wellington Anniversary Day", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", @@ -1212,37 +1212,37 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-01-25": "Wellington Anniversary Day", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-01-24": "Wellington Anniversary Day", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1251,5 +1251,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_WKO.json b/snapshots/countries/NZ_WKO.json index abfa2c331..59fa57831 100644 --- a/snapshots/countries/NZ_WKO.json +++ b/snapshots/countries/NZ_WKO.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -36,10 +36,10 @@ "1953-10-26": "Labour Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -47,12 +47,12 @@ "1954-10-25": "Labour Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -60,10 +60,10 @@ "1955-10-24": "Labour Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -98,10 +98,10 @@ "1959-10-26": "Labour Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -109,10 +109,10 @@ "1960-10-24": "Labour Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -147,10 +147,10 @@ "1964-10-26": "Labour Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -158,12 +158,12 @@ "1965-10-25": "Labour Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -171,10 +171,10 @@ "1966-10-24": "Labour Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -209,10 +209,10 @@ "1970-10-26": "Labour Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -220,12 +220,12 @@ "1971-10-25": "Labour Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -272,12 +272,12 @@ "1976-10-25": "Labour Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -286,10 +286,10 @@ "1977-10-24": "Labour Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -328,10 +328,10 @@ "1981-10-26": "Labour Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -340,12 +340,12 @@ "1982-10-25": "Labour Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -354,10 +354,10 @@ "1983-10-24": "Labour Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -396,10 +396,10 @@ "1987-10-26": "Labour Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -408,10 +408,10 @@ "1988-10-24": "Labour Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -450,10 +450,10 @@ "1992-10-26": "Labour Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -462,12 +462,12 @@ "1993-10-25": "Labour Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -476,10 +476,10 @@ "1994-10-24": "Labour Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -518,10 +518,10 @@ "1998-10-26": "Labour Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -530,12 +530,12 @@ "1999-10-25": "Labour Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -584,12 +584,12 @@ "2004-10-25": "Labour Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -598,10 +598,10 @@ "2005-10-24": "Labour Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -640,10 +640,10 @@ "2009-10-26": "Labour Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -652,12 +652,12 @@ "2010-10-25": "Labour Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -665,10 +665,10 @@ "2011-10-24": "Labour Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -703,17 +703,17 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -721,10 +721,10 @@ "2016-10-24": "Labour Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -759,33 +759,33 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -795,10 +795,10 @@ "2022-10-24": "Labour Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -836,35 +836,35 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -912,20 +912,20 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -934,10 +934,10 @@ "2033-10-24": "Labour Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -975,34 +975,34 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1011,10 +1011,10 @@ "2039-10-24": "Labour Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1052,18 +1052,18 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1072,10 +1072,10 @@ "2044-10-24": "Labour Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1113,35 +1113,35 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1150,5 +1150,5 @@ "2050-10-24": "Labour Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/NZ_WTC.json b/snapshots/countries/NZ_WTC.json index 4275ba4c1..23ff6390a 100644 --- a/snapshots/countries/NZ_WTC.json +++ b/snapshots/countries/NZ_WTC.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "Day after New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-04-10": "Easter Monday", "1950-04-25": "Anzac Day", @@ -40,10 +40,10 @@ "1953-11-30": "West Coast Anniversary Day", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-01-01": "New Year's Day", "1954-01-02": "Day after New Year's Day", - "1954-01-04": "Day after New Year's Day (Observed)", + "1954-01-04": "Day after New Year's Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-04-25": "Anzac Day", @@ -52,12 +52,12 @@ "1954-11-29": "West Coast Anniversary Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "Day after New Year's Day", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "Day after New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "Day after New Year's Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-04-25": "Anzac Day", @@ -66,10 +66,10 @@ "1955-11-28": "West Coast Anniversary Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", "1956-01-02": "Day after New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-04-25": "Anzac Day", @@ -108,10 +108,10 @@ "1959-11-30": "West Coast Anniversary Day", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-01-01": "New Year's Day", "1960-01-02": "Day after New Year's Day", - "1960-01-04": "Day after New Year's Day (Observed)", + "1960-01-04": "Day after New Year's Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-04-25": "Anzac Day", @@ -120,10 +120,10 @@ "1960-11-28": "West Coast Anniversary Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", "1961-01-02": "Day after New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-04-25": "Anzac Day", @@ -162,10 +162,10 @@ "1964-11-30": "West Coast Anniversary Day", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-01-01": "New Year's Day", "1965-01-02": "Day after New Year's Day", - "1965-01-04": "Day after New Year's Day (Observed)", + "1965-01-04": "Day after New Year's Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-04-25": "Anzac Day", @@ -174,12 +174,12 @@ "1965-11-29": "West Coast Anniversary Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "Day after New Year's Day", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "Day after New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "Day after New Year's Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-04-25": "Anzac Day", @@ -188,10 +188,10 @@ "1966-11-28": "West Coast Anniversary Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", "1967-01-02": "Day after New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-04-25": "Anzac Day", @@ -230,10 +230,10 @@ "1970-11-30": "West Coast Anniversary Day", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-01-01": "New Year's Day", "1971-01-02": "Day after New Year's Day", - "1971-01-04": "Day after New Year's Day (Observed)", + "1971-01-04": "Day after New Year's Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-04-25": "Anzac Day", @@ -242,12 +242,12 @@ "1971-11-29": "West Coast Anniversary Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "Day after New Year's Day", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "Day after New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "Day after New Year's Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-04-25": "Anzac Day", @@ -299,12 +299,12 @@ "1976-11-29": "West Coast Anniversary Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "Day after New Year's Day", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "Day after New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "Day after New Year's Day (observed)", "1977-02-06": "Waitangi Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -314,10 +314,10 @@ "1977-11-28": "West Coast Anniversary Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", "1978-01-02": "Day after New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-02-06": "Waitangi Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -360,10 +360,10 @@ "1981-11-30": "West Coast Anniversary Day", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "Day after New Year's Day", - "1982-01-04": "Day after New Year's Day (Observed)", + "1982-01-04": "Day after New Year's Day (observed)", "1982-02-06": "Waitangi Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -373,12 +373,12 @@ "1982-11-29": "West Coast Anniversary Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "Day after New Year's Day", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "Day after New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "Day after New Year's Day (observed)", "1983-02-06": "Waitangi Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -388,10 +388,10 @@ "1983-11-28": "West Coast Anniversary Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", "1984-01-02": "Day after New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-02-06": "Waitangi Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -434,10 +434,10 @@ "1987-11-30": "West Coast Anniversary Day", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "Day after New Year's Day", - "1988-01-04": "Day after New Year's Day (Observed)", + "1988-01-04": "Day after New Year's Day (observed)", "1988-02-06": "Waitangi Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -447,10 +447,10 @@ "1988-11-28": "West Coast Anniversary Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", "1989-01-02": "Day after New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-02-06": "Waitangi Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -493,10 +493,10 @@ "1992-11-30": "West Coast Anniversary Day", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "Day after New Year's Day", - "1993-01-04": "Day after New Year's Day (Observed)", + "1993-01-04": "Day after New Year's Day (observed)", "1993-02-06": "Waitangi Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -506,12 +506,12 @@ "1993-11-29": "West Coast Anniversary Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "Day after New Year's Day", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "Day after New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "Day after New Year's Day (observed)", "1994-02-06": "Waitangi Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -521,10 +521,10 @@ "1994-11-28": "West Coast Anniversary Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", "1995-01-02": "Day after New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-02-06": "Waitangi Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -567,10 +567,10 @@ "1998-11-30": "West Coast Anniversary Day", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "Day after New Year's Day", - "1999-01-04": "Day after New Year's Day (Observed)", + "1999-01-04": "Day after New Year's Day (observed)", "1999-02-06": "Waitangi Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -580,12 +580,12 @@ "1999-11-29": "West Coast Anniversary Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-01-02": "Day after New Year's Day", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "Day after New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "Day after New Year's Day (observed)", "2000-02-06": "Waitangi Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -639,12 +639,12 @@ "2004-11-29": "West Coast Anniversary Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "Day after New Year's Day", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "Day after New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "Day after New Year's Day (observed)", "2005-02-06": "Waitangi Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -654,10 +654,10 @@ "2005-12-05": "West Coast Anniversary Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", "2006-01-02": "Day after New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-02-06": "Waitangi Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -700,10 +700,10 @@ "2009-11-30": "West Coast Anniversary Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "Day after New Year's Day", - "2010-01-04": "Day after New Year's Day (Observed)", + "2010-01-04": "Day after New Year's Day (observed)", "2010-02-06": "Waitangi Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -713,12 +713,12 @@ "2010-11-29": "West Coast Anniversary Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "Day after New Year's Day", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "Day after New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "Day after New Year's Day (observed)", "2011-02-06": "Waitangi Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", @@ -727,10 +727,10 @@ "2011-11-28": "West Coast Anniversary Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", "2012-01-02": "Day after New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-02-06": "Waitangi Day", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", @@ -768,18 +768,18 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-04-27": "Anzac Day (Observed)", + "2015-04-27": "Anzac Day (observed)", "2015-06-01": "Queen's Birthday", "2015-10-26": "Labour Day", "2015-11-30": "West Coast Anniversary Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "Day after New Year's Day", - "2016-01-04": "Day after New Year's Day (Observed)", + "2016-01-04": "Day after New Year's Day (observed)", "2016-02-06": "Waitangi Day", - "2016-02-08": "Waitangi Day (Observed)", + "2016-02-08": "Waitangi Day (observed)", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", @@ -788,10 +788,10 @@ "2016-11-28": "West Coast Anniversary Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", "2017-01-02": "Day after New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-02-06": "Waitangi Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -829,35 +829,35 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-04-27": "Anzac Day (Observed)", + "2020-04-27": "Anzac Day (observed)", "2020-06-01": "Queen's Birthday", "2020-10-26": "Labour Day", "2020-11-30": "West Coast Anniversary Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "Day after New Year's Day", - "2021-01-04": "Day after New Year's Day (Observed)", + "2021-01-04": "Day after New Year's Day (observed)", "2021-02-06": "Waitangi Day", - "2021-02-08": "Waitangi Day (Observed)", + "2021-02-08": "Waitangi Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-04-26": "Anzac Day (Observed)", + "2021-04-26": "Anzac Day (observed)", "2021-06-07": "Queen's Birthday", "2021-10-25": "Labour Day", "2021-11-29": "West Coast Anniversary Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "Day after New Year's Day", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "Day after New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "Day after New Year's Day (observed)", "2022-02-06": "Waitangi Day", - "2022-02-07": "Waitangi Day (Observed)", + "2022-02-07": "Waitangi Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", @@ -868,10 +868,10 @@ "2022-11-28": "West Coast Anniversary Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", "2023-01-02": "Day after New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-02-06": "Waitangi Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -912,37 +912,37 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-04-27": "Anzac Day (Observed)", + "2026-04-27": "Anzac Day (observed)", "2026-06-01": "King's Birthday", "2026-07-10": "Matariki", "2026-10-26": "Labour Day", "2026-11-30": "West Coast Anniversary Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "Day after New Year's Day", - "2027-01-04": "Day after New Year's Day (Observed)", + "2027-01-04": "Day after New Year's Day (observed)", "2027-02-06": "Waitangi Day", - "2027-02-08": "Waitangi Day (Observed)", + "2027-02-08": "Waitangi Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-04-26": "Anzac Day (Observed)", + "2027-04-26": "Anzac Day (observed)", "2027-06-07": "King's Birthday", "2027-06-25": "Matariki", "2027-10-25": "Labour Day", "2027-11-29": "West Coast Anniversary Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "Day after New Year's Day", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "Day after New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "Day after New Year's Day (observed)", "2028-02-06": "Waitangi Day", - "2028-02-07": "Waitangi Day (Observed)", + "2028-02-07": "Waitangi Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", @@ -994,21 +994,21 @@ "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-04-26": "Anzac Day (Observed)", + "2032-04-26": "Anzac Day (observed)", "2032-06-07": "King's Birthday", "2032-07-02": "Matariki", "2032-10-25": "Labour Day", "2032-11-29": "West Coast Anniversary Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "Day after New Year's Day", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Day after New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Day after New Year's Day (observed)", "2033-02-06": "Waitangi Day", - "2033-02-07": "Waitangi Day (Observed)", + "2033-02-07": "Waitangi Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", @@ -1018,10 +1018,10 @@ "2033-11-28": "West Coast Anniversary Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", "2034-01-02": "Day after New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-02-06": "Waitangi Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -1062,36 +1062,36 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-04-27": "Anzac Day (Observed)", + "2037-04-27": "Anzac Day (observed)", "2037-06-01": "King's Birthday", "2037-07-10": "Matariki", "2037-10-26": "Labour Day", "2037-11-30": "West Coast Anniversary Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "Day after New Year's Day", - "2038-01-04": "Day after New Year's Day (Observed)", + "2038-01-04": "Day after New Year's Day (observed)", "2038-02-06": "Waitangi Day", - "2038-02-08": "Waitangi Day (Observed)", + "2038-02-08": "Waitangi Day (observed)", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", - "2038-04-26": "Anzac Day (Observed); Easter Monday", + "2038-04-26": "Anzac Day (observed); Easter Monday", "2038-06-07": "King's Birthday", "2038-06-25": "Matariki", "2038-10-25": "Labour Day", "2038-11-29": "West Coast Anniversary Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "Day after New Year's Day", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "Day after New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "Day after New Year's Day (observed)", "2039-02-06": "Waitangi Day", - "2039-02-07": "Waitangi Day (Observed)", + "2039-02-07": "Waitangi Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", @@ -1101,10 +1101,10 @@ "2039-11-28": "West Coast Anniversary Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", "2040-01-02": "Day after New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-02-06": "Waitangi Day", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", @@ -1145,19 +1145,19 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-04-27": "Anzac Day (Observed)", + "2043-04-27": "Anzac Day (observed)", "2043-06-01": "King's Birthday", "2043-07-03": "Matariki", "2043-10-26": "Labour Day", "2043-11-30": "West Coast Anniversary Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "Day after New Year's Day", - "2044-01-04": "Day after New Year's Day (Observed)", + "2044-01-04": "Day after New Year's Day (observed)", "2044-02-06": "Waitangi Day", - "2044-02-08": "Waitangi Day (Observed)", + "2044-02-08": "Waitangi Day (observed)", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", @@ -1167,10 +1167,10 @@ "2044-11-28": "West Coast Anniversary Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", "2045-01-02": "Day after New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-02-06": "Waitangi Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1211,37 +1211,37 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-04-27": "Anzac Day (Observed)", + "2048-04-27": "Anzac Day (observed)", "2048-06-01": "King's Birthday", "2048-07-03": "Matariki", "2048-10-26": "Labour Day", "2048-11-30": "West Coast Anniversary Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "Day after New Year's Day", - "2049-01-04": "Day after New Year's Day (Observed)", + "2049-01-04": "Day after New Year's Day (observed)", "2049-02-06": "Waitangi Day", - "2049-02-08": "Waitangi Day (Observed)", + "2049-02-08": "Waitangi Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-04-26": "Anzac Day (Observed)", + "2049-04-26": "Anzac Day (observed)", "2049-06-07": "King's Birthday", "2049-06-25": "Matariki", "2049-10-25": "Labour Day", "2049-11-29": "West Coast Anniversary Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "Day after New Year's Day", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "Day after New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "Day after New Year's Day (observed)", "2050-02-06": "Waitangi Day", - "2050-02-07": "Waitangi Day (Observed)", + "2050-02-07": "Waitangi Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", @@ -1251,5 +1251,5 @@ "2050-11-28": "West Coast Anniversary Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/PA_COMMON.json b/snapshots/countries/PA_COMMON.json index cd44aa86c..0f1c4945e 100644 --- a/snapshots/countries/PA_COMMON.json +++ b/snapshots/countries/PA_COMMON.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-09": "Martyrs' Day", "1950-02-21": "Carnival", "1950-04-07": "Good Friday", @@ -58,16 +58,16 @@ "1954-11-05": "Colon Day", "1954-11-10": "Los Santos Uprising Day", "1954-11-28": "Independence Day", - "1954-11-29": "Independence Day (Observed)", + "1954-11-29": "Independence Day (observed)", "1954-12-08": "Mother's Day", "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-01-09": "Martyrs' Day", - "1955-01-10": "Martyrs' Day (Observed)", + "1955-01-10": "Martyrs' Day (observed)", "1955-02-22": "Carnival", "1955-04-08": "Good Friday", "1955-05-01": "Labour Day", - "1955-05-02": "Labour Day (Observed)", + "1955-05-02": "Labour Day (observed)", "1955-11-03": "Separation Day", "1955-11-04": "National Symbols Day", "1955-11-05": "Colon Day", @@ -75,9 +75,9 @@ "1955-11-28": "Independence Day", "1955-12-08": "Mother's Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-09": "Martyrs' Day", "1956-02-14": "Carnival", "1956-03-30": "Good Friday", @@ -100,7 +100,7 @@ "1957-11-10": "Los Santos Uprising Day", "1957-11-28": "Independence Day", "1957-12-08": "Mother's Day", - "1957-12-09": "Mother's Day (Observed)", + "1957-12-09": "Mother's Day (observed)", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-01-09": "Martyrs' Day", @@ -131,7 +131,7 @@ "1960-03-01": "Carnival", "1960-04-15": "Good Friday", "1960-05-01": "Labour Day", - "1960-05-02": "Labour Day (Observed)", + "1960-05-02": "Labour Day (observed)", "1960-11-03": "Separation Day", "1960-11-04": "National Symbols Day", "1960-11-05": "Colon Day", @@ -139,9 +139,9 @@ "1960-11-28": "Independence Day", "1960-12-08": "Mother's Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-09": "Martyrs' Day", "1961-02-14": "Carnival", "1961-03-31": "Good Friday", @@ -176,7 +176,7 @@ "1963-11-10": "Los Santos Uprising Day", "1963-11-28": "Independence Day", "1963-12-08": "Mother's Day", - "1963-12-09": "Mother's Day (Observed)", + "1963-12-09": "Mother's Day (observed)", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-01-09": "Martyrs' Day", @@ -200,16 +200,16 @@ "1965-11-05": "Colon Day", "1965-11-10": "Los Santos Uprising Day", "1965-11-28": "Independence Day", - "1965-11-29": "Independence Day (Observed)", + "1965-11-29": "Independence Day (observed)", "1965-12-08": "Mother's Day", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-01-09": "Martyrs' Day", - "1966-01-10": "Martyrs' Day (Observed)", + "1966-01-10": "Martyrs' Day (observed)", "1966-02-22": "Carnival", "1966-04-08": "Good Friday", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (Observed)", + "1966-05-02": "Labour Day (observed)", "1966-11-03": "Separation Day", "1966-11-04": "National Symbols Day", "1966-11-05": "Colon Day", @@ -217,9 +217,9 @@ "1966-11-28": "Independence Day", "1966-12-08": "Mother's Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-09": "Martyrs' Day", "1967-02-07": "Carnival", "1967-03-24": "Good Friday", @@ -242,7 +242,7 @@ "1968-11-10": "Los Santos Uprising Day", "1968-11-28": "Independence Day", "1968-12-08": "Mother's Day", - "1968-12-09": "Mother's Day (Observed)", + "1968-12-09": "Mother's Day (observed)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-01-09": "Martyrs' Day", @@ -278,12 +278,12 @@ "1971-11-05": "Colon Day", "1971-11-10": "Los Santos Uprising Day", "1971-11-28": "Independence Day", - "1971-11-29": "Independence Day (Observed)", + "1971-11-29": "Independence Day (observed)", "1971-12-08": "Mother's Day", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", "1972-01-09": "Martyrs' Day", - "1972-01-10": "Martyrs' Day (Observed)", + "1972-01-10": "Martyrs' Day (observed)", "1972-02-15": "Carnival", "1972-03-31": "Good Friday", "1972-05-01": "Labour Day", @@ -317,7 +317,7 @@ "1974-11-10": "Los Santos Uprising Day", "1974-11-28": "Independence Day", "1974-12-08": "Mother's Day", - "1974-12-09": "Mother's Day (Observed)", + "1974-12-09": "Mother's Day (observed)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-01-09": "Martyrs' Day", @@ -341,16 +341,16 @@ "1976-11-05": "Colon Day", "1976-11-10": "Los Santos Uprising Day", "1976-11-28": "Independence Day", - "1976-11-29": "Independence Day (Observed)", + "1976-11-29": "Independence Day (observed)", "1976-12-08": "Mother's Day", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-01-09": "Martyrs' Day", - "1977-01-10": "Martyrs' Day (Observed)", + "1977-01-10": "Martyrs' Day (observed)", "1977-02-22": "Carnival", "1977-04-08": "Good Friday", "1977-05-01": "Labour Day", - "1977-05-02": "Labour Day (Observed)", + "1977-05-02": "Labour Day (observed)", "1977-11-03": "Separation Day", "1977-11-04": "National Symbols Day", "1977-11-05": "Colon Day", @@ -358,9 +358,9 @@ "1977-11-28": "Independence Day", "1977-12-08": "Mother's Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-09": "Martyrs' Day", "1978-02-07": "Carnival", "1978-03-24": "Good Friday", @@ -418,16 +418,16 @@ "1982-11-05": "Colon Day", "1982-11-10": "Los Santos Uprising Day", "1982-11-28": "Independence Day", - "1982-11-29": "Independence Day (Observed)", + "1982-11-29": "Independence Day (observed)", "1982-12-08": "Mother's Day", "1982-12-25": "Christmas Day", "1983-01-01": "New Year's Day", "1983-01-09": "Martyrs' Day", - "1983-01-10": "Martyrs' Day (Observed)", + "1983-01-10": "Martyrs' Day (observed)", "1983-02-15": "Carnival", "1983-04-01": "Good Friday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-11-03": "Separation Day", "1983-11-04": "National Symbols Day", "1983-11-05": "Colon Day", @@ -435,9 +435,9 @@ "1983-11-28": "Independence Day", "1983-12-08": "Mother's Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-09": "Martyrs' Day", "1984-03-06": "Carnival", "1984-04-20": "Good Friday", @@ -460,7 +460,7 @@ "1985-11-10": "Los Santos Uprising Day", "1985-11-28": "Independence Day", "1985-12-08": "Mother's Day", - "1985-12-09": "Mother's Day (Observed)", + "1985-12-09": "Mother's Day (observed)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-01-09": "Martyrs' Day", @@ -491,7 +491,7 @@ "1988-02-16": "Carnival", "1988-04-01": "Good Friday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-11-03": "Separation Day", "1988-11-04": "National Symbols Day", "1988-11-05": "Colon Day", @@ -499,9 +499,9 @@ "1988-11-28": "Independence Day", "1988-12-08": "Mother's Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-09": "Martyrs' Day", "1989-02-07": "Carnival", "1989-03-24": "Good Friday", @@ -536,7 +536,7 @@ "1991-11-10": "Los Santos Uprising Day", "1991-11-28": "Independence Day", "1991-12-08": "Mother's Day", - "1991-12-09": "Mother's Day (Observed)", + "1991-12-09": "Mother's Day (observed)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-09": "Martyrs' Day", @@ -560,16 +560,16 @@ "1993-11-05": "Colon Day", "1993-11-10": "Los Santos Uprising Day", "1993-11-28": "Independence Day", - "1993-11-29": "Independence Day (Observed)", + "1993-11-29": "Independence Day (observed)", "1993-12-08": "Mother's Day", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-01-09": "Martyrs' Day", - "1994-01-10": "Martyrs' Day (Observed)", + "1994-01-10": "Martyrs' Day (observed)", "1994-02-15": "Carnival", "1994-04-01": "Good Friday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-11-03": "Separation Day", "1994-11-04": "National Symbols Day", "1994-11-05": "Colon Day", @@ -577,9 +577,9 @@ "1994-11-28": "Independence Day", "1994-12-08": "Mother's Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-09": "Martyrs' Day", "1995-02-28": "Carnival", "1995-04-14": "Good Friday", @@ -602,7 +602,7 @@ "1996-11-10": "Los Santos Uprising Day", "1996-11-28": "Independence Day", "1996-12-08": "Mother's Day", - "1996-12-09": "Mother's Day (Observed)", + "1996-12-09": "Mother's Day (observed)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-09": "Martyrs' Day", @@ -638,12 +638,12 @@ "1999-11-05": "Colon Day", "1999-11-10": "Los Santos Uprising Day", "1999-11-28": "Independence Day", - "1999-11-29": "Independence Day (Observed)", + "1999-11-29": "Independence Day (observed)", "1999-12-08": "Mother's Day", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", "2000-01-09": "Martyrs' Day", - "2000-01-10": "Martyrs' Day (Observed)", + "2000-01-10": "Martyrs' Day (observed)", "2000-03-07": "Carnival", "2000-04-21": "Good Friday", "2000-05-01": "Labour Day", @@ -677,7 +677,7 @@ "2002-11-10": "Los Santos Uprising Day", "2002-11-28": "Independence Day", "2002-12-08": "Mother's Day", - "2002-12-09": "Mother's Day (Observed)", + "2002-12-09": "Mother's Day (observed)", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-01-09": "Martyrs' Day", @@ -701,16 +701,16 @@ "2004-11-05": "Colon Day", "2004-11-10": "Los Santos Uprising Day", "2004-11-28": "Independence Day", - "2004-11-29": "Independence Day (Observed)", + "2004-11-29": "Independence Day (observed)", "2004-12-08": "Mother's Day", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-09": "Martyrs' Day", - "2005-01-10": "Martyrs' Day (Observed)", + "2005-01-10": "Martyrs' Day (observed)", "2005-02-08": "Carnival", "2005-03-25": "Good Friday", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-11-03": "Separation Day", "2005-11-04": "National Symbols Day", "2005-11-05": "Colon Day", @@ -718,9 +718,9 @@ "2005-11-28": "Independence Day", "2005-12-08": "Mother's Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-09": "Martyrs' Day", "2006-02-28": "Carnival", "2006-04-14": "Good Friday", @@ -778,16 +778,16 @@ "2010-11-05": "Colon Day", "2010-11-10": "Los Santos Uprising Day", "2010-11-28": "Independence Day", - "2010-11-29": "Independence Day (Observed)", + "2010-11-29": "Independence Day (observed)", "2010-12-08": "Mother's Day", "2010-12-25": "Christmas Day", "2011-01-01": "New Year's Day", "2011-01-09": "Martyrs' Day", - "2011-01-10": "Martyrs' Day (Observed)", + "2011-01-10": "Martyrs' Day (observed)", "2011-03-08": "Carnival", "2011-04-22": "Good Friday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-11-03": "Separation Day", "2011-11-04": "National Symbols Day", "2011-11-05": "Colon Day", @@ -795,9 +795,9 @@ "2011-11-28": "Independence Day", "2011-12-08": "Mother's Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-09": "Martyrs' Day", "2012-02-21": "Carnival", "2012-04-06": "Good Friday", @@ -820,7 +820,7 @@ "2013-11-10": "Los Santos Uprising Day", "2013-11-28": "Independence Day", "2013-12-08": "Mother's Day", - "2013-12-09": "Mother's Day (Observed)", + "2013-12-09": "Mother's Day (observed)", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-09": "Martyrs' Day", @@ -851,7 +851,7 @@ "2016-02-09": "Carnival", "2016-03-25": "Good Friday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-11-03": "Separation Day", "2016-11-04": "National Symbols Day", "2016-11-05": "Colon Day", @@ -859,9 +859,9 @@ "2016-11-28": "Independence Day", "2016-12-08": "Mother's Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-09": "Martyrs' Day", "2017-02-28": "Carnival", "2017-04-14": "Good Friday", @@ -896,7 +896,7 @@ "2019-11-10": "Los Santos Uprising Day", "2019-11-28": "Independence Day", "2019-12-08": "Mother's Day", - "2019-12-09": "Mother's Day (Observed)", + "2019-12-09": "Mother's Day (observed)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-09": "Martyrs' Day", @@ -920,16 +920,16 @@ "2021-11-05": "Colon Day", "2021-11-10": "Los Santos Uprising Day", "2021-11-28": "Independence Day", - "2021-11-29": "Independence Day (Observed)", + "2021-11-29": "Independence Day (observed)", "2021-12-08": "Mother's Day", "2021-12-25": "Christmas Day", "2022-01-01": "New Year's Day", "2022-01-09": "Martyrs' Day", - "2022-01-10": "Martyrs' Day (Observed)", + "2022-01-10": "Martyrs' Day (observed)", "2022-03-01": "Carnival", "2022-04-15": "Good Friday", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-11-03": "Separation Day", "2022-11-04": "National Symbols Day", "2022-11-05": "Colon Day", @@ -938,9 +938,9 @@ "2022-12-08": "Mother's Day", "2022-12-20": "National Mourning Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-09": "Martyrs' Day", "2023-02-21": "Carnival", "2023-04-07": "Good Friday", @@ -964,7 +964,7 @@ "2024-11-10": "Los Santos Uprising Day", "2024-11-28": "Independence Day", "2024-12-08": "Mother's Day", - "2024-12-09": "Mother's Day (Observed)", + "2024-12-09": "Mother's Day (observed)", "2024-12-20": "National Mourning Day", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", @@ -992,7 +992,7 @@ "2026-11-28": "Independence Day", "2026-12-08": "Mother's Day", "2026-12-20": "National Mourning Day", - "2026-12-21": "National Mourning Day (Observed)", + "2026-12-21": "National Mourning Day (observed)", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-01-09": "Martyrs' Day", @@ -1004,13 +1004,13 @@ "2027-11-05": "Colon Day", "2027-11-10": "Los Santos Uprising Day", "2027-11-28": "Independence Day", - "2027-11-29": "Independence Day (Observed)", + "2027-11-29": "Independence Day (observed)", "2027-12-08": "Mother's Day", "2027-12-20": "National Mourning Day", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-01-09": "Martyrs' Day", - "2028-01-10": "Martyrs' Day (Observed)", + "2028-01-10": "Martyrs' Day (observed)", "2028-02-29": "Carnival", "2028-04-14": "Good Friday", "2028-05-01": "Labour Day", @@ -1046,7 +1046,7 @@ "2030-11-10": "Los Santos Uprising Day", "2030-11-28": "Independence Day", "2030-12-08": "Mother's Day", - "2030-12-09": "Mother's Day (Observed)", + "2030-12-09": "Mother's Day (observed)", "2030-12-20": "National Mourning Day", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", @@ -1072,17 +1072,17 @@ "2032-11-05": "Colon Day", "2032-11-10": "Los Santos Uprising Day", "2032-11-28": "Independence Day", - "2032-11-29": "Independence Day (Observed)", + "2032-11-29": "Independence Day (observed)", "2032-12-08": "Mother's Day", "2032-12-20": "National Mourning Day", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", "2033-01-09": "Martyrs' Day", - "2033-01-10": "Martyrs' Day (Observed)", + "2033-01-10": "Martyrs' Day (observed)", "2033-03-01": "Carnival", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-11-03": "Separation Day", "2033-11-04": "National Symbols Day", "2033-11-05": "Colon Day", @@ -1091,9 +1091,9 @@ "2033-12-08": "Mother's Day", "2033-12-20": "National Mourning Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-09": "Martyrs' Day", "2034-02-21": "Carnival", "2034-04-07": "Good Friday", @@ -1144,7 +1144,7 @@ "2037-11-28": "Independence Day", "2037-12-08": "Mother's Day", "2037-12-20": "National Mourning Day", - "2037-12-21": "National Mourning Day (Observed)", + "2037-12-21": "National Mourning Day (observed)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-09": "Martyrs' Day", @@ -1156,17 +1156,17 @@ "2038-11-05": "Colon Day", "2038-11-10": "Los Santos Uprising Day", "2038-11-28": "Independence Day", - "2038-11-29": "Independence Day (Observed)", + "2038-11-29": "Independence Day (observed)", "2038-12-08": "Mother's Day", "2038-12-20": "National Mourning Day", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", "2039-01-09": "Martyrs' Day", - "2039-01-10": "Martyrs' Day (Observed)", + "2039-01-10": "Martyrs' Day (observed)", "2039-02-22": "Carnival", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-11-03": "Separation Day", "2039-11-04": "National Symbols Day", "2039-11-05": "Colon Day", @@ -1175,9 +1175,9 @@ "2039-12-08": "Mother's Day", "2039-12-20": "National Mourning Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-09": "Martyrs' Day", "2040-02-14": "Carnival", "2040-03-30": "Good Friday", @@ -1201,7 +1201,7 @@ "2041-11-10": "Los Santos Uprising Day", "2041-11-28": "Independence Day", "2041-12-08": "Mother's Day", - "2041-12-09": "Mother's Day (Observed)", + "2041-12-09": "Mother's Day (observed)", "2041-12-20": "National Mourning Day", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", @@ -1229,14 +1229,14 @@ "2043-11-28": "Independence Day", "2043-12-08": "Mother's Day", "2043-12-20": "National Mourning Day", - "2043-12-21": "National Mourning Day (Observed)", + "2043-12-21": "National Mourning Day (observed)", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-01-09": "Martyrs' Day", "2044-03-01": "Carnival", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-11-03": "Separation Day", "2044-11-04": "National Symbols Day", "2044-11-05": "Colon Day", @@ -1245,9 +1245,9 @@ "2044-12-08": "Mother's Day", "2044-12-20": "National Mourning Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-09": "Martyrs' Day", "2045-02-21": "Carnival", "2045-04-07": "Good Friday", @@ -1284,7 +1284,7 @@ "2047-11-10": "Los Santos Uprising Day", "2047-11-28": "Independence Day", "2047-12-08": "Mother's Day", - "2047-12-09": "Mother's Day (Observed)", + "2047-12-09": "Mother's Day (observed)", "2047-12-20": "National Mourning Day", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", @@ -1299,7 +1299,7 @@ "2048-11-28": "Independence Day", "2048-12-08": "Mother's Day", "2048-12-20": "National Mourning Day", - "2048-12-21": "National Mourning Day (Observed)", + "2048-12-21": "National Mourning Day (observed)", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-01-09": "Martyrs' Day", @@ -1311,17 +1311,17 @@ "2049-11-05": "Colon Day", "2049-11-10": "Los Santos Uprising Day", "2049-11-28": "Independence Day", - "2049-11-29": "Independence Day (Observed)", + "2049-11-29": "Independence Day (observed)", "2049-12-08": "Mother's Day", "2049-12-20": "National Mourning Day", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-01-09": "Martyrs' Day", - "2050-01-10": "Martyrs' Day (Observed)", + "2050-01-10": "Martyrs' Day (observed)", "2050-02-22": "Carnival", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-11-03": "Separation Day", "2050-11-04": "National Symbols Day", "2050-11-05": "Colon Day", @@ -1330,5 +1330,5 @@ "2050-12-08": "Mother's Day", "2050-12-20": "National Mourning Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/PG_COMMON.json b/snapshots/countries/PG_COMMON.json index 1c68f8551..040faae1c 100644 --- a/snapshots/countries/PG_COMMON.json +++ b/snapshots/countries/PG_COMMON.json @@ -17,7 +17,7 @@ "1954-07-23": "Papua New Guinea Remembrance Day", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Boxing Day (Observed)", + "1954-12-27": "Boxing Day (observed)", "1955-01-01": "New Year's Day", "1955-04-08": "Good Friday", "1955-04-09": "Easter Saturday", @@ -27,9 +27,9 @@ "1955-07-23": "Papua New Guinea Remembrance Day", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-03-31": "Easter Saturday", "1956-04-01": "Easter Sunday", @@ -74,16 +74,16 @@ "1960-07-23": "Papua New Guinea Remembrance Day", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-04-01": "Easter Saturday", "1961-04-02": "Easter Sunday", "1961-04-03": "Easter Monday", "1961-06-12": "Queen's Birthday", "1961-07-23": "Papua New Guinea Remembrance Day", - "1961-07-24": "Papua New Guinea Remembrance Day (Observed)", + "1961-07-24": "Papua New Guinea Remembrance Day (observed)", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-01-01": "New Year's Day", @@ -122,7 +122,7 @@ "1965-07-23": "Papua New Guinea Remembrance Day", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Boxing Day (Observed)", + "1965-12-27": "Boxing Day (observed)", "1966-01-01": "New Year's Day", "1966-04-08": "Good Friday", "1966-04-09": "Easter Saturday", @@ -132,16 +132,16 @@ "1966-07-23": "Papua New Guinea Remembrance Day", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-03-25": "Easter Saturday", "1967-03-26": "Easter Sunday", "1967-03-27": "Easter Monday", "1967-06-12": "Queen's Birthday", "1967-07-23": "Papua New Guinea Remembrance Day", - "1967-07-24": "Papua New Guinea Remembrance Day (Observed)", + "1967-07-24": "Papua New Guinea Remembrance Day (observed)", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-01-01": "New Year's Day", @@ -180,7 +180,7 @@ "1971-07-23": "Papua New Guinea Remembrance Day", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Boxing Day (Observed)", + "1971-12-27": "Boxing Day (observed)", "1972-01-01": "New Year's Day", "1972-03-31": "Good Friday", "1972-04-01": "Easter Saturday", @@ -188,7 +188,7 @@ "1972-04-03": "Easter Monday", "1972-06-12": "Queen's Birthday", "1972-07-23": "Papua New Guinea Remembrance Day", - "1972-07-24": "Papua New Guinea Remembrance Day (Observed)", + "1972-07-24": "Papua New Guinea Remembrance Day (observed)", "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-01-01": "New Year's Day", @@ -229,7 +229,7 @@ "1976-09-16": "Independence Day", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Boxing Day (Observed)", + "1976-12-27": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-04-08": "Good Friday", "1977-04-09": "Easter Saturday", @@ -240,16 +240,16 @@ "1977-09-16": "Independence Day", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-25": "Easter Saturday", "1978-03-26": "Easter Sunday", "1978-03-27": "Easter Monday", "1978-06-12": "Queen's Birthday", "1978-07-23": "Papua New Guinea Remembrance Day", - "1978-07-24": "Papua New Guinea Remembrance Day (Observed)", + "1978-07-24": "Papua New Guinea Remembrance Day (observed)", "1978-09-16": "Independence Day", "1978-12-25": "Christmas Day", "1978-12-26": "Boxing Day", @@ -261,7 +261,7 @@ "1979-06-11": "Queen's Birthday", "1979-07-23": "Papua New Guinea Remembrance Day", "1979-09-16": "Independence Day", - "1979-09-17": "Independence Day (Observed)", + "1979-09-17": "Independence Day (observed)", "1979-12-25": "Christmas Day", "1979-12-26": "Boxing Day", "1980-01-01": "New Year's Day", @@ -294,7 +294,7 @@ "1982-09-16": "Independence Day", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Boxing Day (Observed)", + "1982-12-27": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-04-01": "Good Friday", "1983-04-02": "Easter Saturday", @@ -305,9 +305,9 @@ "1983-09-16": "Independence Day", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-21": "Easter Saturday", "1984-04-22": "Easter Sunday", @@ -315,7 +315,7 @@ "1984-06-11": "Queen's Birthday", "1984-07-23": "Papua New Guinea Remembrance Day", "1984-09-16": "Independence Day", - "1984-09-17": "Independence Day (Observed)", + "1984-09-17": "Independence Day (observed)", "1984-12-25": "Christmas Day", "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", @@ -358,16 +358,16 @@ "1988-09-16": "Independence Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-25": "Easter Saturday", "1989-03-26": "Easter Sunday", "1989-03-27": "Easter Monday", "1989-06-12": "Queen's Birthday", "1989-07-23": "Papua New Guinea Remembrance Day", - "1989-07-24": "Papua New Guinea Remembrance Day (Observed)", + "1989-07-24": "Papua New Guinea Remembrance Day (observed)", "1989-09-16": "Independence Day", "1989-12-25": "Christmas Day", "1989-12-26": "Boxing Day", @@ -379,7 +379,7 @@ "1990-06-11": "Queen's Birthday", "1990-07-23": "Papua New Guinea Remembrance Day", "1990-09-16": "Independence Day", - "1990-09-17": "Independence Day (Observed)", + "1990-09-17": "Independence Day (observed)", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", @@ -412,7 +412,7 @@ "1993-09-16": "Independence Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Boxing Day (Observed)", + "1993-12-27": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-04-01": "Good Friday", "1994-04-02": "Easter Saturday", @@ -423,16 +423,16 @@ "1994-09-16": "Independence Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-15": "Easter Saturday", "1995-04-16": "Easter Sunday", "1995-04-17": "Easter Monday", "1995-06-12": "Queen's Birthday", "1995-07-23": "Papua New Guinea Remembrance Day", - "1995-07-24": "Papua New Guinea Remembrance Day (Observed)", + "1995-07-24": "Papua New Guinea Remembrance Day (observed)", "1995-09-16": "Independence Day", "1995-12-25": "Christmas Day", "1995-12-26": "Boxing Day", @@ -476,7 +476,7 @@ "1999-09-16": "Independence Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Boxing Day (Observed)", + "1999-12-27": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-04-21": "Good Friday", "2000-04-22": "Easter Saturday", @@ -484,7 +484,7 @@ "2000-04-24": "Easter Monday", "2000-06-12": "Queen's Birthday", "2000-07-23": "Papua New Guinea Remembrance Day", - "2000-07-24": "Papua New Guinea Remembrance Day (Observed)", + "2000-07-24": "Papua New Guinea Remembrance Day (observed)", "2000-09-16": "Independence Day", "2000-12-25": "Christmas Day", "2000-12-26": "Boxing Day", @@ -496,7 +496,7 @@ "2001-06-11": "Queen's Birthday", "2001-07-23": "Papua New Guinea Remembrance Day", "2001-09-16": "Independence Day", - "2001-09-17": "Independence Day (Observed)", + "2001-09-17": "Independence Day (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", @@ -529,7 +529,7 @@ "2004-09-16": "Independence Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Boxing Day (Observed)", + "2004-12-27": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-03-25": "Good Friday", "2005-03-26": "Easter Saturday", @@ -540,16 +540,16 @@ "2005-09-16": "Independence Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-15": "Easter Saturday", "2006-04-16": "Easter Sunday", "2006-04-17": "Easter Monday", "2006-06-12": "Queen's Birthday", "2006-07-23": "Papua New Guinea Remembrance Day", - "2006-07-24": "Papua New Guinea Remembrance Day (Observed)", + "2006-07-24": "Papua New Guinea Remembrance Day (observed)", "2006-09-16": "Independence Day", "2006-12-25": "Christmas Day", "2006-12-26": "Boxing Day", @@ -561,7 +561,7 @@ "2007-06-11": "Queen's Birthday", "2007-07-23": "Papua New Guinea Remembrance Day", "2007-09-16": "Independence Day", - "2007-09-17": "Independence Day (Observed)", + "2007-09-17": "Independence Day (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", "2008-01-01": "New Year's Day", @@ -594,7 +594,7 @@ "2010-09-16": "Independence Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Boxing Day (Observed)", + "2010-12-27": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-04-22": "Good Friday", "2011-04-23": "Easter Saturday", @@ -606,9 +606,9 @@ "2011-09-16": "Independence Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-07": "Easter Saturday", "2012-04-08": "Easter Sunday", @@ -616,9 +616,9 @@ "2012-06-11": "Queen's Birthday", "2012-07-23": "Papua New Guinea Remembrance Day", "2012-08-26": "National Repentance Day", - "2012-08-27": "National Repentance Day (Observed)", + "2012-08-27": "National Repentance Day (observed)", "2012-09-16": "Independence Day", - "2012-09-17": "Independence Day (Observed)", + "2012-09-17": "Independence Day (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", @@ -665,16 +665,16 @@ "2016-09-16": "Independence Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-15": "Easter Saturday", "2017-04-16": "Easter Sunday", "2017-04-17": "Easter Monday", "2017-06-12": "Queen's Birthday", "2017-07-23": "Papua New Guinea Remembrance Day", - "2017-07-24": "Papua New Guinea Remembrance Day (Observed)", + "2017-07-24": "Papua New Guinea Remembrance Day (observed)", "2017-08-26": "National Repentance Day", "2017-09-16": "Independence Day", "2017-12-25": "Christmas Day", @@ -687,9 +687,9 @@ "2018-06-11": "Queen's Birthday", "2018-07-23": "Papua New Guinea Remembrance Day", "2018-08-26": "National Repentance Day", - "2018-08-27": "National Repentance Day (Observed)", + "2018-08-27": "National Repentance Day (observed)", "2018-09-16": "Independence Day", - "2018-09-17": "Independence Day (Observed)", + "2018-09-17": "Independence Day (observed)", "2018-11-16": "APEC Leaders' Summit Public Holiday", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", @@ -729,10 +729,10 @@ "2021-09-16": "Independence Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-02-26": "Grand Chief Sir Michael Somare Remembrance Day", - "2022-02-28": "Grand Chief Sir Michael Somare Remembrance Day (Observed)", + "2022-02-28": "Grand Chief Sir Michael Somare Remembrance Day (observed)", "2022-04-15": "Good Friday", "2022-04-16": "Easter Saturday", "2022-04-17": "Easter Sunday", @@ -744,22 +744,22 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", - "2023-02-24": "Grand Chief Sir Michael Somare Remembrance Day (Observed)", + "2023-01-02": "New Year's Day (observed)", + "2023-02-24": "Grand Chief Sir Michael Somare Remembrance Day (observed)", "2023-02-26": "Grand Chief Sir Michael Somare Remembrance Day", "2023-04-07": "Good Friday", "2023-04-08": "Easter Saturday", "2023-04-09": "Easter Sunday", "2023-04-10": "Easter Monday", "2023-04-18": "State Funeral of Sir Rabbie Namaliu", - "2023-06-16": "King's Birthday (Observed)", + "2023-06-16": "King's Birthday (observed)", "2023-06-17": "King's Birthday", "2023-07-23": "Papua New Guinea Remembrance Day", - "2023-07-24": "Papua New Guinea Remembrance Day (Observed)", + "2023-07-24": "Papua New Guinea Remembrance Day (observed)", "2023-08-26": "National Repentance Day", - "2023-09-15": "Independence Day (Observed)", + "2023-09-15": "Independence Day (observed)", "2023-09-16": "Independence Day", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", @@ -807,7 +807,7 @@ "2027-09-16": "Independence Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Boxing Day (Observed)", + "2027-12-27": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-02-26": "Grand Chief Sir Michael Somare Remembrance Day", "2028-04-14": "Good Friday", @@ -815,7 +815,7 @@ "2028-04-17": "Easter Monday", "2028-06-17": "King's Birthday", "2028-07-23": "Papua New Guinea Remembrance Day", - "2028-07-24": "Papua New Guinea Remembrance Day (Observed)", + "2028-07-24": "Papua New Guinea Remembrance Day (observed)", "2028-08-26": "National Repentance Day", "2028-09-16": "Independence Day", "2028-12-25": "Christmas Day", @@ -828,9 +828,9 @@ "2029-06-17": "King's Birthday", "2029-07-23": "Papua New Guinea Remembrance Day", "2029-08-26": "National Repentance Day", - "2029-08-27": "National Repentance Day (Observed)", + "2029-08-27": "National Repentance Day (observed)", "2029-09-16": "Independence Day", - "2029-09-17": "Independence Day (Observed)", + "2029-09-17": "Independence Day (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", @@ -866,7 +866,7 @@ "2032-09-16": "Independence Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Boxing Day (Observed)", + "2032-12-27": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-02-26": "Grand Chief Sir Michael Somare Remembrance Day", "2033-04-15": "Good Friday", @@ -878,16 +878,16 @@ "2033-09-16": "Independence Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-26": "Grand Chief Sir Michael Somare Remembrance Day", "2034-04-07": "Good Friday", "2034-04-09": "Easter Sunday", "2034-04-10": "Easter Monday", "2034-06-17": "King's Birthday", "2034-07-23": "Papua New Guinea Remembrance Day", - "2034-07-24": "Papua New Guinea Remembrance Day (Observed)", + "2034-07-24": "Papua New Guinea Remembrance Day (observed)", "2034-08-26": "National Repentance Day", "2034-09-16": "Independence Day", "2034-12-25": "Christmas Day", @@ -900,9 +900,9 @@ "2035-06-17": "King's Birthday", "2035-07-23": "Papua New Guinea Remembrance Day", "2035-08-26": "National Repentance Day", - "2035-08-27": "National Repentance Day (Observed)", + "2035-08-27": "National Repentance Day (observed)", "2035-09-16": "Independence Day", - "2035-09-17": "Independence Day (Observed)", + "2035-09-17": "Independence Day (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", @@ -938,7 +938,7 @@ "2038-09-16": "Independence Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Boxing Day (Observed)", + "2038-12-27": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-02-26": "Grand Chief Sir Michael Somare Remembrance Day", "2039-04-08": "Good Friday", @@ -950,9 +950,9 @@ "2039-09-16": "Independence Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-26": "Grand Chief Sir Michael Somare Remembrance Day", "2040-03-30": "Good Friday", "2040-04-01": "Easter Sunday", @@ -960,9 +960,9 @@ "2040-06-17": "King's Birthday", "2040-07-23": "Papua New Guinea Remembrance Day", "2040-08-26": "National Repentance Day", - "2040-08-27": "National Repentance Day (Observed)", + "2040-08-27": "National Repentance Day (observed)", "2040-09-16": "Independence Day", - "2040-09-17": "Independence Day (Observed)", + "2040-09-17": "Independence Day (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", @@ -1009,16 +1009,16 @@ "2044-09-16": "Independence Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-26": "Grand Chief Sir Michael Somare Remembrance Day", "2045-04-07": "Good Friday", "2045-04-09": "Easter Sunday", "2045-04-10": "Easter Monday", "2045-06-17": "King's Birthday", "2045-07-23": "Papua New Guinea Remembrance Day", - "2045-07-24": "Papua New Guinea Remembrance Day (Observed)", + "2045-07-24": "Papua New Guinea Remembrance Day (observed)", "2045-08-26": "National Repentance Day", "2045-09-16": "Independence Day", "2045-12-25": "Christmas Day", @@ -1031,9 +1031,9 @@ "2046-06-17": "King's Birthday", "2046-07-23": "Papua New Guinea Remembrance Day", "2046-08-26": "National Repentance Day", - "2046-08-27": "National Repentance Day (Observed)", + "2046-08-27": "National Repentance Day (observed)", "2046-09-16": "Independence Day", - "2046-09-17": "Independence Day (Observed)", + "2046-09-17": "Independence Day (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", @@ -1069,7 +1069,7 @@ "2049-09-16": "Independence Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Boxing Day (Observed)", + "2049-12-27": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-02-26": "Grand Chief Sir Michael Somare Remembrance Day", "2050-04-08": "Good Friday", @@ -1081,5 +1081,5 @@ "2050-09-16": "Independence Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/PR_COMMON.json b/snapshots/countries/PR_COMMON.json index 8e10673e9..96a896518 100644 --- a/snapshots/countries/PR_COMMON.json +++ b/snapshots/countries/PR_COMMON.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-06": "Epiphany", "1950-02-20": "Presidents' Day", "1950-03-22": "Emancipation Day", @@ -9,10 +9,10 @@ "1950-07-04": "Independence Day", "1950-07-25": "Constitution Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-19": "Discovery Day", - "1950-11-20": "Discovery Day (Observed)", + "1950-11-20": "Discovery Day (observed)", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", @@ -25,7 +25,7 @@ "1951-07-25": "Constitution Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-19": "Discovery Day", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", @@ -46,10 +46,10 @@ "1953-01-06": "Epiphany", "1953-02-16": "Presidents' Day", "1953-03-22": "Emancipation Day", - "1953-03-23": "Emancipation Day (Observed)", + "1953-03-23": "Emancipation Day (observed)", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-07-25": "Constitution Day", "1953-09-07": "Labor Day", @@ -64,16 +64,16 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-07-25": "Constitution Day", - "1954-07-26": "Constitution Day (Observed)", + "1954-07-26": "Constitution Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-19": "Discovery Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-01-06": "Epiphany", "1955-02-21": "Presidents' Day", @@ -87,9 +87,9 @@ "1955-11-19": "Discovery Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-06": "Epiphany", "1956-02-20": "Presidents' Day", "1956-03-22": "Emancipation Day", @@ -99,7 +99,7 @@ "1956-07-25": "Constitution Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-19": "Discovery Day", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", @@ -133,10 +133,10 @@ "1959-01-06": "Epiphany", "1959-02-16": "Presidents' Day", "1959-03-22": "Emancipation Day", - "1959-03-23": "Emancipation Day (Observed)", + "1959-03-23": "Emancipation Day (observed)", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-07-25": "Constitution Day", "1959-09-07": "Labor Day", @@ -157,9 +157,9 @@ "1960-11-19": "Discovery Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-06": "Epiphany", "1961-02-20": "Presidents' Day", "1961-03-22": "Emancipation Day", @@ -168,10 +168,10 @@ "1961-07-04": "Independence Day", "1961-07-25": "Constitution Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-19": "Discovery Day", - "1961-11-20": "Discovery Day (Observed)", + "1961-11-20": "Discovery Day (observed)", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", @@ -184,7 +184,7 @@ "1962-07-25": "Constitution Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-19": "Discovery Day", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", @@ -205,10 +205,10 @@ "1964-01-06": "Epiphany", "1964-02-17": "Presidents' Day", "1964-03-22": "Emancipation Day", - "1964-03-23": "Emancipation Day (Observed)", + "1964-03-23": "Emancipation Day (observed)", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-07-25": "Constitution Day", "1964-09-07": "Labor Day", @@ -223,16 +223,16 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-07-25": "Constitution Day", - "1965-07-26": "Constitution Day (Observed)", + "1965-07-26": "Constitution Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-19": "Discovery Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-01-06": "Epiphany", "1966-02-21": "Presidents' Day", @@ -246,9 +246,9 @@ "1966-11-19": "Discovery Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-06": "Epiphany", "1967-02-20": "Presidents' Day", "1967-03-22": "Emancipation Day", @@ -257,10 +257,10 @@ "1967-07-04": "Independence Day", "1967-07-25": "Constitution Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-19": "Discovery Day", - "1967-11-20": "Discovery Day (Observed)", + "1967-11-20": "Discovery Day (observed)", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", @@ -293,10 +293,10 @@ "1970-01-06": "Epiphany", "1970-02-16": "Presidents' Day", "1970-03-22": "Emancipation Day", - "1970-03-23": "Emancipation Day (Observed)", + "1970-03-23": "Emancipation Day (observed)", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-07-25": "Constitution Day", "1970-09-07": "Labor Day", @@ -311,16 +311,16 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-07-25": "Constitution Day", - "1971-07-26": "Constitution Day (Observed)", + "1971-07-26": "Constitution Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-19": "Discovery Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-01-06": "Epiphany", "1972-02-21": "Presidents' Day", @@ -332,7 +332,7 @@ "1972-09-04": "Labor Day", "1972-10-23": "Veterans Day", "1972-11-19": "Discovery Day", - "1972-11-20": "Discovery Day (Observed)", + "1972-11-20": "Discovery Day (observed)", "1972-11-23": "Thanksgiving", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", @@ -381,16 +381,16 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-07-25": "Constitution Day", - "1976-07-26": "Constitution Day (Observed)", + "1976-07-26": "Constitution Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-19": "Discovery Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-01-06": "Epiphany", "1977-02-21": "Presidents' Day", @@ -404,9 +404,9 @@ "1977-11-19": "Discovery Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-06": "Epiphany", "1978-02-20": "Presidents' Day", "1978-03-22": "Emancipation Day", @@ -415,10 +415,10 @@ "1978-07-04": "Independence Day", "1978-07-25": "Constitution Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-19": "Discovery Day", - "1978-11-20": "Discovery Day (Observed)", + "1978-11-20": "Discovery Day (observed)", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -431,7 +431,7 @@ "1979-07-25": "Constitution Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-19": "Discovery Day", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", @@ -452,10 +452,10 @@ "1981-01-06": "Epiphany", "1981-02-16": "Presidents' Day", "1981-03-22": "Emancipation Day", - "1981-03-23": "Emancipation Day (Observed)", + "1981-03-23": "Emancipation Day (observed)", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-07-25": "Constitution Day", "1981-09-07": "Labor Day", @@ -470,16 +470,16 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-07-25": "Constitution Day", - "1982-07-26": "Constitution Day (Observed)", + "1982-07-26": "Constitution Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-19": "Discovery Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-01-06": "Epiphany", "1983-02-21": "Presidents' Day", @@ -493,9 +493,9 @@ "1983-11-19": "Discovery Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-06": "Epiphany", "1984-02-20": "Presidents' Day", "1984-03-22": "Emancipation Day", @@ -505,7 +505,7 @@ "1984-07-25": "Constitution Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-19": "Discovery Day", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", @@ -541,10 +541,10 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Presidents' Day", "1987-03-22": "Emancipation Day", - "1987-03-23": "Emancipation Day (Observed)", + "1987-03-23": "Emancipation Day (observed)", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-07-25": "Constitution Day", "1987-09-07": "Labor Day", @@ -566,9 +566,9 @@ "1988-11-19": "Discovery Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-06": "Epiphany", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Presidents' Day", @@ -578,10 +578,10 @@ "1989-07-04": "Independence Day", "1989-07-25": "Constitution Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-19": "Discovery Day", - "1989-11-20": "Discovery Day (Observed)", + "1989-11-20": "Discovery Day (observed)", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -595,7 +595,7 @@ "1990-07-25": "Constitution Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-19": "Discovery Day", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", @@ -618,10 +618,10 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Presidents' Day", "1992-03-22": "Emancipation Day", - "1992-03-23": "Emancipation Day (Observed)", + "1992-03-23": "Emancipation Day (observed)", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-07-25": "Constitution Day", "1992-09-07": "Labor Day", @@ -637,16 +637,16 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-07-25": "Constitution Day", - "1993-07-26": "Constitution Day (Observed)", + "1993-07-26": "Constitution Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-19": "Discovery Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-06": "Epiphany", "1994-01-17": "Martin Luther King Jr. Day", @@ -661,9 +661,9 @@ "1994-11-19": "Discovery Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-06": "Epiphany", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Presidents' Day", @@ -673,10 +673,10 @@ "1995-07-04": "Independence Day", "1995-07-25": "Constitution Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-19": "Discovery Day", - "1995-11-20": "Discovery Day (Observed)", + "1995-11-20": "Discovery Day (observed)", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -712,10 +712,10 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Presidents' Day", "1998-03-22": "Emancipation Day", - "1998-03-23": "Emancipation Day (Observed)", + "1998-03-23": "Emancipation Day (observed)", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-07-25": "Constitution Day", "1998-09-07": "Labor Day", @@ -731,16 +731,16 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-07-25": "Constitution Day", - "1999-07-26": "Constitution Day (Observed)", + "1999-07-26": "Constitution Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-19": "Discovery Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-06": "Epiphany", "2000-01-17": "Martin Luther King Jr. Day", @@ -751,10 +751,10 @@ "2000-07-04": "Independence Day", "2000-07-25": "Constitution Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-19": "Discovery Day", - "2000-11-20": "Discovery Day (Observed)", + "2000-11-20": "Discovery Day (observed)", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -768,7 +768,7 @@ "2001-07-25": "Constitution Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-19": "Discovery Day", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", @@ -808,16 +808,16 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-07-25": "Constitution Day", - "2004-07-26": "Constitution Day (Observed)", + "2004-07-26": "Constitution Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-19": "Discovery Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-06": "Epiphany", "2005-01-17": "Martin Luther King Jr. Day", @@ -832,9 +832,9 @@ "2005-11-19": "Discovery Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-06": "Epiphany", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Presidents' Day", @@ -844,10 +844,10 @@ "2006-07-04": "Independence Day", "2006-07-25": "Constitution Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-19": "Discovery Day", - "2006-11-20": "Discovery Day (Observed)", + "2006-11-20": "Discovery Day (observed)", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -861,7 +861,7 @@ "2007-07-25": "Constitution Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-19": "Discovery Day", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", @@ -884,10 +884,10 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Presidents' Day", "2009-03-22": "Emancipation Day", - "2009-03-23": "Emancipation Day (Observed)", + "2009-03-23": "Emancipation Day (observed)", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-07-25": "Constitution Day", "2009-09-07": "Labor Day", @@ -903,16 +903,16 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-07-25": "Constitution Day", - "2010-07-26": "Constitution Day (Observed)", + "2010-07-26": "Constitution Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-19": "Discovery Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-06": "Epiphany", "2011-01-17": "Martin Luther King Jr. Day", @@ -927,9 +927,9 @@ "2011-11-19": "Discovery Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-06": "Epiphany", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Presidents' Day", @@ -940,7 +940,7 @@ "2012-07-25": "Constitution Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-19": "Discovery Day", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", @@ -977,10 +977,10 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Presidents' Day", "2015-03-22": "Emancipation Day", - "2015-03-23": "Emancipation Day (Observed)", + "2015-03-23": "Emancipation Day (observed)", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-07-25": "Constitution Day", "2015-09-07": "Labor Day", @@ -1002,9 +1002,9 @@ "2016-11-19": "Discovery Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-06": "Epiphany", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Presidents' Day", @@ -1014,10 +1014,10 @@ "2017-07-04": "Independence Day", "2017-07-25": "Constitution Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-19": "Discovery Day", - "2017-11-20": "Discovery Day (Observed)", + "2017-11-20": "Discovery Day (observed)", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -1031,7 +1031,7 @@ "2018-07-25": "Constitution Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-19": "Discovery Day", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", @@ -1054,10 +1054,10 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Presidents' Day", "2020-03-22": "Emancipation Day", - "2020-03-23": "Emancipation Day (Observed)", + "2020-03-23": "Emancipation Day (observed)", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-07-25": "Constitution Day", "2020-09-07": "Labor Day", @@ -1072,19 +1072,19 @@ "2021-03-22": "Emancipation Day", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-07-25": "Constitution Day", - "2021-07-26": "Constitution Day (Observed)", + "2021-07-26": "Constitution Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-19": "Discovery Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-06": "Epiphany", "2022-01-17": "Martin Luther King Jr. Day", @@ -1093,7 +1093,7 @@ "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-07-25": "Constitution Day", "2022-09-05": "Labor Day", @@ -1101,9 +1101,9 @@ "2022-11-19": "Discovery Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-06": "Epiphany", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Presidents' Day", @@ -1114,10 +1114,10 @@ "2023-07-04": "Independence Day", "2023-07-25": "Constitution Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-19": "Discovery Day", - "2023-11-20": "Discovery Day (Observed)", + "2023-11-20": "Discovery Day (observed)", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", @@ -1155,11 +1155,11 @@ "2026-01-19": "Martin Luther King Jr. Day", "2026-02-16": "Presidents' Day", "2026-03-22": "Emancipation Day", - "2026-03-23": "Emancipation Day (Observed)", + "2026-03-23": "Emancipation Day (observed)", "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-07-25": "Constitution Day", "2026-09-07": "Labor Day", @@ -1174,19 +1174,19 @@ "2027-03-22": "Emancipation Day", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-07-25": "Constitution Day", - "2027-07-26": "Constitution Day (Observed)", + "2027-07-26": "Constitution Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-19": "Discovery Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-06": "Epiphany", "2028-01-17": "Martin Luther King Jr. Day", @@ -1198,10 +1198,10 @@ "2028-07-04": "Independence Day", "2028-07-25": "Constitution Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-19": "Discovery Day", - "2028-11-20": "Discovery Day (Observed)", + "2028-11-20": "Discovery Day (observed)", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", @@ -1216,7 +1216,7 @@ "2029-07-25": "Constitution Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-19": "Discovery Day", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", @@ -1257,19 +1257,19 @@ "2032-03-22": "Emancipation Day", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-07-25": "Constitution Day", - "2032-07-26": "Constitution Day (Observed)", + "2032-07-26": "Constitution Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-19": "Discovery Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-06": "Epiphany", "2033-01-17": "Martin Luther King Jr. Day", @@ -1278,7 +1278,7 @@ "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-07-25": "Constitution Day", "2033-09-05": "Labor Day", @@ -1286,9 +1286,9 @@ "2033-11-19": "Discovery Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-06": "Epiphany", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Presidents' Day", @@ -1299,10 +1299,10 @@ "2034-07-04": "Independence Day", "2034-07-25": "Constitution Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-19": "Discovery Day", - "2034-11-20": "Discovery Day (Observed)", + "2034-11-20": "Discovery Day (observed)", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", @@ -1317,7 +1317,7 @@ "2035-07-25": "Constitution Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-19": "Discovery Day", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", @@ -1341,11 +1341,11 @@ "2037-01-19": "Martin Luther King Jr. Day", "2037-02-16": "Presidents' Day", "2037-03-22": "Emancipation Day", - "2037-03-23": "Emancipation Day (Observed)", + "2037-03-23": "Emancipation Day (observed)", "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-07-25": "Constitution Day", "2037-09-07": "Labor Day", @@ -1360,19 +1360,19 @@ "2038-03-22": "Emancipation Day", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-07-25": "Constitution Day", - "2038-07-26": "Constitution Day (Observed)", + "2038-07-26": "Constitution Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-19": "Discovery Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-06": "Epiphany", "2039-01-17": "Martin Luther King Jr. Day", @@ -1381,7 +1381,7 @@ "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-07-25": "Constitution Day", "2039-09-05": "Labor Day", @@ -1389,9 +1389,9 @@ "2039-11-19": "Discovery Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-06": "Epiphany", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Presidents' Day", @@ -1403,7 +1403,7 @@ "2040-07-25": "Constitution Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-19": "Discovery Day", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", @@ -1442,11 +1442,11 @@ "2043-01-19": "Martin Luther King Jr. Day", "2043-02-16": "Presidents' Day", "2043-03-22": "Emancipation Day", - "2043-03-23": "Emancipation Day (Observed)", + "2043-03-23": "Emancipation Day (observed)", "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-07-25": "Constitution Day", "2043-09-07": "Labor Day", @@ -1462,7 +1462,7 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-07-25": "Constitution Day", "2044-09-05": "Labor Day", @@ -1470,9 +1470,9 @@ "2044-11-19": "Discovery Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-06": "Epiphany", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Presidents' Day", @@ -1483,10 +1483,10 @@ "2045-07-04": "Independence Day", "2045-07-25": "Constitution Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-19": "Discovery Day", - "2045-11-20": "Discovery Day (Observed)", + "2045-11-20": "Discovery Day (observed)", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", @@ -1501,7 +1501,7 @@ "2046-07-25": "Constitution Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-19": "Discovery Day", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", @@ -1525,11 +1525,11 @@ "2048-01-20": "Martin Luther King Jr. Day", "2048-02-17": "Presidents' Day", "2048-03-22": "Emancipation Day", - "2048-03-23": "Emancipation Day (Observed)", + "2048-03-23": "Emancipation Day (observed)", "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-07-25": "Constitution Day", "2048-09-07": "Labor Day", @@ -1544,19 +1544,19 @@ "2049-03-22": "Emancipation Day", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-07-25": "Constitution Day", - "2049-07-26": "Constitution Day (Observed)", + "2049-07-26": "Constitution Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-19": "Discovery Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-06": "Epiphany", "2050-01-17": "Martin Luther King Jr. Day", @@ -1565,7 +1565,7 @@ "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-07-25": "Constitution Day", "2050-09-05": "Labor Day", @@ -1573,5 +1573,5 @@ "2050-11-19": "Discovery Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/RS_COMMON.json b/snapshots/countries/RS_COMMON.json index 87d34fa44..6a9f25e1f 100644 --- a/snapshots/countries/RS_COMMON.json +++ b/snapshots/countries/RS_COMMON.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", "1950-01-02": "New Year's Day", - "1950-01-03": "New Year's Day (Observed)", + "1950-01-03": "New Year's Day (observed)", "1950-01-07": "Orthodox Christmas Day", "1950-02-15": "Statehood Day", "1950-02-16": "Statehood Day", @@ -24,7 +24,7 @@ "1951-05-01": "International Workers' Day", "1951-05-02": "International Workers' Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1952-01-01": "New Year's Day", "1952-01-02": "New Year's Day", "1952-01-07": "Orthodox Christmas Day", @@ -42,7 +42,7 @@ "1953-01-07": "Orthodox Christmas Day", "1953-02-15": "Statehood Day", "1953-02-16": "Statehood Day", - "1953-02-17": "Statehood Day (Observed)", + "1953-02-17": "Statehood Day (observed)", "1953-04-03": "Good Friday", "1953-04-04": "Easter Saturday", "1953-04-05": "Easter Sunday", @@ -61,11 +61,11 @@ "1954-04-26": "Easter Monday", "1954-05-01": "International Workers' Day", "1954-05-02": "International Workers' Day", - "1954-05-03": "International Workers' Day (Observed)", + "1954-05-03": "International Workers' Day (observed)", "1954-11-11": "Armistice Day", "1955-01-01": "New Year's Day", "1955-01-02": "New Year's Day", - "1955-01-03": "New Year's Day (Observed)", + "1955-01-03": "New Year's Day (observed)", "1955-01-07": "Orthodox Christmas Day", "1955-02-15": "Statehood Day", "1955-02-16": "Statehood Day", @@ -75,11 +75,11 @@ "1955-04-18": "Easter Monday", "1955-05-01": "International Workers' Day", "1955-05-02": "International Workers' Day", - "1955-05-03": "International Workers' Day (Observed)", + "1955-05-03": "International Workers' Day (observed)", "1955-11-11": "Armistice Day", "1956-01-01": "New Year's Day", "1956-01-02": "New Year's Day", - "1956-01-03": "New Year's Day (Observed)", + "1956-01-03": "New Year's Day (observed)", "1956-01-07": "Orthodox Christmas Day", "1956-02-15": "Statehood Day", "1956-02-16": "Statehood Day", @@ -90,7 +90,7 @@ "1956-05-06": "Easter Sunday", "1956-05-07": "Easter Monday", "1956-11-11": "Armistice Day", - "1956-11-12": "Armistice Day (Observed)", + "1956-11-12": "Armistice Day (observed)", "1957-01-01": "New Year's Day", "1957-01-02": "New Year's Day", "1957-01-07": "Orthodox Christmas Day", @@ -108,7 +108,7 @@ "1958-01-07": "Orthodox Christmas Day", "1958-02-15": "Statehood Day", "1958-02-16": "Statehood Day", - "1958-02-17": "Statehood Day (Observed)", + "1958-02-17": "Statehood Day (observed)", "1958-04-11": "Good Friday", "1958-04-12": "Easter Saturday", "1958-04-13": "Easter Sunday", @@ -121,7 +121,7 @@ "1959-01-07": "Orthodox Christmas Day", "1959-02-15": "Statehood Day", "1959-02-16": "Statehood Day", - "1959-02-17": "Statehood Day (Observed)", + "1959-02-17": "Statehood Day (observed)", "1959-05-01": "Good Friday; International Workers' Day", "1959-05-02": "Easter Saturday; International Workers' Day", "1959-05-03": "Easter Sunday", @@ -138,11 +138,11 @@ "1960-04-18": "Easter Monday", "1960-05-01": "International Workers' Day", "1960-05-02": "International Workers' Day", - "1960-05-03": "International Workers' Day (Observed)", + "1960-05-03": "International Workers' Day (observed)", "1960-11-11": "Armistice Day", "1961-01-01": "New Year's Day", "1961-01-02": "New Year's Day", - "1961-01-03": "New Year's Day (Observed)", + "1961-01-03": "New Year's Day (observed)", "1961-01-07": "Orthodox Christmas Day", "1961-02-15": "Statehood Day", "1961-02-16": "Statehood Day", @@ -165,7 +165,7 @@ "1962-05-01": "International Workers' Day", "1962-05-02": "International Workers' Day", "1962-11-11": "Armistice Day", - "1962-11-12": "Armistice Day (Observed)", + "1962-11-12": "Armistice Day (observed)", "1963-01-01": "New Year's Day", "1963-01-02": "New Year's Day", "1963-01-07": "Orthodox Christmas Day", @@ -183,7 +183,7 @@ "1964-01-07": "Orthodox Christmas Day", "1964-02-15": "Statehood Day", "1964-02-16": "Statehood Day", - "1964-02-17": "Statehood Day (Observed)", + "1964-02-17": "Statehood Day (observed)", "1964-05-01": "Good Friday; International Workers' Day", "1964-05-02": "Easter Saturday; International Workers' Day", "1964-05-03": "Easter Sunday", @@ -200,11 +200,11 @@ "1965-04-26": "Easter Monday", "1965-05-01": "International Workers' Day", "1965-05-02": "International Workers' Day", - "1965-05-03": "International Workers' Day (Observed)", + "1965-05-03": "International Workers' Day (observed)", "1965-11-11": "Armistice Day", "1966-01-01": "New Year's Day", "1966-01-02": "New Year's Day", - "1966-01-03": "New Year's Day (Observed)", + "1966-01-03": "New Year's Day (observed)", "1966-01-07": "Orthodox Christmas Day", "1966-02-15": "Statehood Day", "1966-02-16": "Statehood Day", @@ -214,11 +214,11 @@ "1966-04-11": "Easter Monday", "1966-05-01": "International Workers' Day", "1966-05-02": "International Workers' Day", - "1966-05-03": "International Workers' Day (Observed)", + "1966-05-03": "International Workers' Day (observed)", "1966-11-11": "Armistice Day", "1967-01-01": "New Year's Day", "1967-01-02": "New Year's Day", - "1967-01-03": "New Year's Day (Observed)", + "1967-01-03": "New Year's Day (observed)", "1967-01-07": "Orthodox Christmas Day", "1967-02-15": "Statehood Day", "1967-02-16": "Statehood Day", @@ -245,7 +245,7 @@ "1969-01-07": "Orthodox Christmas Day", "1969-02-15": "Statehood Day", "1969-02-16": "Statehood Day", - "1969-02-17": "Statehood Day (Observed)", + "1969-02-17": "Statehood Day (observed)", "1969-04-11": "Good Friday", "1969-04-12": "Easter Saturday", "1969-04-13": "Easter Sunday", @@ -258,7 +258,7 @@ "1970-01-07": "Orthodox Christmas Day", "1970-02-15": "Statehood Day", "1970-02-16": "Statehood Day", - "1970-02-17": "Statehood Day (Observed)", + "1970-02-17": "Statehood Day (observed)", "1970-04-24": "Good Friday", "1970-04-25": "Easter Saturday", "1970-04-26": "Easter Sunday", @@ -277,11 +277,11 @@ "1971-04-19": "Easter Monday", "1971-05-01": "International Workers' Day", "1971-05-02": "International Workers' Day", - "1971-05-03": "International Workers' Day (Observed)", + "1971-05-03": "International Workers' Day (observed)", "1971-11-11": "Armistice Day", "1972-01-01": "New Year's Day", "1972-01-02": "New Year's Day", - "1972-01-03": "New Year's Day (Observed)", + "1972-01-03": "New Year's Day (observed)", "1972-01-07": "Orthodox Christmas Day", "1972-02-15": "Statehood Day", "1972-02-16": "Statehood Day", @@ -304,7 +304,7 @@ "1973-05-01": "International Workers' Day", "1973-05-02": "International Workers' Day", "1973-11-11": "Armistice Day", - "1973-11-12": "Armistice Day (Observed)", + "1973-11-12": "Armistice Day (observed)", "1974-01-01": "New Year's Day", "1974-01-02": "New Year's Day", "1974-01-07": "Orthodox Christmas Day", @@ -322,7 +322,7 @@ "1975-01-07": "Orthodox Christmas Day", "1975-02-15": "Statehood Day", "1975-02-16": "Statehood Day", - "1975-02-17": "Statehood Day (Observed)", + "1975-02-17": "Statehood Day (observed)", "1975-05-01": "International Workers' Day", "1975-05-02": "Good Friday; International Workers' Day", "1975-05-03": "Easter Saturday", @@ -334,18 +334,18 @@ "1976-01-07": "Orthodox Christmas Day", "1976-02-15": "Statehood Day", "1976-02-16": "Statehood Day", - "1976-02-17": "Statehood Day (Observed)", + "1976-02-17": "Statehood Day (observed)", "1976-04-23": "Good Friday", "1976-04-24": "Easter Saturday", "1976-04-25": "Easter Sunday", "1976-04-26": "Easter Monday", "1976-05-01": "International Workers' Day", "1976-05-02": "International Workers' Day", - "1976-05-03": "International Workers' Day (Observed)", + "1976-05-03": "International Workers' Day (observed)", "1976-11-11": "Armistice Day", "1977-01-01": "New Year's Day", "1977-01-02": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-01-07": "Orthodox Christmas Day", "1977-02-15": "Statehood Day", "1977-02-16": "Statehood Day", @@ -355,11 +355,11 @@ "1977-04-11": "Easter Monday", "1977-05-01": "International Workers' Day", "1977-05-02": "International Workers' Day", - "1977-05-03": "International Workers' Day (Observed)", + "1977-05-03": "International Workers' Day (observed)", "1977-11-11": "Armistice Day", "1978-01-01": "New Year's Day", "1978-01-02": "New Year's Day", - "1978-01-03": "New Year's Day (Observed)", + "1978-01-03": "New Year's Day (observed)", "1978-01-07": "Orthodox Christmas Day", "1978-02-15": "Statehood Day", "1978-02-16": "Statehood Day", @@ -381,7 +381,7 @@ "1979-05-01": "International Workers' Day", "1979-05-02": "International Workers' Day", "1979-11-11": "Armistice Day", - "1979-11-12": "Armistice Day (Observed)", + "1979-11-12": "Armistice Day (observed)", "1980-01-01": "New Year's Day", "1980-01-02": "New Year's Day", "1980-01-07": "Orthodox Christmas Day", @@ -399,7 +399,7 @@ "1981-01-07": "Orthodox Christmas Day", "1981-02-15": "Statehood Day", "1981-02-16": "Statehood Day", - "1981-02-17": "Statehood Day (Observed)", + "1981-02-17": "Statehood Day (observed)", "1981-04-24": "Good Friday", "1981-04-25": "Easter Saturday", "1981-04-26": "Easter Sunday", @@ -418,17 +418,17 @@ "1982-04-19": "Easter Monday", "1982-05-01": "International Workers' Day", "1982-05-02": "International Workers' Day", - "1982-05-03": "International Workers' Day (Observed)", + "1982-05-03": "International Workers' Day (observed)", "1982-11-11": "Armistice Day", "1983-01-01": "New Year's Day", "1983-01-02": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-01-07": "Orthodox Christmas Day", "1983-02-15": "Statehood Day", "1983-02-16": "Statehood Day", "1983-05-01": "International Workers' Day", "1983-05-02": "International Workers' Day", - "1983-05-03": "International Workers' Day (Observed)", + "1983-05-03": "International Workers' Day (observed)", "1983-05-06": "Good Friday", "1983-05-07": "Easter Saturday", "1983-05-08": "Easter Sunday", @@ -436,7 +436,7 @@ "1983-11-11": "Armistice Day", "1984-01-01": "New Year's Day", "1984-01-02": "New Year's Day", - "1984-01-03": "New Year's Day (Observed)", + "1984-01-03": "New Year's Day (observed)", "1984-01-07": "Orthodox Christmas Day", "1984-02-15": "Statehood Day", "1984-02-16": "Statehood Day", @@ -447,7 +447,7 @@ "1984-05-01": "International Workers' Day", "1984-05-02": "International Workers' Day", "1984-11-11": "Armistice Day", - "1984-11-12": "Armistice Day (Observed)", + "1984-11-12": "Armistice Day (observed)", "1985-01-01": "New Year's Day", "1985-01-02": "New Year's Day", "1985-01-07": "Orthodox Christmas Day", @@ -465,7 +465,7 @@ "1986-01-07": "Orthodox Christmas Day", "1986-02-15": "Statehood Day", "1986-02-16": "Statehood Day", - "1986-02-17": "Statehood Day (Observed)", + "1986-02-17": "Statehood Day (observed)", "1986-05-01": "International Workers' Day", "1986-05-02": "Good Friday; International Workers' Day", "1986-05-03": "Easter Saturday", @@ -477,7 +477,7 @@ "1987-01-07": "Orthodox Christmas Day", "1987-02-15": "Statehood Day", "1987-02-16": "Statehood Day", - "1987-02-17": "Statehood Day (Observed)", + "1987-02-17": "Statehood Day (observed)", "1987-04-17": "Good Friday", "1987-04-18": "Easter Saturday", "1987-04-19": "Easter Sunday", @@ -496,11 +496,11 @@ "1988-04-11": "Easter Monday", "1988-05-01": "International Workers' Day", "1988-05-02": "International Workers' Day", - "1988-05-03": "International Workers' Day (Observed)", + "1988-05-03": "International Workers' Day (observed)", "1988-11-11": "Armistice Day", "1989-01-01": "New Year's Day", "1989-01-02": "New Year's Day", - "1989-01-03": "New Year's Day (Observed)", + "1989-01-03": "New Year's Day (observed)", "1989-01-07": "Orthodox Christmas Day", "1989-02-15": "Statehood Day", "1989-02-16": "Statehood Day", @@ -522,7 +522,7 @@ "1990-05-01": "International Workers' Day", "1990-05-02": "International Workers' Day", "1990-11-11": "Armistice Day", - "1990-11-12": "Armistice Day (Observed)", + "1990-11-12": "Armistice Day (observed)", "1991-01-01": "New Year's Day", "1991-01-02": "New Year's Day", "1991-01-07": "Orthodox Christmas Day", @@ -540,7 +540,7 @@ "1992-01-07": "Orthodox Christmas Day", "1992-02-15": "Statehood Day", "1992-02-16": "Statehood Day", - "1992-02-17": "Statehood Day (Observed)", + "1992-02-17": "Statehood Day (observed)", "1992-04-24": "Good Friday", "1992-04-25": "Easter Saturday", "1992-04-26": "Easter Sunday", @@ -559,11 +559,11 @@ "1993-04-19": "Easter Monday", "1993-05-01": "International Workers' Day", "1993-05-02": "International Workers' Day", - "1993-05-03": "International Workers' Day (Observed)", + "1993-05-03": "International Workers' Day (observed)", "1993-11-11": "Armistice Day", "1994-01-01": "New Year's Day", "1994-01-02": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-01-07": "Orthodox Christmas Day", "1994-02-15": "Statehood Day", "1994-02-16": "Statehood Day", @@ -571,11 +571,11 @@ "1994-04-30": "Easter Saturday", "1994-05-01": "Easter Sunday; International Workers' Day", "1994-05-02": "Easter Monday; International Workers' Day", - "1994-05-03": "International Workers' Day (Observed)", + "1994-05-03": "International Workers' Day (observed)", "1994-11-11": "Armistice Day", "1995-01-01": "New Year's Day", "1995-01-02": "New Year's Day", - "1995-01-03": "New Year's Day (Observed)", + "1995-01-03": "New Year's Day (observed)", "1995-01-07": "Orthodox Christmas Day", "1995-02-15": "Statehood Day", "1995-02-16": "Statehood Day", @@ -603,7 +603,7 @@ "1997-01-07": "Orthodox Christmas Day", "1997-02-15": "Statehood Day", "1997-02-16": "Statehood Day", - "1997-02-17": "Statehood Day (Observed)", + "1997-02-17": "Statehood Day (observed)", "1997-04-25": "Good Friday", "1997-04-26": "Easter Saturday", "1997-04-27": "Easter Sunday", @@ -616,7 +616,7 @@ "1998-01-07": "Orthodox Christmas Day", "1998-02-15": "Statehood Day", "1998-02-16": "Statehood Day", - "1998-02-17": "Statehood Day (Observed)", + "1998-02-17": "Statehood Day (observed)", "1998-04-17": "Good Friday", "1998-04-18": "Easter Saturday", "1998-04-19": "Easter Sunday", @@ -635,11 +635,11 @@ "1999-04-12": "Easter Monday", "1999-05-01": "International Workers' Day", "1999-05-02": "International Workers' Day", - "1999-05-03": "International Workers' Day (Observed)", + "1999-05-03": "International Workers' Day (observed)", "1999-11-11": "Armistice Day", "2000-01-01": "New Year's Day", "2000-01-02": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-07": "Orthodox Christmas Day", "2000-02-15": "Statehood Day", "2000-02-16": "Statehood Day", @@ -661,7 +661,7 @@ "2001-05-01": "International Workers' Day", "2001-05-02": "International Workers' Day", "2001-11-11": "Armistice Day", - "2001-11-12": "Armistice Day (Observed)", + "2001-11-12": "Armistice Day (observed)", "2002-01-01": "New Year's Day", "2002-01-02": "New Year's Day", "2002-01-07": "Orthodox Christmas Day", @@ -679,7 +679,7 @@ "2003-01-07": "Orthodox Christmas Day", "2003-02-15": "Statehood Day", "2003-02-16": "Statehood Day", - "2003-02-17": "Statehood Day (Observed)", + "2003-02-17": "Statehood Day (observed)", "2003-04-25": "Good Friday", "2003-04-26": "Easter Saturday", "2003-04-27": "Easter Sunday", @@ -692,18 +692,18 @@ "2004-01-07": "Orthodox Christmas Day", "2004-02-15": "Statehood Day", "2004-02-16": "Statehood Day", - "2004-02-17": "Statehood Day (Observed)", + "2004-02-17": "Statehood Day (observed)", "2004-04-09": "Good Friday", "2004-04-10": "Easter Saturday", "2004-04-11": "Easter Sunday", "2004-04-12": "Easter Monday", "2004-05-01": "International Workers' Day", "2004-05-02": "International Workers' Day", - "2004-05-03": "International Workers' Day (Observed)", + "2004-05-03": "International Workers' Day (observed)", "2004-11-11": "Armistice Day", "2005-01-01": "New Year's Day", "2005-01-02": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-07": "Orthodox Christmas Day", "2005-02-15": "Statehood Day", "2005-02-16": "Statehood Day", @@ -711,11 +711,11 @@ "2005-04-30": "Easter Saturday", "2005-05-01": "Easter Sunday; International Workers' Day", "2005-05-02": "Easter Monday; International Workers' Day", - "2005-05-03": "International Workers' Day (Observed)", + "2005-05-03": "International Workers' Day (observed)", "2005-11-11": "Armistice Day", "2006-01-01": "New Year's Day", "2006-01-02": "New Year's Day", - "2006-01-03": "New Year's Day (Observed)", + "2006-01-03": "New Year's Day (observed)", "2006-01-07": "Orthodox Christmas Day", "2006-02-15": "Statehood Day", "2006-02-16": "Statehood Day", @@ -738,7 +738,7 @@ "2007-05-01": "International Workers' Day", "2007-05-02": "International Workers' Day", "2007-11-11": "Armistice Day", - "2007-11-12": "Armistice Day (Observed)", + "2007-11-12": "Armistice Day (observed)", "2008-01-01": "New Year's Day", "2008-01-02": "New Year's Day", "2008-01-07": "Orthodox Christmas Day", @@ -756,7 +756,7 @@ "2009-01-07": "Orthodox Christmas Day", "2009-02-15": "Statehood Day", "2009-02-16": "Statehood Day", - "2009-02-17": "Statehood Day (Observed)", + "2009-02-17": "Statehood Day (observed)", "2009-04-17": "Good Friday", "2009-04-18": "Easter Saturday", "2009-04-19": "Easter Sunday", @@ -775,11 +775,11 @@ "2010-04-05": "Easter Monday", "2010-05-01": "International Workers' Day", "2010-05-02": "International Workers' Day", - "2010-05-03": "International Workers' Day (Observed)", + "2010-05-03": "International Workers' Day (observed)", "2010-11-11": "Armistice Day", "2011-01-01": "New Year's Day", "2011-01-02": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-07": "Orthodox Christmas Day", "2011-02-15": "Statehood Day", "2011-02-16": "Statehood Day", @@ -789,11 +789,11 @@ "2011-04-25": "Easter Monday", "2011-05-01": "International Workers' Day", "2011-05-02": "International Workers' Day", - "2011-05-03": "International Workers' Day (Observed)", + "2011-05-03": "International Workers' Day (observed)", "2011-11-11": "Armistice Day", "2012-01-01": "New Year's Day", "2012-01-02": "New Year's Day", - "2012-01-03": "New Year's Day (Observed)", + "2012-01-03": "New Year's Day (observed)", "2012-01-07": "Orthodox Christmas Day", "2012-02-15": "Statehood Day", "2012-02-16": "Statehood Day", @@ -804,7 +804,7 @@ "2012-05-01": "International Workers' Day", "2012-05-02": "International Workers' Day", "2012-11-11": "Armistice Day", - "2012-11-12": "Armistice Day (Observed)", + "2012-11-12": "Armistice Day (observed)", "2013-01-01": "New Year's Day", "2013-01-02": "New Year's Day", "2013-01-07": "Orthodox Christmas Day", @@ -822,7 +822,7 @@ "2014-01-07": "Orthodox Christmas Day", "2014-02-15": "Statehood Day", "2014-02-16": "Statehood Day", - "2014-02-17": "Statehood Day (Observed)", + "2014-02-17": "Statehood Day (observed)", "2014-04-18": "Good Friday", "2014-04-19": "Easter Saturday", "2014-04-20": "Easter Sunday", @@ -835,7 +835,7 @@ "2015-01-07": "Orthodox Christmas Day", "2015-02-15": "Statehood Day", "2015-02-16": "Statehood Day", - "2015-02-17": "Statehood Day (Observed)", + "2015-02-17": "Statehood Day (observed)", "2015-04-10": "Good Friday", "2015-04-11": "Easter Saturday", "2015-04-12": "Easter Sunday", @@ -852,11 +852,11 @@ "2016-04-30": "Easter Saturday", "2016-05-01": "Easter Sunday; International Workers' Day", "2016-05-02": "Easter Monday; International Workers' Day", - "2016-05-03": "International Workers' Day (Observed)", + "2016-05-03": "International Workers' Day (observed)", "2016-11-11": "Armistice Day", "2017-01-01": "New Year's Day", "2017-01-02": "New Year's Day", - "2017-01-03": "New Year's Day (Observed)", + "2017-01-03": "New Year's Day (observed)", "2017-01-07": "Orthodox Christmas Day", "2017-02-15": "Statehood Day", "2017-02-16": "Statehood Day", @@ -879,7 +879,7 @@ "2018-05-01": "International Workers' Day", "2018-05-02": "International Workers' Day", "2018-11-11": "Armistice Day", - "2018-11-12": "Armistice Day (Observed)", + "2018-11-12": "Armistice Day (observed)", "2019-01-01": "New Year's Day", "2019-01-02": "New Year's Day", "2019-01-07": "Orthodox Christmas Day", @@ -897,7 +897,7 @@ "2020-01-07": "Orthodox Christmas Day", "2020-02-15": "Statehood Day", "2020-02-16": "Statehood Day", - "2020-02-17": "Statehood Day (Observed)", + "2020-02-17": "Statehood Day (observed)", "2020-04-17": "Good Friday", "2020-04-18": "Easter Saturday", "2020-04-19": "Easter Sunday", @@ -914,11 +914,11 @@ "2021-05-01": "Easter Saturday; International Workers' Day", "2021-05-02": "Easter Sunday; International Workers' Day", "2021-05-03": "Easter Monday", - "2021-05-04": "International Workers' Day (Observed)", + "2021-05-04": "International Workers' Day (observed)", "2021-11-11": "Armistice Day", "2022-01-01": "New Year's Day", "2022-01-02": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-07": "Orthodox Christmas Day", "2022-02-15": "Statehood Day", "2022-02-16": "Statehood Day", @@ -928,11 +928,11 @@ "2022-04-25": "Easter Monday", "2022-05-01": "International Workers' Day", "2022-05-02": "International Workers' Day", - "2022-05-03": "International Workers' Day (Observed)", + "2022-05-03": "International Workers' Day (observed)", "2022-11-11": "Armistice Day", "2023-01-01": "New Year's Day", "2023-01-02": "New Year's Day", - "2023-01-03": "New Year's Day (Observed)", + "2023-01-03": "New Year's Day (observed)", "2023-01-07": "Orthodox Christmas Day", "2023-02-15": "Statehood Day", "2023-02-16": "Statehood Day", @@ -960,7 +960,7 @@ "2025-01-07": "Orthodox Christmas Day", "2025-02-15": "Statehood Day", "2025-02-16": "Statehood Day", - "2025-02-17": "Statehood Day (Observed)", + "2025-02-17": "Statehood Day (observed)", "2025-04-18": "Good Friday", "2025-04-19": "Easter Saturday", "2025-04-20": "Easter Sunday", @@ -973,7 +973,7 @@ "2026-01-07": "Orthodox Christmas Day", "2026-02-15": "Statehood Day", "2026-02-16": "Statehood Day", - "2026-02-17": "Statehood Day (Observed)", + "2026-02-17": "Statehood Day (observed)", "2026-04-10": "Good Friday", "2026-04-11": "Easter Saturday", "2026-04-12": "Easter Sunday", @@ -990,11 +990,11 @@ "2027-05-01": "Easter Saturday; International Workers' Day", "2027-05-02": "Easter Sunday; International Workers' Day", "2027-05-03": "Easter Monday", - "2027-05-04": "International Workers' Day (Observed)", + "2027-05-04": "International Workers' Day (observed)", "2027-11-11": "Armistice Day", "2028-01-01": "New Year's Day", "2028-01-02": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-01-07": "Orthodox Christmas Day", "2028-02-15": "Statehood Day", "2028-02-16": "Statehood Day", @@ -1017,7 +1017,7 @@ "2029-05-01": "International Workers' Day", "2029-05-02": "International Workers' Day", "2029-11-11": "Armistice Day", - "2029-11-12": "Armistice Day (Observed)", + "2029-11-12": "Armistice Day (observed)", "2030-01-01": "New Year's Day", "2030-01-02": "New Year's Day", "2030-01-07": "Orthodox Christmas Day", @@ -1035,7 +1035,7 @@ "2031-01-07": "Orthodox Christmas Day", "2031-02-15": "Statehood Day", "2031-02-16": "Statehood Day", - "2031-02-17": "Statehood Day (Observed)", + "2031-02-17": "Statehood Day (observed)", "2031-04-11": "Good Friday", "2031-04-12": "Easter Saturday", "2031-04-13": "Easter Sunday", @@ -1048,16 +1048,16 @@ "2032-01-07": "Orthodox Christmas Day", "2032-02-15": "Statehood Day", "2032-02-16": "Statehood Day", - "2032-02-17": "Statehood Day (Observed)", + "2032-02-17": "Statehood Day (observed)", "2032-04-30": "Good Friday", "2032-05-01": "Easter Saturday; International Workers' Day", "2032-05-02": "Easter Sunday; International Workers' Day", "2032-05-03": "Easter Monday", - "2032-05-04": "International Workers' Day (Observed)", + "2032-05-04": "International Workers' Day (observed)", "2032-11-11": "Armistice Day", "2033-01-01": "New Year's Day", "2033-01-02": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-01-07": "Orthodox Christmas Day", "2033-02-15": "Statehood Day", "2033-02-16": "Statehood Day", @@ -1067,11 +1067,11 @@ "2033-04-25": "Easter Monday", "2033-05-01": "International Workers' Day", "2033-05-02": "International Workers' Day", - "2033-05-03": "International Workers' Day (Observed)", + "2033-05-03": "International Workers' Day (observed)", "2033-11-11": "Armistice Day", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", - "2034-01-03": "New Year's Day (Observed)", + "2034-01-03": "New Year's Day (observed)", "2034-01-07": "Orthodox Christmas Day", "2034-02-15": "Statehood Day", "2034-02-16": "Statehood Day", @@ -1094,7 +1094,7 @@ "2035-05-01": "International Workers' Day", "2035-05-02": "International Workers' Day", "2035-11-11": "Armistice Day", - "2035-11-12": "Armistice Day (Observed)", + "2035-11-12": "Armistice Day (observed)", "2036-01-01": "New Year's Day", "2036-01-02": "New Year's Day", "2036-01-07": "Orthodox Christmas Day", @@ -1112,7 +1112,7 @@ "2037-01-07": "Orthodox Christmas Day", "2037-02-15": "Statehood Day", "2037-02-16": "Statehood Day", - "2037-02-17": "Statehood Day (Observed)", + "2037-02-17": "Statehood Day (observed)", "2037-04-03": "Good Friday", "2037-04-04": "Easter Saturday", "2037-04-05": "Easter Sunday", @@ -1131,11 +1131,11 @@ "2038-04-26": "Easter Monday", "2038-05-01": "International Workers' Day", "2038-05-02": "International Workers' Day", - "2038-05-03": "International Workers' Day (Observed)", + "2038-05-03": "International Workers' Day (observed)", "2038-11-11": "Armistice Day", "2039-01-01": "New Year's Day", "2039-01-02": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-07": "Orthodox Christmas Day", "2039-02-15": "Statehood Day", "2039-02-16": "Statehood Day", @@ -1145,11 +1145,11 @@ "2039-04-18": "Easter Monday", "2039-05-01": "International Workers' Day", "2039-05-02": "International Workers' Day", - "2039-05-03": "International Workers' Day (Observed)", + "2039-05-03": "International Workers' Day (observed)", "2039-11-11": "Armistice Day", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day", - "2040-01-03": "New Year's Day (Observed)", + "2040-01-03": "New Year's Day (observed)", "2040-01-07": "Orthodox Christmas Day", "2040-02-15": "Statehood Day", "2040-02-16": "Statehood Day", @@ -1160,7 +1160,7 @@ "2040-05-06": "Easter Sunday", "2040-05-07": "Easter Monday", "2040-11-11": "Armistice Day", - "2040-11-12": "Armistice Day (Observed)", + "2040-11-12": "Armistice Day (observed)", "2041-01-01": "New Year's Day", "2041-01-02": "New Year's Day", "2041-01-07": "Orthodox Christmas Day", @@ -1178,7 +1178,7 @@ "2042-01-07": "Orthodox Christmas Day", "2042-02-15": "Statehood Day", "2042-02-16": "Statehood Day", - "2042-02-17": "Statehood Day (Observed)", + "2042-02-17": "Statehood Day (observed)", "2042-04-11": "Good Friday", "2042-04-12": "Easter Saturday", "2042-04-13": "Easter Sunday", @@ -1191,7 +1191,7 @@ "2043-01-07": "Orthodox Christmas Day", "2043-02-15": "Statehood Day", "2043-02-16": "Statehood Day", - "2043-02-17": "Statehood Day (Observed)", + "2043-02-17": "Statehood Day (observed)", "2043-05-01": "Good Friday; International Workers' Day", "2043-05-02": "Easter Saturday; International Workers' Day", "2043-05-03": "Easter Sunday", @@ -1208,11 +1208,11 @@ "2044-04-25": "Easter Monday", "2044-05-01": "International Workers' Day", "2044-05-02": "International Workers' Day", - "2044-05-03": "International Workers' Day (Observed)", + "2044-05-03": "International Workers' Day (observed)", "2044-11-11": "Armistice Day", "2045-01-01": "New Year's Day", "2045-01-02": "New Year's Day", - "2045-01-03": "New Year's Day (Observed)", + "2045-01-03": "New Year's Day (observed)", "2045-01-07": "Orthodox Christmas Day", "2045-02-15": "Statehood Day", "2045-02-16": "Statehood Day", @@ -1235,7 +1235,7 @@ "2046-05-01": "International Workers' Day", "2046-05-02": "International Workers' Day", "2046-11-11": "Armistice Day", - "2046-11-12": "Armistice Day (Observed)", + "2046-11-12": "Armistice Day (observed)", "2047-01-01": "New Year's Day", "2047-01-02": "New Year's Day", "2047-01-07": "Orthodox Christmas Day", @@ -1253,7 +1253,7 @@ "2048-01-07": "Orthodox Christmas Day", "2048-02-15": "Statehood Day", "2048-02-16": "Statehood Day", - "2048-02-17": "Statehood Day (Observed)", + "2048-02-17": "Statehood Day (observed)", "2048-04-03": "Good Friday", "2048-04-04": "Easter Saturday", "2048-04-05": "Easter Sunday", @@ -1272,11 +1272,11 @@ "2049-04-26": "Easter Monday", "2049-05-01": "International Workers' Day", "2049-05-02": "International Workers' Day", - "2049-05-03": "International Workers' Day (Observed)", + "2049-05-03": "International Workers' Day (observed)", "2049-11-11": "Armistice Day", "2050-01-01": "New Year's Day", "2050-01-02": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-01-07": "Orthodox Christmas Day", "2050-02-15": "Statehood Day", "2050-02-16": "Statehood Day", @@ -1286,6 +1286,6 @@ "2050-04-18": "Easter Monday", "2050-05-01": "International Workers' Day", "2050-05-02": "International Workers' Day", - "2050-05-03": "International Workers' Day (Observed)", + "2050-05-03": "International Workers' Day (observed)", "2050-11-11": "Armistice Day" } diff --git a/snapshots/countries/SG_COMMON.json b/snapshots/countries/SG_COMMON.json index 57edb172d..93743d623 100644 --- a/snapshots/countries/SG_COMMON.json +++ b/snapshots/countries/SG_COMMON.json @@ -604,9 +604,9 @@ "1998-04-10": "Good Friday", "1998-05-01": "Labour Day", "1998-05-10": "Vesak Day (estimated)", - "1998-05-11": "Vesak Day (estimated) (Observed)", + "1998-05-11": "Vesak Day (estimated) (observed)", "1998-08-09": "National Day", - "1998-08-10": "National Day (Observed)", + "1998-08-10": "National Day (observed)", "1998-11-17": "Deepavali", "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2000-01-08": "Hari Raya Puasa (estimated)", "2000-02-05": "Chinese New Year (estimated)", "2000-02-06": "Chinese New Year (estimated)", - "2000-02-07": "Chinese New Year (estimated) (Observed)", + "2000-02-07": "Chinese New Year (estimated) (observed)", "2000-03-16": "Hari Raya Haji (estimated)", "2000-04-21": "Good Friday", "2000-05-01": "Labour Day", @@ -644,7 +644,7 @@ "2001-11-03": "Polling Day", "2001-11-14": "Deepavali", "2001-12-16": "Hari Raya Puasa", - "2001-12-17": "Hari Raya Puasa (Observed)", + "2001-12-17": "Hari Raya Puasa (observed)", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-02-12": "Chinese New Year", @@ -653,16 +653,16 @@ "2002-03-29": "Good Friday", "2002-05-01": "Labour Day", "2002-05-26": "Vesak Day", - "2002-05-27": "Vesak Day (Observed)", + "2002-05-27": "Vesak Day (observed)", "2002-08-09": "National Day", "2002-11-03": "Deepavali", - "2002-11-04": "Deepavali (Observed)", + "2002-11-04": "Deepavali (observed)", "2002-12-06": "Hari Raya Puasa", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-02-01": "Chinese New Year", "2003-02-02": "Chinese New Year", - "2003-02-03": "Chinese New Year (Observed)", + "2003-02-03": "Chinese New Year (observed)", "2003-02-12": "Hari Raya Haji", "2003-04-18": "Good Friday", "2003-05-01": "Labour Day", @@ -675,14 +675,14 @@ "2004-01-22": "Chinese New Year", "2004-01-23": "Chinese New Year", "2004-02-01": "Hari Raya Haji", - "2004-02-02": "Hari Raya Haji (Observed)", + "2004-02-02": "Hari Raya Haji (observed)", "2004-04-09": "Good Friday", "2004-05-01": "Labour Day", "2004-06-02": "Vesak Day", "2004-08-09": "National Day", "2004-11-11": "Deepavali", "2004-11-14": "Hari Raya Puasa", - "2004-11-15": "Hari Raya Puasa (Observed)", + "2004-11-15": "Hari Raya Puasa (observed)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-01-21": "Hari Raya Haji", @@ -690,16 +690,16 @@ "2005-02-10": "Chinese New Year", "2005-03-25": "Good Friday", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-05-22": "Vesak Day", - "2005-05-23": "Vesak Day (Observed)", + "2005-05-23": "Vesak Day (observed)", "2005-08-09": "National Day", "2005-11-01": "Deepavali", "2005-11-03": "Hari Raya Puasa", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-10": "Hari Raya Haji", "2006-01-30": "Chinese New Year", "2006-01-31": "Chinese New Year", @@ -713,7 +713,7 @@ "2006-12-25": "Christmas Day", "2006-12-31": "Hari Raya Haji", "2007-01-01": "New Year's Day", - "2007-01-02": "Hari Raya Haji (Observed)", + "2007-01-02": "Hari Raya Haji (observed)", "2007-02-19": "Chinese New Year", "2007-02-20": "Chinese New Year", "2007-04-06": "Good Friday", @@ -742,17 +742,17 @@ "2009-05-01": "Labour Day", "2009-05-09": "Vesak Day", "2009-08-09": "National Day", - "2009-08-10": "National Day (Observed)", + "2009-08-10": "National Day (observed)", "2009-09-20": "Hari Raya Puasa", - "2009-09-21": "Hari Raya Puasa (Observed)", + "2009-09-21": "Hari Raya Puasa (observed)", "2009-11-15": "Deepavali", - "2009-11-16": "Deepavali (Observed)", + "2009-11-16": "Deepavali (observed)", "2009-11-27": "Hari Raya Haji", "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-02-14": "Chinese New Year", "2010-02-15": "Chinese New Year", - "2010-02-16": "Chinese New Year (Observed)", + "2010-02-16": "Chinese New Year (observed)", "2010-04-02": "Good Friday", "2010-05-01": "Labour Day", "2010-05-28": "Vesak Day", @@ -766,18 +766,18 @@ "2011-02-04": "Chinese New Year", "2011-04-22": "Good Friday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-05-07": "Polling Day", "2011-05-17": "Vesak Day", "2011-08-09": "National Day", "2011-08-30": "Hari Raya Puasa", "2011-10-26": "Deepavali", "2011-11-06": "Hari Raya Haji", - "2011-11-07": "Hari Raya Haji (Observed)", + "2011-11-07": "Hari Raya Haji (observed)", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-23": "Chinese New Year", "2012-01-24": "Chinese New Year", "2012-04-06": "Good Friday", @@ -785,14 +785,14 @@ "2012-05-05": "Vesak Day", "2012-08-09": "National Day", "2012-08-19": "Hari Raya Puasa", - "2012-08-20": "Hari Raya Puasa (Observed)", + "2012-08-20": "Hari Raya Puasa (observed)", "2012-10-26": "Hari Raya Haji", "2012-11-13": "Deepavali", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-02-10": "Chinese New Year", "2013-02-11": "Chinese New Year", - "2013-02-12": "Chinese New Year (Observed)", + "2013-02-12": "Chinese New Year (observed)", "2013-03-29": "Good Friday", "2013-05-01": "Labour Day", "2013-05-24": "Vesak Day", @@ -810,7 +810,7 @@ "2014-07-28": "Hari Raya Puasa", "2014-08-09": "National Day", "2014-10-05": "Hari Raya Haji", - "2014-10-06": "Hari Raya Haji (Observed)", + "2014-10-06": "Hari Raya Haji (observed)", "2014-10-22": "Deepavali", "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", @@ -822,7 +822,7 @@ "2015-07-17": "Hari Raya Puasa", "2015-08-07": "SG50 Public Holiday", "2015-08-09": "National Day", - "2015-08-10": "National Day (Observed)", + "2015-08-10": "National Day (observed)", "2015-09-11": "Polling Day", "2015-09-24": "Hari Raya Haji", "2015-11-10": "Deepavali", @@ -832,24 +832,24 @@ "2016-02-09": "Chinese New Year", "2016-03-25": "Good Friday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-05-21": "Vesak Day", "2016-07-06": "Hari Raya Puasa", "2016-08-09": "National Day", "2016-09-12": "Hari Raya Haji", "2016-10-29": "Deepavali", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year", - "2017-01-30": "Chinese New Year (Observed)", + "2017-01-30": "Chinese New Year (observed)", "2017-04-14": "Good Friday", "2017-05-01": "Labour Day", "2017-05-10": "Vesak Day", "2017-06-25": "Hari Raya Puasa", - "2017-06-26": "Hari Raya Puasa (Observed)", + "2017-06-26": "Hari Raya Puasa (observed)", "2017-08-09": "National Day", "2017-09-01": "Hari Raya Haji", "2017-10-18": "Deepavali", @@ -871,27 +871,27 @@ "2019-04-19": "Good Friday", "2019-05-01": "Labour Day", "2019-05-19": "Vesak Day", - "2019-05-20": "Vesak Day (Observed)", + "2019-05-20": "Vesak Day (observed)", "2019-06-05": "Hari Raya Puasa", "2019-08-09": "National Day", "2019-08-11": "Hari Raya Haji", - "2019-08-12": "Hari Raya Haji (Observed)", + "2019-08-12": "Hari Raya Haji (observed)", "2019-10-27": "Deepavali", - "2019-10-28": "Deepavali (Observed)", + "2019-10-28": "Deepavali (observed)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-25": "Chinese New Year", "2020-01-26": "Chinese New Year", - "2020-01-27": "Chinese New Year (Observed)", + "2020-01-27": "Chinese New Year (observed)", "2020-04-10": "Good Friday", "2020-05-01": "Labour Day", "2020-05-07": "Vesak Day", "2020-05-24": "Hari Raya Puasa", - "2020-05-25": "Hari Raya Puasa (Observed)", + "2020-05-25": "Hari Raya Puasa (observed)", "2020-07-10": "Polling Day", "2020-07-31": "Hari Raya Haji", "2020-08-09": "National Day", - "2020-08-10": "National Day (Observed)", + "2020-08-10": "National Day (observed)", "2020-11-14": "Deepavali", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", @@ -910,21 +910,21 @@ "2022-02-02": "Chinese New Year", "2022-04-15": "Good Friday", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-05-03": "Hari Raya Puasa", "2022-05-15": "Vesak Day", - "2022-05-16": "Vesak Day (Observed)", + "2022-05-16": "Vesak Day (observed)", "2022-07-10": "Hari Raya Haji", - "2022-07-11": "Hari Raya Haji (Observed)", + "2022-07-11": "Hari Raya Haji (observed)", "2022-08-09": "National Day", "2022-10-24": "Deepavali", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year", - "2023-01-24": "Chinese New Year (Observed)", + "2023-01-24": "Chinese New Year (observed)", "2023-04-07": "Good Friday", "2023-04-22": "Hari Raya Puasa", "2023-05-01": "Labour Day", @@ -933,12 +933,12 @@ "2023-08-09": "National Day", "2023-09-01": "Polling Day", "2023-11-12": "Deepavali", - "2023-11-13": "Deepavali (Observed)", + "2023-11-13": "Deepavali (observed)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-02-10": "Chinese New Year", "2024-02-11": "Chinese New Year", - "2024-02-12": "Chinese New Year (Observed)", + "2024-02-12": "Chinese New Year (observed)", "2024-03-29": "Good Friday", "2024-04-10": "Hari Raya Puasa", "2024-05-01": "Labour Day", @@ -951,11 +951,11 @@ "2025-01-29": "Chinese New Year (estimated)", "2025-01-30": "Chinese New Year (estimated)", "2025-03-30": "Hari Raya Puasa (estimated)", - "2025-03-31": "Hari Raya Puasa (estimated) (Observed)", + "2025-03-31": "Hari Raya Puasa (estimated) (observed)", "2025-04-18": "Good Friday", "2025-05-01": "Labour Day", "2025-05-11": "Vesak Day (estimated)", - "2025-05-12": "Vesak Day (estimated) (Observed)", + "2025-05-12": "Vesak Day (estimated) (observed)", "2025-06-06": "Hari Raya Haji (estimated)", "2025-08-09": "National Day", "2025-11-18": "Deepavali", @@ -968,20 +968,20 @@ "2026-05-01": "Labour Day", "2026-05-27": "Hari Raya Haji (estimated)", "2026-05-31": "Vesak Day (estimated)", - "2026-06-01": "Vesak Day (estimated) (Observed)", + "2026-06-01": "Vesak Day (estimated) (observed)", "2026-08-09": "National Day", - "2026-08-10": "National Day (Observed)", + "2026-08-10": "National Day (observed)", "2026-11-07": "Deepavali", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-02-06": "Chinese New Year (estimated)", "2027-02-07": "Chinese New Year (estimated)", - "2027-02-08": "Chinese New Year (estimated) (Observed)", + "2027-02-08": "Chinese New Year (estimated) (observed)", "2027-03-09": "Hari Raya Puasa (estimated)", "2027-03-26": "Good Friday", "2027-05-01": "Labour Day", "2027-05-16": "Hari Raya Haji (estimated)", - "2027-05-17": "Hari Raya Haji (estimated) (Observed)", + "2027-05-17": "Hari Raya Haji (estimated) (observed)", "2027-05-20": "Vesak Day (estimated)", "2027-08-09": "National Day", "2027-10-27": "Deepavali", @@ -1004,15 +1004,15 @@ "2029-04-24": "Hari Raya Haji (estimated)", "2029-05-01": "Labour Day", "2029-05-27": "Vesak Day (estimated)", - "2029-05-28": "Vesak Day (estimated) (Observed)", + "2029-05-28": "Vesak Day (estimated) (observed)", "2029-08-09": "National Day", "2029-11-04": "Deepavali", - "2029-11-05": "Deepavali (Observed)", + "2029-11-05": "Deepavali (observed)", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-02-03": "Chinese New Year (estimated)", "2030-02-04": "Chinese New Year (estimated); Hari Raya Puasa (estimated)", - "2030-02-05": "Chinese New Year (estimated) (Observed)", + "2030-02-05": "Chinese New Year (estimated) (observed)", "2030-04-13": "Hari Raya Haji (estimated)", "2030-04-19": "Good Friday", "2030-05-01": "Labour Day", @@ -1038,30 +1038,30 @@ "2032-03-26": "Good Friday", "2032-05-01": "Labour Day", "2032-05-23": "Vesak Day (estimated)", - "2032-05-24": "Vesak Day (estimated) (Observed)", + "2032-05-24": "Vesak Day (estimated) (observed)", "2032-08-09": "National Day", "2032-11-01": "Deepavali", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", "2033-01-02": "Hari Raya Puasa (estimated)", - "2033-01-03": "Hari Raya Puasa (estimated) (Observed)", + "2033-01-03": "Hari Raya Puasa (estimated) (observed)", "2033-01-31": "Chinese New Year (estimated)", "2033-02-01": "Chinese New Year (estimated)", "2033-03-11": "Hari Raya Haji (estimated)", "2033-04-15": "Good Friday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-05-13": "Vesak Day (estimated)", "2033-08-09": "National Day", "2033-10-21": "Deepavali", "2033-12-23": "Hari Raya Puasa (estimated)", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-19": "Chinese New Year (estimated)", "2034-02-20": "Chinese New Year (estimated)", - "2034-02-21": "Chinese New Year (estimated) (Observed)", + "2034-02-21": "Chinese New Year (estimated) (observed)", "2034-03-01": "Hari Raya Haji (estimated)", "2034-04-07": "Good Friday", "2034-05-01": "Labour Day", @@ -1074,7 +1074,7 @@ "2035-02-08": "Chinese New Year (estimated)", "2035-02-09": "Chinese New Year (estimated)", "2035-02-18": "Hari Raya Haji (estimated)", - "2035-02-19": "Hari Raya Haji (estimated) (Observed)", + "2035-02-19": "Hari Raya Haji (estimated) (observed)", "2035-03-23": "Good Friday", "2035-05-01": "Labour Day", "2035-05-22": "Vesak Day (estimated)", @@ -1091,22 +1091,22 @@ "2036-05-10": "Vesak Day (estimated)", "2036-08-09": "National Day", "2036-11-16": "Deepavali", - "2036-11-17": "Deepavali (Observed)", + "2036-11-17": "Deepavali (observed)", "2036-11-19": "Hari Raya Puasa (estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-26": "Hari Raya Haji (estimated)", "2037-02-15": "Chinese New Year (estimated)", "2037-02-16": "Chinese New Year (estimated)", - "2037-02-17": "Chinese New Year (estimated) (Observed)", + "2037-02-17": "Chinese New Year (estimated) (observed)", "2037-04-03": "Good Friday", "2037-05-01": "Labour Day", "2037-05-29": "Vesak Day (estimated)", "2037-08-09": "National Day", - "2037-08-10": "National Day (Observed)", + "2037-08-10": "National Day (observed)", "2037-11-05": "Deepavali", "2037-11-08": "Hari Raya Puasa (estimated)", - "2037-11-09": "Hari Raya Puasa (estimated) (Observed)", + "2037-11-09": "Hari Raya Puasa (estimated) (observed)", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-01-16": "Hari Raya Haji (estimated)", @@ -1125,25 +1125,25 @@ "2039-01-25": "Chinese New Year (estimated)", "2039-04-08": "Good Friday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-05-07": "Vesak Day (estimated)", "2039-08-09": "National Day", "2039-10-19": "Hari Raya Puasa (estimated)", "2039-11-14": "Deepavali", "2039-12-25": "Christmas Day", "2039-12-26": "Hari Raya Haji (estimated)", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-12": "Chinese New Year (estimated)", "2040-02-13": "Chinese New Year (estimated)", - "2040-02-14": "Chinese New Year (estimated) (Observed)", + "2040-02-14": "Chinese New Year (estimated) (observed)", "2040-03-30": "Good Friday", "2040-05-01": "Labour Day", "2040-05-25": "Vesak Day (estimated)", "2040-08-09": "National Day", "2040-10-07": "Hari Raya Puasa (estimated)", - "2040-10-08": "Hari Raya Puasa (estimated) (Observed)", + "2040-10-08": "Hari Raya Puasa (estimated) (observed)", "2040-11-03": "Deepavali", "2040-12-14": "Hari Raya Haji (estimated)", "2040-12-25": "Christmas Day", @@ -1168,7 +1168,7 @@ "2042-09-15": "Hari Raya Puasa (estimated)", "2042-11-11": "Deepavali", "2042-11-23": "Hari Raya Haji (estimated)", - "2042-11-24": "Hari Raya Haji (estimated) (Observed)", + "2042-11-24": "Hari Raya Haji (estimated) (observed)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Chinese New Year (estimated)", @@ -1177,7 +1177,7 @@ "2043-05-01": "Labour Day", "2043-05-23": "Vesak Day (estimated)", "2043-08-09": "National Day", - "2043-08-10": "National Day (Observed)", + "2043-08-10": "National Day (observed)", "2043-09-04": "Hari Raya Puasa (estimated)", "2043-10-31": "Deepavali", "2043-11-12": "Hari Raya Haji (estimated)", @@ -1185,19 +1185,19 @@ "2044-01-01": "New Year's Day", "2044-01-30": "Chinese New Year (estimated)", "2044-01-31": "Chinese New Year (estimated)", - "2044-02-01": "Chinese New Year (estimated) (Observed)", + "2044-02-01": "Chinese New Year (estimated) (observed)", "2044-04-15": "Good Friday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-05-12": "Vesak Day (estimated)", "2044-08-09": "National Day", "2044-08-24": "Hari Raya Puasa (estimated)", "2044-10-31": "Hari Raya Haji (estimated)", "2044-11-17": "Deepavali", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-17": "Chinese New Year (estimated)", "2045-02-18": "Chinese New Year (estimated)", "2045-04-07": "Good Friday", @@ -1214,7 +1214,7 @@ "2046-03-23": "Good Friday", "2046-05-01": "Labour Day", "2046-05-20": "Vesak Day (estimated)", - "2046-05-21": "Vesak Day (estimated) (Observed)", + "2046-05-21": "Vesak Day (estimated) (observed)", "2046-08-03": "Hari Raya Puasa (estimated)", "2046-08-09": "National Day", "2046-10-10": "Hari Raya Haji (estimated)", @@ -1223,7 +1223,7 @@ "2047-01-01": "New Year's Day", "2047-01-26": "Chinese New Year (estimated)", "2047-01-27": "Chinese New Year (estimated)", - "2047-01-28": "Chinese New Year (estimated) (Observed)", + "2047-01-28": "Chinese New Year (estimated) (observed)", "2047-04-12": "Good Friday", "2047-05-01": "Labour Day", "2047-05-09": "Vesak Day (estimated)", @@ -1239,9 +1239,9 @@ "2048-05-01": "Labour Day", "2048-05-27": "Vesak Day (estimated)", "2048-07-12": "Hari Raya Puasa (estimated)", - "2048-07-13": "Hari Raya Puasa (estimated) (Observed)", + "2048-07-13": "Hari Raya Puasa (estimated) (observed)", "2048-08-09": "National Day", - "2048-08-10": "National Day (Observed)", + "2048-08-10": "National Day (observed)", "2048-09-19": "Hari Raya Haji (estimated)", "2048-11-04": "Deepavali", "2048-12-25": "Christmas Day", @@ -1251,7 +1251,7 @@ "2049-04-16": "Good Friday", "2049-05-01": "Labour Day", "2049-05-16": "Vesak Day (estimated)", - "2049-05-17": "Vesak Day (estimated) (Observed)", + "2049-05-17": "Vesak Day (estimated) (observed)", "2049-07-01": "Hari Raya Puasa (estimated)", "2049-08-09": "National Day", "2049-09-08": "Hari Raya Haji (estimated)", @@ -1260,16 +1260,16 @@ "2050-01-01": "New Year's Day", "2050-01-23": "Chinese New Year (estimated)", "2050-01-24": "Chinese New Year (estimated)", - "2050-01-25": "Chinese New Year (estimated) (Observed)", + "2050-01-25": "Chinese New Year (estimated) (observed)", "2050-04-08": "Good Friday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-06-04": "Vesak Day (estimated)", "2050-06-20": "Hari Raya Puasa (estimated)", "2050-08-09": "National Day", "2050-08-28": "Hari Raya Haji (estimated)", - "2050-08-29": "Hari Raya Haji (estimated) (Observed)", + "2050-08-29": "Hari Raya Haji (estimated) (observed)", "2050-11-12": "Deepavali", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/SZ_COMMON.json b/snapshots/countries/SZ_COMMON.json index b1bd8669b..0548125e0 100644 --- a/snapshots/countries/SZ_COMMON.json +++ b/snapshots/countries/SZ_COMMON.json @@ -695,29 +695,29 @@ "2021-04-05": "Easter Monday", "2021-04-19": "King's Birthday", "2021-04-25": "National Flag Day", - "2021-04-26": "National Flag Day (Observed)", + "2021-04-26": "National Flag Day (observed)", "2021-05-01": "Worker's Day", "2021-05-13": "Ascension Day", "2021-07-22": "Birthday of Late King Sobhuza", "2021-09-06": "Independence Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-19": "King's Birthday", "2022-04-25": "National Flag Day", "2022-05-01": "Worker's Day", - "2022-05-02": "Worker's Day (Observed)", + "2022-05-02": "Worker's Day (observed)", "2022-05-26": "Ascension Day", "2022-07-22": "Birthday of Late King Sobhuza", "2022-09-06": "Independence Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-04-19": "King's Birthday", @@ -754,13 +754,13 @@ "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-19": "King's Birthday", - "2026-04-20": "King's Birthday (Observed)", + "2026-04-20": "King's Birthday (observed)", "2026-04-25": "National Flag Day", "2026-05-01": "Worker's Day", "2026-05-14": "Ascension Day", "2026-07-22": "Birthday of Late King Sobhuza", "2026-09-06": "Independence Day", - "2026-09-07": "Independence Day (Observed)", + "2026-09-07": "Independence Day (observed)", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2027-01-01": "New Year's Day", @@ -768,14 +768,14 @@ "2027-03-29": "Easter Monday", "2027-04-19": "King's Birthday", "2027-04-25": "National Flag Day", - "2027-04-26": "National Flag Day (Observed)", + "2027-04-26": "National Flag Day (observed)", "2027-05-01": "Worker's Day", "2027-05-06": "Ascension Day", "2027-07-22": "Birthday of Late King Sobhuza", "2027-09-06": "Independence Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Boxing Day (Observed)", + "2027-12-27": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", @@ -795,7 +795,7 @@ "2029-05-01": "Worker's Day", "2029-05-10": "Ascension Day", "2029-07-22": "Birthday of Late King Sobhuza", - "2029-07-23": "Birthday of Late King Sobhuza (Observed)", + "2029-07-23": "Birthday of Late King Sobhuza (observed)", "2029-09-06": "Independence Day", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", @@ -825,29 +825,29 @@ "2032-03-29": "Easter Monday", "2032-04-19": "King's Birthday", "2032-04-25": "National Flag Day", - "2032-04-26": "National Flag Day (Observed)", + "2032-04-26": "National Flag Day (observed)", "2032-05-01": "Worker's Day", "2032-05-06": "Ascension Day", "2032-07-22": "Birthday of Late King Sobhuza", "2032-09-06": "Independence Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Boxing Day (Observed)", + "2032-12-27": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-19": "King's Birthday", "2033-04-25": "National Flag Day", "2033-05-01": "Worker's Day", - "2033-05-02": "Worker's Day (Observed)", + "2033-05-02": "Worker's Day (observed)", "2033-05-26": "Ascension Day", "2033-07-22": "Birthday of Late King Sobhuza", "2033-09-06": "Independence Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-04-19": "King's Birthday", @@ -866,7 +866,7 @@ "2035-05-01": "Worker's Day", "2035-05-03": "Ascension Day", "2035-07-22": "Birthday of Late King Sobhuza", - "2035-07-23": "Birthday of Late King Sobhuza (Observed)", + "2035-07-23": "Birthday of Late King Sobhuza (observed)", "2035-09-06": "Independence Day", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", @@ -885,13 +885,13 @@ "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-19": "King's Birthday", - "2037-04-20": "King's Birthday (Observed)", + "2037-04-20": "King's Birthday (observed)", "2037-04-25": "National Flag Day", "2037-05-01": "Worker's Day", "2037-05-14": "Ascension Day", "2037-07-22": "Birthday of Late King Sobhuza", "2037-09-06": "Independence Day", - "2037-09-07": "Independence Day (Observed)", + "2037-09-07": "Independence Day (observed)", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2038-01-01": "New Year's Day", @@ -899,29 +899,29 @@ "2038-04-23": "Good Friday", "2038-04-25": "National Flag Day", "2038-04-26": "Easter Monday", - "2038-04-27": "National Flag Day (Observed)", + "2038-04-27": "National Flag Day (observed)", "2038-05-01": "Worker's Day", "2038-06-03": "Ascension Day", "2038-07-22": "Birthday of Late King Sobhuza", "2038-09-06": "Independence Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Boxing Day (Observed)", + "2038-12-27": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-19": "King's Birthday", "2039-04-25": "National Flag Day", "2039-05-01": "Worker's Day", - "2039-05-02": "Worker's Day (Observed)", + "2039-05-02": "Worker's Day (observed)", "2039-05-19": "Ascension Day", "2039-07-22": "Birthday of Late King Sobhuza", "2039-09-06": "Independence Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-04-19": "King's Birthday", @@ -929,7 +929,7 @@ "2040-05-01": "Worker's Day", "2040-05-10": "Ascension Day", "2040-07-22": "Birthday of Late King Sobhuza", - "2040-07-23": "Birthday of Late King Sobhuza (Observed)", + "2040-07-23": "Birthday of Late King Sobhuza (observed)", "2040-09-06": "Independence Day", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", @@ -958,13 +958,13 @@ "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-19": "King's Birthday", - "2043-04-20": "King's Birthday (Observed)", + "2043-04-20": "King's Birthday (observed)", "2043-04-25": "National Flag Day", "2043-05-01": "Worker's Day", "2043-05-07": "Ascension Day", "2043-07-22": "Birthday of Late King Sobhuza", "2043-09-06": "Independence Day", - "2043-09-07": "Independence Day (Observed)", + "2043-09-07": "Independence Day (observed)", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2044-01-01": "New Year's Day", @@ -973,15 +973,15 @@ "2044-04-19": "King's Birthday", "2044-04-25": "National Flag Day", "2044-05-01": "Worker's Day", - "2044-05-02": "Worker's Day (Observed)", + "2044-05-02": "Worker's Day (observed)", "2044-05-26": "Ascension Day", "2044-07-22": "Birthday of Late King Sobhuza", "2044-09-06": "Independence Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-04-19": "King's Birthday", @@ -1000,7 +1000,7 @@ "2046-05-01": "Worker's Day", "2046-05-03": "Ascension Day", "2046-07-22": "Birthday of Late King Sobhuza", - "2046-07-23": "Birthday of Late King Sobhuza (Observed)", + "2046-07-23": "Birthday of Late King Sobhuza (observed)", "2046-09-06": "Independence Day", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", @@ -1019,38 +1019,38 @@ "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-19": "King's Birthday", - "2048-04-20": "King's Birthday (Observed)", + "2048-04-20": "King's Birthday (observed)", "2048-04-25": "National Flag Day", "2048-05-01": "Worker's Day", "2048-05-14": "Ascension Day", "2048-07-22": "Birthday of Late King Sobhuza", "2048-09-06": "Independence Day", - "2048-09-07": "Independence Day (Observed)", + "2048-09-07": "Independence Day (observed)", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday; King's Birthday", "2049-04-25": "National Flag Day", - "2049-04-26": "National Flag Day (Observed)", + "2049-04-26": "National Flag Day (observed)", "2049-05-01": "Worker's Day", "2049-05-27": "Ascension Day", "2049-07-22": "Birthday of Late King Sobhuza", "2049-09-06": "Independence Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Boxing Day (Observed)", + "2049-12-27": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-19": "King's Birthday", "2050-04-25": "National Flag Day", "2050-05-01": "Worker's Day", - "2050-05-02": "Worker's Day (Observed)", + "2050-05-02": "Worker's Day (observed)", "2050-05-19": "Ascension Day", "2050-07-22": "Birthday of Late King Sobhuza", "2050-09-06": "Independence Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/TD_COMMON.json b/snapshots/countries/TD_COMMON.json index 02f71a1f9..2a473dc13 100644 --- a/snapshots/countries/TD_COMMON.json +++ b/snapshots/countries/TD_COMMON.json @@ -1,6 +1,6 @@ { "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-08": "International Women's Day", "1961-03-18": "Eid al-Fitr (estimated)", "1961-04-03": "Easter Monday", @@ -30,14 +30,14 @@ "1963-05-03": "Eid al-Adha (estimated)", "1963-08-02": "Mawlid (estimated)", "1963-08-11": "Independence Day", - "1963-08-12": "Independence Day (Observed)", + "1963-08-12": "Independence Day (observed)", "1963-11-01": "All Saints' Day", "1963-11-28": "Republic Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-08": "International Women's Day", - "1964-03-09": "International Women's Day (Observed)", + "1964-03-09": "International Women's Day (observed)", "1964-03-30": "Easter Monday", "1964-04-22": "Eid al-Adha (estimated)", "1964-05-01": "Labour Day", @@ -56,7 +56,7 @@ "1965-08-11": "Independence Day", "1965-11-01": "All Saints' Day", "1965-11-28": "Republic Day", - "1965-11-29": "Republic Day (Observed)", + "1965-11-29": "Republic Day (observed)", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-01-22": "Eid al-Fitr (estimated)", @@ -64,14 +64,14 @@ "1966-04-01": "Eid al-Adha (estimated)", "1966-04-11": "Easter Monday", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (Observed)", + "1966-05-02": "Labour Day (observed)", "1966-07-01": "Mawlid (estimated)", "1966-08-11": "Independence Day", "1966-11-01": "All Saints' Day", "1966-11-28": "Republic Day", "1966-12-25": "Christmas Day", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-12": "Eid al-Fitr (estimated)", "1967-03-08": "International Women's Day", "1967-03-21": "Eid al-Adha (estimated)", @@ -89,7 +89,7 @@ "1968-05-01": "Labour Day", "1968-06-08": "Mawlid (estimated)", "1968-08-11": "Independence Day", - "1968-08-12": "Independence Day (Observed)", + "1968-08-12": "Independence Day (observed)", "1968-11-01": "All Saints' Day", "1968-11-28": "Republic Day", "1968-12-21": "Eid al-Fitr (estimated)", @@ -108,7 +108,7 @@ "1970-01-01": "New Year's Day", "1970-02-16": "Eid al-Adha (estimated)", "1970-03-08": "International Women's Day", - "1970-03-09": "International Women's Day (Observed)", + "1970-03-09": "International Women's Day (observed)", "1970-03-30": "Easter Monday", "1970-05-01": "Labour Day", "1970-05-18": "Mawlid (estimated)", @@ -127,7 +127,7 @@ "1971-11-01": "All Saints' Day", "1971-11-19": "Eid al-Fitr (estimated)", "1971-11-28": "Republic Day", - "1971-11-29": "Republic Day (Observed)", + "1971-11-29": "Republic Day (observed)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", "1972-01-26": "Eid al-Adha (estimated)", @@ -158,7 +158,7 @@ "1974-04-15": "Easter Monday", "1974-05-01": "Labour Day", "1974-08-11": "Independence Day", - "1974-08-12": "Independence Day (Observed)", + "1974-08-12": "Independence Day (observed)", "1974-10-16": "Eid al-Fitr (estimated)", "1974-11-01": "All Saints' Day", "1974-11-28": "Republic Day", @@ -184,7 +184,7 @@ "1976-09-24": "Eid al-Fitr (estimated)", "1976-11-01": "All Saints' Day", "1976-11-28": "Republic Day", - "1976-11-29": "Republic Day (Observed)", + "1976-11-29": "Republic Day (observed)", "1976-12-01": "Eid al-Adha (estimated)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", @@ -192,7 +192,7 @@ "1977-03-08": "International Women's Day", "1977-04-11": "Easter Monday", "1977-05-01": "Labour Day", - "1977-05-02": "Labour Day (Observed)", + "1977-05-02": "Labour Day (observed)", "1977-08-11": "Independence Day", "1977-09-14": "Eid al-Fitr (estimated)", "1977-11-01": "All Saints' Day", @@ -200,7 +200,7 @@ "1977-11-28": "Republic Day", "1977-12-25": "Christmas Day", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-19": "Mawlid (estimated)", "1978-03-08": "International Women's Day", "1978-03-27": "Easter Monday", @@ -236,7 +236,7 @@ "1981-01-01": "New Year's Day", "1981-01-18": "Mawlid (estimated)", "1981-03-08": "International Women's Day", - "1981-03-09": "International Women's Day (Observed)", + "1981-03-09": "International Women's Day (observed)", "1981-04-20": "Easter Monday", "1981-05-01": "Labour Day", "1981-08-01": "Eid al-Fitr (estimated)", @@ -255,14 +255,14 @@ "1982-09-27": "Eid al-Adha (estimated)", "1982-11-01": "All Saints' Day", "1982-11-28": "Republic Day", - "1982-11-29": "Republic Day (Observed)", + "1982-11-29": "Republic Day (observed)", "1982-12-25": "Christmas Day", "1982-12-27": "Mawlid (estimated)", "1983-01-01": "New Year's Day", "1983-03-08": "International Women's Day", "1983-04-04": "Easter Monday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-07-11": "Eid al-Fitr (estimated)", "1983-08-11": "Independence Day", "1983-09-17": "Eid al-Adha (estimated)", @@ -271,7 +271,7 @@ "1983-12-16": "Mawlid (estimated)", "1983-12-25": "Christmas Day", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-08": "International Women's Day", "1984-04-23": "Easter Monday", "1984-05-01": "Labour Day", @@ -288,7 +288,7 @@ "1985-05-01": "Labour Day", "1985-06-19": "Eid al-Fitr (estimated)", "1985-08-11": "Independence Day", - "1985-08-12": "Independence Day (Observed)", + "1985-08-12": "Independence Day (observed)", "1985-08-26": "Eid al-Adha (estimated)", "1985-11-01": "All Saints' Day", "1985-11-24": "Mawlid (estimated)", @@ -307,7 +307,7 @@ "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-03-08": "International Women's Day", - "1987-03-09": "International Women's Day (Observed)", + "1987-03-09": "International Women's Day (observed)", "1987-04-20": "Easter Monday", "1987-05-01": "Labour Day", "1987-05-28": "Eid al-Fitr (estimated)", @@ -321,7 +321,7 @@ "1988-03-08": "International Women's Day", "1988-04-04": "Easter Monday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-05-16": "Eid al-Fitr (estimated)", "1988-07-23": "Eid al-Adha (estimated)", "1988-08-11": "Independence Day", @@ -330,7 +330,7 @@ "1988-11-28": "Republic Day", "1988-12-25": "Christmas Day", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-08": "International Women's Day", "1989-03-27": "Easter Monday", "1989-05-01": "Labour Day", @@ -359,16 +359,16 @@ "1991-05-01": "Labour Day", "1991-06-22": "Eid al-Adha (estimated)", "1991-08-11": "Independence Day", - "1991-08-12": "Independence Day (Observed)", + "1991-08-12": "Independence Day (observed)", "1991-09-20": "Mawlid (estimated)", "1991-11-01": "All Saints' Day", "1991-11-28": "Republic Day", "1991-12-01": "Freedom and Democracy Day", - "1991-12-02": "Freedom and Democracy Day (Observed)", + "1991-12-02": "Freedom and Democracy Day (observed)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-03-08": "International Women's Day", - "1992-03-09": "International Women's Day (Observed)", + "1992-03-09": "International Women's Day (observed)", "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-20": "Easter Monday", "1992-05-01": "Labour Day", @@ -389,7 +389,7 @@ "1993-08-29": "Mawlid (estimated)", "1993-11-01": "All Saints' Day", "1993-11-28": "Republic Day", - "1993-11-29": "Republic Day (Observed)", + "1993-11-29": "Republic Day (observed)", "1993-12-01": "Freedom and Democracy Day", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", @@ -397,7 +397,7 @@ "1994-03-13": "Eid al-Fitr (estimated)", "1994-04-04": "Easter Monday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-05-20": "Eid al-Adha (estimated)", "1994-08-11": "Independence Day", "1994-08-19": "Mawlid (estimated)", @@ -406,7 +406,7 @@ "1994-12-01": "Freedom and Democracy Day", "1994-12-25": "Christmas Day", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-08": "International Women's Day", "1995-04-17": "Easter Monday", @@ -426,11 +426,11 @@ "1996-05-01": "Labour Day", "1996-07-27": "Mawlid (estimated)", "1996-08-11": "Independence Day", - "1996-08-12": "Independence Day (Observed)", + "1996-08-12": "Independence Day (observed)", "1996-11-01": "All Saints' Day", "1996-11-28": "Republic Day", "1996-12-01": "Freedom and Democracy Day", - "1996-12-02": "Freedom and Democracy Day (Observed)", + "1996-12-02": "Freedom and Democracy Day (observed)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-02-08": "Eid al-Fitr (estimated)", @@ -447,7 +447,7 @@ "1998-01-01": "New Year's Day", "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-08": "International Women's Day", - "1998-03-09": "International Women's Day (Observed)", + "1998-03-09": "International Women's Day (observed)", "1998-04-07": "Eid al-Adha (estimated)", "1998-04-13": "Easter Monday", "1998-05-01": "Labour Day", @@ -467,7 +467,7 @@ "1999-08-11": "Independence Day", "1999-11-01": "All Saints' Day", "1999-11-28": "Republic Day", - "1999-11-29": "Republic Day (Observed)", + "1999-11-29": "Republic Day (observed)", "1999-12-01": "Freedom and Democracy Day", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", @@ -502,11 +502,11 @@ "2002-05-01": "Labour Day", "2002-05-24": "Mawlid (estimated)", "2002-08-11": "Independence Day", - "2002-08-12": "Independence Day (Observed)", + "2002-08-12": "Independence Day (observed)", "2002-11-01": "All Saints' Day", "2002-11-28": "Republic Day", "2002-12-01": "Freedom and Democracy Day", - "2002-12-02": "Freedom and Democracy Day (Observed)", + "2002-12-02": "Freedom and Democracy Day (observed)", "2002-12-05": "Eid al-Fitr (estimated)", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", @@ -530,7 +530,7 @@ "2004-11-01": "All Saints' Day", "2004-11-14": "Eid al-Fitr (estimated)", "2004-11-28": "Republic Day", - "2004-11-29": "Republic Day (Observed)", + "2004-11-29": "Republic Day (observed)", "2004-12-01": "Freedom and Democracy Day", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", @@ -539,7 +539,7 @@ "2005-03-28": "Easter Monday", "2005-04-21": "Mawlid (estimated)", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-08-11": "Independence Day", "2005-11-01": "All Saints' Day", "2005-11-03": "Eid al-Fitr (estimated)", @@ -547,7 +547,7 @@ "2005-12-01": "Freedom and Democracy Day", "2005-12-25": "Christmas Day", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-10": "Eid al-Adha (estimated)", "2006-03-08": "International Women's Day", "2006-04-10": "Mawlid (estimated)", @@ -586,7 +586,7 @@ "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-03-08": "International Women's Day", - "2009-03-09": "International Women's Day (Observed); Mawlid (estimated)", + "2009-03-09": "International Women's Day (observed); Mawlid (estimated)", "2009-04-13": "Easter Monday", "2009-05-01": "Labour Day", "2009-08-11": "Independence Day", @@ -606,7 +606,7 @@ "2010-11-01": "All Saints' Day", "2010-11-16": "Eid al-Adha (estimated)", "2010-11-28": "Republic Day", - "2010-11-29": "Republic Day (Observed)", + "2010-11-29": "Republic Day (observed)", "2010-12-01": "Freedom and Democracy Day", "2010-12-25": "Christmas Day", "2011-01-01": "New Year's Day", @@ -614,7 +614,7 @@ "2011-03-08": "International Women's Day", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-08-11": "Independence Day", "2011-08-30": "Eid al-Fitr (estimated)", "2011-11-01": "All Saints' Day", @@ -623,7 +623,7 @@ "2011-12-01": "Freedom and Democracy Day", "2011-12-25": "Christmas Day", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-04": "Mawlid (estimated)", "2012-03-08": "International Women's Day", "2012-04-09": "Easter Monday", @@ -642,12 +642,12 @@ "2013-05-01": "Labour Day", "2013-08-08": "Eid al-Fitr (estimated)", "2013-08-11": "Independence Day", - "2013-08-12": "Independence Day (Observed)", + "2013-08-12": "Independence Day (observed)", "2013-10-15": "Eid al-Adha (estimated)", "2013-11-01": "All Saints' Day", "2013-11-28": "Republic Day", "2013-12-01": "Freedom and Democracy Day", - "2013-12-02": "Freedom and Democracy Day (Observed)", + "2013-12-02": "Freedom and Democracy Day (observed)", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-13": "Mawlid (estimated)", @@ -664,7 +664,7 @@ "2015-01-01": "New Year's Day", "2015-01-03": "Mawlid", "2015-03-08": "International Women's Day", - "2015-03-09": "International Women's Day (Observed)", + "2015-03-09": "International Women's Day (observed)", "2015-04-06": "Easter Monday", "2015-05-01": "Labour Day", "2015-07-18": "Eid al-Fitr", @@ -679,7 +679,7 @@ "2016-03-08": "International Women's Day", "2016-03-28": "Easter Monday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-07-07": "Eid al-Fitr", "2016-08-11": "Independence Day", "2016-09-13": "Eid al-Adha", @@ -689,7 +689,7 @@ "2016-12-12": "Mawlid", "2016-12-25": "Christmas Day", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-03-08": "International Women's Day", "2017-04-17": "Easter Monday", "2017-05-01": "Labour Day", @@ -718,16 +718,16 @@ "2019-05-01": "Labour Day", "2019-06-04": "Eid al-Fitr", "2019-08-11": "Eid al-Adha; Independence Day", - "2019-08-12": "Independence Day (Observed)", + "2019-08-12": "Independence Day (observed)", "2019-11-01": "All Saints' Day", "2019-11-09": "Mawlid", "2019-11-28": "Republic Day", "2019-12-01": "Freedom and Democracy Day", - "2019-12-02": "Freedom and Democracy Day (Observed)", + "2019-12-02": "Freedom and Democracy Day (observed)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-03-08": "International Women's Day", - "2020-03-09": "International Women's Day (Observed)", + "2020-03-09": "International Women's Day (observed)", "2020-04-13": "Easter Monday", "2020-05-01": "Labour Day", "2020-05-24": "Eid al-Fitr", @@ -749,14 +749,14 @@ "2021-10-18": "Mawlid", "2021-11-01": "All Saints' Day", "2021-11-28": "Republic Day", - "2021-11-29": "Republic Day (Observed)", + "2021-11-29": "Republic Day (observed)", "2021-12-01": "Freedom and Democracy Day", "2021-12-25": "Christmas Day", "2022-01-01": "New Year's Day", "2022-03-08": "International Women's Day", "2022-04-18": "Easter Monday", "2022-05-01": "Labour Day", - "2022-05-02": "Eid al-Fitr; Labour Day (Observed)", + "2022-05-02": "Eid al-Fitr; Labour Day (observed)", "2022-07-09": "Eid al-Adha", "2022-08-11": "Independence Day", "2022-10-08": "Mawlid", @@ -765,7 +765,7 @@ "2022-12-01": "Freedom and Democracy Day", "2022-12-25": "Christmas Day", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-03-08": "International Women's Day", "2023-04-10": "Easter Monday", "2023-04-21": "Eid al-Fitr", @@ -784,12 +784,12 @@ "2024-05-01": "Labour Day", "2024-06-16": "Eid al-Adha (estimated)", "2024-08-11": "Independence Day", - "2024-08-12": "Independence Day (Observed)", + "2024-08-12": "Independence Day (observed)", "2024-09-15": "Mawlid (estimated)", "2024-11-01": "All Saints' Day", "2024-11-28": "Republic Day", "2024-12-01": "Freedom and Democracy Day", - "2024-12-02": "Freedom and Democracy Day (Observed)", + "2024-12-02": "Freedom and Democracy Day (observed)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-03-08": "International Women's Day", @@ -805,7 +805,7 @@ "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-03-08": "International Women's Day", - "2026-03-09": "International Women's Day (Observed)", + "2026-03-09": "International Women's Day (observed)", "2026-03-20": "Eid al-Fitr (estimated)", "2026-04-06": "Easter Monday", "2026-05-01": "Labour Day", @@ -826,7 +826,7 @@ "2027-08-14": "Mawlid (estimated)", "2027-11-01": "All Saints' Day", "2027-11-28": "Republic Day", - "2027-11-29": "Republic Day (Observed)", + "2027-11-29": "Republic Day (observed)", "2027-12-01": "Freedom and Democracy Day", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", @@ -861,11 +861,11 @@ "2030-05-01": "Labour Day", "2030-07-13": "Mawlid (estimated)", "2030-08-11": "Independence Day", - "2030-08-12": "Independence Day (Observed)", + "2030-08-12": "Independence Day (observed)", "2030-11-01": "All Saints' Day", "2030-11-28": "Republic Day", "2030-12-01": "Freedom and Democracy Day", - "2030-12-02": "Freedom and Democracy Day (Observed)", + "2030-12-02": "Freedom and Democracy Day (observed)", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-24": "Eid al-Fitr (estimated)", @@ -889,7 +889,7 @@ "2032-08-11": "Independence Day", "2032-11-01": "All Saints' Day", "2032-11-28": "Republic Day", - "2032-11-29": "Republic Day (Observed)", + "2032-11-29": "Republic Day (observed)", "2032-12-01": "Freedom and Democracy Day", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", @@ -898,7 +898,7 @@ "2033-03-11": "Eid al-Adha (estimated)", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-06-09": "Mawlid (estimated)", "2033-08-11": "Independence Day", "2033-11-01": "All Saints' Day", @@ -907,7 +907,7 @@ "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-01": "Eid al-Adha (estimated)", "2034-03-08": "International Women's Day", "2034-04-10": "Easter Monday", @@ -945,7 +945,7 @@ "2037-01-01": "New Year's Day", "2037-01-26": "Eid al-Adha (estimated)", "2037-03-08": "International Women's Day", - "2037-03-09": "International Women's Day (Observed)", + "2037-03-09": "International Women's Day (observed)", "2037-04-06": "Easter Monday", "2037-04-28": "Mawlid (estimated)", "2037-05-01": "Labour Day", @@ -965,7 +965,7 @@ "2038-10-29": "Eid al-Fitr (estimated)", "2038-11-01": "All Saints' Day", "2038-11-28": "Republic Day", - "2038-11-29": "Republic Day (Observed)", + "2038-11-29": "Republic Day (observed)", "2038-12-01": "Freedom and Democracy Day", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", @@ -974,7 +974,7 @@ "2039-04-06": "Mawlid (estimated)", "2039-04-11": "Easter Monday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-08-11": "Independence Day", "2039-10-19": "Eid al-Fitr (estimated)", "2039-11-01": "All Saints' Day", @@ -983,7 +983,7 @@ "2039-12-25": "Christmas Day", "2039-12-26": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-08": "International Women's Day", "2040-03-25": "Mawlid (estimated)", "2040-04-02": "Easter Monday", @@ -1001,12 +1001,12 @@ "2041-04-22": "Easter Monday", "2041-05-01": "Labour Day", "2041-08-11": "Independence Day", - "2041-08-12": "Independence Day (Observed)", + "2041-08-12": "Independence Day (observed)", "2041-09-26": "Eid al-Fitr (estimated)", "2041-11-01": "All Saints' Day", "2041-11-28": "Republic Day", "2041-12-01": "Freedom and Democracy Day", - "2041-12-02": "Freedom and Democracy Day (Observed)", + "2041-12-02": "Freedom and Democracy Day (observed)", "2041-12-04": "Eid al-Adha (estimated)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", @@ -1024,7 +1024,7 @@ "2043-01-01": "New Year's Day", "2043-02-22": "Mawlid (estimated)", "2043-03-08": "International Women's Day", - "2043-03-09": "International Women's Day (Observed)", + "2043-03-09": "International Women's Day (observed)", "2043-03-30": "Easter Monday", "2043-05-01": "Labour Day", "2043-08-11": "Independence Day", @@ -1039,7 +1039,7 @@ "2044-03-08": "International Women's Day", "2044-04-18": "Easter Monday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-08-11": "Independence Day", "2044-08-24": "Eid al-Fitr (estimated)", "2044-10-31": "Eid al-Adha (estimated)", @@ -1048,7 +1048,7 @@ "2044-12-01": "Freedom and Democracy Day", "2044-12-25": "Christmas Day", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-30": "Mawlid (estimated)", "2045-03-08": "International Women's Day", "2045-04-10": "Easter Monday", @@ -1079,17 +1079,17 @@ "2047-05-01": "Labour Day", "2047-07-24": "Eid al-Fitr (estimated)", "2047-08-11": "Independence Day", - "2047-08-12": "Independence Day (Observed)", + "2047-08-12": "Independence Day (observed)", "2047-09-30": "Eid al-Adha (estimated)", "2047-11-01": "All Saints' Day", "2047-11-28": "Republic Day", "2047-12-01": "Freedom and Democracy Day", - "2047-12-02": "Freedom and Democracy Day (Observed)", + "2047-12-02": "Freedom and Democracy Day (observed)", "2047-12-25": "Christmas Day", "2047-12-29": "Mawlid (estimated)", "2048-01-01": "New Year's Day", "2048-03-08": "International Women's Day", - "2048-03-09": "International Women's Day (Observed)", + "2048-03-09": "International Women's Day (observed)", "2048-04-06": "Easter Monday", "2048-05-01": "Labour Day", "2048-07-12": "Eid al-Fitr (estimated)", @@ -1109,7 +1109,7 @@ "2049-09-08": "Eid al-Adha (estimated)", "2049-11-01": "All Saints' Day", "2049-11-28": "Republic Day", - "2049-11-29": "Republic Day (Observed)", + "2049-11-29": "Republic Day (observed)", "2049-12-01": "Freedom and Democracy Day", "2049-12-07": "Mawlid (estimated)", "2049-12-25": "Christmas Day", @@ -1117,7 +1117,7 @@ "2050-03-08": "International Women's Day", "2050-04-11": "Easter Monday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-11": "Independence Day", "2050-08-28": "Eid al-Adha (estimated)", diff --git a/snapshots/countries/TO_COMMON.json b/snapshots/countries/TO_COMMON.json index 6eedd13dd..344998f1c 100644 --- a/snapshots/countries/TO_COMMON.json +++ b/snapshots/countries/TO_COMMON.json @@ -1,12 +1,12 @@ { "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-04-25": "Anzac Day", "1989-05-04": "Birthday of the Heir to the Crown of Tonga", "1989-06-04": "Emancipation Day", - "1989-06-05": "Emancipation Day (Observed)", + "1989-06-05": "Emancipation Day (observed)", "1989-07-04": "Birthday of the Reigning Sovereign of Tonga", "1989-11-04": "Constitution Day", "1989-12-04": "Anniversary of the Coronation of HM King George Tupou I", @@ -20,7 +20,7 @@ "1990-06-04": "Emancipation Day", "1990-07-04": "Birthday of the Reigning Sovereign of Tonga", "1990-11-04": "Constitution Day", - "1990-11-05": "Constitution Day (Observed)", + "1990-11-05": "Constitution Day (observed)", "1990-12-04": "Anniversary of the Coronation of HM King George Tupou I", "1990-12-25": "Christmas Day", "1990-12-26": "Boxing Day", @@ -50,11 +50,11 @@ "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", "1993-04-25": "Anzac Day", - "1993-04-26": "Anzac Day (Observed)", + "1993-04-26": "Anzac Day (observed)", "1993-05-04": "Birthday of the Heir to the Crown of Tonga", "1993-06-04": "Emancipation Day", "1993-07-04": "Birthday of the Reigning Sovereign of Tonga", - "1993-07-05": "Birthday of the Reigning Sovereign of Tonga (Observed)", + "1993-07-05": "Birthday of the Reigning Sovereign of Tonga (observed)", "1993-11-04": "Constitution Day", "1993-12-04": "Anniversary of the Coronation of HM King George Tupou I", "1993-12-25": "Christmas Day", @@ -68,18 +68,18 @@ "1994-07-04": "Birthday of the Reigning Sovereign of Tonga", "1994-11-04": "Constitution Day", "1994-12-04": "Anniversary of the Coronation of HM King George Tupou I", - "1994-12-05": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "1994-12-05": "Anniversary of the Coronation of HM King George Tupou I (observed)", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Boxing Day (Observed)", + "1994-12-27": "Boxing Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-04-25": "Anzac Day", "1995-05-04": "Birthday of the Heir to the Crown of Tonga", "1995-06-04": "Emancipation Day", - "1995-06-05": "Emancipation Day (Observed)", + "1995-06-05": "Emancipation Day (observed)", "1995-07-04": "Birthday of the Reigning Sovereign of Tonga", "1995-11-04": "Constitution Day", "1995-12-04": "Anniversary of the Coronation of HM King George Tupou I", @@ -101,7 +101,7 @@ "1997-03-31": "Easter Monday", "1997-04-25": "Anzac Day", "1997-05-04": "Birthday of the Heir to the Crown of Tonga", - "1997-05-05": "Birthday of the Heir to the Crown of Tonga (Observed)", + "1997-05-05": "Birthday of the Heir to the Crown of Tonga (observed)", "1997-06-04": "Emancipation Day", "1997-07-04": "Birthday of the Reigning Sovereign of Tonga", "1997-11-04": "Constitution Day", @@ -123,11 +123,11 @@ "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", "1999-04-25": "Anzac Day", - "1999-04-26": "Anzac Day (Observed)", + "1999-04-26": "Anzac Day (observed)", "1999-05-04": "Birthday of the Heir to the Crown of Tonga", "1999-06-04": "Emancipation Day", "1999-07-04": "Birthday of the Reigning Sovereign of Tonga", - "1999-07-05": "Birthday of the Reigning Sovereign of Tonga (Observed)", + "1999-07-05": "Birthday of the Reigning Sovereign of Tonga (observed)", "1999-11-04": "Constitution Day", "1999-12-04": "Anniversary of the Coronation of HM King George Tupou I", "1999-12-25": "Christmas Day", @@ -138,7 +138,7 @@ "2000-04-25": "Anzac Day", "2000-05-04": "Birthday of the Heir to the Crown of Tonga", "2000-06-04": "Emancipation Day", - "2000-06-05": "Emancipation Day (Observed)", + "2000-06-05": "Emancipation Day (observed)", "2000-07-04": "Birthday of the Reigning Sovereign of Tonga", "2000-11-04": "Constitution Day", "2000-12-04": "Anniversary of the Coronation of HM King George Tupou I", @@ -152,7 +152,7 @@ "2001-06-04": "Emancipation Day", "2001-07-04": "Birthday of the Reigning Sovereign of Tonga", "2001-11-04": "Constitution Day", - "2001-11-05": "Constitution Day (Observed)", + "2001-11-05": "Constitution Day (observed)", "2001-12-04": "Anniversary of the Coronation of HM King George Tupou I", "2001-12-25": "Christmas Day", "2001-12-26": "Boxing Day", @@ -172,7 +172,7 @@ "2003-04-21": "Easter Monday", "2003-04-25": "Anzac Day", "2003-05-04": "Birthday of the Heir to the Crown of Tonga", - "2003-05-05": "Birthday of the Heir to the Crown of Tonga (Observed)", + "2003-05-05": "Birthday of the Heir to the Crown of Tonga (observed)", "2003-06-04": "Emancipation Day", "2003-07-04": "Birthday of the Reigning Sovereign of Tonga", "2003-11-04": "Constitution Day", @@ -183,11 +183,11 @@ "2004-04-09": "Good Friday", "2004-04-12": "Easter Monday", "2004-04-25": "Anzac Day", - "2004-04-26": "Anzac Day (Observed)", + "2004-04-26": "Anzac Day (observed)", "2004-05-04": "Birthday of the Heir to the Crown of Tonga", "2004-06-04": "Emancipation Day", "2004-07-04": "Birthday of the Reigning Sovereign of Tonga", - "2004-07-05": "Birthday of the Reigning Sovereign of Tonga (Observed)", + "2004-07-05": "Birthday of the Reigning Sovereign of Tonga (observed)", "2004-11-04": "Constitution Day", "2004-12-04": "Anniversary of the Coronation of HM King George Tupou I", "2004-12-25": "Christmas Day", @@ -201,18 +201,18 @@ "2005-07-04": "Birthday of the Reigning Sovereign of Tonga", "2005-11-04": "Constitution Day", "2005-12-04": "Anniversary of the Coronation of HM King George Tupou I", - "2005-12-05": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2005-12-05": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Boxing Day (Observed)", + "2005-12-27": "Boxing Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-04-25": "Anzac Day", "2006-05-04": "Birthday of the Heir to the Crown of Tonga", "2006-06-04": "Emancipation Day", - "2006-06-05": "Emancipation Day (Observed)", + "2006-06-05": "Emancipation Day (observed)", "2006-07-04": "Birthday of the Reigning Sovereign of Tonga", "2006-11-04": "Constitution Day", "2006-12-04": "Anniversary of the Coronation of HM King George Tupou I", @@ -226,7 +226,7 @@ "2007-06-04": "Emancipation Day", "2007-07-12": "Birthday of the Heir to the Crown of Tonga", "2007-11-04": "Constitution Day", - "2007-11-05": "Constitution Day (Observed)", + "2007-11-05": "Constitution Day (observed)", "2007-12-04": "Anniversary of the Coronation of HM King George Tupou I", "2007-12-25": "Christmas Day", "2007-12-26": "Boxing Day", @@ -235,7 +235,7 @@ "2008-03-24": "Easter Monday", "2008-04-25": "Anzac Day", "2008-05-04": "Birthday of the Reigning Sovereign of Tonga", - "2008-05-05": "Birthday of the Reigning Sovereign of Tonga (Observed)", + "2008-05-05": "Birthday of the Reigning Sovereign of Tonga (observed)", "2008-06-04": "Emancipation Day", "2008-07-12": "Birthday of the Heir to the Crown of Tonga", "2008-08-01": "Anniversary of the Coronation Day of the reigning Sovereign of Tonga", @@ -250,7 +250,7 @@ "2009-05-04": "Birthday of the Reigning Sovereign of Tonga", "2009-06-04": "Emancipation Day", "2009-07-12": "Birthday of the Heir to the Crown of Tonga", - "2009-07-13": "Birthday of the Heir to the Crown of Tonga (Observed)", + "2009-07-13": "Birthday of the Heir to the Crown of Tonga (observed)", "2009-08-01": "Anniversary of the Coronation Day of the reigning Sovereign of Tonga", "2009-11-04": "Constitution Day", "2009-12-04": "Anniversary of the Coronation of HM King George Tupou I", @@ -260,90 +260,90 @@ "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", "2010-04-25": "Anzac Day", - "2010-04-26": "Anzac Day (Observed)", + "2010-04-26": "Anzac Day (observed)", "2010-05-04": "Birthday of the Reigning Sovereign of Tonga", - "2010-06-07": "Emancipation Day (Observed)", + "2010-06-07": "Emancipation Day (observed)", "2010-07-12": "Birthday of the Heir to the Crown of Tonga", - "2010-08-02": "Anniversary of the Coronation Day of the reigning Sovereign of Tonga (Observed)", - "2010-11-08": "Constitution Day (Observed)", - "2010-12-06": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2010-08-02": "Anniversary of the Coronation Day of the reigning Sovereign of Tonga (observed)", + "2010-11-08": "Constitution Day (observed)", + "2010-12-06": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", "2011-01-01": "New Year's Day", "2011-04-22": "Good Friday", "2011-04-25": "Anzac Day; Easter Monday", - "2011-05-02": "Birthday of the Reigning Sovereign of Tonga (Observed)", - "2011-06-06": "Emancipation Day (Observed)", - "2011-07-11": "Birthday of the Heir to the Crown of Tonga (Observed)", + "2011-05-02": "Birthday of the Reigning Sovereign of Tonga (observed)", + "2011-06-06": "Emancipation Day (observed)", + "2011-07-11": "Birthday of the Heir to the Crown of Tonga (observed)", "2011-08-01": "Anniversary of the Coronation Day of the reigning Sovereign of Tonga", - "2011-11-07": "Constitution Day (Observed)", - "2011-12-05": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2011-11-07": "Constitution Day (observed)", + "2011-12-05": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-04-25": "Anzac Day", "2012-06-04": "Emancipation Day", "2012-09-17": "Birthday of the Heir to the Crown of Tonga", - "2012-11-05": "Constitution Day (Observed)", - "2012-12-03": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2012-11-05": "Constitution Day (observed)", + "2012-12-03": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", "2013-04-25": "Anzac Day", - "2013-06-03": "Emancipation Day (Observed)", + "2013-06-03": "Emancipation Day (observed)", "2013-07-04": "Birthday of the Reigning Sovereign of Tonga", "2013-09-17": "Birthday of the Heir to the Crown of Tonga", "2013-11-04": "Constitution Day", - "2013-12-02": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2013-12-02": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", "2014-04-18": "Good Friday", "2014-04-21": "Easter Monday", "2014-04-25": "Anzac Day", - "2014-06-02": "Emancipation Day (Observed)", + "2014-06-02": "Emancipation Day (observed)", "2014-07-04": "Birthday of the Reigning Sovereign of Tonga", "2014-09-17": "Birthday of the Heir to the Crown of Tonga", - "2014-11-03": "Constitution Day (Observed)", - "2014-12-08": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2014-11-03": "Constitution Day (observed)", + "2014-12-08": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2015-01-01": "New Year's Day", "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-04-25": "Anzac Day", - "2015-06-08": "Emancipation Day (Observed)", + "2015-06-08": "Emancipation Day (observed)", "2015-07-04": "Birthday of the Reigning Sovereign of Tonga", "2015-09-17": "Birthday of the Heir to the Crown of Tonga", - "2015-11-02": "Constitution Day (Observed)", - "2015-12-07": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2015-11-02": "Constitution Day (observed)", + "2015-12-07": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-04-25": "Anzac Day", - "2016-06-06": "Emancipation Day (Observed)", + "2016-06-06": "Emancipation Day (observed)", "2016-07-04": "Birthday of the Reigning Sovereign of Tonga", "2016-09-17": "Birthday of the Heir to the Crown of Tonga", - "2016-11-07": "Constitution Day (Observed)", - "2016-12-05": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2016-11-07": "Constitution Day (observed)", + "2016-12-05": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", "2017-01-01": "New Year's Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-04-25": "Anzac Day", - "2017-06-05": "Emancipation Day (Observed)", + "2017-06-05": "Emancipation Day (observed)", "2017-07-04": "Birthday of the Reigning Sovereign of Tonga", "2017-09-17": "Birthday of the Heir to the Crown of Tonga", - "2017-09-18": "Birthday of the Heir to the Crown of Tonga (Observed)", - "2017-11-06": "Constitution Day (Observed)", + "2017-09-18": "Birthday of the Heir to the Crown of Tonga (observed)", + "2017-11-06": "Constitution Day (observed)", "2017-11-29": "Tonga Rugby Public Holiday", "2017-12-04": "Anniversary of the Coronation of HM King George Tupou I", "2017-12-25": "Christmas Day", @@ -355,67 +355,67 @@ "2018-06-04": "Emancipation Day", "2018-07-04": "Birthday of the Reigning Sovereign of Tonga", "2018-09-17": "Birthday of the Heir to the Crown of Tonga", - "2018-11-05": "Constitution Day (Observed)", - "2018-12-03": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2018-11-05": "Constitution Day (observed)", + "2018-12-03": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-04-19": "Good Friday", "2019-04-22": "Easter Monday", "2019-04-25": "Anzac Day", - "2019-06-03": "Emancipation Day (Observed)", + "2019-06-03": "Emancipation Day (observed)", "2019-07-04": "Birthday of the Reigning Sovereign of Tonga", "2019-09-17": "Birthday of the Heir to the Crown of Tonga", "2019-09-19": "State Funeral of 'Akilisi Pohiva", "2019-11-04": "Constitution Day", "2019-11-15": "Tonga Rugby Public Holiday", - "2019-12-02": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2019-12-02": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-04-25": "Anzac Day", - "2020-06-08": "Emancipation Day (Observed)", + "2020-06-08": "Emancipation Day (observed)", "2020-07-04": "Birthday of the Reigning Sovereign of Tonga", "2020-09-17": "Birthday of the Heir to the Crown of Tonga", - "2020-11-02": "Constitution Day (Observed)", - "2020-12-07": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2020-11-02": "Constitution Day (observed)", + "2020-12-07": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-04-25": "Anzac Day", - "2021-06-07": "Emancipation Day (Observed)", + "2021-06-07": "Emancipation Day (observed)", "2021-07-04": "Birthday of the Reigning Sovereign of Tonga", - "2021-07-05": "Birthday of the Reigning Sovereign of Tonga (Observed)", + "2021-07-05": "Birthday of the Reigning Sovereign of Tonga (observed)", "2021-09-17": "Birthday of the Heir to the Crown of Tonga", - "2021-11-08": "Constitution Day (Observed)", - "2021-12-06": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2021-11-08": "Constitution Day (observed)", + "2021-12-06": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-04-25": "Anzac Day", - "2022-06-06": "Emancipation Day (Observed)", + "2022-06-06": "Emancipation Day (observed)", "2022-07-04": "Birthday of the Reigning Sovereign of Tonga", "2022-09-17": "Birthday of the Heir to the Crown of Tonga", - "2022-11-07": "Constitution Day (Observed)", - "2022-12-05": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2022-11-07": "Constitution Day (observed)", + "2022-12-05": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", "2023-01-01": "New Year's Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-04-25": "Anzac Day", - "2023-06-05": "Emancipation Day (Observed)", + "2023-06-05": "Emancipation Day (observed)", "2023-07-04": "Birthday of the Reigning Sovereign of Tonga", "2023-09-17": "Birthday of the Heir to the Crown of Tonga", - "2023-09-18": "Birthday of the Heir to the Crown of Tonga (Observed)", - "2023-11-06": "Constitution Day (Observed)", + "2023-09-18": "Birthday of the Heir to the Crown of Tonga (observed)", + "2023-11-06": "Constitution Day (observed)", "2023-12-04": "Anniversary of the Coronation of HM King George Tupou I", "2023-12-25": "Christmas Day", "2023-12-26": "Boxing Day", @@ -423,56 +423,56 @@ "2024-03-29": "Good Friday", "2024-04-01": "Easter Monday", "2024-04-25": "Anzac Day", - "2024-06-03": "Emancipation Day (Observed)", + "2024-06-03": "Emancipation Day (observed)", "2024-07-04": "Birthday of the Reigning Sovereign of Tonga", "2024-09-17": "Birthday of the Heir to the Crown of Tonga", "2024-11-04": "Constitution Day", - "2024-12-02": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2024-12-02": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", "2025-04-18": "Good Friday", "2025-04-21": "Easter Monday", "2025-04-25": "Anzac Day", - "2025-06-02": "Emancipation Day (Observed)", + "2025-06-02": "Emancipation Day (observed)", "2025-07-04": "Birthday of the Reigning Sovereign of Tonga", "2025-09-17": "Birthday of the Heir to the Crown of Tonga", - "2025-11-03": "Constitution Day (Observed)", - "2025-12-08": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2025-11-03": "Constitution Day (observed)", + "2025-12-08": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2026-01-01": "New Year's Day", "2026-04-03": "Good Friday", "2026-04-06": "Easter Monday", "2026-04-25": "Anzac Day", - "2026-06-08": "Emancipation Day (Observed)", + "2026-06-08": "Emancipation Day (observed)", "2026-07-04": "Birthday of the Reigning Sovereign of Tonga", "2026-09-17": "Birthday of the Heir to the Crown of Tonga", - "2026-11-02": "Constitution Day (Observed)", - "2026-12-07": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2026-11-02": "Constitution Day (observed)", + "2026-12-07": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", "2027-04-25": "Anzac Day", - "2027-06-07": "Emancipation Day (Observed)", + "2027-06-07": "Emancipation Day (observed)", "2027-07-04": "Birthday of the Reigning Sovereign of Tonga", - "2027-07-05": "Birthday of the Reigning Sovereign of Tonga (Observed)", + "2027-07-05": "Birthday of the Reigning Sovereign of Tonga (observed)", "2027-09-17": "Birthday of the Heir to the Crown of Tonga", - "2027-11-08": "Constitution Day (Observed)", - "2027-12-06": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2027-11-08": "Constitution Day (observed)", + "2027-12-06": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", "2028-01-01": "New Year's Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-04-25": "Anzac Day", - "2028-06-05": "Emancipation Day (Observed)", + "2028-06-05": "Emancipation Day (observed)", "2028-07-04": "Birthday of the Reigning Sovereign of Tonga", "2028-09-17": "Birthday of the Heir to the Crown of Tonga", - "2028-09-18": "Birthday of the Heir to the Crown of Tonga (Observed)", - "2028-11-06": "Constitution Day (Observed)", + "2028-09-18": "Birthday of the Heir to the Crown of Tonga (observed)", + "2028-11-06": "Constitution Day (observed)", "2028-12-04": "Anniversary of the Coronation of HM King George Tupou I", "2028-12-25": "Christmas Day", "2028-12-26": "Boxing Day", @@ -483,64 +483,64 @@ "2029-06-04": "Emancipation Day", "2029-07-04": "Birthday of the Reigning Sovereign of Tonga", "2029-09-17": "Birthday of the Heir to the Crown of Tonga", - "2029-11-05": "Constitution Day (Observed)", - "2029-12-03": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2029-11-05": "Constitution Day (observed)", + "2029-12-03": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", "2030-04-25": "Anzac Day", - "2030-06-03": "Emancipation Day (Observed)", + "2030-06-03": "Emancipation Day (observed)", "2030-07-04": "Birthday of the Reigning Sovereign of Tonga", "2030-09-17": "Birthday of the Heir to the Crown of Tonga", "2030-11-04": "Constitution Day", - "2030-12-02": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2030-12-02": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", "2031-04-11": "Good Friday", "2031-04-14": "Easter Monday", "2031-04-25": "Anzac Day", - "2031-06-02": "Emancipation Day (Observed)", + "2031-06-02": "Emancipation Day (observed)", "2031-07-04": "Birthday of the Reigning Sovereign of Tonga", "2031-09-17": "Birthday of the Heir to the Crown of Tonga", - "2031-11-03": "Constitution Day (Observed)", - "2031-12-08": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2031-11-03": "Constitution Day (observed)", + "2031-12-08": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2032-01-01": "New Year's Day", "2032-03-26": "Good Friday", "2032-03-29": "Easter Monday", "2032-04-25": "Anzac Day", - "2032-06-07": "Emancipation Day (Observed)", + "2032-06-07": "Emancipation Day (observed)", "2032-07-04": "Birthday of the Reigning Sovereign of Tonga", - "2032-07-05": "Birthday of the Reigning Sovereign of Tonga (Observed)", + "2032-07-05": "Birthday of the Reigning Sovereign of Tonga (observed)", "2032-09-17": "Birthday of the Heir to the Crown of Tonga", - "2032-11-08": "Constitution Day (Observed)", - "2032-12-06": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2032-11-08": "Constitution Day (observed)", + "2032-12-06": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", "2033-01-01": "New Year's Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-04-25": "Anzac Day", - "2033-06-06": "Emancipation Day (Observed)", + "2033-06-06": "Emancipation Day (observed)", "2033-07-04": "Birthday of the Reigning Sovereign of Tonga", "2033-09-17": "Birthday of the Heir to the Crown of Tonga", - "2033-11-07": "Constitution Day (Observed)", - "2033-12-05": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2033-11-07": "Constitution Day (observed)", + "2033-12-05": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", "2034-01-01": "New Year's Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-04-25": "Anzac Day", - "2034-06-05": "Emancipation Day (Observed)", + "2034-06-05": "Emancipation Day (observed)", "2034-07-04": "Birthday of the Reigning Sovereign of Tonga", "2034-09-17": "Birthday of the Heir to the Crown of Tonga", - "2034-09-18": "Birthday of the Heir to the Crown of Tonga (Observed)", - "2034-11-06": "Constitution Day (Observed)", + "2034-09-18": "Birthday of the Heir to the Crown of Tonga (observed)", + "2034-11-06": "Constitution Day (observed)", "2034-12-04": "Anniversary of the Coronation of HM King George Tupou I", "2034-12-25": "Christmas Day", "2034-12-26": "Boxing Day", @@ -551,53 +551,53 @@ "2035-06-04": "Emancipation Day", "2035-07-04": "Birthday of the Reigning Sovereign of Tonga", "2035-09-17": "Birthday of the Heir to the Crown of Tonga", - "2035-11-05": "Constitution Day (Observed)", - "2035-12-03": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2035-11-05": "Constitution Day (observed)", + "2035-12-03": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Boxing Day", "2036-01-01": "New Year's Day", "2036-04-11": "Good Friday", "2036-04-14": "Easter Monday", "2036-04-25": "Anzac Day", - "2036-06-02": "Emancipation Day (Observed)", + "2036-06-02": "Emancipation Day (observed)", "2036-07-04": "Birthday of the Reigning Sovereign of Tonga", "2036-09-17": "Birthday of the Heir to the Crown of Tonga", - "2036-11-03": "Constitution Day (Observed)", - "2036-12-08": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2036-11-03": "Constitution Day (observed)", + "2036-12-08": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2037-01-01": "New Year's Day", "2037-04-03": "Good Friday", "2037-04-06": "Easter Monday", "2037-04-25": "Anzac Day", - "2037-06-08": "Emancipation Day (Observed)", + "2037-06-08": "Emancipation Day (observed)", "2037-07-04": "Birthday of the Reigning Sovereign of Tonga", "2037-09-17": "Birthday of the Heir to the Crown of Tonga", - "2037-11-02": "Constitution Day (Observed)", - "2037-12-07": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2037-11-02": "Constitution Day (observed)", + "2037-12-07": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-04-25": "Anzac Day", "2038-04-26": "Easter Monday", - "2038-06-07": "Emancipation Day (Observed)", + "2038-06-07": "Emancipation Day (observed)", "2038-07-04": "Birthday of the Reigning Sovereign of Tonga", - "2038-07-05": "Birthday of the Reigning Sovereign of Tonga (Observed)", + "2038-07-05": "Birthday of the Reigning Sovereign of Tonga (observed)", "2038-09-17": "Birthday of the Heir to the Crown of Tonga", - "2038-11-08": "Constitution Day (Observed)", - "2038-12-06": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2038-11-08": "Constitution Day (observed)", + "2038-12-06": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", "2039-01-01": "New Year's Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-04-25": "Anzac Day", - "2039-06-06": "Emancipation Day (Observed)", + "2039-06-06": "Emancipation Day (observed)", "2039-07-04": "Birthday of the Reigning Sovereign of Tonga", "2039-09-17": "Birthday of the Heir to the Crown of Tonga", - "2039-11-07": "Constitution Day (Observed)", - "2039-12-05": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2039-11-07": "Constitution Day (observed)", + "2039-12-05": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", "2040-01-01": "New Year's Day", @@ -607,63 +607,63 @@ "2040-06-04": "Emancipation Day", "2040-07-04": "Birthday of the Reigning Sovereign of Tonga", "2040-09-17": "Birthday of the Heir to the Crown of Tonga", - "2040-11-05": "Constitution Day (Observed)", - "2040-12-03": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2040-11-05": "Constitution Day (observed)", + "2040-12-03": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", "2041-04-25": "Anzac Day", - "2041-06-03": "Emancipation Day (Observed)", + "2041-06-03": "Emancipation Day (observed)", "2041-07-04": "Birthday of the Reigning Sovereign of Tonga", "2041-09-17": "Birthday of the Heir to the Crown of Tonga", "2041-11-04": "Constitution Day", - "2041-12-02": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2041-12-02": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", "2042-04-04": "Good Friday", "2042-04-07": "Easter Monday", "2042-04-25": "Anzac Day", - "2042-06-02": "Emancipation Day (Observed)", + "2042-06-02": "Emancipation Day (observed)", "2042-07-04": "Birthday of the Reigning Sovereign of Tonga", "2042-09-17": "Birthday of the Heir to the Crown of Tonga", - "2042-11-03": "Constitution Day (Observed)", - "2042-12-08": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2042-11-03": "Constitution Day (observed)", + "2042-12-08": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2043-01-01": "New Year's Day", "2043-03-27": "Good Friday", "2043-03-30": "Easter Monday", "2043-04-25": "Anzac Day", - "2043-06-08": "Emancipation Day (Observed)", + "2043-06-08": "Emancipation Day (observed)", "2043-07-04": "Birthday of the Reigning Sovereign of Tonga", "2043-09-17": "Birthday of the Heir to the Crown of Tonga", - "2043-11-02": "Constitution Day (Observed)", - "2043-12-07": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2043-11-02": "Constitution Day (observed)", + "2043-12-07": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-04-25": "Anzac Day", - "2044-06-06": "Emancipation Day (Observed)", + "2044-06-06": "Emancipation Day (observed)", "2044-07-04": "Birthday of the Reigning Sovereign of Tonga", "2044-09-17": "Birthday of the Heir to the Crown of Tonga", - "2044-11-07": "Constitution Day (Observed)", - "2044-12-05": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2044-11-07": "Constitution Day (observed)", + "2044-12-05": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", "2045-01-01": "New Year's Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-04-25": "Anzac Day", - "2045-06-05": "Emancipation Day (Observed)", + "2045-06-05": "Emancipation Day (observed)", "2045-07-04": "Birthday of the Reigning Sovereign of Tonga", "2045-09-17": "Birthday of the Heir to the Crown of Tonga", - "2045-09-18": "Birthday of the Heir to the Crown of Tonga (Observed)", - "2045-11-06": "Constitution Day (Observed)", + "2045-09-18": "Birthday of the Heir to the Crown of Tonga (observed)", + "2045-11-06": "Constitution Day (observed)", "2045-12-04": "Anniversary of the Coronation of HM King George Tupou I", "2045-12-25": "Christmas Day", "2045-12-26": "Boxing Day", @@ -674,53 +674,53 @@ "2046-06-04": "Emancipation Day", "2046-07-04": "Birthday of the Reigning Sovereign of Tonga", "2046-09-17": "Birthday of the Heir to the Crown of Tonga", - "2046-11-05": "Constitution Day (Observed)", - "2046-12-03": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2046-11-05": "Constitution Day (observed)", + "2046-12-03": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", "2047-04-25": "Anzac Day", - "2047-06-03": "Emancipation Day (Observed)", + "2047-06-03": "Emancipation Day (observed)", "2047-07-04": "Birthday of the Reigning Sovereign of Tonga", "2047-09-17": "Birthday of the Heir to the Crown of Tonga", "2047-11-04": "Constitution Day", - "2047-12-02": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2047-12-02": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", "2048-04-03": "Good Friday", "2048-04-06": "Easter Monday", "2048-04-25": "Anzac Day", - "2048-06-08": "Emancipation Day (Observed)", + "2048-06-08": "Emancipation Day (observed)", "2048-07-04": "Birthday of the Reigning Sovereign of Tonga", "2048-09-17": "Birthday of the Heir to the Crown of Tonga", - "2048-11-02": "Constitution Day (Observed)", - "2048-12-07": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2048-11-02": "Constitution Day (observed)", + "2048-12-07": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-04-25": "Anzac Day", - "2049-06-07": "Emancipation Day (Observed)", + "2049-06-07": "Emancipation Day (observed)", "2049-07-04": "Birthday of the Reigning Sovereign of Tonga", - "2049-07-05": "Birthday of the Reigning Sovereign of Tonga (Observed)", + "2049-07-05": "Birthday of the Reigning Sovereign of Tonga (observed)", "2049-09-17": "Birthday of the Heir to the Crown of Tonga", - "2049-11-08": "Constitution Day (Observed)", - "2049-12-06": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2049-11-08": "Constitution Day (observed)", + "2049-12-06": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", "2050-01-01": "New Year's Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-04-25": "Anzac Day", - "2050-06-06": "Emancipation Day (Observed)", + "2050-06-06": "Emancipation Day (observed)", "2050-07-04": "Birthday of the Reigning Sovereign of Tonga", "2050-09-17": "Birthday of the Heir to the Crown of Tonga", - "2050-11-07": "Constitution Day (Observed)", - "2050-12-05": "Anniversary of the Coronation of HM King George Tupou I (Observed)", + "2050-11-07": "Constitution Day (observed)", + "2050-12-05": "Anniversary of the Coronation of HM King George Tupou I (observed)", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day" } diff --git a/snapshots/countries/TW_COMMON.json b/snapshots/countries/TW_COMMON.json index e4b72f181..3520f47a5 100644 --- a/snapshots/countries/TW_COMMON.json +++ b/snapshots/countries/TW_COMMON.json @@ -596,17 +596,17 @@ "2015-02-20": "Chinese New Year", "2015-02-21": "Chinese New Year", "2015-02-23": "Chinese New Year", - "2015-02-27": "Peace Memorial Day (Observed)", + "2015-02-27": "Peace Memorial Day (observed)", "2015-02-28": "Peace Memorial Day", - "2015-04-03": "Children's Day (Observed)", + "2015-04-03": "Children's Day (observed)", "2015-04-04": "Children's Day", "2015-04-05": "Tomb Sweeping Day", - "2015-04-06": "Tomb Sweeping Day (Observed)", - "2015-06-19": "Dragon Boat Festival (Observed)", + "2015-04-06": "Tomb Sweeping Day (observed)", + "2015-06-19": "Dragon Boat Festival (observed)", "2015-06-20": "Dragon Boat Festival", "2015-09-27": "Mid-Autumn Festival", - "2015-09-28": "Mid-Autumn Festival (Observed)", - "2015-10-09": "National Day (Observed)", + "2015-09-28": "Mid-Autumn Festival (observed)", + "2015-10-09": "National Day (observed)", "2015-10-10": "National Day", "2016-01-01": "Founding Day of the Republic of China", "2016-02-07": "Chinese New Year's Eve", @@ -615,13 +615,13 @@ "2016-02-10": "Chinese New Year", "2016-02-11": "Chinese New Year", "2016-02-28": "Peace Memorial Day", - "2016-02-29": "Peace Memorial Day (Observed)", + "2016-02-29": "Peace Memorial Day (observed)", "2016-04-04": "Children's Day; Tomb Sweeping Day", "2016-06-09": "Dragon Boat Festival", "2016-09-15": "Mid-Autumn Festival", "2016-10-10": "National Day", "2017-01-01": "Founding Day of the Republic of China", - "2017-01-02": "Founding Day of the Republic of China (Observed)", + "2017-01-02": "Founding Day of the Republic of China (observed)", "2017-01-27": "Chinese New Year's Eve", "2017-01-28": "Chinese New Year", "2017-01-29": "Chinese New Year", @@ -665,12 +665,12 @@ "2020-01-28": "Chinese New Year", "2020-01-29": "Chinese New Year", "2020-02-28": "Peace Memorial Day", - "2020-04-02": "Tomb Sweeping Day (Observed)", - "2020-04-03": "Children's Day (Observed)", + "2020-04-02": "Tomb Sweeping Day (observed)", + "2020-04-03": "Children's Day (observed)", "2020-04-04": "Children's Day; Tomb Sweeping Day", "2020-06-25": "Dragon Boat Festival", "2020-10-01": "Mid-Autumn Festival", - "2020-10-09": "National Day (Observed)", + "2020-10-09": "National Day (observed)", "2020-10-10": "National Day", "2021-01-01": "Founding Day of the Republic of China", "2021-02-11": "Chinese New Year's Eve", @@ -680,15 +680,15 @@ "2021-02-15": "Chinese New Year", "2021-02-16": "Chinese New Year", "2021-02-28": "Peace Memorial Day", - "2021-03-01": "Peace Memorial Day (Observed)", + "2021-03-01": "Peace Memorial Day (observed)", "2021-04-04": "Children's Day; Tomb Sweeping Day", - "2021-04-05": "Children's Day (Observed)", - "2021-04-06": "Tomb Sweeping Day (Observed)", + "2021-04-05": "Children's Day (observed)", + "2021-04-06": "Tomb Sweeping Day (observed)", "2021-06-14": "Dragon Boat Festival", "2021-09-21": "Mid-Autumn Festival", "2021-10-10": "National Day", - "2021-10-11": "National Day (Observed)", - "2021-12-31": "Founding Day of the Republic of China (Observed)", + "2021-10-11": "National Day (observed)", + "2021-12-31": "Founding Day of the Republic of China (observed)", "2022-01-01": "Founding Day of the Republic of China", "2022-01-31": "Chinese New Year's Eve", "2022-02-01": "Chinese New Year", @@ -698,11 +698,11 @@ "2022-04-04": "Children's Day", "2022-04-05": "Tomb Sweeping Day", "2022-06-03": "Dragon Boat Festival", - "2022-09-09": "Mid-Autumn Festival (Observed)", + "2022-09-09": "Mid-Autumn Festival (observed)", "2022-09-10": "Mid-Autumn Festival", "2022-10-10": "National Day", "2023-01-01": "Founding Day of the Republic of China", - "2023-01-02": "Founding Day of the Republic of China (Observed)", + "2023-01-02": "Founding Day of the Republic of China (observed)", "2023-01-21": "Chinese New Year's Eve", "2023-01-22": "Chinese New Year", "2023-01-23": "Chinese New Year", @@ -734,7 +734,7 @@ "2025-01-31": "Chinese New Year", "2025-02-28": "Peace Memorial Day", "2025-04-04": "Children's Day; Tomb Sweeping Day", - "2025-05-30": "Dragon Boat Festival (Observed)", + "2025-05-30": "Dragon Boat Festival (observed)", "2025-05-31": "Dragon Boat Festival", "2025-10-06": "Mid-Autumn Festival", "2025-10-10": "National Day", @@ -743,15 +743,15 @@ "2026-02-17": "Chinese New Year", "2026-02-18": "Chinese New Year", "2026-02-19": "Chinese New Year", - "2026-02-27": "Peace Memorial Day (Observed)", + "2026-02-27": "Peace Memorial Day (observed)", "2026-02-28": "Peace Memorial Day", - "2026-04-03": "Children's Day (Observed)", + "2026-04-03": "Children's Day (observed)", "2026-04-04": "Children's Day", "2026-04-05": "Tomb Sweeping Day", - "2026-04-06": "Tomb Sweeping Day (Observed)", + "2026-04-06": "Tomb Sweeping Day (observed)", "2026-06-19": "Dragon Boat Festival", "2026-09-25": "Mid-Autumn Festival", - "2026-10-09": "National Day (Observed)", + "2026-10-09": "National Day (observed)", "2026-10-10": "National Day", "2027-01-01": "Founding Day of the Republic of China", "2027-02-05": "Chinese New Year's Eve", @@ -761,15 +761,15 @@ "2027-02-09": "Chinese New Year", "2027-02-10": "Chinese New Year", "2027-02-28": "Peace Memorial Day", - "2027-03-01": "Peace Memorial Day (Observed)", + "2027-03-01": "Peace Memorial Day (observed)", "2027-04-04": "Children's Day", "2027-04-05": "Tomb Sweeping Day", - "2027-04-06": "Children's Day (Observed)", + "2027-04-06": "Children's Day (observed)", "2027-06-09": "Dragon Boat Festival", "2027-09-15": "Mid-Autumn Festival", "2027-10-10": "National Day", - "2027-10-11": "National Day (Observed)", - "2027-12-31": "Founding Day of the Republic of China (Observed)", + "2027-10-11": "National Day (observed)", + "2027-12-31": "Founding Day of the Republic of China (observed)", "2028-01-01": "Founding Day of the Republic of China", "2028-01-25": "Chinese New Year's Eve", "2028-01-26": "Chinese New Year", @@ -778,7 +778,7 @@ "2028-02-28": "Peace Memorial Day", "2028-04-04": "Children's Day; Tomb Sweeping Day", "2028-05-28": "Dragon Boat Festival", - "2028-05-29": "Dragon Boat Festival (Observed)", + "2028-05-29": "Dragon Boat Festival (observed)", "2028-10-03": "Mid-Autumn Festival", "2028-10-10": "National Day", "2029-01-01": "Founding Day of the Republic of China", @@ -788,9 +788,9 @@ "2029-02-15": "Chinese New Year", "2029-02-28": "Peace Memorial Day", "2029-04-04": "Children's Day; Tomb Sweeping Day", - "2029-06-15": "Dragon Boat Festival (Observed)", + "2029-06-15": "Dragon Boat Festival (observed)", "2029-06-16": "Dragon Boat Festival", - "2029-09-21": "Mid-Autumn Festival (Observed)", + "2029-09-21": "Mid-Autumn Festival (observed)", "2029-09-22": "Mid-Autumn Festival", "2029-10-10": "National Day", "2030-01-01": "Founding Day of the Republic of China", @@ -813,7 +813,7 @@ "2031-01-25": "Chinese New Year", "2031-01-27": "Chinese New Year", "2031-02-28": "Peace Memorial Day", - "2031-04-03": "Tomb Sweeping Day (Observed)", + "2031-04-03": "Tomb Sweeping Day (observed)", "2031-04-04": "Children's Day", "2031-04-05": "Tomb Sweeping Day", "2031-06-24": "Dragon Boat Festival", @@ -824,18 +824,18 @@ "2032-02-11": "Chinese New Year", "2032-02-12": "Chinese New Year", "2032-02-13": "Chinese New Year", - "2032-02-27": "Peace Memorial Day (Observed)", + "2032-02-27": "Peace Memorial Day (observed)", "2032-02-28": "Peace Memorial Day", "2032-04-04": "Children's Day; Tomb Sweeping Day", - "2032-04-05": "Children's Day (Observed)", - "2032-04-06": "Tomb Sweeping Day (Observed)", - "2032-06-11": "Dragon Boat Festival (Observed)", + "2032-04-05": "Children's Day (observed)", + "2032-04-06": "Tomb Sweeping Day (observed)", + "2032-06-11": "Dragon Boat Festival (observed)", "2032-06-12": "Dragon Boat Festival", "2032-09-19": "Mid-Autumn Festival", - "2032-09-20": "Mid-Autumn Festival (Observed)", + "2032-09-20": "Mid-Autumn Festival (observed)", "2032-10-10": "National Day", - "2032-10-11": "National Day (Observed)", - "2032-12-31": "Founding Day of the Republic of China (Observed)", + "2032-10-11": "National Day (observed)", + "2032-12-31": "Founding Day of the Republic of China (observed)", "2033-01-01": "Founding Day of the Republic of China", "2033-01-30": "Chinese New Year's Eve", "2033-01-31": "Chinese New Year", @@ -848,7 +848,7 @@ "2033-09-08": "Mid-Autumn Festival", "2033-10-10": "National Day", "2034-01-01": "Founding Day of the Republic of China", - "2034-01-02": "Founding Day of the Republic of China (Observed)", + "2034-01-02": "Founding Day of the Republic of China (observed)", "2034-02-18": "Chinese New Year's Eve", "2034-02-19": "Chinese New Year", "2034-02-20": "Chinese New Year", @@ -871,9 +871,9 @@ "2035-04-04": "Children's Day", "2035-04-05": "Tomb Sweeping Day", "2035-06-10": "Dragon Boat Festival", - "2035-06-11": "Dragon Boat Festival (Observed)", + "2035-06-11": "Dragon Boat Festival (observed)", "2035-09-16": "Mid-Autumn Festival", - "2035-09-17": "Mid-Autumn Festival (Observed)", + "2035-09-17": "Mid-Autumn Festival (observed)", "2035-10-10": "National Day", "2036-01-01": "Founding Day of the Republic of China", "2036-01-27": "Chinese New Year's Eve", @@ -884,7 +884,7 @@ "2036-02-28": "Peace Memorial Day", "2036-04-04": "Children's Day; Tomb Sweeping Day", "2036-05-30": "Dragon Boat Festival", - "2036-10-03": "Mid-Autumn Festival (Observed)", + "2036-10-03": "Mid-Autumn Festival (observed)", "2036-10-04": "Mid-Autumn Festival", "2036-10-10": "National Day", "2037-01-01": "Founding Day of the Republic of China", @@ -894,14 +894,14 @@ "2037-02-17": "Chinese New Year", "2037-02-18": "Chinese New Year", "2037-02-19": "Chinese New Year", - "2037-02-27": "Peace Memorial Day (Observed)", + "2037-02-27": "Peace Memorial Day (observed)", "2037-02-28": "Peace Memorial Day", - "2037-04-02": "Tomb Sweeping Day (Observed)", - "2037-04-03": "Children's Day (Observed)", + "2037-04-02": "Tomb Sweeping Day (observed)", + "2037-04-03": "Children's Day (observed)", "2037-04-04": "Children's Day; Tomb Sweeping Day", "2037-06-18": "Dragon Boat Festival", "2037-09-24": "Mid-Autumn Festival", - "2037-10-09": "National Day (Observed)", + "2037-10-09": "National Day (observed)", "2037-10-10": "National Day", "2038-01-01": "Founding Day of the Republic of China", "2038-02-03": "Chinese New Year's Eve", @@ -910,15 +910,15 @@ "2038-02-06": "Chinese New Year", "2038-02-08": "Chinese New Year", "2038-02-28": "Peace Memorial Day", - "2038-03-01": "Peace Memorial Day (Observed)", + "2038-03-01": "Peace Memorial Day (observed)", "2038-04-04": "Children's Day", "2038-04-05": "Tomb Sweeping Day", - "2038-04-06": "Children's Day (Observed)", + "2038-04-06": "Children's Day (observed)", "2038-06-07": "Dragon Boat Festival", "2038-09-13": "Mid-Autumn Festival", "2038-10-10": "National Day", - "2038-10-11": "National Day (Observed)", - "2038-12-31": "Founding Day of the Republic of China (Observed)", + "2038-10-11": "National Day (observed)", + "2038-12-31": "Founding Day of the Republic of China (observed)", "2039-01-01": "Founding Day of the Republic of China", "2039-01-23": "Chinese New Year's Eve", "2039-01-24": "Chinese New Year", @@ -930,10 +930,10 @@ "2039-04-05": "Tomb Sweeping Day", "2039-05-27": "Dragon Boat Festival", "2039-10-02": "Mid-Autumn Festival", - "2039-10-03": "Mid-Autumn Festival (Observed)", + "2039-10-03": "Mid-Autumn Festival (observed)", "2039-10-10": "National Day", "2040-01-01": "Founding Day of the Republic of China", - "2040-01-02": "Founding Day of the Republic of China (Observed)", + "2040-01-02": "Founding Day of the Republic of China (observed)", "2040-02-11": "Chinese New Year's Eve", "2040-02-12": "Chinese New Year", "2040-02-13": "Chinese New Year", @@ -963,28 +963,28 @@ "2042-01-23": "Chinese New Year", "2042-01-24": "Chinese New Year", "2042-02-28": "Peace Memorial Day", - "2042-04-03": "Tomb Sweeping Day (Observed)", + "2042-04-03": "Tomb Sweeping Day (observed)", "2042-04-04": "Children's Day", "2042-04-05": "Tomb Sweeping Day", "2042-06-22": "Dragon Boat Festival", - "2042-06-23": "Dragon Boat Festival (Observed)", + "2042-06-23": "Dragon Boat Festival (observed)", "2042-09-28": "Mid-Autumn Festival", - "2042-09-29": "Mid-Autumn Festival (Observed)", + "2042-09-29": "Mid-Autumn Festival (observed)", "2042-10-10": "National Day", "2043-01-01": "Founding Day of the Republic of China", "2043-02-09": "Chinese New Year's Eve", "2043-02-10": "Chinese New Year", "2043-02-11": "Chinese New Year", "2043-02-12": "Chinese New Year", - "2043-02-27": "Peace Memorial Day (Observed)", + "2043-02-27": "Peace Memorial Day (observed)", "2043-02-28": "Peace Memorial Day", - "2043-04-03": "Children's Day (Observed)", + "2043-04-03": "Children's Day (observed)", "2043-04-04": "Children's Day", "2043-04-05": "Tomb Sweeping Day", - "2043-04-06": "Tomb Sweeping Day (Observed)", + "2043-04-06": "Tomb Sweeping Day (observed)", "2043-06-11": "Dragon Boat Festival", "2043-09-17": "Mid-Autumn Festival", - "2043-10-09": "National Day (Observed)", + "2043-10-09": "National Day (observed)", "2043-10-10": "National Day", "2044-01-01": "Founding Day of the Republic of China", "2044-01-29": "Chinese New Year's Eve", @@ -994,13 +994,13 @@ "2044-02-02": "Chinese New Year", "2044-02-03": "Chinese New Year", "2044-02-28": "Peace Memorial Day", - "2044-02-29": "Peace Memorial Day (Observed)", + "2044-02-29": "Peace Memorial Day (observed)", "2044-04-04": "Children's Day; Tomb Sweeping Day", "2044-05-31": "Dragon Boat Festival", "2044-10-05": "Mid-Autumn Festival", "2044-10-10": "National Day", "2045-01-01": "Founding Day of the Republic of China", - "2045-01-02": "Founding Day of the Republic of China (Observed)", + "2045-01-02": "Founding Day of the Republic of China (observed)", "2045-02-16": "Chinese New Year's Eve", "2045-02-17": "Chinese New Year", "2045-02-18": "Chinese New Year", @@ -1021,7 +1021,7 @@ "2046-04-04": "Children's Day", "2046-04-05": "Tomb Sweeping Day", "2046-06-08": "Dragon Boat Festival", - "2046-09-14": "Mid-Autumn Festival (Observed)", + "2046-09-14": "Mid-Autumn Festival (observed)", "2046-09-15": "Mid-Autumn Festival", "2046-10-10": "National Day", "2047-01-01": "Founding Day of the Republic of China", @@ -1045,12 +1045,12 @@ "2048-02-17": "Chinese New Year", "2048-02-18": "Chinese New Year", "2048-02-28": "Peace Memorial Day", - "2048-04-02": "Tomb Sweeping Day (Observed)", - "2048-04-03": "Children's Day (Observed)", + "2048-04-02": "Tomb Sweeping Day (observed)", + "2048-04-03": "Children's Day (observed)", "2048-04-04": "Children's Day; Tomb Sweeping Day", "2048-06-15": "Dragon Boat Festival", "2048-09-22": "Mid-Autumn Festival", - "2048-10-09": "National Day (Observed)", + "2048-10-09": "National Day (observed)", "2048-10-10": "National Day", "2049-01-01": "Founding Day of the Republic of China", "2049-02-01": "Chinese New Year's Eve", @@ -1058,16 +1058,16 @@ "2049-02-03": "Chinese New Year", "2049-02-04": "Chinese New Year", "2049-02-28": "Peace Memorial Day", - "2049-03-01": "Peace Memorial Day (Observed)", + "2049-03-01": "Peace Memorial Day (observed)", "2049-04-04": "Children's Day; Tomb Sweeping Day", - "2049-04-05": "Children's Day (Observed)", - "2049-04-06": "Tomb Sweeping Day (Observed)", + "2049-04-05": "Children's Day (observed)", + "2049-04-06": "Tomb Sweeping Day (observed)", "2049-06-04": "Dragon Boat Festival", - "2049-09-10": "Mid-Autumn Festival (Observed)", + "2049-09-10": "Mid-Autumn Festival (observed)", "2049-09-11": "Mid-Autumn Festival", "2049-10-10": "National Day", - "2049-10-11": "National Day (Observed)", - "2049-12-31": "Founding Day of the Republic of China (Observed)", + "2049-10-11": "National Day (observed)", + "2049-12-31": "Founding Day of the Republic of China (observed)", "2050-01-01": "Founding Day of the Republic of China", "2050-01-22": "Chinese New Year's Eve", "2050-01-23": "Chinese New Year", diff --git a/snapshots/countries/UA_COMMON.json b/snapshots/countries/UA_COMMON.json index 7ce80c93b..2e9040bff 100644 --- a/snapshots/countries/UA_COMMON.json +++ b/snapshots/countries/UA_COMMON.json @@ -51,13 +51,13 @@ "1995-01-09": "Presidential decree holiday", "1995-03-08": "International Women's Day", "1995-04-23": "Easter Sunday (Pascha)", - "1995-04-24": "Easter Sunday (Pascha) (Observed)", + "1995-04-24": "Easter Sunday (Pascha) (observed)", "1995-05-01": "International Workers' Solidarity Day", "1995-05-02": "International Workers' Solidarity Day", "1995-05-08": "Day off (substituted from 05/06/1995)", "1995-05-09": "Victory Day", "1995-06-11": "Holy Trinity Day", - "1995-06-12": "Holy Trinity Day (Observed)", + "1995-06-12": "Holy Trinity Day (observed)", "1995-08-24": "Independence Day", "1995-08-25": "Day off (substituted from 08/27/1995)", "1995-11-06": "Day off (substituted from 11/04/1995)", @@ -65,19 +65,19 @@ "1995-11-08": "Anniversary of the Great October Socialist Revolution", "1996-01-01": "New Year's Day", "1996-01-07": "Christmas (Julian calendar)", - "1996-01-08": "Christmas (Julian calendar) (Observed)", + "1996-01-08": "Christmas (Julian calendar) (observed)", "1996-03-08": "International Women's Day", "1996-04-14": "Easter Sunday (Pascha)", - "1996-04-15": "Easter Sunday (Pascha) (Observed)", + "1996-04-15": "Easter Sunday (Pascha) (observed)", "1996-05-01": "International Workers' Solidarity Day", "1996-05-02": "International Workers' Solidarity Day", "1996-05-03": "Day off (substituted from 05/05/1996)", "1996-05-09": "Victory Day", "1996-05-10": "Day off (substituted from 05/12/1996)", "1996-06-02": "Holy Trinity Day", - "1996-06-03": "Holy Trinity Day (Observed)", + "1996-06-03": "Holy Trinity Day (observed)", "1996-08-24": "Independence Day", - "1996-08-26": "Independence Day (Observed)", + "1996-08-26": "Independence Day (observed)", "1996-11-07": "Anniversary of the Great October Socialist Revolution", "1996-11-08": "Anniversary of the Great October Socialist Revolution", "1997-01-01": "New Year's Day", @@ -85,23 +85,23 @@ "1997-01-06": "Day off (substituted from 01/04/1997)", "1997-01-07": "Christmas (Julian calendar)", "1997-03-08": "International Women's Day", - "1997-03-10": "International Women's Day (Observed)", + "1997-03-10": "International Women's Day (observed)", "1997-04-27": "Easter Sunday (Pascha)", - "1997-04-28": "Easter Sunday (Pascha) (Observed)", + "1997-04-28": "Easter Sunday (Pascha) (observed)", "1997-04-29": "Day off (substituted from 04/19/1997)", "1997-04-30": "Day off (substituted from 05/17/1997)", "1997-05-01": "International Workers' Solidarity Day", "1997-05-02": "International Workers' Solidarity Day", "1997-05-09": "Victory Day", "1997-06-15": "Holy Trinity Day", - "1997-06-16": "Holy Trinity Day (Observed)", + "1997-06-16": "Holy Trinity Day (observed)", "1997-06-28": "Day of the Constitution of Ukraine", - "1997-06-30": "Day of the Constitution of Ukraine (Observed)", + "1997-06-30": "Day of the Constitution of Ukraine (observed)", "1997-08-24": "Independence Day", - "1997-08-25": "Independence Day (Observed)", + "1997-08-25": "Independence Day (observed)", "1997-11-07": "Anniversary of the Great October Socialist Revolution", "1997-11-08": "Anniversary of the Great October Socialist Revolution", - "1997-11-10": "Anniversary of the Great October Socialist Revolution (Observed)", + "1997-11-10": "Anniversary of the Great October Socialist Revolution (observed)", "1998-01-01": "New Year's Day", "1998-01-07": "Christmas (Julian calendar)", "1998-03-08": "International Women's Day", @@ -122,40 +122,40 @@ "1999-04-12": "Day off (substituted from 04/24/1999)", "1999-05-01": "International Workers' Solidarity Day", "1999-05-02": "International Workers' Solidarity Day", - "1999-05-03": "International Workers' Solidarity Day (Observed)", - "1999-05-04": "International Workers' Solidarity Day (Observed)", + "1999-05-03": "International Workers' Solidarity Day (observed)", + "1999-05-04": "International Workers' Solidarity Day (observed)", "1999-05-09": "Victory Day", - "1999-05-10": "Victory Day (Observed)", + "1999-05-10": "Victory Day (observed)", "1999-05-30": "Holy Trinity Day", - "1999-05-31": "Holy Trinity Day (Observed)", + "1999-05-31": "Holy Trinity Day (observed)", "1999-06-28": "Day of the Constitution of Ukraine", "1999-08-23": "Day off (substituted from 08/21/1999)", "1999-08-24": "Independence Day", "1999-11-07": "Anniversary of the Great October Socialist Revolution", "1999-11-08": "Anniversary of the Great October Socialist Revolution", - "1999-11-09": "Anniversary of the Great October Socialist Revolution (Observed)", + "1999-11-09": "Anniversary of the Great October Socialist Revolution (observed)", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-01-07": "Christmas (Julian calendar)", "2000-03-08": "International Women's Day", "2000-04-30": "Easter Sunday (Pascha)", "2000-05-01": "International Workers' Solidarity Day", "2000-05-02": "International Workers' Solidarity Day", - "2000-05-03": "Easter Sunday (Pascha) (Observed)", + "2000-05-03": "Easter Sunday (Pascha) (observed)", "2000-05-08": "Day off (substituted from 05/06/2000)", "2000-05-09": "Victory Day", "2000-06-18": "Holy Trinity Day", - "2000-06-19": "Holy Trinity Day (Observed)", + "2000-06-19": "Holy Trinity Day (observed)", "2000-06-28": "Day of the Constitution of Ukraine", "2000-08-24": "Independence Day", "2000-08-25": "Day off (substituted from 08/27/2000)", "2001-01-01": "New Year's Day", "2001-01-07": "Christmas (Julian calendar)", - "2001-01-08": "Christmas (Julian calendar) (Observed)", + "2001-01-08": "Christmas (Julian calendar) (observed)", "2001-03-08": "International Women's Day", "2001-03-09": "Day off (substituted from 03/11/2001)", "2001-04-15": "Easter Sunday (Pascha)", - "2001-04-16": "Easter Sunday (Pascha) (Observed)", + "2001-04-16": "Easter Sunday (Pascha) (observed)", "2001-04-30": "Day off (substituted from 04/28/2001)", "2001-05-01": "International Workers' Solidarity Day", "2001-05-02": "International Workers' Solidarity Day", @@ -163,7 +163,7 @@ "2001-05-10": "Day off (substituted from 05/05/2001)", "2001-05-11": "Day off (substituted from 05/06/2001)", "2001-06-03": "Holy Trinity Day", - "2001-06-04": "Holy Trinity Day (Observed)", + "2001-06-04": "Holy Trinity Day (observed)", "2001-06-28": "Day of the Constitution of Ukraine", "2001-06-29": "Day off (substituted from 06/23/2001)", "2001-08-24": "Independence Day", @@ -175,31 +175,31 @@ "2002-05-02": "International Workers' Solidarity Day", "2002-05-03": "Day off (substituted from 05/11/2002)", "2002-05-05": "Easter Sunday (Pascha)", - "2002-05-06": "Easter Sunday (Pascha) (Observed)", + "2002-05-06": "Easter Sunday (Pascha) (observed)", "2002-05-09": "Victory Day", "2002-06-23": "Holy Trinity Day", - "2002-06-24": "Holy Trinity Day (Observed)", + "2002-06-24": "Holy Trinity Day (observed)", "2002-06-28": "Day of the Constitution of Ukraine", "2002-08-24": "Independence Day", - "2002-08-26": "Independence Day (Observed)", + "2002-08-26": "Independence Day (observed)", "2002-12-30": "Day off (substituted from 12/28/2002)", "2002-12-31": "Day off (substituted from 12/29/2002)", "2003-01-01": "New Year's Day", "2003-01-06": "Day off (substituted from 01/04/2003)", "2003-01-07": "Christmas (Julian calendar)", "2003-03-08": "International Women's Day", - "2003-03-10": "International Women's Day (Observed)", + "2003-03-10": "International Women's Day (observed)", "2003-04-27": "Easter Sunday (Pascha)", - "2003-04-28": "Easter Sunday (Pascha) (Observed)", + "2003-04-28": "Easter Sunday (Pascha) (observed)", "2003-05-01": "International Workers' Solidarity Day", "2003-05-02": "International Workers' Solidarity Day", "2003-05-09": "Victory Day", "2003-06-15": "Holy Trinity Day", - "2003-06-16": "Holy Trinity Day (Observed)", + "2003-06-16": "Holy Trinity Day (observed)", "2003-06-28": "Day of the Constitution of Ukraine", - "2003-06-30": "Day of the Constitution of Ukraine (Observed)", + "2003-06-30": "Day of the Constitution of Ukraine (observed)", "2003-08-24": "Independence Day", - "2003-08-25": "Independence Day (Observed)", + "2003-08-25": "Independence Day (observed)", "2004-01-01": "New Year's Day", "2004-01-02": "Day off (substituted from 01/10/2004)", "2004-01-05": "Day off (substituted from 01/17/2004)", @@ -207,50 +207,50 @@ "2004-01-07": "Christmas (Julian calendar)", "2004-03-08": "International Women's Day", "2004-04-11": "Easter Sunday (Pascha)", - "2004-04-12": "Easter Sunday (Pascha) (Observed)", + "2004-04-12": "Easter Sunday (Pascha) (observed)", "2004-05-01": "International Workers' Solidarity Day", "2004-05-02": "International Workers' Solidarity Day", - "2004-05-03": "International Workers' Solidarity Day (Observed)", - "2004-05-04": "International Workers' Solidarity Day (Observed)", + "2004-05-03": "International Workers' Solidarity Day (observed)", + "2004-05-04": "International Workers' Solidarity Day (observed)", "2004-05-09": "Victory Day", - "2004-05-10": "Victory Day (Observed)", + "2004-05-10": "Victory Day (observed)", "2004-05-30": "Holy Trinity Day", - "2004-05-31": "Holy Trinity Day (Observed)", + "2004-05-31": "Holy Trinity Day (observed)", "2004-06-28": "Day of the Constitution of Ukraine", "2004-08-23": "Day off (substituted from 08/21/2004)", "2004-08-24": "Independence Day", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-01-07": "Christmas (Julian calendar)", "2005-03-07": "Day off (substituted from 03/05/2005)", "2005-03-08": "International Women's Day", "2005-05-01": "Easter Sunday (Pascha); International Workers' Solidarity Day", "2005-05-02": "International Workers' Solidarity Day", - "2005-05-03": "Easter Sunday (Pascha) (Observed); International Workers' Solidarity Day (Observed)", + "2005-05-03": "Easter Sunday (Pascha) (observed); International Workers' Solidarity Day (observed)", "2005-05-09": "Victory Day", "2005-05-10": "Day off (substituted from 05/14/2005)", "2005-06-19": "Holy Trinity Day", - "2005-06-20": "Holy Trinity Day (Observed)", + "2005-06-20": "Holy Trinity Day (observed)", "2005-06-27": "Day off (substituted from 06/25/2005)", "2005-06-28": "Day of the Constitution of Ukraine", "2005-08-24": "Independence Day", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-03": "Day off (substituted from 01/21/2006)", "2006-01-04": "Day off (substituted from 02/04/2006)", "2006-01-05": "Day off (substituted from 02/18/2006)", "2006-01-06": "Day off (substituted from 03/11/2006)", "2006-01-07": "Christmas (Julian calendar)", - "2006-01-09": "Christmas (Julian calendar) (Observed)", + "2006-01-09": "Christmas (Julian calendar) (observed)", "2006-03-08": "International Women's Day", "2006-04-23": "Easter Sunday (Pascha)", - "2006-04-24": "Easter Sunday (Pascha) (Observed)", + "2006-04-24": "Easter Sunday (Pascha) (observed)", "2006-05-01": "International Workers' Solidarity Day", "2006-05-02": "International Workers' Solidarity Day", "2006-05-08": "Day off (substituted from 05/06/2006)", "2006-05-09": "Victory Day", "2006-06-11": "Holy Trinity Day", - "2006-06-12": "Holy Trinity Day (Observed)", + "2006-06-12": "Holy Trinity Day (observed)", "2006-06-28": "Day of the Constitution of Ukraine", "2006-08-24": "Independence Day", "2006-08-25": "Day off (substituted from 09/09/2006)", @@ -260,17 +260,17 @@ "2007-01-04": "Day off (substituted from 02/10/2007)", "2007-01-05": "Day off (substituted from 02/24/2007)", "2007-01-07": "Christmas (Julian calendar)", - "2007-01-08": "Christmas (Julian calendar) (Observed)", + "2007-01-08": "Christmas (Julian calendar) (observed)", "2007-03-08": "International Women's Day", "2007-03-09": "Day off (substituted from 03/03/2007)", "2007-04-08": "Easter Sunday (Pascha)", - "2007-04-09": "Easter Sunday (Pascha) (Observed)", + "2007-04-09": "Easter Sunday (Pascha) (observed)", "2007-04-30": "Day off (substituted from 04/28/2007)", "2007-05-01": "International Workers' Solidarity Day", "2007-05-02": "International Workers' Solidarity Day", "2007-05-09": "Victory Day", "2007-05-27": "Holy Trinity Day", - "2007-05-28": "Holy Trinity Day (Observed)", + "2007-05-28": "Holy Trinity Day (observed)", "2007-06-28": "Day of the Constitution of Ukraine", "2007-06-29": "Day off (substituted from 06/16/2007)", "2007-08-24": "Independence Day", @@ -281,38 +281,38 @@ "2008-01-04": "Day off (substituted from 02/09/2008)", "2008-01-07": "Christmas (Julian calendar)", "2008-03-08": "International Women's Day", - "2008-03-10": "International Women's Day (Observed)", + "2008-03-10": "International Women's Day (observed)", "2008-04-27": "Easter Sunday (Pascha)", - "2008-04-28": "Easter Sunday (Pascha) (Observed)", + "2008-04-28": "Easter Sunday (Pascha) (observed)", "2008-04-29": "Day off (substituted from 05/17/2008)", "2008-04-30": "Day off (substituted from 05/31/2008)", "2008-05-01": "International Workers' Solidarity Day", "2008-05-02": "International Workers' Solidarity Day", "2008-05-09": "Victory Day", "2008-06-15": "Holy Trinity Day", - "2008-06-16": "Holy Trinity Day (Observed)", + "2008-06-16": "Holy Trinity Day (observed)", "2008-06-28": "Day of the Constitution of Ukraine", - "2008-06-30": "Day of the Constitution of Ukraine (Observed)", + "2008-06-30": "Day of the Constitution of Ukraine (observed)", "2008-08-24": "Independence Day", - "2008-08-25": "Independence Day (Observed)", + "2008-08-25": "Independence Day (observed)", "2009-01-01": "New Year's Day", "2009-01-02": "Day off (substituted from 01/10/2009)", "2009-01-05": "Day off (substituted from 01/24/2009)", "2009-01-06": "Day off (substituted from 02/07/2009)", "2009-01-07": "Christmas (Julian calendar)", "2009-03-08": "International Women's Day", - "2009-03-09": "International Women's Day (Observed)", + "2009-03-09": "International Women's Day (observed)", "2009-04-19": "Easter Sunday (Pascha)", - "2009-04-20": "Easter Sunday (Pascha) (Observed)", + "2009-04-20": "Easter Sunday (Pascha) (observed)", "2009-05-01": "International Workers' Solidarity Day", "2009-05-02": "International Workers' Solidarity Day", - "2009-05-04": "International Workers' Solidarity Day (Observed)", + "2009-05-04": "International Workers' Solidarity Day (observed)", "2009-05-09": "Victory Day", - "2009-05-11": "Victory Day (Observed)", + "2009-05-11": "Victory Day (observed)", "2009-06-07": "Holy Trinity Day", - "2009-06-08": "Holy Trinity Day (Observed)", + "2009-06-08": "Holy Trinity Day (observed)", "2009-06-28": "Day of the Constitution of Ukraine", - "2009-06-29": "Day of the Constitution of Ukraine (Observed)", + "2009-06-29": "Day of the Constitution of Ukraine (observed)", "2009-08-24": "Independence Day", "2010-01-01": "New Year's Day", "2010-01-04": "Day off (substituted from 01/30/2010)", @@ -322,48 +322,48 @@ "2010-01-08": "Day off (substituted from 03/13/2010)", "2010-03-08": "International Women's Day", "2010-04-04": "Easter Sunday (Pascha)", - "2010-04-05": "Easter Sunday (Pascha) (Observed)", + "2010-04-05": "Easter Sunday (Pascha) (observed)", "2010-05-01": "International Workers' Solidarity Day", "2010-05-02": "International Workers' Solidarity Day", - "2010-05-03": "International Workers' Solidarity Day (Observed)", - "2010-05-04": "International Workers' Solidarity Day (Observed)", + "2010-05-03": "International Workers' Solidarity Day (observed)", + "2010-05-04": "International Workers' Solidarity Day (observed)", "2010-05-09": "Victory Day", - "2010-05-10": "Victory Day (Observed)", + "2010-05-10": "Victory Day (observed)", "2010-05-23": "Holy Trinity Day", - "2010-05-24": "Holy Trinity Day (Observed)", + "2010-05-24": "Holy Trinity Day (observed)", "2010-06-28": "Day of the Constitution of Ukraine", "2010-08-23": "Day off (substituted from 08/21/2010)", "2010-08-24": "Independence Day", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-01-07": "Christmas (Julian calendar)", "2011-03-07": "Day off (substituted from 03/12/2011)", "2011-03-08": "International Women's Day", "2011-04-24": "Easter Sunday (Pascha)", - "2011-04-25": "Easter Sunday (Pascha) (Observed)", + "2011-04-25": "Easter Sunday (Pascha) (observed)", "2011-05-01": "International Workers' Solidarity Day", "2011-05-02": "International Workers' Solidarity Day", - "2011-05-03": "International Workers' Solidarity Day (Observed)", + "2011-05-03": "International Workers' Solidarity Day (observed)", "2011-05-09": "Victory Day", "2011-06-12": "Holy Trinity Day", - "2011-06-13": "Holy Trinity Day (Observed)", + "2011-06-13": "Holy Trinity Day (observed)", "2011-06-27": "Day off (substituted from 06/25/2011)", "2011-06-28": "Day of the Constitution of Ukraine", "2011-08-24": "Independence Day", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-07": "Christmas (Julian calendar)", - "2012-01-09": "Christmas (Julian calendar) (Observed)", + "2012-01-09": "Christmas (Julian calendar) (observed)", "2012-03-08": "International Women's Day", "2012-03-09": "Day off (substituted from 03/03/2012)", "2012-04-15": "Easter Sunday (Pascha)", - "2012-04-16": "Easter Sunday (Pascha) (Observed)", + "2012-04-16": "Easter Sunday (Pascha) (observed)", "2012-04-20": "Day off (substituted from 04/28/2012)", "2012-05-01": "International Workers' Solidarity Day", "2012-05-02": "International Workers' Solidarity Day", "2012-05-09": "Victory Day", "2012-06-03": "Holy Trinity Day", - "2012-06-04": "Holy Trinity Day (Observed)", + "2012-06-04": "Holy Trinity Day (observed)", "2012-06-28": "Day of the Constitution of Ukraine", "2012-06-29": "Day off (substituted from 07/07/2012)", "2012-08-24": "Independence Day", @@ -375,50 +375,50 @@ "2013-05-02": "International Workers' Solidarity Day", "2013-05-03": "Day off (substituted from 05/18/2013)", "2013-05-05": "Easter Sunday (Pascha)", - "2013-05-06": "Easter Sunday (Pascha) (Observed)", + "2013-05-06": "Easter Sunday (Pascha) (observed)", "2013-05-09": "Victory Day", "2013-05-10": "Day off (substituted from 06/01/2013)", "2013-06-23": "Holy Trinity Day", - "2013-06-24": "Holy Trinity Day (Observed)", + "2013-06-24": "Holy Trinity Day (observed)", "2013-06-28": "Day of the Constitution of Ukraine", "2013-08-24": "Independence Day", - "2013-08-26": "Independence Day (Observed)", + "2013-08-26": "Independence Day (observed)", "2014-01-01": "New Year's Day", "2014-01-02": "Day off (substituted from 01/11/2014)", "2014-01-03": "Day off (substituted from 01/25/2014)", "2014-01-06": "Day off (substituted from 02/08/2014)", "2014-01-07": "Christmas (Julian calendar)", "2014-03-08": "International Women's Day", - "2014-03-10": "International Women's Day (Observed)", + "2014-03-10": "International Women's Day (observed)", "2014-04-20": "Easter Sunday (Pascha)", - "2014-04-21": "Easter Sunday (Pascha) (Observed)", + "2014-04-21": "Easter Sunday (Pascha) (observed)", "2014-05-01": "International Workers' Solidarity Day", "2014-05-02": "International Workers' Solidarity Day", "2014-05-09": "Victory Day", "2014-06-08": "Holy Trinity Day", - "2014-06-09": "Holy Trinity Day (Observed)", + "2014-06-09": "Holy Trinity Day (observed)", "2014-06-28": "Day of the Constitution of Ukraine", - "2014-06-30": "Day of the Constitution of Ukraine (Observed)", + "2014-06-30": "Day of the Constitution of Ukraine (observed)", "2014-08-24": "Independence Day", - "2014-08-25": "Independence Day (Observed)", + "2014-08-25": "Independence Day (observed)", "2015-01-01": "New Year's Day", "2015-01-02": "Day off (substituted from 01/17/2015)", "2015-01-07": "Christmas (Julian calendar)", "2015-01-08": "Day off (substituted from 01/31/2015)", "2015-01-09": "Day off (substituted from 02/14/2015)", "2015-03-08": "International Women's Day", - "2015-03-09": "International Women's Day (Observed)", + "2015-03-09": "International Women's Day (observed)", "2015-04-12": "Easter Sunday (Pascha)", - "2015-04-13": "Easter Sunday (Pascha) (Observed)", + "2015-04-13": "Easter Sunday (Pascha) (observed)", "2015-05-01": "International Workers' Solidarity Day", "2015-05-02": "International Workers' Solidarity Day", - "2015-05-04": "International Workers' Solidarity Day (Observed)", + "2015-05-04": "International Workers' Solidarity Day (observed)", "2015-05-09": "Victory Day", - "2015-05-11": "Victory Day (Observed)", + "2015-05-11": "Victory Day (observed)", "2015-05-31": "Holy Trinity Day", - "2015-06-01": "Holy Trinity Day (Observed)", + "2015-06-01": "Holy Trinity Day (observed)", "2015-06-28": "Day of the Constitution of Ukraine", - "2015-06-29": "Day of the Constitution of Ukraine (Observed)", + "2015-06-29": "Day of the Constitution of Ukraine (observed)", "2015-08-24": "Independence Day", "2015-10-14": "Defender of Ukraine Day", "2016-01-01": "New Year's Day", @@ -428,50 +428,50 @@ "2016-03-08": "International Women's Day", "2016-05-01": "Easter Sunday (Pascha); International Workers' Solidarity Day", "2016-05-02": "International Workers' Solidarity Day", - "2016-05-03": "Easter Sunday (Pascha) (Observed); International Workers' Solidarity Day (Observed)", + "2016-05-03": "Easter Sunday (Pascha) (observed); International Workers' Solidarity Day (observed)", "2016-05-09": "Day of Victory over Nazism in World War II (Victory Day)", "2016-06-19": "Holy Trinity Day", - "2016-06-20": "Holy Trinity Day (Observed)", + "2016-06-20": "Holy Trinity Day (observed)", "2016-06-27": "Day off (substituted from 07/02/2016)", "2016-06-28": "Day of the Constitution of Ukraine", "2016-08-24": "Independence Day", "2016-10-14": "Defender of Ukraine Day", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-07": "Christmas (Julian calendar)", - "2017-01-09": "Christmas (Julian calendar) (Observed)", + "2017-01-09": "Christmas (Julian calendar) (observed)", "2017-03-08": "International Women's Day", "2017-04-16": "Easter Sunday (Pascha)", - "2017-04-17": "Easter Sunday (Pascha) (Observed)", + "2017-04-17": "Easter Sunday (Pascha) (observed)", "2017-05-01": "International Workers' Solidarity Day", "2017-05-02": "International Workers' Solidarity Day", "2017-05-08": "Day off (substituted from 05/13/2017)", "2017-05-09": "Day of Victory over Nazism in World War II (Victory Day)", "2017-06-04": "Holy Trinity Day", - "2017-06-05": "Holy Trinity Day (Observed)", + "2017-06-05": "Holy Trinity Day (observed)", "2017-06-28": "Day of the Constitution of Ukraine", "2017-08-24": "Independence Day", "2017-08-25": "Day off (substituted from 08/19/2017)", "2017-10-14": "Defender of Ukraine Day", - "2017-10-16": "Defender of Ukraine Day (Observed)", + "2017-10-16": "Defender of Ukraine Day (observed)", "2017-12-25": "Christmas (Gregorian calendar)", "2018-01-01": "New Year's Day", "2018-01-07": "Christmas (Julian calendar)", - "2018-01-08": "Christmas (Julian calendar) (Observed)", + "2018-01-08": "Christmas (Julian calendar) (observed)", "2018-03-08": "International Women's Day", "2018-03-09": "Day off (substituted from 03/03/2018)", "2018-04-08": "Easter Sunday (Pascha)", - "2018-04-09": "Easter Sunday (Pascha) (Observed)", + "2018-04-09": "Easter Sunday (Pascha) (observed)", "2018-04-30": "Day off (substituted from 05/05/2018)", "2018-05-01": "Labor Day", "2018-05-09": "Day of Victory over Nazism in World War II (Victory Day)", "2018-05-27": "Holy Trinity Day", - "2018-05-28": "Holy Trinity Day (Observed)", + "2018-05-28": "Holy Trinity Day (observed)", "2018-06-28": "Day of the Constitution of Ukraine", "2018-06-29": "Day off (substituted from 06/23/2018)", "2018-08-24": "Independence Day", "2018-10-14": "Defender of Ukraine Day", - "2018-10-15": "Defender of Ukraine Day (Observed)", + "2018-10-15": "Defender of Ukraine Day (observed)", "2018-12-24": "Day off (substituted from 12/22/2018)", "2018-12-25": "Christmas (Gregorian calendar)", "2018-12-31": "Day off (substituted from 12/29/2018)", @@ -479,15 +479,15 @@ "2019-01-07": "Christmas (Julian calendar)", "2019-03-08": "International Women's Day", "2019-04-28": "Easter Sunday (Pascha)", - "2019-04-29": "Easter Sunday (Pascha) (Observed)", + "2019-04-29": "Easter Sunday (Pascha) (observed)", "2019-04-30": "Day off (substituted from 05/11/2019)", "2019-05-01": "Labor Day", "2019-05-09": "Day of Victory over Nazism in World War II (Victory Day)", "2019-06-16": "Holy Trinity Day", - "2019-06-17": "Holy Trinity Day (Observed)", + "2019-06-17": "Holy Trinity Day (observed)", "2019-06-28": "Day of the Constitution of Ukraine", "2019-08-24": "Independence Day", - "2019-08-26": "Independence Day (Observed)", + "2019-08-26": "Independence Day (observed)", "2019-10-14": "Defender of Ukraine Day", "2019-12-25": "Christmas (Gregorian calendar)", "2019-12-30": "Day off (substituted from 12/21/2019)", @@ -496,16 +496,16 @@ "2020-01-06": "Day off (substituted from 01/11/2020)", "2020-01-07": "Christmas (Julian calendar)", "2020-03-08": "International Women's Day", - "2020-03-09": "International Women's Day (Observed)", + "2020-03-09": "International Women's Day (observed)", "2020-04-19": "Easter Sunday (Pascha)", - "2020-04-20": "Easter Sunday (Pascha) (Observed)", + "2020-04-20": "Easter Sunday (Pascha) (observed)", "2020-05-01": "Labor Day", "2020-05-09": "Day of Victory over Nazism in World War II (Victory Day)", - "2020-05-11": "Day of Victory over Nazism in World War II (Victory Day) (Observed)", + "2020-05-11": "Day of Victory over Nazism in World War II (Victory Day) (observed)", "2020-06-07": "Holy Trinity Day", - "2020-06-08": "Holy Trinity Day (Observed)", + "2020-06-08": "Holy Trinity Day (observed)", "2020-06-28": "Day of the Constitution of Ukraine", - "2020-06-29": "Day of the Constitution of Ukraine (Observed)", + "2020-06-29": "Day of the Constitution of Ukraine (observed)", "2020-08-24": "Independence Day", "2020-10-14": "Defender of Ukraine Day", "2020-12-25": "Christmas (Gregorian calendar)", @@ -515,21 +515,21 @@ "2021-03-08": "International Women's Day", "2021-05-01": "Labor Day", "2021-05-02": "Easter Sunday (Pascha)", - "2021-05-03": "Labor Day (Observed)", - "2021-05-04": "Easter Sunday (Pascha) (Observed)", + "2021-05-03": "Labor Day (observed)", + "2021-05-04": "Easter Sunday (Pascha) (observed)", "2021-05-09": "Day of Victory over Nazism in World War II (Victory Day)", - "2021-05-10": "Day of Victory over Nazism in World War II (Victory Day) (Observed)", + "2021-05-10": "Day of Victory over Nazism in World War II (Victory Day) (observed)", "2021-06-20": "Holy Trinity Day", - "2021-06-21": "Holy Trinity Day (Observed)", + "2021-06-21": "Holy Trinity Day (observed)", "2021-06-28": "Day of the Constitution of Ukraine", "2021-08-23": "Day off (substituted from 08/28/2021)", "2021-08-24": "Independence Day", "2021-10-14": "Day of defenders of Ukraine", "2021-10-15": "Day off (substituted from 10/23/2021)", "2021-12-25": "Christmas (Gregorian calendar)", - "2021-12-27": "Christmas (Gregorian calendar) (Observed)", + "2021-12-27": "Christmas (Gregorian calendar) (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-01-07": "Christmas (Julian calendar)", "2022-03-07": "Day off (substituted from 03/12/2022)", "2022-03-08": "International Women's Day" diff --git a/snapshots/countries/UK_COMMON.json b/snapshots/countries/UK_COMMON.json index 087edd5de..7d2acfe3a 100644 --- a/snapshots/countries/UK_COMMON.json +++ b/snapshots/countries/UK_COMMON.json @@ -11,16 +11,16 @@ "1953-04-03": "Good Friday", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-04-16": "Good Friday", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-04-08": "Good Friday", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-03-30": "Good Friday", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", @@ -33,11 +33,11 @@ "1959-03-27": "Good Friday", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-04-15": "Good Friday", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-03-31": "Good Friday", "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", @@ -50,16 +50,16 @@ "1964-03-27": "Good Friday", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-04-16": "Good Friday", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-04-08": "Good Friday", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-03-24": "Good Friday", "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", @@ -72,13 +72,13 @@ "1970-03-27": "Good Friday", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-04-09": "Good Friday", "1971-05-31": "Spring Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-03-31": "Good Friday", "1972-05-29": "Spring Bank Holiday", "1972-12-25": "Christmas Day", @@ -101,18 +101,18 @@ "1976-05-31": "Spring Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-05-30": "Spring Bank Holiday", "1977-06-07": "Silver Jubilee of Elizabeth II", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-01": "May Day", "1978-05-29": "Spring Bank Holiday", @@ -137,25 +137,25 @@ "1981-07-29": "Wedding of Charles and Diana", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-05-03": "May Day", "1982-05-31": "Spring Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-05-02": "May Day", "1983-05-30": "Spring Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-07": "May Day", "1984-05-28": "Spring Bank Holiday", @@ -179,16 +179,16 @@ "1987-05-25": "Spring Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-05-02": "May Day", "1988-05-30": "Spring Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-05-01": "May Day", "1989-05-29": "Spring Bank Holiday", @@ -212,25 +212,25 @@ "1992-05-25": "Spring Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-05-03": "May Day", "1993-05-31": "Spring Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-05-02": "May Day", "1994-05-30": "Spring Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-05-08": "May Day", "1995-05-29": "Spring Bank Holiday", @@ -254,18 +254,18 @@ "1998-05-25": "Spring Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-05-03": "May Day", "1999-05-31": "Spring Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-05-01": "May Day", "2000-05-29": "Spring Bank Holiday", @@ -296,18 +296,18 @@ "2004-05-31": "Spring Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-05-02": "May Day", "2005-05-30": "Spring Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-05-01": "May Day", "2006-05-29": "Spring Bank Holiday", @@ -331,26 +331,26 @@ "2009-05-25": "Spring Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-05-03": "May Day", "2010-05-31": "Spring Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-04-29": "Wedding of William and Catherine", "2011-05-02": "May Day", "2011-05-30": "Spring Bank Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-05-07": "May Day", "2012-06-04": "Spring Bank Holiday", @@ -375,16 +375,16 @@ "2015-05-25": "Spring Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-05-02": "May Day", "2016-05-30": "Spring Bank Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-05-01": "May Day", "2017-05-29": "Spring Bank Holiday", @@ -408,17 +408,17 @@ "2020-05-25": "Spring Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-05-03": "May Day", "2021-05-31": "Spring Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-05-02": "May Day", "2022-06-02": "Spring Bank Holiday", @@ -426,9 +426,9 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-05-01": "May Day", "2023-05-08": "Coronation of Charles III", @@ -453,17 +453,17 @@ "2026-05-25": "Spring Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-05-03": "May Day", "2027-05-31": "Spring Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-05-01": "May Day", "2028-05-29": "Spring Bank Holiday", @@ -493,18 +493,18 @@ "2032-05-31": "Spring Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-05-02": "May Day", "2033-05-30": "Spring Bank Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-05-01": "May Day", "2034-05-29": "Spring Bank Holiday", @@ -528,25 +528,25 @@ "2037-05-25": "Spring Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-05-03": "May Day", "2038-05-31": "Spring Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-05-02": "May Day", "2039-05-30": "Spring Bank Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-05-07": "May Day", "2040-05-28": "Spring Bank Holiday", @@ -570,16 +570,16 @@ "2043-05-25": "Spring Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-05-02": "May Day", "2044-05-30": "Spring Bank Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-05-01": "May Day", "2045-05-29": "Spring Bank Holiday", @@ -603,21 +603,21 @@ "2048-05-25": "Spring Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-05-03": "May Day", "2049-05-31": "Spring Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-05-02": "May Day", "2050-05-30": "Spring Bank Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/UK_ENG.json b/snapshots/countries/UK_ENG.json index 6473ece13..3198045fb 100644 --- a/snapshots/countries/UK_ENG.json +++ b/snapshots/countries/UK_ENG.json @@ -15,18 +15,18 @@ "1953-04-06": "Easter Monday", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-12-25": "Christmas Day", @@ -43,12 +43,12 @@ "1959-03-30": "Easter Monday", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-12-25": "Christmas Day", @@ -65,18 +65,18 @@ "1964-03-30": "Easter Monday", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-12-25": "Christmas Day", @@ -93,15 +93,15 @@ "1970-03-30": "Easter Monday", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-05-31": "Spring Bank Holiday", "1971-08-30": "Late Summer Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-05-29": "Spring Bank Holiday", @@ -134,10 +134,10 @@ "1976-08-30": "Late Summer Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-30": "Spring Bank Holiday", @@ -145,9 +145,9 @@ "1977-08-29": "Late Summer Bank Holiday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-01": "May Day", @@ -180,7 +180,7 @@ "1981-08-31": "Late Summer Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -189,10 +189,10 @@ "1982-08-30": "Late Summer Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-02": "May Day", @@ -200,9 +200,9 @@ "1983-08-29": "Late Summer Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-07": "May Day", @@ -234,7 +234,7 @@ "1987-08-31": "Late Summer Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -243,9 +243,9 @@ "1988-08-29": "Late Summer Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-01": "May Day", @@ -277,7 +277,7 @@ "1992-08-31": "Late Summer Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -286,10 +286,10 @@ "1993-08-30": "Late Summer Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-02": "May Day", @@ -297,9 +297,9 @@ "1994-08-29": "Late Summer Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-08": "May Day", @@ -331,7 +331,7 @@ "1998-08-31": "Late Summer Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -340,11 +340,11 @@ "1999-08-30": "Late Summer Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-01": "May Day", @@ -385,10 +385,10 @@ "2004-08-30": "Late Summer Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-02": "May Day", @@ -396,9 +396,9 @@ "2005-08-29": "Late Summer Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-01": "May Day", @@ -430,7 +430,7 @@ "2009-08-31": "Late Summer Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -439,10 +439,10 @@ "2010-08-30": "Late Summer Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-04-29": "Wedding of William and Catherine", @@ -451,9 +451,9 @@ "2011-08-29": "Late Summer Bank Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-07": "May Day", @@ -486,7 +486,7 @@ "2015-08-31": "Late Summer Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", @@ -495,9 +495,9 @@ "2016-08-29": "Late Summer Bank Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-01": "May Day", @@ -529,7 +529,7 @@ "2020-08-31": "Late Summer Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", @@ -538,10 +538,10 @@ "2021-08-30": "Late Summer Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-02": "May Day", @@ -551,9 +551,9 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-01": "May Day", @@ -586,7 +586,7 @@ "2026-08-31": "Late Summer Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", @@ -595,10 +595,10 @@ "2027-08-30": "Late Summer Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-01": "May Day", @@ -638,10 +638,10 @@ "2032-08-30": "Late Summer Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-02": "May Day", @@ -649,9 +649,9 @@ "2033-08-29": "Late Summer Bank Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-01": "May Day", @@ -683,7 +683,7 @@ "2037-08-31": "Late Summer Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", @@ -692,10 +692,10 @@ "2038-08-30": "Late Summer Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-02": "May Day", @@ -703,9 +703,9 @@ "2039-08-29": "Late Summer Bank Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-07": "May Day", @@ -737,7 +737,7 @@ "2043-08-31": "Late Summer Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", @@ -746,9 +746,9 @@ "2044-08-29": "Late Summer Bank Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-01": "May Day", @@ -780,7 +780,7 @@ "2048-08-31": "Late Summer Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", @@ -789,10 +789,10 @@ "2049-08-30": "Late Summer Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-02": "May Day", @@ -800,5 +800,5 @@ "2050-08-29": "Late Summer Bank Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/UK_NIR.json b/snapshots/countries/UK_NIR.json index 57f034532..6ab174bed 100644 --- a/snapshots/countries/UK_NIR.json +++ b/snapshots/countries/UK_NIR.json @@ -6,7 +6,7 @@ "1950-12-25": "Christmas Day", "1950-12-26": "Boxing Day", "1951-03-17": "St. Patrick's Day", - "1951-03-19": "St. Patrick's Day (Observed)", + "1951-03-19": "St. Patrick's Day (observed)", "1951-03-23": "Good Friday", "1951-03-26": "Easter Monday", "1951-07-12": "Battle of the Boyne", @@ -16,41 +16,41 @@ "1952-04-11": "Good Friday", "1952-04-14": "Easter Monday", "1952-07-12": "Battle of the Boyne", - "1952-07-14": "Battle of the Boyne (Observed)", + "1952-07-14": "Battle of the Boyne (observed)", "1952-12-25": "Christmas Day", "1952-12-26": "Boxing Day", "1953-03-17": "St. Patrick's Day", "1953-04-03": "Good Friday", "1953-04-06": "Easter Monday", "1953-07-12": "Battle of the Boyne", - "1953-07-13": "Battle of the Boyne (Observed)", + "1953-07-13": "Battle of the Boyne (observed)", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-03-17": "St. Patrick's Day", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-07-12": "Battle of the Boyne", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-03-17": "St. Patrick's Day", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-07-12": "Battle of the Boyne", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-03-17": "St. Patrick's Day", - "1956-03-19": "St. Patrick's Day (Observed)", + "1956-03-19": "St. Patrick's Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-07-12": "Battle of the Boyne", "1956-12-25": "Christmas Day", "1956-12-26": "Boxing Day", "1957-03-17": "St. Patrick's Day", - "1957-03-18": "St. Patrick's Day (Observed)", + "1957-03-18": "St. Patrick's Day (observed)", "1957-04-19": "Good Friday", "1957-04-22": "Easter Monday", "1957-07-12": "Battle of the Boyne", @@ -60,24 +60,24 @@ "1958-04-04": "Good Friday", "1958-04-07": "Easter Monday", "1958-07-12": "Battle of the Boyne", - "1958-07-14": "Battle of the Boyne (Observed)", + "1958-07-14": "Battle of the Boyne (observed)", "1958-12-25": "Christmas Day", "1958-12-26": "Boxing Day", "1959-03-17": "St. Patrick's Day", "1959-03-27": "Good Friday", "1959-03-30": "Easter Monday", "1959-07-12": "Battle of the Boyne", - "1959-07-13": "Battle of the Boyne (Observed)", + "1959-07-13": "Battle of the Boyne (observed)", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-03-17": "St. Patrick's Day", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-07-12": "Battle of the Boyne", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-03-17": "St. Patrick's Day", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", @@ -85,14 +85,14 @@ "1961-12-25": "Christmas Day", "1961-12-26": "Boxing Day", "1962-03-17": "St. Patrick's Day", - "1962-03-19": "St. Patrick's Day (Observed)", + "1962-03-19": "St. Patrick's Day (observed)", "1962-04-20": "Good Friday", "1962-04-23": "Easter Monday", "1962-07-12": "Battle of the Boyne", "1962-12-25": "Christmas Day", "1962-12-26": "Boxing Day", "1963-03-17": "St. Patrick's Day", - "1963-03-18": "St. Patrick's Day (Observed)", + "1963-03-18": "St. Patrick's Day (observed)", "1963-04-12": "Good Friday", "1963-04-15": "Easter Monday", "1963-07-12": "Battle of the Boyne", @@ -102,25 +102,25 @@ "1964-03-27": "Good Friday", "1964-03-30": "Easter Monday", "1964-07-12": "Battle of the Boyne", - "1964-07-13": "Battle of the Boyne (Observed)", + "1964-07-13": "Battle of the Boyne (observed)", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-03-17": "St. Patrick's Day", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-07-12": "Battle of the Boyne", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-03-17": "St. Patrick's Day", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-07-12": "Battle of the Boyne", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-03-17": "St. Patrick's Day", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", @@ -128,7 +128,7 @@ "1967-12-25": "Christmas Day", "1967-12-26": "Boxing Day", "1968-03-17": "St. Patrick's Day", - "1968-03-18": "St. Patrick's Day (Observed)", + "1968-03-18": "St. Patrick's Day (observed)", "1968-04-12": "Good Friday", "1968-04-15": "Easter Monday", "1968-07-12": "Battle of the Boyne", @@ -138,17 +138,17 @@ "1969-04-04": "Good Friday", "1969-04-07": "Easter Monday", "1969-07-12": "Battle of the Boyne", - "1969-07-14": "Battle of the Boyne (Observed)", + "1969-07-14": "Battle of the Boyne (observed)", "1969-12-25": "Christmas Day", "1969-12-26": "Boxing Day", "1970-03-17": "St. Patrick's Day", "1970-03-27": "Good Friday", "1970-03-30": "Easter Monday", "1970-07-12": "Battle of the Boyne", - "1970-07-13": "Battle of the Boyne (Observed)", + "1970-07-13": "Battle of the Boyne (observed)", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-03-17": "St. Patrick's Day", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", @@ -157,8 +157,8 @@ "1971-08-30": "Late Summer Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-03-17": "St. Patrick's Day", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", @@ -168,7 +168,7 @@ "1972-12-25": "Christmas Day", "1972-12-26": "Boxing Day", "1973-03-17": "St. Patrick's Day", - "1973-03-19": "St. Patrick's Day (Observed)", + "1973-03-19": "St. Patrick's Day (observed)", "1973-04-20": "Good Friday", "1973-04-23": "Easter Monday", "1973-05-28": "Spring Bank Holiday", @@ -177,7 +177,7 @@ "1973-12-25": "Christmas Day", "1973-12-26": "Boxing Day", "1974-03-17": "St. Patrick's Day", - "1974-03-18": "St. Patrick's Day (Observed)", + "1974-03-18": "St. Patrick's Day (observed)", "1974-04-12": "Good Friday", "1974-04-15": "Easter Monday", "1974-05-27": "Spring Bank Holiday", @@ -191,7 +191,7 @@ "1975-03-31": "Easter Monday", "1975-05-26": "Spring Bank Holiday", "1975-07-12": "Battle of the Boyne", - "1975-07-14": "Battle of the Boyne (Observed)", + "1975-07-14": "Battle of the Boyne (observed)", "1975-08-25": "Late Summer Bank Holiday", "1975-12-25": "Christmas Day", "1975-12-26": "Boxing Day", @@ -204,10 +204,10 @@ "1976-08-30": "Late Summer Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-03-17": "St. Patrick's Day", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", @@ -217,9 +217,9 @@ "1977-08-29": "Late Summer Bank Holiday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-17": "St. Patrick's Day", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", @@ -231,7 +231,7 @@ "1978-12-26": "Boxing Day", "1979-01-01": "New Year's Day", "1979-03-17": "St. Patrick's Day", - "1979-03-19": "St. Patrick's Day (Observed)", + "1979-03-19": "St. Patrick's Day (observed)", "1979-04-13": "Good Friday", "1979-04-16": "Easter Monday", "1979-05-07": "May Day", @@ -247,7 +247,7 @@ "1980-05-05": "May Day", "1980-05-26": "Spring Bank Holiday", "1980-07-12": "Battle of the Boyne", - "1980-07-14": "Battle of the Boyne (Observed)", + "1980-07-14": "Battle of the Boyne (observed)", "1980-08-25": "Late Summer Bank Holiday", "1980-12-25": "Christmas Day", "1980-12-26": "Boxing Day", @@ -258,12 +258,12 @@ "1981-05-04": "May Day", "1981-05-25": "Spring Bank Holiday", "1981-07-12": "Battle of the Boyne", - "1981-07-13": "Battle of the Boyne (Observed)", + "1981-07-13": "Battle of the Boyne (observed)", "1981-07-29": "Wedding of Charles and Diana", "1981-08-31": "Late Summer Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-03-17": "St. Patrick's Day", "1982-04-09": "Good Friday", @@ -274,10 +274,10 @@ "1982-08-30": "Late Summer Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-03-17": "St. Patrick's Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", @@ -287,11 +287,11 @@ "1983-08-29": "Late Summer Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-17": "St. Patrick's Day", - "1984-03-19": "St. Patrick's Day (Observed)", + "1984-03-19": "St. Patrick's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-07": "May Day", @@ -302,7 +302,7 @@ "1984-12-26": "Boxing Day", "1985-01-01": "New Year's Day", "1985-03-17": "St. Patrick's Day", - "1985-03-18": "St. Patrick's Day (Observed)", + "1985-03-18": "St. Patrick's Day (observed)", "1985-04-05": "Good Friday", "1985-04-08": "Easter Monday", "1985-05-06": "May Day", @@ -318,7 +318,7 @@ "1986-05-05": "May Day", "1986-05-26": "Spring Bank Holiday", "1986-07-12": "Battle of the Boyne", - "1986-07-14": "Battle of the Boyne (Observed)", + "1986-07-14": "Battle of the Boyne (observed)", "1986-08-25": "Late Summer Bank Holiday", "1986-12-25": "Christmas Day", "1986-12-26": "Boxing Day", @@ -329,11 +329,11 @@ "1987-05-04": "May Day", "1987-05-25": "Spring Bank Holiday", "1987-07-12": "Battle of the Boyne", - "1987-07-13": "Battle of the Boyne (Observed)", + "1987-07-13": "Battle of the Boyne (observed)", "1987-08-31": "Late Summer Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-03-17": "St. Patrick's Day", "1988-04-01": "Good Friday", @@ -344,9 +344,9 @@ "1988-08-29": "Late Summer Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-17": "St. Patrick's Day", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", @@ -358,7 +358,7 @@ "1989-12-26": "Boxing Day", "1990-01-01": "New Year's Day", "1990-03-17": "St. Patrick's Day", - "1990-03-19": "St. Patrick's Day (Observed)", + "1990-03-19": "St. Patrick's Day (observed)", "1990-04-13": "Good Friday", "1990-04-16": "Easter Monday", "1990-05-07": "May Day", @@ -369,7 +369,7 @@ "1990-12-26": "Boxing Day", "1991-01-01": "New Year's Day", "1991-03-17": "St. Patrick's Day", - "1991-03-18": "St. Patrick's Day (Observed)", + "1991-03-18": "St. Patrick's Day (observed)", "1991-03-29": "Good Friday", "1991-04-01": "Easter Monday", "1991-05-06": "May Day", @@ -385,11 +385,11 @@ "1992-05-04": "May Day", "1992-05-25": "Spring Bank Holiday", "1992-07-12": "Battle of the Boyne", - "1992-07-13": "Battle of the Boyne (Observed)", + "1992-07-13": "Battle of the Boyne (observed)", "1992-08-31": "Late Summer Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-03-17": "St. Patrick's Day", "1993-04-09": "Good Friday", @@ -400,10 +400,10 @@ "1993-08-30": "Late Summer Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-03-17": "St. Patrick's Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", @@ -413,9 +413,9 @@ "1994-08-29": "Late Summer Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-03-17": "St. Patrick's Day", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", @@ -427,7 +427,7 @@ "1995-12-26": "Boxing Day", "1996-01-01": "New Year's Day", "1996-03-17": "St. Patrick's Day", - "1996-03-18": "St. Patrick's Day (Observed)", + "1996-03-18": "St. Patrick's Day (observed)", "1996-04-05": "Good Friday", "1996-04-08": "Easter Monday", "1996-05-06": "May Day", @@ -443,7 +443,7 @@ "1997-05-05": "May Day", "1997-05-26": "Spring Bank Holiday", "1997-07-12": "Battle of the Boyne", - "1997-07-14": "Battle of the Boyne (Observed)", + "1997-07-14": "Battle of the Boyne (observed)", "1997-08-25": "Late Summer Bank Holiday", "1997-12-25": "Christmas Day", "1997-12-26": "Boxing Day", @@ -454,11 +454,11 @@ "1998-05-04": "May Day", "1998-05-25": "Spring Bank Holiday", "1998-07-12": "Battle of the Boyne", - "1998-07-13": "Battle of the Boyne (Observed)", + "1998-07-13": "Battle of the Boyne (observed)", "1998-08-31": "Late Summer Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-03-17": "St. Patrick's Day", "1999-04-02": "Good Friday", @@ -469,11 +469,11 @@ "1999-08-30": "Late Summer Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-03-17": "St. Patrick's Day", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", @@ -485,7 +485,7 @@ "2000-12-26": "Boxing Day", "2001-01-01": "New Year's Day", "2001-03-17": "St. Patrick's Day", - "2001-03-19": "St. Patrick's Day (Observed)", + "2001-03-19": "St. Patrick's Day (observed)", "2001-04-13": "Good Friday", "2001-04-16": "Easter Monday", "2001-05-07": "May Day", @@ -496,7 +496,7 @@ "2001-12-26": "Boxing Day", "2002-01-01": "New Year's Day", "2002-03-17": "St. Patrick's Day", - "2002-03-18": "St. Patrick's Day (Observed)", + "2002-03-18": "St. Patrick's Day (observed)", "2002-03-29": "Good Friday", "2002-04-01": "Easter Monday", "2002-05-06": "May Day", @@ -513,7 +513,7 @@ "2003-05-05": "May Day", "2003-05-26": "Spring Bank Holiday", "2003-07-12": "Battle of the Boyne", - "2003-07-14": "Battle of the Boyne (Observed)", + "2003-07-14": "Battle of the Boyne (observed)", "2003-08-25": "Late Summer Bank Holiday", "2003-12-25": "Christmas Day", "2003-12-26": "Boxing Day", @@ -527,10 +527,10 @@ "2004-08-30": "Late Summer Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-17": "St. Patrick's Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", @@ -540,9 +540,9 @@ "2005-08-29": "Late Summer Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-03-17": "St. Patrick's Day", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", @@ -554,7 +554,7 @@ "2006-12-26": "Boxing Day", "2007-01-01": "New Year's Day", "2007-03-17": "St. Patrick's Day", - "2007-03-19": "St. Patrick's Day (Observed)", + "2007-03-19": "St. Patrick's Day (observed)", "2007-04-06": "Good Friday", "2007-04-09": "Easter Monday", "2007-05-07": "May Day", @@ -570,7 +570,7 @@ "2008-05-05": "May Day", "2008-05-26": "Spring Bank Holiday", "2008-07-12": "Battle of the Boyne", - "2008-07-14": "Battle of the Boyne (Observed)", + "2008-07-14": "Battle of the Boyne (observed)", "2008-08-25": "Late Summer Bank Holiday", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", @@ -581,11 +581,11 @@ "2009-05-04": "May Day", "2009-05-25": "Spring Bank Holiday", "2009-07-12": "Battle of the Boyne", - "2009-07-13": "Battle of the Boyne (Observed)", + "2009-07-13": "Battle of the Boyne (observed)", "2009-08-31": "Late Summer Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-03-17": "St. Patrick's Day", "2010-04-02": "Good Friday", @@ -596,10 +596,10 @@ "2010-08-30": "Late Summer Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-03-17": "St. Patrick's Day", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", @@ -610,11 +610,11 @@ "2011-08-29": "Late Summer Bank Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-03-17": "St. Patrick's Day", - "2012-03-19": "St. Patrick's Day (Observed)", + "2012-03-19": "St. Patrick's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-07": "May Day", @@ -626,7 +626,7 @@ "2012-12-26": "Boxing Day", "2013-01-01": "New Year's Day", "2013-03-17": "St. Patrick's Day", - "2013-03-18": "St. Patrick's Day (Observed)", + "2013-03-18": "St. Patrick's Day (observed)", "2013-03-29": "Good Friday", "2013-04-01": "Easter Monday", "2013-05-06": "May Day", @@ -642,7 +642,7 @@ "2014-05-05": "May Day", "2014-05-26": "Spring Bank Holiday", "2014-07-12": "Battle of the Boyne", - "2014-07-14": "Battle of the Boyne (Observed)", + "2014-07-14": "Battle of the Boyne (observed)", "2014-08-25": "Late Summer Bank Holiday", "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", @@ -653,11 +653,11 @@ "2015-05-04": "May Day", "2015-05-25": "Spring Bank Holiday", "2015-07-12": "Battle of the Boyne", - "2015-07-13": "Battle of the Boyne (Observed)", + "2015-07-13": "Battle of the Boyne (observed)", "2015-08-31": "Late Summer Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-17": "St. Patrick's Day", "2016-03-25": "Good Friday", @@ -668,9 +668,9 @@ "2016-08-29": "Late Summer Bank Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-03-17": "St. Patrick's Day", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", @@ -682,7 +682,7 @@ "2017-12-26": "Boxing Day", "2018-01-01": "New Year's Day", "2018-03-17": "St. Patrick's Day", - "2018-03-19": "St. Patrick's Day (Observed)", + "2018-03-19": "St. Patrick's Day (observed)", "2018-03-30": "Good Friday", "2018-04-02": "Easter Monday", "2018-05-07": "May Day", @@ -693,7 +693,7 @@ "2018-12-26": "Boxing Day", "2019-01-01": "New Year's Day", "2019-03-17": "St. Patrick's Day", - "2019-03-18": "St. Patrick's Day (Observed)", + "2019-03-18": "St. Patrick's Day (observed)", "2019-04-19": "Good Friday", "2019-04-22": "Easter Monday", "2019-05-06": "May Day", @@ -709,11 +709,11 @@ "2020-05-08": "May Day", "2020-05-25": "Spring Bank Holiday", "2020-07-12": "Battle of the Boyne", - "2020-07-13": "Battle of the Boyne (Observed)", + "2020-07-13": "Battle of the Boyne (observed)", "2020-08-31": "Late Summer Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-03-17": "St. Patrick's Day", "2021-04-02": "Good Friday", @@ -724,10 +724,10 @@ "2021-08-30": "Late Summer Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-03-17": "St. Patrick's Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", @@ -739,9 +739,9 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-03-17": "St. Patrick's Day", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", @@ -754,7 +754,7 @@ "2023-12-26": "Boxing Day", "2024-01-01": "New Year's Day", "2024-03-17": "St. Patrick's Day", - "2024-03-18": "St. Patrick's Day (Observed)", + "2024-03-18": "St. Patrick's Day (observed)", "2024-03-29": "Good Friday", "2024-04-01": "Easter Monday", "2024-05-06": "May Day", @@ -770,7 +770,7 @@ "2025-05-05": "May Day", "2025-05-26": "Spring Bank Holiday", "2025-07-12": "Battle of the Boyne", - "2025-07-14": "Battle of the Boyne (Observed)", + "2025-07-14": "Battle of the Boyne (observed)", "2025-08-25": "Late Summer Bank Holiday", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", @@ -781,11 +781,11 @@ "2026-05-04": "May Day", "2026-05-25": "Spring Bank Holiday", "2026-07-12": "Battle of the Boyne", - "2026-07-13": "Battle of the Boyne (Observed)", + "2026-07-13": "Battle of the Boyne (observed)", "2026-08-31": "Late Summer Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-17": "St. Patrick's Day", "2027-03-26": "Good Friday", @@ -796,10 +796,10 @@ "2027-08-30": "Late Summer Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-03-17": "St. Patrick's Day", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", @@ -811,7 +811,7 @@ "2028-12-26": "Boxing Day", "2029-01-01": "New Year's Day", "2029-03-17": "St. Patrick's Day", - "2029-03-19": "St. Patrick's Day (Observed)", + "2029-03-19": "St. Patrick's Day (observed)", "2029-03-30": "Good Friday", "2029-04-02": "Easter Monday", "2029-05-07": "May Day", @@ -822,7 +822,7 @@ "2029-12-26": "Boxing Day", "2030-01-01": "New Year's Day", "2030-03-17": "St. Patrick's Day", - "2030-03-18": "St. Patrick's Day (Observed)", + "2030-03-18": "St. Patrick's Day (observed)", "2030-04-19": "Good Friday", "2030-04-22": "Easter Monday", "2030-05-06": "May Day", @@ -838,7 +838,7 @@ "2031-05-05": "May Day", "2031-05-26": "Spring Bank Holiday", "2031-07-12": "Battle of the Boyne", - "2031-07-14": "Battle of the Boyne (Observed)", + "2031-07-14": "Battle of the Boyne (observed)", "2031-08-25": "Late Summer Bank Holiday", "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", @@ -852,10 +852,10 @@ "2032-08-30": "Late Summer Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-03-17": "St. Patrick's Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", @@ -865,9 +865,9 @@ "2033-08-29": "Late Summer Bank Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-17": "St. Patrick's Day", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", @@ -879,7 +879,7 @@ "2034-12-26": "Boxing Day", "2035-01-01": "New Year's Day", "2035-03-17": "St. Patrick's Day", - "2035-03-19": "St. Patrick's Day (Observed)", + "2035-03-19": "St. Patrick's Day (observed)", "2035-03-23": "Good Friday", "2035-03-26": "Easter Monday", "2035-05-07": "May Day", @@ -895,7 +895,7 @@ "2036-05-05": "May Day", "2036-05-26": "Spring Bank Holiday", "2036-07-12": "Battle of the Boyne", - "2036-07-14": "Battle of the Boyne (Observed)", + "2036-07-14": "Battle of the Boyne (observed)", "2036-08-25": "Late Summer Bank Holiday", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", @@ -906,11 +906,11 @@ "2037-05-04": "May Day", "2037-05-25": "Spring Bank Holiday", "2037-07-12": "Battle of the Boyne", - "2037-07-13": "Battle of the Boyne (Observed)", + "2037-07-13": "Battle of the Boyne (observed)", "2037-08-31": "Late Summer Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-03-17": "St. Patrick's Day", "2038-04-23": "Good Friday", @@ -921,10 +921,10 @@ "2038-08-30": "Late Summer Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-03-17": "St. Patrick's Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", @@ -934,11 +934,11 @@ "2039-08-29": "Late Summer Bank Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-17": "St. Patrick's Day", - "2040-03-19": "St. Patrick's Day (Observed)", + "2040-03-19": "St. Patrick's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-07": "May Day", @@ -949,7 +949,7 @@ "2040-12-26": "Boxing Day", "2041-01-01": "New Year's Day", "2041-03-17": "St. Patrick's Day", - "2041-03-18": "St. Patrick's Day (Observed)", + "2041-03-18": "St. Patrick's Day (observed)", "2041-04-19": "Good Friday", "2041-04-22": "Easter Monday", "2041-05-06": "May Day", @@ -965,7 +965,7 @@ "2042-05-05": "May Day", "2042-05-26": "Spring Bank Holiday", "2042-07-12": "Battle of the Boyne", - "2042-07-14": "Battle of the Boyne (Observed)", + "2042-07-14": "Battle of the Boyne (observed)", "2042-08-25": "Late Summer Bank Holiday", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", @@ -976,11 +976,11 @@ "2043-05-04": "May Day", "2043-05-25": "Spring Bank Holiday", "2043-07-12": "Battle of the Boyne", - "2043-07-13": "Battle of the Boyne (Observed)", + "2043-07-13": "Battle of the Boyne (observed)", "2043-08-31": "Late Summer Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-03-17": "St. Patrick's Day", "2044-04-15": "Good Friday", @@ -991,9 +991,9 @@ "2044-08-29": "Late Summer Bank Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-03-17": "St. Patrick's Day", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", @@ -1005,7 +1005,7 @@ "2045-12-26": "Boxing Day", "2046-01-01": "New Year's Day", "2046-03-17": "St. Patrick's Day", - "2046-03-19": "St. Patrick's Day (Observed)", + "2046-03-19": "St. Patrick's Day (observed)", "2046-03-23": "Good Friday", "2046-03-26": "Easter Monday", "2046-05-07": "May Day", @@ -1016,7 +1016,7 @@ "2046-12-26": "Boxing Day", "2047-01-01": "New Year's Day", "2047-03-17": "St. Patrick's Day", - "2047-03-18": "St. Patrick's Day (Observed)", + "2047-03-18": "St. Patrick's Day (observed)", "2047-04-12": "Good Friday", "2047-04-15": "Easter Monday", "2047-05-06": "May Day", @@ -1032,11 +1032,11 @@ "2048-05-04": "May Day", "2048-05-25": "Spring Bank Holiday", "2048-07-12": "Battle of the Boyne", - "2048-07-13": "Battle of the Boyne (Observed)", + "2048-07-13": "Battle of the Boyne (observed)", "2048-08-31": "Late Summer Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-03-17": "St. Patrick's Day", "2049-04-16": "Good Friday", @@ -1047,10 +1047,10 @@ "2049-08-30": "Late Summer Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-03-17": "St. Patrick's Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", @@ -1060,5 +1060,5 @@ "2050-08-29": "Late Summer Bank Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/UK_SCT.json b/snapshots/countries/UK_SCT.json index 444fa35a8..b4aae39d0 100644 --- a/snapshots/countries/UK_SCT.json +++ b/snapshots/countries/UK_SCT.json @@ -1,7 +1,7 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year Holiday; New Year's Day (Observed)", - "1950-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1950-01-02": "New Year Holiday; New Year's Day (observed)", + "1950-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1950-04-07": "Good Friday", "1950-08-07": "Summer Bank Holiday", "1950-12-25": "Christmas Day", @@ -22,22 +22,22 @@ "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", "1954-01-02": "New Year Holiday", - "1954-01-04": "New Year Holiday (Observed)", + "1954-01-04": "New Year Holiday (observed)", "1954-04-16": "Good Friday", "1954-08-02": "Summer Bank Holiday", "1954-12-25": "Christmas Day", - "1954-12-27": "Christmas Day (Observed)", + "1954-12-27": "Christmas Day (observed)", "1955-01-01": "New Year's Day", "1955-01-02": "New Year Holiday", - "1955-01-03": "New Year's Day (Observed)", - "1955-01-04": "New Year Holiday (Observed)", + "1955-01-03": "New Year's Day (observed)", + "1955-01-04": "New Year Holiday (observed)", "1955-04-08": "Good Friday", "1955-08-01": "Summer Bank Holiday", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year Holiday; New Year's Day (Observed)", - "1956-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1956-01-02": "New Year Holiday; New Year's Day (observed)", + "1956-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1956-03-30": "Good Friday", "1956-08-06": "Summer Bank Holiday", "1956-12-25": "Christmas Day", @@ -58,14 +58,14 @@ "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-01-02": "New Year Holiday", - "1960-01-04": "New Year Holiday (Observed)", + "1960-01-04": "New Year Holiday (observed)", "1960-04-15": "Good Friday", "1960-08-01": "Summer Bank Holiday", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year Holiday; New Year's Day (Observed)", - "1961-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1961-01-02": "New Year Holiday; New Year's Day (observed)", + "1961-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1961-03-31": "Good Friday", "1961-08-07": "Summer Bank Holiday", "1961-12-25": "Christmas Day", @@ -86,22 +86,22 @@ "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-01-02": "New Year Holiday", - "1965-01-04": "New Year Holiday (Observed)", + "1965-01-04": "New Year Holiday (observed)", "1965-04-16": "Good Friday", "1965-08-02": "Summer Bank Holiday", "1965-12-25": "Christmas Day", - "1965-12-27": "Christmas Day (Observed)", + "1965-12-27": "Christmas Day (observed)", "1966-01-01": "New Year's Day", "1966-01-02": "New Year Holiday", - "1966-01-03": "New Year's Day (Observed)", - "1966-01-04": "New Year Holiday (Observed)", + "1966-01-03": "New Year's Day (observed)", + "1966-01-04": "New Year Holiday (observed)", "1966-04-08": "Good Friday", "1966-08-01": "Summer Bank Holiday", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year Holiday; New Year's Day (Observed)", - "1967-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1967-01-02": "New Year Holiday; New Year's Day (observed)", + "1967-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1967-03-24": "Good Friday", "1967-08-07": "Summer Bank Holiday", "1967-12-25": "Christmas Day", @@ -122,16 +122,16 @@ "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-01-02": "New Year Holiday", - "1971-01-04": "New Year Holiday (Observed)", + "1971-01-04": "New Year Holiday (observed)", "1971-04-09": "Good Friday", "1971-05-31": "Spring Bank Holiday", "1971-08-02": "Summer Bank Holiday", "1971-12-25": "Christmas Day", - "1971-12-27": "Christmas Day (Observed)", + "1971-12-27": "Christmas Day (observed)", "1972-01-01": "New Year's Day", "1972-01-02": "New Year Holiday", - "1972-01-03": "New Year's Day (Observed)", - "1972-01-04": "New Year Holiday (Observed)", + "1972-01-03": "New Year's Day (observed)", + "1972-01-04": "New Year Holiday (observed)", "1972-03-31": "Good Friday", "1972-05-29": "Spring Bank Holiday", "1972-08-07": "Summer Bank Holiday", @@ -163,22 +163,22 @@ "1976-08-02": "Summer Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", "1977-01-02": "New Year Holiday", - "1977-01-03": "New Year's Day (Observed)", - "1977-01-04": "New Year Holiday (Observed)", + "1977-01-03": "New Year's Day (observed)", + "1977-01-04": "New Year Holiday (observed)", "1977-04-08": "Good Friday", "1977-05-30": "Spring Bank Holiday", "1977-06-07": "Silver Jubilee of Elizabeth II", "1977-08-01": "Summer Bank Holiday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year Holiday; New Year's Day (Observed)", - "1978-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1978-01-02": "New Year Holiday; New Year's Day (observed)", + "1978-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1978-03-24": "Good Friday", "1978-05-01": "May Day", "1978-05-29": "Spring Bank Holiday", @@ -210,32 +210,32 @@ "1981-08-03": "Summer Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-01-02": "New Year Holiday", - "1982-01-04": "New Year Holiday (Observed)", + "1982-01-04": "New Year Holiday (observed)", "1982-04-09": "Good Friday", "1982-05-03": "May Day", "1982-05-31": "Spring Bank Holiday", "1982-08-02": "Summer Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", "1983-01-02": "New Year Holiday", - "1983-01-03": "New Year's Day (Observed)", - "1983-01-04": "New Year Holiday (Observed)", + "1983-01-03": "New Year's Day (observed)", + "1983-01-04": "New Year Holiday (observed)", "1983-04-01": "Good Friday", "1983-05-02": "May Day", "1983-05-30": "Spring Bank Holiday", "1983-08-01": "Summer Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year Holiday; New Year's Day (Observed)", - "1984-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1984-01-02": "New Year Holiday; New Year's Day (observed)", + "1984-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1984-04-20": "Good Friday", "1984-05-07": "May Day", "1984-05-28": "Spring Bank Holiday", @@ -266,20 +266,20 @@ "1987-08-03": "Summer Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-01-02": "New Year Holiday", - "1988-01-04": "New Year Holiday (Observed)", + "1988-01-04": "New Year Holiday (observed)", "1988-04-01": "Good Friday", "1988-05-02": "May Day", "1988-05-30": "Spring Bank Holiday", "1988-08-01": "Summer Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year Holiday; New Year's Day (Observed)", - "1989-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1989-01-02": "New Year Holiday; New Year's Day (observed)", + "1989-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1989-03-24": "Good Friday", "1989-05-01": "May Day", "1989-05-29": "Spring Bank Holiday", @@ -310,32 +310,32 @@ "1992-08-03": "Summer Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-01-02": "New Year Holiday", - "1993-01-04": "New Year Holiday (Observed)", + "1993-01-04": "New Year Holiday (observed)", "1993-04-09": "Good Friday", "1993-05-03": "May Day", "1993-05-31": "Spring Bank Holiday", "1993-08-02": "Summer Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-01-02": "New Year Holiday", - "1994-01-03": "New Year's Day (Observed)", - "1994-01-04": "New Year Holiday (Observed)", + "1994-01-03": "New Year's Day (observed)", + "1994-01-04": "New Year Holiday (observed)", "1994-04-01": "Good Friday", "1994-05-02": "May Day", "1994-05-30": "Spring Bank Holiday", "1994-08-01": "Summer Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year Holiday; New Year's Day (Observed)", - "1995-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "1995-01-02": "New Year Holiday; New Year's Day (observed)", + "1995-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "1995-04-14": "Good Friday", "1995-05-08": "May Day", "1995-05-29": "Spring Bank Holiday", @@ -366,23 +366,23 @@ "1998-08-03": "Summer Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-01-02": "New Year Holiday", - "1999-01-04": "New Year Holiday (Observed)", + "1999-01-04": "New Year Holiday (observed)", "1999-04-02": "Good Friday", "1999-05-03": "May Day", "1999-05-31": "Spring Bank Holiday", "1999-08-02": "Summer Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", "2000-01-02": "New Year Holiday", - "2000-01-03": "New Year's Day (Observed)", - "2000-01-04": "New Year Holiday (Observed)", + "2000-01-03": "New Year's Day (observed)", + "2000-01-04": "New Year Holiday (observed)", "2000-04-21": "Good Friday", "2000-05-01": "May Day", "2000-05-29": "Spring Bank Holiday", @@ -422,22 +422,22 @@ "2004-08-02": "Summer Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-01-02": "New Year Holiday", - "2005-01-03": "New Year's Day (Observed)", - "2005-01-04": "New Year Holiday (Observed)", + "2005-01-03": "New Year's Day (observed)", + "2005-01-04": "New Year Holiday (observed)", "2005-03-25": "Good Friday", "2005-05-02": "May Day", "2005-05-30": "Spring Bank Holiday", "2005-08-01": "Summer Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year Holiday; New Year's Day (Observed)", - "2006-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2006-01-02": "New Year Holiday; New Year's Day (observed)", + "2006-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2006-04-14": "Good Friday", "2006-05-01": "May Day", "2006-05-29": "Spring Bank Holiday", @@ -461,7 +461,7 @@ "2008-05-26": "Spring Bank Holiday", "2008-08-04": "Summer Bank Holiday", "2008-11-30": "St. Andrew's Day", - "2008-12-01": "St. Andrew's Day (Observed)", + "2008-12-01": "St. Andrew's Day (observed)", "2008-12-25": "Christmas Day", "2008-12-26": "Boxing Day", "2009-01-01": "New Year's Day", @@ -473,10 +473,10 @@ "2009-11-30": "St. Andrew's Day", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-01-02": "New Year Holiday", - "2010-01-04": "New Year Holiday (Observed)", + "2010-01-04": "New Year Holiday (observed)", "2010-04-02": "Good Friday", "2010-05-03": "May Day", "2010-05-31": "Spring Bank Holiday", @@ -484,12 +484,12 @@ "2010-11-30": "St. Andrew's Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-01-02": "New Year Holiday", - "2011-01-03": "New Year's Day (Observed)", - "2011-01-04": "New Year Holiday (Observed)", + "2011-01-03": "New Year's Day (observed)", + "2011-01-04": "New Year Holiday (observed)", "2011-04-22": "Good Friday", "2011-04-29": "Wedding of William and Catherine", "2011-05-02": "May Day", @@ -498,10 +498,10 @@ "2011-11-30": "St. Andrew's Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year Holiday; New Year's Day (Observed)", - "2012-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2012-01-02": "New Year Holiday; New Year's Day (observed)", + "2012-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2012-04-06": "Good Friday", "2012-05-07": "May Day", "2012-06-04": "Spring Bank Holiday", @@ -517,7 +517,7 @@ "2013-05-27": "Spring Bank Holiday", "2013-08-05": "Summer Bank Holiday", "2013-11-30": "St. Andrew's Day", - "2013-12-02": "St. Andrew's Day (Observed)", + "2013-12-02": "St. Andrew's Day (observed)", "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", @@ -527,7 +527,7 @@ "2014-05-26": "Spring Bank Holiday", "2014-08-04": "Summer Bank Holiday", "2014-11-30": "St. Andrew's Day", - "2014-12-01": "St. Andrew's Day (Observed)", + "2014-12-01": "St. Andrew's Day (observed)", "2014-12-25": "Christmas Day", "2014-12-26": "Boxing Day", "2015-01-01": "New Year's Day", @@ -539,10 +539,10 @@ "2015-11-30": "St. Andrew's Day", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-01-02": "New Year Holiday", - "2016-01-04": "New Year Holiday (Observed)", + "2016-01-04": "New Year Holiday (observed)", "2016-03-25": "Good Friday", "2016-05-02": "May Day", "2016-05-30": "Spring Bank Holiday", @@ -550,10 +550,10 @@ "2016-11-30": "St. Andrew's Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year Holiday; New Year's Day (Observed)", - "2017-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2017-01-02": "New Year Holiday; New Year's Day (observed)", + "2017-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2017-04-14": "Good Friday", "2017-05-01": "May Day", "2017-05-29": "Spring Bank Holiday", @@ -577,7 +577,7 @@ "2019-05-27": "Spring Bank Holiday", "2019-08-05": "Summer Bank Holiday", "2019-11-30": "St. Andrew's Day", - "2019-12-02": "St. Andrew's Day (Observed)", + "2019-12-02": "St. Andrew's Day (observed)", "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", @@ -589,10 +589,10 @@ "2020-11-30": "St. Andrew's Day", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-01-02": "New Year Holiday", - "2021-01-04": "New Year Holiday (Observed)", + "2021-01-04": "New Year Holiday (observed)", "2021-04-02": "Good Friday", "2021-05-03": "May Day", "2021-05-31": "Spring Bank Holiday", @@ -600,12 +600,12 @@ "2021-11-30": "St. Andrew's Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-01-02": "New Year Holiday", - "2022-01-03": "New Year's Day (Observed)", - "2022-01-04": "New Year Holiday (Observed)", + "2022-01-03": "New Year's Day (observed)", + "2022-01-04": "New Year Holiday (observed)", "2022-04-15": "Good Friday", "2022-05-02": "May Day", "2022-06-02": "Spring Bank Holiday", @@ -615,10 +615,10 @@ "2022-11-30": "St. Andrew's Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year Holiday; New Year's Day (Observed)", - "2023-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2023-01-02": "New Year Holiday; New Year's Day (observed)", + "2023-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2023-04-07": "Good Friday", "2023-05-01": "May Day", "2023-05-08": "Coronation of Charles III", @@ -634,7 +634,7 @@ "2024-05-27": "Spring Bank Holiday", "2024-08-05": "Summer Bank Holiday", "2024-11-30": "St. Andrew's Day", - "2024-12-02": "St. Andrew's Day (Observed)", + "2024-12-02": "St. Andrew's Day (observed)", "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", @@ -644,7 +644,7 @@ "2025-05-26": "Spring Bank Holiday", "2025-08-04": "Summer Bank Holiday", "2025-11-30": "St. Andrew's Day", - "2025-12-01": "St. Andrew's Day (Observed)", + "2025-12-01": "St. Andrew's Day (observed)", "2025-12-25": "Christmas Day", "2025-12-26": "Boxing Day", "2026-01-01": "New Year's Day", @@ -656,10 +656,10 @@ "2026-11-30": "St. Andrew's Day", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-01-02": "New Year Holiday", - "2027-01-04": "New Year Holiday (Observed)", + "2027-01-04": "New Year Holiday (observed)", "2027-03-26": "Good Friday", "2027-05-03": "May Day", "2027-05-31": "Spring Bank Holiday", @@ -667,12 +667,12 @@ "2027-11-30": "St. Andrew's Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-01-02": "New Year Holiday", - "2028-01-03": "New Year's Day (Observed)", - "2028-01-04": "New Year Holiday (Observed)", + "2028-01-03": "New Year's Day (observed)", + "2028-01-04": "New Year Holiday (observed)", "2028-04-14": "Good Friday", "2028-05-01": "May Day", "2028-05-29": "Spring Bank Holiday", @@ -696,7 +696,7 @@ "2030-05-27": "Spring Bank Holiday", "2030-08-05": "Summer Bank Holiday", "2030-11-30": "St. Andrew's Day", - "2030-12-02": "St. Andrew's Day (Observed)", + "2030-12-02": "St. Andrew's Day (observed)", "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", @@ -706,7 +706,7 @@ "2031-05-26": "Spring Bank Holiday", "2031-08-04": "Summer Bank Holiday", "2031-11-30": "St. Andrew's Day", - "2031-12-01": "St. Andrew's Day (Observed)", + "2031-12-01": "St. Andrew's Day (observed)", "2031-12-25": "Christmas Day", "2031-12-26": "Boxing Day", "2032-01-01": "New Year's Day", @@ -718,12 +718,12 @@ "2032-11-30": "St. Andrew's Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-01-02": "New Year Holiday", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "New Year Holiday (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "New Year Holiday (observed)", "2033-04-15": "Good Friday", "2033-05-02": "May Day", "2033-05-30": "Spring Bank Holiday", @@ -731,10 +731,10 @@ "2033-11-30": "St. Andrew's Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year Holiday; New Year's Day (Observed)", - "2034-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2034-01-02": "New Year Holiday; New Year's Day (observed)", + "2034-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2034-04-07": "Good Friday", "2034-05-01": "May Day", "2034-05-29": "Spring Bank Holiday", @@ -758,7 +758,7 @@ "2036-05-26": "Spring Bank Holiday", "2036-08-04": "Summer Bank Holiday", "2036-11-30": "St. Andrew's Day", - "2036-12-01": "St. Andrew's Day (Observed)", + "2036-12-01": "St. Andrew's Day (observed)", "2036-12-25": "Christmas Day", "2036-12-26": "Boxing Day", "2037-01-01": "New Year's Day", @@ -770,10 +770,10 @@ "2037-11-30": "St. Andrew's Day", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-01-02": "New Year Holiday", - "2038-01-04": "New Year Holiday (Observed)", + "2038-01-04": "New Year Holiday (observed)", "2038-04-23": "Good Friday", "2038-05-03": "May Day", "2038-05-31": "Spring Bank Holiday", @@ -781,12 +781,12 @@ "2038-11-30": "St. Andrew's Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-01-02": "New Year Holiday", - "2039-01-03": "New Year's Day (Observed)", - "2039-01-04": "New Year Holiday (Observed)", + "2039-01-03": "New Year's Day (observed)", + "2039-01-04": "New Year Holiday (observed)", "2039-04-08": "Good Friday", "2039-05-02": "May Day", "2039-05-30": "Spring Bank Holiday", @@ -794,10 +794,10 @@ "2039-11-30": "St. Andrew's Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year Holiday; New Year's Day (Observed)", - "2040-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2040-01-02": "New Year Holiday; New Year's Day (observed)", + "2040-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2040-03-30": "Good Friday", "2040-05-07": "May Day", "2040-05-28": "Spring Bank Holiday", @@ -812,7 +812,7 @@ "2041-05-27": "Spring Bank Holiday", "2041-08-05": "Summer Bank Holiday", "2041-11-30": "St. Andrew's Day", - "2041-12-02": "St. Andrew's Day (Observed)", + "2041-12-02": "St. Andrew's Day (observed)", "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", @@ -822,7 +822,7 @@ "2042-05-26": "Spring Bank Holiday", "2042-08-04": "Summer Bank Holiday", "2042-11-30": "St. Andrew's Day", - "2042-12-01": "St. Andrew's Day (Observed)", + "2042-12-01": "St. Andrew's Day (observed)", "2042-12-25": "Christmas Day", "2042-12-26": "Boxing Day", "2043-01-01": "New Year's Day", @@ -834,10 +834,10 @@ "2043-11-30": "St. Andrew's Day", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-01-02": "New Year Holiday", - "2044-01-04": "New Year Holiday (Observed)", + "2044-01-04": "New Year Holiday (observed)", "2044-04-15": "Good Friday", "2044-05-02": "May Day", "2044-05-30": "Spring Bank Holiday", @@ -845,10 +845,10 @@ "2044-11-30": "St. Andrew's Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year Holiday; New Year's Day (Observed)", - "2045-01-03": "New Year Holiday (Observed); New Year's Day (Observed) (Observed)", + "2045-01-02": "New Year Holiday; New Year's Day (observed)", + "2045-01-03": "New Year Holiday (observed); New Year's Day (observed) (observed)", "2045-04-07": "Good Friday", "2045-05-01": "May Day", "2045-05-29": "Spring Bank Holiday", @@ -872,7 +872,7 @@ "2047-05-27": "Spring Bank Holiday", "2047-08-05": "Summer Bank Holiday", "2047-11-30": "St. Andrew's Day", - "2047-12-02": "St. Andrew's Day (Observed)", + "2047-12-02": "St. Andrew's Day (observed)", "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", @@ -884,10 +884,10 @@ "2048-11-30": "St. Andrew's Day", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-01-02": "New Year Holiday", - "2049-01-04": "New Year Holiday (Observed)", + "2049-01-04": "New Year Holiday (observed)", "2049-04-16": "Good Friday", "2049-05-03": "May Day", "2049-05-31": "Spring Bank Holiday", @@ -895,12 +895,12 @@ "2049-11-30": "St. Andrew's Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-01-02": "New Year Holiday", - "2050-01-03": "New Year's Day (Observed)", - "2050-01-04": "New Year Holiday (Observed)", + "2050-01-03": "New Year's Day (observed)", + "2050-01-04": "New Year Holiday (observed)", "2050-04-08": "Good Friday", "2050-05-02": "May Day", "2050-05-30": "Spring Bank Holiday", @@ -908,5 +908,5 @@ "2050-11-30": "St. Andrew's Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/UK_WLS.json b/snapshots/countries/UK_WLS.json index 6473ece13..3198045fb 100644 --- a/snapshots/countries/UK_WLS.json +++ b/snapshots/countries/UK_WLS.json @@ -15,18 +15,18 @@ "1953-04-06": "Easter Monday", "1953-12-25": "Christmas Day", "1953-12-26": "Boxing Day", - "1953-12-28": "Boxing Day (Observed)", + "1953-12-28": "Boxing Day (observed)", "1954-04-16": "Good Friday", "1954-04-19": "Easter Monday", "1954-12-25": "Christmas Day", "1954-12-26": "Boxing Day", - "1954-12-27": "Christmas Day (Observed)", - "1954-12-28": "Boxing Day (Observed)", + "1954-12-27": "Christmas Day (observed)", + "1954-12-28": "Boxing Day (observed)", "1955-04-08": "Good Friday", "1955-04-11": "Easter Monday", "1955-12-25": "Christmas Day", "1955-12-26": "Boxing Day", - "1955-12-27": "Christmas Day (Observed)", + "1955-12-27": "Christmas Day (observed)", "1956-03-30": "Good Friday", "1956-04-02": "Easter Monday", "1956-12-25": "Christmas Day", @@ -43,12 +43,12 @@ "1959-03-30": "Easter Monday", "1959-12-25": "Christmas Day", "1959-12-26": "Boxing Day", - "1959-12-28": "Boxing Day (Observed)", + "1959-12-28": "Boxing Day (observed)", "1960-04-15": "Good Friday", "1960-04-18": "Easter Monday", "1960-12-25": "Christmas Day", "1960-12-26": "Boxing Day", - "1960-12-27": "Christmas Day (Observed)", + "1960-12-27": "Christmas Day (observed)", "1961-03-31": "Good Friday", "1961-04-03": "Easter Monday", "1961-12-25": "Christmas Day", @@ -65,18 +65,18 @@ "1964-03-30": "Easter Monday", "1964-12-25": "Christmas Day", "1964-12-26": "Boxing Day", - "1964-12-28": "Boxing Day (Observed)", + "1964-12-28": "Boxing Day (observed)", "1965-04-16": "Good Friday", "1965-04-19": "Easter Monday", "1965-12-25": "Christmas Day", "1965-12-26": "Boxing Day", - "1965-12-27": "Christmas Day (Observed)", - "1965-12-28": "Boxing Day (Observed)", + "1965-12-27": "Christmas Day (observed)", + "1965-12-28": "Boxing Day (observed)", "1966-04-08": "Good Friday", "1966-04-11": "Easter Monday", "1966-12-25": "Christmas Day", "1966-12-26": "Boxing Day", - "1966-12-27": "Christmas Day (Observed)", + "1966-12-27": "Christmas Day (observed)", "1967-03-24": "Good Friday", "1967-03-27": "Easter Monday", "1967-12-25": "Christmas Day", @@ -93,15 +93,15 @@ "1970-03-30": "Easter Monday", "1970-12-25": "Christmas Day", "1970-12-26": "Boxing Day", - "1970-12-28": "Boxing Day (Observed)", + "1970-12-28": "Boxing Day (observed)", "1971-04-09": "Good Friday", "1971-04-12": "Easter Monday", "1971-05-31": "Spring Bank Holiday", "1971-08-30": "Late Summer Bank Holiday", "1971-12-25": "Christmas Day", "1971-12-26": "Boxing Day", - "1971-12-27": "Christmas Day (Observed)", - "1971-12-28": "Boxing Day (Observed)", + "1971-12-27": "Christmas Day (observed)", + "1971-12-28": "Boxing Day (observed)", "1972-03-31": "Good Friday", "1972-04-03": "Easter Monday", "1972-05-29": "Spring Bank Holiday", @@ -134,10 +134,10 @@ "1976-08-30": "Late Summer Bank Holiday", "1976-12-25": "Christmas Day", "1976-12-26": "Boxing Day", - "1976-12-27": "Christmas Day (Observed)", - "1976-12-28": "Boxing Day (Observed)", + "1976-12-27": "Christmas Day (observed)", + "1976-12-28": "Boxing Day (observed)", "1977-01-01": "New Year's Day", - "1977-01-03": "New Year's Day (Observed)", + "1977-01-03": "New Year's Day (observed)", "1977-04-08": "Good Friday", "1977-04-11": "Easter Monday", "1977-05-30": "Spring Bank Holiday", @@ -145,9 +145,9 @@ "1977-08-29": "Late Summer Bank Holiday", "1977-12-25": "Christmas Day", "1977-12-26": "Boxing Day", - "1977-12-27": "Christmas Day (Observed)", + "1977-12-27": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-03-27": "Easter Monday", "1978-05-01": "May Day", @@ -180,7 +180,7 @@ "1981-08-31": "Late Summer Bank Holiday", "1981-12-25": "Christmas Day", "1981-12-26": "Boxing Day", - "1981-12-28": "Boxing Day (Observed)", + "1981-12-28": "Boxing Day (observed)", "1982-01-01": "New Year's Day", "1982-04-09": "Good Friday", "1982-04-12": "Easter Monday", @@ -189,10 +189,10 @@ "1982-08-30": "Late Summer Bank Holiday", "1982-12-25": "Christmas Day", "1982-12-26": "Boxing Day", - "1982-12-27": "Christmas Day (Observed)", - "1982-12-28": "Boxing Day (Observed)", + "1982-12-27": "Christmas Day (observed)", + "1982-12-28": "Boxing Day (observed)", "1983-01-01": "New Year's Day", - "1983-01-03": "New Year's Day (Observed)", + "1983-01-03": "New Year's Day (observed)", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-02": "May Day", @@ -200,9 +200,9 @@ "1983-08-29": "Late Summer Bank Holiday", "1983-12-25": "Christmas Day", "1983-12-26": "Boxing Day", - "1983-12-27": "Christmas Day (Observed)", + "1983-12-27": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", "1984-05-07": "May Day", @@ -234,7 +234,7 @@ "1987-08-31": "Late Summer Bank Holiday", "1987-12-25": "Christmas Day", "1987-12-26": "Boxing Day", - "1987-12-28": "Boxing Day (Observed)", + "1987-12-28": "Boxing Day (observed)", "1988-01-01": "New Year's Day", "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", @@ -243,9 +243,9 @@ "1988-08-29": "Late Summer Bank Holiday", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-01": "May Day", @@ -277,7 +277,7 @@ "1992-08-31": "Late Summer Bank Holiday", "1992-12-25": "Christmas Day", "1992-12-26": "Boxing Day", - "1992-12-28": "Boxing Day (Observed)", + "1992-12-28": "Boxing Day (observed)", "1993-01-01": "New Year's Day", "1993-04-09": "Good Friday", "1993-04-12": "Easter Monday", @@ -286,10 +286,10 @@ "1993-08-30": "Late Summer Bank Holiday", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Christmas Day (Observed)", - "1993-12-28": "Boxing Day (Observed)", + "1993-12-27": "Christmas Day (observed)", + "1993-12-28": "Boxing Day (observed)", "1994-01-01": "New Year's Day", - "1994-01-03": "New Year's Day (Observed)", + "1994-01-03": "New Year's Day (observed)", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-02": "May Day", @@ -297,9 +297,9 @@ "1994-08-29": "Late Summer Bank Holiday", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-08": "May Day", @@ -331,7 +331,7 @@ "1998-08-31": "Late Summer Bank Holiday", "1998-12-25": "Christmas Day", "1998-12-26": "Boxing Day", - "1998-12-28": "Boxing Day (Observed)", + "1998-12-28": "Boxing Day (observed)", "1999-01-01": "New Year's Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -340,11 +340,11 @@ "1999-08-30": "Late Summer Bank Holiday", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Christmas Day (Observed)", - "1999-12-28": "Boxing Day (Observed)", + "1999-12-27": "Christmas Day (observed)", + "1999-12-28": "Boxing Day (observed)", "1999-12-31": "Millennium Celebrations", "2000-01-01": "New Year's Day", - "2000-01-03": "New Year's Day (Observed)", + "2000-01-03": "New Year's Day (observed)", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-01": "May Day", @@ -385,10 +385,10 @@ "2004-08-30": "Late Summer Bank Holiday", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Christmas Day (Observed)", - "2004-12-28": "Boxing Day (Observed)", + "2004-12-27": "Christmas Day (observed)", + "2004-12-28": "Boxing Day (observed)", "2005-01-01": "New Year's Day", - "2005-01-03": "New Year's Day (Observed)", + "2005-01-03": "New Year's Day (observed)", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-02": "May Day", @@ -396,9 +396,9 @@ "2005-08-29": "Late Summer Bank Holiday", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-01": "May Day", @@ -430,7 +430,7 @@ "2009-08-31": "Late Summer Bank Holiday", "2009-12-25": "Christmas Day", "2009-12-26": "Boxing Day", - "2009-12-28": "Boxing Day (Observed)", + "2009-12-28": "Boxing Day (observed)", "2010-01-01": "New Year's Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -439,10 +439,10 @@ "2010-08-30": "Late Summer Bank Holiday", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Christmas Day (Observed)", - "2010-12-28": "Boxing Day (Observed)", + "2010-12-27": "Christmas Day (observed)", + "2010-12-28": "Boxing Day (observed)", "2011-01-01": "New Year's Day", - "2011-01-03": "New Year's Day (Observed)", + "2011-01-03": "New Year's Day (observed)", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-04-29": "Wedding of William and Catherine", @@ -451,9 +451,9 @@ "2011-08-29": "Late Summer Bank Holiday", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-09": "Easter Monday", "2012-05-07": "May Day", @@ -486,7 +486,7 @@ "2015-08-31": "Late Summer Bank Holiday", "2015-12-25": "Christmas Day", "2015-12-26": "Boxing Day", - "2015-12-28": "Boxing Day (Observed)", + "2015-12-28": "Boxing Day (observed)", "2016-01-01": "New Year's Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", @@ -495,9 +495,9 @@ "2016-08-29": "Late Summer Bank Holiday", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-01": "May Day", @@ -529,7 +529,7 @@ "2020-08-31": "Late Summer Bank Holiday", "2020-12-25": "Christmas Day", "2020-12-26": "Boxing Day", - "2020-12-28": "Boxing Day (Observed)", + "2020-12-28": "Boxing Day (observed)", "2021-01-01": "New Year's Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", @@ -538,10 +538,10 @@ "2021-08-30": "Late Summer Bank Holiday", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Christmas Day (Observed)", - "2021-12-28": "Boxing Day (Observed)", + "2021-12-27": "Christmas Day (observed)", + "2021-12-28": "Boxing Day (observed)", "2022-01-01": "New Year's Day", - "2022-01-03": "New Year's Day (Observed)", + "2022-01-03": "New Year's Day (observed)", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-02": "May Day", @@ -551,9 +551,9 @@ "2022-09-19": "State Funeral of Queen Elizabeth II", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-01": "May Day", @@ -586,7 +586,7 @@ "2026-08-31": "Late Summer Bank Holiday", "2026-12-25": "Christmas Day", "2026-12-26": "Boxing Day", - "2026-12-28": "Boxing Day (Observed)", + "2026-12-28": "Boxing Day (observed)", "2027-01-01": "New Year's Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", @@ -595,10 +595,10 @@ "2027-08-30": "Late Summer Bank Holiday", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Christmas Day (Observed)", - "2027-12-28": "Boxing Day (Observed)", + "2027-12-27": "Christmas Day (observed)", + "2027-12-28": "Boxing Day (observed)", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-01": "May Day", @@ -638,10 +638,10 @@ "2032-08-30": "Late Summer Bank Holiday", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Christmas Day (Observed)", - "2032-12-28": "Boxing Day (Observed)", + "2032-12-27": "Christmas Day (observed)", + "2032-12-28": "Boxing Day (observed)", "2033-01-01": "New Year's Day", - "2033-01-03": "New Year's Day (Observed)", + "2033-01-03": "New Year's Day (observed)", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-02": "May Day", @@ -649,9 +649,9 @@ "2033-08-29": "Late Summer Bank Holiday", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-01": "May Day", @@ -683,7 +683,7 @@ "2037-08-31": "Late Summer Bank Holiday", "2037-12-25": "Christmas Day", "2037-12-26": "Boxing Day", - "2037-12-28": "Boxing Day (Observed)", + "2037-12-28": "Boxing Day (observed)", "2038-01-01": "New Year's Day", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", @@ -692,10 +692,10 @@ "2038-08-30": "Late Summer Bank Holiday", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Christmas Day (Observed)", - "2038-12-28": "Boxing Day (Observed)", + "2038-12-27": "Christmas Day (observed)", + "2038-12-28": "Boxing Day (observed)", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-02": "May Day", @@ -703,9 +703,9 @@ "2039-08-29": "Late Summer Bank Holiday", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-30": "Good Friday", "2040-04-02": "Easter Monday", "2040-05-07": "May Day", @@ -737,7 +737,7 @@ "2043-08-31": "Late Summer Bank Holiday", "2043-12-25": "Christmas Day", "2043-12-26": "Boxing Day", - "2043-12-28": "Boxing Day (Observed)", + "2043-12-28": "Boxing Day (observed)", "2044-01-01": "New Year's Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", @@ -746,9 +746,9 @@ "2044-08-29": "Late Summer Bank Holiday", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-01": "May Day", @@ -780,7 +780,7 @@ "2048-08-31": "Late Summer Bank Holiday", "2048-12-25": "Christmas Day", "2048-12-26": "Boxing Day", - "2048-12-28": "Boxing Day (Observed)", + "2048-12-28": "Boxing Day (observed)", "2049-01-01": "New Year's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", @@ -789,10 +789,10 @@ "2049-08-30": "Late Summer Bank Holiday", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Christmas Day (Observed)", - "2049-12-28": "Boxing Day (Observed)", + "2049-12-27": "Christmas Day (observed)", + "2049-12-28": "Boxing Day (observed)", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-02": "May Day", @@ -800,5 +800,5 @@ "2050-08-29": "Late Summer Bank Holiday", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/countries/UM_COMMON.json b/snapshots/countries/UM_COMMON.json index ba4f0854e..5fc4393a4 100644 --- a/snapshots/countries/UM_COMMON.json +++ b/snapshots/countries/UM_COMMON.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -639,15 +639,15 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -658,7 +658,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -674,7 +674,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -684,37 +684,37 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -753,16 +753,16 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -770,7 +770,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -782,7 +782,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -809,37 +809,37 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -851,7 +851,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -869,7 +869,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -879,30 +879,30 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -910,7 +910,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -938,7 +938,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -949,22 +949,22 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -976,7 +976,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -994,7 +994,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1004,26 +1004,26 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_AK.json b/snapshots/countries/US_AK.json index 34383e8d7..a35387c1c 100644 --- a/snapshots/countries/US_AK.json +++ b/snapshots/countries/US_AK.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-03-30": "Seward's Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-18": "Alaska Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-09-03": "Labor Day", "1951-10-18": "Alaska Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -28,7 +28,7 @@ "1952-05-30": "Memorial Day", "1952-07-04": "Independence Day", "1952-09-01": "Labor Day", - "1952-10-17": "Alaska Day (Observed)", + "1952-10-17": "Alaska Day (observed)", "1952-10-18": "Alaska Day", "1952-11-11": "Armistice Day", "1952-11-27": "Thanksgiving", @@ -37,11 +37,11 @@ "1953-02-22": "Washington's Birthday", "1953-03-30": "Seward's Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-18": "Alaska Day", - "1953-10-19": "Alaska Day (Observed)", + "1953-10-19": "Alaska Day (observed)", "1953-11-11": "Armistice Day", "1953-11-26": "Thanksgiving", "1953-12-25": "Christmas Day", @@ -50,14 +50,14 @@ "1954-03-30": "Seward's Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-18": "Alaska Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-03-28": "Seward's Day", @@ -68,9 +68,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-26": "Seward's Day", "1956-05-30": "Memorial Day", @@ -78,7 +78,7 @@ "1956-09-03": "Labor Day", "1956-10-18": "Alaska Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -97,7 +97,7 @@ "1958-05-30": "Memorial Day", "1958-07-04": "Independence Day", "1958-09-01": "Labor Day", - "1958-10-17": "Alaska Day (Observed)", + "1958-10-17": "Alaska Day (observed)", "1958-10-18": "Alaska Day", "1958-11-11": "Veterans Day", "1958-11-27": "Thanksgiving", @@ -106,11 +106,11 @@ "1959-02-22": "Washington's Birthday", "1959-03-30": "Seward's Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-18": "Alaska Day", - "1959-10-19": "Alaska Day (Observed)", + "1959-10-19": "Alaska Day (observed)", "1959-11-11": "Veterans Day", "1959-11-26": "Thanksgiving", "1959-12-25": "Christmas Day", @@ -124,16 +124,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-27": "Seward's Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-18": "Alaska Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -145,7 +145,7 @@ "1962-09-03": "Labor Day", "1962-10-18": "Alaska Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -162,11 +162,11 @@ "1964-02-22": "Washington's Birthday", "1964-03-30": "Seward's Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-18": "Alaska Day", - "1964-10-19": "Alaska Day (Observed)", + "1964-10-19": "Alaska Day (observed)", "1964-11-11": "Veterans Day", "1964-11-26": "Thanksgiving", "1964-12-25": "Christmas Day", @@ -175,14 +175,14 @@ "1965-03-29": "Seward's Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-18": "Alaska Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-03-28": "Seward's Day", @@ -193,16 +193,16 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-27": "Seward's Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-18": "Alaska Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -222,7 +222,7 @@ "1969-05-30": "Memorial Day", "1969-07-04": "Independence Day", "1969-09-01": "Labor Day", - "1969-10-17": "Alaska Day (Observed)", + "1969-10-17": "Alaska Day (observed)", "1969-10-18": "Alaska Day", "1969-11-11": "Veterans Day", "1969-11-27": "Thanksgiving", @@ -231,11 +231,11 @@ "1970-02-22": "Washington's Birthday", "1970-03-30": "Seward's Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-18": "Alaska Day", - "1970-10-19": "Alaska Day (Observed)", + "1970-10-19": "Alaska Day (observed)", "1970-11-11": "Veterans Day", "1970-11-26": "Thanksgiving", "1970-12-25": "Christmas Day", @@ -244,15 +244,15 @@ "1971-03-29": "Seward's Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-18": "Alaska Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-27": "Seward's Day", @@ -293,7 +293,7 @@ "1975-07-04": "Independence Day", "1975-09-01": "Labor Day", "1975-10-13": "Columbus Day", - "1975-10-17": "Alaska Day (Observed)", + "1975-10-17": "Alaska Day (observed)", "1975-10-18": "Alaska Day", "1975-10-27": "Veterans Day", "1975-11-27": "Thanksgiving", @@ -303,15 +303,15 @@ "1976-03-29": "Seward's Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-18": "Alaska Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-03-28": "Seward's Day", @@ -323,9 +323,9 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-27": "Seward's Day", "1978-05-29": "Memorial Day", @@ -333,7 +333,7 @@ "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", "1978-10-18": "Alaska Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -346,7 +346,7 @@ "1979-10-08": "Columbus Day", "1979-10-18": "Alaska Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -356,7 +356,7 @@ "1980-07-04": "Independence Day", "1980-09-01": "Labor Day", "1980-10-13": "Columbus Day", - "1980-10-17": "Alaska Day (Observed)", + "1980-10-17": "Alaska Day (observed)", "1980-10-18": "Alaska Day", "1980-11-11": "Veterans Day", "1980-11-27": "Thanksgiving", @@ -365,12 +365,12 @@ "1981-02-16": "Washington's Birthday", "1981-03-30": "Seward's Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", "1981-10-18": "Alaska Day", - "1981-10-19": "Alaska Day (Observed)", + "1981-10-19": "Alaska Day (observed)", "1981-11-11": "Veterans Day", "1981-11-26": "Thanksgiving", "1981-12-25": "Christmas Day", @@ -379,15 +379,15 @@ "1982-03-29": "Seward's Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-10-18": "Alaska Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-03-28": "Seward's Day", @@ -399,9 +399,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-03-26": "Seward's Day", "1984-05-28": "Memorial Day", @@ -410,7 +410,7 @@ "1984-10-08": "Columbus Day", "1984-10-18": "Alaska Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -432,7 +432,7 @@ "1986-07-04": "Independence Day", "1986-09-01": "Labor Day", "1986-10-13": "Columbus Day", - "1986-10-17": "Alaska Day (Observed)", + "1986-10-17": "Alaska Day (observed)", "1986-10-18": "Alaska Day", "1986-11-11": "Veterans Day", "1986-11-27": "Thanksgiving", @@ -442,12 +442,12 @@ "1987-02-16": "Washington's Birthday", "1987-03-30": "Seward's Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", "1987-10-18": "Alaska Day", - "1987-10-19": "Alaska Day (Observed)", + "1987-10-19": "Alaska Day (observed)", "1987-11-11": "Veterans Day", "1987-11-26": "Thanksgiving", "1987-12-25": "Christmas Day", @@ -463,9 +463,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-27": "Seward's Day", @@ -474,7 +474,7 @@ "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", "1989-10-18": "Alaska Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -488,7 +488,7 @@ "1990-10-08": "Columbus Day", "1990-10-18": "Alaska Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -508,12 +508,12 @@ "1992-02-17": "Washington's Birthday", "1992-03-30": "Seward's Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", "1992-10-18": "Alaska Day", - "1992-10-19": "Alaska Day (Observed)", + "1992-10-19": "Alaska Day (observed)", "1992-11-11": "Veterans Day", "1992-11-26": "Thanksgiving", "1992-12-25": "Christmas Day", @@ -523,15 +523,15 @@ "1993-03-29": "Seward's Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-10-18": "Alaska Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -544,9 +544,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-03-27": "Seward's Day", @@ -555,7 +555,7 @@ "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", "1995-10-18": "Alaska Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -579,7 +579,7 @@ "1997-07-04": "Independence Day", "1997-09-01": "Labor Day", "1997-10-13": "Columbus Day", - "1997-10-17": "Alaska Day (Observed)", + "1997-10-17": "Alaska Day (observed)", "1997-10-18": "Alaska Day", "1997-11-11": "Veterans Day", "1997-11-27": "Thanksgiving", @@ -589,12 +589,12 @@ "1998-02-16": "Washington's Birthday", "1998-03-30": "Seward's Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", "1998-10-18": "Alaska Day", - "1998-10-19": "Alaska Day (Observed)", + "1998-10-19": "Alaska Day (observed)", "1998-11-11": "Veterans Day", "1998-11-26": "Thanksgiving", "1998-12-25": "Christmas Day", @@ -604,15 +604,15 @@ "1999-03-29": "Seward's Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-10-18": "Alaska Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -622,7 +622,7 @@ "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", "2000-10-18": "Alaska Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -636,7 +636,7 @@ "2001-10-08": "Columbus Day", "2001-10-18": "Alaska Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -659,7 +659,7 @@ "2003-07-04": "Independence Day", "2003-09-01": "Labor Day", "2003-10-13": "Columbus Day", - "2003-10-17": "Alaska Day (Observed)", + "2003-10-17": "Alaska Day (observed)", "2003-10-18": "Alaska Day", "2003-11-11": "Veterans Day", "2003-11-27": "Thanksgiving", @@ -670,15 +670,15 @@ "2004-03-29": "Seward's Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-10-18": "Alaska Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -691,9 +691,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-03-27": "Seward's Day", @@ -702,7 +702,7 @@ "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", "2006-10-18": "Alaska Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -716,7 +716,7 @@ "2007-10-08": "Columbus Day", "2007-10-18": "Alaska Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -727,7 +727,7 @@ "2008-07-04": "Independence Day", "2008-09-01": "Labor Day", "2008-10-13": "Columbus Day", - "2008-10-17": "Alaska Day (Observed)", + "2008-10-17": "Alaska Day (observed)", "2008-10-18": "Alaska Day", "2008-11-11": "Veterans Day", "2008-11-27": "Thanksgiving", @@ -737,12 +737,12 @@ "2009-02-16": "Washington's Birthday", "2009-03-30": "Seward's Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", "2009-10-18": "Alaska Day", - "2009-10-19": "Alaska Day (Observed)", + "2009-10-19": "Alaska Day (observed)", "2009-11-11": "Veterans Day", "2009-11-26": "Thanksgiving", "2009-12-25": "Christmas Day", @@ -752,15 +752,15 @@ "2010-03-29": "Seward's Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-10-18": "Alaska Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -773,9 +773,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-03-26": "Seward's Day", @@ -785,7 +785,7 @@ "2012-10-08": "Columbus Day", "2012-10-18": "Alaska Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -808,7 +808,7 @@ "2014-07-04": "Independence Day", "2014-09-01": "Labor Day", "2014-10-13": "Columbus Day", - "2014-10-17": "Alaska Day (Observed)", + "2014-10-17": "Alaska Day (observed)", "2014-10-18": "Alaska Day", "2014-11-11": "Veterans Day", "2014-11-27": "Thanksgiving", @@ -818,12 +818,12 @@ "2015-02-16": "Washington's Birthday", "2015-03-30": "Seward's Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Indigenous Peoples' Day", "2015-10-18": "Alaska Day", - "2015-10-19": "Alaska Day (Observed)", + "2015-10-19": "Alaska Day (observed)", "2015-11-11": "Veterans Day", "2015-11-26": "Thanksgiving", "2015-12-25": "Christmas Day", @@ -839,9 +839,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-03-27": "Seward's Day", @@ -850,7 +850,7 @@ "2017-09-04": "Labor Day", "2017-10-09": "Indigenous Peoples' Day", "2017-10-18": "Alaska Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -864,7 +864,7 @@ "2018-10-08": "Indigenous Peoples' Day", "2018-10-18": "Alaska Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -884,12 +884,12 @@ "2020-02-17": "Washington's Birthday", "2020-03-30": "Seward's Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Indigenous Peoples' Day", "2020-10-18": "Alaska Day", - "2020-10-19": "Alaska Day (Observed)", + "2020-10-19": "Alaska Day (observed)", "2020-11-11": "Veterans Day", "2020-11-26": "Thanksgiving", "2020-12-25": "Christmas Day", @@ -898,25 +898,25 @@ "2021-02-15": "Washington's Birthday", "2021-03-29": "Seward's Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Indigenous Peoples' Day", "2021-10-18": "Alaska Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-03-28": "Seward's Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Indigenous Peoples' Day", @@ -924,9 +924,9 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-03-27": "Seward's Day", @@ -936,7 +936,7 @@ "2023-09-04": "Labor Day", "2023-10-09": "Indigenous Peoples' Day", "2023-10-18": "Alaska Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -962,7 +962,7 @@ "2025-07-04": "Independence Day", "2025-09-01": "Labor Day", "2025-10-13": "Indigenous Peoples' Day", - "2025-10-17": "Alaska Day (Observed)", + "2025-10-17": "Alaska Day (observed)", "2025-10-18": "Alaska Day", "2025-11-11": "Veterans Day", "2025-11-27": "Thanksgiving", @@ -973,12 +973,12 @@ "2026-03-30": "Seward's Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Indigenous Peoples' Day", "2026-10-18": "Alaska Day", - "2026-10-19": "Alaska Day (Observed)", + "2026-10-19": "Alaska Day (observed)", "2026-11-11": "Veterans Day", "2026-11-26": "Thanksgiving", "2026-12-25": "Christmas Day", @@ -987,18 +987,18 @@ "2027-02-15": "Washington's Birthday", "2027-03-29": "Seward's Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Indigenous Peoples' Day", "2027-10-18": "Alaska Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -1009,7 +1009,7 @@ "2028-09-04": "Labor Day", "2028-10-09": "Indigenous Peoples' Day", "2028-10-18": "Alaska Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -1024,7 +1024,7 @@ "2029-10-08": "Indigenous Peoples' Day", "2029-10-18": "Alaska Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1049,7 +1049,7 @@ "2031-07-04": "Independence Day", "2031-09-01": "Labor Day", "2031-10-13": "Indigenous Peoples' Day", - "2031-10-17": "Alaska Day (Observed)", + "2031-10-17": "Alaska Day (observed)", "2031-10-18": "Alaska Day", "2031-11-11": "Veterans Day", "2031-11-27": "Thanksgiving", @@ -1059,25 +1059,25 @@ "2032-02-16": "Washington's Birthday", "2032-03-29": "Seward's Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Indigenous Peoples' Day", "2032-10-18": "Alaska Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-03-28": "Seward's Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Indigenous Peoples' Day", @@ -1085,9 +1085,9 @@ "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-03-27": "Seward's Day", @@ -1097,7 +1097,7 @@ "2034-09-04": "Labor Day", "2034-10-09": "Indigenous Peoples' Day", "2034-10-18": "Alaska Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1112,7 +1112,7 @@ "2035-10-08": "Indigenous Peoples' Day", "2035-10-18": "Alaska Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1124,7 +1124,7 @@ "2036-07-04": "Independence Day", "2036-09-01": "Labor Day", "2036-10-13": "Indigenous Peoples' Day", - "2036-10-17": "Alaska Day (Observed)", + "2036-10-17": "Alaska Day (observed)", "2036-10-18": "Alaska Day", "2036-11-11": "Veterans Day", "2036-11-27": "Thanksgiving", @@ -1135,12 +1135,12 @@ "2037-03-30": "Seward's Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Indigenous Peoples' Day", "2037-10-18": "Alaska Day", - "2037-10-19": "Alaska Day (Observed)", + "2037-10-19": "Alaska Day (observed)", "2037-11-11": "Veterans Day", "2037-11-26": "Thanksgiving", "2037-12-25": "Christmas Day", @@ -1149,25 +1149,25 @@ "2038-02-15": "Washington's Birthday", "2038-03-29": "Seward's Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Indigenous Peoples' Day", "2038-10-18": "Alaska Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-03-28": "Seward's Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Indigenous Peoples' Day", @@ -1175,9 +1175,9 @@ "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-26": "Seward's Day", @@ -1188,7 +1188,7 @@ "2040-10-08": "Indigenous Peoples' Day", "2040-10-18": "Alaska Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1213,7 +1213,7 @@ "2042-07-04": "Independence Day", "2042-09-01": "Labor Day", "2042-10-13": "Indigenous Peoples' Day", - "2042-10-17": "Alaska Day (Observed)", + "2042-10-17": "Alaska Day (observed)", "2042-10-18": "Alaska Day", "2042-11-11": "Veterans Day", "2042-11-27": "Thanksgiving", @@ -1224,12 +1224,12 @@ "2043-03-30": "Seward's Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Indigenous Peoples' Day", "2043-10-18": "Alaska Day", - "2043-10-19": "Alaska Day (Observed)", + "2043-10-19": "Alaska Day (observed)", "2043-11-11": "Veterans Day", "2043-11-26": "Thanksgiving", "2043-12-25": "Christmas Day", @@ -1239,7 +1239,7 @@ "2044-03-28": "Seward's Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Indigenous Peoples' Day", @@ -1247,9 +1247,9 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-03-27": "Seward's Day", @@ -1259,7 +1259,7 @@ "2045-09-04": "Labor Day", "2045-10-09": "Indigenous Peoples' Day", "2045-10-18": "Alaska Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1274,7 +1274,7 @@ "2046-10-08": "Indigenous Peoples' Day", "2046-10-18": "Alaska Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1296,12 +1296,12 @@ "2048-03-30": "Seward's Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Indigenous Peoples' Day", "2048-10-18": "Alaska Day", - "2048-10-19": "Alaska Day (Observed)", + "2048-10-19": "Alaska Day (observed)", "2048-11-11": "Veterans Day", "2048-11-26": "Thanksgiving", "2048-12-25": "Christmas Day", @@ -1310,25 +1310,25 @@ "2049-02-15": "Washington's Birthday", "2049-03-29": "Seward's Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Indigenous Peoples' Day", "2049-10-18": "Alaska Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-03-28": "Seward's Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Indigenous Peoples' Day", @@ -1336,5 +1336,5 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_AL.json b/snapshots/countries/US_AL.json index dca67b531..e7cd575ae 100644 --- a/snapshots/countries/US_AL.json +++ b/snapshots/countries/US_AL.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "George Washington & Thomas Jefferson's Birthday", "1950-04-24": "Confederate Memorial Day", "1950-05-30": "Memorial Day", "1950-06-05": "Jefferson Davis Birthday", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -37,7 +37,7 @@ "1953-04-27": "Confederate Memorial Day", "1953-05-30": "Memorial Day", "1953-06-01": "Jefferson Davis Birthday", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -49,13 +49,13 @@ "1954-05-30": "Memorial Day", "1954-06-07": "Jefferson Davis Birthday", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "George Washington & Thomas Jefferson's Birthday", "1955-04-25": "Confederate Memorial Day", @@ -66,9 +66,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "George Washington & Thomas Jefferson's Birthday", "1956-04-23": "Confederate Memorial Day", "1956-05-30": "Memorial Day", @@ -76,7 +76,7 @@ "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -104,7 +104,7 @@ "1959-04-27": "Confederate Memorial Day", "1959-05-30": "Memorial Day", "1959-06-01": "Jefferson Davis Birthday", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -120,16 +120,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "George Washington & Thomas Jefferson's Birthday", "1961-04-24": "Confederate Memorial Day", "1961-05-30": "Memorial Day", "1961-06-05": "Jefferson Davis Birthday", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -141,7 +141,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -159,7 +159,7 @@ "1964-04-27": "Confederate Memorial Day", "1964-05-30": "Memorial Day", "1964-06-01": "Jefferson Davis Birthday", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -171,13 +171,13 @@ "1965-05-30": "Memorial Day", "1965-06-07": "Jefferson Davis Birthday", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "George Washington & Thomas Jefferson's Birthday", "1966-04-25": "Confederate Memorial Day", @@ -188,16 +188,16 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "George Washington & Thomas Jefferson's Birthday", "1967-04-24": "Confederate Memorial Day", "1967-05-30": "Memorial Day", "1967-06-05": "Jefferson Davis Birthday", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -226,7 +226,7 @@ "1970-04-27": "Confederate Memorial Day", "1970-05-30": "Memorial Day", "1970-06-01": "Jefferson Davis Birthday", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -238,14 +238,14 @@ "1971-05-31": "Memorial Day", "1971-06-07": "Jefferson Davis Birthday", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day / Fraternal Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "George Washington & Thomas Jefferson's Birthday", "1972-04-24": "Confederate Memorial Day", @@ -296,14 +296,14 @@ "1976-05-31": "Memorial Day", "1976-06-07": "Jefferson Davis Birthday", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day / Fraternal Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "George Washington & Thomas Jefferson's Birthday", "1977-04-25": "Confederate Memorial Day", @@ -315,9 +315,9 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "George Washington & Thomas Jefferson's Birthday", "1978-04-24": "Confederate Memorial Day", "1978-05-29": "Memorial Day", @@ -325,7 +325,7 @@ "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day / Fraternal Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -338,7 +338,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day / Fraternal Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -357,7 +357,7 @@ "1981-04-27": "Confederate Memorial Day", "1981-05-25": "Memorial Day", "1981-06-01": "Jefferson Davis Birthday", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day / Fraternal Day", @@ -370,14 +370,14 @@ "1982-05-31": "Memorial Day", "1982-06-07": "Jefferson Davis Birthday", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day / Fraternal Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "George Washington & Thomas Jefferson's Birthday", "1983-04-25": "Confederate Memorial Day", @@ -389,9 +389,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "George Washington & Thomas Jefferson's Birthday", "1984-04-23": "Confederate Memorial Day", "1984-05-28": "Memorial Day", @@ -400,7 +400,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day / Fraternal Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -432,7 +432,7 @@ "1987-04-27": "Confederate Memorial Day", "1987-05-25": "Memorial Day", "1987-06-01": "Jefferson Davis Birthday", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day / Fraternal Day", @@ -451,9 +451,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King, Jr & Robert E. Lee's Birthday", "1989-02-20": "George Washington & Thomas Jefferson's Birthday", "1989-04-24": "Confederate Memorial Day", @@ -462,7 +462,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day / Fraternal Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -476,7 +476,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day / Fraternal Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -497,7 +497,7 @@ "1992-04-27": "Confederate Memorial Day", "1992-05-25": "Memorial Day", "1992-06-01": "Jefferson Davis Birthday", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day / Fraternal Day", @@ -511,14 +511,14 @@ "1993-05-31": "Memorial Day", "1993-06-07": "Jefferson Davis Birthday", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day / Fraternal Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King, Jr & Robert E. Lee's Birthday", "1994-02-21": "George Washington & Thomas Jefferson's Birthday", @@ -531,9 +531,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King, Jr & Robert E. Lee's Birthday", "1995-02-20": "George Washington & Thomas Jefferson's Birthday", "1995-04-24": "Confederate Memorial Day", @@ -542,7 +542,7 @@ "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day / Fraternal Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -576,7 +576,7 @@ "1998-04-27": "Confederate Memorial Day", "1998-05-25": "Memorial Day", "1998-06-01": "Jefferson Davis Birthday", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day / Fraternal Day", @@ -590,14 +590,14 @@ "1999-05-31": "Memorial Day", "1999-06-07": "Jefferson Davis Birthday", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day / Fraternal Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2000-02-21": "George Washington & Thomas Jefferson's Birthday", @@ -607,7 +607,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day / American Indian Heritage Day / Fraternal Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -621,7 +621,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -655,14 +655,14 @@ "2004-05-31": "Memorial Day", "2004-06-07": "Jefferson Davis Birthday", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2005-02-21": "George Washington & Thomas Jefferson's Birthday", @@ -675,9 +675,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2006-02-20": "George Washington & Thomas Jefferson's Birthday", "2006-04-24": "Confederate Memorial Day", @@ -686,7 +686,7 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day / American Indian Heritage Day / Fraternal Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -700,7 +700,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -721,7 +721,7 @@ "2009-04-27": "Confederate Memorial Day", "2009-05-25": "Memorial Day", "2009-06-01": "Jefferson Davis Birthday", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day / American Indian Heritage Day / Fraternal Day", @@ -735,14 +735,14 @@ "2010-05-31": "Memorial Day", "2010-06-07": "Jefferson Davis Birthday", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2011-02-21": "George Washington & Thomas Jefferson's Birthday", @@ -755,9 +755,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2012-02-20": "George Washington & Thomas Jefferson's Birthday", "2012-04-23": "Confederate Memorial Day", @@ -767,7 +767,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -800,7 +800,7 @@ "2015-04-27": "Confederate Memorial Day", "2015-05-25": "Memorial Day", "2015-06-01": "Jefferson Davis Birthday", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day / American Indian Heritage Day / Fraternal Day", @@ -819,9 +819,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2017-02-20": "George Washington & Thomas Jefferson's Birthday", "2017-04-24": "Confederate Memorial Day", @@ -830,7 +830,7 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day / American Indian Heritage Day / Fraternal Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -844,7 +844,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -865,7 +865,7 @@ "2020-04-27": "Confederate Memorial Day", "2020-05-25": "Memorial Day", "2020-06-01": "Jefferson Davis Birthday", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day / American Indian Heritage Day / Fraternal Day", @@ -878,17 +878,17 @@ "2021-04-26": "Confederate Memorial Day", "2021-05-31": "Memorial Day", "2021-06-07": "Jefferson Davis Birthday", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2022-02-21": "George Washington & Thomas Jefferson's Birthday", @@ -896,16 +896,16 @@ "2022-05-30": "Memorial Day", "2022-06-06": "Jefferson Davis Birthday", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2023-02-20": "George Washington & Thomas Jefferson's Birthday", "2023-04-24": "Confederate Memorial Day", @@ -915,7 +915,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day / American Indian Heritage Day / Fraternal Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -952,7 +952,7 @@ "2026-05-25": "Memorial Day", "2026-06-01": "Jefferson Davis Birthday", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day / American Indian Heritage Day / Fraternal Day", @@ -965,17 +965,17 @@ "2027-04-26": "Confederate Memorial Day", "2027-05-31": "Memorial Day", "2027-06-07": "Jefferson Davis Birthday", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2028-02-21": "George Washington & Thomas Jefferson's Birthday", @@ -986,7 +986,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day / American Indian Heritage Day / Fraternal Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -1001,7 +1001,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1036,17 +1036,17 @@ "2032-04-26": "Confederate Memorial Day", "2032-05-31": "Memorial Day", "2032-06-07": "Jefferson Davis Birthday", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2033-02-21": "George Washington & Thomas Jefferson's Birthday", @@ -1054,16 +1054,16 @@ "2033-05-30": "Memorial Day", "2033-06-06": "Jefferson Davis Birthday", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2034-02-20": "George Washington & Thomas Jefferson's Birthday", "2034-04-24": "Confederate Memorial Day", @@ -1073,7 +1073,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day / American Indian Heritage Day / Fraternal Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1088,7 +1088,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1111,7 +1111,7 @@ "2037-05-25": "Memorial Day", "2037-06-01": "Jefferson Davis Birthday", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day / American Indian Heritage Day / Fraternal Day", @@ -1124,17 +1124,17 @@ "2038-04-26": "Confederate Memorial Day", "2038-05-31": "Memorial Day", "2038-06-07": "Jefferson Davis Birthday", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2039-02-21": "George Washington & Thomas Jefferson's Birthday", @@ -1142,16 +1142,16 @@ "2039-05-30": "Memorial Day", "2039-06-06": "Jefferson Davis Birthday", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2040-02-20": "George Washington & Thomas Jefferson's Birthday", "2040-04-23": "Confederate Memorial Day", @@ -1162,7 +1162,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1198,7 +1198,7 @@ "2043-05-25": "Memorial Day", "2043-06-01": "Jefferson Davis Birthday", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day / American Indian Heritage Day / Fraternal Day", @@ -1212,16 +1212,16 @@ "2044-05-30": "Memorial Day", "2044-06-06": "Jefferson Davis Birthday", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2045-02-20": "George Washington & Thomas Jefferson's Birthday", "2045-04-24": "Confederate Memorial Day", @@ -1231,7 +1231,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day / American Indian Heritage Day / Fraternal Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1246,7 +1246,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1269,7 +1269,7 @@ "2048-05-25": "Memorial Day", "2048-06-01": "Jefferson Davis Birthday", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day / American Indian Heritage Day / Fraternal Day", @@ -1282,17 +1282,17 @@ "2049-04-26": "Confederate Memorial Day", "2049-05-31": "Memorial Day", "2049-06-07": "Jefferson Davis Birthday", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King, Jr & Robert E. Lee's Birthday", "2050-02-21": "George Washington & Thomas Jefferson's Birthday", @@ -1300,12 +1300,12 @@ "2050-05-30": "Memorial Day", "2050-06-06": "Jefferson Davis Birthday", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day / American Indian Heritage Day / Fraternal Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_AR.json b/snapshots/countries/US_AR.json index 68001ba80..7482ecf33 100644 --- a/snapshots/countries/US_AR.json +++ b/snapshots/countries/US_AR.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "George Washington's Birthday and Daisy Gatson Bates Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "1987-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "1989-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "1992-02-17": "George Washington's Birthday and Daisy Gatson Bates Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "1994-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "1995-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "1998-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2000-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2005-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2006-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2009-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2011-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2012-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2015-01-19": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2015-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -639,15 +639,15 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2017-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -658,7 +658,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -674,7 +674,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "George Washington's Birthday and Daisy Gatson Bates Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -684,37 +684,37 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2026-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -753,16 +753,16 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", @@ -770,7 +770,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -782,7 +782,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -809,37 +809,37 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -851,7 +851,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -869,7 +869,7 @@ "2037-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -879,30 +879,30 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "2040-05-28": "Memorial Day", @@ -910,7 +910,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -938,7 +938,7 @@ "2043-02-16": "George Washington's Birthday and Daisy Gatson Bates Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -949,22 +949,22 @@ "2044-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "George Washington's Birthday and Daisy Gatson Bates Day", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -976,7 +976,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -994,7 +994,7 @@ "2048-02-17": "George Washington's Birthday and Daisy Gatson Bates Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1004,26 +1004,26 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "George Washington's Birthday and Daisy Gatson Bates Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "George Washington's Birthday and Daisy Gatson Bates Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_AS.json b/snapshots/countries/US_AS.json index 22d42496e..89836307e 100644 --- a/snapshots/countries/US_AS.json +++ b/snapshots/countries/US_AS.json @@ -1,15 +1,15 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", - "1950-12-22": "Christmas Eve (Observed)", + "1950-12-22": "Christmas Eve (observed)", "1950-12-24": "Christmas Eve", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", @@ -19,7 +19,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-24": "Christmas Eve", "1951-12-25": "Christmas Day", @@ -36,7 +36,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -48,15 +48,15 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-23": "Christmas Eve (Observed)", - "1954-12-24": "Christmas Day (Observed); Christmas Eve", + "1954-12-23": "Christmas Eve (observed)", + "1954-12-24": "Christmas Day (observed); Christmas Eve", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -65,19 +65,19 @@ "1955-10-12": "Columbus Day", "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", - "1955-12-23": "Christmas Eve (Observed)", + "1955-12-23": "Christmas Eve (observed)", "1955-12-24": "Christmas Eve", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-24": "Christmas Eve", "1956-12-25": "Christmas Day", @@ -104,7 +104,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -120,21 +120,21 @@ "1960-10-12": "Columbus Day", "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", - "1960-12-23": "Christmas Eve (Observed)", + "1960-12-23": "Christmas Eve (observed)", "1960-12-24": "Christmas Eve", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", - "1961-12-22": "Christmas Eve (Observed)", + "1961-12-22": "Christmas Eve (observed)", "1961-12-24": "Christmas Eve", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", @@ -144,7 +144,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-24": "Christmas Eve", "1962-12-25": "Christmas Day", @@ -161,7 +161,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -173,15 +173,15 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-23": "Christmas Eve (Observed)", - "1965-12-24": "Christmas Day (Observed); Christmas Eve", + "1965-12-23": "Christmas Eve (observed)", + "1965-12-24": "Christmas Day (observed); Christmas Eve", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -190,21 +190,21 @@ "1966-10-12": "Columbus Day", "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", - "1966-12-23": "Christmas Eve (Observed)", + "1966-12-23": "Christmas Eve (observed)", "1966-12-24": "Christmas Eve", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", - "1967-12-22": "Christmas Eve (Observed)", + "1967-12-22": "Christmas Eve (observed)", "1967-12-24": "Christmas Eve", "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", @@ -230,7 +230,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -242,15 +242,15 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-23": "Christmas Eve (Observed)", - "1971-12-24": "Christmas Day (Observed); Christmas Eve", + "1971-12-23": "Christmas Eve (observed)", + "1971-12-24": "Christmas Day (observed); Christmas Eve", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -259,7 +259,7 @@ "1972-10-09": "Columbus Day", "1972-10-23": "Veterans Day", "1972-11-23": "Thanksgiving", - "1972-12-22": "Christmas Eve (Observed)", + "1972-12-22": "Christmas Eve (observed)", "1972-12-24": "Christmas Eve", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", @@ -296,15 +296,15 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-23": "Christmas Eve (Observed)", - "1976-12-24": "Christmas Day (Observed); Christmas Eve", + "1976-12-23": "Christmas Eve (observed)", + "1976-12-24": "Christmas Day (observed); Christmas Eve", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -313,21 +313,21 @@ "1977-10-10": "Columbus Day", "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", - "1977-12-23": "Christmas Eve (Observed)", + "1977-12-23": "Christmas Eve (observed)", "1977-12-24": "Christmas Eve", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", - "1978-12-22": "Christmas Eve (Observed)", + "1978-12-22": "Christmas Eve (observed)", "1978-12-24": "Christmas Eve", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -337,7 +337,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-24": "Christmas Eve", "1979-12-25": "Christmas Day", @@ -354,7 +354,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -366,15 +366,15 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-23": "Christmas Eve (Observed)", - "1982-12-24": "Christmas Day (Observed); Christmas Eve", + "1982-12-23": "Christmas Eve (observed)", + "1982-12-24": "Christmas Day (observed); Christmas Eve", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -383,19 +383,19 @@ "1983-10-10": "Columbus Day", "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", - "1983-12-23": "Christmas Eve (Observed)", + "1983-12-23": "Christmas Eve (observed)", "1983-12-24": "Christmas Eve", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-24": "Christmas Eve", "1984-12-25": "Christmas Day", @@ -424,7 +424,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -441,22 +441,22 @@ "1988-10-10": "Columbus Day", "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", - "1988-12-23": "Christmas Eve (Observed)", + "1988-12-23": "Christmas Eve (observed)", "1988-12-24": "Christmas Eve", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", - "1989-12-22": "Christmas Eve (Observed)", + "1989-12-22": "Christmas Eve (observed)", "1989-12-24": "Christmas Eve", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -467,7 +467,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-24": "Christmas Eve", "1990-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -499,15 +499,15 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-23": "Christmas Eve (Observed)", - "1993-12-24": "Christmas Day (Observed); Christmas Eve", + "1993-12-23": "Christmas Eve (observed)", + "1993-12-24": "Christmas Day (observed); Christmas Eve", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -517,22 +517,22 @@ "1994-10-10": "Columbus Day", "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", - "1994-12-23": "Christmas Eve (Observed)", + "1994-12-23": "Christmas Eve (observed)", "1994-12-24": "Christmas Eve", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", - "1995-12-22": "Christmas Eve (Observed)", + "1995-12-22": "Christmas Eve (observed)", "1995-12-24": "Christmas Eve", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -561,7 +561,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -574,15 +574,15 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-23": "Christmas Eve (Observed)", - "1999-12-24": "Christmas Day (Observed); Christmas Eve", + "1999-12-23": "Christmas Eve (observed)", + "1999-12-24": "Christmas Day (observed); Christmas Eve", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -590,10 +590,10 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", - "2000-12-22": "Christmas Eve (Observed)", + "2000-12-22": "Christmas Eve (observed)", "2000-12-24": "Christmas Eve", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -604,7 +604,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-24": "Christmas Eve", "2001-12-25": "Christmas Day", @@ -635,15 +635,15 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-23": "Christmas Eve (Observed)", - "2004-12-24": "Christmas Day (Observed); Christmas Eve", + "2004-12-23": "Christmas Eve (observed)", + "2004-12-24": "Christmas Day (observed); Christmas Eve", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -653,22 +653,22 @@ "2005-10-10": "Columbus Day", "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", - "2005-12-23": "Christmas Eve (Observed)", + "2005-12-23": "Christmas Eve (observed)", "2005-12-24": "Christmas Eve", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", - "2006-12-22": "Christmas Eve (Observed)", + "2006-12-22": "Christmas Eve (observed)", "2006-12-24": "Christmas Eve", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -679,7 +679,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-24": "Christmas Eve", "2007-12-25": "Christmas Day", @@ -698,7 +698,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -711,15 +711,15 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-23": "Christmas Eve (Observed)", - "2010-12-24": "Christmas Day (Observed); Christmas Eve", + "2010-12-23": "Christmas Eve (observed)", + "2010-12-24": "Christmas Day (observed); Christmas Eve", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -729,12 +729,12 @@ "2011-10-10": "Columbus Day", "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", - "2011-12-23": "Christmas Eve (Observed)", + "2011-12-23": "Christmas Eve (observed)", "2011-12-24": "Christmas Eve", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -742,7 +742,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-24": "Christmas Eve", "2012-12-25": "Christmas Day", @@ -772,7 +772,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -789,22 +789,22 @@ "2016-10-10": "Columbus Day", "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", - "2016-12-23": "Christmas Eve (Observed)", + "2016-12-23": "Christmas Eve (observed)", "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", - "2017-12-22": "Christmas Eve (Observed)", + "2017-12-22": "Christmas Eve (observed)", "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -815,7 +815,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", @@ -834,7 +834,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -846,35 +846,35 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-23": "Christmas Eve (Observed)", - "2021-12-24": "Christmas Day (Observed); Christmas Eve", + "2021-12-23": "Christmas Eve (observed)", + "2021-12-24": "Christmas Day (observed); Christmas Eve", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", - "2022-12-23": "Christmas Eve (Observed)", + "2022-12-23": "Christmas Eve (observed)", "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -882,10 +882,10 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", - "2023-12-22": "Christmas Eve (Observed)", + "2023-12-22": "Christmas Eve (observed)", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", @@ -917,7 +917,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -929,18 +929,18 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-23": "Christmas Eve (Observed)", - "2027-12-24": "Christmas Day (Observed); Christmas Eve", + "2027-12-23": "Christmas Eve (observed)", + "2027-12-24": "Christmas Day (observed); Christmas Eve", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -949,10 +949,10 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", - "2028-12-22": "Christmas Eve (Observed)", + "2028-12-22": "Christmas Eve (observed)", "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", @@ -964,7 +964,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", @@ -996,35 +996,35 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-23": "Christmas Eve (Observed)", - "2032-12-24": "Christmas Day (Observed); Christmas Eve", + "2032-12-23": "Christmas Eve (observed)", + "2032-12-24": "Christmas Day (observed); Christmas Eve", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", - "2033-12-23": "Christmas Eve (Observed)", + "2033-12-23": "Christmas Eve (observed)", "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -1032,10 +1032,10 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", - "2034-12-22": "Christmas Eve (Observed)", + "2034-12-22": "Christmas Eve (observed)", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", @@ -1047,7 +1047,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", @@ -1068,7 +1068,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1080,35 +1080,35 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-23": "Christmas Eve (Observed)", - "2038-12-24": "Christmas Day (Observed); Christmas Eve", + "2038-12-23": "Christmas Eve (observed)", + "2038-12-24": "Christmas Day (observed); Christmas Eve", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", - "2039-12-23": "Christmas Eve (Observed)", + "2039-12-23": "Christmas Eve (observed)", "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1117,7 +1117,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", @@ -1150,7 +1150,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1163,18 +1163,18 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", - "2044-12-23": "Christmas Eve (Observed)", + "2044-12-23": "Christmas Eve (observed)", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1182,10 +1182,10 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", - "2045-12-22": "Christmas Eve (Observed)", + "2045-12-22": "Christmas Eve (observed)", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", @@ -1197,7 +1197,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", @@ -1218,7 +1218,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1230,31 +1230,31 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-23": "Christmas Eve (Observed)", - "2049-12-24": "Christmas Day (Observed); Christmas Eve", + "2049-12-23": "Christmas Eve (observed)", + "2049-12-24": "Christmas Day (observed); Christmas Eve", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", - "2050-12-23": "Christmas Eve (Observed)", + "2050-12-23": "Christmas Eve (observed)", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_AZ.json b/snapshots/countries/US_AZ.json index 5cf2c5104..ad45f1f69 100644 --- a/snapshots/countries/US_AZ.json +++ b/snapshots/countries/US_AZ.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -32,7 +32,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -43,14 +43,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -93,7 +93,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -143,7 +143,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -154,14 +154,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -204,7 +204,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -215,14 +215,14 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -263,14 +263,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -314,7 +314,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -325,14 +325,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -377,7 +377,7 @@ "1987-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -432,7 +432,7 @@ "1992-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -444,14 +444,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -499,7 +499,7 @@ "1998-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -511,14 +511,14 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -566,14 +566,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -622,7 +622,7 @@ "2009-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -634,14 +634,14 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2011-02-21": "Washington's Birthday", @@ -652,9 +652,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -662,7 +662,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -689,7 +689,7 @@ "2015-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -706,16 +706,16 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -727,7 +727,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -744,7 +744,7 @@ "2020-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -755,32 +755,32 @@ "2021-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -788,7 +788,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -819,7 +819,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -830,17 +830,17 @@ "2027-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2028-02-21": "Washington's Birthday", @@ -849,7 +849,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -862,7 +862,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -891,32 +891,32 @@ "2032-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -924,7 +924,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -937,7 +937,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -956,7 +956,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -967,32 +967,32 @@ "2038-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1001,7 +1001,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1031,7 +1031,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1043,16 +1043,16 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1060,7 +1060,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1073,7 +1073,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1092,7 +1092,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1103,28 +1103,28 @@ "2049-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_CA.json b/snapshots/countries/US_CA.json index 556bc2e63..f48e04392 100644 --- a/snapshots/countries/US_CA.json +++ b/snapshots/countries/US_CA.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -195,16 +195,16 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", - "1972-02-11": "Lincoln's Birthday (Observed)", + "1972-02-11": "Lincoln's Birthday (observed)", "1972-02-12": "Lincoln's Birthday", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -250,17 +250,17 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Day After Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", - "1977-02-11": "Lincoln's Birthday (Observed)", + "1977-02-11": "Lincoln's Birthday (observed)", "1977-02-12": "Lincoln's Birthday", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -271,17 +271,17 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Day After Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-12": "Lincoln's Birthday", - "1978-02-13": "Lincoln's Birthday (Observed)", + "1978-02-13": "Lincoln's Birthday (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Day After Thanksgiving", @@ -294,7 +294,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Day After Thanksgiving", "1979-12-25": "Christmas Day", @@ -313,7 +313,7 @@ "1981-02-12": "Lincoln's Birthday", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -326,17 +326,17 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Day After Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", - "1983-02-11": "Lincoln's Birthday (Observed)", + "1983-02-11": "Lincoln's Birthday (observed)", "1983-02-12": "Lincoln's Birthday", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -347,18 +347,18 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Day After Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-12": "Lincoln's Birthday", - "1984-02-13": "Lincoln's Birthday (Observed)", + "1984-02-13": "Lincoln's Birthday (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Day After Thanksgiving", "1984-12-25": "Christmas Day", @@ -390,7 +390,7 @@ "1987-02-12": "Lincoln's Birthday", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -410,18 +410,18 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Day After Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-12": "Lincoln's Birthday", - "1989-02-13": "Lincoln's Birthday (Observed)", + "1989-02-13": "Lincoln's Birthday (observed)", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Day After Thanksgiving", @@ -435,7 +435,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Day After Thanksgiving", "1990-12-25": "Christmas Day", @@ -456,7 +456,7 @@ "1992-02-12": "Lincoln's Birthday", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -470,18 +470,18 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Day After Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", - "1994-02-11": "Lincoln's Birthday (Observed)", + "1994-02-11": "Lincoln's Birthday (observed)", "1994-02-12": "Lincoln's Birthday", "1994-02-21": "Washington's Birthday", "1994-05-30": "Memorial Day", @@ -492,19 +492,19 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Day After Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-12": "Lincoln's Birthday", - "1995-02-13": "Lincoln's Birthday (Observed)", + "1995-02-13": "Lincoln's Birthday (observed)", "1995-02-20": "Washington's Birthday", "1995-03-31": "Cesar Chavez Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Day After Thanksgiving", @@ -514,7 +514,7 @@ "1996-02-12": "Lincoln's Birthday", "1996-02-19": "Washington's Birthday", "1996-03-31": "Cesar Chavez Day", - "1996-04-01": "Cesar Chavez Day (Observed)", + "1996-04-01": "Cesar Chavez Day (observed)", "1996-05-27": "Memorial Day", "1996-07-04": "Independence Day", "1996-09-02": "Labor Day", @@ -542,7 +542,7 @@ "1998-02-16": "Washington's Birthday", "1998-03-31": "Cesar Chavez Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -557,18 +557,18 @@ "1999-03-31": "Cesar Chavez Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Day After Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", - "2000-02-11": "Lincoln's Birthday (Observed)", + "2000-02-11": "Lincoln's Birthday (observed)", "2000-02-12": "Lincoln's Birthday", "2000-02-21": "Washington's Birthday", "2000-03-31": "Cesar Chavez Day", @@ -576,7 +576,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Day After Thanksgiving", @@ -591,7 +591,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Day After Thanksgiving", "2001-12-25": "Christmas Day", @@ -600,7 +600,7 @@ "2002-02-12": "Lincoln's Birthday", "2002-02-18": "Washington's Birthday", "2002-03-31": "Cesar Chavez Day", - "2002-04-01": "Cesar Chavez Day (Observed)", + "2002-04-01": "Cesar Chavez Day (observed)", "2002-05-27": "Memorial Day", "2002-07-04": "Independence Day", "2002-09-02": "Labor Day", @@ -629,18 +629,18 @@ "2004-03-31": "Cesar Chavez Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Day After Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", - "2005-02-11": "Lincoln's Birthday (Observed)", + "2005-02-11": "Lincoln's Birthday (observed)", "2005-02-12": "Lincoln's Birthday", "2005-02-21": "Washington's Birthday", "2005-03-31": "Cesar Chavez Day", @@ -652,19 +652,19 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Day After Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-12": "Lincoln's Birthday", - "2006-02-13": "Lincoln's Birthday (Observed)", + "2006-02-13": "Lincoln's Birthday (observed)", "2006-02-20": "Washington's Birthday", "2006-03-31": "Cesar Chavez Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Day After Thanksgiving", @@ -679,7 +679,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Day After Thanksgiving", "2007-12-25": "Christmas Day", @@ -702,7 +702,7 @@ "2009-02-16": "Washington's Birthday", "2009-03-31": "Cesar Chavez Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -715,14 +715,14 @@ "2010-03-31": "Cesar Chavez Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Day After Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -734,9 +734,9 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Day After Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-03-31": "Cesar Chavez Day", @@ -744,7 +744,7 @@ "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Day After Thanksgiving", "2012-12-25": "Christmas Day", @@ -752,7 +752,7 @@ "2013-01-21": "Martin Luther King Jr. Day", "2013-02-18": "Washington's Birthday", "2013-03-31": "Cesar Chavez Day", - "2013-04-01": "Cesar Chavez Day (Observed)", + "2013-04-01": "Cesar Chavez Day (observed)", "2013-05-27": "Memorial Day", "2013-07-04": "Independence Day", "2013-09-02": "Labor Day", @@ -778,7 +778,7 @@ "2015-02-16": "Washington's Birthday", "2015-03-31": "Cesar Chavez Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -796,9 +796,9 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Day After Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-15": "Susan B. Anthony Day", "2017-02-20": "Washington's Birthday", @@ -806,7 +806,7 @@ "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Day After Thanksgiving", @@ -820,7 +820,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Day After Thanksgiving", "2018-12-25": "Christmas Day", @@ -829,7 +829,7 @@ "2019-02-15": "Susan B. Anthony Day", "2019-02-18": "Washington's Birthday", "2019-03-31": "Cesar Chavez Day", - "2019-04-01": "Cesar Chavez Day (Observed)", + "2019-04-01": "Cesar Chavez Day (observed)", "2019-05-27": "Memorial Day", "2019-07-04": "Independence Day", "2019-09-02": "Labor Day", @@ -843,7 +843,7 @@ "2020-02-17": "Washington's Birthday", "2020-03-31": "Cesar Chavez Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -855,17 +855,17 @@ "2021-02-15": "Susan B. Anthony Day; Washington's Birthday", "2021-03-31": "Cesar Chavez Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Day After Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-15": "Susan B. Anthony Day", @@ -873,16 +873,16 @@ "2022-03-31": "Cesar Chavez Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-11-25": "Day After Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-15": "Susan B. Anthony Day", "2023-02-20": "Washington's Birthday", @@ -891,7 +891,7 @@ "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Day After Thanksgiving", @@ -901,7 +901,7 @@ "2024-02-15": "Susan B. Anthony Day", "2024-02-19": "Washington's Birthday", "2024-03-31": "Cesar Chavez Day", - "2024-04-01": "Cesar Chavez Day (Observed)", + "2024-04-01": "Cesar Chavez Day (observed)", "2024-05-27": "Memorial Day", "2024-06-19": "Juneteenth National Independence Day", "2024-07-04": "Independence Day", @@ -930,7 +930,7 @@ "2026-03-31": "Cesar Chavez Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -942,17 +942,17 @@ "2027-02-15": "Susan B. Anthony Day; Washington's Birthday", "2027-03-31": "Cesar Chavez Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Day After Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-15": "Susan B. Anthony Day", @@ -962,7 +962,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Day After Thanksgiving", @@ -977,7 +977,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Day After Thanksgiving", "2029-12-25": "Christmas Day", @@ -986,7 +986,7 @@ "2030-02-15": "Susan B. Anthony Day", "2030-02-18": "Washington's Birthday", "2030-03-31": "Cesar Chavez Day", - "2030-04-01": "Cesar Chavez Day (Observed)", + "2030-04-01": "Cesar Chavez Day (observed)", "2030-05-27": "Memorial Day", "2030-06-19": "Juneteenth National Independence Day", "2030-07-04": "Independence Day", @@ -1014,17 +1014,17 @@ "2032-02-16": "Washington's Birthday", "2032-03-31": "Cesar Chavez Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Day After Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-15": "Susan B. Anthony Day", @@ -1032,16 +1032,16 @@ "2033-03-31": "Cesar Chavez Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-11-25": "Day After Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-15": "Susan B. Anthony Day", "2034-02-20": "Washington's Birthday", @@ -1050,7 +1050,7 @@ "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Day After Thanksgiving", @@ -1065,7 +1065,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Day After Thanksgiving", "2035-12-25": "Christmas Day", @@ -1089,7 +1089,7 @@ "2037-03-31": "Cesar Chavez Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -1101,17 +1101,17 @@ "2038-02-15": "Susan B. Anthony Day; Washington's Birthday", "2038-03-31": "Cesar Chavez Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Day After Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-15": "Susan B. Anthony Day", @@ -1119,16 +1119,16 @@ "2039-03-31": "Cesar Chavez Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-11-25": "Day After Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-15": "Susan B. Anthony Day", "2040-02-20": "Washington's Birthday", @@ -1138,7 +1138,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Day After Thanksgiving", "2040-12-25": "Christmas Day", @@ -1147,7 +1147,7 @@ "2041-02-15": "Susan B. Anthony Day", "2041-02-18": "Washington's Birthday", "2041-03-31": "Cesar Chavez Day", - "2041-04-01": "Cesar Chavez Day (Observed)", + "2041-04-01": "Cesar Chavez Day (observed)", "2041-05-27": "Memorial Day", "2041-06-19": "Juneteenth National Independence Day", "2041-07-04": "Independence Day", @@ -1176,7 +1176,7 @@ "2043-03-31": "Cesar Chavez Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1189,16 +1189,16 @@ "2044-03-31": "Cesar Chavez Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-11-25": "Day After Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-15": "Susan B. Anthony Day", "2045-02-20": "Washington's Birthday", @@ -1207,7 +1207,7 @@ "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Day After Thanksgiving", @@ -1222,7 +1222,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Day After Thanksgiving", "2046-12-25": "Christmas Day", @@ -1231,7 +1231,7 @@ "2047-02-15": "Susan B. Anthony Day", "2047-02-18": "Washington's Birthday", "2047-03-31": "Cesar Chavez Day", - "2047-04-01": "Cesar Chavez Day (Observed)", + "2047-04-01": "Cesar Chavez Day (observed)", "2047-05-27": "Memorial Day", "2047-06-19": "Juneteenth National Independence Day", "2047-07-04": "Independence Day", @@ -1247,7 +1247,7 @@ "2048-03-31": "Cesar Chavez Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1259,17 +1259,17 @@ "2049-02-15": "Susan B. Anthony Day; Washington's Birthday", "2049-03-31": "Cesar Chavez Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Day After Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-15": "Susan B. Anthony Day", @@ -1277,12 +1277,12 @@ "2050-03-31": "Cesar Chavez Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-11-25": "Day After Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_CO.json b/snapshots/countries/US_CO.json index ba4f0854e..5381b49c8 100644 --- a/snapshots/countries/US_CO.json +++ b/snapshots/countries/US_CO.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,36 +462,38 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", "2001-01-15": "Martin Luther King Jr. Day", "2001-02-19": "Washington's Birthday", + "2001-03-31": "Cesar Chavez Day", "2001-05-28": "Memorial Day", "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-21": "Martin Luther King Jr. Day", "2002-02-18": "Washington's Birthday", + "2002-03-31": "Cesar Chavez Day", "2002-05-27": "Memorial Day", "2002-07-04": "Independence Day", "2002-09-02": "Labor Day", @@ -501,6 +503,7 @@ "2003-01-01": "New Year's Day", "2003-01-20": "Martin Luther King Jr. Day", "2003-02-17": "Washington's Birthday", + "2003-03-31": "Cesar Chavez Day", "2003-05-26": "Memorial Day", "2003-07-04": "Independence Day", "2003-09-01": "Labor Day", @@ -510,49 +513,54 @@ "2004-01-01": "New Year's Day", "2004-01-19": "Martin Luther King Jr. Day", "2004-02-16": "Washington's Birthday", + "2004-03-31": "Cesar Chavez Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", + "2005-03-31": "Cesar Chavez Day", "2005-05-30": "Memorial Day", "2005-07-04": "Independence Day", "2005-09-05": "Labor Day", "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", + "2006-03-31": "Cesar Chavez Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", "2007-01-15": "Martin Luther King Jr. Day", "2007-02-19": "Washington's Birthday", + "2007-03-31": "Cesar Chavez Day", "2007-05-28": "Memorial Day", "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-01-21": "Martin Luther King Jr. Day", "2008-02-18": "Washington's Birthday", + "2008-03-31": "Cesar Chavez Day", "2008-05-26": "Memorial Day", "2008-07-04": "Independence Day", "2008-09-01": "Labor Day", @@ -562,8 +570,9 @@ "2009-01-01": "New Year's Day", "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", + "2009-03-31": "Cesar Chavez Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -572,39 +581,43 @@ "2010-01-01": "New Year's Day", "2010-01-18": "Martin Luther King Jr. Day", "2010-02-15": "Washington's Birthday", + "2010-03-31": "Cesar Chavez Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", + "2011-03-31": "Cesar Chavez Day", "2011-05-30": "Memorial Day", "2011-07-04": "Independence Day", "2011-09-05": "Labor Day", "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", + "2012-03-31": "Cesar Chavez Day", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-21": "Martin Luther King Jr. Day", "2013-02-18": "Washington's Birthday", + "2013-03-31": "Cesar Chavez Day", "2013-05-27": "Memorial Day", "2013-07-04": "Independence Day", "2013-09-02": "Labor Day", @@ -614,6 +627,7 @@ "2014-01-01": "New Year's Day", "2014-01-20": "Martin Luther King Jr. Day", "2014-02-17": "Washington's Birthday", + "2014-03-31": "Cesar Chavez Day", "2014-05-26": "Memorial Day", "2014-07-04": "Independence Day", "2014-09-01": "Labor Day", @@ -623,8 +637,9 @@ "2015-01-01": "New Year's Day", "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", + "2015-03-31": "Cesar Chavez Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -633,37 +648,41 @@ "2016-01-01": "New Year's Day", "2016-01-18": "Martin Luther King Jr. Day", "2016-02-15": "Washington's Birthday", + "2016-03-31": "Cesar Chavez Day", "2016-05-30": "Memorial Day", "2016-07-04": "Independence Day", "2016-09-05": "Labor Day", "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", + "2017-03-31": "Cesar Chavez Day", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", "2018-01-15": "Martin Luther King Jr. Day", "2018-02-19": "Washington's Birthday", + "2018-03-31": "Cesar Chavez Day", "2018-05-28": "Memorial Day", "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-01-21": "Martin Luther King Jr. Day", "2019-02-18": "Washington's Birthday", + "2019-03-31": "Cesar Chavez Day", "2019-05-27": "Memorial Day", "2019-07-04": "Independence Day", "2019-09-02": "Labor Day", @@ -673,8 +692,9 @@ "2020-01-01": "New Year's Day", "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", + "2020-03-31": "Cesar Chavez Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -683,44 +703,48 @@ "2021-01-01": "New Year's Day", "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", + "2021-03-31": "Cesar Chavez Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", + "2022-03-31": "Cesar Chavez Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", + "2023-03-31": "Cesar Chavez Day", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-15": "Martin Luther King Jr. Day", "2024-02-19": "Washington's Birthday", + "2024-03-31": "Cesar Chavez Day", "2024-05-27": "Memorial Day", "2024-06-19": "Juneteenth National Independence Day", "2024-07-04": "Independence Day", @@ -731,6 +755,7 @@ "2025-01-01": "New Year's Day", "2025-01-20": "Martin Luther King Jr. Day", "2025-02-17": "Washington's Birthday", + "2025-03-31": "Cesar Chavez Day", "2025-05-26": "Memorial Day", "2025-06-19": "Juneteenth National Independence Day", "2025-07-04": "Independence Day", @@ -741,9 +766,10 @@ "2026-01-01": "New Year's Day", "2026-01-19": "Martin Luther King Jr. Day", "2026-02-16": "Washington's Birthday", + "2026-03-31": "Cesar Chavez Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -752,42 +778,46 @@ "2027-01-01": "New Year's Day", "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", + "2027-03-31": "Cesar Chavez Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", + "2028-03-31": "Cesar Chavez Day", "2028-05-29": "Memorial Day", "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-01-15": "Martin Luther King Jr. Day", "2029-02-19": "Washington's Birthday", + "2029-03-31": "Cesar Chavez Day", "2029-05-28": "Memorial Day", "2029-06-19": "Juneteenth National Independence Day", "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Martin Luther King Jr. Day", "2030-02-18": "Washington's Birthday", + "2030-03-31": "Cesar Chavez Day", "2030-05-27": "Memorial Day", "2030-06-19": "Juneteenth National Independence Day", "2030-07-04": "Independence Day", @@ -798,6 +828,7 @@ "2031-01-01": "New Year's Day", "2031-01-20": "Martin Luther King Jr. Day", "2031-02-17": "Washington's Birthday", + "2031-03-31": "Cesar Chavez Day", "2031-05-26": "Memorial Day", "2031-06-19": "Juneteenth National Independence Day", "2031-07-04": "Independence Day", @@ -808,55 +839,60 @@ "2032-01-01": "New Year's Day", "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", + "2032-03-31": "Cesar Chavez Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", + "2033-03-31": "Cesar Chavez Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", + "2034-03-31": "Cesar Chavez Day", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-01-15": "Martin Luther King Jr. Day", "2035-02-19": "Washington's Birthday", + "2035-03-31": "Cesar Chavez Day", "2035-05-28": "Memorial Day", "2035-06-19": "Juneteenth National Independence Day", "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-21": "Martin Luther King Jr. Day", "2036-02-18": "Washington's Birthday", + "2036-03-31": "Cesar Chavez Day", "2036-05-26": "Memorial Day", "2036-06-19": "Juneteenth National Independence Day", "2036-07-04": "Independence Day", @@ -867,9 +903,10 @@ "2037-01-01": "New Year's Day", "2037-01-19": "Martin Luther King Jr. Day", "2037-02-16": "Washington's Birthday", + "2037-03-31": "Cesar Chavez Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -878,44 +915,48 @@ "2038-01-01": "New Year's Day", "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", + "2038-03-31": "Cesar Chavez Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", + "2039-03-31": "Cesar Chavez Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", + "2040-03-31": "Cesar Chavez Day", "2040-05-28": "Memorial Day", "2040-06-19": "Juneteenth National Independence Day", "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-21": "Martin Luther King Jr. Day", "2041-02-18": "Washington's Birthday", + "2041-03-31": "Cesar Chavez Day", "2041-05-27": "Memorial Day", "2041-06-19": "Juneteenth National Independence Day", "2041-07-04": "Independence Day", @@ -926,6 +967,7 @@ "2042-01-01": "New Year's Day", "2042-01-20": "Martin Luther King Jr. Day", "2042-02-17": "Washington's Birthday", + "2042-03-31": "Cesar Chavez Day", "2042-05-26": "Memorial Day", "2042-06-19": "Juneteenth National Independence Day", "2042-07-04": "Independence Day", @@ -936,9 +978,10 @@ "2043-01-01": "New Year's Day", "2043-01-19": "Martin Luther King Jr. Day", "2043-02-16": "Washington's Birthday", + "2043-03-31": "Cesar Chavez Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -947,41 +990,45 @@ "2044-01-01": "New Year's Day", "2044-01-18": "Martin Luther King Jr. Day", "2044-02-15": "Washington's Birthday", + "2044-03-31": "Cesar Chavez Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", + "2045-03-31": "Cesar Chavez Day", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-01-15": "Martin Luther King Jr. Day", "2046-02-19": "Washington's Birthday", + "2046-03-31": "Cesar Chavez Day", "2046-05-28": "Memorial Day", "2046-06-19": "Juneteenth National Independence Day", "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-01-21": "Martin Luther King Jr. Day", "2047-02-18": "Washington's Birthday", + "2047-03-31": "Cesar Chavez Day", "2047-05-27": "Memorial Day", "2047-06-19": "Juneteenth National Independence Day", "2047-07-04": "Independence Day", @@ -992,9 +1039,10 @@ "2048-01-01": "New Year's Day", "2048-01-20": "Martin Luther King Jr. Day", "2048-02-17": "Washington's Birthday", + "2048-03-31": "Cesar Chavez Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1003,27 +1051,29 @@ "2049-01-01": "New Year's Day", "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", + "2049-03-31": "Cesar Chavez Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", + "2050-03-31": "Cesar Chavez Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_COMMON.json b/snapshots/countries/US_COMMON.json index 9eb163ce3..7198719fa 100644 --- a/snapshots/countries/US_COMMON.json +++ b/snapshots/countries/US_COMMON.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -32,7 +32,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -43,14 +43,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -93,7 +93,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -143,7 +143,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -154,14 +154,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -204,7 +204,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -215,14 +215,14 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -263,14 +263,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -314,7 +314,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -325,14 +325,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -377,7 +377,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -432,7 +432,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -444,14 +444,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -499,7 +499,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -511,14 +511,14 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -566,14 +566,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -622,7 +622,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -634,14 +634,14 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -652,9 +652,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -662,7 +662,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -689,7 +689,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -706,16 +706,16 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -727,7 +727,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -744,7 +744,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -755,32 +755,32 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -788,7 +788,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -819,7 +819,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -830,17 +830,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -849,7 +849,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -862,7 +862,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -891,32 +891,32 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -924,7 +924,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -937,7 +937,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -956,7 +956,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -967,32 +967,32 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1001,7 +1001,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1031,7 +1031,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1043,16 +1043,16 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1060,7 +1060,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1073,7 +1073,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1092,7 +1092,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1103,28 +1103,28 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_CT.json b/snapshots/countries/US_CT.json index 48c154920..264a9955a 100644 --- a/snapshots/countries/US_CT.json +++ b/snapshots/countries/US_CT.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -36,7 +36,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -48,14 +48,14 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", @@ -66,9 +66,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -76,7 +76,7 @@ "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -103,7 +103,7 @@ "1959-02-22": "Washington's Birthday", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -120,16 +120,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -141,7 +141,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -158,7 +158,7 @@ "1964-02-22": "Washington's Birthday", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -170,14 +170,14 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", @@ -188,16 +188,16 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -225,7 +225,7 @@ "1970-02-22": "Washington's Birthday", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -238,16 +238,16 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", - "1972-02-11": "Lincoln's Birthday (Observed)", + "1972-02-11": "Lincoln's Birthday (observed)", "1972-02-12": "Lincoln's Birthday", "1972-02-21": "Washington's Birthday", "1972-03-31": "Good Friday", @@ -297,16 +297,16 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", - "1977-02-11": "Lincoln's Birthday (Observed)", + "1977-02-11": "Lincoln's Birthday (observed)", "1977-02-12": "Lincoln's Birthday", "1977-02-21": "Washington's Birthday", "1977-04-08": "Good Friday", @@ -317,18 +317,18 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-12": "Lincoln's Birthday", - "1978-02-13": "Lincoln's Birthday (Observed)", + "1978-02-13": "Lincoln's Birthday (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -341,7 +341,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -360,7 +360,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -373,16 +373,16 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", - "1983-02-11": "Lincoln's Birthday (Observed)", + "1983-02-11": "Lincoln's Birthday (observed)", "1983-02-12": "Lincoln's Birthday", "1983-02-21": "Washington's Birthday", "1983-04-01": "Good Friday", @@ -393,11 +393,11 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-12": "Lincoln's Birthday", - "1984-02-13": "Lincoln's Birthday (Observed)", + "1984-02-13": "Lincoln's Birthday (observed)", "1984-02-20": "Washington's Birthday", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", @@ -405,7 +405,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -437,7 +437,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -456,19 +456,19 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-12": "Lincoln's Birthday", - "1989-02-13": "Lincoln's Birthday (Observed)", + "1989-02-13": "Lincoln's Birthday (observed)", "1989-02-20": "Washington's Birthday", "1989-03-24": "Good Friday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -482,7 +482,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -503,7 +503,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -517,17 +517,17 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", - "1994-02-11": "Lincoln's Birthday (Observed)", + "1994-02-11": "Lincoln's Birthday (observed)", "1994-02-12": "Lincoln's Birthday", "1994-02-21": "Washington's Birthday", "1994-04-01": "Good Friday", @@ -538,19 +538,19 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-12": "Lincoln's Birthday", - "1995-02-13": "Lincoln's Birthday (Observed)", + "1995-02-13": "Lincoln's Birthday (observed)", "1995-02-20": "Washington's Birthday", "1995-04-14": "Good Friday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -584,7 +584,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -598,17 +598,17 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", - "2000-02-11": "Lincoln's Birthday (Observed)", + "2000-02-11": "Lincoln's Birthday (observed)", "2000-02-12": "Lincoln's Birthday", "2000-02-21": "Washington's Birthday", "2000-04-21": "Good Friday", @@ -616,7 +616,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -630,7 +630,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -664,17 +664,17 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", - "2005-02-11": "Lincoln's Birthday (Observed)", + "2005-02-11": "Lincoln's Birthday (observed)", "2005-02-12": "Lincoln's Birthday", "2005-02-21": "Washington's Birthday", "2005-03-25": "Good Friday", @@ -685,19 +685,19 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-12": "Lincoln's Birthday", - "2006-02-13": "Lincoln's Birthday (Observed)", + "2006-02-13": "Lincoln's Birthday (observed)", "2006-02-20": "Washington's Birthday", "2006-04-14": "Good Friday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -711,7 +711,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -732,7 +732,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -746,17 +746,17 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", - "2011-02-11": "Lincoln's Birthday (Observed)", + "2011-02-11": "Lincoln's Birthday (observed)", "2011-02-12": "Lincoln's Birthday", "2011-02-21": "Washington's Birthday", "2011-04-22": "Good Friday", @@ -767,12 +767,12 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-12": "Lincoln's Birthday", - "2012-02-13": "Lincoln's Birthday (Observed)", + "2012-02-13": "Lincoln's Birthday (observed)", "2012-02-20": "Washington's Birthday", "2012-04-06": "Good Friday", "2012-05-28": "Memorial Day", @@ -780,7 +780,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -813,7 +813,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -832,19 +832,19 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-12": "Lincoln's Birthday", - "2017-02-13": "Lincoln's Birthday (Observed)", + "2017-02-13": "Lincoln's Birthday (observed)", "2017-02-20": "Washington's Birthday", "2017-04-14": "Good Friday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -858,7 +858,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -879,7 +879,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -892,38 +892,38 @@ "2021-02-15": "Washington's Birthday", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", - "2022-02-11": "Lincoln's Birthday (Observed)", + "2022-02-11": "Lincoln's Birthday (observed)", "2022-02-12": "Lincoln's Birthday", "2022-02-21": "Washington's Birthday", "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-12": "Lincoln's Birthday", - "2023-02-13": "Lincoln's Birthday (Observed)", + "2023-02-13": "Lincoln's Birthday (observed)", "2023-02-20": "Washington's Birthday", "2023-04-07": "Good Friday", "2023-05-29": "Memorial Day", @@ -931,7 +931,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -968,7 +968,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -981,20 +981,20 @@ "2027-02-15": "Washington's Birthday", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", - "2028-02-11": "Lincoln's Birthday (Observed)", + "2028-02-11": "Lincoln's Birthday (observed)", "2028-02-12": "Lincoln's Birthday", "2028-02-21": "Washington's Birthday", "2028-04-14": "Good Friday", @@ -1003,7 +1003,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -1018,7 +1018,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1053,38 +1053,38 @@ "2032-02-16": "Washington's Birthday", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", - "2033-02-11": "Lincoln's Birthday (Observed)", + "2033-02-11": "Lincoln's Birthday (observed)", "2033-02-12": "Lincoln's Birthday", "2033-02-21": "Washington's Birthday", "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-12": "Lincoln's Birthday", - "2034-02-13": "Lincoln's Birthday (Observed)", + "2034-02-13": "Lincoln's Birthday (observed)", "2034-02-20": "Washington's Birthday", "2034-04-07": "Good Friday", "2034-05-29": "Memorial Day", @@ -1092,7 +1092,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1107,7 +1107,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1130,7 +1130,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1143,38 +1143,38 @@ "2038-02-15": "Washington's Birthday", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", - "2039-02-11": "Lincoln's Birthday (Observed)", + "2039-02-11": "Lincoln's Birthday (observed)", "2039-02-12": "Lincoln's Birthday", "2039-02-21": "Washington's Birthday", "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-12": "Lincoln's Birthday", - "2040-02-13": "Lincoln's Birthday (Observed)", + "2040-02-13": "Lincoln's Birthday (observed)", "2040-02-20": "Washington's Birthday", "2040-03-30": "Good Friday", "2040-05-28": "Memorial Day", @@ -1183,7 +1183,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1219,7 +1219,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1233,19 +1233,19 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-12": "Lincoln's Birthday", - "2045-02-13": "Lincoln's Birthday (Observed)", + "2045-02-13": "Lincoln's Birthday (observed)", "2045-02-20": "Washington's Birthday", "2045-04-07": "Good Friday", "2045-05-29": "Memorial Day", @@ -1253,7 +1253,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1268,7 +1268,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1291,7 +1291,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1304,31 +1304,31 @@ "2049-02-15": "Washington's Birthday", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", - "2050-02-11": "Lincoln's Birthday (Observed)", + "2050-02-11": "Lincoln's Birthday (observed)", "2050-02-12": "Lincoln's Birthday", "2050-02-21": "Washington's Birthday", "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_DC.json b/snapshots/countries/US_DC.json index 7942b6f55..695ca3e3c 100644 --- a/snapshots/countries/US_DC.json +++ b/snapshots/countries/US_DC.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -30,7 +30,7 @@ "1953-01-20": "Inauguration Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -40,13 +40,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -55,20 +55,20 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-01-20": "Inauguration Day", - "1957-01-21": "Inauguration Day (Observed)", + "1957-01-21": "Inauguration Day (observed)", "1957-02-22": "Washington's Birthday", "1957-05-30": "Memorial Day", "1957-07-04": "Independence Day", @@ -87,7 +87,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -101,15 +101,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-20": "Inauguration Day", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -119,7 +119,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -133,7 +133,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -144,13 +144,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -159,14 +159,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -190,7 +190,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -200,14 +200,14 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -249,14 +249,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-01-20": "Inauguration Day", "1977-02-21": "Washington's Birthday", @@ -267,15 +267,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -286,7 +286,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -302,7 +302,7 @@ "1981-01-20": "Inauguration Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -313,14 +313,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -330,21 +330,21 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-01-20": "Inauguration Day", - "1985-01-21": "Inauguration Day (Observed)", + "1985-01-21": "Inauguration Day (observed)", "1985-02-18": "Washington's Birthday", "1985-05-27": "Memorial Day", "1985-07-04": "Independence Day", @@ -367,7 +367,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -384,9 +384,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-01-20": "Inauguration Day", "1989-02-20": "Washington's Birthday", @@ -394,7 +394,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -406,7 +406,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -423,7 +423,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -436,14 +436,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -454,16 +454,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -491,7 +491,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -503,14 +503,14 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -518,7 +518,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -531,7 +531,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -559,19 +559,19 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-01-20": "Inauguration Day", "2005-02-21": "Washington's Birthday", - "2005-04-15": "Emancipation Day (Observed)", + "2005-04-15": "Emancipation Day (observed)", "2005-04-16": "Emancipation Day", "2005-05-30": "Memorial Day", "2005-07-04": "Independence Day", @@ -580,18 +580,18 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-16": "Emancipation Day", - "2006-04-17": "Emancipation Day (Observed)", + "2006-04-17": "Emancipation Day (observed)", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -604,7 +604,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-16": "Emancipation Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -637,18 +637,18 @@ "2010-04-16": "Emancipation Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", - "2011-04-15": "Emancipation Day (Observed)", + "2011-04-15": "Emancipation Day (observed)", "2011-04-16": "Emancipation Day", "2011-05-30": "Memorial Day", "2011-07-04": "Independence Day", @@ -657,9 +657,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-16": "Emancipation Day", @@ -668,12 +668,12 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-20": "Inauguration Day", - "2013-01-21": "Inauguration Day (Observed); Martin Luther King Jr. Day", + "2013-01-21": "Inauguration Day (observed); Martin Luther King Jr. Day", "2013-02-18": "Washington's Birthday", "2013-04-16": "Emancipation Day", "2013-05-27": "Memorial Day", @@ -699,7 +699,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-16": "Emancipation Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -709,7 +709,7 @@ "2016-01-01": "New Year's Day", "2016-01-18": "Martin Luther King Jr. Day", "2016-02-15": "Washington's Birthday", - "2016-04-15": "Emancipation Day (Observed)", + "2016-04-15": "Emancipation Day (observed)", "2016-04-16": "Emancipation Day", "2016-05-30": "Memorial Day", "2016-07-04": "Independence Day", @@ -718,19 +718,19 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-01-20": "Inauguration Day", "2017-02-20": "Washington's Birthday", "2017-04-16": "Emancipation Day", - "2017-04-17": "Emancipation Day (Observed)", + "2017-04-17": "Emancipation Day (observed)", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -762,7 +762,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-16": "Emancipation Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Indigenous Peoples' Day", @@ -775,44 +775,44 @@ "2021-02-15": "Washington's Birthday", "2021-04-16": "Emancipation Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Indigenous Peoples' Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", - "2022-04-15": "Emancipation Day (Observed)", + "2022-04-15": "Emancipation Day (observed)", "2022-04-16": "Emancipation Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Indigenous Peoples' Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-16": "Emancipation Day", - "2023-04-17": "Emancipation Day (Observed)", + "2023-04-17": "Emancipation Day (observed)", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Indigenous Peoples' Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -846,7 +846,7 @@ "2026-04-16": "Emancipation Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Indigenous Peoples' Day", @@ -858,28 +858,28 @@ "2027-02-15": "Washington's Birthday", "2027-04-16": "Emancipation Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Indigenous Peoples' Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", "2028-04-16": "Emancipation Day", - "2028-04-17": "Emancipation Day (Observed)", + "2028-04-17": "Emancipation Day (observed)", "2028-05-29": "Memorial Day", "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Indigenous Peoples' Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -894,7 +894,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Indigenous Peoples' Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -926,45 +926,45 @@ "2032-02-16": "Washington's Birthday", "2032-04-16": "Emancipation Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Indigenous Peoples' Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-01-20": "Inauguration Day", "2033-02-21": "Washington's Birthday", - "2033-04-15": "Emancipation Day (Observed)", + "2033-04-15": "Emancipation Day (observed)", "2033-04-16": "Emancipation Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Indigenous Peoples' Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-16": "Emancipation Day", - "2034-04-17": "Emancipation Day (Observed)", + "2034-04-17": "Emancipation Day (observed)", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Indigenous Peoples' Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -978,7 +978,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Indigenous Peoples' Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1000,7 +1000,7 @@ "2037-04-16": "Emancipation Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Indigenous Peoples' Day", @@ -1012,34 +1012,34 @@ "2038-02-15": "Washington's Birthday", "2038-04-16": "Emancipation Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Indigenous Peoples' Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", - "2039-04-15": "Emancipation Day (Observed)", + "2039-04-15": "Emancipation Day (observed)", "2039-04-16": "Emancipation Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Indigenous Peoples' Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-04-16": "Emancipation Day", @@ -1049,12 +1049,12 @@ "2040-09-03": "Labor Day", "2040-10-08": "Indigenous Peoples' Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-20": "Inauguration Day", - "2041-01-21": "Inauguration Day (Observed); Martin Luther King Jr. Day", + "2041-01-21": "Inauguration Day (observed); Martin Luther King Jr. Day", "2041-02-18": "Washington's Birthday", "2041-04-16": "Emancipation Day", "2041-05-27": "Memorial Day", @@ -1083,7 +1083,7 @@ "2043-04-16": "Emancipation Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Indigenous Peoples' Day", @@ -1093,31 +1093,31 @@ "2044-01-01": "New Year's Day", "2044-01-18": "Martin Luther King Jr. Day", "2044-02-15": "Washington's Birthday", - "2044-04-15": "Emancipation Day (Observed)", + "2044-04-15": "Emancipation Day (observed)", "2044-04-16": "Emancipation Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Indigenous Peoples' Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-01-20": "Inauguration Day", "2045-02-20": "Washington's Birthday", "2045-04-16": "Emancipation Day", - "2045-04-17": "Emancipation Day (Observed)", + "2045-04-17": "Emancipation Day (observed)", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Indigenous Peoples' Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1131,7 +1131,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Indigenous Peoples' Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1152,7 +1152,7 @@ "2048-04-16": "Emancipation Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Indigenous Peoples' Day", @@ -1165,30 +1165,30 @@ "2049-02-15": "Washington's Birthday", "2049-04-16": "Emancipation Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Indigenous Peoples' Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", - "2050-04-15": "Emancipation Day (Observed)", + "2050-04-15": "Emancipation Day (observed)", "2050-04-16": "Emancipation Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Indigenous Peoples' Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_DE.json b/snapshots/countries/US_DE.json index e0b3b9331..f8d3540ee 100644 --- a/snapshots/countries/US_DE.json +++ b/snapshots/countries/US_DE.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-04-08": "Good Friday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-04-08": "Good Friday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-03-31": "Good Friday", "1972-05-29": "Memorial Day", @@ -238,14 +238,14 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Day After Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-04-08": "Good Friday", "1977-05-30": "Memorial Day", @@ -255,14 +255,14 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Day After Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Day After Thanksgiving", @@ -273,7 +273,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Day After Thanksgiving", "1979-12-25": "Christmas Day", @@ -289,7 +289,7 @@ "1981-01-01": "New Year's Day", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -300,14 +300,14 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Day After Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-04-01": "Good Friday", "1983-05-30": "Memorial Day", @@ -317,15 +317,15 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Day After Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Day After Thanksgiving", "1984-12-25": "Christmas Day", @@ -352,7 +352,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -369,15 +369,15 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Day After Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-03-24": "Good Friday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Day After Thanksgiving", @@ -389,7 +389,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Day After Thanksgiving", "1990-12-25": "Christmas Day", @@ -407,7 +407,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -419,14 +419,14 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Day After Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-04-01": "Good Friday", @@ -437,15 +437,15 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Day After Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-04-14": "Good Friday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Day After Thanksgiving", @@ -474,7 +474,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -486,21 +486,21 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Day After Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-04-21": "Good Friday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Day After Thanksgiving", @@ -512,7 +512,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Day After Thanksgiving", "2001-12-25": "Christmas Day", @@ -541,14 +541,14 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Day After Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-03-25": "Good Friday", @@ -559,15 +559,15 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Day After Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-04-14": "Good Friday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Day After Thanksgiving", @@ -579,7 +579,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Day After Thanksgiving", "2007-12-25": "Christmas Day", @@ -598,7 +598,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -610,15 +610,15 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Day After Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-04-22": "Good Friday", @@ -629,9 +629,9 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Day After Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-04-06": "Good Friday", "2012-05-28": "Memorial Day", @@ -639,7 +639,7 @@ "2012-09-03": "Labor Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Day After Thanksgiving", "2012-12-25": "Christmas Day", @@ -668,7 +668,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -686,15 +686,15 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Day After Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-04-14": "Good Friday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Day After Thanksgiving", @@ -707,7 +707,7 @@ "2018-09-03": "Labor Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Day After Thanksgiving", "2018-12-25": "Christmas Day", @@ -725,7 +725,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-03": "Election Day", @@ -737,23 +737,23 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Day After Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-08": "Election Day", @@ -761,16 +761,16 @@ "2022-11-24": "Thanksgiving", "2022-11-25": "Day After Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-04-07": "Good Friday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Day After Thanksgiving", @@ -803,7 +803,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-03": "Election Day", @@ -815,17 +815,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Day After Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-04-14": "Good Friday", @@ -834,7 +834,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Day After Thanksgiving", @@ -847,7 +847,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Day After Thanksgiving", "2029-12-25": "Christmas Day", @@ -878,33 +878,33 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Day After Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-11-25": "Day After Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-04-07": "Good Friday", "2034-05-29": "Memorial Day", @@ -912,7 +912,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Day After Thanksgiving", @@ -925,7 +925,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Day After Thanksgiving", "2035-12-25": "Christmas Day", @@ -946,7 +946,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -957,33 +957,33 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Day After Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-11-25": "Day After Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-03-30": "Good Friday", "2040-05-28": "Memorial Day", @@ -992,7 +992,7 @@ "2040-09-03": "Labor Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Day After Thanksgiving", "2040-12-25": "Christmas Day", @@ -1024,7 +1024,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1036,7 +1036,7 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-08": "Election Day", @@ -1044,16 +1044,16 @@ "2044-11-24": "Thanksgiving", "2044-11-25": "Day After Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-04-07": "Good Friday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Day After Thanksgiving", @@ -1067,7 +1067,7 @@ "2046-09-03": "Labor Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Day After Thanksgiving", "2046-12-25": "Christmas Day", @@ -1087,7 +1087,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-03": "Election Day", @@ -1099,23 +1099,23 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Day After Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-08": "Election Day", @@ -1123,5 +1123,5 @@ "2050-11-24": "Thanksgiving", "2050-11-25": "Day After Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_FL.json b/snapshots/countries/US_FL.json index e6b4eae5a..1f92cd4d2 100644 --- a/snapshots/countries/US_FL.json +++ b/snapshots/countries/US_FL.json @@ -1,10 +1,10 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -13,7 +13,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -25,7 +25,7 @@ "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -34,13 +34,13 @@ "1954-01-01": "New Year's Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-05-30": "Memorial Day", "1955-07-04": "Independence Day", @@ -48,14 +48,14 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -74,7 +74,7 @@ "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -87,13 +87,13 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -102,7 +102,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -114,7 +114,7 @@ "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -123,13 +123,13 @@ "1965-01-01": "New Year's Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-05-30": "Memorial Day", "1966-07-04": "Independence Day", @@ -137,13 +137,13 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -163,7 +163,7 @@ "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -172,13 +172,13 @@ "1971-01-01": "New Year's Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-05-29": "Memorial Day", "1972-07-04": "Independence Day", @@ -211,14 +211,14 @@ "1976-01-01": "New Year's Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Friday After Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-05-30": "Memorial Day", "1977-07-04": "Independence Day", @@ -227,13 +227,13 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Friday After Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Friday After Thanksgiving", @@ -243,7 +243,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Friday After Thanksgiving", "1979-12-25": "Christmas Day", @@ -257,7 +257,7 @@ "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -267,14 +267,14 @@ "1982-01-01": "New Year's Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Friday After Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-05-30": "Memorial Day", "1983-07-04": "Independence Day", @@ -283,14 +283,14 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Friday After Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Friday After Thanksgiving", "1984-12-25": "Christmas Day", @@ -314,7 +314,7 @@ "1987-01-01": "New Year's Day", "1987-01-19": "Martin Luther King Jr. Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -330,14 +330,14 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Friday After Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Friday After Thanksgiving", @@ -348,7 +348,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Friday After Thanksgiving", "1990-12-25": "Christmas Day", @@ -364,7 +364,7 @@ "1992-01-01": "New Year's Day", "1992-01-20": "Martin Luther King Jr. Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -375,14 +375,14 @@ "1993-01-18": "Martin Luther King Jr. Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Friday After Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-05-30": "Memorial Day", @@ -392,14 +392,14 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Friday After Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Friday After Thanksgiving", @@ -425,7 +425,7 @@ "1998-01-01": "New Year's Day", "1998-01-19": "Martin Luther King Jr. Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -436,20 +436,20 @@ "1999-01-18": "Martin Luther King Jr. Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Friday After Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Friday After Thanksgiving", @@ -460,7 +460,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Friday After Thanksgiving", "2001-12-25": "Christmas Day", @@ -486,14 +486,14 @@ "2004-01-19": "Martin Luther King Jr. Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Friday After Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-05-30": "Memorial Day", @@ -503,14 +503,14 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Friday After Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Friday After Thanksgiving", @@ -521,7 +521,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Friday After Thanksgiving", "2007-12-25": "Christmas Day", @@ -537,7 +537,7 @@ "2009-01-01": "New Year's Day", "2009-01-19": "Martin Luther King Jr. Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -548,14 +548,14 @@ "2010-01-18": "Martin Luther King Jr. Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Friday After Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-15": "Susan B. Anthony Day", @@ -566,16 +566,16 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Friday After Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-15": "Susan B. Anthony Day", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Friday After Thanksgiving", "2012-12-25": "Christmas Day", @@ -603,7 +603,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-15": "Susan B. Anthony Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -620,15 +620,15 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Friday After Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-15": "Susan B. Anthony Day", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Friday After Thanksgiving", @@ -640,7 +640,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Friday After Thanksgiving", "2018-12-25": "Christmas Day", @@ -658,7 +658,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-15": "Susan B. Anthony Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -669,39 +669,39 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Susan B. Anthony Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Friday After Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-15": "Susan B. Anthony Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-11-25": "Friday After Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-15": "Susan B. Anthony Day", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Friday After Thanksgiving", @@ -733,7 +733,7 @@ "2026-02-15": "Susan B. Anthony Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -744,17 +744,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Susan B. Anthony Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Friday After Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-15": "Susan B. Anthony Day", @@ -762,7 +762,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Friday After Thanksgiving", @@ -775,7 +775,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Friday After Thanksgiving", "2029-12-25": "Christmas Day", @@ -805,39 +805,39 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-15": "Susan B. Anthony Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Friday After Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-15": "Susan B. Anthony Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-11-25": "Friday After Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-15": "Susan B. Anthony Day", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Friday After Thanksgiving", @@ -850,7 +850,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Friday After Thanksgiving", "2035-12-25": "Christmas Day", @@ -870,7 +870,7 @@ "2037-02-15": "Susan B. Anthony Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -881,32 +881,32 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Susan B. Anthony Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Friday After Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-15": "Susan B. Anthony Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-11-25": "Friday After Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-15": "Susan B. Anthony Day", "2040-05-28": "Memorial Day", @@ -914,7 +914,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Friday After Thanksgiving", "2040-12-25": "Christmas Day", @@ -945,7 +945,7 @@ "2043-02-15": "Susan B. Anthony Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -957,23 +957,23 @@ "2044-02-15": "Susan B. Anthony Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-11-25": "Friday After Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-15": "Susan B. Anthony Day", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Friday After Thanksgiving", @@ -986,7 +986,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Friday After Thanksgiving", "2046-12-25": "Christmas Day", @@ -1006,7 +1006,7 @@ "2048-02-15": "Susan B. Anthony Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1017,28 +1017,28 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Susan B. Anthony Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Friday After Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-15": "Susan B. Anthony Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-11-25": "Friday After Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_GA.json b/snapshots/countries/US_GA.json index e45c35b28..ead28be07 100644 --- a/snapshots/countries/US_GA.json +++ b/snapshots/countries/US_GA.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-04-24": "Confederate Memorial Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-24": "Washington's Birthday", @@ -18,7 +18,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-24": "Washington's Birthday", "1951-12-25": "Christmas Day", @@ -35,7 +35,7 @@ "1953-01-01": "New Year's Day", "1953-04-27": "Confederate Memorial Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -47,14 +47,14 @@ "1954-04-26": "Confederate Memorial Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed); Washington's Birthday", + "1954-12-24": "Christmas Day (observed); Washington's Birthday", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-04-25": "Confederate Memorial Day", "1955-05-30": "Memorial Day", @@ -65,16 +65,16 @@ "1955-11-24": "Thanksgiving", "1955-12-24": "Washington's Birthday", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-04-23": "Confederate Memorial Day", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-24": "Washington's Birthday", "1956-12-25": "Christmas Day", @@ -101,7 +101,7 @@ "1959-01-01": "New Year's Day", "1959-04-27": "Confederate Memorial Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -119,15 +119,15 @@ "1960-11-24": "Thanksgiving", "1960-12-24": "Washington's Birthday", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-04-24": "Confederate Memorial Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-24": "Washington's Birthday", @@ -139,7 +139,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-24": "Washington's Birthday", "1962-12-25": "Christmas Day", @@ -156,7 +156,7 @@ "1964-01-01": "New Year's Day", "1964-04-27": "Confederate Memorial Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -168,14 +168,14 @@ "1965-04-26": "Confederate Memorial Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed); Washington's Birthday", + "1965-12-24": "Christmas Day (observed); Washington's Birthday", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-04-25": "Confederate Memorial Day", "1966-05-30": "Memorial Day", @@ -186,15 +186,15 @@ "1966-11-24": "Thanksgiving", "1966-12-24": "Washington's Birthday", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-04-24": "Confederate Memorial Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-24": "Washington's Birthday", @@ -222,7 +222,7 @@ "1970-01-01": "New Year's Day", "1970-04-27": "Confederate Memorial Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -234,14 +234,14 @@ "1971-04-26": "Confederate Memorial Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed); Washington's Birthday", + "1971-12-24": "Christmas Day (observed); Washington's Birthday", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-04-24": "Confederate Memorial Day", "1972-05-29": "Memorial Day", @@ -286,14 +286,14 @@ "1976-04-26": "Confederate Memorial Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed); Washington's Birthday", + "1976-12-24": "Christmas Day (observed); Washington's Birthday", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-04-25": "Confederate Memorial Day", "1977-05-30": "Memorial Day", @@ -304,15 +304,15 @@ "1977-11-24": "Thanksgiving", "1977-12-24": "Washington's Birthday", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-04-24": "Confederate Memorial Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-24": "Washington's Birthday", @@ -324,7 +324,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-24": "Washington's Birthday", "1979-12-25": "Christmas Day", @@ -341,7 +341,7 @@ "1981-01-01": "New Year's Day", "1981-04-27": "Confederate Memorial Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -353,14 +353,14 @@ "1982-04-26": "Confederate Memorial Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed); Washington's Birthday", + "1982-12-24": "Christmas Day (observed); Washington's Birthday", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-04-25": "Confederate Memorial Day", "1983-05-30": "Memorial Day", @@ -371,16 +371,16 @@ "1983-11-24": "Thanksgiving", "1983-12-24": "Washington's Birthday", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-04-23": "Confederate Memorial Day", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-24": "Washington's Birthday", "1984-12-25": "Christmas Day", @@ -410,7 +410,7 @@ "1987-01-19": "Robert E. Lee's Birthday", "1987-04-27": "Confederate Memorial Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -431,16 +431,16 @@ "1988-11-25": "Robert E. Lee's Birthday", "1988-12-24": "Washington's Birthday", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Robert E. Lee's Birthday", "1989-04-24": "Confederate Memorial Day", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Robert E. Lee's Birthday", @@ -454,7 +454,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Robert E. Lee's Birthday", "1990-12-24": "Washington's Birthday", @@ -475,7 +475,7 @@ "1992-01-20": "Robert E. Lee's Birthday", "1992-04-27": "Confederate Memorial Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -489,15 +489,15 @@ "1993-04-26": "Confederate Memorial Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Robert E. Lee's Birthday", - "1993-12-24": "Christmas Day (Observed); Washington's Birthday", + "1993-12-24": "Christmas Day (observed); Washington's Birthday", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Robert E. Lee's Birthday", "1994-04-25": "Confederate Memorial Day", @@ -510,16 +510,16 @@ "1994-11-25": "Robert E. Lee's Birthday", "1994-12-24": "Washington's Birthday", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Robert E. Lee's Birthday", "1995-04-24": "Confederate Memorial Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Robert E. Lee's Birthday", @@ -553,7 +553,7 @@ "1998-01-19": "Robert E. Lee's Birthday", "1998-04-27": "Confederate Memorial Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -567,15 +567,15 @@ "1999-04-26": "Confederate Memorial Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Robert E. Lee's Birthday", - "1999-12-24": "Christmas Day (Observed); Washington's Birthday", + "1999-12-24": "Christmas Day (observed); Washington's Birthday", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Robert E. Lee's Birthday", "2000-04-24": "Confederate Memorial Day", @@ -583,7 +583,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Robert E. Lee's Birthday", @@ -597,7 +597,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Robert E. Lee's Birthday", "2001-12-24": "Washington's Birthday", @@ -631,15 +631,15 @@ "2004-04-26": "Confederate Memorial Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Robert E. Lee's Birthday", - "2004-12-24": "Christmas Day (Observed); Washington's Birthday", + "2004-12-24": "Christmas Day (observed); Washington's Birthday", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Robert E. Lee's Birthday", "2005-04-25": "Confederate Memorial Day", @@ -652,16 +652,16 @@ "2005-11-25": "Robert E. Lee's Birthday", "2005-12-24": "Washington's Birthday", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Robert E. Lee's Birthday", "2006-04-24": "Confederate Memorial Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Robert E. Lee's Birthday", @@ -675,7 +675,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Robert E. Lee's Birthday", "2007-12-24": "Washington's Birthday", @@ -696,7 +696,7 @@ "2009-01-19": "Robert E. Lee's Birthday", "2009-04-27": "Confederate Memorial Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -710,15 +710,15 @@ "2010-04-26": "Confederate Memorial Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Robert E. Lee's Birthday", - "2010-12-24": "Christmas Day (Observed); Washington's Birthday", + "2010-12-24": "Christmas Day (observed); Washington's Birthday", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Robert E. Lee's Birthday", "2011-04-25": "Confederate Memorial Day", @@ -731,9 +731,9 @@ "2011-11-25": "Robert E. Lee's Birthday", "2011-12-24": "Washington's Birthday", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-04-23": "Confederate Memorial Day", "2012-05-28": "Memorial Day", @@ -741,7 +741,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Robert E. Lee's Birthday", "2012-12-24": "Washington's Birthday", @@ -774,7 +774,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-04-27": "Confederate Memorial Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -795,16 +795,16 @@ "2016-11-25": "State Holiday", "2016-12-24": "Washington's Birthday", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-04-24": "State Holiday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "State Holiday", @@ -818,7 +818,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "State Holiday", "2018-12-24": "Washington's Birthday", @@ -839,7 +839,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-04-10": "State Holiday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -852,24 +852,24 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-04-26": "State Holiday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "State Holiday", - "2021-12-24": "Christmas Day (Observed); Washington's Birthday", + "2021-12-24": "Christmas Day (observed); Washington's Birthday", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-04-25": "State Holiday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", @@ -878,9 +878,9 @@ "2022-11-25": "State Holiday", "2022-12-24": "Washington's Birthday", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-04-24": "State Holiday", "2023-05-29": "Memorial Day", @@ -888,7 +888,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "State Holiday", @@ -925,7 +925,7 @@ "2026-04-27": "State Holiday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -938,18 +938,18 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-04-26": "State Holiday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "State Holiday", - "2027-12-24": "Christmas Day (Observed); Washington's Birthday", + "2027-12-24": "Christmas Day (observed); Washington's Birthday", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-04-24": "State Holiday", @@ -958,7 +958,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "State Holiday", @@ -973,7 +973,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "State Holiday", "2029-12-24": "Washington's Birthday", @@ -1008,24 +1008,24 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-04-26": "State Holiday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "State Holiday", - "2032-12-24": "Christmas Day (Observed); Washington's Birthday", + "2032-12-24": "Christmas Day (observed); Washington's Birthday", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-04-25": "State Holiday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", @@ -1034,9 +1034,9 @@ "2033-11-25": "State Holiday", "2033-12-24": "Washington's Birthday", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-04-24": "State Holiday", "2034-05-29": "Memorial Day", @@ -1044,7 +1044,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "State Holiday", @@ -1059,7 +1059,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "State Holiday", "2035-12-24": "Washington's Birthday", @@ -1082,7 +1082,7 @@ "2037-04-27": "State Holiday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1095,24 +1095,24 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-04-26": "State Holiday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "State Holiday", - "2038-12-24": "Christmas Day (Observed); Washington's Birthday", + "2038-12-24": "Christmas Day (observed); Washington's Birthday", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-04-25": "State Holiday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", @@ -1121,9 +1121,9 @@ "2039-11-25": "State Holiday", "2039-12-24": "Washington's Birthday", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-04-23": "State Holiday", "2040-05-28": "Memorial Day", @@ -1132,7 +1132,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "State Holiday", "2040-12-24": "Washington's Birthday", @@ -1168,7 +1168,7 @@ "2043-04-27": "State Holiday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1182,7 +1182,7 @@ "2044-04-25": "State Holiday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", @@ -1191,9 +1191,9 @@ "2044-11-25": "State Holiday", "2044-12-24": "Washington's Birthday", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-04-24": "State Holiday", "2045-05-29": "Memorial Day", @@ -1201,7 +1201,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "State Holiday", @@ -1216,7 +1216,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "State Holiday", "2046-12-24": "Washington's Birthday", @@ -1239,7 +1239,7 @@ "2048-04-27": "State Holiday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1252,24 +1252,24 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-04-26": "State Holiday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "State Holiday", - "2049-12-24": "Christmas Day (Observed); Washington's Birthday", + "2049-12-24": "Christmas Day (observed); Washington's Birthday", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-04-25": "State Holiday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", @@ -1278,5 +1278,5 @@ "2050-11-25": "State Holiday", "2050-12-24": "Washington's Birthday", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_GU.json b/snapshots/countries/US_GU.json index 7da0517fc..76002ee05 100644 --- a/snapshots/countries/US_GU.json +++ b/snapshots/countries/US_GU.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", @@ -8,7 +8,7 @@ "1950-07-21": "Liberation Day (Guam)", "1950-09-04": "Labor Day", "1950-11-02": "All Souls' Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-08": "Lady of Camarin Day", @@ -22,7 +22,7 @@ "1951-09-03": "Labor Day", "1951-11-02": "All Souls' Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-08": "Lady of Camarin Day", "1951-12-25": "Christmas Day", @@ -42,7 +42,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-07-21": "Liberation Day (Guam)", "1953-09-07": "Labor Day", @@ -56,16 +56,16 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-07-21": "Liberation Day (Guam)", "1954-09-06": "Labor Day", "1954-11-02": "All Souls' Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", "1954-12-08": "Lady of Camarin Day", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", @@ -78,9 +78,9 @@ "1955-11-24": "Thanksgiving", "1955-12-08": "Lady of Camarin Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -89,7 +89,7 @@ "1956-09-03": "Labor Day", "1956-11-02": "All Souls' Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-08": "Lady of Camarin Day", "1956-12-25": "Christmas Day", @@ -121,7 +121,7 @@ "1959-02-22": "Washington's Birthday", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-07-21": "Liberation Day (Guam)", "1959-09-07": "Labor Day", @@ -142,9 +142,9 @@ "1960-11-24": "Thanksgiving", "1960-12-08": "Lady of Camarin Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", @@ -152,7 +152,7 @@ "1961-07-21": "Liberation Day (Guam)", "1961-09-04": "Labor Day", "1961-11-02": "All Souls' Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-08": "Lady of Camarin Day", @@ -166,7 +166,7 @@ "1962-09-03": "Labor Day", "1962-11-02": "All Souls' Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-08": "Lady of Camarin Day", "1962-12-25": "Christmas Day", @@ -186,7 +186,7 @@ "1964-02-22": "Washington's Birthday", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-07-21": "Liberation Day (Guam)", "1964-09-07": "Labor Day", @@ -200,16 +200,16 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-07-21": "Liberation Day (Guam)", "1965-09-06": "Labor Day", "1965-11-02": "All Souls' Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", "1965-12-08": "Lady of Camarin Day", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", @@ -222,9 +222,9 @@ "1966-11-24": "Thanksgiving", "1966-12-08": "Lady of Camarin Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", @@ -232,7 +232,7 @@ "1967-07-21": "Liberation Day (Guam)", "1967-09-04": "Labor Day", "1967-11-02": "All Souls' Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-08": "Lady of Camarin Day", @@ -266,7 +266,7 @@ "1970-03-02": "Guam Discovery Day", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-07-21": "Liberation Day (Guam)", "1970-09-07": "Labor Day", @@ -281,16 +281,16 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-07-21": "Liberation Day (Guam)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-02": "All Souls' Day", "1971-11-25": "Thanksgiving", "1971-12-08": "Lady of Camarin Day", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-06": "Guam Discovery Day", @@ -349,16 +349,16 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-07-21": "Liberation Day (Guam)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-02": "All Souls' Day", "1976-11-25": "Thanksgiving", "1976-12-08": "Lady of Camarin Day", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-03-07": "Guam Discovery Day", @@ -372,9 +372,9 @@ "1977-11-24": "Thanksgiving", "1977-12-08": "Lady of Camarin Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-06": "Guam Discovery Day", "1978-03-24": "Good Friday", @@ -383,7 +383,7 @@ "1978-07-21": "Liberation Day (Guam)", "1978-09-04": "Labor Day", "1978-11-02": "All Souls' Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-08": "Lady of Camarin Day", @@ -398,7 +398,7 @@ "1979-09-03": "Labor Day", "1979-11-02": "All Souls' Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-08": "Lady of Camarin Day", "1979-12-25": "Christmas Day", @@ -420,7 +420,7 @@ "1981-03-02": "Guam Discovery Day", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-07-21": "Liberation Day (Guam)", "1981-09-07": "Labor Day", @@ -435,16 +435,16 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-07-21": "Liberation Day (Guam)", "1982-09-06": "Labor Day", "1982-11-02": "All Souls' Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-12-08": "Lady of Camarin Day", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-03-07": "Guam Discovery Day", @@ -458,9 +458,9 @@ "1983-11-24": "Thanksgiving", "1983-12-08": "Lady of Camarin Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-03-05": "Guam Discovery Day", "1984-04-20": "Good Friday", @@ -470,7 +470,7 @@ "1984-09-03": "Labor Day", "1984-11-02": "All Souls' Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-08": "Lady of Camarin Day", "1984-12-25": "Christmas Day", @@ -507,7 +507,7 @@ "1987-03-02": "Guam Discovery Day", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-07-21": "Liberation Day (Guam)", "1987-09-07": "Labor Day", @@ -530,9 +530,9 @@ "1988-11-24": "Thanksgiving", "1988-12-08": "Lady of Camarin Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-06": "Guam Discovery Day", @@ -542,7 +542,7 @@ "1989-07-21": "Liberation Day (Guam)", "1989-09-04": "Labor Day", "1989-11-02": "All Souls' Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-08": "Lady of Camarin Day", @@ -558,7 +558,7 @@ "1990-09-03": "Labor Day", "1990-11-02": "All Souls' Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-08": "Lady of Camarin Day", "1990-12-25": "Christmas Day", @@ -582,7 +582,7 @@ "1992-03-02": "Guam Discovery Day", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-07-21": "Liberation Day (Guam)", "1992-09-07": "Labor Day", @@ -598,16 +598,16 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-07-21": "Liberation Day (Guam)", "1993-09-06": "Labor Day", "1993-11-02": "All Souls' Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-12-08": "Lady of Camarin Day", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -622,9 +622,9 @@ "1994-11-24": "Thanksgiving", "1994-12-08": "Lady of Camarin Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-03-06": "Guam Discovery Day", @@ -634,7 +634,7 @@ "1995-07-21": "Liberation Day (Guam)", "1995-09-04": "Labor Day", "1995-11-02": "All Souls' Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-08": "Lady of Camarin Day", @@ -673,7 +673,7 @@ "1998-03-02": "Guam Discovery Day", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-07-21": "Liberation Day (Guam)", "1998-09-07": "Labor Day", @@ -689,16 +689,16 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-07-21": "Liberation Day (Guam)", "1999-09-06": "Labor Day", "1999-11-02": "All Souls' Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-12-08": "Lady of Camarin Day", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -709,7 +709,7 @@ "2000-07-21": "Liberation Day (Guam)", "2000-09-04": "Labor Day", "2000-11-02": "All Souls' Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-08": "Lady of Camarin Day", @@ -725,7 +725,7 @@ "2001-09-03": "Labor Day", "2001-11-02": "All Souls' Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-08": "Lady of Camarin Day", "2001-12-25": "Christmas Day", @@ -764,16 +764,16 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-07-21": "Liberation Day (Guam)", "2004-09-06": "Labor Day", "2004-11-02": "All Souls' Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-12-08": "Lady of Camarin Day", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -788,9 +788,9 @@ "2005-11-24": "Thanksgiving", "2005-12-08": "Lady of Camarin Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-03-06": "Guam Discovery Day", @@ -800,7 +800,7 @@ "2006-07-21": "Liberation Day (Guam)", "2006-09-04": "Labor Day", "2006-11-02": "All Souls' Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-08": "Lady of Camarin Day", @@ -816,7 +816,7 @@ "2007-09-03": "Labor Day", "2007-11-02": "All Souls' Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-08": "Lady of Camarin Day", "2007-12-25": "Christmas Day", @@ -840,7 +840,7 @@ "2009-03-02": "Guam Discovery Day", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-07-21": "Liberation Day (Guam)", "2009-09-07": "Labor Day", @@ -856,16 +856,16 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-07-21": "Liberation Day (Guam)", "2010-09-06": "Labor Day", "2010-11-02": "All Souls' Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-12-08": "Lady of Camarin Day", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -880,9 +880,9 @@ "2011-11-24": "Thanksgiving", "2011-12-08": "Lady of Camarin Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-03-05": "Guam Discovery Day", @@ -893,7 +893,7 @@ "2012-09-03": "Labor Day", "2012-11-02": "All Souls' Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-08": "Lady of Camarin Day", "2012-12-25": "Christmas Day", @@ -931,7 +931,7 @@ "2015-03-02": "Guam Discovery Day", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-07-21": "Liberation Day (Guam)", "2015-09-07": "Labor Day", @@ -954,9 +954,9 @@ "2016-11-24": "Thanksgiving", "2016-12-08": "Lady of Camarin Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-03-06": "Guam Discovery Day", @@ -966,7 +966,7 @@ "2017-07-21": "Liberation Day (Guam)", "2017-09-04": "Labor Day", "2017-11-02": "All Souls' Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-08": "Lady of Camarin Day", @@ -982,7 +982,7 @@ "2018-09-03": "Labor Day", "2018-11-02": "All Souls' Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-08": "Lady of Camarin Day", "2018-12-25": "Christmas Day", @@ -1006,7 +1006,7 @@ "2020-03-02": "Guam Discovery Day", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-07-21": "Liberation Day (Guam)", "2020-09-07": "Labor Day", @@ -1021,19 +1021,19 @@ "2021-03-01": "Guam Discovery Day", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-07-21": "Liberation Day (Guam)", "2021-09-06": "Labor Day", "2021-11-02": "All Souls' Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-12-08": "Lady of Camarin Day", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", @@ -1041,7 +1041,7 @@ "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-07-21": "Liberation Day (Guam)", "2022-09-05": "Labor Day", @@ -1050,9 +1050,9 @@ "2022-11-24": "Thanksgiving", "2022-12-08": "Lady of Camarin Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-03-06": "Guam Discovery Day", @@ -1063,7 +1063,7 @@ "2023-07-21": "Liberation Day (Guam)", "2023-09-04": "Labor Day", "2023-11-02": "All Souls' Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-08": "Lady of Camarin Day", @@ -1105,7 +1105,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-07-21": "Liberation Day (Guam)", "2026-09-07": "Labor Day", @@ -1120,19 +1120,19 @@ "2027-03-01": "Guam Discovery Day", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-07-21": "Liberation Day (Guam)", "2027-09-06": "Labor Day", "2027-11-02": "All Souls' Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-12-08": "Lady of Camarin Day", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -1144,7 +1144,7 @@ "2028-07-21": "Liberation Day (Guam)", "2028-09-04": "Labor Day", "2028-11-02": "All Souls' Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-08": "Lady of Camarin Day", @@ -1161,7 +1161,7 @@ "2029-09-03": "Labor Day", "2029-11-02": "All Souls' Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-08": "Lady of Camarin Day", "2029-12-25": "Christmas Day", @@ -1201,19 +1201,19 @@ "2032-03-01": "Guam Discovery Day", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-07-21": "Liberation Day (Guam)", "2032-09-06": "Labor Day", "2032-11-02": "All Souls' Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-12-08": "Lady of Camarin Day", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", @@ -1221,7 +1221,7 @@ "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-07-21": "Liberation Day (Guam)", "2033-09-05": "Labor Day", @@ -1230,9 +1230,9 @@ "2033-11-24": "Thanksgiving", "2033-12-08": "Lady of Camarin Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-03-06": "Guam Discovery Day", @@ -1243,7 +1243,7 @@ "2034-07-21": "Liberation Day (Guam)", "2034-09-04": "Labor Day", "2034-11-02": "All Souls' Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-08": "Lady of Camarin Day", @@ -1260,7 +1260,7 @@ "2035-09-03": "Labor Day", "2035-11-02": "All Souls' Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-08": "Lady of Camarin Day", "2035-12-25": "Christmas Day", @@ -1286,7 +1286,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-07-21": "Liberation Day (Guam)", "2037-09-07": "Labor Day", @@ -1301,19 +1301,19 @@ "2038-03-01": "Guam Discovery Day", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-07-21": "Liberation Day (Guam)", "2038-09-06": "Labor Day", "2038-11-02": "All Souls' Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-12-08": "Lady of Camarin Day", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", @@ -1321,7 +1321,7 @@ "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-07-21": "Liberation Day (Guam)", "2039-09-05": "Labor Day", @@ -1330,9 +1330,9 @@ "2039-11-24": "Thanksgiving", "2039-12-08": "Lady of Camarin Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-05": "Guam Discovery Day", @@ -1344,7 +1344,7 @@ "2040-09-03": "Labor Day", "2040-11-02": "All Souls' Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-08": "Lady of Camarin Day", "2040-12-25": "Christmas Day", @@ -1385,7 +1385,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-07-21": "Liberation Day (Guam)", "2043-09-07": "Labor Day", @@ -1401,7 +1401,7 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-07-21": "Liberation Day (Guam)", "2044-09-05": "Labor Day", @@ -1410,9 +1410,9 @@ "2044-11-24": "Thanksgiving", "2044-12-08": "Lady of Camarin Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-03-06": "Guam Discovery Day", @@ -1423,7 +1423,7 @@ "2045-07-21": "Liberation Day (Guam)", "2045-09-04": "Labor Day", "2045-11-02": "All Souls' Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-08": "Lady of Camarin Day", @@ -1440,7 +1440,7 @@ "2046-09-03": "Labor Day", "2046-11-02": "All Souls' Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-08": "Lady of Camarin Day", "2046-12-25": "Christmas Day", @@ -1466,7 +1466,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-07-21": "Liberation Day (Guam)", "2048-09-07": "Labor Day", @@ -1481,19 +1481,19 @@ "2049-03-01": "Guam Discovery Day", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-07-21": "Liberation Day (Guam)", "2049-09-06": "Labor Day", "2049-11-02": "All Souls' Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-12-08": "Lady of Camarin Day", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", @@ -1501,7 +1501,7 @@ "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-07-21": "Liberation Day (Guam)", "2050-09-05": "Labor Day", @@ -1510,5 +1510,5 @@ "2050-11-24": "Thanksgiving", "2050-12-08": "Lady of Camarin Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_HI.json b/snapshots/countries/US_HI.json index bb9f8f9a2..79c217e69 100644 --- a/snapshots/countries/US_HI.json +++ b/snapshots/countries/US_HI.json @@ -1,14 +1,14 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "1950-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1950-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1950-05-30": "Memorial Day", "1950-06-11": "Kamehameha Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -20,7 +20,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -38,7 +38,7 @@ "1953-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1953-05-30": "Memorial Day", "1953-06-11": "Kamehameha Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -50,16 +50,16 @@ "1954-05-30": "Memorial Day", "1954-06-11": "Kamehameha Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", - "1955-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1955-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1955-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1955-05-30": "Memorial Day", "1955-06-11": "Kamehameha Day", @@ -68,9 +68,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1956-05-30": "Memorial Day", @@ -78,7 +78,7 @@ "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -106,7 +106,7 @@ "1959-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1959-05-30": "Memorial Day", "1959-06-11": "Kamehameha Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-08-21": "Statehood Day", "1959-09-07": "Labor Day", @@ -115,7 +115,7 @@ "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-02-22": "Washington's Birthday", - "1960-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1960-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1960-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1960-05-30": "Memorial Day", "1960-06-11": "Kamehameha Day", @@ -125,18 +125,18 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "1961-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1961-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1961-05-30": "Memorial Day", "1961-06-11": "Kamehameha Day", "1961-07-04": "Independence Day", "1961-08-18": "Statehood Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -149,7 +149,7 @@ "1962-08-17": "Statehood Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -168,7 +168,7 @@ "1964-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1964-05-30": "Memorial Day", "1964-06-11": "Kamehameha Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-08-21": "Statehood Day", "1964-09-07": "Labor Day", @@ -181,17 +181,17 @@ "1965-05-30": "Memorial Day", "1965-06-11": "Kamehameha Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-08-20": "Statehood Day", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", - "1966-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1966-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1966-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1966-05-30": "Memorial Day", "1966-06-11": "Kamehameha Day", @@ -201,18 +201,18 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "1967-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1967-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1967-05-30": "Memorial Day", "1967-06-11": "Kamehameha Day", "1967-07-04": "Independence Day", "1967-08-18": "Statehood Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -243,7 +243,7 @@ "1970-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1970-05-30": "Memorial Day", "1970-06-11": "Kamehameha Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-08-21": "Statehood Day", "1970-09-07": "Labor Day", @@ -256,18 +256,18 @@ "1971-05-31": "Memorial Day", "1971-06-11": "Kamehameha Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-08-20": "Statehood Day", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "1972-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1972-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1972-05-29": "Memorial Day", "1972-06-11": "Kamehameha Day", "1972-07-04": "Independence Day", @@ -315,17 +315,17 @@ "1976-05-31": "Memorial Day", "1976-06-11": "Kamehameha Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-08-20": "Statehood Day", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", - "1977-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1977-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1977-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1977-05-30": "Memorial Day", "1977-06-11": "Kamehameha Day", @@ -335,18 +335,18 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "1978-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1978-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1978-05-29": "Memorial Day", "1978-06-11": "Kamehameha Day", "1978-07-04": "Independence Day", "1978-08-18": "Statehood Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -359,7 +359,7 @@ "1979-08-17": "Statehood Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -378,7 +378,7 @@ "1981-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1981-05-25": "Memorial Day", "1981-06-11": "Kamehameha Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-08-21": "Statehood Day", "1981-09-07": "Labor Day", @@ -391,17 +391,17 @@ "1982-05-31": "Memorial Day", "1982-06-11": "Kamehameha Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-08-20": "Statehood Day", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", - "1983-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1983-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1983-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1983-05-30": "Memorial Day", "1983-06-11": "Kamehameha Day", @@ -411,9 +411,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1984-05-28": "Memorial Day", @@ -422,7 +422,7 @@ "1984-08-17": "Statehood Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -454,7 +454,7 @@ "1987-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1987-05-25": "Memorial Day", "1987-06-11": "Kamehameha Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-08-21": "Statehood Day", "1987-09-07": "Labor Day", @@ -464,7 +464,7 @@ "1988-01-01": "New Year's Day", "1988-01-18": "Martin Luther King Jr. Day", "1988-02-15": "Washington's Birthday", - "1988-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1988-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1988-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1988-05-30": "Memorial Day", "1988-06-11": "Kamehameha Day", @@ -474,19 +474,19 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "1989-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1989-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1989-05-29": "Memorial Day", "1989-06-11": "Kamehameha Day", "1989-07-04": "Independence Day", "1989-08-18": "Statehood Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -500,7 +500,7 @@ "1990-08-17": "Statehood Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -521,7 +521,7 @@ "1992-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1992-05-25": "Memorial Day", "1992-06-11": "Kamehameha Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-08-21": "Statehood Day", "1992-09-07": "Labor Day", @@ -535,18 +535,18 @@ "1993-05-31": "Memorial Day", "1993-06-11": "Kamehameha Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-08-20": "Statehood Day", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", - "1994-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1994-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1994-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1994-05-30": "Memorial Day", "1994-06-11": "Kamehameha Day", @@ -556,19 +556,19 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "1995-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "1995-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "1995-05-29": "Memorial Day", "1995-06-11": "Kamehameha Day", "1995-07-04": "Independence Day", "1995-08-18": "Statehood Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -602,7 +602,7 @@ "1998-03-26": "Prince Jonah Kuhio Kalanianaole Day", "1998-05-25": "Memorial Day", "1998-06-11": "Kamehameha Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-08-21": "Statehood Day", "1998-09-07": "Labor Day", @@ -616,25 +616,25 @@ "1999-05-31": "Memorial Day", "1999-06-11": "Kamehameha Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-08-20": "Statehood Day", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "2000-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2000-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2000-05-29": "Memorial Day", "2000-06-11": "Kamehameha Day", "2000-07-04": "Independence Day", "2000-08-18": "Statehood Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -648,7 +648,7 @@ "2001-08-17": "Statehood Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -682,18 +682,18 @@ "2004-05-31": "Memorial Day", "2004-06-11": "Kamehameha Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-08-20": "Statehood Day", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", - "2005-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2005-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2005-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2005-05-30": "Memorial Day", "2005-06-11": "Kamehameha Day", @@ -703,19 +703,19 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "2006-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2006-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2006-05-29": "Memorial Day", "2006-06-11": "Kamehameha Day", "2006-07-04": "Independence Day", "2006-08-18": "Statehood Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -729,7 +729,7 @@ "2007-08-17": "Statehood Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -751,7 +751,7 @@ "2009-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2009-05-25": "Memorial Day", "2009-06-11": "Kamehameha Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-08-21": "Statehood Day", "2009-09-07": "Labor Day", @@ -765,22 +765,22 @@ "2010-05-31": "Memorial Day", "2010-06-11": "Kamehameha Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-08-20": "Statehood Day", "2010-09-06": "Labor Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", - "2011-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2011-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2011-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2011-05-30": "Memorial Day", - "2011-06-10": "Kamehameha Day (Observed)", + "2011-06-10": "Kamehameha Day (observed)", "2011-06-11": "Kamehameha Day", "2011-07-04": "Independence Day", "2011-08-19": "Statehood Day", @@ -788,9 +788,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-03-26": "Prince Jonah Kuhio Kalanianaole Day", @@ -801,7 +801,7 @@ "2012-09-03": "Labor Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -835,7 +835,7 @@ "2015-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2015-05-25": "Memorial Day", "2015-06-11": "Kamehameha Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-08-21": "Statehood Day", "2015-09-07": "Labor Day", @@ -845,10 +845,10 @@ "2016-01-01": "New Year's Day", "2016-01-18": "Martin Luther King Jr. Day", "2016-02-15": "Washington's Birthday", - "2016-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2016-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2016-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2016-05-30": "Memorial Day", - "2016-06-10": "Kamehameha Day (Observed)", + "2016-06-10": "Kamehameha Day (observed)", "2016-06-11": "Kamehameha Day", "2016-07-04": "Independence Day", "2016-08-19": "Statehood Day", @@ -857,20 +857,20 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "2017-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2017-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2017-05-29": "Memorial Day", "2017-06-11": "Kamehameha Day", - "2017-06-12": "Kamehameha Day (Observed)", + "2017-06-12": "Kamehameha Day (observed)", "2017-07-04": "Independence Day", "2017-08-18": "Statehood Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -885,7 +885,7 @@ "2018-09-03": "Labor Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -906,7 +906,7 @@ "2020-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2020-05-25": "Memorial Day", "2020-06-11": "Kamehameha Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-08-21": "Statehood Day", "2020-09-07": "Labor Day", @@ -920,27 +920,27 @@ "2021-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2021-05-31": "Memorial Day", "2021-06-11": "Kamehameha Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-08-20": "Statehood Day", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", - "2022-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2022-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2022-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2022-05-30": "Memorial Day", - "2022-06-10": "Kamehameha Day (Observed)", + "2022-06-10": "Kamehameha Day (observed)", "2022-06-11": "Kamehameha Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-08-19": "Statehood Day", "2022-09-05": "Labor Day", @@ -948,21 +948,21 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "2023-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2023-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2023-05-29": "Memorial Day", "2023-06-11": "Kamehameha Day", - "2023-06-12": "Kamehameha Day (Observed)", + "2023-06-12": "Kamehameha Day (observed)", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-08-18": "Statehood Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -1000,7 +1000,7 @@ "2026-05-25": "Memorial Day", "2026-06-11": "Kamehameha Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-08-21": "Statehood Day", "2026-09-07": "Labor Day", @@ -1014,31 +1014,31 @@ "2027-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2027-05-31": "Memorial Day", "2027-06-11": "Kamehameha Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-08-20": "Statehood Day", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", "2028-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "2028-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2028-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2028-05-29": "Memorial Day", "2028-06-11": "Kamehameha Day", - "2028-06-12": "Kamehameha Day (Observed)", + "2028-06-12": "Kamehameha Day (observed)", "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-08-18": "Statehood Day", "2028-09-04": "Labor Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -1053,7 +1053,7 @@ "2029-08-17": "Statehood Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1089,50 +1089,50 @@ "2032-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2032-05-31": "Memorial Day", "2032-06-11": "Kamehameha Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-08-20": "Statehood Day", "2032-09-06": "Labor Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", - "2033-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2033-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2033-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2033-05-30": "Memorial Day", - "2033-06-10": "Kamehameha Day (Observed)", + "2033-06-10": "Kamehameha Day (observed)", "2033-06-11": "Kamehameha Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-08-19": "Statehood Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "2034-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2034-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2034-05-29": "Memorial Day", "2034-06-11": "Kamehameha Day", - "2034-06-12": "Kamehameha Day (Observed)", + "2034-06-12": "Kamehameha Day (observed)", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-08-18": "Statehood Day", "2034-09-04": "Labor Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1147,7 +1147,7 @@ "2035-08-17": "Statehood Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1171,7 +1171,7 @@ "2037-05-25": "Memorial Day", "2037-06-11": "Kamehameha Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-08-21": "Statehood Day", "2037-09-07": "Labor Day", @@ -1184,37 +1184,37 @@ "2038-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2038-05-31": "Memorial Day", "2038-06-11": "Kamehameha Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-08-20": "Statehood Day", "2038-09-06": "Labor Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", - "2039-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2039-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2039-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2039-05-30": "Memorial Day", - "2039-06-10": "Kamehameha Day (Observed)", + "2039-06-10": "Kamehameha Day (observed)", "2039-06-11": "Kamehameha Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-08-19": "Statehood Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-26": "Prince Jonah Kuhio Kalanianaole Day", @@ -1226,7 +1226,7 @@ "2040-09-03": "Labor Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1263,7 +1263,7 @@ "2043-05-25": "Memorial Day", "2043-06-11": "Kamehameha Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-08-21": "Statehood Day", "2043-09-07": "Labor Day", @@ -1273,13 +1273,13 @@ "2044-01-01": "New Year's Day", "2044-01-18": "Martin Luther King Jr. Day", "2044-02-15": "Washington's Birthday", - "2044-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2044-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2044-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2044-05-30": "Memorial Day", - "2044-06-10": "Kamehameha Day (Observed)", + "2044-06-10": "Kamehameha Day (observed)", "2044-06-11": "Kamehameha Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-08-19": "Statehood Day", "2044-09-05": "Labor Day", @@ -1287,21 +1287,21 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-03-26": "Prince Jonah Kuhio Kalanianaole Day", - "2045-03-27": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2045-03-27": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2045-05-29": "Memorial Day", "2045-06-11": "Kamehameha Day", - "2045-06-12": "Kamehameha Day (Observed)", + "2045-06-12": "Kamehameha Day (observed)", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-08-18": "Statehood Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1317,7 +1317,7 @@ "2046-09-03": "Labor Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1340,7 +1340,7 @@ "2048-05-25": "Memorial Day", "2048-06-11": "Kamehameha Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-08-21": "Statehood Day", "2048-09-07": "Labor Day", @@ -1354,27 +1354,27 @@ "2049-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2049-05-31": "Memorial Day", "2049-06-11": "Kamehameha Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-08-20": "Statehood Day", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", - "2050-03-25": "Prince Jonah Kuhio Kalanianaole Day (Observed)", + "2050-03-25": "Prince Jonah Kuhio Kalanianaole Day (observed)", "2050-03-26": "Prince Jonah Kuhio Kalanianaole Day", "2050-05-30": "Memorial Day", - "2050-06-10": "Kamehameha Day (Observed)", + "2050-06-10": "Kamehameha Day (observed)", "2050-06-11": "Kamehameha Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-08-19": "Statehood Day", "2050-09-05": "Labor Day", @@ -1382,5 +1382,5 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_IA.json b/snapshots/countries/US_IA.json index fb29d7437..b31670362 100644 --- a/snapshots/countries/US_IA.json +++ b/snapshots/countries/US_IA.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -195,15 +195,15 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", - "1972-02-11": "Lincoln's Birthday (Observed)", + "1972-02-11": "Lincoln's Birthday (observed)", "1972-02-12": "Lincoln's Birthday", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -244,15 +244,15 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", - "1977-02-11": "Lincoln's Birthday (Observed)", + "1977-02-11": "Lincoln's Birthday (observed)", "1977-02-12": "Lincoln's Birthday", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -261,16 +261,16 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-12": "Lincoln's Birthday", - "1978-02-13": "Lincoln's Birthday (Observed)", + "1978-02-13": "Lincoln's Birthday (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -281,7 +281,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -297,7 +297,7 @@ "1981-02-12": "Lincoln's Birthday", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -308,15 +308,15 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", - "1983-02-11": "Lincoln's Birthday (Observed)", + "1983-02-11": "Lincoln's Birthday (observed)", "1983-02-12": "Lincoln's Birthday", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -325,17 +325,17 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-12": "Lincoln's Birthday", - "1984-02-13": "Lincoln's Birthday (Observed)", + "1984-02-13": "Lincoln's Birthday (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -362,7 +362,7 @@ "1987-02-12": "Lincoln's Birthday", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -378,17 +378,17 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-12": "Lincoln's Birthday", - "1989-02-13": "Lincoln's Birthday (Observed)", + "1989-02-13": "Lincoln's Birthday (observed)", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -400,7 +400,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -418,7 +418,7 @@ "1992-02-12": "Lincoln's Birthday", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -430,16 +430,16 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", - "1994-02-11": "Lincoln's Birthday (Observed)", + "1994-02-11": "Lincoln's Birthday (observed)", "1994-02-12": "Lincoln's Birthday", "1994-02-21": "Washington's Birthday", "1994-05-30": "Memorial Day", @@ -448,17 +448,17 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-12": "Lincoln's Birthday", - "1995-02-13": "Lincoln's Birthday (Observed)", + "1995-02-13": "Lincoln's Birthday (observed)", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -487,7 +487,7 @@ "1998-02-12": "Lincoln's Birthday", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -499,22 +499,22 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", - "2000-02-11": "Lincoln's Birthday (Observed)", + "2000-02-11": "Lincoln's Birthday (observed)", "2000-02-12": "Lincoln's Birthday", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -526,7 +526,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -555,16 +555,16 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", - "2005-02-11": "Lincoln's Birthday (Observed)", + "2005-02-11": "Lincoln's Birthday (observed)", "2005-02-12": "Lincoln's Birthday", "2005-02-21": "Washington's Birthday", "2005-05-30": "Memorial Day", @@ -573,17 +573,17 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-12": "Lincoln's Birthday", - "2006-02-13": "Lincoln's Birthday (Observed)", + "2006-02-13": "Lincoln's Birthday (observed)", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -595,7 +595,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -613,7 +613,7 @@ "2009-02-12": "Lincoln's Birthday", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -625,16 +625,16 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", - "2011-02-11": "Lincoln's Birthday (Observed)", + "2011-02-11": "Lincoln's Birthday (observed)", "2011-02-12": "Lincoln's Birthday", "2011-02-21": "Washington's Birthday", "2011-05-30": "Memorial Day", @@ -643,18 +643,18 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-12": "Lincoln's Birthday", - "2012-02-13": "Lincoln's Birthday (Observed)", + "2012-02-13": "Lincoln's Birthday (observed)", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -682,7 +682,7 @@ "2015-02-12": "Lincoln's Birthday", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -698,17 +698,17 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-12": "Lincoln's Birthday", - "2017-02-13": "Lincoln's Birthday (Observed)", + "2017-02-13": "Lincoln's Birthday (observed)", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -720,7 +720,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -738,7 +738,7 @@ "2020-02-12": "Lincoln's Birthday", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -749,41 +749,41 @@ "2021-02-12": "Lincoln's Birthday", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", - "2022-02-11": "Lincoln's Birthday (Observed)", + "2022-02-11": "Lincoln's Birthday (observed)", "2022-02-12": "Lincoln's Birthday", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-12": "Lincoln's Birthday", - "2023-02-13": "Lincoln's Birthday (Observed)", + "2023-02-13": "Lincoln's Birthday (observed)", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -815,7 +815,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -826,26 +826,26 @@ "2027-02-12": "Lincoln's Birthday", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", - "2028-02-11": "Lincoln's Birthday (Observed)", + "2028-02-11": "Lincoln's Birthday (observed)", "2028-02-12": "Lincoln's Birthday", "2028-02-21": "Washington's Birthday", "2028-05-29": "Memorial Day", "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -858,7 +858,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -888,41 +888,41 @@ "2032-02-12": "Lincoln's Birthday", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", - "2033-02-11": "Lincoln's Birthday (Observed)", + "2033-02-11": "Lincoln's Birthday (observed)", "2033-02-12": "Lincoln's Birthday", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-12": "Lincoln's Birthday", - "2034-02-13": "Lincoln's Birthday (Observed)", + "2034-02-13": "Lincoln's Birthday (observed)", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -935,7 +935,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -955,7 +955,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -966,42 +966,42 @@ "2038-02-12": "Lincoln's Birthday", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", - "2039-02-11": "Lincoln's Birthday (Observed)", + "2039-02-11": "Lincoln's Birthday (observed)", "2039-02-12": "Lincoln's Birthday", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-12": "Lincoln's Birthday", - "2040-02-13": "Lincoln's Birthday (Observed)", + "2040-02-13": "Lincoln's Birthday (observed)", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", "2040-06-19": "Juneteenth National Independence Day", "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1032,7 +1032,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1044,24 +1044,24 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-12": "Lincoln's Birthday", - "2045-02-13": "Lincoln's Birthday (Observed)", + "2045-02-13": "Lincoln's Birthday (observed)", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1074,7 +1074,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1094,7 +1094,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1105,28 +1105,28 @@ "2049-02-12": "Lincoln's Birthday", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", - "2050-02-11": "Lincoln's Birthday (Observed)", + "2050-02-11": "Lincoln's Birthday (observed)", "2050-02-12": "Lincoln's Birthday", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_ID.json b/snapshots/countries/US_ID.json index 47a2c99b4..8339aec21 100644 --- a/snapshots/countries/US_ID.json +++ b/snapshots/countries/US_ID.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -32,7 +32,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -43,14 +43,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -93,7 +93,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -143,7 +143,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -154,14 +154,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -204,7 +204,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -215,14 +215,14 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -263,14 +263,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -314,7 +314,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -325,14 +325,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -377,7 +377,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -432,7 +432,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -444,14 +444,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -499,7 +499,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -511,14 +511,14 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -566,14 +566,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. / Idaho Human Rights Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -622,7 +622,7 @@ "2009-01-19": "Martin Luther King Jr. / Idaho Human Rights Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -634,14 +634,14 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. / Idaho Human Rights Day", "2011-02-21": "Washington's Birthday", @@ -652,9 +652,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. / Idaho Human Rights Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -662,7 +662,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -689,7 +689,7 @@ "2015-01-19": "Martin Luther King Jr. / Idaho Human Rights Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -706,16 +706,16 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. / Idaho Human Rights Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -727,7 +727,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -744,7 +744,7 @@ "2020-01-20": "Martin Luther King Jr. / Idaho Human Rights Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -755,32 +755,32 @@ "2021-01-18": "Martin Luther King Jr. / Idaho Human Rights Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. / Idaho Human Rights Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. / Idaho Human Rights Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -788,7 +788,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -819,7 +819,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -830,17 +830,17 @@ "2027-01-18": "Martin Luther King Jr. / Idaho Human Rights Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. / Idaho Human Rights Day", "2028-02-21": "Washington's Birthday", @@ -849,7 +849,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -862,7 +862,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -891,32 +891,32 @@ "2032-01-19": "Martin Luther King Jr. / Idaho Human Rights Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. / Idaho Human Rights Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. / Idaho Human Rights Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -924,7 +924,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -937,7 +937,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -956,7 +956,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -967,32 +967,32 @@ "2038-01-18": "Martin Luther King Jr. / Idaho Human Rights Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. / Idaho Human Rights Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. / Idaho Human Rights Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1001,7 +1001,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1031,7 +1031,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1043,16 +1043,16 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. / Idaho Human Rights Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1060,7 +1060,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1073,7 +1073,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1092,7 +1092,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1103,28 +1103,28 @@ "2049-01-18": "Martin Luther King Jr. / Idaho Human Rights Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. / Idaho Human Rights Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_IL.json b/snapshots/countries/US_IL.json index 8a8daea92..368ddfc85 100644 --- a/snapshots/countries/US_IL.json +++ b/snapshots/countries/US_IL.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -32,7 +32,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -43,14 +43,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -93,7 +93,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -143,7 +143,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -154,14 +154,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -204,7 +204,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -216,16 +216,16 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", - "1972-02-11": "Lincoln's Birthday (Observed)", + "1972-02-11": "Lincoln's Birthday (observed)", "1972-02-12": "Lincoln's Birthday", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -270,16 +270,16 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", - "1977-02-11": "Lincoln's Birthday (Observed)", + "1977-02-11": "Lincoln's Birthday (observed)", "1977-02-12": "Lincoln's Birthday", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -289,18 +289,18 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-12": "Lincoln's Birthday", - "1978-02-13": "Lincoln's Birthday (Observed)", + "1978-02-13": "Lincoln's Birthday (observed)", "1978-02-20": "Washington's Birthday", "1978-03-06": "Casimir Pulaski Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -313,7 +313,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -332,7 +332,7 @@ "1981-02-16": "Washington's Birthday", "1981-03-02": "Casimir Pulaski Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -345,16 +345,16 @@ "1982-03-01": "Casimir Pulaski Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", - "1983-02-11": "Lincoln's Birthday (Observed)", + "1983-02-11": "Lincoln's Birthday (observed)", "1983-02-12": "Lincoln's Birthday", "1983-02-21": "Washington's Birthday", "1983-03-07": "Casimir Pulaski Day", @@ -365,11 +365,11 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-12": "Lincoln's Birthday", - "1984-02-13": "Lincoln's Birthday (Observed)", + "1984-02-13": "Lincoln's Birthday (observed)", "1984-02-20": "Washington's Birthday", "1984-03-05": "Casimir Pulaski Day", "1984-05-28": "Memorial Day", @@ -377,7 +377,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -409,7 +409,7 @@ "1987-02-16": "Washington's Birthday", "1987-03-02": "Casimir Pulaski Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -428,19 +428,19 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-12": "Lincoln's Birthday", - "1989-02-13": "Lincoln's Birthday (Observed)", + "1989-02-13": "Lincoln's Birthday (observed)", "1989-02-20": "Washington's Birthday", "1989-03-06": "Casimir Pulaski Day", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -454,7 +454,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -475,7 +475,7 @@ "1992-02-17": "Washington's Birthday", "1992-03-02": "Casimir Pulaski Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -489,17 +489,17 @@ "1993-03-01": "Casimir Pulaski Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", - "1994-02-11": "Lincoln's Birthday (Observed)", + "1994-02-11": "Lincoln's Birthday (observed)", "1994-02-12": "Lincoln's Birthday", "1994-02-21": "Washington's Birthday", "1994-03-07": "Casimir Pulaski Day", @@ -510,19 +510,19 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-12": "Lincoln's Birthday", - "1995-02-13": "Lincoln's Birthday (Observed)", + "1995-02-13": "Lincoln's Birthday (observed)", "1995-02-20": "Washington's Birthday", "1995-03-06": "Casimir Pulaski Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -556,7 +556,7 @@ "1998-02-16": "Washington's Birthday", "1998-03-02": "Casimir Pulaski Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -570,17 +570,17 @@ "1999-03-01": "Casimir Pulaski Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", - "2000-02-11": "Lincoln's Birthday (Observed)", + "2000-02-11": "Lincoln's Birthday (observed)", "2000-02-12": "Lincoln's Birthday", "2000-02-21": "Washington's Birthday", "2000-03-06": "Casimir Pulaski Day", @@ -588,7 +588,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -602,7 +602,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -636,17 +636,17 @@ "2004-03-01": "Casimir Pulaski Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", - "2005-02-11": "Lincoln's Birthday (Observed)", + "2005-02-11": "Lincoln's Birthday (observed)", "2005-02-12": "Lincoln's Birthday", "2005-02-21": "Washington's Birthday", "2005-03-07": "Casimir Pulaski Day", @@ -657,19 +657,19 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-12": "Lincoln's Birthday", - "2006-02-13": "Lincoln's Birthday (Observed)", + "2006-02-13": "Lincoln's Birthday (observed)", "2006-02-20": "Washington's Birthday", "2006-03-06": "Casimir Pulaski Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -683,7 +683,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -705,7 +705,7 @@ "2009-02-16": "Washington's Birthday", "2009-03-02": "Casimir Pulaski Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -719,18 +719,18 @@ "2010-03-01": "Casimir Pulaski Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", - "2011-02-11": "Lincoln's Birthday (Observed)", + "2011-02-11": "Lincoln's Birthday (observed)", "2011-02-12": "Lincoln's Birthday", "2011-02-21": "Washington's Birthday", "2011-03-07": "Casimir Pulaski Day", @@ -741,12 +741,12 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-12": "Lincoln's Birthday", - "2012-02-13": "Lincoln's Birthday (Observed)", + "2012-02-13": "Lincoln's Birthday (observed)", "2012-02-20": "Washington's Birthday", "2012-03-05": "Casimir Pulaski Day", "2012-05-28": "Memorial Day", @@ -755,7 +755,7 @@ "2012-10-08": "Columbus Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -789,7 +789,7 @@ "2015-02-16": "Washington's Birthday", "2015-03-02": "Casimir Pulaski Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -809,19 +809,19 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-12": "Lincoln's Birthday", - "2017-02-13": "Lincoln's Birthday (Observed)", + "2017-02-13": "Lincoln's Birthday (observed)", "2017-02-20": "Washington's Birthday", "2017-03-06": "Casimir Pulaski Day", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -836,7 +836,7 @@ "2018-10-08": "Columbus Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -857,7 +857,7 @@ "2020-02-17": "Washington's Birthday", "2020-03-02": "Casimir Pulaski Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -871,26 +871,26 @@ "2021-02-15": "Washington's Birthday", "2021-03-01": "Casimir Pulaski Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", - "2022-02-11": "Lincoln's Birthday (Observed)", + "2022-02-11": "Lincoln's Birthday (observed)", "2022-02-12": "Lincoln's Birthday", "2022-02-21": "Washington's Birthday", "2022-03-07": "Casimir Pulaski Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", @@ -898,12 +898,12 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-12": "Lincoln's Birthday", - "2023-02-13": "Lincoln's Birthday (Observed)", + "2023-02-13": "Lincoln's Birthday (observed)", "2023-02-20": "Washington's Birthday", "2023-03-06": "Casimir Pulaski Day", "2023-05-29": "Memorial Day", @@ -911,7 +911,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -949,7 +949,7 @@ "2026-03-02": "Casimir Pulaski Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -963,20 +963,20 @@ "2027-02-15": "Washington's Birthday", "2027-03-01": "Casimir Pulaski Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", - "2028-02-11": "Lincoln's Birthday (Observed)", + "2028-02-11": "Lincoln's Birthday (observed)", "2028-02-12": "Lincoln's Birthday", "2028-02-21": "Washington's Birthday", "2028-03-06": "Casimir Pulaski Day", @@ -986,7 +986,7 @@ "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -1001,7 +1001,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1037,39 +1037,39 @@ "2032-02-16": "Washington's Birthday", "2032-03-01": "Casimir Pulaski Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", - "2033-02-11": "Lincoln's Birthday (Observed)", + "2033-02-11": "Lincoln's Birthday (observed)", "2033-02-12": "Lincoln's Birthday", "2033-02-21": "Washington's Birthday", "2033-03-07": "Casimir Pulaski Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-12": "Lincoln's Birthday", - "2034-02-13": "Lincoln's Birthday (Observed)", + "2034-02-13": "Lincoln's Birthday (observed)", "2034-02-20": "Washington's Birthday", "2034-03-06": "Casimir Pulaski Day", "2034-05-29": "Memorial Day", @@ -1078,7 +1078,7 @@ "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1093,7 +1093,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1117,7 +1117,7 @@ "2037-03-02": "Casimir Pulaski Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1130,39 +1130,39 @@ "2038-02-15": "Washington's Birthday", "2038-03-01": "Casimir Pulaski Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", - "2039-02-11": "Lincoln's Birthday (Observed)", + "2039-02-11": "Lincoln's Birthday (observed)", "2039-02-12": "Lincoln's Birthday", "2039-02-21": "Washington's Birthday", "2039-03-07": "Casimir Pulaski Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-12": "Lincoln's Birthday", - "2040-02-13": "Lincoln's Birthday (Observed)", + "2040-02-13": "Lincoln's Birthday (observed)", "2040-02-20": "Washington's Birthday", "2040-03-05": "Casimir Pulaski Day", "2040-05-28": "Memorial Day", @@ -1172,7 +1172,7 @@ "2040-10-08": "Columbus Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1209,7 +1209,7 @@ "2043-03-02": "Casimir Pulaski Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1223,7 +1223,7 @@ "2044-03-07": "Casimir Pulaski Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", @@ -1231,12 +1231,12 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-12": "Lincoln's Birthday", - "2045-02-13": "Lincoln's Birthday (Observed)", + "2045-02-13": "Lincoln's Birthday (observed)", "2045-02-20": "Washington's Birthday", "2045-03-06": "Casimir Pulaski Day", "2045-05-29": "Memorial Day", @@ -1244,7 +1244,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1260,7 +1260,7 @@ "2046-10-08": "Columbus Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1283,7 +1283,7 @@ "2048-03-02": "Casimir Pulaski Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1297,26 +1297,26 @@ "2049-02-15": "Washington's Birthday", "2049-03-01": "Casimir Pulaski Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", - "2050-02-11": "Lincoln's Birthday (Observed)", + "2050-02-11": "Lincoln's Birthday (observed)", "2050-02-12": "Lincoln's Birthday", "2050-02-21": "Washington's Birthday", "2050-03-07": "Casimir Pulaski Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", @@ -1324,5 +1324,5 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_IN.json b/snapshots/countries/US_IN.json index ffb8b8dae..b5f6dc740 100644 --- a/snapshots/countries/US_IN.json +++ b/snapshots/countries/US_IN.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -36,7 +36,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -48,14 +48,14 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", @@ -66,9 +66,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -76,7 +76,7 @@ "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -103,7 +103,7 @@ "1959-02-22": "Washington's Birthday", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -120,16 +120,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -141,7 +141,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -158,7 +158,7 @@ "1964-02-22": "Washington's Birthday", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -170,14 +170,14 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", @@ -188,16 +188,16 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -225,7 +225,7 @@ "1970-02-22": "Washington's Birthday", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -237,14 +237,14 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-31": "Good Friday", @@ -290,14 +290,14 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-04-08": "Good Friday", @@ -308,16 +308,16 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -329,7 +329,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -346,7 +346,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -358,14 +358,14 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-04-01": "Good Friday", @@ -376,9 +376,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", @@ -386,7 +386,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -415,7 +415,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -433,9 +433,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-24": "Good Friday", @@ -443,7 +443,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -456,7 +456,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -475,7 +475,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -488,14 +488,14 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -507,9 +507,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-04-14": "Good Friday", @@ -517,7 +517,7 @@ "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -548,7 +548,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -561,14 +561,14 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -577,7 +577,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -590,7 +590,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -621,14 +621,14 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -640,9 +640,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-14": "Good Friday", @@ -651,7 +651,7 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -664,7 +664,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -685,7 +685,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -699,16 +699,16 @@ "2010-05-04": "Primary Election Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Lincoln's Birthday", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -721,9 +721,9 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Lincoln's Birthday", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-06": "Good Friday", @@ -734,7 +734,7 @@ "2012-10-08": "Columbus Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Lincoln's Birthday", "2012-12-25": "Christmas Day", @@ -770,7 +770,7 @@ "2015-04-03": "Good Friday", "2015-05-05": "Primary Election Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -793,9 +793,9 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Lincoln's Birthday", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-04-14": "Good Friday", @@ -805,7 +805,7 @@ "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", "2017-11-07": "Election Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Lincoln's Birthday", @@ -821,7 +821,7 @@ "2018-10-08": "Columbus Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Lincoln's Birthday", "2018-12-25": "Christmas Day", @@ -845,7 +845,7 @@ "2020-04-10": "Good Friday", "2020-05-05": "Primary Election Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -860,19 +860,19 @@ "2021-04-02": "Good Friday", "2021-05-04": "Primary Election Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-02": "Election Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Lincoln's Birthday", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", @@ -880,7 +880,7 @@ "2022-05-03": "Primary Election Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", @@ -889,9 +889,9 @@ "2022-11-24": "Thanksgiving", "2022-11-25": "Lincoln's Birthday", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-07": "Good Friday", @@ -902,7 +902,7 @@ "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", "2023-11-07": "Election Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Lincoln's Birthday", @@ -944,7 +944,7 @@ "2026-05-05": "Primary Election Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -959,19 +959,19 @@ "2027-03-26": "Good Friday", "2027-05-04": "Primary Election Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-02": "Election Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Lincoln's Birthday", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -983,7 +983,7 @@ "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Lincoln's Birthday", @@ -1000,7 +1000,7 @@ "2029-10-08": "Columbus Day", "2029-11-06": "Election Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Lincoln's Birthday", "2029-12-25": "Christmas Day", @@ -1040,19 +1040,19 @@ "2032-03-26": "Good Friday", "2032-05-04": "Primary Election Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Lincoln's Birthday", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", @@ -1060,7 +1060,7 @@ "2033-05-03": "Primary Election Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", @@ -1069,9 +1069,9 @@ "2033-11-24": "Thanksgiving", "2033-11-25": "Lincoln's Birthday", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-07": "Good Friday", @@ -1082,7 +1082,7 @@ "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Lincoln's Birthday", @@ -1099,7 +1099,7 @@ "2035-10-08": "Columbus Day", "2035-11-06": "Election Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Lincoln's Birthday", "2035-12-25": "Christmas Day", @@ -1125,7 +1125,7 @@ "2037-05-05": "Primary Election Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1140,19 +1140,19 @@ "2038-04-23": "Good Friday", "2038-05-04": "Primary Election Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Lincoln's Birthday", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", @@ -1160,7 +1160,7 @@ "2039-05-03": "Primary Election Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", @@ -1169,9 +1169,9 @@ "2039-11-24": "Thanksgiving", "2039-11-25": "Lincoln's Birthday", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-30": "Good Friday", @@ -1183,7 +1183,7 @@ "2040-10-08": "Columbus Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Lincoln's Birthday", "2040-12-25": "Christmas Day", @@ -1224,7 +1224,7 @@ "2043-05-05": "Primary Election Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1240,7 +1240,7 @@ "2044-05-03": "Primary Election Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", @@ -1249,9 +1249,9 @@ "2044-11-24": "Thanksgiving", "2044-11-25": "Lincoln's Birthday", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-04-07": "Good Friday", @@ -1262,7 +1262,7 @@ "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", "2045-11-07": "Election Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Lincoln's Birthday", @@ -1279,7 +1279,7 @@ "2046-10-08": "Columbus Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Lincoln's Birthday", "2046-12-25": "Christmas Day", @@ -1305,7 +1305,7 @@ "2048-05-05": "Primary Election Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1320,19 +1320,19 @@ "2049-04-16": "Good Friday", "2049-05-04": "Primary Election Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-02": "Election Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Lincoln's Birthday", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", @@ -1340,7 +1340,7 @@ "2050-05-03": "Primary Election Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", @@ -1349,5 +1349,5 @@ "2050-11-24": "Thanksgiving", "2050-11-25": "Lincoln's Birthday", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_KS.json b/snapshots/countries/US_KS.json index ea3c35b8d..866b5d9b6 100644 --- a/snapshots/countries/US_KS.json +++ b/snapshots/countries/US_KS.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -626,7 +626,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -641,21 +641,21 @@ "2016-09-05": "Labor Day", "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", - "2016-12-23": "Christmas Eve (Observed)", + "2016-12-23": "Christmas Eve (observed)", "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", - "2017-12-22": "Christmas Eve (Observed)", + "2017-12-22": "Christmas Eve (observed)", "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -665,7 +665,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", @@ -683,7 +683,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -694,43 +694,43 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-23": "Christmas Eve (Observed)", - "2021-12-24": "Christmas Day (Observed); Christmas Eve", + "2021-12-23": "Christmas Eve (observed)", + "2021-12-24": "Christmas Day (observed); Christmas Eve", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", - "2022-12-23": "Christmas Eve (Observed)", + "2022-12-23": "Christmas Eve (observed)", "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", - "2023-12-22": "Christmas Eve (Observed)", + "2023-12-22": "Christmas Eve (observed)", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", @@ -760,7 +760,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -771,17 +771,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-23": "Christmas Eve (Observed)", - "2027-12-24": "Christmas Day (Observed); Christmas Eve", + "2027-12-23": "Christmas Eve (observed)", + "2027-12-24": "Christmas Day (observed); Christmas Eve", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -789,10 +789,10 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", - "2028-12-22": "Christmas Eve (Observed)", + "2028-12-22": "Christmas Eve (observed)", "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", @@ -803,7 +803,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", @@ -833,43 +833,43 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-23": "Christmas Eve (Observed)", - "2032-12-24": "Christmas Day (Observed); Christmas Eve", + "2032-12-23": "Christmas Eve (observed)", + "2032-12-24": "Christmas Day (observed); Christmas Eve", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", - "2033-12-23": "Christmas Eve (Observed)", + "2033-12-23": "Christmas Eve (observed)", "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", - "2034-12-22": "Christmas Eve (Observed)", + "2034-12-22": "Christmas Eve (observed)", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", @@ -880,7 +880,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", @@ -900,7 +900,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -911,33 +911,33 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-23": "Christmas Eve (Observed)", - "2038-12-24": "Christmas Day (Observed); Christmas Eve", + "2038-12-23": "Christmas Eve (observed)", + "2038-12-24": "Christmas Day (observed); Christmas Eve", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", - "2039-12-23": "Christmas Eve (Observed)", + "2039-12-23": "Christmas Eve (observed)", "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -945,7 +945,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", @@ -976,7 +976,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -988,27 +988,27 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", - "2044-12-23": "Christmas Eve (Observed)", + "2044-12-23": "Christmas Eve (observed)", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", - "2045-12-22": "Christmas Eve (Observed)", + "2045-12-22": "Christmas Eve (observed)", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", @@ -1019,7 +1019,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", @@ -1039,7 +1039,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1050,29 +1050,29 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-23": "Christmas Eve (Observed)", - "2049-12-24": "Christmas Day (Observed); Christmas Eve", + "2049-12-23": "Christmas Eve (observed)", + "2049-12-24": "Christmas Day (observed); Christmas Eve", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", - "2050-12-23": "Christmas Eve (Observed)", + "2050-12-23": "Christmas Eve (observed)", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_KY.json b/snapshots/countries/US_KY.json index 3b7a1fa80..3b916b958 100644 --- a/snapshots/countries/US_KY.json +++ b/snapshots/countries/US_KY.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -33,7 +33,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -44,13 +44,13 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -94,7 +94,7 @@ "1959-02-22": "Washington's Birthday", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -144,7 +144,7 @@ "1964-02-22": "Washington's Birthday", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -155,13 +155,13 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -205,7 +205,7 @@ "1970-02-22": "Washington's Birthday", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -216,13 +216,13 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-31": "Good Friday", @@ -264,13 +264,13 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-04-08": "Good Friday", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -315,7 +315,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -326,13 +326,13 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-04-01": "Good Friday", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -378,7 +378,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-24": "Good Friday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -433,7 +433,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -445,13 +445,13 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-04-14": "Good Friday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -500,7 +500,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -512,13 +512,13 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -567,13 +567,13 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-14": "Good Friday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -623,7 +623,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -635,13 +635,13 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -652,9 +652,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-06": "Good Friday", @@ -662,7 +662,7 @@ "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -692,7 +692,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -709,18 +709,18 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", - "2016-12-30": "New Year's Eve (Observed)", + "2016-12-26": "Christmas Day (observed)", + "2016-12-30": "New Year's Eve (observed)", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-04-14": "Good Friday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -733,7 +733,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2018-12-31": "New Year's Eve", @@ -753,7 +753,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -765,33 +765,33 @@ "2021-02-15": "Washington's Birthday", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed); New Year's Eve", + "2021-12-31": "New Year's Day (observed); New Year's Eve", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", - "2022-12-30": "New Year's Eve (Observed)", + "2022-12-26": "Christmas Day (observed)", + "2022-12-30": "New Year's Eve (observed)", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-07": "Good Friday", @@ -799,7 +799,7 @@ "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -834,7 +834,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -846,16 +846,16 @@ "2027-02-15": "Washington's Birthday", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed); New Year's Eve", + "2027-12-31": "New Year's Day (observed); New Year's Eve", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -864,7 +864,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -878,7 +878,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2029-12-31": "New Year's Eve", @@ -911,33 +911,33 @@ "2032-02-16": "Washington's Birthday", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed); New Year's Eve", + "2032-12-31": "New Year's Day (observed); New Year's Eve", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", - "2033-12-30": "New Year's Eve (Observed)", + "2033-12-26": "Christmas Day (observed)", + "2033-12-30": "New Year's Eve (observed)", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-07": "Good Friday", @@ -945,7 +945,7 @@ "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -959,7 +959,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2035-12-31": "New Year's Eve", @@ -981,7 +981,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -993,33 +993,33 @@ "2038-02-15": "Washington's Birthday", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed); New Year's Eve", + "2038-12-31": "New Year's Day (observed); New Year's Eve", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", - "2039-12-30": "New Year's Eve (Observed)", + "2039-12-26": "Christmas Day (observed)", + "2039-12-30": "New Year's Eve (observed)", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-30": "Good Friday", @@ -1028,7 +1028,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2040-12-31": "New Year's Eve", @@ -1062,7 +1062,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1075,17 +1075,17 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", - "2044-12-30": "New Year's Eve (Observed)", + "2044-12-26": "Christmas Day (observed)", + "2044-12-30": "New Year's Eve (observed)", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-04-07": "Good Friday", @@ -1093,7 +1093,7 @@ "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1107,7 +1107,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2046-12-31": "New Year's Eve", @@ -1129,7 +1129,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1141,29 +1141,29 @@ "2049-02-15": "Washington's Birthday", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed); New Year's Eve", + "2049-12-31": "New Year's Day (observed); New Year's Eve", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)", - "2050-12-30": "New Year's Eve (Observed)", + "2050-12-26": "Christmas Day (observed)", + "2050-12-30": "New Year's Eve (observed)", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/US_LA.json b/snapshots/countries/US_LA.json index 0704e4ad7..93cdfc914 100644 --- a/snapshots/countries/US_LA.json +++ b/snapshots/countries/US_LA.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-21": "Mardi Gras", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -38,7 +38,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -50,13 +50,13 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Mardi Gras; Washington's Birthday", "1955-04-08": "Good Friday", @@ -66,9 +66,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-14": "Mardi Gras", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", @@ -76,12 +76,12 @@ "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-01-20": "Inauguration Day", - "1957-01-21": "Inauguration Day (Observed)", + "1957-01-21": "Inauguration Day (observed)", "1957-02-22": "Washington's Birthday", "1957-03-05": "Mardi Gras", "1957-04-19": "Good Friday", @@ -106,7 +106,7 @@ "1959-02-22": "Washington's Birthday", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -122,9 +122,9 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-20": "Inauguration Day", "1961-02-14": "Mardi Gras", "1961-02-22": "Washington's Birthday", @@ -132,7 +132,7 @@ "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -144,7 +144,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -162,7 +162,7 @@ "1964-02-22": "Washington's Birthday", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -175,13 +175,13 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Mardi Gras; Washington's Birthday", "1966-04-08": "Good Friday", @@ -191,16 +191,16 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-07": "Mardi Gras", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -230,7 +230,7 @@ "1970-02-22": "Washington's Birthday", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -242,13 +242,13 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-15": "Mardi Gras", "1972-02-21": "Washington's Birthday", @@ -296,13 +296,13 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-01-20": "Inauguration Day", "1977-02-21": "Washington's Birthday", @@ -314,16 +314,16 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-07": "Mardi Gras", "1978-02-20": "Washington's Birthday", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -335,7 +335,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -354,7 +354,7 @@ "1981-03-03": "Mardi Gras", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -366,13 +366,13 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-15": "Mardi Gras", "1983-02-21": "Washington's Birthday", @@ -383,9 +383,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-03-06": "Mardi Gras", "1984-04-20": "Good Friday", @@ -393,12 +393,12 @@ "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-01-20": "Inauguration Day", - "1985-01-21": "Inauguration Day (Observed)", + "1985-01-21": "Inauguration Day (observed)", "1985-02-18": "Washington's Birthday", "1985-02-19": "Mardi Gras", "1985-04-05": "Good Friday", @@ -425,7 +425,7 @@ "1987-03-03": "Mardi Gras", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -442,9 +442,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-01-20": "Inauguration Day", "1989-02-07": "Mardi Gras", @@ -453,7 +453,7 @@ "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -466,7 +466,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -486,7 +486,7 @@ "1992-03-03": "Mardi Gras", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -500,13 +500,13 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-15": "Mardi Gras", @@ -518,9 +518,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-02-28": "Mardi Gras", @@ -528,7 +528,7 @@ "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -560,7 +560,7 @@ "1998-02-24": "Mardi Gras", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -573,13 +573,13 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -588,7 +588,7 @@ "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -602,7 +602,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -634,13 +634,13 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-01-20": "Inauguration Day", @@ -653,9 +653,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-02-28": "Mardi Gras", @@ -663,7 +663,7 @@ "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -676,7 +676,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -698,7 +698,7 @@ "2009-02-24": "Mardi Gras", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -711,14 +711,14 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -730,9 +730,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-02-21": "Mardi Gras", @@ -742,12 +742,12 @@ "2012-09-03": "Labor Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-20": "Inauguration Day", - "2013-01-21": "Inauguration Day (Observed); Martin Luther King Jr. Day", + "2013-01-21": "Inauguration Day (observed); Martin Luther King Jr. Day", "2013-02-12": "Mardi Gras", "2013-02-18": "Washington's Birthday", "2013-03-29": "Good Friday", @@ -775,7 +775,7 @@ "2015-02-17": "Mardi Gras", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -793,9 +793,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-01-20": "Inauguration Day", "2017-02-20": "Washington's Birthday", @@ -804,7 +804,7 @@ "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -818,7 +818,7 @@ "2018-09-03": "Labor Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -838,7 +838,7 @@ "2020-02-25": "Mardi Gras", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-03": "Election Day", @@ -852,16 +852,16 @@ "2021-02-16": "Mardi Gras", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", @@ -869,16 +869,16 @@ "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-08": "Election Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-02-21": "Mardi Gras", @@ -887,7 +887,7 @@ "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -923,7 +923,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-03": "Election Day", @@ -936,16 +936,16 @@ "2027-02-15": "Washington's Birthday", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -956,7 +956,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -971,7 +971,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1005,17 +1005,17 @@ "2032-02-16": "Washington's Birthday", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-01-20": "Inauguration Day", @@ -1024,15 +1024,15 @@ "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-02-21": "Mardi Gras", @@ -1042,7 +1042,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1056,7 +1056,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1080,7 +1080,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -1092,17 +1092,17 @@ "2038-03-09": "Mardi Gras", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", @@ -1110,15 +1110,15 @@ "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-14": "Mardi Gras", "2040-02-20": "Washington's Birthday", @@ -1129,12 +1129,12 @@ "2040-09-03": "Labor Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-20": "Inauguration Day", - "2041-01-21": "Inauguration Day (Observed); Martin Luther King Jr. Day", + "2041-01-21": "Inauguration Day (observed); Martin Luther King Jr. Day", "2041-02-18": "Washington's Birthday", "2041-03-05": "Mardi Gras", "2041-04-19": "Good Friday", @@ -1165,7 +1165,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1178,16 +1178,16 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-08": "Election Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-01-20": "Inauguration Day", "2045-02-20": "Washington's Birthday", @@ -1197,7 +1197,7 @@ "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1212,7 +1212,7 @@ "2046-09-03": "Labor Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1234,7 +1234,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-03": "Election Day", @@ -1248,16 +1248,16 @@ "2049-03-02": "Mardi Gras", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", @@ -1265,12 +1265,12 @@ "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-08": "Election Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_MA.json b/snapshots/countries/US_MA.json index abaab95df..875091d81 100644 --- a/snapshots/countries/US_MA.json +++ b/snapshots/countries/US_MA.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-03-17": "Evacuation Day", "1950-04-19": "Patriots' Day", @@ -8,21 +8,21 @@ "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", "1951-02-22": "Washington's Birthday", "1951-03-17": "Evacuation Day", - "1951-03-19": "Evacuation Day (Observed)", + "1951-03-19": "Evacuation Day (observed)", "1951-04-19": "Patriots' Day", "1951-05-30": "Memorial Day", "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -41,7 +41,7 @@ "1953-03-17": "Evacuation Day", "1953-04-19": "Patriots' Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -54,14 +54,14 @@ "1954-04-19": "Patriots' Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-03-17": "Evacuation Day", @@ -73,25 +73,25 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-17": "Evacuation Day", - "1956-03-19": "Evacuation Day (Observed)", + "1956-03-19": "Evacuation Day (observed)", "1956-04-19": "Patriots' Day", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-02-22": "Washington's Birthday", "1957-03-17": "Evacuation Day", - "1957-03-18": "Evacuation Day (Observed)", + "1957-03-18": "Evacuation Day (observed)", "1957-04-19": "Patriots' Day", "1957-05-30": "Memorial Day", "1957-07-04": "Independence Day", @@ -116,7 +116,7 @@ "1959-03-17": "Evacuation Day", "1959-04-19": "Patriots' Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -134,9 +134,9 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-17": "Evacuation Day", "1961-04-19": "Patriots' Day", @@ -144,27 +144,27 @@ "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", "1962-02-22": "Washington's Birthday", "1962-03-17": "Evacuation Day", - "1962-03-19": "Evacuation Day (Observed)", + "1962-03-19": "Evacuation Day (observed)", "1962-04-19": "Patriots' Day", "1962-05-30": "Memorial Day", "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-02-22": "Washington's Birthday", "1963-03-17": "Evacuation Day", - "1963-03-18": "Evacuation Day (Observed)", + "1963-03-18": "Evacuation Day (observed)", "1963-04-19": "Patriots' Day", "1963-05-30": "Memorial Day", "1963-07-04": "Independence Day", @@ -178,7 +178,7 @@ "1964-03-17": "Evacuation Day", "1964-04-19": "Patriots' Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -191,14 +191,14 @@ "1965-04-19": "Patriots' Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-03-17": "Evacuation Day", @@ -210,9 +210,9 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-17": "Evacuation Day", "1967-04-19": "Patriots' Day", @@ -220,14 +220,14 @@ "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", "1968-02-22": "Washington's Birthday", "1968-03-17": "Evacuation Day", - "1968-03-18": "Evacuation Day (Observed)", + "1968-03-18": "Evacuation Day (observed)", "1968-04-19": "Patriots' Day", "1968-05-30": "Memorial Day", "1968-07-04": "Independence Day", @@ -252,7 +252,7 @@ "1970-03-17": "Evacuation Day", "1970-04-20": "Patriots' Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -265,14 +265,14 @@ "1971-04-19": "Patriots' Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-17": "Evacuation Day", @@ -287,7 +287,7 @@ "1973-01-01": "New Year's Day", "1973-02-19": "Washington's Birthday", "1973-03-17": "Evacuation Day", - "1973-03-19": "Evacuation Day (Observed)", + "1973-03-19": "Evacuation Day (observed)", "1973-04-16": "Patriots' Day", "1973-05-28": "Memorial Day", "1973-07-04": "Independence Day", @@ -299,7 +299,7 @@ "1974-01-01": "New Year's Day", "1974-02-18": "Washington's Birthday", "1974-03-17": "Evacuation Day", - "1974-03-18": "Evacuation Day (Observed)", + "1974-03-18": "Evacuation Day (observed)", "1974-04-15": "Patriots' Day", "1974-05-27": "Memorial Day", "1974-07-04": "Independence Day", @@ -325,14 +325,14 @@ "1976-04-19": "Patriots' Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-03-17": "Evacuation Day", @@ -344,9 +344,9 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-17": "Evacuation Day", "1978-04-17": "Patriots' Day", @@ -354,21 +354,21 @@ "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-19": "Washington's Birthday", "1979-03-17": "Evacuation Day", - "1979-03-19": "Evacuation Day (Observed)", + "1979-03-19": "Evacuation Day (observed)", "1979-04-16": "Patriots' Day", "1979-05-28": "Memorial Day", "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -387,7 +387,7 @@ "1981-03-17": "Evacuation Day", "1981-04-20": "Patriots' Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -400,14 +400,14 @@ "1982-04-19": "Patriots' Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-03-17": "Evacuation Day", @@ -419,25 +419,25 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-03-17": "Evacuation Day", - "1984-03-19": "Evacuation Day (Observed)", + "1984-03-19": "Evacuation Day (observed)", "1984-04-16": "Patriots' Day", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-18": "Washington's Birthday", "1985-03-17": "Evacuation Day", - "1985-03-18": "Evacuation Day (Observed)", + "1985-03-18": "Evacuation Day (observed)", "1985-04-15": "Patriots' Day", "1985-05-27": "Memorial Day", "1985-07-04": "Independence Day", @@ -464,7 +464,7 @@ "1987-03-17": "Evacuation Day", "1987-04-20": "Patriots' Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -483,9 +483,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-17": "Evacuation Day", @@ -494,7 +494,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -502,21 +502,21 @@ "1990-01-15": "Martin Luther King Jr. Day", "1990-02-19": "Washington's Birthday", "1990-03-17": "Evacuation Day", - "1990-03-19": "Evacuation Day (Observed)", + "1990-03-19": "Evacuation Day (observed)", "1990-04-16": "Patriots' Day", "1990-05-28": "Memorial Day", "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-01-21": "Martin Luther King Jr. Day", "1991-02-18": "Washington's Birthday", "1991-03-17": "Evacuation Day", - "1991-03-18": "Evacuation Day (Observed)", + "1991-03-18": "Evacuation Day (observed)", "1991-04-15": "Patriots' Day", "1991-05-27": "Memorial Day", "1991-07-04": "Independence Day", @@ -531,7 +531,7 @@ "1992-03-17": "Evacuation Day", "1992-04-20": "Patriots' Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -545,14 +545,14 @@ "1993-04-19": "Patriots' Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -565,9 +565,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-03-17": "Evacuation Day", @@ -576,7 +576,7 @@ "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -584,7 +584,7 @@ "1996-01-15": "Martin Luther King Jr. Day", "1996-02-19": "Washington's Birthday", "1996-03-17": "Evacuation Day", - "1996-03-18": "Evacuation Day (Observed)", + "1996-03-18": "Evacuation Day (observed)", "1996-04-15": "Patriots' Day", "1996-05-27": "Memorial Day", "1996-07-04": "Independence Day", @@ -611,7 +611,7 @@ "1998-03-17": "Evacuation Day", "1998-04-20": "Patriots' Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -625,14 +625,14 @@ "1999-04-19": "Patriots' Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -642,7 +642,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -650,21 +650,21 @@ "2001-01-15": "Martin Luther King Jr. Day", "2001-02-19": "Washington's Birthday", "2001-03-17": "Evacuation Day", - "2001-03-19": "Evacuation Day (Observed)", + "2001-03-19": "Evacuation Day (observed)", "2001-04-16": "Patriots' Day", "2001-05-28": "Memorial Day", "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-21": "Martin Luther King Jr. Day", "2002-02-18": "Washington's Birthday", "2002-03-17": "Evacuation Day", - "2002-03-18": "Evacuation Day (Observed)", + "2002-03-18": "Evacuation Day (observed)", "2002-04-15": "Patriots' Day", "2002-05-27": "Memorial Day", "2002-07-04": "Independence Day", @@ -692,14 +692,14 @@ "2004-04-19": "Patriots' Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -712,9 +712,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-03-17": "Evacuation Day", @@ -723,7 +723,7 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -731,14 +731,14 @@ "2007-01-15": "Martin Luther King Jr. Day", "2007-02-19": "Washington's Birthday", "2007-03-17": "Evacuation Day", - "2007-03-19": "Evacuation Day (Observed)", + "2007-03-19": "Evacuation Day (observed)", "2007-04-16": "Patriots' Day", "2007-05-28": "Memorial Day", "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -759,7 +759,7 @@ "2009-03-17": "Evacuation Day", "2009-04-20": "Patriots' Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -773,14 +773,14 @@ "2010-04-19": "Patriots' Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -793,27 +793,27 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-03-17": "Evacuation Day", - "2012-03-19": "Evacuation Day (Observed)", + "2012-03-19": "Evacuation Day (observed)", "2012-04-16": "Patriots' Day", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-21": "Martin Luther King Jr. Day", "2013-02-18": "Washington's Birthday", "2013-03-17": "Evacuation Day", - "2013-03-18": "Evacuation Day (Observed)", + "2013-03-18": "Evacuation Day (observed)", "2013-04-15": "Patriots' Day", "2013-05-27": "Memorial Day", "2013-07-04": "Independence Day", @@ -840,7 +840,7 @@ "2015-03-17": "Evacuation Day", "2015-04-20": "Patriots' Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -859,9 +859,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-03-17": "Evacuation Day", @@ -870,7 +870,7 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -878,21 +878,21 @@ "2018-01-15": "Martin Luther King Jr. Day", "2018-02-19": "Washington's Birthday", "2018-03-17": "Evacuation Day", - "2018-03-19": "Evacuation Day (Observed)", + "2018-03-19": "Evacuation Day (observed)", "2018-04-16": "Patriots' Day", "2018-05-28": "Memorial Day", "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-01-21": "Martin Luther King Jr. Day", "2019-02-18": "Washington's Birthday", "2019-03-17": "Evacuation Day", - "2019-03-18": "Evacuation Day (Observed)", + "2019-03-18": "Evacuation Day (observed)", "2019-04-15": "Patriots' Day", "2019-05-27": "Memorial Day", "2019-07-04": "Independence Day", @@ -907,7 +907,7 @@ "2020-03-17": "Evacuation Day", "2020-04-20": "Patriots' Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -920,17 +920,17 @@ "2021-03-17": "Evacuation Day", "2021-04-19": "Patriots' Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", @@ -938,16 +938,16 @@ "2022-04-18": "Patriots' Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-03-17": "Evacuation Day", @@ -957,7 +957,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -965,7 +965,7 @@ "2024-01-15": "Martin Luther King Jr. Day", "2024-02-19": "Washington's Birthday", "2024-03-17": "Evacuation Day", - "2024-03-18": "Evacuation Day (Observed)", + "2024-03-18": "Evacuation Day (observed)", "2024-04-15": "Patriots' Day", "2024-05-27": "Memorial Day", "2024-06-19": "Juneteenth National Independence Day", @@ -995,7 +995,7 @@ "2026-04-20": "Patriots' Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -1008,17 +1008,17 @@ "2027-03-17": "Evacuation Day", "2027-04-19": "Patriots' Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -1029,7 +1029,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -1037,7 +1037,7 @@ "2029-01-15": "Martin Luther King Jr. Day", "2029-02-19": "Washington's Birthday", "2029-03-17": "Evacuation Day", - "2029-03-19": "Evacuation Day (Observed)", + "2029-03-19": "Evacuation Day (observed)", "2029-04-16": "Patriots' Day", "2029-05-28": "Memorial Day", "2029-06-19": "Juneteenth National Independence Day", @@ -1045,14 +1045,14 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Martin Luther King Jr. Day", "2030-02-18": "Washington's Birthday", "2030-03-17": "Evacuation Day", - "2030-03-18": "Evacuation Day (Observed)", + "2030-03-18": "Evacuation Day (observed)", "2030-04-15": "Patriots' Day", "2030-05-27": "Memorial Day", "2030-06-19": "Juneteenth National Independence Day", @@ -1081,17 +1081,17 @@ "2032-03-17": "Evacuation Day", "2032-04-19": "Patriots' Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", @@ -1099,16 +1099,16 @@ "2033-04-18": "Patriots' Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-03-17": "Evacuation Day", @@ -1118,7 +1118,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1126,7 +1126,7 @@ "2035-01-15": "Martin Luther King Jr. Day", "2035-02-19": "Washington's Birthday", "2035-03-17": "Evacuation Day", - "2035-03-19": "Evacuation Day (Observed)", + "2035-03-19": "Evacuation Day (observed)", "2035-04-16": "Patriots' Day", "2035-05-28": "Memorial Day", "2035-06-19": "Juneteenth National Independence Day", @@ -1134,7 +1134,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1157,7 +1157,7 @@ "2037-04-20": "Patriots' Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1170,17 +1170,17 @@ "2038-03-17": "Evacuation Day", "2038-04-19": "Patriots' Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", @@ -1188,20 +1188,20 @@ "2039-04-18": "Patriots' Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-17": "Evacuation Day", - "2040-03-19": "Evacuation Day (Observed)", + "2040-03-19": "Evacuation Day (observed)", "2040-04-16": "Patriots' Day", "2040-05-28": "Memorial Day", "2040-06-19": "Juneteenth National Independence Day", @@ -1209,14 +1209,14 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-21": "Martin Luther King Jr. Day", "2041-02-18": "Washington's Birthday", "2041-03-17": "Evacuation Day", - "2041-03-18": "Evacuation Day (Observed)", + "2041-03-18": "Evacuation Day (observed)", "2041-04-15": "Patriots' Day", "2041-05-27": "Memorial Day", "2041-06-19": "Juneteenth National Independence Day", @@ -1246,7 +1246,7 @@ "2043-04-20": "Patriots' Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1260,16 +1260,16 @@ "2044-04-18": "Patriots' Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-03-17": "Evacuation Day", @@ -1279,7 +1279,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1287,7 +1287,7 @@ "2046-01-15": "Martin Luther King Jr. Day", "2046-02-19": "Washington's Birthday", "2046-03-17": "Evacuation Day", - "2046-03-19": "Evacuation Day (Observed)", + "2046-03-19": "Evacuation Day (observed)", "2046-04-16": "Patriots' Day", "2046-05-28": "Memorial Day", "2046-06-19": "Juneteenth National Independence Day", @@ -1295,14 +1295,14 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-01-21": "Martin Luther King Jr. Day", "2047-02-18": "Washington's Birthday", "2047-03-17": "Evacuation Day", - "2047-03-18": "Evacuation Day (Observed)", + "2047-03-18": "Evacuation Day (observed)", "2047-04-15": "Patriots' Day", "2047-05-27": "Memorial Day", "2047-06-19": "Juneteenth National Independence Day", @@ -1319,7 +1319,7 @@ "2048-04-20": "Patriots' Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1332,17 +1332,17 @@ "2049-03-17": "Evacuation Day", "2049-04-19": "Patriots' Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", @@ -1350,12 +1350,12 @@ "2050-04-18": "Patriots' Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_MD.json b/snapshots/countries/US_MD.json index b72d30d5a..96325661a 100644 --- a/snapshots/countries/US_MD.json +++ b/snapshots/countries/US_MD.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -33,7 +33,7 @@ "1953-01-20": "Inauguration Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -44,14 +44,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -61,21 +61,21 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-01-20": "Inauguration Day", - "1957-01-21": "Inauguration Day (Observed)", + "1957-01-21": "Inauguration Day (observed)", "1957-02-22": "Washington's Birthday", "1957-05-30": "Memorial Day", "1957-07-04": "Independence Day", @@ -96,7 +96,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -112,16 +112,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-20": "Inauguration Day", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -132,7 +132,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -147,7 +147,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -159,14 +159,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -176,15 +176,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -210,7 +210,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -221,14 +221,14 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -270,14 +270,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-01-20": "Inauguration Day", "1977-02-21": "Washington's Birthday", @@ -288,15 +288,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -307,7 +307,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -323,7 +323,7 @@ "1981-01-20": "Inauguration Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -334,14 +334,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -351,21 +351,21 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-01-20": "Inauguration Day", - "1985-01-21": "Inauguration Day (Observed)", + "1985-01-21": "Inauguration Day (observed)", "1985-02-18": "Washington's Birthday", "1985-05-27": "Memorial Day", "1985-07-04": "Independence Day", @@ -388,7 +388,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -405,9 +405,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-01-20": "Inauguration Day", "1989-02-20": "Washington's Birthday", @@ -415,7 +415,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -427,7 +427,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -444,7 +444,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -457,14 +457,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -475,16 +475,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -512,7 +512,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -524,14 +524,14 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -539,7 +539,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -552,7 +552,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -580,14 +580,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-01-20": "Inauguration Day", @@ -599,16 +599,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -620,7 +620,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -639,7 +639,7 @@ "2009-01-20": "Inauguration Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -652,15 +652,15 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "American Indian Heritage Day", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -672,9 +672,9 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "American Indian Heritage Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -682,13 +682,13 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "American Indian Heritage Day", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-20": "Inauguration Day", - "2013-01-21": "Inauguration Day (Observed); Martin Luther King Jr. Day", + "2013-01-21": "Inauguration Day (observed); Martin Luther King Jr. Day", "2013-02-18": "Washington's Birthday", "2013-05-27": "Memorial Day", "2013-07-04": "Independence Day", @@ -713,7 +713,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -732,9 +732,9 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "American Indian Heritage Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-01-20": "Inauguration Day", "2017-02-20": "Washington's Birthday", @@ -742,7 +742,7 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "American Indian Heritage Day", @@ -755,7 +755,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "American Indian Heritage Day", "2018-12-25": "Christmas Day", @@ -774,7 +774,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -787,24 +787,24 @@ "2021-01-20": "Inauguration Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "American Indian Heritage Day", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", @@ -812,9 +812,9 @@ "2022-11-24": "Thanksgiving", "2022-11-25": "American Indian Heritage Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -822,7 +822,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "American Indian Heritage Day", @@ -856,7 +856,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -868,18 +868,18 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "American Indian Heritage Day", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -888,7 +888,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "American Indian Heritage Day", @@ -903,7 +903,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "American Indian Heritage Day", "2029-12-25": "Christmas Day", @@ -935,25 +935,25 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "American Indian Heritage Day", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-01-20": "Inauguration Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", @@ -961,9 +961,9 @@ "2033-11-24": "Thanksgiving", "2033-11-25": "American Indian Heritage Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -971,7 +971,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "American Indian Heritage Day", @@ -985,7 +985,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "American Indian Heritage Day", "2035-12-25": "Christmas Day", @@ -1007,7 +1007,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1019,24 +1019,24 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "American Indian Heritage Day", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", @@ -1044,9 +1044,9 @@ "2039-11-24": "Thanksgiving", "2039-11-25": "American Indian Heritage Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1055,13 +1055,13 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "American Indian Heritage Day", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-20": "Inauguration Day", - "2041-01-21": "Inauguration Day (Observed); Martin Luther King Jr. Day", + "2041-01-21": "Inauguration Day (observed); Martin Luther King Jr. Day", "2041-02-18": "Washington's Birthday", "2041-05-27": "Memorial Day", "2041-06-19": "Juneteenth National Independence Day", @@ -1089,7 +1089,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1102,7 +1102,7 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", @@ -1110,9 +1110,9 @@ "2044-11-24": "Thanksgiving", "2044-11-25": "American Indian Heritage Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-01-20": "Inauguration Day", "2045-02-20": "Washington's Birthday", @@ -1121,7 +1121,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "American Indian Heritage Day", @@ -1135,7 +1135,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "American Indian Heritage Day", "2046-12-25": "Christmas Day", @@ -1156,7 +1156,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1169,24 +1169,24 @@ "2049-01-20": "Inauguration Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "American Indian Heritage Day", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", @@ -1194,5 +1194,5 @@ "2050-11-24": "Thanksgiving", "2050-11-25": "American Indian Heritage Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_ME.json b/snapshots/countries/US_ME.json index a6ddaf65d..e1d51154a 100644 --- a/snapshots/countries/US_ME.json +++ b/snapshots/countries/US_ME.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-19": "Patriots' Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -33,7 +33,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-19": "Patriots' Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -44,13 +44,13 @@ "1954-04-19": "Patriots' Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-19": "Patriots' Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-04-19": "Patriots' Day", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -94,7 +94,7 @@ "1959-02-22": "Washington's Birthday", "1959-04-19": "Patriots' Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-04-19": "Patriots' Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -144,7 +144,7 @@ "1964-02-22": "Washington's Birthday", "1964-04-19": "Patriots' Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -155,13 +155,13 @@ "1965-04-19": "Patriots' Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-19": "Patriots' Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-04-19": "Patriots' Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -205,7 +205,7 @@ "1970-02-22": "Washington's Birthday", "1970-04-20": "Patriots' Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -216,14 +216,14 @@ "1971-04-19": "Patriots' Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-04-17": "Patriots' Day", @@ -269,14 +269,14 @@ "1976-04-19": "Patriots' Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-04-18": "Patriots' Day", @@ -287,16 +287,16 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-04-17": "Patriots' Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -308,7 +308,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -325,7 +325,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-20": "Patriots' Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -337,14 +337,14 @@ "1982-04-19": "Patriots' Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-04-18": "Patriots' Day", @@ -355,9 +355,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-16": "Patriots' Day", "1984-05-28": "Memorial Day", @@ -365,7 +365,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -394,7 +394,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-20": "Patriots' Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -412,9 +412,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-04-17": "Patriots' Day", @@ -422,7 +422,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -435,7 +435,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -454,7 +454,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-20": "Patriots' Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -467,14 +467,14 @@ "1993-04-19": "Patriots' Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -486,9 +486,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-04-17": "Patriots' Day", @@ -496,7 +496,7 @@ "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -527,7 +527,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-20": "Patriots' Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -540,14 +540,14 @@ "1999-04-19": "Patriots' Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -556,7 +556,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -569,7 +569,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -600,14 +600,14 @@ "2004-04-19": "Patriots' Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -619,9 +619,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-17": "Patriots' Day", @@ -629,7 +629,7 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -642,7 +642,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -661,7 +661,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-20": "Patriots' Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -674,14 +674,14 @@ "2010-04-19": "Patriots' Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -693,9 +693,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-16": "Patriots' Day", @@ -704,7 +704,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -734,7 +734,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-20": "Patriots' Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -752,9 +752,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-04-17": "Patriots' Day", @@ -762,7 +762,7 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -775,7 +775,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -794,7 +794,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-20": "Patriots' Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Indigenous Peoples' Day", @@ -806,33 +806,33 @@ "2021-02-15": "Washington's Birthday", "2021-04-19": "Patriots' Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Indigenous Peoples' Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-04-18": "Patriots' Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Indigenous Peoples' Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-17": "Patriots' Day", @@ -841,7 +841,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Indigenous Peoples' Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -875,7 +875,7 @@ "2026-04-20": "Patriots' Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Indigenous Peoples' Day", @@ -887,17 +887,17 @@ "2027-02-15": "Washington's Birthday", "2027-04-19": "Patriots' Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Indigenous Peoples' Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -907,7 +907,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Indigenous Peoples' Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -921,7 +921,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Indigenous Peoples' Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -953,33 +953,33 @@ "2032-02-16": "Washington's Birthday", "2032-04-19": "Patriots' Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Indigenous Peoples' Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-04-18": "Patriots' Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Indigenous Peoples' Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-17": "Patriots' Day", @@ -988,7 +988,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Indigenous Peoples' Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1002,7 +1002,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Indigenous Peoples' Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1023,7 +1023,7 @@ "2037-04-20": "Patriots' Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Indigenous Peoples' Day", @@ -1035,33 +1035,33 @@ "2038-02-15": "Washington's Birthday", "2038-04-19": "Patriots' Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Indigenous Peoples' Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-04-18": "Patriots' Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Indigenous Peoples' Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-04-16": "Patriots' Day", @@ -1071,7 +1071,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Indigenous Peoples' Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1104,7 +1104,7 @@ "2043-04-20": "Patriots' Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Indigenous Peoples' Day", @@ -1117,16 +1117,16 @@ "2044-04-18": "Patriots' Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Indigenous Peoples' Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-04-17": "Patriots' Day", @@ -1135,7 +1135,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Indigenous Peoples' Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1149,7 +1149,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Indigenous Peoples' Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1170,7 +1170,7 @@ "2048-04-20": "Patriots' Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Indigenous Peoples' Day", @@ -1182,29 +1182,29 @@ "2049-02-15": "Washington's Birthday", "2049-04-19": "Patriots' Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Indigenous Peoples' Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-04-18": "Patriots' Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Indigenous Peoples' Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_MI.json b/snapshots/countries/US_MI.json index a456885ab..083a19c7d 100644 --- a/snapshots/countries/US_MI.json +++ b/snapshots/countries/US_MI.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -628,7 +628,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -644,23 +644,23 @@ "2016-09-05": "Labor Day", "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", - "2016-12-23": "Christmas Eve (Observed)", + "2016-12-23": "Christmas Eve (observed)", "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", - "2016-12-30": "New Year's Eve (Observed)", + "2016-12-26": "Christmas Day (observed)", + "2016-12-30": "New Year's Eve (observed)", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", - "2017-12-22": "Christmas Eve (Observed)", + "2017-12-22": "Christmas Eve (observed)", "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2017-12-31": "New Year's Eve", @@ -671,7 +671,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", @@ -691,7 +691,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -703,45 +703,45 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-23": "Christmas Eve (Observed)", - "2021-12-24": "Christmas Day (Observed); Christmas Eve", + "2021-12-23": "Christmas Eve (observed)", + "2021-12-24": "Christmas Day (observed); Christmas Eve", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed); New Year's Eve", + "2021-12-31": "New Year's Day (observed); New Year's Eve", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", - "2022-12-23": "Christmas Eve (Observed)", + "2022-12-23": "Christmas Eve (observed)", "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", - "2022-12-30": "New Year's Eve (Observed)", + "2022-12-26": "Christmas Day (observed)", + "2022-12-30": "New Year's Eve (observed)", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", - "2023-12-22": "Christmas Eve (Observed)", + "2023-12-22": "Christmas Eve (observed)", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2023-12-31": "New Year's Eve", @@ -774,7 +774,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -786,17 +786,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-23": "Christmas Eve (Observed)", - "2027-12-24": "Christmas Day (Observed); Christmas Eve", + "2027-12-23": "Christmas Eve (observed)", + "2027-12-24": "Christmas Day (observed); Christmas Eve", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed); New Year's Eve", + "2027-12-31": "New Year's Day (observed); New Year's Eve", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -804,10 +804,10 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", - "2028-12-22": "Christmas Eve (Observed)", + "2028-12-22": "Christmas Eve (observed)", "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2028-12-31": "New Year's Eve", @@ -819,7 +819,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", @@ -852,45 +852,45 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-23": "Christmas Eve (Observed)", - "2032-12-24": "Christmas Day (Observed); Christmas Eve", + "2032-12-23": "Christmas Eve (observed)", + "2032-12-24": "Christmas Day (observed); Christmas Eve", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed); New Year's Eve", + "2032-12-31": "New Year's Day (observed); New Year's Eve", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", - "2033-12-23": "Christmas Eve (Observed)", + "2033-12-23": "Christmas Eve (observed)", "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", - "2033-12-30": "New Year's Eve (Observed)", + "2033-12-26": "Christmas Day (observed)", + "2033-12-30": "New Year's Eve (observed)", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", - "2034-12-22": "Christmas Eve (Observed)", + "2034-12-22": "Christmas Eve (observed)", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2034-12-31": "New Year's Eve", @@ -902,7 +902,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", @@ -924,7 +924,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -936,35 +936,35 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-23": "Christmas Eve (Observed)", - "2038-12-24": "Christmas Day (Observed); Christmas Eve", + "2038-12-23": "Christmas Eve (observed)", + "2038-12-24": "Christmas Day (observed); Christmas Eve", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed); New Year's Eve", + "2038-12-31": "New Year's Day (observed); New Year's Eve", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", - "2039-12-23": "Christmas Eve (Observed)", + "2039-12-23": "Christmas Eve (observed)", "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", - "2039-12-30": "New Year's Eve (Observed)", + "2039-12-26": "Christmas Day (observed)", + "2039-12-30": "New Year's Eve (observed)", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -972,7 +972,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", @@ -1006,7 +1006,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1019,29 +1019,29 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", - "2044-12-23": "Christmas Eve (Observed)", + "2044-12-23": "Christmas Eve (observed)", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", - "2044-12-30": "New Year's Eve (Observed)", + "2044-12-26": "Christmas Day (observed)", + "2044-12-30": "New Year's Eve (observed)", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", - "2045-12-22": "Christmas Eve (Observed)", + "2045-12-22": "Christmas Eve (observed)", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2045-12-31": "New Year's Eve", @@ -1053,7 +1053,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", @@ -1075,7 +1075,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1087,31 +1087,31 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-23": "Christmas Eve (Observed)", - "2049-12-24": "Christmas Day (Observed); Christmas Eve", + "2049-12-23": "Christmas Eve (observed)", + "2049-12-24": "Christmas Day (observed); Christmas Eve", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed); New Year's Eve", + "2049-12-31": "New Year's Day (observed); New Year's Eve", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", - "2050-12-23": "Christmas Eve (Observed)", + "2050-12-23": "Christmas Eve (observed)", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)", - "2050-12-30": "New Year's Eve (Observed)", + "2050-12-26": "Christmas Day (observed)", + "2050-12-30": "New Year's Eve (observed)", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/US_MN.json b/snapshots/countries/US_MN.json index ba4f0854e..5fc4393a4 100644 --- a/snapshots/countries/US_MN.json +++ b/snapshots/countries/US_MN.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -639,15 +639,15 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -658,7 +658,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -674,7 +674,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -684,37 +684,37 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -753,16 +753,16 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -770,7 +770,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -782,7 +782,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -809,37 +809,37 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -851,7 +851,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -869,7 +869,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -879,30 +879,30 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -910,7 +910,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -938,7 +938,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -949,22 +949,22 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -976,7 +976,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -994,7 +994,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1004,26 +1004,26 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_MO.json b/snapshots/countries/US_MO.json index 9ec8e5279..f6f27cb58 100644 --- a/snapshots/countries/US_MO.json +++ b/snapshots/countries/US_MO.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-08": "Truman Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -36,7 +36,7 @@ "1953-02-22": "Washington's Birthday", "1953-05-08": "Truman Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -45,22 +45,22 @@ "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", "1954-02-22": "Washington's Birthday", - "1954-05-07": "Truman Day (Observed)", + "1954-05-07": "Truman Day (observed)", "1954-05-08": "Truman Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-08": "Truman Day", - "1955-05-09": "Truman Day (Observed)", + "1955-05-09": "Truman Day (observed)", "1955-05-30": "Memorial Day", "1955-07-04": "Independence Day", "1955-09-05": "Labor Day", @@ -68,9 +68,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-08": "Truman Day", "1956-05-30": "Memorial Day", @@ -78,7 +78,7 @@ "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -105,7 +105,7 @@ "1959-02-22": "Washington's Birthday", "1959-05-08": "Truman Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -115,7 +115,7 @@ "1960-01-01": "New Year's Day", "1960-02-22": "Washington's Birthday", "1960-05-08": "Truman Day", - "1960-05-09": "Truman Day (Observed)", + "1960-05-09": "Truman Day (observed)", "1960-05-30": "Memorial Day", "1960-07-04": "Independence Day", "1960-09-05": "Labor Day", @@ -123,16 +123,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-08": "Truman Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -144,7 +144,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -161,7 +161,7 @@ "1964-02-22": "Washington's Birthday", "1964-05-08": "Truman Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -170,22 +170,22 @@ "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-02-22": "Washington's Birthday", - "1965-05-07": "Truman Day (Observed)", + "1965-05-07": "Truman Day (observed)", "1965-05-08": "Truman Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-08": "Truman Day", - "1966-05-09": "Truman Day (Observed)", + "1966-05-09": "Truman Day (observed)", "1966-05-30": "Memorial Day", "1966-07-04": "Independence Day", "1966-09-05": "Labor Day", @@ -193,16 +193,16 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-08": "Truman Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -230,7 +230,7 @@ "1970-02-22": "Washington's Birthday", "1970-05-08": "Truman Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -239,18 +239,18 @@ "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-02-15": "Washington's Birthday", - "1971-05-07": "Truman Day (Observed)", + "1971-05-07": "Truman Day (observed)", "1971-05-08": "Truman Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-08": "Truman Day", @@ -293,22 +293,22 @@ "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-02-16": "Washington's Birthday", - "1976-05-07": "Truman Day (Observed)", + "1976-05-07": "Truman Day (observed)", "1976-05-08": "Truman Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-08": "Truman Day", - "1977-05-09": "Truman Day (Observed)", + "1977-05-09": "Truman Day (observed)", "1977-05-30": "Memorial Day", "1977-07-04": "Independence Day", "1977-09-05": "Labor Day", @@ -316,16 +316,16 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-08": "Truman Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -337,7 +337,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -354,7 +354,7 @@ "1981-02-16": "Washington's Birthday", "1981-05-08": "Truman Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -363,22 +363,22 @@ "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", "1982-02-15": "Washington's Birthday", - "1982-05-07": "Truman Day (Observed)", + "1982-05-07": "Truman Day (observed)", "1982-05-08": "Truman Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-08": "Truman Day", - "1983-05-09": "Truman Day (Observed)", + "1983-05-09": "Truman Day (observed)", "1983-05-30": "Memorial Day", "1983-07-04": "Independence Day", "1983-09-05": "Labor Day", @@ -386,9 +386,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-08": "Truman Day", "1984-05-28": "Memorial Day", @@ -396,7 +396,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -425,7 +425,7 @@ "1987-02-16": "Washington's Birthday", "1987-05-08": "Truman Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -436,7 +436,7 @@ "1988-01-18": "Martin Luther King Jr. Day", "1988-02-15": "Washington's Birthday", "1988-05-08": "Truman Day", - "1988-05-09": "Truman Day (Observed)", + "1988-05-09": "Truman Day (observed)", "1988-05-30": "Memorial Day", "1988-07-04": "Independence Day", "1988-09-05": "Labor Day", @@ -444,9 +444,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-08": "Truman Day", @@ -454,7 +454,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -467,7 +467,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -486,7 +486,7 @@ "1992-02-17": "Washington's Birthday", "1992-05-08": "Truman Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -496,23 +496,23 @@ "1993-01-01": "New Year's Day", "1993-01-18": "Martin Luther King Jr. Day", "1993-02-15": "Washington's Birthday", - "1993-05-07": "Truman Day (Observed)", + "1993-05-07": "Truman Day (observed)", "1993-05-08": "Truman Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", "1994-05-08": "Truman Day", - "1994-05-09": "Truman Day (Observed)", + "1994-05-09": "Truman Day (observed)", "1994-05-30": "Memorial Day", "1994-07-04": "Independence Day", "1994-09-05": "Labor Day", @@ -520,9 +520,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-08": "Truman Day", @@ -530,7 +530,7 @@ "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -561,7 +561,7 @@ "1998-02-16": "Washington's Birthday", "1998-05-08": "Truman Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -571,18 +571,18 @@ "1999-01-01": "New Year's Day", "1999-01-18": "Martin Luther King Jr. Day", "1999-02-15": "Washington's Birthday", - "1999-05-07": "Truman Day (Observed)", + "1999-05-07": "Truman Day (observed)", "1999-05-08": "Truman Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -591,7 +591,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -604,7 +604,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -632,23 +632,23 @@ "2004-01-01": "New Year's Day", "2004-01-19": "Martin Luther King Jr. Day", "2004-02-16": "Washington's Birthday", - "2004-05-07": "Truman Day (Observed)", + "2004-05-07": "Truman Day (observed)", "2004-05-08": "Truman Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", "2005-05-08": "Truman Day", - "2005-05-09": "Truman Day (Observed)", + "2005-05-09": "Truman Day (observed)", "2005-05-30": "Memorial Day", "2005-07-04": "Independence Day", "2005-09-05": "Labor Day", @@ -656,9 +656,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-08": "Truman Day", @@ -666,7 +666,7 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -679,7 +679,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -698,7 +698,7 @@ "2009-02-16": "Washington's Birthday", "2009-05-08": "Truman Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -708,23 +708,23 @@ "2010-01-01": "New Year's Day", "2010-01-18": "Martin Luther King Jr. Day", "2010-02-15": "Washington's Birthday", - "2010-05-07": "Truman Day (Observed)", + "2010-05-07": "Truman Day (observed)", "2010-05-08": "Truman Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", "2011-05-08": "Truman Day", - "2011-05-09": "Truman Day (Observed)", + "2011-05-09": "Truman Day (observed)", "2011-05-30": "Memorial Day", "2011-07-04": "Independence Day", "2011-09-05": "Labor Day", @@ -732,9 +732,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-08": "Truman Day", @@ -743,7 +743,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -773,7 +773,7 @@ "2015-02-16": "Washington's Birthday", "2015-05-08": "Truman Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -784,7 +784,7 @@ "2016-01-18": "Martin Luther King Jr. Day", "2016-02-15": "Washington's Birthday", "2016-05-08": "Truman Day", - "2016-05-09": "Truman Day (Observed)", + "2016-05-09": "Truman Day (observed)", "2016-05-30": "Memorial Day", "2016-07-04": "Independence Day", "2016-09-05": "Labor Day", @@ -792,9 +792,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-08": "Truman Day", @@ -802,7 +802,7 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -815,7 +815,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -834,7 +834,7 @@ "2020-02-17": "Washington's Birthday", "2020-05-08": "Truman Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -844,37 +844,37 @@ "2021-01-01": "New Year's Day", "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", - "2021-05-07": "Truman Day (Observed)", + "2021-05-07": "Truman Day (observed)", "2021-05-08": "Truman Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-08": "Truman Day", - "2022-05-09": "Truman Day (Observed)", + "2022-05-09": "Truman Day (observed)", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-08": "Truman Day", @@ -883,7 +883,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -917,7 +917,7 @@ "2026-05-08": "Truman Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -927,20 +927,20 @@ "2027-01-01": "New Year's Day", "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", - "2027-05-07": "Truman Day (Observed)", + "2027-05-07": "Truman Day (observed)", "2027-05-08": "Truman Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -950,7 +950,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -964,7 +964,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -994,37 +994,37 @@ "2032-01-01": "New Year's Day", "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", - "2032-05-07": "Truman Day (Observed)", + "2032-05-07": "Truman Day (observed)", "2032-05-08": "Truman Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-08": "Truman Day", - "2033-05-09": "Truman Day (Observed)", + "2033-05-09": "Truman Day (observed)", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-08": "Truman Day", @@ -1033,7 +1033,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1047,7 +1047,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1068,7 +1068,7 @@ "2037-05-08": "Truman Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1078,37 +1078,37 @@ "2038-01-01": "New Year's Day", "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", - "2038-05-07": "Truman Day (Observed)", + "2038-05-07": "Truman Day (observed)", "2038-05-08": "Truman Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-08": "Truman Day", - "2039-05-09": "Truman Day (Observed)", + "2039-05-09": "Truman Day (observed)", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-08": "Truman Day", @@ -1118,7 +1118,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1151,7 +1151,7 @@ "2043-05-08": "Truman Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1162,19 +1162,19 @@ "2044-01-18": "Martin Luther King Jr. Day", "2044-02-15": "Washington's Birthday", "2044-05-08": "Truman Day", - "2044-05-09": "Truman Day (Observed)", + "2044-05-09": "Truman Day (observed)", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-08": "Truman Day", @@ -1183,7 +1183,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1197,7 +1197,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1218,7 +1218,7 @@ "2048-05-08": "Truman Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1228,33 +1228,33 @@ "2049-01-01": "New Year's Day", "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", - "2049-05-07": "Truman Day (Observed)", + "2049-05-07": "Truman Day (observed)", "2049-05-08": "Truman Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-08": "Truman Day", - "2050-05-09": "Truman Day (Observed)", + "2050-05-09": "Truman Day (observed)", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_MP.json b/snapshots/countries/US_MP.json index 35f3aa7e6..949e44e63 100644 --- a/snapshots/countries/US_MP.json +++ b/snapshots/countries/US_MP.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-03-24": "Commonwealth Covenant Day", "1950-04-07": "Good Friday", @@ -8,27 +8,27 @@ "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-09": "Commonwealth Cultural Day", - "1950-11-03": "Citizenship Day (Observed)", + "1950-11-03": "Citizenship Day (observed)", "1950-11-04": "Citizenship Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-08": "Constitution Day", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", "1951-02-22": "Washington's Birthday", - "1951-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "1951-03-23": "Commonwealth Covenant Day (observed); Good Friday", "1951-03-24": "Commonwealth Covenant Day", "1951-05-30": "Memorial Day", "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-10-08": "Commonwealth Cultural Day", "1951-11-04": "Citizenship Day", - "1951-11-05": "Citizenship Day (Observed)", + "1951-11-05": "Citizenship Day (observed)", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", - "1951-12-07": "Constitution Day (Observed)", + "1951-12-07": "Constitution Day (observed)", "1951-12-08": "Constitution Day", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -49,7 +49,7 @@ "1953-03-24": "Commonwealth Covenant Day", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Commonwealth Cultural Day", @@ -64,16 +64,16 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-11": "Commonwealth Cultural Day", "1954-11-04": "Citizenship Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", "1954-12-08": "Constitution Day", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-03-24": "Commonwealth Covenant Day", @@ -87,11 +87,11 @@ "1955-11-24": "Thanksgiving", "1955-12-08": "Constitution Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", - "1956-03-23": "Commonwealth Covenant Day (Observed)", + "1956-03-23": "Commonwealth Covenant Day (observed)", "1956-03-24": "Commonwealth Covenant Day", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -99,17 +99,17 @@ "1956-09-03": "Labor Day", "1956-10-08": "Commonwealth Cultural Day", "1956-11-04": "Citizenship Day", - "1956-11-05": "Citizenship Day (Observed)", + "1956-11-05": "Citizenship Day (observed)", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", - "1956-12-07": "Constitution Day (Observed)", + "1956-12-07": "Constitution Day (observed)", "1956-12-08": "Constitution Day", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-02-22": "Washington's Birthday", "1957-03-24": "Commonwealth Covenant Day", - "1957-03-25": "Commonwealth Covenant Day (Observed)", + "1957-03-25": "Commonwealth Covenant Day (observed)", "1957-04-19": "Good Friday", "1957-05-30": "Memorial Day", "1957-07-04": "Independence Day", @@ -119,7 +119,7 @@ "1957-11-11": "Veterans Day", "1957-11-28": "Thanksgiving", "1957-12-08": "Constitution Day", - "1957-12-09": "Constitution Day (Observed)", + "1957-12-09": "Constitution Day (observed)", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-02-22": "Washington's Birthday", @@ -139,7 +139,7 @@ "1959-03-24": "Commonwealth Covenant Day", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Commonwealth Cultural Day", @@ -161,9 +161,9 @@ "1960-11-24": "Thanksgiving", "1960-12-08": "Constitution Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-24": "Commonwealth Covenant Day", "1961-03-31": "Good Friday", @@ -171,16 +171,16 @@ "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-09": "Commonwealth Cultural Day", - "1961-11-03": "Citizenship Day (Observed)", + "1961-11-03": "Citizenship Day (observed)", "1961-11-04": "Citizenship Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-08": "Constitution Day", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", "1962-02-22": "Washington's Birthday", - "1962-03-23": "Commonwealth Covenant Day (Observed)", + "1962-03-23": "Commonwealth Covenant Day (observed)", "1962-03-24": "Commonwealth Covenant Day", "1962-04-20": "Good Friday", "1962-05-30": "Memorial Day", @@ -188,17 +188,17 @@ "1962-09-03": "Labor Day", "1962-10-08": "Commonwealth Cultural Day", "1962-11-04": "Citizenship Day", - "1962-11-05": "Citizenship Day (Observed)", + "1962-11-05": "Citizenship Day (observed)", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", - "1962-12-07": "Constitution Day (Observed)", + "1962-12-07": "Constitution Day (observed)", "1962-12-08": "Constitution Day", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-02-22": "Washington's Birthday", "1963-03-24": "Commonwealth Covenant Day", - "1963-03-25": "Commonwealth Covenant Day (Observed)", + "1963-03-25": "Commonwealth Covenant Day (observed)", "1963-04-12": "Good Friday", "1963-05-30": "Memorial Day", "1963-07-04": "Independence Day", @@ -208,14 +208,14 @@ "1963-11-11": "Veterans Day", "1963-11-28": "Thanksgiving", "1963-12-08": "Constitution Day", - "1963-12-09": "Constitution Day (Observed)", + "1963-12-09": "Constitution Day (observed)", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-03-24": "Commonwealth Covenant Day", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Commonwealth Cultural Day", @@ -230,16 +230,16 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-11": "Commonwealth Cultural Day", "1965-11-04": "Citizenship Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", "1965-12-08": "Constitution Day", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-03-24": "Commonwealth Covenant Day", @@ -253,18 +253,18 @@ "1966-11-24": "Thanksgiving", "1966-12-08": "Constitution Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Commonwealth Covenant Day; Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-09": "Commonwealth Cultural Day", - "1967-11-03": "Citizenship Day (Observed)", + "1967-11-03": "Citizenship Day (observed)", "1967-11-04": "Citizenship Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-08": "Constitution Day", @@ -272,7 +272,7 @@ "1968-01-01": "New Year's Day", "1968-02-22": "Washington's Birthday", "1968-03-24": "Commonwealth Covenant Day", - "1968-03-25": "Commonwealth Covenant Day (Observed)", + "1968-03-25": "Commonwealth Covenant Day (observed)", "1968-04-12": "Good Friday", "1968-05-30": "Memorial Day", "1968-07-04": "Independence Day", @@ -282,7 +282,7 @@ "1968-11-11": "Veterans Day", "1968-11-28": "Thanksgiving", "1968-12-08": "Constitution Day", - "1968-12-09": "Constitution Day (Observed)", + "1968-12-09": "Constitution Day (observed)", "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-22": "Washington's Birthday", @@ -302,7 +302,7 @@ "1970-03-24": "Commonwealth Covenant Day", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Commonwealth Cultural Day", @@ -317,16 +317,16 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Commonwealth Cultural Day", "1971-10-25": "Veterans Day", "1971-11-04": "Citizenship Day", "1971-11-25": "Thanksgiving", "1971-12-08": "Constitution Day", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-24": "Commonwealth Covenant Day", @@ -336,14 +336,14 @@ "1972-09-04": "Labor Day", "1972-10-09": "Commonwealth Cultural Day", "1972-10-23": "Veterans Day", - "1972-11-03": "Citizenship Day (Observed)", + "1972-11-03": "Citizenship Day (observed)", "1972-11-04": "Citizenship Day", "1972-11-23": "Thanksgiving", "1972-12-08": "Constitution Day", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-02-19": "Washington's Birthday", - "1973-03-23": "Commonwealth Covenant Day (Observed)", + "1973-03-23": "Commonwealth Covenant Day (observed)", "1973-03-24": "Commonwealth Covenant Day", "1973-04-20": "Good Friday", "1973-05-28": "Memorial Day", @@ -352,15 +352,15 @@ "1973-10-08": "Commonwealth Cultural Day", "1973-10-22": "Veterans Day", "1973-11-04": "Citizenship Day", - "1973-11-05": "Citizenship Day (Observed)", + "1973-11-05": "Citizenship Day (observed)", "1973-11-22": "Thanksgiving", - "1973-12-07": "Constitution Day (Observed)", + "1973-12-07": "Constitution Day (observed)", "1973-12-08": "Constitution Day", "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-02-18": "Washington's Birthday", "1974-03-24": "Commonwealth Covenant Day", - "1974-03-25": "Commonwealth Covenant Day (Observed)", + "1974-03-25": "Commonwealth Covenant Day (observed)", "1974-04-12": "Good Friday", "1974-05-27": "Memorial Day", "1974-07-04": "Independence Day", @@ -370,7 +370,7 @@ "1974-11-04": "Citizenship Day", "1974-11-28": "Thanksgiving", "1974-12-08": "Constitution Day", - "1974-12-09": "Constitution Day (Observed)", + "1974-12-09": "Constitution Day (observed)", "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-02-17": "Washington's Birthday", @@ -391,16 +391,16 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Commonwealth Cultural Day", "1976-10-25": "Veterans Day", "1976-11-04": "Citizenship Day", "1976-11-25": "Thanksgiving", "1976-12-08": "Constitution Day", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-03-24": "Commonwealth Covenant Day", @@ -414,25 +414,25 @@ "1977-11-24": "Thanksgiving", "1977-12-08": "Constitution Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Commonwealth Covenant Day; Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Commonwealth Cultural Day", - "1978-11-03": "Citizenship Day (Observed)", + "1978-11-03": "Citizenship Day (observed)", "1978-11-04": "Citizenship Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-08": "Constitution Day", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-02-19": "Washington's Birthday", - "1979-03-23": "Commonwealth Covenant Day (Observed)", + "1979-03-23": "Commonwealth Covenant Day (observed)", "1979-03-24": "Commonwealth Covenant Day", "1979-04-13": "Good Friday", "1979-05-28": "Memorial Day", @@ -440,11 +440,11 @@ "1979-09-03": "Labor Day", "1979-10-08": "Commonwealth Cultural Day", "1979-11-04": "Citizenship Day", - "1979-11-05": "Citizenship Day (Observed)", + "1979-11-05": "Citizenship Day (observed)", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", - "1979-12-07": "Constitution Day (Observed)", + "1979-12-07": "Constitution Day (observed)", "1979-12-08": "Constitution Day", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -465,7 +465,7 @@ "1981-03-24": "Commonwealth Covenant Day", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Commonwealth Cultural Day", @@ -480,16 +480,16 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Commonwealth Cultural Day", "1982-11-04": "Citizenship Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-12-08": "Constitution Day", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-03-24": "Commonwealth Covenant Day", @@ -503,11 +503,11 @@ "1983-11-24": "Thanksgiving", "1983-12-08": "Constitution Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", - "1984-03-23": "Commonwealth Covenant Day (Observed)", + "1984-03-23": "Commonwealth Covenant Day (observed)", "1984-03-24": "Commonwealth Covenant Day", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", @@ -515,17 +515,17 @@ "1984-09-03": "Labor Day", "1984-10-08": "Commonwealth Cultural Day", "1984-11-04": "Citizenship Day", - "1984-11-05": "Citizenship Day (Observed)", + "1984-11-05": "Citizenship Day (observed)", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", - "1984-12-07": "Constitution Day (Observed)", + "1984-12-07": "Constitution Day (observed)", "1984-12-08": "Constitution Day", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-02-18": "Washington's Birthday", "1985-03-24": "Commonwealth Covenant Day", - "1985-03-25": "Commonwealth Covenant Day (Observed)", + "1985-03-25": "Commonwealth Covenant Day (observed)", "1985-04-05": "Good Friday", "1985-05-27": "Memorial Day", "1985-07-04": "Independence Day", @@ -535,7 +535,7 @@ "1985-11-11": "Veterans Day", "1985-11-28": "Thanksgiving", "1985-12-08": "Constitution Day", - "1985-12-09": "Constitution Day (Observed)", + "1985-12-09": "Constitution Day (observed)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-01-20": "Martin Luther King Jr. Day", @@ -557,7 +557,7 @@ "1987-03-24": "Commonwealth Covenant Day", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Commonwealth Cultural Day", @@ -580,9 +580,9 @@ "1988-11-24": "Thanksgiving", "1988-12-08": "Constitution Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-24": "Commonwealth Covenant Day; Good Friday", @@ -590,9 +590,9 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Commonwealth Cultural Day", - "1989-11-03": "Citizenship Day (Observed)", + "1989-11-03": "Citizenship Day (observed)", "1989-11-04": "Citizenship Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-08": "Constitution Day", @@ -600,7 +600,7 @@ "1990-01-01": "New Year's Day", "1990-01-15": "Martin Luther King Jr. Day", "1990-02-19": "Washington's Birthday", - "1990-03-23": "Commonwealth Covenant Day (Observed)", + "1990-03-23": "Commonwealth Covenant Day (observed)", "1990-03-24": "Commonwealth Covenant Day", "1990-04-13": "Good Friday", "1990-05-28": "Memorial Day", @@ -608,18 +608,18 @@ "1990-09-03": "Labor Day", "1990-10-08": "Commonwealth Cultural Day", "1990-11-04": "Citizenship Day", - "1990-11-05": "Citizenship Day (Observed)", + "1990-11-05": "Citizenship Day (observed)", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", - "1990-12-07": "Constitution Day (Observed)", + "1990-12-07": "Constitution Day (observed)", "1990-12-08": "Constitution Day", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-01-21": "Martin Luther King Jr. Day", "1991-02-18": "Washington's Birthday", "1991-03-24": "Commonwealth Covenant Day", - "1991-03-25": "Commonwealth Covenant Day (Observed)", + "1991-03-25": "Commonwealth Covenant Day (observed)", "1991-03-29": "Good Friday", "1991-05-27": "Memorial Day", "1991-07-04": "Independence Day", @@ -629,7 +629,7 @@ "1991-11-11": "Veterans Day", "1991-11-28": "Thanksgiving", "1991-12-08": "Constitution Day", - "1991-12-09": "Constitution Day (Observed)", + "1991-12-09": "Constitution Day (observed)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-20": "Martin Luther King Jr. Day", @@ -637,7 +637,7 @@ "1992-03-24": "Commonwealth Covenant Day", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Commonwealth Cultural Day", @@ -653,16 +653,16 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Commonwealth Cultural Day", "1993-11-04": "Citizenship Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-12-08": "Constitution Day", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -677,9 +677,9 @@ "1994-11-24": "Thanksgiving", "1994-12-08": "Constitution Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-03-24": "Commonwealth Covenant Day", @@ -688,9 +688,9 @@ "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Commonwealth Cultural Day", - "1995-11-03": "Citizenship Day (Observed)", + "1995-11-03": "Citizenship Day (observed)", "1995-11-04": "Citizenship Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-08": "Constitution Day", @@ -699,7 +699,7 @@ "1996-01-15": "Martin Luther King Jr. Day", "1996-02-19": "Washington's Birthday", "1996-03-24": "Commonwealth Covenant Day", - "1996-03-25": "Commonwealth Covenant Day (Observed)", + "1996-03-25": "Commonwealth Covenant Day (observed)", "1996-04-05": "Good Friday", "1996-05-27": "Memorial Day", "1996-07-04": "Independence Day", @@ -709,7 +709,7 @@ "1996-11-11": "Veterans Day", "1996-11-28": "Thanksgiving", "1996-12-08": "Constitution Day", - "1996-12-09": "Constitution Day (Observed)", + "1996-12-09": "Constitution Day (observed)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-20": "Martin Luther King Jr. Day", @@ -731,7 +731,7 @@ "1998-03-24": "Commonwealth Covenant Day", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Commonwealth Cultural Day", @@ -747,16 +747,16 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Commonwealth Cultural Day", "1999-11-04": "Citizenship Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-12-08": "Constitution Day", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -766,9 +766,9 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Commonwealth Cultural Day", - "2000-11-03": "Citizenship Day (Observed)", + "2000-11-03": "Citizenship Day (observed)", "2000-11-04": "Citizenship Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-08": "Constitution Day", @@ -776,7 +776,7 @@ "2001-01-01": "New Year's Day", "2001-01-15": "Martin Luther King Jr. Day", "2001-02-19": "Washington's Birthday", - "2001-03-23": "Commonwealth Covenant Day (Observed)", + "2001-03-23": "Commonwealth Covenant Day (observed)", "2001-03-24": "Commonwealth Covenant Day", "2001-04-13": "Good Friday", "2001-05-28": "Memorial Day", @@ -784,18 +784,18 @@ "2001-09-03": "Labor Day", "2001-10-08": "Commonwealth Cultural Day", "2001-11-04": "Citizenship Day", - "2001-11-05": "Citizenship Day (Observed)", + "2001-11-05": "Citizenship Day (observed)", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", - "2001-12-07": "Constitution Day (Observed)", + "2001-12-07": "Constitution Day (observed)", "2001-12-08": "Constitution Day", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-01-21": "Martin Luther King Jr. Day", "2002-02-18": "Washington's Birthday", "2002-03-24": "Commonwealth Covenant Day", - "2002-03-25": "Commonwealth Covenant Day (Observed)", + "2002-03-25": "Commonwealth Covenant Day (observed)", "2002-03-29": "Good Friday", "2002-05-27": "Memorial Day", "2002-07-04": "Independence Day", @@ -805,7 +805,7 @@ "2002-11-11": "Veterans Day", "2002-11-28": "Thanksgiving", "2002-12-08": "Constitution Day", - "2002-12-09": "Constitution Day (Observed)", + "2002-12-09": "Constitution Day (observed)", "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-01-20": "Martin Luther King Jr. Day", @@ -828,16 +828,16 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Commonwealth Cultural Day", "2004-11-04": "Citizenship Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-12-08": "Constitution Day", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -852,9 +852,9 @@ "2005-11-24": "Thanksgiving", "2005-12-08": "Constitution Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-03-24": "Commonwealth Covenant Day", @@ -863,9 +863,9 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Commonwealth Cultural Day", - "2006-11-03": "Citizenship Day (Observed)", + "2006-11-03": "Citizenship Day (observed)", "2006-11-04": "Citizenship Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-08": "Constitution Day", @@ -873,7 +873,7 @@ "2007-01-01": "New Year's Day", "2007-01-15": "Martin Luther King Jr. Day", "2007-02-19": "Washington's Birthday", - "2007-03-23": "Commonwealth Covenant Day (Observed)", + "2007-03-23": "Commonwealth Covenant Day (observed)", "2007-03-24": "Commonwealth Covenant Day", "2007-04-06": "Good Friday", "2007-05-28": "Memorial Day", @@ -881,11 +881,11 @@ "2007-09-03": "Labor Day", "2007-10-08": "Commonwealth Cultural Day", "2007-11-04": "Citizenship Day", - "2007-11-05": "Citizenship Day (Observed)", + "2007-11-05": "Citizenship Day (observed)", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", - "2007-12-07": "Constitution Day (Observed)", + "2007-12-07": "Constitution Day (observed)", "2007-12-08": "Constitution Day", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -908,7 +908,7 @@ "2009-03-24": "Commonwealth Covenant Day", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Commonwealth Cultural Day", @@ -924,7 +924,7 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Commonwealth Cultural Day", "2010-11-02": "Election Day", @@ -932,9 +932,9 @@ "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-12-08": "Constitution Day", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -949,12 +949,12 @@ "2011-11-24": "Thanksgiving", "2011-12-08": "Constitution Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", - "2012-03-23": "Commonwealth Covenant Day (Observed)", + "2012-03-23": "Commonwealth Covenant Day (observed)", "2012-03-24": "Commonwealth Covenant Day", "2012-04-06": "Good Friday", "2012-05-28": "Memorial Day", @@ -962,19 +962,19 @@ "2012-09-03": "Labor Day", "2012-10-08": "Commonwealth Cultural Day", "2012-11-04": "Citizenship Day", - "2012-11-05": "Citizenship Day (Observed)", + "2012-11-05": "Citizenship Day (observed)", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", - "2012-12-07": "Constitution Day (Observed)", + "2012-12-07": "Constitution Day (observed)", "2012-12-08": "Constitution Day", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-21": "Martin Luther King Jr. Day", "2013-02-18": "Washington's Birthday", "2013-03-24": "Commonwealth Covenant Day", - "2013-03-25": "Commonwealth Covenant Day (Observed)", + "2013-03-25": "Commonwealth Covenant Day (observed)", "2013-03-29": "Good Friday", "2013-05-27": "Memorial Day", "2013-07-04": "Independence Day", @@ -984,7 +984,7 @@ "2013-11-11": "Veterans Day", "2013-11-28": "Thanksgiving", "2013-12-08": "Constitution Day", - "2013-12-09": "Constitution Day (Observed)", + "2013-12-09": "Constitution Day (observed)", "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-01-20": "Martin Luther King Jr. Day", @@ -1006,7 +1006,7 @@ "2015-03-24": "Commonwealth Covenant Day", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Commonwealth Cultural Day", @@ -1030,9 +1030,9 @@ "2016-11-24": "Thanksgiving", "2016-12-08": "Constitution Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-03-24": "Commonwealth Covenant Day", @@ -1041,9 +1041,9 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Commonwealth Cultural Day", - "2017-11-03": "Citizenship Day (Observed)", + "2017-11-03": "Citizenship Day (observed)", "2017-11-04": "Citizenship Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-08": "Constitution Day", @@ -1051,7 +1051,7 @@ "2018-01-01": "New Year's Day", "2018-01-15": "Martin Luther King Jr. Day", "2018-02-19": "Washington's Birthday", - "2018-03-23": "Commonwealth Covenant Day (Observed)", + "2018-03-23": "Commonwealth Covenant Day (observed)", "2018-03-24": "Commonwealth Covenant Day", "2018-03-30": "Good Friday", "2018-05-28": "Memorial Day", @@ -1059,19 +1059,19 @@ "2018-09-03": "Labor Day", "2018-10-08": "Commonwealth Cultural Day", "2018-11-04": "Citizenship Day", - "2018-11-05": "Citizenship Day (Observed)", + "2018-11-05": "Citizenship Day (observed)", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", - "2018-12-07": "Constitution Day (Observed)", + "2018-12-07": "Constitution Day (observed)", "2018-12-08": "Constitution Day", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", "2019-01-21": "Martin Luther King Jr. Day", "2019-02-18": "Washington's Birthday", "2019-03-24": "Commonwealth Covenant Day", - "2019-03-25": "Commonwealth Covenant Day (Observed)", + "2019-03-25": "Commonwealth Covenant Day (observed)", "2019-04-19": "Good Friday", "2019-05-27": "Memorial Day", "2019-07-04": "Independence Day", @@ -1081,7 +1081,7 @@ "2019-11-11": "Veterans Day", "2019-11-28": "Thanksgiving", "2019-12-08": "Constitution Day", - "2019-12-09": "Constitution Day (Observed)", + "2019-12-09": "Constitution Day (observed)", "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-01-20": "Martin Luther King Jr. Day", @@ -1089,7 +1089,7 @@ "2020-03-24": "Commonwealth Covenant Day", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Commonwealth Cultural Day", @@ -1105,19 +1105,19 @@ "2021-03-24": "Commonwealth Covenant Day", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Commonwealth Cultural Day", "2021-11-04": "Citizenship Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-12-08": "Constitution Day", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", @@ -1125,7 +1125,7 @@ "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Commonwealth Cultural Day", @@ -1135,9 +1135,9 @@ "2022-11-24": "Thanksgiving", "2022-12-08": "Constitution Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-03-24": "Commonwealth Covenant Day", @@ -1147,9 +1147,9 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Commonwealth Cultural Day", - "2023-11-03": "Citizenship Day (Observed)", + "2023-11-03": "Citizenship Day (observed)", "2023-11-04": "Citizenship Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-08": "Constitution Day", @@ -1158,7 +1158,7 @@ "2024-01-15": "Martin Luther King Jr. Day", "2024-02-19": "Washington's Birthday", "2024-03-24": "Commonwealth Covenant Day", - "2024-03-25": "Commonwealth Covenant Day (Observed)", + "2024-03-25": "Commonwealth Covenant Day (observed)", "2024-03-29": "Good Friday", "2024-05-27": "Memorial Day", "2024-06-19": "Juneteenth National Independence Day", @@ -1170,7 +1170,7 @@ "2024-11-11": "Veterans Day", "2024-11-28": "Thanksgiving", "2024-12-08": "Constitution Day", - "2024-12-09": "Constitution Day (Observed)", + "2024-12-09": "Constitution Day (observed)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-20": "Martin Luther King Jr. Day", @@ -1194,7 +1194,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Commonwealth Cultural Day", @@ -1210,19 +1210,19 @@ "2027-03-24": "Commonwealth Covenant Day", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Commonwealth Cultural Day", "2027-11-04": "Citizenship Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-12-08": "Constitution Day", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -1233,10 +1233,10 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Commonwealth Cultural Day", - "2028-11-03": "Citizenship Day (Observed)", + "2028-11-03": "Citizenship Day (observed)", "2028-11-04": "Citizenship Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-08": "Constitution Day", @@ -1244,7 +1244,7 @@ "2029-01-01": "New Year's Day", "2029-01-15": "Martin Luther King Jr. Day", "2029-02-19": "Washington's Birthday", - "2029-03-23": "Commonwealth Covenant Day (Observed)", + "2029-03-23": "Commonwealth Covenant Day (observed)", "2029-03-24": "Commonwealth Covenant Day", "2029-03-30": "Good Friday", "2029-05-28": "Memorial Day", @@ -1253,18 +1253,18 @@ "2029-09-03": "Labor Day", "2029-10-08": "Commonwealth Cultural Day", "2029-11-04": "Citizenship Day", - "2029-11-05": "Citizenship Day (Observed)", + "2029-11-05": "Citizenship Day (observed)", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", - "2029-12-07": "Constitution Day (Observed)", + "2029-12-07": "Constitution Day (observed)", "2029-12-08": "Constitution Day", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-01-21": "Martin Luther King Jr. Day", "2030-02-18": "Washington's Birthday", "2030-03-24": "Commonwealth Covenant Day", - "2030-03-25": "Commonwealth Covenant Day (Observed)", + "2030-03-25": "Commonwealth Covenant Day (observed)", "2030-04-19": "Good Friday", "2030-05-27": "Memorial Day", "2030-06-19": "Juneteenth National Independence Day", @@ -1276,7 +1276,7 @@ "2030-11-11": "Veterans Day", "2030-11-28": "Thanksgiving", "2030-12-08": "Constitution Day", - "2030-12-09": "Constitution Day (Observed)", + "2030-12-09": "Constitution Day (observed)", "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-01-20": "Martin Luther King Jr. Day", @@ -1299,10 +1299,10 @@ "2032-03-24": "Commonwealth Covenant Day", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Commonwealth Cultural Day", "2032-11-02": "Election Day", @@ -1310,9 +1310,9 @@ "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-12-08": "Constitution Day", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", @@ -1320,7 +1320,7 @@ "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Commonwealth Cultural Day", @@ -1329,9 +1329,9 @@ "2033-11-24": "Thanksgiving", "2033-12-08": "Constitution Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-03-24": "Commonwealth Covenant Day", @@ -1341,10 +1341,10 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Commonwealth Cultural Day", - "2034-11-03": "Citizenship Day (Observed)", + "2034-11-03": "Citizenship Day (observed)", "2034-11-04": "Citizenship Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-08": "Constitution Day", @@ -1352,7 +1352,7 @@ "2035-01-01": "New Year's Day", "2035-01-15": "Martin Luther King Jr. Day", "2035-02-19": "Washington's Birthday", - "2035-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "2035-03-23": "Commonwealth Covenant Day (observed); Good Friday", "2035-03-24": "Commonwealth Covenant Day", "2035-05-28": "Memorial Day", "2035-06-19": "Juneteenth National Independence Day", @@ -1360,11 +1360,11 @@ "2035-09-03": "Labor Day", "2035-10-08": "Commonwealth Cultural Day", "2035-11-04": "Citizenship Day", - "2035-11-05": "Citizenship Day (Observed)", + "2035-11-05": "Citizenship Day (observed)", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", - "2035-12-07": "Constitution Day (Observed)", + "2035-12-07": "Constitution Day (observed)", "2035-12-08": "Constitution Day", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1389,7 +1389,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Commonwealth Cultural Day", @@ -1404,10 +1404,10 @@ "2038-03-24": "Commonwealth Covenant Day", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Commonwealth Cultural Day", "2038-11-02": "Election Day", @@ -1415,9 +1415,9 @@ "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-12-08": "Constitution Day", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", @@ -1425,7 +1425,7 @@ "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Commonwealth Cultural Day", @@ -1434,12 +1434,12 @@ "2039-11-24": "Thanksgiving", "2039-12-08": "Constitution Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", - "2040-03-23": "Commonwealth Covenant Day (Observed)", + "2040-03-23": "Commonwealth Covenant Day (observed)", "2040-03-24": "Commonwealth Covenant Day", "2040-03-30": "Good Friday", "2040-05-28": "Memorial Day", @@ -1448,19 +1448,19 @@ "2040-09-03": "Labor Day", "2040-10-08": "Commonwealth Cultural Day", "2040-11-04": "Citizenship Day", - "2040-11-05": "Citizenship Day (Observed)", + "2040-11-05": "Citizenship Day (observed)", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", - "2040-12-07": "Constitution Day (Observed)", + "2040-12-07": "Constitution Day (observed)", "2040-12-08": "Constitution Day", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-21": "Martin Luther King Jr. Day", "2041-02-18": "Washington's Birthday", "2041-03-24": "Commonwealth Covenant Day", - "2041-03-25": "Commonwealth Covenant Day (Observed)", + "2041-03-25": "Commonwealth Covenant Day (observed)", "2041-04-19": "Good Friday", "2041-05-27": "Memorial Day", "2041-06-19": "Juneteenth National Independence Day", @@ -1471,7 +1471,7 @@ "2041-11-11": "Veterans Day", "2041-11-28": "Thanksgiving", "2041-12-08": "Constitution Day", - "2041-12-09": "Constitution Day (Observed)", + "2041-12-09": "Constitution Day (observed)", "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-01-20": "Martin Luther King Jr. Day", @@ -1495,7 +1495,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Commonwealth Cultural Day", @@ -1511,7 +1511,7 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Commonwealth Cultural Day", @@ -1521,9 +1521,9 @@ "2044-11-24": "Thanksgiving", "2044-12-08": "Constitution Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-03-24": "Commonwealth Covenant Day", @@ -1533,9 +1533,9 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Commonwealth Cultural Day", - "2045-11-03": "Citizenship Day (Observed)", + "2045-11-03": "Citizenship Day (observed)", "2045-11-04": "Citizenship Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-08": "Constitution Day", @@ -1543,7 +1543,7 @@ "2046-01-01": "New Year's Day", "2046-01-15": "Martin Luther King Jr. Day", "2046-02-19": "Washington's Birthday", - "2046-03-23": "Commonwealth Covenant Day (Observed); Good Friday", + "2046-03-23": "Commonwealth Covenant Day (observed); Good Friday", "2046-03-24": "Commonwealth Covenant Day", "2046-05-28": "Memorial Day", "2046-06-19": "Juneteenth National Independence Day", @@ -1551,19 +1551,19 @@ "2046-09-03": "Labor Day", "2046-10-08": "Commonwealth Cultural Day", "2046-11-04": "Citizenship Day", - "2046-11-05": "Citizenship Day (Observed)", + "2046-11-05": "Citizenship Day (observed)", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", - "2046-12-07": "Constitution Day (Observed)", + "2046-12-07": "Constitution Day (observed)", "2046-12-08": "Constitution Day", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-01-21": "Martin Luther King Jr. Day", "2047-02-18": "Washington's Birthday", "2047-03-24": "Commonwealth Covenant Day", - "2047-03-25": "Commonwealth Covenant Day (Observed)", + "2047-03-25": "Commonwealth Covenant Day (observed)", "2047-04-12": "Good Friday", "2047-05-27": "Memorial Day", "2047-06-19": "Juneteenth National Independence Day", @@ -1574,7 +1574,7 @@ "2047-11-11": "Veterans Day", "2047-11-28": "Thanksgiving", "2047-12-08": "Constitution Day", - "2047-12-09": "Constitution Day (Observed)", + "2047-12-09": "Constitution Day (observed)", "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-01-20": "Martin Luther King Jr. Day", @@ -1583,7 +1583,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Commonwealth Cultural Day", @@ -1599,19 +1599,19 @@ "2049-03-24": "Commonwealth Covenant Day", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Commonwealth Cultural Day", "2049-11-04": "Citizenship Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-12-08": "Constitution Day", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", @@ -1619,7 +1619,7 @@ "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Commonwealth Cultural Day", @@ -1629,5 +1629,5 @@ "2050-11-24": "Thanksgiving", "2050-12-08": "Constitution Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_MS.json b/snapshots/countries/US_MS.json index 7ccd7124e..79336d73d 100644 --- a/snapshots/countries/US_MS.json +++ b/snapshots/countries/US_MS.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-24": "Confederate Memorial Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -33,7 +33,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-27": "Confederate Memorial Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -44,13 +44,13 @@ "1954-04-26": "Confederate Memorial Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-25": "Confederate Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-04-23": "Confederate Memorial Day", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -94,7 +94,7 @@ "1959-02-22": "Washington's Birthday", "1959-04-27": "Confederate Memorial Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-04-24": "Confederate Memorial Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -144,7 +144,7 @@ "1964-02-22": "Washington's Birthday", "1964-04-27": "Confederate Memorial Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -155,13 +155,13 @@ "1965-04-26": "Confederate Memorial Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-25": "Confederate Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-04-24": "Confederate Memorial Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -205,7 +205,7 @@ "1970-02-22": "Washington's Birthday", "1970-04-27": "Confederate Memorial Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -216,13 +216,13 @@ "1971-04-26": "Confederate Memorial Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-04-24": "Confederate Memorial Day", @@ -264,13 +264,13 @@ "1976-04-26": "Confederate Memorial Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-04-25": "Confederate Memorial Day", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-04-24": "Confederate Memorial Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -315,7 +315,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-27": "Confederate Memorial Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -326,13 +326,13 @@ "1982-04-26": "Confederate Memorial Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-04-25": "Confederate Memorial Day", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-23": "Confederate Memorial Day", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -378,7 +378,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-27": "Confederate Memorial Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "1989-02-20": "Washington's Birthday", "1989-04-24": "Confederate Memorial Day", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -433,7 +433,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-27": "Confederate Memorial Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -445,13 +445,13 @@ "1993-04-26": "Confederate Memorial Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "1995-02-20": "Washington's Birthday", "1995-04-24": "Confederate Memorial Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -500,7 +500,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-27": "Confederate Memorial Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -512,13 +512,13 @@ "1999-04-26": "Confederate Memorial Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -567,13 +567,13 @@ "2004-04-26": "Confederate Memorial Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2006-02-20": "Washington's Birthday", "2006-04-24": "Confederate Memorial Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -623,7 +623,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-27": "Confederate Memorial Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -635,13 +635,13 @@ "2010-04-26": "Confederate Memorial Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2011-02-21": "Washington's Birthday", @@ -652,9 +652,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2012-02-20": "Washington's Birthday", "2012-04-23": "Confederate Memorial Day", @@ -662,7 +662,7 @@ "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -690,7 +690,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-27": "Confederate Memorial Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -706,16 +706,16 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2017-02-20": "Washington's Birthday", "2017-04-24": "Confederate Memorial Day", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -727,7 +727,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -745,7 +745,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-27": "Confederate Memorial Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -756,31 +756,31 @@ "2021-02-15": "Washington's Birthday", "2021-04-26": "Confederate Memorial Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2022-02-21": "Washington's Birthday", "2022-04-25": "Confederate Memorial Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2023-02-20": "Washington's Birthday", "2023-04-24": "Confederate Memorial Day", @@ -788,7 +788,7 @@ "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -820,7 +820,7 @@ "2026-04-27": "Confederate Memorial Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -831,16 +831,16 @@ "2027-02-15": "Washington's Birthday", "2027-04-26": "Confederate Memorial Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2028-02-21": "Washington's Birthday", @@ -849,7 +849,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -862,7 +862,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -892,31 +892,31 @@ "2032-02-16": "Washington's Birthday", "2032-04-26": "Confederate Memorial Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2033-02-21": "Washington's Birthday", "2033-04-25": "Confederate Memorial Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2034-02-20": "Washington's Birthday", "2034-04-24": "Confederate Memorial Day", @@ -924,7 +924,7 @@ "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -937,7 +937,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -957,7 +957,7 @@ "2037-04-27": "Confederate Memorial Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -968,31 +968,31 @@ "2038-02-15": "Washington's Birthday", "2038-04-26": "Confederate Memorial Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2039-02-21": "Washington's Birthday", "2039-04-25": "Confederate Memorial Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2040-02-20": "Washington's Birthday", "2040-04-23": "Confederate Memorial Day", @@ -1001,7 +1001,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1032,7 +1032,7 @@ "2043-04-27": "Confederate Memorial Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1044,15 +1044,15 @@ "2044-04-25": "Confederate Memorial Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2045-02-20": "Washington's Birthday", "2045-04-24": "Confederate Memorial Day", @@ -1060,7 +1060,7 @@ "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1073,7 +1073,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1093,7 +1093,7 @@ "2048-04-27": "Confederate Memorial Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1104,27 +1104,27 @@ "2049-02-15": "Washington's Birthday", "2049-04-26": "Confederate Memorial Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Dr. Martin Luther King Jr. and Robert E. Lee's Birthdays", "2050-02-21": "Washington's Birthday", "2050-04-25": "Confederate Memorial Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_MT.json b/snapshots/countries/US_MT.json index a62c0d960..d62514aaf 100644 --- a/snapshots/countries/US_MT.json +++ b/snapshots/countries/US_MT.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -32,7 +32,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -43,14 +43,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -93,7 +93,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -143,7 +143,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -154,14 +154,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -204,7 +204,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -215,14 +215,14 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -263,14 +263,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -314,7 +314,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -325,14 +325,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -377,7 +377,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -432,7 +432,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -444,14 +444,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -499,7 +499,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -511,14 +511,14 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -566,14 +566,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -623,7 +623,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -635,15 +635,15 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -654,9 +654,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -665,7 +665,7 @@ "2012-10-08": "Columbus Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -693,7 +693,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -711,16 +711,16 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -733,7 +733,7 @@ "2018-10-08": "Columbus Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -750,7 +750,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -762,23 +762,23 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", @@ -786,9 +786,9 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -796,7 +796,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -828,7 +828,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -840,17 +840,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -860,7 +860,7 @@ "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -873,7 +873,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -903,33 +903,33 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -938,7 +938,7 @@ "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -951,7 +951,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -971,7 +971,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -982,33 +982,33 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1018,7 +1018,7 @@ "2040-10-08": "Columbus Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1049,7 +1049,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1061,7 +1061,7 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", @@ -1069,9 +1069,9 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1079,7 +1079,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1093,7 +1093,7 @@ "2046-10-08": "Columbus Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1112,7 +1112,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1124,23 +1124,23 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", @@ -1148,5 +1148,5 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_NC.json b/snapshots/countries/US_NC.json index 47a399510..36a1da4fa 100644 --- a/snapshots/countries/US_NC.json +++ b/snapshots/countries/US_NC.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -33,7 +33,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -44,13 +44,13 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -94,7 +94,7 @@ "1959-02-22": "Washington's Birthday", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -144,7 +144,7 @@ "1964-02-22": "Washington's Birthday", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -155,13 +155,13 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -205,7 +205,7 @@ "1970-02-22": "Washington's Birthday", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -216,13 +216,13 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-31": "Good Friday", @@ -265,14 +265,14 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Day After Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-04-08": "Good Friday", @@ -283,15 +283,15 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Day After Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Day After Thanksgiving", @@ -303,7 +303,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Day After Thanksgiving", "1979-12-25": "Christmas Day", @@ -321,7 +321,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -333,14 +333,14 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Day After Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-04-01": "Good Friday", @@ -351,16 +351,16 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Day After Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Day After Thanksgiving", "1984-12-25": "Christmas Day", @@ -390,7 +390,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -408,16 +408,16 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Day After Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-24": "Good Friday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Day After Thanksgiving", @@ -430,7 +430,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Day After Thanksgiving", "1990-12-25": "Christmas Day", @@ -450,7 +450,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -463,14 +463,14 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Day After Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -482,16 +482,16 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Day After Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-04-14": "Good Friday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Day After Thanksgiving", @@ -523,7 +523,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -536,14 +536,14 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Day After Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -551,7 +551,7 @@ "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Day After Thanksgiving", @@ -564,7 +564,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Day After Thanksgiving", "2001-12-25": "Christmas Day", @@ -596,14 +596,14 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Day After Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -615,16 +615,16 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Day After Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-14": "Good Friday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Day After Thanksgiving", @@ -637,7 +637,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Day After Thanksgiving", "2007-12-25": "Christmas Day", @@ -657,7 +657,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -670,14 +670,14 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Day After Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -689,9 +689,9 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Day After Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-06": "Good Friday", @@ -699,7 +699,7 @@ "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Day After Thanksgiving", "2012-12-25": "Christmas Day", @@ -734,7 +734,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -743,7 +743,7 @@ "2015-12-24": "Christmas Eve", "2015-12-25": "Christmas Day", "2015-12-26": "Day After Christmas", - "2015-12-28": "Day After Christmas (Observed)", + "2015-12-28": "Day After Christmas (observed)", "2016-01-01": "New Year's Day", "2016-01-18": "Martin Luther King Jr. Day", "2016-02-15": "Washington's Birthday", @@ -754,24 +754,24 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-11-25": "Day After Thanksgiving", - "2016-12-23": "Christmas Eve (Observed)", + "2016-12-23": "Christmas Eve (observed)", "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed); Day After Christmas", - "2016-12-27": "Day After Christmas (Observed)", + "2016-12-26": "Christmas Day (observed); Day After Christmas", + "2016-12-27": "Day After Christmas (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-04-14": "Good Friday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Day After Thanksgiving", - "2017-12-22": "Christmas Eve (Observed)", + "2017-12-22": "Christmas Eve (observed)", "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2017-12-26": "Day After Christmas", @@ -783,7 +783,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Day After Thanksgiving", "2018-12-24": "Christmas Eve", @@ -807,7 +807,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -816,45 +816,45 @@ "2020-12-24": "Christmas Eve", "2020-12-25": "Christmas Day", "2020-12-26": "Day After Christmas", - "2020-12-28": "Day After Christmas (Observed)", + "2020-12-28": "Day After Christmas (observed)", "2021-01-01": "New Year's Day", "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Day After Thanksgiving", - "2021-12-23": "Christmas Eve (Observed)", - "2021-12-24": "Christmas Day (Observed); Christmas Eve", + "2021-12-23": "Christmas Eve (observed)", + "2021-12-24": "Christmas Day (observed); Christmas Eve", "2021-12-25": "Christmas Day", "2021-12-26": "Day After Christmas", - "2021-12-27": "Day After Christmas (Observed)", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-27": "Day After Christmas (observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-11-25": "Day After Thanksgiving", - "2022-12-23": "Christmas Eve (Observed)", + "2022-12-23": "Christmas Eve (observed)", "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed); Day After Christmas", - "2022-12-27": "Day After Christmas (Observed)", + "2022-12-26": "Christmas Day (observed); Day After Christmas", + "2022-12-27": "Day After Christmas (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-07": "Good Friday", @@ -862,11 +862,11 @@ "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Day After Thanksgiving", - "2023-12-22": "Christmas Eve (Observed)", + "2023-12-22": "Christmas Eve (observed)", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2023-12-26": "Day After Christmas", @@ -904,7 +904,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -913,26 +913,26 @@ "2026-12-24": "Christmas Eve", "2026-12-25": "Christmas Day", "2026-12-26": "Day After Christmas", - "2026-12-28": "Day After Christmas (Observed)", + "2026-12-28": "Day After Christmas (observed)", "2027-01-01": "New Year's Day", "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Day After Thanksgiving", - "2027-12-23": "Christmas Eve (Observed)", - "2027-12-24": "Christmas Day (Observed); Christmas Eve", + "2027-12-23": "Christmas Eve (observed)", + "2027-12-24": "Christmas Day (observed); Christmas Eve", "2027-12-25": "Christmas Day", "2027-12-26": "Day After Christmas", - "2027-12-27": "Day After Christmas (Observed)", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-27": "Day After Christmas (observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -941,11 +941,11 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Day After Thanksgiving", - "2028-12-22": "Christmas Eve (Observed)", + "2028-12-22": "Christmas Eve (observed)", "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2028-12-26": "Day After Christmas", @@ -958,7 +958,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Day After Thanksgiving", "2029-12-24": "Christmas Eve", @@ -997,39 +997,39 @@ "2032-02-16": "Washington's Birthday", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Day After Thanksgiving", - "2032-12-23": "Christmas Eve (Observed)", - "2032-12-24": "Christmas Day (Observed); Christmas Eve", + "2032-12-23": "Christmas Eve (observed)", + "2032-12-24": "Christmas Day (observed); Christmas Eve", "2032-12-25": "Christmas Day", "2032-12-26": "Day After Christmas", - "2032-12-27": "Day After Christmas (Observed)", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-27": "Day After Christmas (observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-11-25": "Day After Thanksgiving", - "2033-12-23": "Christmas Eve (Observed)", + "2033-12-23": "Christmas Eve (observed)", "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed); Day After Christmas", - "2033-12-27": "Day After Christmas (Observed)", + "2033-12-26": "Christmas Day (observed); Day After Christmas", + "2033-12-27": "Day After Christmas (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-07": "Good Friday", @@ -1037,11 +1037,11 @@ "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Day After Thanksgiving", - "2034-12-22": "Christmas Eve (Observed)", + "2034-12-22": "Christmas Eve (observed)", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2034-12-26": "Day After Christmas", @@ -1054,7 +1054,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Day After Thanksgiving", "2035-12-24": "Christmas Eve", @@ -1080,7 +1080,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -1089,45 +1089,45 @@ "2037-12-24": "Christmas Eve", "2037-12-25": "Christmas Day", "2037-12-26": "Day After Christmas", - "2037-12-28": "Day After Christmas (Observed)", + "2037-12-28": "Day After Christmas (observed)", "2038-01-01": "New Year's Day", "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Day After Thanksgiving", - "2038-12-23": "Christmas Eve (Observed)", - "2038-12-24": "Christmas Day (Observed); Christmas Eve", + "2038-12-23": "Christmas Eve (observed)", + "2038-12-24": "Christmas Day (observed); Christmas Eve", "2038-12-25": "Christmas Day", "2038-12-26": "Day After Christmas", - "2038-12-27": "Day After Christmas (Observed)", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-27": "Day After Christmas (observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-11-25": "Day After Thanksgiving", - "2039-12-23": "Christmas Eve (Observed)", + "2039-12-23": "Christmas Eve (observed)", "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Day After Christmas", - "2039-12-27": "Day After Christmas (Observed)", + "2039-12-26": "Christmas Day (observed); Day After Christmas", + "2039-12-27": "Day After Christmas (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-30": "Good Friday", @@ -1136,7 +1136,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Day After Thanksgiving", "2040-12-24": "Christmas Eve", @@ -1176,7 +1176,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1185,26 +1185,26 @@ "2043-12-24": "Christmas Eve", "2043-12-25": "Christmas Day", "2043-12-26": "Day After Christmas", - "2043-12-28": "Day After Christmas (Observed)", + "2043-12-28": "Day After Christmas (observed)", "2044-01-01": "New Year's Day", "2044-01-18": "Martin Luther King Jr. Day", "2044-02-15": "Washington's Birthday", "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-11-25": "Day After Thanksgiving", - "2044-12-23": "Christmas Eve (Observed)", + "2044-12-23": "Christmas Eve (observed)", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed); Day After Christmas", - "2044-12-27": "Day After Christmas (Observed)", + "2044-12-26": "Christmas Day (observed); Day After Christmas", + "2044-12-27": "Day After Christmas (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-04-07": "Good Friday", @@ -1212,11 +1212,11 @@ "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Day After Thanksgiving", - "2045-12-22": "Christmas Eve (Observed)", + "2045-12-22": "Christmas Eve (observed)", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2045-12-26": "Day After Christmas", @@ -1229,7 +1229,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Day After Thanksgiving", "2046-12-24": "Christmas Eve", @@ -1255,7 +1255,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1264,41 +1264,41 @@ "2048-12-24": "Christmas Eve", "2048-12-25": "Christmas Day", "2048-12-26": "Day After Christmas", - "2048-12-28": "Day After Christmas (Observed)", + "2048-12-28": "Day After Christmas (observed)", "2049-01-01": "New Year's Day", "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Day After Thanksgiving", - "2049-12-23": "Christmas Eve (Observed)", - "2049-12-24": "Christmas Day (Observed); Christmas Eve", + "2049-12-23": "Christmas Eve (observed)", + "2049-12-24": "Christmas Day (observed); Christmas Eve", "2049-12-25": "Christmas Day", "2049-12-26": "Day After Christmas", - "2049-12-27": "Day After Christmas (Observed)", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-27": "Day After Christmas (observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-11-25": "Day After Thanksgiving", - "2050-12-23": "Christmas Eve (Observed)", + "2050-12-23": "Christmas Eve (observed)", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed); Day After Christmas", - "2050-12-27": "Day After Christmas (Observed)" + "2050-12-26": "Christmas Day (observed); Day After Christmas", + "2050-12-27": "Day After Christmas (observed)" } diff --git a/snapshots/countries/US_ND.json b/snapshots/countries/US_ND.json index ba4f0854e..5fc4393a4 100644 --- a/snapshots/countries/US_ND.json +++ b/snapshots/countries/US_ND.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -639,15 +639,15 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -658,7 +658,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -674,7 +674,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -684,37 +684,37 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -753,16 +753,16 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -770,7 +770,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -782,7 +782,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -809,37 +809,37 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -851,7 +851,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -869,7 +869,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -879,30 +879,30 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -910,7 +910,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -938,7 +938,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -949,22 +949,22 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -976,7 +976,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -994,7 +994,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1004,26 +1004,26 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_NE.json b/snapshots/countries/US_NE.json index daabfaf45..2d0e60f9c 100644 --- a/snapshots/countries/US_NE.json +++ b/snapshots/countries/US_NE.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-22": "Arbor Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -33,7 +33,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-22": "Arbor Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -44,13 +44,13 @@ "1954-04-22": "Arbor Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-22": "Arbor Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-04-22": "Arbor Day", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -94,7 +94,7 @@ "1959-02-22": "Washington's Birthday", "1959-04-22": "Arbor Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-04-22": "Arbor Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -144,7 +144,7 @@ "1964-02-22": "Washington's Birthday", "1964-04-22": "Arbor Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -155,13 +155,13 @@ "1965-04-22": "Arbor Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-22": "Arbor Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-04-22": "Arbor Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -205,7 +205,7 @@ "1970-02-22": "Washington's Birthday", "1970-04-22": "Arbor Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -216,14 +216,14 @@ "1971-04-22": "Arbor Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-04-22": "Arbor Day", @@ -269,14 +269,14 @@ "1976-04-22": "Arbor Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-04-22": "Arbor Day", @@ -287,16 +287,16 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-04-22": "Arbor Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -308,7 +308,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -325,7 +325,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-22": "Arbor Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -337,14 +337,14 @@ "1982-04-22": "Arbor Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-04-22": "Arbor Day", @@ -355,9 +355,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-22": "Arbor Day", "1984-05-28": "Memorial Day", @@ -365,7 +365,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -394,7 +394,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-22": "Arbor Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -412,9 +412,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-04-28": "Arbor Day", @@ -422,7 +422,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -435,7 +435,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -454,7 +454,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-24": "Arbor Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -467,14 +467,14 @@ "1993-04-30": "Arbor Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -486,9 +486,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-04-28": "Arbor Day", @@ -496,7 +496,7 @@ "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -527,7 +527,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-24": "Arbor Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -540,14 +540,14 @@ "1999-04-30": "Arbor Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -556,7 +556,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -569,7 +569,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -600,14 +600,14 @@ "2004-04-30": "Arbor Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -619,9 +619,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-28": "Arbor Day", @@ -629,7 +629,7 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -642,7 +642,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -661,7 +661,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-24": "Arbor Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -674,14 +674,14 @@ "2010-04-30": "Arbor Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -693,9 +693,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-27": "Arbor Day", @@ -704,7 +704,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -734,7 +734,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-24": "Arbor Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -752,9 +752,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-04-28": "Arbor Day", @@ -762,7 +762,7 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -775,7 +775,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -794,7 +794,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-24": "Arbor Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Indigenous Peoples' Day", @@ -806,33 +806,33 @@ "2021-02-15": "Washington's Birthday", "2021-04-30": "Arbor Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Indigenous Peoples' Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-04-29": "Arbor Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Indigenous Peoples' Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-28": "Arbor Day", @@ -841,7 +841,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Indigenous Peoples' Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -875,7 +875,7 @@ "2026-04-24": "Arbor Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Indigenous Peoples' Day", @@ -887,17 +887,17 @@ "2027-02-15": "Washington's Birthday", "2027-04-30": "Arbor Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Indigenous Peoples' Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -907,7 +907,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Indigenous Peoples' Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -921,7 +921,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Indigenous Peoples' Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -953,33 +953,33 @@ "2032-02-16": "Washington's Birthday", "2032-04-30": "Arbor Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Indigenous Peoples' Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-04-29": "Arbor Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Indigenous Peoples' Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-28": "Arbor Day", @@ -988,7 +988,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Indigenous Peoples' Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1002,7 +1002,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Indigenous Peoples' Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1023,7 +1023,7 @@ "2037-04-24": "Arbor Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Indigenous Peoples' Day", @@ -1035,33 +1035,33 @@ "2038-02-15": "Washington's Birthday", "2038-04-30": "Arbor Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Indigenous Peoples' Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-04-29": "Arbor Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Indigenous Peoples' Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-04-27": "Arbor Day", @@ -1071,7 +1071,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Indigenous Peoples' Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1104,7 +1104,7 @@ "2043-04-24": "Arbor Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Indigenous Peoples' Day", @@ -1117,16 +1117,16 @@ "2044-04-29": "Arbor Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Indigenous Peoples' Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-04-28": "Arbor Day", @@ -1135,7 +1135,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Indigenous Peoples' Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1149,7 +1149,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Indigenous Peoples' Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1170,7 +1170,7 @@ "2048-04-24": "Arbor Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Indigenous Peoples' Day", @@ -1182,29 +1182,29 @@ "2049-02-15": "Washington's Birthday", "2049-04-30": "Arbor Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Indigenous Peoples' Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-04-29": "Arbor Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Indigenous Peoples' Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_NH.json b/snapshots/countries/US_NH.json index df361d431..ce7b37dd8 100644 --- a/snapshots/countries/US_NH.json +++ b/snapshots/countries/US_NH.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -238,14 +238,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Day After Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -255,14 +255,14 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Day After Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Day After Thanksgiving", @@ -273,7 +273,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Day After Thanksgiving", "1979-12-25": "Christmas Day", @@ -289,7 +289,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -300,14 +300,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Day After Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -317,15 +317,15 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Day After Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Day After Thanksgiving", "1984-12-25": "Christmas Day", @@ -352,7 +352,7 @@ "1987-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -369,15 +369,15 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Day After Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Day After Thanksgiving", @@ -389,7 +389,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Day After Thanksgiving", "1990-12-25": "Christmas Day", @@ -407,7 +407,7 @@ "1992-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -419,14 +419,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Day After Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "1994-02-21": "Washington's Birthday", @@ -437,15 +437,15 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Day After Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Day After Thanksgiving", @@ -474,7 +474,7 @@ "1998-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -486,21 +486,21 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Day After Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Day After Thanksgiving", @@ -512,7 +512,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Day After Thanksgiving", "2001-12-25": "Christmas Day", @@ -541,14 +541,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Day After Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2005-02-21": "Washington's Birthday", @@ -559,15 +559,15 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Day After Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Day After Thanksgiving", @@ -579,7 +579,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Day After Thanksgiving", "2007-12-25": "Christmas Day", @@ -598,7 +598,7 @@ "2009-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -610,15 +610,15 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Day After Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2011-02-21": "Washington's Birthday", @@ -629,9 +629,9 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Day After Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -639,7 +639,7 @@ "2012-09-03": "Labor Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Day After Thanksgiving", "2012-12-25": "Christmas Day", @@ -668,7 +668,7 @@ "2015-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -686,15 +686,15 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Day After Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Day After Thanksgiving", @@ -707,7 +707,7 @@ "2018-09-03": "Labor Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Day After Thanksgiving", "2018-12-25": "Christmas Day", @@ -725,7 +725,7 @@ "2020-01-20": "Dr. Martin Luther King Jr. / Civil Rights Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-03": "Election Day", @@ -737,23 +737,23 @@ "2021-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Day After Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-08": "Election Day", @@ -761,16 +761,16 @@ "2022-11-24": "Thanksgiving", "2022-11-25": "Day After Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Day After Thanksgiving", @@ -803,7 +803,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-03": "Election Day", @@ -815,17 +815,17 @@ "2027-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Day After Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2028-02-21": "Washington's Birthday", @@ -834,7 +834,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Day After Thanksgiving", @@ -847,7 +847,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Day After Thanksgiving", "2029-12-25": "Christmas Day", @@ -878,33 +878,33 @@ "2032-01-19": "Dr. Martin Luther King Jr. / Civil Rights Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Day After Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-11-25": "Day After Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -912,7 +912,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Day After Thanksgiving", @@ -925,7 +925,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Day After Thanksgiving", "2035-12-25": "Christmas Day", @@ -946,7 +946,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -957,33 +957,33 @@ "2038-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Day After Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-11-25": "Day After Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -992,7 +992,7 @@ "2040-09-03": "Labor Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Day After Thanksgiving", "2040-12-25": "Christmas Day", @@ -1024,7 +1024,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1036,7 +1036,7 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-08": "Election Day", @@ -1044,16 +1044,16 @@ "2044-11-24": "Thanksgiving", "2044-11-25": "Day After Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Dr. Martin Luther King Jr. / Civil Rights Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Day After Thanksgiving", @@ -1067,7 +1067,7 @@ "2046-09-03": "Labor Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Day After Thanksgiving", "2046-12-25": "Christmas Day", @@ -1087,7 +1087,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-03": "Election Day", @@ -1099,23 +1099,23 @@ "2049-01-18": "Dr. Martin Luther King Jr. / Civil Rights Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Day After Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Dr. Martin Luther King Jr. / Civil Rights Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-08": "Election Day", @@ -1123,5 +1123,5 @@ "2050-11-24": "Thanksgiving", "2050-11-25": "Day After Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_NJ.json b/snapshots/countries/US_NJ.json index 4df17cd76..0337b64ff 100644 --- a/snapshots/countries/US_NJ.json +++ b/snapshots/countries/US_NJ.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -36,7 +36,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -48,14 +48,14 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", @@ -66,9 +66,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -76,7 +76,7 @@ "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -103,7 +103,7 @@ "1959-02-22": "Washington's Birthday", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -120,16 +120,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -141,7 +141,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -158,7 +158,7 @@ "1964-02-22": "Washington's Birthday", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -170,14 +170,14 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", @@ -188,16 +188,16 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -225,7 +225,7 @@ "1970-02-22": "Washington's Birthday", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -238,16 +238,16 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", - "1972-02-11": "Lincoln's Birthday (Observed)", + "1972-02-11": "Lincoln's Birthday (observed)", "1972-02-12": "Lincoln's Birthday", "1972-02-21": "Washington's Birthday", "1972-03-31": "Good Friday", @@ -297,16 +297,16 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", - "1977-02-11": "Lincoln's Birthday (Observed)", + "1977-02-11": "Lincoln's Birthday (observed)", "1977-02-12": "Lincoln's Birthday", "1977-02-21": "Washington's Birthday", "1977-04-08": "Good Friday", @@ -317,18 +317,18 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-12": "Lincoln's Birthday", - "1978-02-13": "Lincoln's Birthday (Observed)", + "1978-02-13": "Lincoln's Birthday (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -341,7 +341,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -360,7 +360,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -373,16 +373,16 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", - "1983-02-11": "Lincoln's Birthday (Observed)", + "1983-02-11": "Lincoln's Birthday (observed)", "1983-02-12": "Lincoln's Birthday", "1983-02-21": "Washington's Birthday", "1983-04-01": "Good Friday", @@ -393,11 +393,11 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-12": "Lincoln's Birthday", - "1984-02-13": "Lincoln's Birthday (Observed)", + "1984-02-13": "Lincoln's Birthday (observed)", "1984-02-20": "Washington's Birthday", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", @@ -405,7 +405,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -437,7 +437,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -456,19 +456,19 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-12": "Lincoln's Birthday", - "1989-02-13": "Lincoln's Birthday (Observed)", + "1989-02-13": "Lincoln's Birthday (observed)", "1989-02-20": "Washington's Birthday", "1989-03-24": "Good Friday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -482,7 +482,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -503,7 +503,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -517,17 +517,17 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", - "1994-02-11": "Lincoln's Birthday (Observed)", + "1994-02-11": "Lincoln's Birthday (observed)", "1994-02-12": "Lincoln's Birthday", "1994-02-21": "Washington's Birthday", "1994-04-01": "Good Friday", @@ -538,19 +538,19 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-12": "Lincoln's Birthday", - "1995-02-13": "Lincoln's Birthday (Observed)", + "1995-02-13": "Lincoln's Birthday (observed)", "1995-02-20": "Washington's Birthday", "1995-04-14": "Good Friday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -584,7 +584,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -598,17 +598,17 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", - "2000-02-11": "Lincoln's Birthday (Observed)", + "2000-02-11": "Lincoln's Birthday (observed)", "2000-02-12": "Lincoln's Birthday", "2000-02-21": "Washington's Birthday", "2000-04-21": "Good Friday", @@ -616,7 +616,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -630,7 +630,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -664,17 +664,17 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", - "2005-02-11": "Lincoln's Birthday (Observed)", + "2005-02-11": "Lincoln's Birthday (observed)", "2005-02-12": "Lincoln's Birthday", "2005-02-21": "Washington's Birthday", "2005-03-25": "Good Friday", @@ -685,19 +685,19 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-12": "Lincoln's Birthday", - "2006-02-13": "Lincoln's Birthday (Observed)", + "2006-02-13": "Lincoln's Birthday (observed)", "2006-02-20": "Washington's Birthday", "2006-04-14": "Good Friday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -711,7 +711,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -733,7 +733,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -747,18 +747,18 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", - "2011-02-11": "Lincoln's Birthday (Observed)", + "2011-02-11": "Lincoln's Birthday (observed)", "2011-02-12": "Lincoln's Birthday", "2011-02-21": "Washington's Birthday", "2011-04-22": "Good Friday", @@ -769,12 +769,12 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-12": "Lincoln's Birthday", - "2012-02-13": "Lincoln's Birthday (Observed)", + "2012-02-13": "Lincoln's Birthday (observed)", "2012-02-20": "Washington's Birthday", "2012-04-06": "Good Friday", "2012-05-28": "Memorial Day", @@ -783,7 +783,7 @@ "2012-10-08": "Columbus Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -817,7 +817,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -837,19 +837,19 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-12": "Lincoln's Birthday", - "2017-02-13": "Lincoln's Birthday (Observed)", + "2017-02-13": "Lincoln's Birthday (observed)", "2017-02-20": "Washington's Birthday", "2017-04-14": "Good Friday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -864,7 +864,7 @@ "2018-10-08": "Columbus Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -885,7 +885,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -899,26 +899,26 @@ "2021-02-15": "Washington's Birthday", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", - "2022-02-11": "Lincoln's Birthday (Observed)", + "2022-02-11": "Lincoln's Birthday (observed)", "2022-02-12": "Lincoln's Birthday", "2022-02-21": "Washington's Birthday", "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", @@ -926,12 +926,12 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-12": "Lincoln's Birthday", - "2023-02-13": "Lincoln's Birthday (Observed)", + "2023-02-13": "Lincoln's Birthday (observed)", "2023-02-20": "Washington's Birthday", "2023-04-07": "Good Friday", "2023-05-29": "Memorial Day", @@ -939,7 +939,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -977,7 +977,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -991,20 +991,20 @@ "2027-02-15": "Washington's Birthday", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", - "2028-02-11": "Lincoln's Birthday (Observed)", + "2028-02-11": "Lincoln's Birthday (observed)", "2028-02-12": "Lincoln's Birthday", "2028-02-21": "Washington's Birthday", "2028-04-14": "Good Friday", @@ -1014,7 +1014,7 @@ "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -1029,7 +1029,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1065,39 +1065,39 @@ "2032-02-16": "Washington's Birthday", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", - "2033-02-11": "Lincoln's Birthday (Observed)", + "2033-02-11": "Lincoln's Birthday (observed)", "2033-02-12": "Lincoln's Birthday", "2033-02-21": "Washington's Birthday", "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-12": "Lincoln's Birthday", - "2034-02-13": "Lincoln's Birthday (Observed)", + "2034-02-13": "Lincoln's Birthday (observed)", "2034-02-20": "Washington's Birthday", "2034-04-07": "Good Friday", "2034-05-29": "Memorial Day", @@ -1106,7 +1106,7 @@ "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1121,7 +1121,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1145,7 +1145,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1158,39 +1158,39 @@ "2038-02-15": "Washington's Birthday", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", - "2039-02-11": "Lincoln's Birthday (Observed)", + "2039-02-11": "Lincoln's Birthday (observed)", "2039-02-12": "Lincoln's Birthday", "2039-02-21": "Washington's Birthday", "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-12": "Lincoln's Birthday", - "2040-02-13": "Lincoln's Birthday (Observed)", + "2040-02-13": "Lincoln's Birthday (observed)", "2040-02-20": "Washington's Birthday", "2040-03-30": "Good Friday", "2040-05-28": "Memorial Day", @@ -1200,7 +1200,7 @@ "2040-10-08": "Columbus Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1237,7 +1237,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1251,7 +1251,7 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", @@ -1259,12 +1259,12 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-12": "Lincoln's Birthday", - "2045-02-13": "Lincoln's Birthday (Observed)", + "2045-02-13": "Lincoln's Birthday (observed)", "2045-02-20": "Washington's Birthday", "2045-04-07": "Good Friday", "2045-05-29": "Memorial Day", @@ -1272,7 +1272,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1288,7 +1288,7 @@ "2046-10-08": "Columbus Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1311,7 +1311,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1325,26 +1325,26 @@ "2049-02-15": "Washington's Birthday", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", - "2050-02-11": "Lincoln's Birthday (Observed)", + "2050-02-11": "Lincoln's Birthday (observed)", "2050-02-12": "Lincoln's Birthday", "2050-02-21": "Washington's Birthday", "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", @@ -1352,5 +1352,5 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_NM.json b/snapshots/countries/US_NM.json index f014f2462..16bbff333 100644 --- a/snapshots/countries/US_NM.json +++ b/snapshots/countries/US_NM.json @@ -1,10 +1,10 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-11-24": "Presidents' Day", @@ -14,7 +14,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-11-23": "Presidents' Day", "1951-12-25": "Christmas Day", @@ -28,7 +28,7 @@ "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -38,14 +38,14 @@ "1954-01-01": "New Year's Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", "1954-11-26": "Presidents' Day", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-05-30": "Memorial Day", "1955-07-04": "Independence Day", @@ -54,14 +54,14 @@ "1955-11-24": "Thanksgiving", "1955-11-25": "Presidents' Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-11-23": "Presidents' Day", "1956-12-25": "Christmas Day", @@ -83,7 +83,7 @@ "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,13 +98,13 @@ "1960-11-24": "Thanksgiving", "1960-11-25": "Presidents' Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-11-24": "Presidents' Day", @@ -114,7 +114,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-11-23": "Presidents' Day", "1962-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -138,14 +138,14 @@ "1965-01-01": "New Year's Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", "1965-11-26": "Presidents' Day", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-05-30": "Memorial Day", "1966-07-04": "Independence Day", @@ -154,13 +154,13 @@ "1966-11-24": "Thanksgiving", "1966-11-25": "Presidents' Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-11-24": "Presidents' Day", @@ -183,7 +183,7 @@ "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -193,15 +193,15 @@ "1971-01-01": "New Year's Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", "1971-11-26": "Presidents' Day", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-05-29": "Memorial Day", "1972-07-04": "Independence Day", @@ -241,15 +241,15 @@ "1976-01-01": "New Year's Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Presidents' Day", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-05-30": "Memorial Day", "1977-07-04": "Independence Day", @@ -259,14 +259,14 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Presidents' Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Presidents' Day", @@ -277,7 +277,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Presidents' Day", "1979-12-25": "Christmas Day", @@ -292,7 +292,7 @@ "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -303,15 +303,15 @@ "1982-01-01": "New Year's Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Presidents' Day", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-05-30": "Memorial Day", "1983-07-04": "Independence Day", @@ -321,15 +321,15 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Presidents' Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Presidents' Day", "1984-12-25": "Christmas Day", @@ -355,7 +355,7 @@ "1987-01-01": "New Year's Day", "1987-01-19": "Martin Luther King Jr. Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -373,15 +373,15 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Presidents' Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Presidents' Day", @@ -393,7 +393,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Presidents' Day", "1990-12-25": "Christmas Day", @@ -410,7 +410,7 @@ "1992-01-01": "New Year's Day", "1992-01-20": "Martin Luther King Jr. Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -422,15 +422,15 @@ "1993-01-18": "Martin Luther King Jr. Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Presidents' Day", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-05-30": "Memorial Day", @@ -441,15 +441,15 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Presidents' Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Presidents' Day", @@ -477,7 +477,7 @@ "1998-01-01": "New Year's Day", "1998-01-19": "Martin Luther King Jr. Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -489,22 +489,22 @@ "1999-01-18": "Martin Luther King Jr. Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Presidents' Day", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Presidents' Day", @@ -516,7 +516,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Presidents' Day", "2001-12-25": "Christmas Day", @@ -544,15 +544,15 @@ "2004-01-19": "Martin Luther King Jr. Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Presidents' Day", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-05-30": "Memorial Day", @@ -563,15 +563,15 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Presidents' Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Presidents' Day", @@ -583,7 +583,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Presidents' Day", "2007-12-25": "Christmas Day", @@ -600,7 +600,7 @@ "2009-01-01": "New Year's Day", "2009-01-19": "Martin Luther King Jr. Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -612,15 +612,15 @@ "2010-01-18": "Martin Luther King Jr. Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Presidents' Day", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-05-30": "Memorial Day", @@ -631,16 +631,16 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Presidents' Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Presidents' Day", "2012-12-25": "Christmas Day", @@ -667,7 +667,7 @@ "2015-01-01": "New Year's Day", "2015-01-19": "Martin Luther King Jr. Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -685,15 +685,15 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Presidents' Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Presidents' Day", @@ -705,7 +705,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Presidents' Day", "2018-12-25": "Christmas Day", @@ -722,7 +722,7 @@ "2020-01-01": "New Year's Day", "2020-01-20": "Martin Luther King Jr. Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Indigenous Peoples' Day", @@ -733,23 +733,23 @@ "2021-01-01": "New Year's Day", "2021-01-18": "Martin Luther King Jr. Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Indigenous Peoples' Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Presidents' Day", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Indigenous Peoples' Day", @@ -757,16 +757,16 @@ "2022-11-24": "Thanksgiving", "2022-11-25": "Presidents' Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Indigenous Peoples' Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Presidents' Day", @@ -797,7 +797,7 @@ "2026-01-19": "Martin Luther King Jr. Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Indigenous Peoples' Day", @@ -808,18 +808,18 @@ "2027-01-01": "New Year's Day", "2027-01-18": "Martin Luther King Jr. Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Indigenous Peoples' Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Presidents' Day", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-05-29": "Memorial Day", @@ -827,7 +827,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Indigenous Peoples' Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Presidents' Day", @@ -840,7 +840,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Indigenous Peoples' Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Presidents' Day", "2029-12-25": "Christmas Day", @@ -869,23 +869,23 @@ "2032-01-01": "New Year's Day", "2032-01-19": "Martin Luther King Jr. Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Indigenous Peoples' Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Presidents' Day", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Indigenous Peoples' Day", @@ -893,16 +893,16 @@ "2033-11-24": "Thanksgiving", "2033-11-25": "Presidents' Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Indigenous Peoples' Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Presidents' Day", @@ -915,7 +915,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Indigenous Peoples' Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Presidents' Day", "2035-12-25": "Christmas Day", @@ -934,7 +934,7 @@ "2037-01-19": "Martin Luther King Jr. Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Indigenous Peoples' Day", @@ -945,23 +945,23 @@ "2038-01-01": "New Year's Day", "2038-01-18": "Martin Luther King Jr. Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Indigenous Peoples' Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Presidents' Day", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Indigenous Peoples' Day", @@ -969,9 +969,9 @@ "2039-11-24": "Thanksgiving", "2039-11-25": "Presidents' Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-05-28": "Memorial Day", "2040-06-19": "Juneteenth National Independence Day", @@ -979,7 +979,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Indigenous Peoples' Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Presidents' Day", "2040-12-25": "Christmas Day", @@ -1009,7 +1009,7 @@ "2043-01-19": "Martin Luther King Jr. Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Indigenous Peoples' Day", @@ -1021,7 +1021,7 @@ "2044-01-18": "Martin Luther King Jr. Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Indigenous Peoples' Day", @@ -1029,16 +1029,16 @@ "2044-11-24": "Thanksgiving", "2044-11-25": "Presidents' Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Indigenous Peoples' Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Presidents' Day", @@ -1051,7 +1051,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Indigenous Peoples' Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Presidents' Day", "2046-12-25": "Christmas Day", @@ -1070,7 +1070,7 @@ "2048-01-20": "Martin Luther King Jr. Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Indigenous Peoples' Day", @@ -1081,23 +1081,23 @@ "2049-01-01": "New Year's Day", "2049-01-18": "Martin Luther King Jr. Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Indigenous Peoples' Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Presidents' Day", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Indigenous Peoples' Day", @@ -1105,5 +1105,5 @@ "2050-11-24": "Thanksgiving", "2050-11-25": "Presidents' Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_NV.json b/snapshots/countries/US_NV.json index de67f9e51..d71328b89 100644 --- a/snapshots/countries/US_NV.json +++ b/snapshots/countries/US_NV.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-31": "Nevada Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-11-24": "Family Day", @@ -18,7 +18,7 @@ "1951-09-03": "Labor Day", "1951-10-31": "Nevada Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-11-23": "Family Day", "1951-12-25": "Christmas Day", @@ -35,10 +35,10 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", - "1953-10-30": "Nevada Day (Observed)", + "1953-10-30": "Nevada Day (observed)", "1953-10-31": "Nevada Day", "1953-11-11": "Armistice Day", "1953-11-26": "Thanksgiving", @@ -48,16 +48,16 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-31": "Nevada Day", - "1954-11-01": "Nevada Day (Observed)", + "1954-11-01": "Nevada Day (observed)", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", "1954-11-26": "Family Day", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -68,16 +68,16 @@ "1955-11-24": "Thanksgiving", "1955-11-25": "Family Day", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-31": "Nevada Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-11-23": "Family Day", "1956-12-25": "Christmas Day", @@ -104,10 +104,10 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", - "1959-10-30": "Nevada Day (Observed)", + "1959-10-30": "Nevada Day (observed)", "1959-10-31": "Nevada Day", "1959-11-11": "Veterans Day", "1959-11-26": "Thanksgiving", @@ -123,15 +123,15 @@ "1960-11-24": "Thanksgiving", "1960-11-25": "Family Day", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-31": "Nevada Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-11-24": "Family Day", @@ -143,7 +143,7 @@ "1962-09-03": "Labor Day", "1962-10-31": "Nevada Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-11-23": "Family Day", "1962-12-25": "Christmas Day", @@ -160,10 +160,10 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", - "1964-10-30": "Nevada Day (Observed)", + "1964-10-30": "Nevada Day (observed)", "1964-10-31": "Nevada Day", "1964-11-11": "Veterans Day", "1964-11-26": "Thanksgiving", @@ -173,16 +173,16 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-31": "Nevada Day", - "1965-11-01": "Nevada Day (Observed)", + "1965-11-01": "Nevada Day (observed)", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", "1965-11-26": "Family Day", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -193,15 +193,15 @@ "1966-11-24": "Thanksgiving", "1966-11-25": "Family Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-31": "Nevada Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-11-24": "Family Day", @@ -229,10 +229,10 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", - "1970-10-30": "Nevada Day (Observed)", + "1970-10-30": "Nevada Day (observed)", "1970-10-31": "Nevada Day", "1970-11-11": "Veterans Day", "1970-11-26": "Thanksgiving", @@ -242,16 +242,16 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-10-31": "Nevada Day", - "1971-11-01": "Nevada Day (Observed)", + "1971-11-01": "Nevada Day (observed)", "1971-11-25": "Thanksgiving", "1971-11-26": "Family Day", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -296,16 +296,16 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-10-31": "Nevada Day", - "1976-11-01": "Nevada Day (Observed)", + "1976-11-01": "Nevada Day (observed)", "1976-11-25": "Thanksgiving", "1976-11-26": "Family Day", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -316,15 +316,15 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Family Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-31": "Nevada Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Family Day", @@ -336,7 +336,7 @@ "1979-09-03": "Labor Day", "1979-10-31": "Nevada Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Family Day", "1979-12-25": "Christmas Day", @@ -353,10 +353,10 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", - "1981-10-30": "Nevada Day (Observed)", + "1981-10-30": "Nevada Day (observed)", "1981-10-31": "Nevada Day", "1981-11-11": "Veterans Day", "1981-11-26": "Thanksgiving", @@ -366,16 +366,16 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-31": "Nevada Day", - "1982-11-01": "Nevada Day (Observed)", + "1982-11-01": "Nevada Day (observed)", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Family Day", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -386,16 +386,16 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Family Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-31": "Nevada Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Family Day", "1984-12-25": "Christmas Day", @@ -424,10 +424,10 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", - "1987-10-30": "Nevada Day (Observed)", + "1987-10-30": "Nevada Day (observed)", "1987-10-31": "Nevada Day", "1987-11-11": "Veterans Day", "1987-11-26": "Thanksgiving", @@ -444,16 +444,16 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Family Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-31": "Nevada Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Family Day", @@ -466,7 +466,7 @@ "1990-09-03": "Labor Day", "1990-10-31": "Nevada Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Family Day", "1990-12-25": "Christmas Day", @@ -485,10 +485,10 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", - "1992-10-30": "Nevada Day (Observed)", + "1992-10-30": "Nevada Day (observed)", "1992-10-31": "Nevada Day", "1992-11-11": "Veterans Day", "1992-11-26": "Thanksgiving", @@ -499,16 +499,16 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-31": "Nevada Day", - "1993-11-01": "Nevada Day (Observed)", + "1993-11-01": "Nevada Day (observed)", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Family Day", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -520,16 +520,16 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Family Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-31": "Nevada Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Family Day", @@ -560,10 +560,10 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", - "1998-10-30": "Nevada Day (Observed)", + "1998-10-30": "Nevada Day (observed)", "1998-10-31": "Nevada Day", "1998-11-11": "Veterans Day", "1998-11-26": "Thanksgiving", @@ -574,16 +574,16 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-31": "Nevada Day", - "1999-11-01": "Nevada Day (Observed)", + "1999-11-01": "Nevada Day (observed)", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Family Day", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -591,7 +591,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-27": "Nevada Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Family Day", @@ -604,7 +604,7 @@ "2001-09-03": "Labor Day", "2001-10-26": "Nevada Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Family Day", "2001-12-25": "Christmas Day", @@ -635,15 +635,15 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-29": "Nevada Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Family Day", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -655,16 +655,16 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Family Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-27": "Nevada Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Family Day", @@ -677,7 +677,7 @@ "2007-09-03": "Labor Day", "2007-10-26": "Nevada Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Family Day", "2007-12-25": "Christmas Day", @@ -696,7 +696,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-30": "Nevada Day", @@ -709,15 +709,15 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-29": "Nevada Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Family Day", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -729,9 +729,9 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Family Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -739,7 +739,7 @@ "2012-09-03": "Labor Day", "2012-10-26": "Nevada Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Family Day", "2012-12-25": "Christmas Day", @@ -769,7 +769,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-30": "Nevada Day", @@ -788,16 +788,16 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Family Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-27": "Nevada Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Family Day", @@ -810,7 +810,7 @@ "2018-09-03": "Labor Day", "2018-10-26": "Nevada Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Family Day", "2018-12-25": "Christmas Day", @@ -829,7 +829,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-30": "Nevada Day", @@ -841,24 +841,24 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-29": "Nevada Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Family Day", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-28": "Nevada Day", @@ -866,9 +866,9 @@ "2022-11-24": "Thanksgiving", "2022-11-25": "Family Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -876,7 +876,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-27": "Nevada Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Family Day", @@ -910,7 +910,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-30": "Nevada Day", @@ -922,18 +922,18 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-29": "Nevada Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Family Day", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -942,7 +942,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-27": "Nevada Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Family Day", @@ -956,7 +956,7 @@ "2029-09-03": "Labor Day", "2029-10-26": "Nevada Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Family Day", "2029-12-25": "Christmas Day", @@ -988,24 +988,24 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-29": "Nevada Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Family Day", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-28": "Nevada Day", @@ -1013,9 +1013,9 @@ "2033-11-24": "Thanksgiving", "2033-11-25": "Family Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -1023,7 +1023,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-27": "Nevada Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Family Day", @@ -1037,7 +1037,7 @@ "2035-09-03": "Labor Day", "2035-10-26": "Nevada Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Family Day", "2035-12-25": "Christmas Day", @@ -1058,7 +1058,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-30": "Nevada Day", @@ -1070,24 +1070,24 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-29": "Nevada Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Family Day", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-28": "Nevada Day", @@ -1095,9 +1095,9 @@ "2039-11-24": "Thanksgiving", "2039-11-25": "Family Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1106,7 +1106,7 @@ "2040-09-03": "Labor Day", "2040-10-26": "Nevada Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Family Day", "2040-12-25": "Christmas Day", @@ -1139,7 +1139,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-30": "Nevada Day", @@ -1152,7 +1152,7 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-28": "Nevada Day", @@ -1160,9 +1160,9 @@ "2044-11-24": "Thanksgiving", "2044-11-25": "Family Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1170,7 +1170,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-27": "Nevada Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Family Day", @@ -1184,7 +1184,7 @@ "2046-09-03": "Labor Day", "2046-10-26": "Nevada Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Family Day", "2046-12-25": "Christmas Day", @@ -1205,7 +1205,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-30": "Nevada Day", @@ -1217,24 +1217,24 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-29": "Nevada Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Family Day", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-28": "Nevada Day", @@ -1242,5 +1242,5 @@ "2050-11-24": "Thanksgiving", "2050-11-25": "Family Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_NY.json b/snapshots/countries/US_NY.json index 9c97554bd..7fd9aefcd 100644 --- a/snapshots/countries/US_NY.json +++ b/snapshots/countries/US_NY.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -32,7 +32,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -43,14 +43,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -93,7 +93,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -143,7 +143,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -154,14 +154,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -204,7 +204,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -216,16 +216,16 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", - "1972-02-11": "Lincoln's Birthday (Observed)", + "1972-02-11": "Lincoln's Birthday (observed)", "1972-02-12": "Lincoln's Birthday", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -270,16 +270,16 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", - "1977-02-11": "Lincoln's Birthday (Observed)", + "1977-02-11": "Lincoln's Birthday (observed)", "1977-02-12": "Lincoln's Birthday", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -289,17 +289,17 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-12": "Lincoln's Birthday", - "1978-02-13": "Lincoln's Birthday (Observed)", + "1978-02-13": "Lincoln's Birthday (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -311,7 +311,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -328,7 +328,7 @@ "1981-02-12": "Lincoln's Birthday", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -340,16 +340,16 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", - "1983-02-11": "Lincoln's Birthday (Observed)", + "1983-02-11": "Lincoln's Birthday (observed)", "1983-02-12": "Lincoln's Birthday", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -359,18 +359,18 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-12": "Lincoln's Birthday", - "1984-02-13": "Lincoln's Birthday (Observed)", + "1984-02-13": "Lincoln's Birthday (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -399,7 +399,7 @@ "1987-02-12": "Lincoln's Birthday", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -417,18 +417,18 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-12": "Lincoln's Birthday", - "1989-02-13": "Lincoln's Birthday (Observed)", + "1989-02-13": "Lincoln's Birthday (observed)", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -441,7 +441,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -460,7 +460,7 @@ "1992-02-12": "Lincoln's Birthday", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -473,17 +473,17 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", - "1994-02-11": "Lincoln's Birthday (Observed)", + "1994-02-11": "Lincoln's Birthday (observed)", "1994-02-12": "Lincoln's Birthday", "1994-02-21": "Washington's Birthday", "1994-05-30": "Memorial Day", @@ -493,18 +493,18 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-12": "Lincoln's Birthday", - "1995-02-13": "Lincoln's Birthday (Observed)", + "1995-02-13": "Lincoln's Birthday (observed)", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -535,7 +535,7 @@ "1998-02-12": "Lincoln's Birthday", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -548,24 +548,24 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", - "2000-02-11": "Lincoln's Birthday (Observed)", + "2000-02-11": "Lincoln's Birthday (observed)", "2000-02-12": "Lincoln's Birthday", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -578,7 +578,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -610,17 +610,17 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", - "2005-02-11": "Lincoln's Birthday (Observed)", + "2005-02-11": "Lincoln's Birthday (observed)", "2005-02-12": "Lincoln's Birthday", "2005-02-15": "Susan B. Anthony Day", "2005-02-21": "Washington's Birthday", @@ -631,19 +631,19 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-12": "Lincoln's Birthday", - "2006-02-13": "Lincoln's Birthday (Observed)", + "2006-02-13": "Lincoln's Birthday (observed)", "2006-02-15": "Susan B. Anthony Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -657,7 +657,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -679,7 +679,7 @@ "2009-02-15": "Susan B. Anthony Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -692,18 +692,18 @@ "2010-02-15": "Susan B. Anthony Day; Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", - "2011-02-11": "Lincoln's Birthday (Observed)", + "2011-02-11": "Lincoln's Birthday (observed)", "2011-02-12": "Lincoln's Birthday", "2011-02-15": "Susan B. Anthony Day", "2011-02-21": "Washington's Birthday", @@ -714,12 +714,12 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-12": "Lincoln's Birthday", - "2012-02-13": "Lincoln's Birthday (Observed)", + "2012-02-13": "Lincoln's Birthday (observed)", "2012-02-15": "Susan B. Anthony Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -728,7 +728,7 @@ "2012-10-08": "Columbus Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -762,7 +762,7 @@ "2015-02-15": "Susan B. Anthony Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -782,12 +782,12 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-12": "Lincoln's Birthday", - "2017-02-13": "Lincoln's Birthday (Observed)", + "2017-02-13": "Lincoln's Birthday (observed)", "2017-02-15": "Susan B. Anthony Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", @@ -795,7 +795,7 @@ "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", "2017-11-07": "Election Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -810,7 +810,7 @@ "2018-10-08": "Columbus Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -832,7 +832,7 @@ "2020-02-15": "Susan B. Anthony Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -845,27 +845,27 @@ "2021-02-12": "Lincoln's Birthday", "2021-02-15": "Susan B. Anthony Day; Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-02": "Election Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", - "2022-02-11": "Lincoln's Birthday (Observed)", + "2022-02-11": "Lincoln's Birthday (observed)", "2022-02-12": "Lincoln's Birthday", "2022-02-15": "Susan B. Anthony Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", @@ -873,12 +873,12 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-12": "Lincoln's Birthday", - "2023-02-13": "Lincoln's Birthday (Observed)", + "2023-02-13": "Lincoln's Birthday (observed)", "2023-02-15": "Susan B. Anthony Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -887,7 +887,7 @@ "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", "2023-11-07": "Election Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -926,7 +926,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -939,21 +939,21 @@ "2027-02-12": "Lincoln's Birthday", "2027-02-15": "Susan B. Anthony Day; Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-02": "Election Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", - "2028-02-11": "Lincoln's Birthday (Observed)", + "2028-02-11": "Lincoln's Birthday (observed)", "2028-02-12": "Lincoln's Birthday", "2028-02-15": "Susan B. Anthony Day", "2028-02-21": "Washington's Birthday", @@ -963,7 +963,7 @@ "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -979,7 +979,7 @@ "2029-10-08": "Columbus Day", "2029-11-06": "Election Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -1016,27 +1016,27 @@ "2032-02-15": "Susan B. Anthony Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", - "2033-02-11": "Lincoln's Birthday (Observed)", + "2033-02-11": "Lincoln's Birthday (observed)", "2033-02-12": "Lincoln's Birthday", "2033-02-15": "Susan B. Anthony Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", @@ -1044,12 +1044,12 @@ "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-12": "Lincoln's Birthday", - "2034-02-13": "Lincoln's Birthday (Observed)", + "2034-02-13": "Lincoln's Birthday (observed)", "2034-02-15": "Susan B. Anthony Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -1058,7 +1058,7 @@ "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1074,7 +1074,7 @@ "2035-10-08": "Columbus Day", "2035-11-06": "Election Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1098,7 +1098,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1111,27 +1111,27 @@ "2038-02-12": "Lincoln's Birthday", "2038-02-15": "Susan B. Anthony Day; Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", - "2039-02-11": "Lincoln's Birthday (Observed)", + "2039-02-11": "Lincoln's Birthday (observed)", "2039-02-12": "Lincoln's Birthday", "2039-02-15": "Susan B. Anthony Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", @@ -1139,12 +1139,12 @@ "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-12": "Lincoln's Birthday", - "2040-02-13": "Lincoln's Birthday (Observed)", + "2040-02-13": "Lincoln's Birthday (observed)", "2040-02-15": "Susan B. Anthony Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1154,7 +1154,7 @@ "2040-10-08": "Columbus Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1192,7 +1192,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1206,7 +1206,7 @@ "2044-02-15": "Susan B. Anthony Day; Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", @@ -1214,12 +1214,12 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-12": "Lincoln's Birthday", - "2045-02-13": "Lincoln's Birthday (Observed)", + "2045-02-13": "Lincoln's Birthday (observed)", "2045-02-15": "Susan B. Anthony Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1228,7 +1228,7 @@ "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", "2045-11-07": "Election Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1244,7 +1244,7 @@ "2046-10-08": "Columbus Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1268,7 +1268,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1281,27 +1281,27 @@ "2049-02-12": "Lincoln's Birthday", "2049-02-15": "Susan B. Anthony Day; Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-02": "Election Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", - "2050-02-11": "Lincoln's Birthday (Observed)", + "2050-02-11": "Lincoln's Birthday (observed)", "2050-02-12": "Lincoln's Birthday", "2050-02-15": "Susan B. Anthony Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", @@ -1309,5 +1309,5 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_OH.json b/snapshots/countries/US_OH.json index 9eb163ce3..7198719fa 100644 --- a/snapshots/countries/US_OH.json +++ b/snapshots/countries/US_OH.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -32,7 +32,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -43,14 +43,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -93,7 +93,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -143,7 +143,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -154,14 +154,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -204,7 +204,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -215,14 +215,14 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -263,14 +263,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -314,7 +314,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -325,14 +325,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -377,7 +377,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -432,7 +432,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -444,14 +444,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -499,7 +499,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -511,14 +511,14 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -566,14 +566,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -622,7 +622,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -634,14 +634,14 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -652,9 +652,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -662,7 +662,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -689,7 +689,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -706,16 +706,16 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -727,7 +727,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -744,7 +744,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -755,32 +755,32 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -788,7 +788,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -819,7 +819,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -830,17 +830,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -849,7 +849,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -862,7 +862,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -891,32 +891,32 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -924,7 +924,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -937,7 +937,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -956,7 +956,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -967,32 +967,32 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1001,7 +1001,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1031,7 +1031,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1043,16 +1043,16 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1060,7 +1060,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1073,7 +1073,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1092,7 +1092,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1103,28 +1103,28 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_OK.json b/snapshots/countries/US_OK.json index 8844aa522..3eecc9742 100644 --- a/snapshots/countries/US_OK.json +++ b/snapshots/countries/US_OK.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -238,14 +238,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Day After Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -255,14 +255,14 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Day After Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Day After Thanksgiving", @@ -273,7 +273,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Day After Thanksgiving", "1979-12-25": "Christmas Day", @@ -289,7 +289,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -300,14 +300,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Day After Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -317,15 +317,15 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Day After Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Day After Thanksgiving", "1984-12-25": "Christmas Day", @@ -352,7 +352,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -369,15 +369,15 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Day After Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Day After Thanksgiving", @@ -389,7 +389,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Day After Thanksgiving", "1990-12-25": "Christmas Day", @@ -407,7 +407,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -419,14 +419,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Day After Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -437,15 +437,15 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Day After Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Day After Thanksgiving", @@ -474,7 +474,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -486,21 +486,21 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Day After Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Day After Thanksgiving", @@ -512,7 +512,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Day After Thanksgiving", "2001-12-25": "Christmas Day", @@ -541,14 +541,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Day After Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -559,15 +559,15 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Day After Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Day After Thanksgiving", @@ -579,7 +579,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Day After Thanksgiving", "2007-12-25": "Christmas Day", @@ -597,7 +597,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -609,14 +609,14 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Day After Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -627,16 +627,16 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Day After Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Day After Thanksgiving", "2012-12-25": "Christmas Day", @@ -664,7 +664,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -681,15 +681,15 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Day After Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Day After Thanksgiving", @@ -701,7 +701,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Day After Thanksgiving", "2018-12-25": "Christmas Day", @@ -719,7 +719,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -730,39 +730,39 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Day After Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-11-25": "Day After Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Day After Thanksgiving", @@ -794,7 +794,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -805,17 +805,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Day After Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -823,7 +823,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Day After Thanksgiving", @@ -836,7 +836,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Day After Thanksgiving", "2029-12-25": "Christmas Day", @@ -866,39 +866,39 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Day After Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-11-25": "Day After Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Day After Thanksgiving", @@ -911,7 +911,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Day After Thanksgiving", "2035-12-25": "Christmas Day", @@ -931,7 +931,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -942,32 +942,32 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Day After Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-11-25": "Day After Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -975,7 +975,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Day After Thanksgiving", "2040-12-25": "Christmas Day", @@ -1006,7 +1006,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1018,23 +1018,23 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-11-25": "Day After Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Day After Thanksgiving", @@ -1047,7 +1047,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Day After Thanksgiving", "2046-12-25": "Christmas Day", @@ -1067,7 +1067,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1078,28 +1078,28 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Day After Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-11-25": "Day After Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_OR.json b/snapshots/countries/US_OR.json index ba4f0854e..5fc4393a4 100644 --- a/snapshots/countries/US_OR.json +++ b/snapshots/countries/US_OR.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -639,15 +639,15 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -658,7 +658,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -674,7 +674,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -684,37 +684,37 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -753,16 +753,16 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -770,7 +770,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -782,7 +782,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -809,37 +809,37 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -851,7 +851,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -869,7 +869,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -879,30 +879,30 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -910,7 +910,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -938,7 +938,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -949,22 +949,22 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -976,7 +976,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -994,7 +994,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1004,26 +1004,26 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_PA.json b/snapshots/countries/US_PA.json index e41804ce9..3cbae6e12 100644 --- a/snapshots/countries/US_PA.json +++ b/snapshots/countries/US_PA.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-11-24": "Day After Thanksgiving", @@ -18,7 +18,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-11-23": "Day After Thanksgiving", "1951-12-25": "Christmas Day", @@ -35,7 +35,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -47,15 +47,15 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", "1954-11-26": "Day After Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -66,16 +66,16 @@ "1955-11-24": "Thanksgiving", "1955-11-25": "Day After Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-11-23": "Day After Thanksgiving", "1956-12-25": "Christmas Day", @@ -102,7 +102,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -120,15 +120,15 @@ "1960-11-24": "Thanksgiving", "1960-11-25": "Day After Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-11-24": "Day After Thanksgiving", @@ -140,7 +140,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-11-23": "Day After Thanksgiving", "1962-12-25": "Christmas Day", @@ -157,7 +157,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -169,15 +169,15 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", "1965-11-26": "Day After Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -188,15 +188,15 @@ "1966-11-24": "Thanksgiving", "1966-11-25": "Day After Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-11-24": "Day After Thanksgiving", @@ -224,7 +224,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -236,15 +236,15 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", "1971-11-26": "Day After Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -289,15 +289,15 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Day After Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Day After Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Day After Thanksgiving", @@ -328,7 +328,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Day After Thanksgiving", "1979-12-25": "Christmas Day", @@ -345,7 +345,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -357,15 +357,15 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Day After Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -376,16 +376,16 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Day After Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Day After Thanksgiving", "1984-12-25": "Christmas Day", @@ -414,7 +414,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -433,16 +433,16 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Day After Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Day After Thanksgiving", @@ -455,7 +455,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Day After Thanksgiving", "1990-12-25": "Christmas Day", @@ -474,7 +474,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -487,15 +487,15 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Day After Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -507,16 +507,16 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Day After Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Day After Thanksgiving", @@ -547,7 +547,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -560,15 +560,15 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Day After Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -576,7 +576,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Day After Thanksgiving", @@ -589,7 +589,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Day After Thanksgiving", "2001-12-25": "Christmas Day", @@ -620,15 +620,15 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Day After Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -640,16 +640,16 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Day After Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Day After Thanksgiving", @@ -662,7 +662,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Day After Thanksgiving", "2007-12-25": "Christmas Day", @@ -681,7 +681,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -694,15 +694,15 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Day After Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -714,9 +714,9 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Day After Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -724,7 +724,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Day After Thanksgiving", "2012-12-25": "Christmas Day", @@ -754,7 +754,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -773,16 +773,16 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Day After Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Day After Thanksgiving", @@ -795,7 +795,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Day After Thanksgiving", "2018-12-25": "Christmas Day", @@ -814,7 +814,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -826,24 +826,24 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Day After Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", @@ -851,9 +851,9 @@ "2022-11-24": "Thanksgiving", "2022-11-25": "Day After Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -861,7 +861,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Day After Thanksgiving", @@ -895,7 +895,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -907,18 +907,18 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Day After Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -927,7 +927,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Day After Thanksgiving", @@ -941,7 +941,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Day After Thanksgiving", "2029-12-25": "Christmas Day", @@ -973,24 +973,24 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Day After Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", @@ -998,9 +998,9 @@ "2033-11-24": "Thanksgiving", "2033-11-25": "Day After Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -1008,7 +1008,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Day After Thanksgiving", @@ -1022,7 +1022,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Day After Thanksgiving", "2035-12-25": "Christmas Day", @@ -1043,7 +1043,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1055,24 +1055,24 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Day After Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", @@ -1080,9 +1080,9 @@ "2039-11-24": "Thanksgiving", "2039-11-25": "Day After Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1091,7 +1091,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Day After Thanksgiving", "2040-12-25": "Christmas Day", @@ -1124,7 +1124,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1137,7 +1137,7 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", @@ -1145,9 +1145,9 @@ "2044-11-24": "Thanksgiving", "2044-11-25": "Day After Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1155,7 +1155,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Day After Thanksgiving", @@ -1169,7 +1169,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Day After Thanksgiving", "2046-12-25": "Christmas Day", @@ -1190,7 +1190,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1202,24 +1202,24 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Day After Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", @@ -1227,5 +1227,5 @@ "2050-11-24": "Thanksgiving", "2050-11-25": "Day After Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_PR.json b/snapshots/countries/US_PR.json index 8e10673e9..96a896518 100644 --- a/snapshots/countries/US_PR.json +++ b/snapshots/countries/US_PR.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-06": "Epiphany", "1950-02-20": "Presidents' Day", "1950-03-22": "Emancipation Day", @@ -9,10 +9,10 @@ "1950-07-04": "Independence Day", "1950-07-25": "Constitution Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-19": "Discovery Day", - "1950-11-20": "Discovery Day (Observed)", + "1950-11-20": "Discovery Day (observed)", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", @@ -25,7 +25,7 @@ "1951-07-25": "Constitution Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-19": "Discovery Day", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", @@ -46,10 +46,10 @@ "1953-01-06": "Epiphany", "1953-02-16": "Presidents' Day", "1953-03-22": "Emancipation Day", - "1953-03-23": "Emancipation Day (Observed)", + "1953-03-23": "Emancipation Day (observed)", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-07-25": "Constitution Day", "1953-09-07": "Labor Day", @@ -64,16 +64,16 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-07-25": "Constitution Day", - "1954-07-26": "Constitution Day (Observed)", + "1954-07-26": "Constitution Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-19": "Discovery Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-01-06": "Epiphany", "1955-02-21": "Presidents' Day", @@ -87,9 +87,9 @@ "1955-11-19": "Discovery Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-06": "Epiphany", "1956-02-20": "Presidents' Day", "1956-03-22": "Emancipation Day", @@ -99,7 +99,7 @@ "1956-07-25": "Constitution Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-19": "Discovery Day", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", @@ -133,10 +133,10 @@ "1959-01-06": "Epiphany", "1959-02-16": "Presidents' Day", "1959-03-22": "Emancipation Day", - "1959-03-23": "Emancipation Day (Observed)", + "1959-03-23": "Emancipation Day (observed)", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-07-25": "Constitution Day", "1959-09-07": "Labor Day", @@ -157,9 +157,9 @@ "1960-11-19": "Discovery Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-06": "Epiphany", "1961-02-20": "Presidents' Day", "1961-03-22": "Emancipation Day", @@ -168,10 +168,10 @@ "1961-07-04": "Independence Day", "1961-07-25": "Constitution Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-19": "Discovery Day", - "1961-11-20": "Discovery Day (Observed)", + "1961-11-20": "Discovery Day (observed)", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", @@ -184,7 +184,7 @@ "1962-07-25": "Constitution Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-19": "Discovery Day", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", @@ -205,10 +205,10 @@ "1964-01-06": "Epiphany", "1964-02-17": "Presidents' Day", "1964-03-22": "Emancipation Day", - "1964-03-23": "Emancipation Day (Observed)", + "1964-03-23": "Emancipation Day (observed)", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-07-25": "Constitution Day", "1964-09-07": "Labor Day", @@ -223,16 +223,16 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-07-25": "Constitution Day", - "1965-07-26": "Constitution Day (Observed)", + "1965-07-26": "Constitution Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-19": "Discovery Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-01-06": "Epiphany", "1966-02-21": "Presidents' Day", @@ -246,9 +246,9 @@ "1966-11-19": "Discovery Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-06": "Epiphany", "1967-02-20": "Presidents' Day", "1967-03-22": "Emancipation Day", @@ -257,10 +257,10 @@ "1967-07-04": "Independence Day", "1967-07-25": "Constitution Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-19": "Discovery Day", - "1967-11-20": "Discovery Day (Observed)", + "1967-11-20": "Discovery Day (observed)", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", @@ -293,10 +293,10 @@ "1970-01-06": "Epiphany", "1970-02-16": "Presidents' Day", "1970-03-22": "Emancipation Day", - "1970-03-23": "Emancipation Day (Observed)", + "1970-03-23": "Emancipation Day (observed)", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-07-25": "Constitution Day", "1970-09-07": "Labor Day", @@ -311,16 +311,16 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-07-25": "Constitution Day", - "1971-07-26": "Constitution Day (Observed)", + "1971-07-26": "Constitution Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-19": "Discovery Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-01-06": "Epiphany", "1972-02-21": "Presidents' Day", @@ -332,7 +332,7 @@ "1972-09-04": "Labor Day", "1972-10-23": "Veterans Day", "1972-11-19": "Discovery Day", - "1972-11-20": "Discovery Day (Observed)", + "1972-11-20": "Discovery Day (observed)", "1972-11-23": "Thanksgiving", "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", @@ -381,16 +381,16 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-07-25": "Constitution Day", - "1976-07-26": "Constitution Day (Observed)", + "1976-07-26": "Constitution Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-19": "Discovery Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-01-06": "Epiphany", "1977-02-21": "Presidents' Day", @@ -404,9 +404,9 @@ "1977-11-19": "Discovery Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-06": "Epiphany", "1978-02-20": "Presidents' Day", "1978-03-22": "Emancipation Day", @@ -415,10 +415,10 @@ "1978-07-04": "Independence Day", "1978-07-25": "Constitution Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-19": "Discovery Day", - "1978-11-20": "Discovery Day (Observed)", + "1978-11-20": "Discovery Day (observed)", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", @@ -431,7 +431,7 @@ "1979-07-25": "Constitution Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-19": "Discovery Day", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", @@ -452,10 +452,10 @@ "1981-01-06": "Epiphany", "1981-02-16": "Presidents' Day", "1981-03-22": "Emancipation Day", - "1981-03-23": "Emancipation Day (Observed)", + "1981-03-23": "Emancipation Day (observed)", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-07-25": "Constitution Day", "1981-09-07": "Labor Day", @@ -470,16 +470,16 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-07-25": "Constitution Day", - "1982-07-26": "Constitution Day (Observed)", + "1982-07-26": "Constitution Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-19": "Discovery Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-01-06": "Epiphany", "1983-02-21": "Presidents' Day", @@ -493,9 +493,9 @@ "1983-11-19": "Discovery Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-06": "Epiphany", "1984-02-20": "Presidents' Day", "1984-03-22": "Emancipation Day", @@ -505,7 +505,7 @@ "1984-07-25": "Constitution Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-19": "Discovery Day", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", @@ -541,10 +541,10 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Presidents' Day", "1987-03-22": "Emancipation Day", - "1987-03-23": "Emancipation Day (Observed)", + "1987-03-23": "Emancipation Day (observed)", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-07-25": "Constitution Day", "1987-09-07": "Labor Day", @@ -566,9 +566,9 @@ "1988-11-19": "Discovery Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-06": "Epiphany", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Presidents' Day", @@ -578,10 +578,10 @@ "1989-07-04": "Independence Day", "1989-07-25": "Constitution Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-19": "Discovery Day", - "1989-11-20": "Discovery Day (Observed)", + "1989-11-20": "Discovery Day (observed)", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", @@ -595,7 +595,7 @@ "1990-07-25": "Constitution Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-19": "Discovery Day", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", @@ -618,10 +618,10 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Presidents' Day", "1992-03-22": "Emancipation Day", - "1992-03-23": "Emancipation Day (Observed)", + "1992-03-23": "Emancipation Day (observed)", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-07-25": "Constitution Day", "1992-09-07": "Labor Day", @@ -637,16 +637,16 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-07-25": "Constitution Day", - "1993-07-26": "Constitution Day (Observed)", + "1993-07-26": "Constitution Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-19": "Discovery Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-06": "Epiphany", "1994-01-17": "Martin Luther King Jr. Day", @@ -661,9 +661,9 @@ "1994-11-19": "Discovery Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-06": "Epiphany", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Presidents' Day", @@ -673,10 +673,10 @@ "1995-07-04": "Independence Day", "1995-07-25": "Constitution Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-19": "Discovery Day", - "1995-11-20": "Discovery Day (Observed)", + "1995-11-20": "Discovery Day (observed)", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", @@ -712,10 +712,10 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Presidents' Day", "1998-03-22": "Emancipation Day", - "1998-03-23": "Emancipation Day (Observed)", + "1998-03-23": "Emancipation Day (observed)", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-07-25": "Constitution Day", "1998-09-07": "Labor Day", @@ -731,16 +731,16 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-07-25": "Constitution Day", - "1999-07-26": "Constitution Day (Observed)", + "1999-07-26": "Constitution Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-19": "Discovery Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-06": "Epiphany", "2000-01-17": "Martin Luther King Jr. Day", @@ -751,10 +751,10 @@ "2000-07-04": "Independence Day", "2000-07-25": "Constitution Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-19": "Discovery Day", - "2000-11-20": "Discovery Day (Observed)", + "2000-11-20": "Discovery Day (observed)", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", @@ -768,7 +768,7 @@ "2001-07-25": "Constitution Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-19": "Discovery Day", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", @@ -808,16 +808,16 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-07-25": "Constitution Day", - "2004-07-26": "Constitution Day (Observed)", + "2004-07-26": "Constitution Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-19": "Discovery Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-06": "Epiphany", "2005-01-17": "Martin Luther King Jr. Day", @@ -832,9 +832,9 @@ "2005-11-19": "Discovery Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-06": "Epiphany", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Presidents' Day", @@ -844,10 +844,10 @@ "2006-07-04": "Independence Day", "2006-07-25": "Constitution Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-19": "Discovery Day", - "2006-11-20": "Discovery Day (Observed)", + "2006-11-20": "Discovery Day (observed)", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", @@ -861,7 +861,7 @@ "2007-07-25": "Constitution Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-19": "Discovery Day", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", @@ -884,10 +884,10 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Presidents' Day", "2009-03-22": "Emancipation Day", - "2009-03-23": "Emancipation Day (Observed)", + "2009-03-23": "Emancipation Day (observed)", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-07-25": "Constitution Day", "2009-09-07": "Labor Day", @@ -903,16 +903,16 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-07-25": "Constitution Day", - "2010-07-26": "Constitution Day (Observed)", + "2010-07-26": "Constitution Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-19": "Discovery Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-06": "Epiphany", "2011-01-17": "Martin Luther King Jr. Day", @@ -927,9 +927,9 @@ "2011-11-19": "Discovery Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-06": "Epiphany", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Presidents' Day", @@ -940,7 +940,7 @@ "2012-07-25": "Constitution Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-19": "Discovery Day", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", @@ -977,10 +977,10 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Presidents' Day", "2015-03-22": "Emancipation Day", - "2015-03-23": "Emancipation Day (Observed)", + "2015-03-23": "Emancipation Day (observed)", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-07-25": "Constitution Day", "2015-09-07": "Labor Day", @@ -1002,9 +1002,9 @@ "2016-11-19": "Discovery Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-06": "Epiphany", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Presidents' Day", @@ -1014,10 +1014,10 @@ "2017-07-04": "Independence Day", "2017-07-25": "Constitution Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-19": "Discovery Day", - "2017-11-20": "Discovery Day (Observed)", + "2017-11-20": "Discovery Day (observed)", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", @@ -1031,7 +1031,7 @@ "2018-07-25": "Constitution Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-19": "Discovery Day", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", @@ -1054,10 +1054,10 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Presidents' Day", "2020-03-22": "Emancipation Day", - "2020-03-23": "Emancipation Day (Observed)", + "2020-03-23": "Emancipation Day (observed)", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-07-25": "Constitution Day", "2020-09-07": "Labor Day", @@ -1072,19 +1072,19 @@ "2021-03-22": "Emancipation Day", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-07-25": "Constitution Day", - "2021-07-26": "Constitution Day (Observed)", + "2021-07-26": "Constitution Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-19": "Discovery Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-06": "Epiphany", "2022-01-17": "Martin Luther King Jr. Day", @@ -1093,7 +1093,7 @@ "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-07-25": "Constitution Day", "2022-09-05": "Labor Day", @@ -1101,9 +1101,9 @@ "2022-11-19": "Discovery Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-06": "Epiphany", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Presidents' Day", @@ -1114,10 +1114,10 @@ "2023-07-04": "Independence Day", "2023-07-25": "Constitution Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-19": "Discovery Day", - "2023-11-20": "Discovery Day (Observed)", + "2023-11-20": "Discovery Day (observed)", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", @@ -1155,11 +1155,11 @@ "2026-01-19": "Martin Luther King Jr. Day", "2026-02-16": "Presidents' Day", "2026-03-22": "Emancipation Day", - "2026-03-23": "Emancipation Day (Observed)", + "2026-03-23": "Emancipation Day (observed)", "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-07-25": "Constitution Day", "2026-09-07": "Labor Day", @@ -1174,19 +1174,19 @@ "2027-03-22": "Emancipation Day", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-07-25": "Constitution Day", - "2027-07-26": "Constitution Day (Observed)", + "2027-07-26": "Constitution Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-19": "Discovery Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-06": "Epiphany", "2028-01-17": "Martin Luther King Jr. Day", @@ -1198,10 +1198,10 @@ "2028-07-04": "Independence Day", "2028-07-25": "Constitution Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-19": "Discovery Day", - "2028-11-20": "Discovery Day (Observed)", + "2028-11-20": "Discovery Day (observed)", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", @@ -1216,7 +1216,7 @@ "2029-07-25": "Constitution Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-19": "Discovery Day", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", @@ -1257,19 +1257,19 @@ "2032-03-22": "Emancipation Day", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-07-25": "Constitution Day", - "2032-07-26": "Constitution Day (Observed)", + "2032-07-26": "Constitution Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-19": "Discovery Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-06": "Epiphany", "2033-01-17": "Martin Luther King Jr. Day", @@ -1278,7 +1278,7 @@ "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-07-25": "Constitution Day", "2033-09-05": "Labor Day", @@ -1286,9 +1286,9 @@ "2033-11-19": "Discovery Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-06": "Epiphany", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Presidents' Day", @@ -1299,10 +1299,10 @@ "2034-07-04": "Independence Day", "2034-07-25": "Constitution Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-19": "Discovery Day", - "2034-11-20": "Discovery Day (Observed)", + "2034-11-20": "Discovery Day (observed)", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", @@ -1317,7 +1317,7 @@ "2035-07-25": "Constitution Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-19": "Discovery Day", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", @@ -1341,11 +1341,11 @@ "2037-01-19": "Martin Luther King Jr. Day", "2037-02-16": "Presidents' Day", "2037-03-22": "Emancipation Day", - "2037-03-23": "Emancipation Day (Observed)", + "2037-03-23": "Emancipation Day (observed)", "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-07-25": "Constitution Day", "2037-09-07": "Labor Day", @@ -1360,19 +1360,19 @@ "2038-03-22": "Emancipation Day", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-07-25": "Constitution Day", - "2038-07-26": "Constitution Day (Observed)", + "2038-07-26": "Constitution Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-19": "Discovery Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-06": "Epiphany", "2039-01-17": "Martin Luther King Jr. Day", @@ -1381,7 +1381,7 @@ "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-07-25": "Constitution Day", "2039-09-05": "Labor Day", @@ -1389,9 +1389,9 @@ "2039-11-19": "Discovery Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-06": "Epiphany", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Presidents' Day", @@ -1403,7 +1403,7 @@ "2040-07-25": "Constitution Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-19": "Discovery Day", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", @@ -1442,11 +1442,11 @@ "2043-01-19": "Martin Luther King Jr. Day", "2043-02-16": "Presidents' Day", "2043-03-22": "Emancipation Day", - "2043-03-23": "Emancipation Day (Observed)", + "2043-03-23": "Emancipation Day (observed)", "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-07-25": "Constitution Day", "2043-09-07": "Labor Day", @@ -1462,7 +1462,7 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-07-25": "Constitution Day", "2044-09-05": "Labor Day", @@ -1470,9 +1470,9 @@ "2044-11-19": "Discovery Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-06": "Epiphany", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Presidents' Day", @@ -1483,10 +1483,10 @@ "2045-07-04": "Independence Day", "2045-07-25": "Constitution Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-19": "Discovery Day", - "2045-11-20": "Discovery Day (Observed)", + "2045-11-20": "Discovery Day (observed)", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", @@ -1501,7 +1501,7 @@ "2046-07-25": "Constitution Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-19": "Discovery Day", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", @@ -1525,11 +1525,11 @@ "2048-01-20": "Martin Luther King Jr. Day", "2048-02-17": "Presidents' Day", "2048-03-22": "Emancipation Day", - "2048-03-23": "Emancipation Day (Observed)", + "2048-03-23": "Emancipation Day (observed)", "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-07-25": "Constitution Day", "2048-09-07": "Labor Day", @@ -1544,19 +1544,19 @@ "2049-03-22": "Emancipation Day", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-07-25": "Constitution Day", - "2049-07-26": "Constitution Day (Observed)", + "2049-07-26": "Constitution Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-19": "Discovery Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-06": "Epiphany", "2050-01-17": "Martin Luther King Jr. Day", @@ -1565,7 +1565,7 @@ "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-07-25": "Constitution Day", "2050-09-05": "Labor Day", @@ -1573,5 +1573,5 @@ "2050-11-19": "Discovery Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_RI.json b/snapshots/countries/US_RI.json index 316a34b2d..31d2a6cc6 100644 --- a/snapshots/countries/US_RI.json +++ b/snapshots/countries/US_RI.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-08-14": "Victory Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-08-13": "Victory Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -32,7 +32,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-08-10": "Victory Day", "1953-09-07": "Labor Day", @@ -43,14 +43,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-08-09": "Victory Day", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-08-13": "Victory Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -93,7 +93,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-08-10": "Victory Day", "1959-09-07": "Labor Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-08-14": "Victory Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-08-13": "Victory Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -143,7 +143,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-08-10": "Victory Day", "1964-09-07": "Labor Day", @@ -154,14 +154,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-08-09": "Victory Day", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-08-14": "Victory Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -204,7 +204,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-08-10": "Victory Day", "1970-09-07": "Labor Day", @@ -215,15 +215,15 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-08-09": "Victory Day", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -268,15 +268,15 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-08-09": "Victory Day", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -287,16 +287,16 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-08-14": "Victory Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -308,7 +308,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -324,7 +324,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-08-10": "Victory Day", "1981-09-07": "Labor Day", @@ -336,15 +336,15 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-08-09": "Victory Day", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -355,9 +355,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", @@ -365,7 +365,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -393,7 +393,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-08-10": "Victory Day", "1987-09-07": "Labor Day", @@ -412,9 +412,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", @@ -422,7 +422,7 @@ "1989-08-14": "Victory Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -435,7 +435,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -453,7 +453,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-08-10": "Victory Day", "1992-09-07": "Labor Day", @@ -466,15 +466,15 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-08-09": "Victory Day", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -486,9 +486,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", @@ -496,7 +496,7 @@ "1995-08-14": "Victory Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -526,7 +526,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-08-10": "Victory Day", "1998-09-07": "Labor Day", @@ -539,15 +539,15 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-08-09": "Victory Day", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -556,7 +556,7 @@ "2000-08-14": "Victory Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -569,7 +569,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -599,15 +599,15 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-08-09": "Victory Day", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -619,9 +619,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", @@ -629,7 +629,7 @@ "2006-08-14": "Victory Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -642,7 +642,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -660,7 +660,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-08-10": "Victory Day", "2009-09-07": "Labor Day", @@ -673,15 +673,15 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-08-09": "Victory Day", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -693,9 +693,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -704,7 +704,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -733,7 +733,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-08-10": "Victory Day", "2015-09-07": "Labor Day", @@ -752,9 +752,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", @@ -762,7 +762,7 @@ "2017-08-14": "Victory Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -775,7 +775,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -793,7 +793,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-08-10": "Victory Day", "2020-09-07": "Labor Day", @@ -805,24 +805,24 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-08-09": "Victory Day", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-08-08": "Victory Day", "2022-09-05": "Labor Day", @@ -830,9 +830,9 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -841,7 +841,7 @@ "2023-08-14": "Victory Day", "2023-09-04": "Labor Day", "2023-10-09": "Indigenous Peoples' Day / Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -874,7 +874,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-08-10": "Victory Day", "2026-09-07": "Labor Day", @@ -886,18 +886,18 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-08-09": "Victory Day", "2027-09-06": "Labor Day", "2027-10-11": "Indigenous Peoples' Day / Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -907,7 +907,7 @@ "2028-08-14": "Victory Day", "2028-09-04": "Labor Day", "2028-10-09": "Indigenous Peoples' Day / Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -921,7 +921,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Indigenous Peoples' Day / Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -952,24 +952,24 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-08-09": "Victory Day", "2032-09-06": "Labor Day", "2032-10-11": "Indigenous Peoples' Day / Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-08-08": "Victory Day", "2033-09-05": "Labor Day", @@ -977,9 +977,9 @@ "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -988,7 +988,7 @@ "2034-08-14": "Victory Day", "2034-09-04": "Labor Day", "2034-10-09": "Indigenous Peoples' Day / Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1002,7 +1002,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Indigenous Peoples' Day / Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1022,7 +1022,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-08-10": "Victory Day", "2037-09-07": "Labor Day", @@ -1034,24 +1034,24 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-08-09": "Victory Day", "2038-09-06": "Labor Day", "2038-10-11": "Indigenous Peoples' Day / Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-08-08": "Victory Day", "2039-09-05": "Labor Day", @@ -1059,9 +1059,9 @@ "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1071,7 +1071,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Indigenous Peoples' Day / Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1103,7 +1103,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-08-10": "Victory Day", "2043-09-07": "Labor Day", @@ -1116,7 +1116,7 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-08-08": "Victory Day", "2044-09-05": "Labor Day", @@ -1124,9 +1124,9 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1135,7 +1135,7 @@ "2045-08-14": "Victory Day", "2045-09-04": "Labor Day", "2045-10-09": "Indigenous Peoples' Day / Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1149,7 +1149,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Indigenous Peoples' Day / Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1169,7 +1169,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-08-10": "Victory Day", "2048-09-07": "Labor Day", @@ -1181,24 +1181,24 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-08-09": "Victory Day", "2049-09-06": "Labor Day", "2049-10-11": "Indigenous Peoples' Day / Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-08-08": "Victory Day", "2050-09-05": "Labor Day", @@ -1206,5 +1206,5 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_SC.json b/snapshots/countries/US_SC.json index 89813b465..8952edf38 100644 --- a/snapshots/countries/US_SC.json +++ b/snapshots/countries/US_SC.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-24": "Confederate Memorial Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -33,7 +33,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-27": "Confederate Memorial Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -44,13 +44,13 @@ "1954-04-26": "Confederate Memorial Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-25": "Confederate Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-04-23": "Confederate Memorial Day", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -94,7 +94,7 @@ "1959-02-22": "Washington's Birthday", "1959-04-27": "Confederate Memorial Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-04-24": "Confederate Memorial Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -144,7 +144,7 @@ "1964-02-22": "Washington's Birthday", "1964-04-27": "Confederate Memorial Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -155,13 +155,13 @@ "1965-04-26": "Confederate Memorial Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-25": "Confederate Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-04-24": "Confederate Memorial Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -205,7 +205,7 @@ "1970-02-22": "Washington's Birthday", "1970-04-27": "Confederate Memorial Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -216,13 +216,13 @@ "1971-04-26": "Confederate Memorial Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-04-24": "Confederate Memorial Day", @@ -264,13 +264,13 @@ "1976-04-26": "Confederate Memorial Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-04-25": "Confederate Memorial Day", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-04-24": "Confederate Memorial Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -315,7 +315,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-27": "Confederate Memorial Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -326,13 +326,13 @@ "1982-04-26": "Confederate Memorial Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-04-25": "Confederate Memorial Day", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-23": "Confederate Memorial Day", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -378,7 +378,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-27": "Confederate Memorial Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-04-24": "Confederate Memorial Day", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -433,7 +433,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-27": "Confederate Memorial Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -445,13 +445,13 @@ "1993-04-26": "Confederate Memorial Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-04-24": "Confederate Memorial Day", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -500,7 +500,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-27": "Confederate Memorial Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -512,13 +512,13 @@ "1999-04-26": "Confederate Memorial Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -567,13 +567,13 @@ "2004-04-26": "Confederate Memorial Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-24": "Confederate Memorial Day", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -623,7 +623,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-27": "Confederate Memorial Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -635,13 +635,13 @@ "2010-04-26": "Confederate Memorial Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -652,9 +652,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-23": "Confederate Memorial Day", @@ -662,7 +662,7 @@ "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -690,7 +690,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-27": "Confederate Memorial Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -706,16 +706,16 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-04-24": "Confederate Memorial Day", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -727,7 +727,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -745,7 +745,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-27": "Confederate Memorial Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -756,31 +756,31 @@ "2021-02-15": "Washington's Birthday", "2021-04-26": "Confederate Memorial Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-04-25": "Confederate Memorial Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-24": "Confederate Memorial Day", @@ -788,7 +788,7 @@ "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -820,7 +820,7 @@ "2026-04-27": "Confederate Memorial Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -831,16 +831,16 @@ "2027-02-15": "Washington's Birthday", "2027-04-26": "Confederate Memorial Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -849,7 +849,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -862,7 +862,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -892,31 +892,31 @@ "2032-02-16": "Washington's Birthday", "2032-04-26": "Confederate Memorial Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-04-25": "Confederate Memorial Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-24": "Confederate Memorial Day", @@ -924,7 +924,7 @@ "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -937,7 +937,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -957,7 +957,7 @@ "2037-04-27": "Confederate Memorial Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -968,31 +968,31 @@ "2038-02-15": "Washington's Birthday", "2038-04-26": "Confederate Memorial Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-04-25": "Confederate Memorial Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-04-23": "Confederate Memorial Day", @@ -1001,7 +1001,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1032,7 +1032,7 @@ "2043-04-27": "Confederate Memorial Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1044,15 +1044,15 @@ "2044-04-25": "Confederate Memorial Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-04-24": "Confederate Memorial Day", @@ -1060,7 +1060,7 @@ "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1073,7 +1073,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1093,7 +1093,7 @@ "2048-04-27": "Confederate Memorial Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1104,27 +1104,27 @@ "2049-02-15": "Washington's Birthday", "2049-04-26": "Confederate Memorial Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-04-25": "Confederate Memorial Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_SD.json b/snapshots/countries/US_SD.json index ac7731364..cb08e22c0 100644 --- a/snapshots/countries/US_SD.json +++ b/snapshots/countries/US_SD.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -32,7 +32,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -43,14 +43,14 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -93,7 +93,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -143,7 +143,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -154,14 +154,14 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -204,7 +204,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -215,14 +215,14 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -263,14 +263,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -314,7 +314,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -325,14 +325,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -377,7 +377,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Native Americans' Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -432,7 +432,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Native Americans' Day", @@ -444,14 +444,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Native Americans' Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Native Americans' Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -499,7 +499,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Native Americans' Day", @@ -511,14 +511,14 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Native Americans' Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Native Americans' Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Native Americans' Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -566,14 +566,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Native Americans' Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Native Americans' Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Native Americans' Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -622,7 +622,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Native Americans' Day", @@ -634,14 +634,14 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Native Americans' Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -652,9 +652,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -662,7 +662,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Native Americans' Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -689,7 +689,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Native Americans' Day", @@ -706,16 +706,16 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Native Americans' Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -727,7 +727,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Native Americans' Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -744,7 +744,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Native Americans' Day", @@ -755,32 +755,32 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Native Americans' Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Native Americans' Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -788,7 +788,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Native Americans' Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -819,7 +819,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Native Americans' Day", @@ -830,17 +830,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Native Americans' Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -849,7 +849,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Native Americans' Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -862,7 +862,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Native Americans' Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -891,32 +891,32 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Native Americans' Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Native Americans' Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -924,7 +924,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Native Americans' Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -937,7 +937,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Native Americans' Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -956,7 +956,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Native Americans' Day", @@ -967,32 +967,32 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Native Americans' Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Native Americans' Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1001,7 +1001,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Native Americans' Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1031,7 +1031,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Native Americans' Day", @@ -1043,16 +1043,16 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Native Americans' Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1060,7 +1060,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Native Americans' Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1073,7 +1073,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Native Americans' Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1092,7 +1092,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Native Americans' Day", @@ -1103,28 +1103,28 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Native Americans' Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Native Americans' Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_TN.json b/snapshots/countries/US_TN.json index f924212d6..7fcf2e22e 100644 --- a/snapshots/countries/US_TN.json +++ b/snapshots/countries/US_TN.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -33,7 +33,7 @@ "1953-02-22": "Washington's Birthday", "1953-04-03": "Good Friday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -44,13 +44,13 @@ "1954-04-16": "Good Friday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", @@ -60,16 +60,16 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -94,7 +94,7 @@ "1959-02-22": "Washington's Birthday", "1959-03-27": "Good Friday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -109,15 +109,15 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -128,7 +128,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -144,7 +144,7 @@ "1964-02-22": "Washington's Birthday", "1964-03-27": "Good Friday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -155,13 +155,13 @@ "1965-04-16": "Good Friday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", @@ -171,15 +171,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -205,7 +205,7 @@ "1970-02-22": "Washington's Birthday", "1970-03-27": "Good Friday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -216,13 +216,13 @@ "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-31": "Good Friday", @@ -264,13 +264,13 @@ "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-04-08": "Good Friday", @@ -280,15 +280,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -299,7 +299,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -315,7 +315,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -326,13 +326,13 @@ "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-04-01": "Good Friday", @@ -342,16 +342,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -378,7 +378,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -394,16 +394,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-24": "Good Friday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -415,7 +415,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -433,7 +433,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -445,13 +445,13 @@ "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -462,16 +462,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-04-14": "Good Friday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -500,7 +500,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -512,13 +512,13 @@ "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -526,7 +526,7 @@ "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -538,7 +538,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -567,13 +567,13 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -584,16 +584,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-14": "Good Friday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -623,7 +623,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -635,13 +635,13 @@ "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -652,9 +652,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-06": "Good Friday", @@ -662,7 +662,7 @@ "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -690,7 +690,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -706,16 +706,16 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-04-14": "Good Friday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -727,7 +727,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -745,7 +745,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -756,31 +756,31 @@ "2021-02-15": "Washington's Birthday", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-07": "Good Friday", @@ -788,7 +788,7 @@ "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -820,7 +820,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -831,16 +831,16 @@ "2027-02-15": "Washington's Birthday", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -849,7 +849,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -862,7 +862,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -892,31 +892,31 @@ "2032-02-16": "Washington's Birthday", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-07": "Good Friday", @@ -924,7 +924,7 @@ "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -937,7 +937,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -957,7 +957,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -968,31 +968,31 @@ "2038-02-15": "Washington's Birthday", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-30": "Good Friday", @@ -1001,7 +1001,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1032,7 +1032,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1044,15 +1044,15 @@ "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-04-07": "Good Friday", @@ -1060,7 +1060,7 @@ "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1073,7 +1073,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1093,7 +1093,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1104,27 +1104,27 @@ "2049-02-15": "Washington's Birthday", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_TX.json b/snapshots/countries/US_TX.json index 634a80a6e..5c2a70d6c 100644 --- a/snapshots/countries/US_TX.json +++ b/snapshots/countries/US_TX.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-19": "Confederate Memorial Day", "1950-02-22": "Washington's Birthday", "1950-03-02": "Texas Independence Day", @@ -9,7 +9,7 @@ "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -23,7 +23,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -45,7 +45,7 @@ "1953-04-03": "Good Friday", "1953-04-21": "San Jacinto Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -59,13 +59,13 @@ "1954-04-21": "San Jacinto Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-01-19": "Confederate Memorial Day", "1955-02-22": "Washington's Birthday", @@ -78,9 +78,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-19": "Confederate Memorial Day", "1956-02-22": "Washington's Birthday", "1956-03-02": "Texas Independence Day", @@ -90,7 +90,7 @@ "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -124,7 +124,7 @@ "1959-03-27": "Good Friday", "1959-04-21": "San Jacinto Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -142,9 +142,9 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-19": "Confederate Memorial Day", "1961-02-22": "Washington's Birthday", "1961-03-02": "Texas Independence Day", @@ -153,7 +153,7 @@ "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -167,7 +167,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -189,7 +189,7 @@ "1964-03-27": "Good Friday", "1964-04-21": "San Jacinto Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -203,13 +203,13 @@ "1965-04-21": "San Jacinto Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-01-19": "Confederate Memorial Day", "1966-02-22": "Washington's Birthday", @@ -222,9 +222,9 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-19": "Confederate Memorial Day", "1967-02-22": "Washington's Birthday", "1967-03-02": "Texas Independence Day", @@ -233,7 +233,7 @@ "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -268,7 +268,7 @@ "1970-03-27": "Good Friday", "1970-04-21": "San Jacinto Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -282,13 +282,13 @@ "1971-04-21": "San Jacinto Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-01-19": "Confederate Memorial Day", "1972-02-21": "Washington's Birthday", @@ -349,15 +349,15 @@ "1976-04-21": "San Jacinto Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-08-27": "Lyndon Baines Johnson Day", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Friday After Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-01-19": "Confederate Memorial Day", "1977-02-21": "Washington's Birthday", @@ -372,9 +372,9 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Friday After Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-19": "Confederate Memorial Day", "1978-02-20": "Washington's Birthday", "1978-03-02": "Texas Independence Day", @@ -384,7 +384,7 @@ "1978-07-04": "Independence Day", "1978-08-27": "Lyndon Baines Johnson Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Friday After Thanksgiving", @@ -400,7 +400,7 @@ "1979-08-27": "Lyndon Baines Johnson Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Friday After Thanksgiving", "1979-12-25": "Christmas Day", @@ -427,7 +427,7 @@ "1981-04-21": "San Jacinto Day", "1981-05-25": "Memorial Day", "1981-06-19": "Emancipation Day In Texas", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-08-27": "Lyndon Baines Johnson Day", "1981-09-07": "Labor Day", @@ -446,17 +446,17 @@ "1982-05-31": "Memorial Day", "1982-06-19": "Emancipation Day In Texas", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-08-27": "Lyndon Baines Johnson Day", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Friday After Thanksgiving", - "1982-12-23": "Christmas Eve (Observed)", - "1982-12-24": "Christmas Day (Observed); Christmas Eve", + "1982-12-23": "Christmas Eve (observed)", + "1982-12-24": "Christmas Day (observed); Christmas Eve", "1982-12-25": "Christmas Day", "1982-12-26": "Day After Christmas", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-01-19": "Confederate Memorial Day", "1983-02-21": "Washington's Birthday", @@ -471,12 +471,12 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-11-25": "Friday After Thanksgiving", - "1983-12-23": "Christmas Eve (Observed)", + "1983-12-23": "Christmas Eve (observed)", "1983-12-24": "Christmas Eve", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed); Day After Christmas", + "1983-12-26": "Christmas Day (observed); Day After Christmas", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-19": "Confederate Memorial Day", "1984-02-20": "Washington's Birthday", "1984-03-02": "Texas Independence Day", @@ -488,7 +488,7 @@ "1984-08-27": "Lyndon Baines Johnson Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Friday After Thanksgiving", "1984-12-24": "Christmas Eve", @@ -537,7 +537,7 @@ "1987-04-21": "San Jacinto Day", "1987-05-25": "Memorial Day", "1987-06-19": "Emancipation Day In Texas", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-08-27": "Lyndon Baines Johnson Day", "1987-09-07": "Labor Day", @@ -562,12 +562,12 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-11-25": "Friday After Thanksgiving", - "1988-12-23": "Christmas Eve (Observed)", + "1988-12-23": "Christmas Eve (observed)", "1988-12-24": "Christmas Eve", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed); Day After Christmas", + "1988-12-26": "Christmas Day (observed); Day After Christmas", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-01-19": "Confederate Memorial Day", "1989-02-20": "Washington's Birthday", @@ -579,11 +579,11 @@ "1989-07-04": "Independence Day", "1989-08-27": "Lyndon Baines Johnson Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Friday After Thanksgiving", - "1989-12-22": "Christmas Eve (Observed)", + "1989-12-22": "Christmas Eve (observed)", "1989-12-24": "Christmas Eve", "1989-12-25": "Christmas Day", "1989-12-26": "Day After Christmas", @@ -600,7 +600,7 @@ "1990-08-27": "Lyndon Baines Johnson Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Friday After Thanksgiving", "1990-12-24": "Christmas Eve", @@ -633,7 +633,7 @@ "1992-04-21": "San Jacinto Day", "1992-05-25": "Memorial Day", "1992-06-19": "Emancipation Day In Texas", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-08-27": "Lyndon Baines Johnson Day", "1992-09-07": "Labor Day", @@ -653,17 +653,17 @@ "1993-05-31": "Memorial Day", "1993-06-19": "Emancipation Day In Texas", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-08-27": "Lyndon Baines Johnson Day", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Friday After Thanksgiving", - "1993-12-23": "Christmas Eve (Observed)", - "1993-12-24": "Christmas Day (Observed); Christmas Eve", + "1993-12-23": "Christmas Eve (observed)", + "1993-12-24": "Christmas Day (observed); Christmas Eve", "1993-12-25": "Christmas Day", "1993-12-26": "Day After Christmas", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-01-19": "Confederate Memorial Day", @@ -679,12 +679,12 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-11-25": "Friday After Thanksgiving", - "1994-12-23": "Christmas Eve (Observed)", + "1994-12-23": "Christmas Eve (observed)", "1994-12-24": "Christmas Eve", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed); Day After Christmas", + "1994-12-26": "Christmas Day (observed); Day After Christmas", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-01-19": "Confederate Memorial Day", "1995-02-20": "Washington's Birthday", @@ -696,11 +696,11 @@ "1995-07-04": "Independence Day", "1995-08-27": "Lyndon Baines Johnson Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Friday After Thanksgiving", - "1995-12-22": "Christmas Eve (Observed)", + "1995-12-22": "Christmas Eve (observed)", "1995-12-24": "Christmas Eve", "1995-12-25": "Christmas Day", "1995-12-26": "Day After Christmas", @@ -748,7 +748,7 @@ "1998-04-21": "San Jacinto Day", "1998-05-25": "Memorial Day", "1998-06-19": "Emancipation Day In Texas", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-08-27": "Lyndon Baines Johnson Day", "1998-09-07": "Labor Day", @@ -768,17 +768,17 @@ "1999-05-31": "Memorial Day", "1999-06-19": "Emancipation Day In Texas", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-08-27": "Lyndon Baines Johnson Day", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Friday After Thanksgiving", - "1999-12-23": "Christmas Eve (Observed)", - "1999-12-24": "Christmas Day (Observed); Christmas Eve", + "1999-12-23": "Christmas Eve (observed)", + "1999-12-24": "Christmas Day (observed); Christmas Eve", "1999-12-25": "Christmas Day", "1999-12-26": "Day After Christmas", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-01-19": "Confederate Memorial Day", @@ -791,11 +791,11 @@ "2000-07-04": "Independence Day", "2000-08-27": "Lyndon Baines Johnson Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Friday After Thanksgiving", - "2000-12-22": "Christmas Eve (Observed)", + "2000-12-22": "Christmas Eve (observed)", "2000-12-24": "Christmas Eve", "2000-12-25": "Christmas Day", "2000-12-26": "Day After Christmas", @@ -813,7 +813,7 @@ "2001-08-27": "Lyndon Baines Johnson Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Friday After Thanksgiving", "2001-12-24": "Christmas Eve", @@ -867,17 +867,17 @@ "2004-05-31": "Memorial Day", "2004-06-19": "Emancipation Day In Texas", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-08-27": "Lyndon Baines Johnson Day", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Friday After Thanksgiving", - "2004-12-23": "Christmas Eve (Observed)", - "2004-12-24": "Christmas Day (Observed); Christmas Eve", + "2004-12-23": "Christmas Eve (observed)", + "2004-12-24": "Christmas Day (observed); Christmas Eve", "2004-12-25": "Christmas Day", "2004-12-26": "Day After Christmas", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-01-19": "Confederate Memorial Day", @@ -894,12 +894,12 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-11-25": "Friday After Thanksgiving", - "2005-12-23": "Christmas Eve (Observed)", + "2005-12-23": "Christmas Eve (observed)", "2005-12-24": "Christmas Eve", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed); Day After Christmas", + "2005-12-26": "Christmas Day (observed); Day After Christmas", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-01-19": "Confederate Memorial Day", "2006-02-20": "Washington's Birthday", @@ -912,11 +912,11 @@ "2006-07-04": "Independence Day", "2006-08-27": "Lyndon Baines Johnson Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Friday After Thanksgiving", - "2006-12-22": "Christmas Eve (Observed)", + "2006-12-22": "Christmas Eve (observed)", "2006-12-24": "Christmas Eve", "2006-12-25": "Christmas Day", "2006-12-26": "Day After Christmas", @@ -934,7 +934,7 @@ "2007-08-27": "Lyndon Baines Johnson Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Friday After Thanksgiving", "2007-12-24": "Christmas Eve", @@ -968,7 +968,7 @@ "2009-04-21": "San Jacinto Day", "2009-05-25": "Memorial Day", "2009-06-19": "Emancipation Day In Texas", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-08-27": "Lyndon Baines Johnson Day", "2009-09-07": "Labor Day", @@ -989,17 +989,17 @@ "2010-05-31": "Memorial Day", "2010-06-19": "Emancipation Day In Texas", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-08-27": "Lyndon Baines Johnson Day", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Friday After Thanksgiving", - "2010-12-23": "Christmas Eve (Observed)", - "2010-12-24": "Christmas Day (Observed); Christmas Eve", + "2010-12-23": "Christmas Eve (observed)", + "2010-12-24": "Christmas Day (observed); Christmas Eve", "2010-12-25": "Christmas Day", "2010-12-26": "Day After Christmas", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-01-19": "Confederate Memorial Day", @@ -1016,12 +1016,12 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-11-25": "Friday After Thanksgiving", - "2011-12-23": "Christmas Eve (Observed)", + "2011-12-23": "Christmas Eve (observed)", "2011-12-24": "Christmas Eve", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed); Day After Christmas", + "2011-12-26": "Christmas Day (observed); Day After Christmas", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-01-19": "Confederate Memorial Day", "2012-02-20": "Washington's Birthday", @@ -1035,7 +1035,7 @@ "2012-08-27": "Lyndon Baines Johnson Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Friday After Thanksgiving", "2012-12-24": "Christmas Eve", @@ -1088,7 +1088,7 @@ "2015-04-21": "San Jacinto Day", "2015-05-25": "Memorial Day", "2015-06-19": "Emancipation Day In Texas", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-08-27": "Lyndon Baines Johnson Day", "2015-09-07": "Labor Day", @@ -1114,12 +1114,12 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-11-25": "Friday After Thanksgiving", - "2016-12-23": "Christmas Eve (Observed)", + "2016-12-23": "Christmas Eve (observed)", "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed); Day After Christmas", + "2016-12-26": "Christmas Day (observed); Day After Christmas", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-01-19": "Confederate Memorial Day", "2017-02-20": "Washington's Birthday", @@ -1132,11 +1132,11 @@ "2017-07-04": "Independence Day", "2017-08-27": "Lyndon Baines Johnson Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Friday After Thanksgiving", - "2017-12-22": "Christmas Eve (Observed)", + "2017-12-22": "Christmas Eve (observed)", "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2017-12-26": "Day After Christmas", @@ -1154,7 +1154,7 @@ "2018-08-27": "Lyndon Baines Johnson Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Friday After Thanksgiving", "2018-12-24": "Christmas Eve", @@ -1189,7 +1189,7 @@ "2020-04-21": "San Jacinto Day", "2020-05-25": "Memorial Day", "2020-06-19": "Emancipation Day In Texas", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-08-27": "Lyndon Baines Johnson Day", "2020-09-07": "Labor Day", @@ -1208,20 +1208,20 @@ "2021-04-02": "Good Friday", "2021-04-21": "San Jacinto Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-08-27": "Lyndon Baines Johnson Day", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Friday After Thanksgiving", - "2021-12-23": "Christmas Eve (Observed)", - "2021-12-24": "Christmas Day (Observed); Christmas Eve", + "2021-12-23": "Christmas Eve (observed)", + "2021-12-24": "Christmas Day (observed); Christmas Eve", "2021-12-25": "Christmas Day", "2021-12-26": "Day After Christmas", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-01-19": "Confederate Memorial Day", @@ -1232,19 +1232,19 @@ "2022-04-21": "San Jacinto Day", "2022-05-30": "Memorial Day", "2022-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-08-27": "Lyndon Baines Johnson Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-11-25": "Friday After Thanksgiving", - "2022-12-23": "Christmas Eve (Observed)", + "2022-12-23": "Christmas Eve (observed)", "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed); Day After Christmas", + "2022-12-26": "Christmas Day (observed); Day After Christmas", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-01-19": "Confederate Memorial Day", "2023-02-20": "Washington's Birthday", @@ -1257,11 +1257,11 @@ "2023-07-04": "Independence Day", "2023-08-27": "Lyndon Baines Johnson Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Friday After Thanksgiving", - "2023-12-22": "Christmas Eve (Observed)", + "2023-12-22": "Christmas Eve (observed)", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2023-12-26": "Day After Christmas", @@ -1312,7 +1312,7 @@ "2026-04-21": "San Jacinto Day", "2026-05-25": "Memorial Day", "2026-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-08-27": "Lyndon Baines Johnson Day", "2026-09-07": "Labor Day", @@ -1331,20 +1331,20 @@ "2027-03-31": "Cesar Chavez Day", "2027-04-21": "San Jacinto Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-08-27": "Lyndon Baines Johnson Day", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Friday After Thanksgiving", - "2027-12-23": "Christmas Eve (Observed)", - "2027-12-24": "Christmas Day (Observed); Christmas Eve", + "2027-12-23": "Christmas Eve (observed)", + "2027-12-24": "Christmas Day (observed); Christmas Eve", "2027-12-25": "Christmas Day", "2027-12-26": "Day After Christmas", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-01-19": "Confederate Memorial Day", @@ -1358,11 +1358,11 @@ "2028-07-04": "Independence Day", "2028-08-27": "Lyndon Baines Johnson Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Friday After Thanksgiving", - "2028-12-22": "Christmas Eve (Observed)", + "2028-12-22": "Christmas Eve (observed)", "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2028-12-26": "Day After Christmas", @@ -1380,7 +1380,7 @@ "2029-08-27": "Lyndon Baines Johnson Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Friday After Thanksgiving", "2029-12-24": "Christmas Eve", @@ -1432,20 +1432,20 @@ "2032-03-31": "Cesar Chavez Day", "2032-04-21": "San Jacinto Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-08-27": "Lyndon Baines Johnson Day", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Friday After Thanksgiving", - "2032-12-23": "Christmas Eve (Observed)", - "2032-12-24": "Christmas Day (Observed); Christmas Eve", + "2032-12-23": "Christmas Eve (observed)", + "2032-12-24": "Christmas Day (observed); Christmas Eve", "2032-12-25": "Christmas Day", "2032-12-26": "Day After Christmas", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-01-19": "Confederate Memorial Day", @@ -1456,19 +1456,19 @@ "2033-04-21": "San Jacinto Day", "2033-05-30": "Memorial Day", "2033-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-08-27": "Lyndon Baines Johnson Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-11-25": "Friday After Thanksgiving", - "2033-12-23": "Christmas Eve (Observed)", + "2033-12-23": "Christmas Eve (observed)", "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed); Day After Christmas", + "2033-12-26": "Christmas Day (observed); Day After Christmas", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-01-19": "Confederate Memorial Day", "2034-02-20": "Washington's Birthday", @@ -1481,11 +1481,11 @@ "2034-07-04": "Independence Day", "2034-08-27": "Lyndon Baines Johnson Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Friday After Thanksgiving", - "2034-12-22": "Christmas Eve (Observed)", + "2034-12-22": "Christmas Eve (observed)", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2034-12-26": "Day After Christmas", @@ -1503,7 +1503,7 @@ "2035-08-27": "Lyndon Baines Johnson Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Friday After Thanksgiving", "2035-12-24": "Christmas Eve", @@ -1537,7 +1537,7 @@ "2037-04-21": "San Jacinto Day", "2037-05-25": "Memorial Day", "2037-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-08-27": "Lyndon Baines Johnson Day", "2037-09-07": "Labor Day", @@ -1556,20 +1556,20 @@ "2038-04-21": "San Jacinto Day", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-08-27": "Lyndon Baines Johnson Day", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Friday After Thanksgiving", - "2038-12-23": "Christmas Eve (Observed)", - "2038-12-24": "Christmas Day (Observed); Christmas Eve", + "2038-12-23": "Christmas Eve (observed)", + "2038-12-24": "Christmas Day (observed); Christmas Eve", "2038-12-25": "Christmas Day", "2038-12-26": "Day After Christmas", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-01-19": "Confederate Memorial Day", @@ -1580,19 +1580,19 @@ "2039-04-21": "San Jacinto Day", "2039-05-30": "Memorial Day", "2039-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-08-27": "Lyndon Baines Johnson Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-11-25": "Friday After Thanksgiving", - "2039-12-23": "Christmas Eve (Observed)", + "2039-12-23": "Christmas Eve (observed)", "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Day After Christmas", + "2039-12-26": "Christmas Day (observed); Day After Christmas", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-01-19": "Confederate Memorial Day", "2040-02-20": "Washington's Birthday", @@ -1606,7 +1606,7 @@ "2040-08-27": "Lyndon Baines Johnson Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Friday After Thanksgiving", "2040-12-24": "Christmas Eve", @@ -1659,7 +1659,7 @@ "2043-04-21": "San Jacinto Day", "2043-05-25": "Memorial Day", "2043-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-08-27": "Lyndon Baines Johnson Day", "2043-09-07": "Labor Day", @@ -1679,19 +1679,19 @@ "2044-04-21": "San Jacinto Day", "2044-05-30": "Memorial Day", "2044-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-08-27": "Lyndon Baines Johnson Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-11-25": "Friday After Thanksgiving", - "2044-12-23": "Christmas Eve (Observed)", + "2044-12-23": "Christmas Eve (observed)", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed); Day After Christmas", + "2044-12-26": "Christmas Day (observed); Day After Christmas", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-01-19": "Confederate Memorial Day", "2045-02-20": "Washington's Birthday", @@ -1704,11 +1704,11 @@ "2045-07-04": "Independence Day", "2045-08-27": "Lyndon Baines Johnson Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Friday After Thanksgiving", - "2045-12-22": "Christmas Eve (Observed)", + "2045-12-22": "Christmas Eve (observed)", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2045-12-26": "Day After Christmas", @@ -1726,7 +1726,7 @@ "2046-08-27": "Lyndon Baines Johnson Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Friday After Thanksgiving", "2046-12-24": "Christmas Eve", @@ -1761,7 +1761,7 @@ "2048-04-21": "San Jacinto Day", "2048-05-25": "Memorial Day", "2048-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-08-27": "Lyndon Baines Johnson Day", "2048-09-07": "Labor Day", @@ -1780,20 +1780,20 @@ "2049-04-16": "Good Friday", "2049-04-21": "San Jacinto Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-08-27": "Lyndon Baines Johnson Day", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Friday After Thanksgiving", - "2049-12-23": "Christmas Eve (Observed)", - "2049-12-24": "Christmas Day (Observed); Christmas Eve", + "2049-12-23": "Christmas Eve (observed)", + "2049-12-24": "Christmas Day (observed); Christmas Eve", "2049-12-25": "Christmas Day", "2049-12-26": "Day After Christmas", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-01-19": "Confederate Memorial Day", @@ -1804,15 +1804,15 @@ "2050-04-21": "San Jacinto Day", "2050-05-30": "Memorial Day", "2050-06-19": "Emancipation Day In Texas; Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-08-27": "Lyndon Baines Johnson Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-11-25": "Friday After Thanksgiving", - "2050-12-23": "Christmas Eve (Observed)", + "2050-12-23": "Christmas Eve (observed)", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed); Day After Christmas" + "2050-12-26": "Christmas Day (observed); Day After Christmas" } diff --git a/snapshots/countries/US_UM.json b/snapshots/countries/US_UM.json index ba4f0854e..5fc4393a4 100644 --- a/snapshots/countries/US_UM.json +++ b/snapshots/countries/US_UM.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -639,15 +639,15 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -658,7 +658,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -674,7 +674,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -684,37 +684,37 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -753,16 +753,16 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -770,7 +770,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -782,7 +782,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -809,37 +809,37 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -851,7 +851,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -869,7 +869,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -879,30 +879,30 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -910,7 +910,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -938,7 +938,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -949,22 +949,22 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -976,7 +976,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -994,7 +994,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1004,26 +1004,26 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_UT.json b/snapshots/countries/US_UT.json index d1d1aa5d4..72ce8fdf8 100644 --- a/snapshots/countries/US_UT.json +++ b/snapshots/countries/US_UT.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-07-24": "Pioneer Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -35,7 +35,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-07-24": "Pioneer Day", "1953-09-07": "Labor Day", @@ -47,30 +47,30 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", - "1954-07-23": "Pioneer Day (Observed)", + "1954-07-05": "Independence Day (observed)", + "1954-07-23": "Pioneer Day (observed)", "1954-07-24": "Pioneer Day", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", "1955-07-04": "Independence Day", "1955-07-24": "Pioneer Day", - "1955-07-25": "Pioneer Day (Observed)", + "1955-07-25": "Pioneer Day (observed)", "1955-09-05": "Labor Day", "1955-10-12": "Columbus Day", "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", @@ -78,7 +78,7 @@ "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -104,7 +104,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-07-24": "Pioneer Day", "1959-09-07": "Labor Day", @@ -117,22 +117,22 @@ "1960-05-30": "Memorial Day", "1960-07-04": "Independence Day", "1960-07-24": "Pioneer Day", - "1960-07-25": "Pioneer Day (Observed)", + "1960-07-25": "Pioneer Day (observed)", "1960-09-05": "Labor Day", "1960-10-12": "Columbus Day", "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-07-24": "Pioneer Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -144,7 +144,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -160,7 +160,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-07-24": "Pioneer Day", "1964-09-07": "Labor Day", @@ -172,37 +172,37 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", - "1965-07-23": "Pioneer Day (Observed)", + "1965-07-05": "Independence Day (observed)", + "1965-07-23": "Pioneer Day (observed)", "1965-07-24": "Pioneer Day", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", "1966-07-04": "Independence Day", "1966-07-24": "Pioneer Day", - "1966-07-25": "Pioneer Day (Observed)", + "1966-07-25": "Pioneer Day (observed)", "1966-09-05": "Labor Day", "1966-10-12": "Columbus Day", "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-07-24": "Pioneer Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -229,7 +229,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-07-24": "Pioneer Day", "1970-09-07": "Labor Day", @@ -241,16 +241,16 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", - "1971-07-23": "Pioneer Day (Observed)", + "1971-07-05": "Independence Day (observed)", + "1971-07-23": "Pioneer Day (observed)", "1971-07-24": "Pioneer Day", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -295,37 +295,37 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", - "1976-07-23": "Pioneer Day (Observed)", + "1976-07-05": "Independence Day (observed)", + "1976-07-23": "Pioneer Day (observed)", "1976-07-24": "Pioneer Day", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", "1977-07-04": "Independence Day", "1977-07-24": "Pioneer Day", - "1977-07-25": "Pioneer Day (Observed)", + "1977-07-25": "Pioneer Day (observed)", "1977-09-05": "Labor Day", "1977-10-10": "Columbus Day", "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-07-24": "Pioneer Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -337,7 +337,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -353,7 +353,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-07-24": "Pioneer Day", "1981-09-07": "Labor Day", @@ -365,30 +365,30 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", - "1982-07-23": "Pioneer Day (Observed)", + "1982-07-05": "Independence Day (observed)", + "1982-07-23": "Pioneer Day (observed)", "1982-07-24": "Pioneer Day", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", "1983-07-04": "Independence Day", "1983-07-24": "Pioneer Day", - "1983-07-25": "Pioneer Day (Observed)", + "1983-07-25": "Pioneer Day (observed)", "1983-09-05": "Labor Day", "1983-10-10": "Columbus Day", "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", @@ -396,7 +396,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -424,7 +424,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-07-24": "Pioneer Day", "1987-09-07": "Labor Day", @@ -438,15 +438,15 @@ "1988-05-30": "Memorial Day", "1988-07-04": "Independence Day", "1988-07-24": "Pioneer Day", - "1988-07-25": "Pioneer Day (Observed)", + "1988-07-25": "Pioneer Day (observed)", "1988-09-05": "Labor Day", "1988-10-10": "Columbus Day", "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", @@ -454,7 +454,7 @@ "1989-07-24": "Pioneer Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -467,7 +467,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -485,7 +485,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-07-24": "Pioneer Day", "1992-09-07": "Labor Day", @@ -498,31 +498,31 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", - "1993-07-23": "Pioneer Day (Observed)", + "1993-07-05": "Independence Day (observed)", + "1993-07-23": "Pioneer Day (observed)", "1993-07-24": "Pioneer Day", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", "1994-05-30": "Memorial Day", "1994-07-04": "Independence Day", "1994-07-24": "Pioneer Day", - "1994-07-25": "Pioneer Day (Observed)", + "1994-07-25": "Pioneer Day (observed)", "1994-09-05": "Labor Day", "1994-10-10": "Columbus Day", "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", @@ -530,7 +530,7 @@ "1995-07-24": "Pioneer Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -560,7 +560,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-07-24": "Pioneer Day", "1998-09-07": "Labor Day", @@ -573,16 +573,16 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", - "1999-07-23": "Pioneer Day (Observed)", + "1999-07-05": "Independence Day (observed)", + "1999-07-23": "Pioneer Day (observed)", "1999-07-24": "Pioneer Day", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -591,7 +591,7 @@ "2000-07-24": "Pioneer Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -604,7 +604,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -634,31 +634,31 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", - "2004-07-23": "Pioneer Day (Observed)", + "2004-07-05": "Independence Day (observed)", + "2004-07-23": "Pioneer Day (observed)", "2004-07-24": "Pioneer Day", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", "2005-05-30": "Memorial Day", "2005-07-04": "Independence Day", "2005-07-24": "Pioneer Day", - "2005-07-25": "Pioneer Day (Observed)", + "2005-07-25": "Pioneer Day (observed)", "2005-09-05": "Labor Day", "2005-10-10": "Columbus Day", "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", @@ -666,7 +666,7 @@ "2006-07-24": "Pioneer Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -679,7 +679,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -697,7 +697,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-07-24": "Pioneer Day", "2009-09-07": "Labor Day", @@ -710,31 +710,31 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", - "2010-07-23": "Pioneer Day (Observed)", + "2010-07-05": "Independence Day (observed)", + "2010-07-23": "Pioneer Day (observed)", "2010-07-24": "Pioneer Day", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", "2011-05-30": "Memorial Day", "2011-07-04": "Independence Day", "2011-07-24": "Pioneer Day", - "2011-07-25": "Pioneer Day (Observed)", + "2011-07-25": "Pioneer Day (observed)", "2011-09-05": "Labor Day", "2011-10-10": "Columbus Day", "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -743,7 +743,7 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -772,7 +772,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-07-24": "Pioneer Day", "2015-09-07": "Labor Day", @@ -786,15 +786,15 @@ "2016-05-30": "Memorial Day", "2016-07-04": "Independence Day", "2016-07-24": "Pioneer Day", - "2016-07-25": "Pioneer Day (Observed)", + "2016-07-25": "Pioneer Day (observed)", "2016-09-05": "Labor Day", "2016-10-10": "Columbus Day", "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", @@ -802,7 +802,7 @@ "2017-07-24": "Pioneer Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -815,7 +815,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -833,7 +833,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-07-24": "Pioneer Day", "2020-09-07": "Labor Day", @@ -845,36 +845,36 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", - "2021-07-23": "Pioneer Day (Observed)", + "2021-07-05": "Independence Day (observed)", + "2021-07-23": "Pioneer Day (observed)", "2021-07-24": "Pioneer Day", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-07-24": "Pioneer Day", - "2022-07-25": "Pioneer Day (Observed)", + "2022-07-25": "Pioneer Day (observed)", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -883,7 +883,7 @@ "2023-07-24": "Pioneer Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -916,7 +916,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-07-24": "Pioneer Day", "2026-09-07": "Labor Day", @@ -928,19 +928,19 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", - "2027-07-23": "Pioneer Day (Observed)", + "2027-07-05": "Independence Day (observed)", + "2027-07-23": "Pioneer Day (observed)", "2027-07-24": "Pioneer Day", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -950,7 +950,7 @@ "2028-07-24": "Pioneer Day", "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -964,7 +964,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -995,36 +995,36 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", - "2032-07-23": "Pioneer Day (Observed)", + "2032-07-05": "Independence Day (observed)", + "2032-07-23": "Pioneer Day (observed)", "2032-07-24": "Pioneer Day", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-07-24": "Pioneer Day", - "2033-07-25": "Pioneer Day (Observed)", + "2033-07-25": "Pioneer Day (observed)", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -1033,7 +1033,7 @@ "2034-07-24": "Pioneer Day", "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1047,7 +1047,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1067,7 +1067,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-07-24": "Pioneer Day", "2037-09-07": "Labor Day", @@ -1079,36 +1079,36 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", - "2038-07-23": "Pioneer Day (Observed)", + "2038-07-05": "Independence Day (observed)", + "2038-07-23": "Pioneer Day (observed)", "2038-07-24": "Pioneer Day", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-07-24": "Pioneer Day", - "2039-07-25": "Pioneer Day (Observed)", + "2039-07-25": "Pioneer Day (observed)", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1118,7 +1118,7 @@ "2040-09-03": "Labor Day", "2040-10-08": "Columbus Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1150,7 +1150,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-07-24": "Pioneer Day", "2043-09-07": "Labor Day", @@ -1163,18 +1163,18 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-07-24": "Pioneer Day", - "2044-07-25": "Pioneer Day (Observed)", + "2044-07-25": "Pioneer Day (observed)", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1183,7 +1183,7 @@ "2045-07-24": "Pioneer Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1197,7 +1197,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Columbus Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1217,7 +1217,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-07-24": "Pioneer Day", "2048-09-07": "Labor Day", @@ -1229,32 +1229,32 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", - "2049-07-23": "Pioneer Day (Observed)", + "2049-07-05": "Independence Day (observed)", + "2049-07-23": "Pioneer Day (observed)", "2049-07-24": "Pioneer Day", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-07-24": "Pioneer Day", - "2050-07-25": "Pioneer Day (Observed)", + "2050-07-25": "Pioneer Day (observed)", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_VA.json b/snapshots/countries/US_VA.json index 759d3a6bb..1463e7a88 100644 --- a/snapshots/countries/US_VA.json +++ b/snapshots/countries/US_VA.json @@ -1,12 +1,12 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-19": "Lee Jackson Day", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -17,7 +17,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -34,7 +34,7 @@ "1953-01-20": "Inauguration Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -45,13 +45,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-01-19": "Lee Jackson Day", "1955-02-22": "Washington's Birthday", @@ -61,22 +61,22 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-19": "Lee Jackson Day", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-01-19": "Lee Jackson Day", "1957-01-20": "Inauguration Day", - "1957-01-21": "Inauguration Day (Observed)", + "1957-01-21": "Inauguration Day (observed)", "1957-02-22": "Washington's Birthday", "1957-05-30": "Memorial Day", "1957-07-04": "Independence Day", @@ -97,7 +97,7 @@ "1959-01-19": "Lee Jackson Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -112,16 +112,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-19": "Lee Jackson Day", "1961-01-20": "Inauguration Day", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -132,7 +132,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -148,7 +148,7 @@ "1964-01-19": "Lee Jackson Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -160,13 +160,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-01-19": "Lee Jackson Day", "1966-02-22": "Washington's Birthday", @@ -176,15 +176,15 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-19": "Lee Jackson Day", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -211,7 +211,7 @@ "1970-01-19": "Lee Jackson Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -222,14 +222,14 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-01-19": "Lee Jackson Day", "1972-02-21": "Washington's Birthday", @@ -276,14 +276,14 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-01-19": "Lee Jackson Day", "1977-01-20": "Inauguration Day", @@ -295,16 +295,16 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-19": "Lee Jackson Day", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -316,7 +316,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -334,7 +334,7 @@ "1981-01-20": "Inauguration Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -346,14 +346,14 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-01-17": "Lee Jackson Day", "1983-02-21": "Washington's Birthday", @@ -364,9 +364,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-16": "Lee Jackson Day", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", @@ -374,12 +374,12 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-01-20": "Inauguration Day", - "1985-01-21": "Inauguration Day (Observed); Lee Jackson Day", + "1985-01-21": "Inauguration Day (observed); Lee Jackson Day", "1985-02-18": "Washington's Birthday", "1985-05-27": "Memorial Day", "1985-07-04": "Independence Day", @@ -402,7 +402,7 @@ "1987-01-19": "Lee Jackson Day; Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -419,9 +419,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Lee Jackson Day; Martin Luther King Jr. Day", "1989-01-20": "Inauguration Day", "1989-02-20": "Washington's Birthday", @@ -429,7 +429,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -441,7 +441,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -458,7 +458,7 @@ "1992-01-20": "Lee Jackson Day; Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -471,14 +471,14 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Lee Jackson Day; Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -489,16 +489,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Lee Jackson Day; Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -526,7 +526,7 @@ "1998-01-19": "Lee Jackson Day; Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -538,14 +538,14 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-14": "Lee Jackson Day", "2000-01-17": "Martin Luther King Jr. Day", @@ -554,7 +554,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -568,7 +568,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -599,14 +599,14 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-14": "Lee Jackson Day", "2005-01-17": "Martin Luther King Jr. Day", @@ -619,9 +619,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-13": "Lee Jackson Day", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", @@ -629,7 +629,7 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -642,7 +642,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -662,7 +662,7 @@ "2009-01-20": "Inauguration Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -675,14 +675,14 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-14": "Lee Jackson Day", "2011-01-17": "Martin Luther King Jr. Day", @@ -694,9 +694,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-13": "Lee Jackson Day", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", @@ -705,13 +705,13 @@ "2012-09-03": "Labor Day", "2012-10-08": "Columbus Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", "2013-01-18": "Lee Jackson Day", "2013-01-20": "Inauguration Day", - "2013-01-21": "Inauguration Day (Observed); Martin Luther King Jr. Day", + "2013-01-21": "Inauguration Day (observed); Martin Luther King Jr. Day", "2013-02-18": "Washington's Birthday", "2013-05-27": "Memorial Day", "2013-07-04": "Independence Day", @@ -736,7 +736,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -754,9 +754,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-13": "Lee Jackson Day", "2017-01-16": "Martin Luther King Jr. Day", "2017-01-20": "Inauguration Day", @@ -765,7 +765,7 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -778,7 +778,7 @@ "2018-09-03": "Labor Day", "2018-10-08": "Columbus Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -797,7 +797,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Indigenous Peoples' Day", @@ -809,32 +809,32 @@ "2021-01-20": "Inauguration Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Indigenous Peoples' Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Indigenous Peoples' Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -842,7 +842,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Indigenous Peoples' Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -873,7 +873,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Indigenous Peoples' Day", @@ -884,17 +884,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Indigenous Peoples' Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -903,7 +903,7 @@ "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", "2028-10-09": "Indigenous Peoples' Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -917,7 +917,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Indigenous Peoples' Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -946,33 +946,33 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Indigenous Peoples' Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-01-20": "Inauguration Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Indigenous Peoples' Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -980,7 +980,7 @@ "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", "2034-10-09": "Indigenous Peoples' Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -993,7 +993,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Indigenous Peoples' Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1013,7 +1013,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Indigenous Peoples' Day", @@ -1024,32 +1024,32 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Indigenous Peoples' Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Indigenous Peoples' Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1058,12 +1058,12 @@ "2040-09-03": "Labor Day", "2040-10-08": "Indigenous Peoples' Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-20": "Inauguration Day", - "2041-01-21": "Inauguration Day (Observed); Martin Luther King Jr. Day", + "2041-01-21": "Inauguration Day (observed); Martin Luther King Jr. Day", "2041-02-18": "Washington's Birthday", "2041-05-27": "Memorial Day", "2041-06-19": "Juneteenth National Independence Day", @@ -1089,7 +1089,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Indigenous Peoples' Day", @@ -1101,16 +1101,16 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Indigenous Peoples' Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-01-20": "Inauguration Day", "2045-02-20": "Washington's Birthday", @@ -1119,7 +1119,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Indigenous Peoples' Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1132,7 +1132,7 @@ "2046-09-03": "Labor Day", "2046-10-08": "Indigenous Peoples' Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1151,7 +1151,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Indigenous Peoples' Day", @@ -1163,28 +1163,28 @@ "2049-01-20": "Inauguration Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Indigenous Peoples' Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Indigenous Peoples' Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_VI.json b/snapshots/countries/US_VI.json index 454ebf795..5d271a0e8 100644 --- a/snapshots/countries/US_VI.json +++ b/snapshots/countries/US_VI.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-06": "Three Kings Day", "1950-02-22": "Presidents' Day", "1950-03-31": "Transfer Day", @@ -13,7 +13,7 @@ "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day and Puerto Rico Friendship Day", "1950-11-01": "Liberty Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -32,7 +32,7 @@ "1951-10-12": "Columbus Day and Puerto Rico Friendship Day", "1951-11-01": "Liberty Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1951-12-26": "Christmas Second Day", @@ -61,7 +61,7 @@ "1953-04-03": "Good Friday", "1953-04-06": "Easter Monday", "1953-05-30": "Memorial Day", - "1953-07-03": "Emancipation Day; Independence Day (Observed)", + "1953-07-03": "Emancipation Day; Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -80,16 +80,16 @@ "1954-05-30": "Memorial Day", "1954-07-03": "Emancipation Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day and Puerto Rico Friendship Day", "1954-11-01": "Liberty Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", "1954-12-26": "Christmas Second Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-01-06": "Three Kings Day", "1955-02-22": "Presidents' Day", @@ -106,9 +106,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed); Christmas Second Day", + "1955-12-26": "Christmas Day (observed); Christmas Second Day", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-06": "Three Kings Day", "1956-02-22": "Presidents' Day", "1956-03-29": "Holy Thursday", @@ -122,7 +122,7 @@ "1956-10-12": "Columbus Day and Puerto Rico Friendship Day", "1956-11-01": "Liberty Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1956-12-26": "Christmas Second Day", @@ -168,7 +168,7 @@ "1959-03-30": "Easter Monday", "1959-03-31": "Transfer Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Emancipation Day; Independence Day (Observed)", + "1959-07-03": "Emancipation Day; Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -193,9 +193,9 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed); Christmas Second Day", + "1960-12-26": "Christmas Day (observed); Christmas Second Day", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-06": "Three Kings Day", "1961-02-22": "Presidents' Day", "1961-03-30": "Holy Thursday", @@ -207,7 +207,7 @@ "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day and Puerto Rico Friendship Day", "1961-11-01": "Liberty Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -226,7 +226,7 @@ "1962-10-12": "Columbus Day and Puerto Rico Friendship Day", "1962-11-01": "Liberty Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1962-12-26": "Christmas Second Day", @@ -255,7 +255,7 @@ "1964-03-30": "Easter Monday", "1964-03-31": "Transfer Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Emancipation Day; Independence Day (Observed)", + "1964-07-03": "Emancipation Day; Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -274,16 +274,16 @@ "1965-05-30": "Memorial Day", "1965-07-03": "Emancipation Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day and Puerto Rico Friendship Day", "1965-11-01": "Liberty Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", "1965-12-26": "Christmas Second Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-01-06": "Three Kings Day", "1966-02-22": "Presidents' Day", @@ -300,9 +300,9 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed); Christmas Second Day", + "1966-12-26": "Christmas Day (observed); Christmas Second Day", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-06": "Three Kings Day", "1967-02-22": "Presidents' Day", "1967-03-23": "Holy Thursday", @@ -315,7 +315,7 @@ "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day and Puerto Rico Friendship Day", "1967-11-01": "Liberty Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -362,7 +362,7 @@ "1970-03-30": "Easter Monday", "1970-03-31": "Transfer Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Emancipation Day; Independence Day (Observed)", + "1970-07-03": "Emancipation Day; Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -381,16 +381,16 @@ "1971-05-31": "Memorial Day", "1971-07-03": "Emancipation Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day and Puerto Rico Friendship Day", "1971-10-25": "Veterans Day", "1971-11-01": "Liberty Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", "1971-12-26": "Christmas Second Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-01-06": "Three Kings Day", "1972-02-21": "Presidents' Day", @@ -467,16 +467,16 @@ "1976-05-31": "Memorial Day", "1976-07-03": "Emancipation Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day and Puerto Rico Friendship Day", "1976-10-25": "Veterans Day", "1976-11-01": "Liberty Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", "1976-12-26": "Christmas Second Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-01-06": "Three Kings Day", "1977-02-21": "Presidents' Day", @@ -493,9 +493,9 @@ "1977-11-01": "Liberty Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed); Christmas Second Day", + "1977-12-26": "Christmas Day (observed); Christmas Second Day", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-06": "Three Kings Day", "1978-02-20": "Presidents' Day", "1978-03-23": "Holy Thursday", @@ -508,7 +508,7 @@ "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day and Puerto Rico Friendship Day", "1978-11-01": "Liberty Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -527,7 +527,7 @@ "1979-10-08": "Columbus Day and Puerto Rico Friendship Day", "1979-11-01": "Liberty Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1979-12-26": "Christmas Second Day", @@ -556,7 +556,7 @@ "1981-04-17": "Good Friday", "1981-04-20": "Easter Monday", "1981-05-25": "Memorial Day", - "1981-07-03": "Emancipation Day; Independence Day (Observed)", + "1981-07-03": "Emancipation Day; Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -575,16 +575,16 @@ "1982-05-31": "Memorial Day", "1982-07-03": "Emancipation Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day and Puerto Rico Friendship Day", "1982-11-01": "Liberty Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", "1982-12-26": "Christmas Second Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-01-06": "Three Kings Day", "1983-02-21": "Presidents' Day", @@ -600,9 +600,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed); Christmas Second Day", + "1983-12-26": "Christmas Day (observed); Christmas Second Day", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-06": "Three Kings Day", "1984-02-20": "Presidents' Day", "1984-03-31": "Transfer Day", @@ -616,7 +616,7 @@ "1984-10-08": "Columbus Day and Puerto Rico Friendship Day", "1984-11-01": "Liberty Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1984-12-26": "Christmas Second Day", @@ -663,7 +663,7 @@ "1987-04-17": "Good Friday", "1987-04-20": "Easter Monday", "1987-05-25": "Memorial Day", - "1987-07-03": "Emancipation Day; Independence Day (Observed)", + "1987-07-03": "Emancipation Day; Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -688,9 +688,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed); Christmas Second Day", + "1988-12-26": "Christmas Day (observed); Christmas Second Day", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-06": "Three Kings Day", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Presidents' Day", @@ -704,7 +704,7 @@ "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day and Puerto Rico Friendship Day", "1989-11-01": "Liberty Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -724,7 +724,7 @@ "1990-10-08": "Columbus Day and Puerto Rico Friendship Day", "1990-11-01": "Liberty Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1990-12-26": "Christmas Second Day", @@ -755,7 +755,7 @@ "1992-04-17": "Good Friday", "1992-04-20": "Easter Monday", "1992-05-25": "Memorial Day", - "1992-07-03": "Emancipation Day; Independence Day (Observed)", + "1992-07-03": "Emancipation Day; Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -775,16 +775,16 @@ "1993-05-31": "Memorial Day", "1993-07-03": "Emancipation Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day and Puerto Rico Friendship Day", "1993-11-01": "Liberty Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", "1993-12-26": "Christmas Second Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-06": "Three Kings Day", "1994-01-17": "Martin Luther King Jr. Day", @@ -801,9 +801,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed); Christmas Second Day", + "1994-12-26": "Christmas Day (observed); Christmas Second Day", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-06": "Three Kings Day", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Presidents' Day", @@ -817,7 +817,7 @@ "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day and Puerto Rico Friendship Day", "1995-11-01": "Liberty Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -866,7 +866,7 @@ "1998-04-10": "Good Friday", "1998-04-13": "Easter Monday", "1998-05-25": "Memorial Day", - "1998-07-03": "Emancipation Day; Independence Day (Observed)", + "1998-07-03": "Emancipation Day; Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -886,16 +886,16 @@ "1999-05-31": "Memorial Day", "1999-07-03": "Emancipation Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day and Puerto Rico Friendship Day", "1999-11-01": "Liberty Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", "1999-12-26": "Christmas Second Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-06": "Three Kings Day", "2000-01-17": "Martin Luther King Jr. Day", @@ -910,7 +910,7 @@ "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day and Puerto Rico Friendship Day", "2000-11-01": "Liberty Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -930,7 +930,7 @@ "2001-10-08": "Columbus Day and Puerto Rico Friendship Day", "2001-11-01": "Liberty Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2001-12-26": "Christmas Second Day", @@ -981,16 +981,16 @@ "2004-05-31": "Memorial Day", "2004-07-03": "Emancipation Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day and Puerto Rico Friendship Day", "2004-11-01": "Liberty Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", "2004-12-26": "Christmas Second Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-06": "Three Kings Day", "2005-01-17": "Martin Luther King Jr. Day", @@ -1008,9 +1008,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed); Christmas Second Day", + "2005-12-26": "Christmas Day (observed); Christmas Second Day", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-06": "Three Kings Day", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Presidents' Day", @@ -1024,7 +1024,7 @@ "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day and Puerto Rico Friendship Day", "2006-11-01": "Liberty Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -1044,7 +1044,7 @@ "2007-10-08": "Columbus Day and Puerto Rico Friendship Day", "2007-11-01": "Liberty Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2007-12-26": "Christmas Second Day", @@ -1075,7 +1075,7 @@ "2009-04-10": "Good Friday", "2009-04-13": "Easter Monday", "2009-05-25": "Memorial Day", - "2009-07-03": "Emancipation Day; Independence Day (Observed)", + "2009-07-03": "Emancipation Day; Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1095,16 +1095,16 @@ "2010-05-31": "Memorial Day", "2010-07-03": "Emancipation Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day and Puerto Rico Friendship Day", "2010-11-01": "Liberty Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", "2010-12-26": "Christmas Second Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-06": "Three Kings Day", "2011-01-17": "Martin Luther King Jr. Day", @@ -1122,9 +1122,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed); Christmas Second Day", + "2011-12-26": "Christmas Day (observed); Christmas Second Day", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-06": "Three Kings Day", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Presidents' Day", @@ -1139,7 +1139,7 @@ "2012-10-08": "Columbus Day and Puerto Rico Friendship Day", "2012-11-01": "Liberty Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2012-12-26": "Christmas Second Day", @@ -1188,7 +1188,7 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-05-25": "Memorial Day", - "2015-07-03": "Emancipation Day; Independence Day (Observed)", + "2015-07-03": "Emancipation Day; Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1214,9 +1214,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed); Christmas Second Day", + "2016-12-26": "Christmas Day (observed); Christmas Second Day", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-06": "Three Kings Day", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Presidents' Day", @@ -1230,7 +1230,7 @@ "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day and Puerto Rico Friendship Day", "2017-11-01": "Liberty Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -1250,7 +1250,7 @@ "2018-10-08": "Columbus Day and Puerto Rico Friendship Day", "2018-11-01": "Liberty Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2018-12-26": "Christmas Second Day", @@ -1281,7 +1281,7 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-05-25": "Memorial Day", - "2020-07-03": "Emancipation Day; Independence Day (Observed)", + "2020-07-03": "Emancipation Day; Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1299,20 +1299,20 @@ "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-03": "Emancipation Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day and Puerto Rico Friendship Day", "2021-11-01": "Liberty Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", "2021-12-26": "Christmas Second Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-06": "Three Kings Day", "2022-01-17": "Martin Luther King Jr. Day", @@ -1323,7 +1323,7 @@ "2022-04-18": "Easter Monday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-03": "Emancipation Day", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", @@ -1332,9 +1332,9 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed); Christmas Second Day", + "2022-12-26": "Christmas Day (observed); Christmas Second Day", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-06": "Three Kings Day", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Presidents' Day", @@ -1349,7 +1349,7 @@ "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day and Puerto Rico Friendship Day", "2023-11-01": "Liberty Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -1402,7 +1402,7 @@ "2026-04-06": "Easter Monday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Emancipation Day; Independence Day (Observed)", + "2026-07-03": "Emancipation Day; Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1420,20 +1420,20 @@ "2027-03-29": "Easter Monday", "2027-03-31": "Transfer Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-03": "Emancipation Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day and Puerto Rico Friendship Day", "2027-11-01": "Liberty Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", "2027-12-26": "Christmas Second Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-06": "Three Kings Day", "2028-01-17": "Martin Luther King Jr. Day", @@ -1449,7 +1449,7 @@ "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day and Puerto Rico Friendship Day", "2028-11-01": "Liberty Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -1470,7 +1470,7 @@ "2029-10-08": "Columbus Day and Puerto Rico Friendship Day", "2029-11-01": "Liberty Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2029-12-26": "Christmas Second Day", @@ -1521,20 +1521,20 @@ "2032-03-29": "Easter Monday", "2032-03-31": "Transfer Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-03": "Emancipation Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day and Puerto Rico Friendship Day", "2032-11-01": "Liberty Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", "2032-12-26": "Christmas Second Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-06": "Three Kings Day", "2033-01-17": "Martin Luther King Jr. Day", @@ -1545,7 +1545,7 @@ "2033-04-18": "Easter Monday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-03": "Emancipation Day", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", @@ -1554,9 +1554,9 @@ "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed); Christmas Second Day", + "2033-12-26": "Christmas Day (observed); Christmas Second Day", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-06": "Three Kings Day", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Presidents' Day", @@ -1571,7 +1571,7 @@ "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day and Puerto Rico Friendship Day", "2034-11-01": "Liberty Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1592,7 +1592,7 @@ "2035-10-08": "Columbus Day and Puerto Rico Friendship Day", "2035-11-01": "Liberty Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2035-12-26": "Christmas Second Day", @@ -1625,7 +1625,7 @@ "2037-04-06": "Easter Monday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Emancipation Day; Independence Day (Observed)", + "2037-07-03": "Emancipation Day; Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1643,20 +1643,20 @@ "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-03": "Emancipation Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day and Puerto Rico Friendship Day", "2038-11-01": "Liberty Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", "2038-12-26": "Christmas Second Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-06": "Three Kings Day", "2039-01-17": "Martin Luther King Jr. Day", @@ -1667,7 +1667,7 @@ "2039-04-11": "Easter Monday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-03": "Emancipation Day", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", @@ -1676,9 +1676,9 @@ "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Christmas Second Day", + "2039-12-26": "Christmas Day (observed); Christmas Second Day", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-06": "Three Kings Day", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Presidents' Day", @@ -1694,7 +1694,7 @@ "2040-10-08": "Columbus Day and Puerto Rico Friendship Day", "2040-11-01": "Liberty Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2040-12-26": "Christmas Second Day", @@ -1746,7 +1746,7 @@ "2043-03-31": "Transfer Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Emancipation Day; Independence Day (Observed)", + "2043-07-03": "Emancipation Day; Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1765,7 +1765,7 @@ "2044-04-18": "Easter Monday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-03": "Emancipation Day", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", @@ -1774,9 +1774,9 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed); Christmas Second Day", + "2044-12-26": "Christmas Day (observed); Christmas Second Day", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-06": "Three Kings Day", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Presidents' Day", @@ -1791,7 +1791,7 @@ "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day and Puerto Rico Friendship Day", "2045-11-01": "Liberty Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1812,7 +1812,7 @@ "2046-10-08": "Columbus Day and Puerto Rico Friendship Day", "2046-11-01": "Liberty Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2046-12-26": "Christmas Second Day", @@ -1845,7 +1845,7 @@ "2048-04-06": "Easter Monday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Emancipation Day; Independence Day (Observed)", + "2048-07-03": "Emancipation Day; Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1863,20 +1863,20 @@ "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-03": "Emancipation Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day and Puerto Rico Friendship Day", "2049-11-01": "Liberty Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", "2049-12-26": "Christmas Second Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-06": "Three Kings Day", "2050-01-17": "Martin Luther King Jr. Day", @@ -1887,7 +1887,7 @@ "2050-04-11": "Easter Monday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-03": "Emancipation Day", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", @@ -1896,5 +1896,5 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed); Christmas Second Day" + "2050-12-26": "Christmas Day (observed); Christmas Second Day" } diff --git a/snapshots/countries/US_VT.json b/snapshots/countries/US_VT.json index a8a777d55..74a1e64d4 100644 --- a/snapshots/countries/US_VT.json +++ b/snapshots/countries/US_VT.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-03-07": "Town Meeting Day", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-08-16": "Bennington Battle Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-08-16": "Bennington Battle Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -27,7 +27,7 @@ "1952-03-04": "Town Meeting Day", "1952-05-30": "Memorial Day", "1952-07-04": "Independence Day", - "1952-08-15": "Bennington Battle Day (Observed)", + "1952-08-15": "Bennington Battle Day (observed)", "1952-08-16": "Bennington Battle Day", "1952-09-01": "Labor Day", "1952-11-11": "Armistice Day", @@ -37,10 +37,10 @@ "1953-02-22": "Washington's Birthday", "1953-03-03": "Town Meeting Day", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-08-16": "Bennington Battle Day", - "1953-08-17": "Bennington Battle Day (Observed)", + "1953-08-17": "Bennington Battle Day (observed)", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", "1953-11-26": "Thanksgiving", @@ -50,14 +50,14 @@ "1954-03-02": "Town Meeting Day", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-08-16": "Bennington Battle Day", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-03-01": "Town Meeting Day", @@ -68,9 +68,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-06": "Town Meeting Day", "1956-05-30": "Memorial Day", @@ -78,7 +78,7 @@ "1956-08-16": "Bennington Battle Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -96,7 +96,7 @@ "1958-03-04": "Town Meeting Day", "1958-05-30": "Memorial Day", "1958-07-04": "Independence Day", - "1958-08-15": "Bennington Battle Day (Observed)", + "1958-08-15": "Bennington Battle Day (observed)", "1958-08-16": "Bennington Battle Day", "1958-09-01": "Labor Day", "1958-11-11": "Veterans Day", @@ -106,10 +106,10 @@ "1959-02-22": "Washington's Birthday", "1959-03-03": "Town Meeting Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-08-16": "Bennington Battle Day", - "1959-08-17": "Bennington Battle Day (Observed)", + "1959-08-17": "Bennington Battle Day (observed)", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", "1959-11-26": "Thanksgiving", @@ -124,16 +124,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-07": "Town Meeting Day", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-08-16": "Bennington Battle Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -145,7 +145,7 @@ "1962-08-16": "Bennington Battle Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -162,10 +162,10 @@ "1964-02-22": "Washington's Birthday", "1964-03-03": "Town Meeting Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-08-16": "Bennington Battle Day", - "1964-08-17": "Bennington Battle Day (Observed)", + "1964-08-17": "Bennington Battle Day (observed)", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", "1964-11-26": "Thanksgiving", @@ -175,14 +175,14 @@ "1965-03-02": "Town Meeting Day", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-08-16": "Bennington Battle Day", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-03-01": "Town Meeting Day", @@ -193,16 +193,16 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-07": "Town Meeting Day", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-08-16": "Bennington Battle Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -221,7 +221,7 @@ "1969-03-04": "Town Meeting Day", "1969-05-30": "Memorial Day", "1969-07-04": "Independence Day", - "1969-08-15": "Bennington Battle Day (Observed)", + "1969-08-15": "Bennington Battle Day (observed)", "1969-08-16": "Bennington Battle Day", "1969-09-01": "Labor Day", "1969-11-11": "Veterans Day", @@ -231,10 +231,10 @@ "1970-02-22": "Washington's Birthday", "1970-03-03": "Town Meeting Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-08-16": "Bennington Battle Day", - "1970-08-17": "Bennington Battle Day (Observed)", + "1970-08-17": "Bennington Battle Day (observed)", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", "1970-11-26": "Thanksgiving", @@ -244,14 +244,14 @@ "1971-03-02": "Town Meeting Day", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-08-16": "Bennington Battle Day", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-03-07": "Town Meeting Day", @@ -287,7 +287,7 @@ "1975-03-04": "Town Meeting Day", "1975-05-26": "Memorial Day", "1975-07-04": "Independence Day", - "1975-08-15": "Bennington Battle Day (Observed)", + "1975-08-15": "Bennington Battle Day (observed)", "1975-08-16": "Bennington Battle Day", "1975-09-01": "Labor Day", "1975-10-27": "Veterans Day", @@ -298,14 +298,14 @@ "1976-03-02": "Town Meeting Day", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-08-16": "Bennington Battle Day", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-03-01": "Town Meeting Day", @@ -316,16 +316,16 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-07": "Town Meeting Day", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-08-16": "Bennington Battle Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -337,7 +337,7 @@ "1979-08-16": "Bennington Battle Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -345,7 +345,7 @@ "1980-03-04": "Town Meeting Day", "1980-05-26": "Memorial Day", "1980-07-04": "Independence Day", - "1980-08-15": "Bennington Battle Day (Observed)", + "1980-08-15": "Bennington Battle Day (observed)", "1980-08-16": "Bennington Battle Day", "1980-09-01": "Labor Day", "1980-11-11": "Veterans Day", @@ -355,10 +355,10 @@ "1981-02-16": "Washington's Birthday", "1981-03-03": "Town Meeting Day", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-08-16": "Bennington Battle Day", - "1981-08-17": "Bennington Battle Day (Observed)", + "1981-08-17": "Bennington Battle Day (observed)", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", "1981-11-26": "Thanksgiving", @@ -368,14 +368,14 @@ "1982-03-02": "Town Meeting Day", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-08-16": "Bennington Battle Day", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-03-01": "Town Meeting Day", @@ -386,9 +386,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-03-06": "Town Meeting Day", "1984-05-28": "Memorial Day", @@ -396,7 +396,7 @@ "1984-08-16": "Bennington Battle Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -415,7 +415,7 @@ "1986-03-04": "Town Meeting Day", "1986-05-26": "Memorial Day", "1986-07-04": "Independence Day", - "1986-08-15": "Bennington Battle Day (Observed)", + "1986-08-15": "Bennington Battle Day (observed)", "1986-08-16": "Bennington Battle Day", "1986-09-01": "Labor Day", "1986-11-11": "Veterans Day", @@ -426,10 +426,10 @@ "1987-02-16": "Washington's Birthday", "1987-03-03": "Town Meeting Day", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-08-16": "Bennington Battle Day", - "1987-08-17": "Bennington Battle Day (Observed)", + "1987-08-17": "Bennington Battle Day (observed)", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", "1987-11-26": "Thanksgiving", @@ -445,9 +445,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-03-07": "Town Meeting Day", @@ -455,7 +455,7 @@ "1989-07-04": "Independence Day", "1989-08-16": "Bennington Battle Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -468,7 +468,7 @@ "1990-08-16": "Bennington Battle Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -487,10 +487,10 @@ "1992-02-17": "Washington's Birthday", "1992-03-03": "Town Meeting Day", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-08-16": "Bennington Battle Day", - "1992-08-17": "Bennington Battle Day (Observed)", + "1992-08-17": "Bennington Battle Day (observed)", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", "1992-11-26": "Thanksgiving", @@ -501,14 +501,14 @@ "1993-03-02": "Town Meeting Day", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-08-16": "Bennington Battle Day", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -520,9 +520,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-03-07": "Town Meeting Day", @@ -530,7 +530,7 @@ "1995-07-04": "Independence Day", "1995-08-16": "Bennington Battle Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -551,7 +551,7 @@ "1997-03-04": "Town Meeting Day", "1997-05-26": "Memorial Day", "1997-07-04": "Independence Day", - "1997-08-15": "Bennington Battle Day (Observed)", + "1997-08-15": "Bennington Battle Day (observed)", "1997-08-16": "Bennington Battle Day", "1997-09-01": "Labor Day", "1997-11-11": "Veterans Day", @@ -562,10 +562,10 @@ "1998-02-16": "Washington's Birthday", "1998-03-03": "Town Meeting Day", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-08-16": "Bennington Battle Day", - "1998-08-17": "Bennington Battle Day (Observed)", + "1998-08-17": "Bennington Battle Day (observed)", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", "1998-11-26": "Thanksgiving", @@ -576,14 +576,14 @@ "1999-03-02": "Town Meeting Day", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-08-16": "Bennington Battle Day", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -592,7 +592,7 @@ "2000-07-04": "Independence Day", "2000-08-16": "Bennington Battle Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -605,7 +605,7 @@ "2001-08-16": "Bennington Battle Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -625,7 +625,7 @@ "2003-03-04": "Town Meeting Day", "2003-05-26": "Memorial Day", "2003-07-04": "Independence Day", - "2003-08-15": "Bennington Battle Day (Observed)", + "2003-08-15": "Bennington Battle Day (observed)", "2003-08-16": "Bennington Battle Day", "2003-09-01": "Labor Day", "2003-11-11": "Veterans Day", @@ -637,14 +637,14 @@ "2004-03-02": "Town Meeting Day", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-08-16": "Bennington Battle Day", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -656,9 +656,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-03-07": "Town Meeting Day", @@ -666,7 +666,7 @@ "2006-07-04": "Independence Day", "2006-08-16": "Bennington Battle Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -679,7 +679,7 @@ "2007-08-16": "Bennington Battle Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -688,7 +688,7 @@ "2008-03-04": "Town Meeting Day", "2008-05-26": "Memorial Day", "2008-07-04": "Independence Day", - "2008-08-15": "Bennington Battle Day (Observed)", + "2008-08-15": "Bennington Battle Day (observed)", "2008-08-16": "Bennington Battle Day", "2008-09-01": "Labor Day", "2008-11-11": "Veterans Day", @@ -699,10 +699,10 @@ "2009-02-16": "Washington's Birthday", "2009-03-03": "Town Meeting Day", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-08-16": "Bennington Battle Day", - "2009-08-17": "Bennington Battle Day (Observed)", + "2009-08-17": "Bennington Battle Day (observed)", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", "2009-11-26": "Thanksgiving", @@ -713,14 +713,14 @@ "2010-03-02": "Town Meeting Day", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-08-16": "Bennington Battle Day", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -732,9 +732,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-03-06": "Town Meeting Day", @@ -743,7 +743,7 @@ "2012-08-16": "Bennington Battle Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -763,7 +763,7 @@ "2014-03-04": "Town Meeting Day", "2014-05-26": "Memorial Day", "2014-07-04": "Independence Day", - "2014-08-15": "Bennington Battle Day (Observed)", + "2014-08-15": "Bennington Battle Day (observed)", "2014-08-16": "Bennington Battle Day", "2014-09-01": "Labor Day", "2014-11-11": "Veterans Day", @@ -774,10 +774,10 @@ "2015-02-16": "Washington's Birthday", "2015-03-03": "Town Meeting Day", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-08-16": "Bennington Battle Day", - "2015-08-17": "Bennington Battle Day (Observed)", + "2015-08-17": "Bennington Battle Day (observed)", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", "2015-11-26": "Thanksgiving", @@ -793,9 +793,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-03-07": "Town Meeting Day", @@ -803,7 +803,7 @@ "2017-07-04": "Independence Day", "2017-08-16": "Bennington Battle Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -816,7 +816,7 @@ "2018-08-16": "Bennington Battle Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -835,10 +835,10 @@ "2020-02-17": "Washington's Birthday", "2020-03-03": "Town Meeting Day", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-08-16": "Bennington Battle Day", - "2020-08-17": "Bennington Battle Day (Observed)", + "2020-08-17": "Bennington Battle Day (observed)", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", "2020-11-26": "Thanksgiving", @@ -848,33 +848,33 @@ "2021-02-15": "Washington's Birthday", "2021-03-02": "Town Meeting Day", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-08-16": "Bennington Battle Day", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-03-01": "Town Meeting Day", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-08-16": "Bennington Battle Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-03-07": "Town Meeting Day", @@ -883,7 +883,7 @@ "2023-07-04": "Independence Day", "2023-08-16": "Bennington Battle Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -906,7 +906,7 @@ "2025-05-26": "Memorial Day", "2025-06-19": "Juneteenth National Independence Day", "2025-07-04": "Independence Day", - "2025-08-15": "Bennington Battle Day (Observed)", + "2025-08-15": "Bennington Battle Day (observed)", "2025-08-16": "Bennington Battle Day", "2025-09-01": "Labor Day", "2025-11-11": "Veterans Day", @@ -918,10 +918,10 @@ "2026-03-03": "Town Meeting Day", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-08-16": "Bennington Battle Day", - "2026-08-17": "Bennington Battle Day (Observed)", + "2026-08-17": "Bennington Battle Day (observed)", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", "2026-11-26": "Thanksgiving", @@ -931,17 +931,17 @@ "2027-02-15": "Washington's Birthday", "2027-03-02": "Town Meeting Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-08-16": "Bennington Battle Day", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -951,7 +951,7 @@ "2028-07-04": "Independence Day", "2028-08-16": "Bennington Battle Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -965,7 +965,7 @@ "2029-08-16": "Bennington Battle Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -987,7 +987,7 @@ "2031-05-26": "Memorial Day", "2031-06-19": "Juneteenth National Independence Day", "2031-07-04": "Independence Day", - "2031-08-15": "Bennington Battle Day (Observed)", + "2031-08-15": "Bennington Battle Day (observed)", "2031-08-16": "Bennington Battle Day", "2031-09-01": "Labor Day", "2031-11-11": "Veterans Day", @@ -998,33 +998,33 @@ "2032-02-16": "Washington's Birthday", "2032-03-02": "Town Meeting Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-08-16": "Bennington Battle Day", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-03-01": "Town Meeting Day", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-08-16": "Bennington Battle Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-03-07": "Town Meeting Day", @@ -1033,7 +1033,7 @@ "2034-07-04": "Independence Day", "2034-08-16": "Bennington Battle Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1047,7 +1047,7 @@ "2035-08-16": "Bennington Battle Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -1057,7 +1057,7 @@ "2036-05-26": "Memorial Day", "2036-06-19": "Juneteenth National Independence Day", "2036-07-04": "Independence Day", - "2036-08-15": "Bennington Battle Day (Observed)", + "2036-08-15": "Bennington Battle Day (observed)", "2036-08-16": "Bennington Battle Day", "2036-09-01": "Labor Day", "2036-11-11": "Veterans Day", @@ -1069,10 +1069,10 @@ "2037-03-03": "Town Meeting Day", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-08-16": "Bennington Battle Day", - "2037-08-17": "Bennington Battle Day (Observed)", + "2037-08-17": "Bennington Battle Day (observed)", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", "2037-11-26": "Thanksgiving", @@ -1082,33 +1082,33 @@ "2038-02-15": "Washington's Birthday", "2038-03-02": "Town Meeting Day", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-08-16": "Bennington Battle Day", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-03-01": "Town Meeting Day", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-08-16": "Bennington Battle Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-06": "Town Meeting Day", @@ -1118,7 +1118,7 @@ "2040-08-16": "Bennington Battle Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -1140,7 +1140,7 @@ "2042-05-26": "Memorial Day", "2042-06-19": "Juneteenth National Independence Day", "2042-07-04": "Independence Day", - "2042-08-15": "Bennington Battle Day (Observed)", + "2042-08-15": "Bennington Battle Day (observed)", "2042-08-16": "Bennington Battle Day", "2042-09-01": "Labor Day", "2042-11-11": "Veterans Day", @@ -1152,10 +1152,10 @@ "2043-03-03": "Town Meeting Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-08-16": "Bennington Battle Day", - "2043-08-17": "Bennington Battle Day (Observed)", + "2043-08-17": "Bennington Battle Day (observed)", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", "2043-11-26": "Thanksgiving", @@ -1166,16 +1166,16 @@ "2044-03-01": "Town Meeting Day", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-08-16": "Bennington Battle Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-03-07": "Town Meeting Day", @@ -1184,7 +1184,7 @@ "2045-07-04": "Independence Day", "2045-08-16": "Bennington Battle Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1198,7 +1198,7 @@ "2046-08-16": "Bennington Battle Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -1219,10 +1219,10 @@ "2048-03-03": "Town Meeting Day", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-08-16": "Bennington Battle Day", - "2048-08-17": "Bennington Battle Day (Observed)", + "2048-08-17": "Bennington Battle Day (observed)", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", "2048-11-26": "Thanksgiving", @@ -1232,29 +1232,29 @@ "2049-02-15": "Washington's Birthday", "2049-03-02": "Town Meeting Day", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-08-16": "Bennington Battle Day", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-03-01": "Town Meeting Day", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-08-16": "Bennington Battle Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_WA.json b/snapshots/countries/US_WA.json index ba4f0854e..5fc4393a4 100644 --- a/snapshots/countries/US_WA.json +++ b/snapshots/countries/US_WA.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -639,15 +639,15 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -658,7 +658,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -674,7 +674,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -684,37 +684,37 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -753,16 +753,16 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -770,7 +770,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -782,7 +782,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -809,37 +809,37 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -851,7 +851,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -869,7 +869,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -879,30 +879,30 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -910,7 +910,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -938,7 +938,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -949,22 +949,22 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -976,7 +976,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -994,7 +994,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1004,26 +1004,26 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_WI.json b/snapshots/countries/US_WI.json index 72c9cb605..a25c2dcc6 100644 --- a/snapshots/countries/US_WI.json +++ b/snapshots/countries/US_WI.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -238,13 +238,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-15": "Susan B. Anthony Day", "1977-02-21": "Washington's Birthday", @@ -254,15 +254,15 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-15": "Susan B. Anthony Day", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -273,7 +273,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -289,7 +289,7 @@ "1981-02-15": "Susan B. Anthony Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -299,13 +299,13 @@ "1982-02-15": "Susan B. Anthony Day; Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-15": "Susan B. Anthony Day", "1983-02-21": "Washington's Birthday", @@ -315,16 +315,16 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-15": "Susan B. Anthony Day", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -351,7 +351,7 @@ "1987-02-15": "Susan B. Anthony Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -366,16 +366,16 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-15": "Susan B. Anthony Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -387,7 +387,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -405,7 +405,7 @@ "1992-02-15": "Susan B. Anthony Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -416,13 +416,13 @@ "1993-02-15": "Susan B. Anthony Day; Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-15": "Susan B. Anthony Day", @@ -433,16 +433,16 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-15": "Susan B. Anthony Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -471,7 +471,7 @@ "1998-02-15": "Susan B. Anthony Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -482,13 +482,13 @@ "1999-02-15": "Susan B. Anthony Day; Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-15": "Susan B. Anthony Day", @@ -496,7 +496,7 @@ "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -508,7 +508,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -537,13 +537,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-15": "Susan B. Anthony Day", @@ -554,16 +554,16 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-15": "Susan B. Anthony Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -575,7 +575,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -593,7 +593,7 @@ "2009-02-15": "Susan B. Anthony Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -604,13 +604,13 @@ "2010-02-15": "Susan B. Anthony Day; Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-15": "Susan B. Anthony Day", @@ -621,9 +621,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-15": "Susan B. Anthony Day", "2012-02-20": "Washington's Birthday", @@ -631,7 +631,7 @@ "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-24": "Christmas Eve", "2012-12-25": "Christmas Day", @@ -665,7 +665,7 @@ "2015-02-15": "Susan B. Anthony Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -681,24 +681,24 @@ "2016-09-05": "Labor Day", "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", - "2016-12-23": "Christmas Eve (Observed)", + "2016-12-23": "Christmas Eve (observed)", "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", - "2016-12-30": "New Year's Eve (Observed)", + "2016-12-26": "Christmas Day (observed)", + "2016-12-30": "New Year's Eve (observed)", "2016-12-31": "New Year's Eve", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-15": "Susan B. Anthony Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", - "2017-12-22": "Christmas Eve (Observed)", + "2017-12-22": "Christmas Eve (observed)", "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2017-12-31": "New Year's Eve", @@ -710,7 +710,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", @@ -732,7 +732,7 @@ "2020-02-15": "Susan B. Anthony Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -744,36 +744,36 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Susan B. Anthony Day; Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-23": "Christmas Eve (Observed)", - "2021-12-24": "Christmas Day (Observed); Christmas Eve", + "2021-12-23": "Christmas Eve (observed)", + "2021-12-24": "Christmas Day (observed); Christmas Eve", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed); New Year's Eve", + "2021-12-31": "New Year's Day (observed); New Year's Eve", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-15": "Susan B. Anthony Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", - "2022-12-23": "Christmas Eve (Observed)", + "2022-12-23": "Christmas Eve (observed)", "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", - "2022-12-30": "New Year's Eve (Observed)", + "2022-12-26": "Christmas Day (observed)", + "2022-12-30": "New Year's Eve (observed)", "2022-12-31": "New Year's Eve", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-15": "Susan B. Anthony Day", "2023-02-20": "Washington's Birthday", @@ -781,10 +781,10 @@ "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", - "2023-12-22": "Christmas Eve (Observed)", + "2023-12-22": "Christmas Eve (observed)", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2023-12-31": "New Year's Eve", @@ -820,7 +820,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -832,17 +832,17 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Susan B. Anthony Day; Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-23": "Christmas Eve (Observed)", - "2027-12-24": "Christmas Day (Observed); Christmas Eve", + "2027-12-23": "Christmas Eve (observed)", + "2027-12-24": "Christmas Day (observed); Christmas Eve", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed); New Year's Eve", + "2027-12-31": "New Year's Day (observed); New Year's Eve", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-15": "Susan B. Anthony Day", @@ -851,10 +851,10 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", - "2028-12-22": "Christmas Eve (Observed)", + "2028-12-22": "Christmas Eve (observed)", "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2028-12-31": "New Year's Eve", @@ -867,7 +867,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", @@ -903,36 +903,36 @@ "2032-02-15": "Susan B. Anthony Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-23": "Christmas Eve (Observed)", - "2032-12-24": "Christmas Day (Observed); Christmas Eve", + "2032-12-23": "Christmas Eve (observed)", + "2032-12-24": "Christmas Day (observed); Christmas Eve", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed); New Year's Eve", + "2032-12-31": "New Year's Day (observed); New Year's Eve", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-15": "Susan B. Anthony Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", - "2033-12-23": "Christmas Eve (Observed)", + "2033-12-23": "Christmas Eve (observed)", "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", - "2033-12-30": "New Year's Eve (Observed)", + "2033-12-26": "Christmas Day (observed)", + "2033-12-30": "New Year's Eve (observed)", "2033-12-31": "New Year's Eve", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-15": "Susan B. Anthony Day", "2034-02-20": "Washington's Birthday", @@ -940,10 +940,10 @@ "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", - "2034-12-22": "Christmas Eve (Observed)", + "2034-12-22": "Christmas Eve (observed)", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2034-12-31": "New Year's Eve", @@ -956,7 +956,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", @@ -980,7 +980,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -992,36 +992,36 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Susan B. Anthony Day; Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-23": "Christmas Eve (Observed)", - "2038-12-24": "Christmas Day (Observed); Christmas Eve", + "2038-12-23": "Christmas Eve (observed)", + "2038-12-24": "Christmas Day (observed); Christmas Eve", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed); New Year's Eve", + "2038-12-31": "New Year's Day (observed); New Year's Eve", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-15": "Susan B. Anthony Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", - "2039-12-23": "Christmas Eve (Observed)", + "2039-12-23": "Christmas Eve (observed)", "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", - "2039-12-30": "New Year's Eve (Observed)", + "2039-12-26": "Christmas Day (observed)", + "2039-12-30": "New Year's Eve (observed)", "2039-12-31": "New Year's Eve", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-15": "Susan B. Anthony Day", "2040-02-20": "Washington's Birthday", @@ -1030,7 +1030,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", @@ -1067,7 +1067,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -1080,19 +1080,19 @@ "2044-02-15": "Susan B. Anthony Day; Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", - "2044-12-23": "Christmas Eve (Observed)", + "2044-12-23": "Christmas Eve (observed)", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", - "2044-12-30": "New Year's Eve (Observed)", + "2044-12-26": "Christmas Day (observed)", + "2044-12-30": "New Year's Eve (observed)", "2044-12-31": "New Year's Eve", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-15": "Susan B. Anthony Day", "2045-02-20": "Washington's Birthday", @@ -1100,10 +1100,10 @@ "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", - "2045-12-22": "Christmas Eve (Observed)", + "2045-12-22": "Christmas Eve (observed)", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2045-12-31": "New Year's Eve", @@ -1116,7 +1116,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", @@ -1140,7 +1140,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1152,32 +1152,32 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Susan B. Anthony Day; Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-23": "Christmas Eve (Observed)", - "2049-12-24": "Christmas Day (Observed); Christmas Eve", + "2049-12-23": "Christmas Eve (observed)", + "2049-12-24": "Christmas Day (observed); Christmas Eve", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed); New Year's Eve", + "2049-12-31": "New Year's Day (observed); New Year's Eve", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-15": "Susan B. Anthony Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", - "2050-12-23": "Christmas Eve (Observed)", + "2050-12-23": "Christmas Eve (observed)", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)", - "2050-12-30": "New Year's Eve (Observed)", + "2050-12-26": "Christmas Day (observed)", + "2050-12-30": "New Year's Eve (observed)", "2050-12-31": "New Year's Eve" } diff --git a/snapshots/countries/US_WV.json b/snapshots/countries/US_WV.json index 439ba5c95..1829332ff 100644 --- a/snapshots/countries/US_WV.json +++ b/snapshots/countries/US_WV.json @@ -1,13 +1,13 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-06-20": "West Virginia Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -19,7 +19,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -35,9 +35,9 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-06-19": "West Virginia Day (Observed)", + "1953-06-19": "West Virginia Day (observed)", "1953-06-20": "West Virginia Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", @@ -48,16 +48,16 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-06-20": "West Virginia Day", - "1954-06-21": "West Virginia Day (Observed)", + "1954-06-21": "West Virginia Day (observed)", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -68,9 +68,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-06-20": "West Virginia Day", @@ -78,7 +78,7 @@ "1956-09-03": "Labor Day", "1956-10-12": "Columbus Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -104,9 +104,9 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-06-19": "West Virginia Day (Observed)", + "1959-06-19": "West Virginia Day (observed)", "1959-06-20": "West Virginia Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day", @@ -123,16 +123,16 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-06-20": "West Virginia Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -144,7 +144,7 @@ "1962-09-03": "Labor Day", "1962-10-12": "Columbus Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -160,9 +160,9 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-06-19": "West Virginia Day (Observed)", + "1964-06-19": "West Virginia Day (observed)", "1964-06-20": "West Virginia Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day", @@ -173,16 +173,16 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-06-20": "West Virginia Day", - "1965-06-21": "West Virginia Day (Observed)", + "1965-06-21": "West Virginia Day (observed)", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -193,16 +193,16 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-06-20": "West Virginia Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -229,9 +229,9 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-06-19": "West Virginia Day (Observed)", + "1970-06-19": "West Virginia Day (observed)", "1970-06-20": "West Virginia Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day", @@ -242,16 +242,16 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-06-20": "West Virginia Day", - "1971-06-21": "West Virginia Day (Observed)", + "1971-06-21": "West Virginia Day (observed)", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -297,17 +297,17 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-06-20": "West Virginia Day", - "1976-06-21": "West Virginia Day (Observed)", + "1976-06-21": "West Virginia Day (observed)", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", "1976-11-26": "Day After Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -319,16 +319,16 @@ "1977-11-24": "Thanksgiving", "1977-11-25": "Day After Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-06-20": "West Virginia Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-11-24": "Day After Thanksgiving", @@ -341,7 +341,7 @@ "1979-09-03": "Labor Day", "1979-10-08": "Columbus Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-11-23": "Day After Thanksgiving", "1979-12-25": "Christmas Day", @@ -359,9 +359,9 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-06-19": "West Virginia Day (Observed)", + "1981-06-19": "West Virginia Day (observed)", "1981-06-20": "West Virginia Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day", @@ -373,17 +373,17 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-06-20": "West Virginia Day", - "1982-06-21": "West Virginia Day (Observed)", + "1982-06-21": "West Virginia Day (observed)", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", "1982-11-26": "Day After Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -395,9 +395,9 @@ "1983-11-24": "Thanksgiving", "1983-11-25": "Day After Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-06-20": "West Virginia Day", @@ -405,7 +405,7 @@ "1984-09-03": "Labor Day", "1984-10-08": "Columbus Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-11-23": "Day After Thanksgiving", "1984-12-25": "Christmas Day", @@ -436,9 +436,9 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-06-19": "West Virginia Day (Observed)", + "1987-06-19": "West Virginia Day (observed)", "1987-06-20": "West Virginia Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day", @@ -458,9 +458,9 @@ "1988-11-24": "Thanksgiving", "1988-11-25": "Day After Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", @@ -468,7 +468,7 @@ "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-11-24": "Day After Thanksgiving", @@ -482,7 +482,7 @@ "1990-09-03": "Labor Day", "1990-10-08": "Columbus Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-11-23": "Day After Thanksgiving", "1990-12-25": "Christmas Day", @@ -502,9 +502,9 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-06-19": "West Virginia Day (Observed)", + "1992-06-19": "West Virginia Day (observed)", "1992-06-20": "West Virginia Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day", @@ -517,17 +517,17 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-06-20": "West Virginia Day", - "1993-06-21": "West Virginia Day (Observed)", + "1993-06-21": "West Virginia Day (observed)", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", "1993-11-26": "Day After Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -540,9 +540,9 @@ "1994-11-24": "Thanksgiving", "1994-11-25": "Day After Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", @@ -550,7 +550,7 @@ "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-11-24": "Day After Thanksgiving", @@ -583,9 +583,9 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-06-19": "West Virginia Day (Observed)", + "1998-06-19": "West Virginia Day (observed)", "1998-06-20": "West Virginia Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day", @@ -598,17 +598,17 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-06-20": "West Virginia Day", - "1999-06-21": "West Virginia Day (Observed)", + "1999-06-21": "West Virginia Day (observed)", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", "1999-11-26": "Day After Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", @@ -617,7 +617,7 @@ "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-11-24": "Day After Thanksgiving", @@ -631,7 +631,7 @@ "2001-09-03": "Labor Day", "2001-10-08": "Columbus Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-11-23": "Day After Thanksgiving", "2001-12-25": "Christmas Day", @@ -664,17 +664,17 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-06-20": "West Virginia Day", - "2004-06-21": "West Virginia Day (Observed)", + "2004-06-21": "West Virginia Day (observed)", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", "2004-11-26": "Day After Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -687,9 +687,9 @@ "2005-11-24": "Thanksgiving", "2005-11-25": "Day After Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", @@ -697,7 +697,7 @@ "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-11-24": "Day After Thanksgiving", @@ -711,7 +711,7 @@ "2007-09-03": "Labor Day", "2007-10-08": "Columbus Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-11-23": "Day After Thanksgiving", "2007-12-25": "Christmas Day", @@ -732,9 +732,9 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-06-19": "West Virginia Day (Observed)", + "2009-06-19": "West Virginia Day (observed)", "2009-06-20": "West Virginia Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day", @@ -747,18 +747,18 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-06-20": "West Virginia Day", - "2010-06-21": "West Virginia Day (Observed)", + "2010-06-21": "West Virginia Day (observed)", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day", "2010-11-02": "Election Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", "2010-11-26": "Day After Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -771,9 +771,9 @@ "2011-11-24": "Thanksgiving", "2011-11-25": "Day After Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", @@ -783,7 +783,7 @@ "2012-10-08": "Columbus Day", "2012-11-06": "Election Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-11-23": "Day After Thanksgiving", "2012-12-25": "Christmas Day", @@ -816,9 +816,9 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-06-19": "West Virginia Day (Observed)", + "2015-06-19": "West Virginia Day (observed)", "2015-06-20": "West Virginia Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day", @@ -839,9 +839,9 @@ "2016-11-24": "Thanksgiving", "2016-11-25": "Day After Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", @@ -849,7 +849,7 @@ "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-11-24": "Day After Thanksgiving", @@ -864,7 +864,7 @@ "2018-10-08": "Columbus Day", "2018-11-06": "Election Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-11-23": "Day After Thanksgiving", "2018-12-25": "Christmas Day", @@ -884,9 +884,9 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-06-19": "West Virginia Day (Observed)", + "2020-06-19": "West Virginia Day (observed)", "2020-06-20": "West Virginia Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day", @@ -899,26 +899,26 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-06-20": "West Virginia Day", - "2021-06-21": "West Virginia Day (Observed)", + "2021-06-21": "West Virginia Day (observed)", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", "2021-11-26": "Day After Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed); West Virginia Day", + "2022-06-20": "Juneteenth National Independence Day (observed); West Virginia Day", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-10-10": "Columbus Day", @@ -927,9 +927,9 @@ "2022-11-24": "Thanksgiving", "2022-11-25": "Day After Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", @@ -938,7 +938,7 @@ "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-11-24": "Day After Thanksgiving", @@ -974,9 +974,9 @@ "2026-01-19": "Martin Luther King Jr. Day", "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", - "2026-06-19": "Juneteenth National Independence Day; West Virginia Day (Observed)", + "2026-06-19": "Juneteenth National Independence Day; West Virginia Day (observed)", "2026-06-20": "West Virginia Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day", @@ -989,20 +989,20 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-06-20": "West Virginia Day", - "2027-06-21": "West Virginia Day (Observed)", + "2027-06-21": "West Virginia Day (observed)", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", "2027-11-26": "Day After Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -1013,7 +1013,7 @@ "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day", "2028-11-07": "Election Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-11-24": "Day After Thanksgiving", @@ -1028,7 +1028,7 @@ "2029-09-03": "Labor Day", "2029-10-08": "Columbus Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-11-23": "Day After Thanksgiving", "2029-12-25": "Christmas Day", @@ -1063,27 +1063,27 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-06-20": "West Virginia Day", - "2032-06-21": "West Virginia Day (Observed)", + "2032-06-21": "West Virginia Day (observed)", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day", "2032-11-02": "Election Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", "2032-11-26": "Day After Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed); West Virginia Day", + "2033-06-20": "Juneteenth National Independence Day (observed); West Virginia Day", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-10-10": "Columbus Day", @@ -1091,9 +1091,9 @@ "2033-11-24": "Thanksgiving", "2033-11-25": "Day After Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", @@ -1103,7 +1103,7 @@ "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day", "2034-11-07": "Election Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-11-24": "Day After Thanksgiving", @@ -1118,7 +1118,7 @@ "2035-09-03": "Labor Day", "2035-10-08": "Columbus Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-11-23": "Day After Thanksgiving", "2035-12-25": "Christmas Day", @@ -1140,9 +1140,9 @@ "2037-01-19": "Martin Luther King Jr. Day", "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", - "2037-06-19": "Juneteenth National Independence Day; West Virginia Day (Observed)", + "2037-06-19": "Juneteenth National Independence Day; West Virginia Day (observed)", "2037-06-20": "West Virginia Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day", @@ -1154,27 +1154,27 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-06-20": "West Virginia Day", - "2038-06-21": "West Virginia Day (Observed)", + "2038-06-21": "West Virginia Day (observed)", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day", "2038-11-02": "Election Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", "2038-11-26": "Day After Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed); West Virginia Day", + "2039-06-20": "Juneteenth National Independence Day (observed); West Virginia Day", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-10-10": "Columbus Day", @@ -1182,9 +1182,9 @@ "2039-11-24": "Thanksgiving", "2039-11-25": "Day After Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -1195,7 +1195,7 @@ "2040-10-08": "Columbus Day", "2040-11-06": "Election Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-11-23": "Day After Thanksgiving", "2040-12-25": "Christmas Day", @@ -1230,9 +1230,9 @@ "2043-01-19": "Martin Luther King Jr. Day", "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", - "2043-06-19": "Juneteenth National Independence Day; West Virginia Day (Observed)", + "2043-06-19": "Juneteenth National Independence Day; West Virginia Day (observed)", "2043-06-20": "West Virginia Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day", @@ -1245,7 +1245,7 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed); West Virginia Day", + "2044-06-20": "Juneteenth National Independence Day (observed); West Virginia Day", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-10-10": "Columbus Day", @@ -1254,9 +1254,9 @@ "2044-11-24": "Thanksgiving", "2044-11-25": "Day After Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", @@ -1265,7 +1265,7 @@ "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-11-24": "Day After Thanksgiving", @@ -1281,7 +1281,7 @@ "2046-10-08": "Columbus Day", "2046-11-06": "Election Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-11-23": "Day After Thanksgiving", "2046-12-25": "Christmas Day", @@ -1302,9 +1302,9 @@ "2048-01-20": "Martin Luther King Jr. Day", "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", - "2048-06-19": "Juneteenth National Independence Day; West Virginia Day (Observed)", + "2048-06-19": "Juneteenth National Independence Day; West Virginia Day (observed)", "2048-06-20": "West Virginia Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day", @@ -1317,26 +1317,26 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-06-20": "West Virginia Day", - "2049-06-21": "West Virginia Day (Observed)", + "2049-06-21": "West Virginia Day (observed)", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", "2049-11-26": "Day After Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed); West Virginia Day", + "2050-06-20": "Juneteenth National Independence Day (observed); West Virginia Day", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-10-10": "Columbus Day", @@ -1345,5 +1345,5 @@ "2050-11-24": "Thanksgiving", "2050-11-25": "Day After Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/US_WY.json b/snapshots/countries/US_WY.json index ba4f0854e..5fc4393a4 100644 --- a/snapshots/countries/US_WY.json +++ b/snapshots/countries/US_WY.json @@ -1,11 +1,11 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-02-22": "Washington's Birthday", "1950-05-30": "Memorial Day", "1950-07-04": "Independence Day", "1950-09-04": "Labor Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -15,7 +15,7 @@ "1951-07-04": "Independence Day", "1951-09-03": "Labor Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -29,7 +29,7 @@ "1953-01-01": "New Year's Day", "1953-02-22": "Washington's Birthday", "1953-05-30": "Memorial Day", - "1953-07-03": "Independence Day (Observed)", + "1953-07-03": "Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-11-11": "Armistice Day", @@ -39,13 +39,13 @@ "1954-02-22": "Washington's Birthday", "1954-05-30": "Memorial Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-02-22": "Washington's Birthday", "1955-05-30": "Memorial Day", @@ -54,15 +54,15 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed)", + "1955-12-26": "Christmas Day (observed)", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-05-30": "Memorial Day", "1956-07-04": "Independence Day", "1956-09-03": "Labor Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", @@ -84,7 +84,7 @@ "1959-01-01": "New Year's Day", "1959-02-22": "Washington's Birthday", "1959-05-30": "Memorial Day", - "1959-07-03": "Independence Day (Observed)", + "1959-07-03": "Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-11-11": "Veterans Day", @@ -98,14 +98,14 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed)", + "1960-12-26": "Christmas Day (observed)", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-05-30": "Memorial Day", "1961-07-04": "Independence Day", "1961-09-04": "Labor Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -115,7 +115,7 @@ "1962-07-04": "Independence Day", "1962-09-03": "Labor Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", @@ -129,7 +129,7 @@ "1964-01-01": "New Year's Day", "1964-02-22": "Washington's Birthday", "1964-05-30": "Memorial Day", - "1964-07-03": "Independence Day (Observed)", + "1964-07-03": "Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-11-11": "Veterans Day", @@ -139,13 +139,13 @@ "1965-02-22": "Washington's Birthday", "1965-05-30": "Memorial Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-02-22": "Washington's Birthday", "1966-05-30": "Memorial Day", @@ -154,14 +154,14 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-05-30": "Memorial Day", "1967-07-04": "Independence Day", "1967-09-04": "Labor Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -184,7 +184,7 @@ "1970-01-01": "New Year's Day", "1970-02-22": "Washington's Birthday", "1970-05-30": "Memorial Day", - "1970-07-03": "Independence Day (Observed)", + "1970-07-03": "Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-11-11": "Veterans Day", @@ -194,13 +194,13 @@ "1971-02-15": "Washington's Birthday", "1971-05-31": "Memorial Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-25": "Veterans Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-02-21": "Washington's Birthday", "1972-05-29": "Memorial Day", @@ -237,13 +237,13 @@ "1976-02-16": "Washington's Birthday", "1976-05-31": "Memorial Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-25": "Veterans Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-02-21": "Washington's Birthday", "1977-05-30": "Memorial Day", @@ -252,14 +252,14 @@ "1977-10-24": "Veterans Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-05-29": "Memorial Day", "1978-07-04": "Independence Day", "1978-09-04": "Labor Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -269,7 +269,7 @@ "1979-07-04": "Independence Day", "1979-09-03": "Labor Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", @@ -283,7 +283,7 @@ "1981-01-01": "New Year's Day", "1981-02-16": "Washington's Birthday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-11-11": "Veterans Day", @@ -293,13 +293,13 @@ "1982-02-15": "Washington's Birthday", "1982-05-31": "Memorial Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-02-21": "Washington's Birthday", "1983-05-30": "Memorial Day", @@ -308,15 +308,15 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-05-28": "Memorial Day", "1984-07-04": "Independence Day", "1984-09-03": "Labor Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", @@ -340,7 +340,7 @@ "1987-01-19": "Martin Luther King Jr. Day", "1987-02-16": "Washington's Birthday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-11-11": "Veterans Day", @@ -355,15 +355,15 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Washington's Birthday", "1989-05-29": "Memorial Day", "1989-07-04": "Independence Day", "1989-09-04": "Labor Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -374,7 +374,7 @@ "1990-07-04": "Independence Day", "1990-09-03": "Labor Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", @@ -390,7 +390,7 @@ "1992-01-20": "Martin Luther King Jr. Day", "1992-02-17": "Washington's Birthday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-11-11": "Veterans Day", @@ -401,13 +401,13 @@ "1993-02-15": "Washington's Birthday", "1993-05-31": "Memorial Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-17": "Martin Luther King Jr. Day", "1994-02-21": "Washington's Birthday", @@ -417,15 +417,15 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Washington's Birthday", "1995-05-29": "Memorial Day", "1995-07-04": "Independence Day", "1995-09-04": "Labor Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -451,7 +451,7 @@ "1998-01-19": "Martin Luther King Jr. Day", "1998-02-16": "Washington's Birthday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-11-11": "Veterans Day", @@ -462,20 +462,20 @@ "1999-02-15": "Washington's Birthday", "1999-05-31": "Memorial Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-05-29": "Memorial Day", "2000-07-04": "Independence Day", "2000-09-04": "Labor Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -486,7 +486,7 @@ "2001-07-04": "Independence Day", "2001-09-03": "Labor Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", @@ -512,13 +512,13 @@ "2004-02-16": "Washington's Birthday", "2004-05-31": "Memorial Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", @@ -528,15 +528,15 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-05-29": "Memorial Day", "2006-07-04": "Independence Day", "2006-09-04": "Labor Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -547,7 +547,7 @@ "2007-07-04": "Independence Day", "2007-09-03": "Labor Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", @@ -563,7 +563,7 @@ "2009-01-19": "Martin Luther King Jr. Day", "2009-02-16": "Washington's Birthday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-11-11": "Veterans Day", @@ -574,13 +574,13 @@ "2010-02-15": "Washington's Birthday", "2010-05-31": "Memorial Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", @@ -590,16 +590,16 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-05-28": "Memorial Day", "2012-07-04": "Independence Day", "2012-09-03": "Labor Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2013-01-01": "New Year's Day", @@ -624,7 +624,7 @@ "2015-01-19": "Martin Luther King Jr. Day", "2015-02-16": "Washington's Birthday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-11-11": "Veterans Day", @@ -639,15 +639,15 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-05-29": "Memorial Day", "2017-07-04": "Independence Day", "2017-09-04": "Labor Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -658,7 +658,7 @@ "2018-07-04": "Independence Day", "2018-09-03": "Labor Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2019-01-01": "New Year's Day", @@ -674,7 +674,7 @@ "2020-01-20": "Martin Luther King Jr. Day", "2020-02-17": "Washington's Birthday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-11-11": "Veterans Day", @@ -684,37 +684,37 @@ "2021-01-18": "Martin Luther King Jr. Day", "2021-02-15": "Washington's Birthday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-05-29": "Memorial Day", "2023-06-19": "Juneteenth National Independence Day", "2023-07-04": "Independence Day", "2023-09-04": "Labor Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -743,7 +743,7 @@ "2026-02-16": "Washington's Birthday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-11-11": "Veterans Day", @@ -753,16 +753,16 @@ "2027-01-18": "Martin Luther King Jr. Day", "2027-02-15": "Washington's Birthday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", @@ -770,7 +770,7 @@ "2028-06-19": "Juneteenth National Independence Day", "2028-07-04": "Independence Day", "2028-09-04": "Labor Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -782,7 +782,7 @@ "2029-07-04": "Independence Day", "2029-09-03": "Labor Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", @@ -809,37 +809,37 @@ "2032-01-19": "Martin Luther King Jr. Day", "2032-02-16": "Washington's Birthday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-05-29": "Memorial Day", "2034-06-19": "Juneteenth National Independence Day", "2034-07-04": "Independence Day", "2034-09-04": "Labor Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -851,7 +851,7 @@ "2035-07-04": "Independence Day", "2035-09-03": "Labor Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", @@ -869,7 +869,7 @@ "2037-02-16": "Washington's Birthday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-11-11": "Veterans Day", @@ -879,30 +879,30 @@ "2038-01-18": "Martin Luther King Jr. Day", "2038-02-15": "Washington's Birthday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-05-28": "Memorial Day", @@ -910,7 +910,7 @@ "2040-07-04": "Independence Day", "2040-09-03": "Labor Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", @@ -938,7 +938,7 @@ "2043-02-16": "Washington's Birthday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-11-11": "Veterans Day", @@ -949,22 +949,22 @@ "2044-02-15": "Washington's Birthday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-05-29": "Memorial Day", "2045-06-19": "Juneteenth National Independence Day", "2045-07-04": "Independence Day", "2045-09-04": "Labor Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -976,7 +976,7 @@ "2046-07-04": "Independence Day", "2046-09-03": "Labor Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", @@ -994,7 +994,7 @@ "2048-02-17": "Washington's Birthday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-11-11": "Veterans Day", @@ -1004,26 +1004,26 @@ "2049-01-18": "Martin Luther King Jr. Day", "2049-02-15": "Washington's Birthday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/VI_COMMON.json b/snapshots/countries/VI_COMMON.json index 454ebf795..5d271a0e8 100644 --- a/snapshots/countries/VI_COMMON.json +++ b/snapshots/countries/VI_COMMON.json @@ -1,6 +1,6 @@ { "1950-01-01": "New Year's Day", - "1950-01-02": "New Year's Day (Observed)", + "1950-01-02": "New Year's Day (observed)", "1950-01-06": "Three Kings Day", "1950-02-22": "Presidents' Day", "1950-03-31": "Transfer Day", @@ -13,7 +13,7 @@ "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day and Puerto Rico Friendship Day", "1950-11-01": "Liberty Day", - "1950-11-10": "Armistice Day (Observed)", + "1950-11-10": "Armistice Day (observed)", "1950-11-11": "Armistice Day", "1950-11-23": "Thanksgiving", "1950-12-25": "Christmas Day", @@ -32,7 +32,7 @@ "1951-10-12": "Columbus Day and Puerto Rico Friendship Day", "1951-11-01": "Liberty Day", "1951-11-11": "Armistice Day", - "1951-11-12": "Armistice Day (Observed)", + "1951-11-12": "Armistice Day (observed)", "1951-11-22": "Thanksgiving", "1951-12-25": "Christmas Day", "1951-12-26": "Christmas Second Day", @@ -61,7 +61,7 @@ "1953-04-03": "Good Friday", "1953-04-06": "Easter Monday", "1953-05-30": "Memorial Day", - "1953-07-03": "Emancipation Day; Independence Day (Observed)", + "1953-07-03": "Emancipation Day; Independence Day (observed)", "1953-07-04": "Independence Day", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -80,16 +80,16 @@ "1954-05-30": "Memorial Day", "1954-07-03": "Emancipation Day", "1954-07-04": "Independence Day", - "1954-07-05": "Independence Day (Observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-10-12": "Columbus Day and Puerto Rico Friendship Day", "1954-11-01": "Liberty Day", "1954-11-11": "Veterans Day", "1954-11-25": "Thanksgiving", - "1954-12-24": "Christmas Day (Observed)", + "1954-12-24": "Christmas Day (observed)", "1954-12-25": "Christmas Day", "1954-12-26": "Christmas Second Day", - "1954-12-31": "New Year's Day (Observed)", + "1954-12-31": "New Year's Day (observed)", "1955-01-01": "New Year's Day", "1955-01-06": "Three Kings Day", "1955-02-22": "Presidents' Day", @@ -106,9 +106,9 @@ "1955-11-11": "Veterans Day", "1955-11-24": "Thanksgiving", "1955-12-25": "Christmas Day", - "1955-12-26": "Christmas Day (Observed); Christmas Second Day", + "1955-12-26": "Christmas Day (observed); Christmas Second Day", "1956-01-01": "New Year's Day", - "1956-01-02": "New Year's Day (Observed)", + "1956-01-02": "New Year's Day (observed)", "1956-01-06": "Three Kings Day", "1956-02-22": "Presidents' Day", "1956-03-29": "Holy Thursday", @@ -122,7 +122,7 @@ "1956-10-12": "Columbus Day and Puerto Rico Friendship Day", "1956-11-01": "Liberty Day", "1956-11-11": "Veterans Day", - "1956-11-12": "Veterans Day (Observed)", + "1956-11-12": "Veterans Day (observed)", "1956-11-22": "Thanksgiving", "1956-12-25": "Christmas Day", "1956-12-26": "Christmas Second Day", @@ -168,7 +168,7 @@ "1959-03-30": "Easter Monday", "1959-03-31": "Transfer Day", "1959-05-30": "Memorial Day", - "1959-07-03": "Emancipation Day; Independence Day (Observed)", + "1959-07-03": "Emancipation Day; Independence Day (observed)", "1959-07-04": "Independence Day", "1959-09-07": "Labor Day", "1959-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -193,9 +193,9 @@ "1960-11-11": "Veterans Day", "1960-11-24": "Thanksgiving", "1960-12-25": "Christmas Day", - "1960-12-26": "Christmas Day (Observed); Christmas Second Day", + "1960-12-26": "Christmas Day (observed); Christmas Second Day", "1961-01-01": "New Year's Day", - "1961-01-02": "New Year's Day (Observed)", + "1961-01-02": "New Year's Day (observed)", "1961-01-06": "Three Kings Day", "1961-02-22": "Presidents' Day", "1961-03-30": "Holy Thursday", @@ -207,7 +207,7 @@ "1961-09-04": "Labor Day", "1961-10-12": "Columbus Day and Puerto Rico Friendship Day", "1961-11-01": "Liberty Day", - "1961-11-10": "Veterans Day (Observed)", + "1961-11-10": "Veterans Day (observed)", "1961-11-11": "Veterans Day", "1961-11-23": "Thanksgiving", "1961-12-25": "Christmas Day", @@ -226,7 +226,7 @@ "1962-10-12": "Columbus Day and Puerto Rico Friendship Day", "1962-11-01": "Liberty Day", "1962-11-11": "Veterans Day", - "1962-11-12": "Veterans Day (Observed)", + "1962-11-12": "Veterans Day (observed)", "1962-11-22": "Thanksgiving", "1962-12-25": "Christmas Day", "1962-12-26": "Christmas Second Day", @@ -255,7 +255,7 @@ "1964-03-30": "Easter Monday", "1964-03-31": "Transfer Day", "1964-05-30": "Memorial Day", - "1964-07-03": "Emancipation Day; Independence Day (Observed)", + "1964-07-03": "Emancipation Day; Independence Day (observed)", "1964-07-04": "Independence Day", "1964-09-07": "Labor Day", "1964-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -274,16 +274,16 @@ "1965-05-30": "Memorial Day", "1965-07-03": "Emancipation Day", "1965-07-04": "Independence Day", - "1965-07-05": "Independence Day (Observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-10-12": "Columbus Day and Puerto Rico Friendship Day", "1965-11-01": "Liberty Day", "1965-11-11": "Veterans Day", "1965-11-25": "Thanksgiving", - "1965-12-24": "Christmas Day (Observed)", + "1965-12-24": "Christmas Day (observed)", "1965-12-25": "Christmas Day", "1965-12-26": "Christmas Second Day", - "1965-12-31": "New Year's Day (Observed)", + "1965-12-31": "New Year's Day (observed)", "1966-01-01": "New Year's Day", "1966-01-06": "Three Kings Day", "1966-02-22": "Presidents' Day", @@ -300,9 +300,9 @@ "1966-11-11": "Veterans Day", "1966-11-24": "Thanksgiving", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed); Christmas Second Day", + "1966-12-26": "Christmas Day (observed); Christmas Second Day", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-01-06": "Three Kings Day", "1967-02-22": "Presidents' Day", "1967-03-23": "Holy Thursday", @@ -315,7 +315,7 @@ "1967-09-04": "Labor Day", "1967-10-12": "Columbus Day and Puerto Rico Friendship Day", "1967-11-01": "Liberty Day", - "1967-11-10": "Veterans Day (Observed)", + "1967-11-10": "Veterans Day (observed)", "1967-11-11": "Veterans Day", "1967-11-23": "Thanksgiving", "1967-12-25": "Christmas Day", @@ -362,7 +362,7 @@ "1970-03-30": "Easter Monday", "1970-03-31": "Transfer Day", "1970-05-30": "Memorial Day", - "1970-07-03": "Emancipation Day; Independence Day (Observed)", + "1970-07-03": "Emancipation Day; Independence Day (observed)", "1970-07-04": "Independence Day", "1970-09-07": "Labor Day", "1970-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -381,16 +381,16 @@ "1971-05-31": "Memorial Day", "1971-07-03": "Emancipation Day", "1971-07-04": "Independence Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-10-11": "Columbus Day and Puerto Rico Friendship Day", "1971-10-25": "Veterans Day", "1971-11-01": "Liberty Day", "1971-11-25": "Thanksgiving", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1971-12-25": "Christmas Day", "1971-12-26": "Christmas Second Day", - "1971-12-31": "New Year's Day (Observed)", + "1971-12-31": "New Year's Day (observed)", "1972-01-01": "New Year's Day", "1972-01-06": "Three Kings Day", "1972-02-21": "Presidents' Day", @@ -467,16 +467,16 @@ "1976-05-31": "Memorial Day", "1976-07-03": "Emancipation Day", "1976-07-04": "Independence Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-10-11": "Columbus Day and Puerto Rico Friendship Day", "1976-10-25": "Veterans Day", "1976-11-01": "Liberty Day", "1976-11-25": "Thanksgiving", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1976-12-25": "Christmas Day", "1976-12-26": "Christmas Second Day", - "1976-12-31": "New Year's Day (Observed)", + "1976-12-31": "New Year's Day (observed)", "1977-01-01": "New Year's Day", "1977-01-06": "Three Kings Day", "1977-02-21": "Presidents' Day", @@ -493,9 +493,9 @@ "1977-11-01": "Liberty Day", "1977-11-24": "Thanksgiving", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed); Christmas Second Day", + "1977-12-26": "Christmas Day (observed); Christmas Second Day", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-01-06": "Three Kings Day", "1978-02-20": "Presidents' Day", "1978-03-23": "Holy Thursday", @@ -508,7 +508,7 @@ "1978-09-04": "Labor Day", "1978-10-09": "Columbus Day and Puerto Rico Friendship Day", "1978-11-01": "Liberty Day", - "1978-11-10": "Veterans Day (Observed)", + "1978-11-10": "Veterans Day (observed)", "1978-11-11": "Veterans Day", "1978-11-23": "Thanksgiving", "1978-12-25": "Christmas Day", @@ -527,7 +527,7 @@ "1979-10-08": "Columbus Day and Puerto Rico Friendship Day", "1979-11-01": "Liberty Day", "1979-11-11": "Veterans Day", - "1979-11-12": "Veterans Day (Observed)", + "1979-11-12": "Veterans Day (observed)", "1979-11-22": "Thanksgiving", "1979-12-25": "Christmas Day", "1979-12-26": "Christmas Second Day", @@ -556,7 +556,7 @@ "1981-04-17": "Good Friday", "1981-04-20": "Easter Monday", "1981-05-25": "Memorial Day", - "1981-07-03": "Emancipation Day; Independence Day (Observed)", + "1981-07-03": "Emancipation Day; Independence Day (observed)", "1981-07-04": "Independence Day", "1981-09-07": "Labor Day", "1981-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -575,16 +575,16 @@ "1982-05-31": "Memorial Day", "1982-07-03": "Emancipation Day", "1982-07-04": "Independence Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-10-11": "Columbus Day and Puerto Rico Friendship Day", "1982-11-01": "Liberty Day", "1982-11-11": "Veterans Day", "1982-11-25": "Thanksgiving", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1982-12-25": "Christmas Day", "1982-12-26": "Christmas Second Day", - "1982-12-31": "New Year's Day (Observed)", + "1982-12-31": "New Year's Day (observed)", "1983-01-01": "New Year's Day", "1983-01-06": "Three Kings Day", "1983-02-21": "Presidents' Day", @@ -600,9 +600,9 @@ "1983-11-11": "Veterans Day", "1983-11-24": "Thanksgiving", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed); Christmas Second Day", + "1983-12-26": "Christmas Day (observed); Christmas Second Day", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-01-06": "Three Kings Day", "1984-02-20": "Presidents' Day", "1984-03-31": "Transfer Day", @@ -616,7 +616,7 @@ "1984-10-08": "Columbus Day and Puerto Rico Friendship Day", "1984-11-01": "Liberty Day", "1984-11-11": "Veterans Day", - "1984-11-12": "Veterans Day (Observed)", + "1984-11-12": "Veterans Day (observed)", "1984-11-22": "Thanksgiving", "1984-12-25": "Christmas Day", "1984-12-26": "Christmas Second Day", @@ -663,7 +663,7 @@ "1987-04-17": "Good Friday", "1987-04-20": "Easter Monday", "1987-05-25": "Memorial Day", - "1987-07-03": "Emancipation Day; Independence Day (Observed)", + "1987-07-03": "Emancipation Day; Independence Day (observed)", "1987-07-04": "Independence Day", "1987-09-07": "Labor Day", "1987-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -688,9 +688,9 @@ "1988-11-11": "Veterans Day", "1988-11-24": "Thanksgiving", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed); Christmas Second Day", + "1988-12-26": "Christmas Day (observed); Christmas Second Day", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-01-06": "Three Kings Day", "1989-01-16": "Martin Luther King Jr. Day", "1989-02-20": "Presidents' Day", @@ -704,7 +704,7 @@ "1989-09-04": "Labor Day", "1989-10-09": "Columbus Day and Puerto Rico Friendship Day", "1989-11-01": "Liberty Day", - "1989-11-10": "Veterans Day (Observed)", + "1989-11-10": "Veterans Day (observed)", "1989-11-11": "Veterans Day", "1989-11-23": "Thanksgiving", "1989-12-25": "Christmas Day", @@ -724,7 +724,7 @@ "1990-10-08": "Columbus Day and Puerto Rico Friendship Day", "1990-11-01": "Liberty Day", "1990-11-11": "Veterans Day", - "1990-11-12": "Veterans Day (Observed)", + "1990-11-12": "Veterans Day (observed)", "1990-11-22": "Thanksgiving", "1990-12-25": "Christmas Day", "1990-12-26": "Christmas Second Day", @@ -755,7 +755,7 @@ "1992-04-17": "Good Friday", "1992-04-20": "Easter Monday", "1992-05-25": "Memorial Day", - "1992-07-03": "Emancipation Day; Independence Day (Observed)", + "1992-07-03": "Emancipation Day; Independence Day (observed)", "1992-07-04": "Independence Day", "1992-09-07": "Labor Day", "1992-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -775,16 +775,16 @@ "1993-05-31": "Memorial Day", "1993-07-03": "Emancipation Day", "1993-07-04": "Independence Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-10-11": "Columbus Day and Puerto Rico Friendship Day", "1993-11-01": "Liberty Day", "1993-11-11": "Veterans Day", "1993-11-25": "Thanksgiving", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1993-12-25": "Christmas Day", "1993-12-26": "Christmas Second Day", - "1993-12-31": "New Year's Day (Observed)", + "1993-12-31": "New Year's Day (observed)", "1994-01-01": "New Year's Day", "1994-01-06": "Three Kings Day", "1994-01-17": "Martin Luther King Jr. Day", @@ -801,9 +801,9 @@ "1994-11-11": "Veterans Day", "1994-11-24": "Thanksgiving", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed); Christmas Second Day", + "1994-12-26": "Christmas Day (observed); Christmas Second Day", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-01-06": "Three Kings Day", "1995-01-16": "Martin Luther King Jr. Day", "1995-02-20": "Presidents' Day", @@ -817,7 +817,7 @@ "1995-09-04": "Labor Day", "1995-10-09": "Columbus Day and Puerto Rico Friendship Day", "1995-11-01": "Liberty Day", - "1995-11-10": "Veterans Day (Observed)", + "1995-11-10": "Veterans Day (observed)", "1995-11-11": "Veterans Day", "1995-11-23": "Thanksgiving", "1995-12-25": "Christmas Day", @@ -866,7 +866,7 @@ "1998-04-10": "Good Friday", "1998-04-13": "Easter Monday", "1998-05-25": "Memorial Day", - "1998-07-03": "Emancipation Day; Independence Day (Observed)", + "1998-07-03": "Emancipation Day; Independence Day (observed)", "1998-07-04": "Independence Day", "1998-09-07": "Labor Day", "1998-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -886,16 +886,16 @@ "1999-05-31": "Memorial Day", "1999-07-03": "Emancipation Day", "1999-07-04": "Independence Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-10-11": "Columbus Day and Puerto Rico Friendship Day", "1999-11-01": "Liberty Day", "1999-11-11": "Veterans Day", "1999-11-25": "Thanksgiving", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "1999-12-25": "Christmas Day", "1999-12-26": "Christmas Second Day", - "1999-12-31": "New Year's Day (Observed)", + "1999-12-31": "New Year's Day (observed)", "2000-01-01": "New Year's Day", "2000-01-06": "Three Kings Day", "2000-01-17": "Martin Luther King Jr. Day", @@ -910,7 +910,7 @@ "2000-09-04": "Labor Day", "2000-10-09": "Columbus Day and Puerto Rico Friendship Day", "2000-11-01": "Liberty Day", - "2000-11-10": "Veterans Day (Observed)", + "2000-11-10": "Veterans Day (observed)", "2000-11-11": "Veterans Day", "2000-11-23": "Thanksgiving", "2000-12-25": "Christmas Day", @@ -930,7 +930,7 @@ "2001-10-08": "Columbus Day and Puerto Rico Friendship Day", "2001-11-01": "Liberty Day", "2001-11-11": "Veterans Day", - "2001-11-12": "Veterans Day (Observed)", + "2001-11-12": "Veterans Day (observed)", "2001-11-22": "Thanksgiving", "2001-12-25": "Christmas Day", "2001-12-26": "Christmas Second Day", @@ -981,16 +981,16 @@ "2004-05-31": "Memorial Day", "2004-07-03": "Emancipation Day", "2004-07-04": "Independence Day", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-10-11": "Columbus Day and Puerto Rico Friendship Day", "2004-11-01": "Liberty Day", "2004-11-11": "Veterans Day", "2004-11-25": "Thanksgiving", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2004-12-25": "Christmas Day", "2004-12-26": "Christmas Second Day", - "2004-12-31": "New Year's Day (Observed)", + "2004-12-31": "New Year's Day (observed)", "2005-01-01": "New Year's Day", "2005-01-06": "Three Kings Day", "2005-01-17": "Martin Luther King Jr. Day", @@ -1008,9 +1008,9 @@ "2005-11-11": "Veterans Day", "2005-11-24": "Thanksgiving", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed); Christmas Second Day", + "2005-12-26": "Christmas Day (observed); Christmas Second Day", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-06": "Three Kings Day", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Presidents' Day", @@ -1024,7 +1024,7 @@ "2006-09-04": "Labor Day", "2006-10-09": "Columbus Day and Puerto Rico Friendship Day", "2006-11-01": "Liberty Day", - "2006-11-10": "Veterans Day (Observed)", + "2006-11-10": "Veterans Day (observed)", "2006-11-11": "Veterans Day", "2006-11-23": "Thanksgiving", "2006-12-25": "Christmas Day", @@ -1044,7 +1044,7 @@ "2007-10-08": "Columbus Day and Puerto Rico Friendship Day", "2007-11-01": "Liberty Day", "2007-11-11": "Veterans Day", - "2007-11-12": "Veterans Day (Observed)", + "2007-11-12": "Veterans Day (observed)", "2007-11-22": "Thanksgiving", "2007-12-25": "Christmas Day", "2007-12-26": "Christmas Second Day", @@ -1075,7 +1075,7 @@ "2009-04-10": "Good Friday", "2009-04-13": "Easter Monday", "2009-05-25": "Memorial Day", - "2009-07-03": "Emancipation Day; Independence Day (Observed)", + "2009-07-03": "Emancipation Day; Independence Day (observed)", "2009-07-04": "Independence Day", "2009-09-07": "Labor Day", "2009-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1095,16 +1095,16 @@ "2010-05-31": "Memorial Day", "2010-07-03": "Emancipation Day", "2010-07-04": "Independence Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-10-11": "Columbus Day and Puerto Rico Friendship Day", "2010-11-01": "Liberty Day", "2010-11-11": "Veterans Day", "2010-11-25": "Thanksgiving", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2010-12-25": "Christmas Day", "2010-12-26": "Christmas Second Day", - "2010-12-31": "New Year's Day (Observed)", + "2010-12-31": "New Year's Day (observed)", "2011-01-01": "New Year's Day", "2011-01-06": "Three Kings Day", "2011-01-17": "Martin Luther King Jr. Day", @@ -1122,9 +1122,9 @@ "2011-11-11": "Veterans Day", "2011-11-24": "Thanksgiving", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed); Christmas Second Day", + "2011-12-26": "Christmas Day (observed); Christmas Second Day", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-06": "Three Kings Day", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Presidents' Day", @@ -1139,7 +1139,7 @@ "2012-10-08": "Columbus Day and Puerto Rico Friendship Day", "2012-11-01": "Liberty Day", "2012-11-11": "Veterans Day", - "2012-11-12": "Veterans Day (Observed)", + "2012-11-12": "Veterans Day (observed)", "2012-11-22": "Thanksgiving", "2012-12-25": "Christmas Day", "2012-12-26": "Christmas Second Day", @@ -1188,7 +1188,7 @@ "2015-04-03": "Good Friday", "2015-04-06": "Easter Monday", "2015-05-25": "Memorial Day", - "2015-07-03": "Emancipation Day; Independence Day (Observed)", + "2015-07-03": "Emancipation Day; Independence Day (observed)", "2015-07-04": "Independence Day", "2015-09-07": "Labor Day", "2015-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1214,9 +1214,9 @@ "2016-11-11": "Veterans Day", "2016-11-24": "Thanksgiving", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed); Christmas Second Day", + "2016-12-26": "Christmas Day (observed); Christmas Second Day", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-06": "Three Kings Day", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Presidents' Day", @@ -1230,7 +1230,7 @@ "2017-09-04": "Labor Day", "2017-10-09": "Columbus Day and Puerto Rico Friendship Day", "2017-11-01": "Liberty Day", - "2017-11-10": "Veterans Day (Observed)", + "2017-11-10": "Veterans Day (observed)", "2017-11-11": "Veterans Day", "2017-11-23": "Thanksgiving", "2017-12-25": "Christmas Day", @@ -1250,7 +1250,7 @@ "2018-10-08": "Columbus Day and Puerto Rico Friendship Day", "2018-11-01": "Liberty Day", "2018-11-11": "Veterans Day", - "2018-11-12": "Veterans Day (Observed)", + "2018-11-12": "Veterans Day (observed)", "2018-11-22": "Thanksgiving", "2018-12-25": "Christmas Day", "2018-12-26": "Christmas Second Day", @@ -1281,7 +1281,7 @@ "2020-04-10": "Good Friday", "2020-04-13": "Easter Monday", "2020-05-25": "Memorial Day", - "2020-07-03": "Emancipation Day; Independence Day (Observed)", + "2020-07-03": "Emancipation Day; Independence Day (observed)", "2020-07-04": "Independence Day", "2020-09-07": "Labor Day", "2020-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1299,20 +1299,20 @@ "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", "2021-05-31": "Memorial Day", - "2021-06-18": "Juneteenth National Independence Day (Observed)", + "2021-06-18": "Juneteenth National Independence Day (observed)", "2021-06-19": "Juneteenth National Independence Day", "2021-07-03": "Emancipation Day", "2021-07-04": "Independence Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-10-11": "Columbus Day and Puerto Rico Friendship Day", "2021-11-01": "Liberty Day", "2021-11-11": "Veterans Day", "2021-11-25": "Thanksgiving", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2021-12-25": "Christmas Day", "2021-12-26": "Christmas Second Day", - "2021-12-31": "New Year's Day (Observed)", + "2021-12-31": "New Year's Day (observed)", "2022-01-01": "New Year's Day", "2022-01-06": "Three Kings Day", "2022-01-17": "Martin Luther King Jr. Day", @@ -1323,7 +1323,7 @@ "2022-04-18": "Easter Monday", "2022-05-30": "Memorial Day", "2022-06-19": "Juneteenth National Independence Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-03": "Emancipation Day", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", @@ -1332,9 +1332,9 @@ "2022-11-11": "Veterans Day", "2022-11-24": "Thanksgiving", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed); Christmas Second Day", + "2022-12-26": "Christmas Day (observed); Christmas Second Day", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-06": "Three Kings Day", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Presidents' Day", @@ -1349,7 +1349,7 @@ "2023-09-04": "Labor Day", "2023-10-09": "Columbus Day and Puerto Rico Friendship Day", "2023-11-01": "Liberty Day", - "2023-11-10": "Veterans Day (Observed)", + "2023-11-10": "Veterans Day (observed)", "2023-11-11": "Veterans Day", "2023-11-23": "Thanksgiving", "2023-12-25": "Christmas Day", @@ -1402,7 +1402,7 @@ "2026-04-06": "Easter Monday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Emancipation Day; Independence Day (Observed)", + "2026-07-03": "Emancipation Day; Independence Day (observed)", "2026-07-04": "Independence Day", "2026-09-07": "Labor Day", "2026-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1420,20 +1420,20 @@ "2027-03-29": "Easter Monday", "2027-03-31": "Transfer Day", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", "2027-06-19": "Juneteenth National Independence Day", "2027-07-03": "Emancipation Day", "2027-07-04": "Independence Day", - "2027-07-05": "Independence Day (Observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-10-11": "Columbus Day and Puerto Rico Friendship Day", "2027-11-01": "Liberty Day", "2027-11-11": "Veterans Day", "2027-11-25": "Thanksgiving", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2027-12-25": "Christmas Day", "2027-12-26": "Christmas Second Day", - "2027-12-31": "New Year's Day (Observed)", + "2027-12-31": "New Year's Day (observed)", "2028-01-01": "New Year's Day", "2028-01-06": "Three Kings Day", "2028-01-17": "Martin Luther King Jr. Day", @@ -1449,7 +1449,7 @@ "2028-09-04": "Labor Day", "2028-10-09": "Columbus Day and Puerto Rico Friendship Day", "2028-11-01": "Liberty Day", - "2028-11-10": "Veterans Day (Observed)", + "2028-11-10": "Veterans Day (observed)", "2028-11-11": "Veterans Day", "2028-11-23": "Thanksgiving", "2028-12-25": "Christmas Day", @@ -1470,7 +1470,7 @@ "2029-10-08": "Columbus Day and Puerto Rico Friendship Day", "2029-11-01": "Liberty Day", "2029-11-11": "Veterans Day", - "2029-11-12": "Veterans Day (Observed)", + "2029-11-12": "Veterans Day (observed)", "2029-11-22": "Thanksgiving", "2029-12-25": "Christmas Day", "2029-12-26": "Christmas Second Day", @@ -1521,20 +1521,20 @@ "2032-03-29": "Easter Monday", "2032-03-31": "Transfer Day", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", "2032-06-19": "Juneteenth National Independence Day", "2032-07-03": "Emancipation Day", "2032-07-04": "Independence Day", - "2032-07-05": "Independence Day (Observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-10-11": "Columbus Day and Puerto Rico Friendship Day", "2032-11-01": "Liberty Day", "2032-11-11": "Veterans Day", "2032-11-25": "Thanksgiving", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2032-12-25": "Christmas Day", "2032-12-26": "Christmas Second Day", - "2032-12-31": "New Year's Day (Observed)", + "2032-12-31": "New Year's Day (observed)", "2033-01-01": "New Year's Day", "2033-01-06": "Three Kings Day", "2033-01-17": "Martin Luther King Jr. Day", @@ -1545,7 +1545,7 @@ "2033-04-18": "Easter Monday", "2033-05-30": "Memorial Day", "2033-06-19": "Juneteenth National Independence Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-03": "Emancipation Day", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", @@ -1554,9 +1554,9 @@ "2033-11-11": "Veterans Day", "2033-11-24": "Thanksgiving", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed); Christmas Second Day", + "2033-12-26": "Christmas Day (observed); Christmas Second Day", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-06": "Three Kings Day", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Presidents' Day", @@ -1571,7 +1571,7 @@ "2034-09-04": "Labor Day", "2034-10-09": "Columbus Day and Puerto Rico Friendship Day", "2034-11-01": "Liberty Day", - "2034-11-10": "Veterans Day (Observed)", + "2034-11-10": "Veterans Day (observed)", "2034-11-11": "Veterans Day", "2034-11-23": "Thanksgiving", "2034-12-25": "Christmas Day", @@ -1592,7 +1592,7 @@ "2035-10-08": "Columbus Day and Puerto Rico Friendship Day", "2035-11-01": "Liberty Day", "2035-11-11": "Veterans Day", - "2035-11-12": "Veterans Day (Observed)", + "2035-11-12": "Veterans Day (observed)", "2035-11-22": "Thanksgiving", "2035-12-25": "Christmas Day", "2035-12-26": "Christmas Second Day", @@ -1625,7 +1625,7 @@ "2037-04-06": "Easter Monday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Emancipation Day; Independence Day (Observed)", + "2037-07-03": "Emancipation Day; Independence Day (observed)", "2037-07-04": "Independence Day", "2037-09-07": "Labor Day", "2037-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1643,20 +1643,20 @@ "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", "2038-06-19": "Juneteenth National Independence Day", "2038-07-03": "Emancipation Day", "2038-07-04": "Independence Day", - "2038-07-05": "Independence Day (Observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-10-11": "Columbus Day and Puerto Rico Friendship Day", "2038-11-01": "Liberty Day", "2038-11-11": "Veterans Day", "2038-11-25": "Thanksgiving", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2038-12-25": "Christmas Day", "2038-12-26": "Christmas Second Day", - "2038-12-31": "New Year's Day (Observed)", + "2038-12-31": "New Year's Day (observed)", "2039-01-01": "New Year's Day", "2039-01-06": "Three Kings Day", "2039-01-17": "Martin Luther King Jr. Day", @@ -1667,7 +1667,7 @@ "2039-04-11": "Easter Monday", "2039-05-30": "Memorial Day", "2039-06-19": "Juneteenth National Independence Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-03": "Emancipation Day", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", @@ -1676,9 +1676,9 @@ "2039-11-11": "Veterans Day", "2039-11-24": "Thanksgiving", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed); Christmas Second Day", + "2039-12-26": "Christmas Day (observed); Christmas Second Day", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-06": "Three Kings Day", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Presidents' Day", @@ -1694,7 +1694,7 @@ "2040-10-08": "Columbus Day and Puerto Rico Friendship Day", "2040-11-01": "Liberty Day", "2040-11-11": "Veterans Day", - "2040-11-12": "Veterans Day (Observed)", + "2040-11-12": "Veterans Day (observed)", "2040-11-22": "Thanksgiving", "2040-12-25": "Christmas Day", "2040-12-26": "Christmas Second Day", @@ -1746,7 +1746,7 @@ "2043-03-31": "Transfer Day", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Emancipation Day; Independence Day (Observed)", + "2043-07-03": "Emancipation Day; Independence Day (observed)", "2043-07-04": "Independence Day", "2043-09-07": "Labor Day", "2043-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1765,7 +1765,7 @@ "2044-04-18": "Easter Monday", "2044-05-30": "Memorial Day", "2044-06-19": "Juneteenth National Independence Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-03": "Emancipation Day", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", @@ -1774,9 +1774,9 @@ "2044-11-11": "Veterans Day", "2044-11-24": "Thanksgiving", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed); Christmas Second Day", + "2044-12-26": "Christmas Day (observed); Christmas Second Day", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-06": "Three Kings Day", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Presidents' Day", @@ -1791,7 +1791,7 @@ "2045-09-04": "Labor Day", "2045-10-09": "Columbus Day and Puerto Rico Friendship Day", "2045-11-01": "Liberty Day", - "2045-11-10": "Veterans Day (Observed)", + "2045-11-10": "Veterans Day (observed)", "2045-11-11": "Veterans Day", "2045-11-23": "Thanksgiving", "2045-12-25": "Christmas Day", @@ -1812,7 +1812,7 @@ "2046-10-08": "Columbus Day and Puerto Rico Friendship Day", "2046-11-01": "Liberty Day", "2046-11-11": "Veterans Day", - "2046-11-12": "Veterans Day (Observed)", + "2046-11-12": "Veterans Day (observed)", "2046-11-22": "Thanksgiving", "2046-12-25": "Christmas Day", "2046-12-26": "Christmas Second Day", @@ -1845,7 +1845,7 @@ "2048-04-06": "Easter Monday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Emancipation Day; Independence Day (Observed)", + "2048-07-03": "Emancipation Day; Independence Day (observed)", "2048-07-04": "Independence Day", "2048-09-07": "Labor Day", "2048-10-12": "Columbus Day and Puerto Rico Friendship Day", @@ -1863,20 +1863,20 @@ "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", "2049-06-19": "Juneteenth National Independence Day", "2049-07-03": "Emancipation Day", "2049-07-04": "Independence Day", - "2049-07-05": "Independence Day (Observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-10-11": "Columbus Day and Puerto Rico Friendship Day", "2049-11-01": "Liberty Day", "2049-11-11": "Veterans Day", "2049-11-25": "Thanksgiving", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2049-12-25": "Christmas Day", "2049-12-26": "Christmas Second Day", - "2049-12-31": "New Year's Day (Observed)", + "2049-12-31": "New Year's Day (observed)", "2050-01-01": "New Year's Day", "2050-01-06": "Three Kings Day", "2050-01-17": "Martin Luther King Jr. Day", @@ -1887,7 +1887,7 @@ "2050-04-11": "Easter Monday", "2050-05-30": "Memorial Day", "2050-06-19": "Juneteenth National Independence Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-03": "Emancipation Day", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", @@ -1896,5 +1896,5 @@ "2050-11-11": "Veterans Day", "2050-11-24": "Thanksgiving", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed); Christmas Second Day" + "2050-12-26": "Christmas Day (observed); Christmas Second Day" } diff --git a/snapshots/countries/VN_COMMON.json b/snapshots/countries/VN_COMMON.json index b5f80b55c..a68972aa3 100644 --- a/snapshots/countries/VN_COMMON.json +++ b/snapshots/countries/VN_COMMON.json @@ -1,6 +1,6 @@ { "1950-01-01": "International New Year's Day", - "1950-01-02": "International New Year's Day (Observed)", + "1950-01-02": "International New Year's Day (observed)", "1950-02-16": "Vietnamese New Year's Eve", "1950-02-17": "Vietnamese New Year", "1950-02-18": "The second day of Tet Holiday", @@ -9,9 +9,9 @@ "1950-02-21": "The fifth day of Tet Holiday", "1950-04-30": "Liberation Day/Reunification Day", "1950-05-01": "International Labor Day", - "1950-05-02": "Liberation Day/Reunification Day (Observed)", + "1950-05-02": "Liberation Day/Reunification Day (observed)", "1950-09-02": "Independence Day", - "1950-09-04": "Independence Day (Observed)", + "1950-09-04": "Independence Day (observed)", "1951-01-01": "International New Year's Day", "1951-02-05": "Vietnamese New Year's Eve", "1951-02-06": "Vietnamese New Year", @@ -22,7 +22,7 @@ "1951-04-30": "Liberation Day/Reunification Day", "1951-05-01": "International Labor Day", "1951-09-02": "Independence Day", - "1951-09-03": "Independence Day (Observed)", + "1951-09-03": "Independence Day (observed)", "1952-01-01": "International New Year's Day", "1952-01-26": "Vietnamese New Year's Eve", "1952-01-27": "Vietnamese New Year", @@ -52,10 +52,10 @@ "1954-02-07": "The fifth day of Tet Holiday", "1954-04-30": "Liberation Day/Reunification Day", "1954-05-01": "International Labor Day", - "1954-05-03": "International Labor Day (Observed)", + "1954-05-03": "International Labor Day (observed)", "1954-09-02": "Independence Day", "1955-01-01": "International New Year's Day", - "1955-01-03": "International New Year's Day (Observed)", + "1955-01-03": "International New Year's Day (observed)", "1955-01-23": "Vietnamese New Year's Eve", "1955-01-24": "Vietnamese New Year", "1955-01-25": "The second day of Tet Holiday", @@ -64,11 +64,11 @@ "1955-01-28": "The fifth day of Tet Holiday", "1955-04-30": "Liberation Day/Reunification Day", "1955-05-01": "International Labor Day", - "1955-05-02": "Liberation Day/Reunification Day (Observed)", - "1955-05-03": "International Labor Day (Observed)", + "1955-05-02": "Liberation Day/Reunification Day (observed)", + "1955-05-03": "International Labor Day (observed)", "1955-09-02": "Independence Day", "1956-01-01": "International New Year's Day", - "1956-01-02": "International New Year's Day (Observed)", + "1956-01-02": "International New Year's Day (observed)", "1956-02-11": "Vietnamese New Year's Eve", "1956-02-12": "Vietnamese New Year", "1956-02-13": "The second day of Tet Holiday", @@ -78,7 +78,7 @@ "1956-04-30": "Liberation Day/Reunification Day", "1956-05-01": "International Labor Day", "1956-09-02": "Independence Day", - "1956-09-03": "Independence Day (Observed)", + "1956-09-03": "Independence Day (observed)", "1957-01-01": "International New Year's Day", "1957-01-30": "Vietnamese New Year's Eve", "1957-01-31": "Vietnamese New Year", @@ -118,11 +118,11 @@ "1960-02-01": "The fifth day of Tet Holiday", "1960-04-30": "Liberation Day/Reunification Day", "1960-05-01": "International Labor Day", - "1960-05-02": "Liberation Day/Reunification Day (Observed)", - "1960-05-03": "International Labor Day (Observed)", + "1960-05-02": "Liberation Day/Reunification Day (observed)", + "1960-05-03": "International Labor Day (observed)", "1960-09-02": "Independence Day", "1961-01-01": "International New Year's Day", - "1961-01-02": "International New Year's Day (Observed)", + "1961-01-02": "International New Year's Day (observed)", "1961-02-14": "Vietnamese New Year's Eve", "1961-02-15": "Vietnamese New Year", "1961-02-16": "The second day of Tet Holiday", @@ -131,9 +131,9 @@ "1961-02-19": "The fifth day of Tet Holiday", "1961-04-30": "Liberation Day/Reunification Day", "1961-05-01": "International Labor Day", - "1961-05-02": "Liberation Day/Reunification Day (Observed)", + "1961-05-02": "Liberation Day/Reunification Day (observed)", "1961-09-02": "Independence Day", - "1961-09-04": "Independence Day (Observed)", + "1961-09-04": "Independence Day (observed)", "1962-01-01": "International New Year's Day", "1962-02-04": "Vietnamese New Year's Eve", "1962-02-05": "Vietnamese New Year", @@ -144,7 +144,7 @@ "1962-04-30": "Liberation Day/Reunification Day", "1962-05-01": "International Labor Day", "1962-09-02": "Independence Day", - "1962-09-03": "Independence Day (Observed)", + "1962-09-03": "Independence Day (observed)", "1963-01-01": "International New Year's Day", "1963-01-24": "Vietnamese New Year's Eve", "1963-01-25": "Vietnamese New Year", @@ -174,10 +174,10 @@ "1965-02-06": "The fifth day of Tet Holiday", "1965-04-30": "Liberation Day/Reunification Day", "1965-05-01": "International Labor Day", - "1965-05-03": "International Labor Day (Observed)", + "1965-05-03": "International Labor Day (observed)", "1965-09-02": "Independence Day", "1966-01-01": "International New Year's Day", - "1966-01-03": "International New Year's Day (Observed)", + "1966-01-03": "International New Year's Day (observed)", "1966-01-20": "Vietnamese New Year's Eve", "1966-01-21": "Vietnamese New Year", "1966-01-22": "The second day of Tet Holiday", @@ -186,11 +186,11 @@ "1966-01-25": "The fifth day of Tet Holiday", "1966-04-30": "Liberation Day/Reunification Day", "1966-05-01": "International Labor Day", - "1966-05-02": "Liberation Day/Reunification Day (Observed)", - "1966-05-03": "International Labor Day (Observed)", + "1966-05-02": "Liberation Day/Reunification Day (observed)", + "1966-05-03": "International Labor Day (observed)", "1966-09-02": "Independence Day", "1967-01-01": "International New Year's Day", - "1967-01-02": "International New Year's Day (Observed)", + "1967-01-02": "International New Year's Day (observed)", "1967-02-08": "Vietnamese New Year's Eve", "1967-02-09": "Vietnamese New Year", "1967-02-10": "The second day of Tet Holiday", @@ -199,9 +199,9 @@ "1967-02-13": "The fifth day of Tet Holiday", "1967-04-30": "Liberation Day/Reunification Day", "1967-05-01": "International Labor Day", - "1967-05-02": "Liberation Day/Reunification Day (Observed)", + "1967-05-02": "Liberation Day/Reunification Day (observed)", "1967-09-02": "Independence Day", - "1967-09-04": "Independence Day (Observed)", + "1967-09-04": "Independence Day (observed)", "1968-01-01": "International New Year's Day", "1968-01-29": "Vietnamese New Year's Eve", "1968-01-30": "Vietnamese New Year", @@ -241,10 +241,10 @@ "1971-01-31": "The fifth day of Tet Holiday", "1971-04-30": "Liberation Day/Reunification Day", "1971-05-01": "International Labor Day", - "1971-05-03": "International Labor Day (Observed)", + "1971-05-03": "International Labor Day (observed)", "1971-09-02": "Independence Day", "1972-01-01": "International New Year's Day", - "1972-01-03": "International New Year's Day (Observed)", + "1972-01-03": "International New Year's Day (observed)", "1972-02-14": "Vietnamese New Year's Eve", "1972-02-15": "Vietnamese New Year", "1972-02-16": "The second day of Tet Holiday", @@ -253,9 +253,9 @@ "1972-02-19": "The fifth day of Tet Holiday", "1972-04-30": "Liberation Day/Reunification Day", "1972-05-01": "International Labor Day", - "1972-05-02": "Liberation Day/Reunification Day (Observed)", + "1972-05-02": "Liberation Day/Reunification Day (observed)", "1972-09-02": "Independence Day", - "1972-09-04": "Independence Day (Observed)", + "1972-09-04": "Independence Day (observed)", "1973-01-01": "International New Year's Day", "1973-02-02": "Vietnamese New Year's Eve", "1973-02-03": "Vietnamese New Year", @@ -266,7 +266,7 @@ "1973-04-30": "Liberation Day/Reunification Day", "1973-05-01": "International Labor Day", "1973-09-02": "Independence Day", - "1973-09-03": "Independence Day (Observed)", + "1973-09-03": "Independence Day (observed)", "1974-01-01": "International New Year's Day", "1974-01-22": "Vietnamese New Year's Eve", "1974-01-23": "Vietnamese New Year", @@ -296,10 +296,10 @@ "1976-02-04": "The fifth day of Tet Holiday", "1976-04-30": "Liberation Day/Reunification Day", "1976-05-01": "International Labor Day", - "1976-05-03": "International Labor Day (Observed)", + "1976-05-03": "International Labor Day (observed)", "1976-09-02": "Independence Day", "1977-01-01": "International New Year's Day", - "1977-01-03": "International New Year's Day (Observed)", + "1977-01-03": "International New Year's Day (observed)", "1977-02-17": "Vietnamese New Year's Eve", "1977-02-18": "Vietnamese New Year", "1977-02-19": "The second day of Tet Holiday", @@ -308,11 +308,11 @@ "1977-02-22": "The fifth day of Tet Holiday", "1977-04-30": "Liberation Day/Reunification Day", "1977-05-01": "International Labor Day", - "1977-05-02": "Liberation Day/Reunification Day (Observed)", - "1977-05-03": "International Labor Day (Observed)", + "1977-05-02": "Liberation Day/Reunification Day (observed)", + "1977-05-03": "International Labor Day (observed)", "1977-09-02": "Independence Day", "1978-01-01": "International New Year's Day", - "1978-01-02": "International New Year's Day (Observed)", + "1978-01-02": "International New Year's Day (observed)", "1978-02-06": "Vietnamese New Year's Eve", "1978-02-07": "Vietnamese New Year", "1978-02-08": "The second day of Tet Holiday", @@ -321,9 +321,9 @@ "1978-02-11": "The fifth day of Tet Holiday", "1978-04-30": "Liberation Day/Reunification Day", "1978-05-01": "International Labor Day", - "1978-05-02": "Liberation Day/Reunification Day (Observed)", + "1978-05-02": "Liberation Day/Reunification Day (observed)", "1978-09-02": "Independence Day", - "1978-09-04": "Independence Day (Observed)", + "1978-09-04": "Independence Day (observed)", "1979-01-01": "International New Year's Day", "1979-01-27": "Vietnamese New Year's Eve", "1979-01-28": "Vietnamese New Year", @@ -334,7 +334,7 @@ "1979-04-30": "Liberation Day/Reunification Day", "1979-05-01": "International Labor Day", "1979-09-02": "Independence Day", - "1979-09-03": "Independence Day (Observed)", + "1979-09-03": "Independence Day (observed)", "1980-01-01": "International New Year's Day", "1980-02-15": "Vietnamese New Year's Eve", "1980-02-16": "Vietnamese New Year", @@ -364,10 +364,10 @@ "1982-01-29": "The fifth day of Tet Holiday", "1982-04-30": "Liberation Day/Reunification Day", "1982-05-01": "International Labor Day", - "1982-05-03": "International Labor Day (Observed)", + "1982-05-03": "International Labor Day (observed)", "1982-09-02": "Independence Day", "1983-01-01": "International New Year's Day", - "1983-01-03": "International New Year's Day (Observed)", + "1983-01-03": "International New Year's Day (observed)", "1983-02-12": "Vietnamese New Year's Eve", "1983-02-13": "Vietnamese New Year", "1983-02-14": "The second day of Tet Holiday", @@ -376,11 +376,11 @@ "1983-02-17": "The fifth day of Tet Holiday", "1983-04-30": "Liberation Day/Reunification Day", "1983-05-01": "International Labor Day", - "1983-05-02": "Liberation Day/Reunification Day (Observed)", - "1983-05-03": "International Labor Day (Observed)", + "1983-05-02": "Liberation Day/Reunification Day (observed)", + "1983-05-03": "International Labor Day (observed)", "1983-09-02": "Independence Day", "1984-01-01": "International New Year's Day", - "1984-01-02": "International New Year's Day (Observed)", + "1984-01-02": "International New Year's Day (observed)", "1984-02-01": "Vietnamese New Year's Eve", "1984-02-02": "Vietnamese New Year", "1984-02-03": "The second day of Tet Holiday", @@ -390,7 +390,7 @@ "1984-04-30": "Liberation Day/Reunification Day", "1984-05-01": "International Labor Day", "1984-09-02": "Independence Day", - "1984-09-03": "Independence Day (Observed)", + "1984-09-03": "Independence Day (observed)", "1985-01-01": "International New Year's Day", "1985-02-19": "Vietnamese New Year's Eve", "1985-02-20": "Vietnamese New Year", @@ -430,11 +430,11 @@ "1988-02-21": "The fifth day of Tet Holiday", "1988-04-30": "Liberation Day/Reunification Day", "1988-05-01": "International Labor Day", - "1988-05-02": "Liberation Day/Reunification Day (Observed)", - "1988-05-03": "International Labor Day (Observed)", + "1988-05-02": "Liberation Day/Reunification Day (observed)", + "1988-05-03": "International Labor Day (observed)", "1988-09-02": "Independence Day", "1989-01-01": "International New Year's Day", - "1989-01-02": "International New Year's Day (Observed)", + "1989-01-02": "International New Year's Day (observed)", "1989-02-05": "Vietnamese New Year's Eve", "1989-02-06": "Vietnamese New Year", "1989-02-07": "The second day of Tet Holiday", @@ -443,9 +443,9 @@ "1989-02-10": "The fifth day of Tet Holiday", "1989-04-30": "Liberation Day/Reunification Day", "1989-05-01": "International Labor Day", - "1989-05-02": "Liberation Day/Reunification Day (Observed)", + "1989-05-02": "Liberation Day/Reunification Day (observed)", "1989-09-02": "Independence Day", - "1989-09-04": "Independence Day (Observed)", + "1989-09-04": "Independence Day (observed)", "1990-01-01": "International New Year's Day", "1990-01-26": "Vietnamese New Year's Eve", "1990-01-27": "Vietnamese New Year", @@ -456,7 +456,7 @@ "1990-04-30": "Liberation Day/Reunification Day", "1990-05-01": "International Labor Day", "1990-09-02": "Independence Day", - "1990-09-03": "Independence Day (Observed)", + "1990-09-03": "Independence Day (observed)", "1991-01-01": "International New Year's Day", "1991-02-14": "Vietnamese New Year's Eve", "1991-02-15": "Vietnamese New Year", @@ -486,10 +486,10 @@ "1993-01-27": "The fifth day of Tet Holiday", "1993-04-30": "Liberation Day/Reunification Day", "1993-05-01": "International Labor Day", - "1993-05-03": "International Labor Day (Observed)", + "1993-05-03": "International Labor Day (observed)", "1993-09-02": "Independence Day", "1994-01-01": "International New Year's Day", - "1994-01-03": "International New Year's Day (Observed)", + "1994-01-03": "International New Year's Day (observed)", "1994-02-09": "Vietnamese New Year's Eve", "1994-02-10": "Vietnamese New Year", "1994-02-11": "The second day of Tet Holiday", @@ -498,11 +498,11 @@ "1994-02-14": "The fifth day of Tet Holiday", "1994-04-30": "Liberation Day/Reunification Day", "1994-05-01": "International Labor Day", - "1994-05-02": "Liberation Day/Reunification Day (Observed)", - "1994-05-03": "International Labor Day (Observed)", + "1994-05-02": "Liberation Day/Reunification Day (observed)", + "1994-05-03": "International Labor Day (observed)", "1994-09-02": "Independence Day", "1995-01-01": "International New Year's Day", - "1995-01-02": "International New Year's Day (Observed)", + "1995-01-02": "International New Year's Day (observed)", "1995-01-30": "Vietnamese New Year's Eve", "1995-01-31": "Vietnamese New Year", "1995-02-01": "The second day of Tet Holiday", @@ -511,9 +511,9 @@ "1995-02-04": "The fifth day of Tet Holiday", "1995-04-30": "Liberation Day/Reunification Day", "1995-05-01": "International Labor Day", - "1995-05-02": "Liberation Day/Reunification Day (Observed)", + "1995-05-02": "Liberation Day/Reunification Day (observed)", "1995-09-02": "Independence Day", - "1995-09-04": "Independence Day (Observed)", + "1995-09-04": "Independence Day (observed)", "1996-01-01": "International New Year's Day", "1996-02-18": "Vietnamese New Year's Eve", "1996-02-19": "Vietnamese New Year", @@ -553,10 +553,10 @@ "1999-02-20": "The fifth day of Tet Holiday", "1999-04-30": "Liberation Day/Reunification Day", "1999-05-01": "International Labor Day", - "1999-05-03": "International Labor Day (Observed)", + "1999-05-03": "International Labor Day (observed)", "1999-09-02": "Independence Day", "2000-01-01": "International New Year's Day", - "2000-01-03": "International New Year's Day (Observed)", + "2000-01-03": "International New Year's Day (observed)", "2000-02-04": "Vietnamese New Year's Eve", "2000-02-05": "Vietnamese New Year", "2000-02-06": "The second day of Tet Holiday", @@ -565,9 +565,9 @@ "2000-02-09": "The fifth day of Tet Holiday", "2000-04-30": "Liberation Day/Reunification Day", "2000-05-01": "International Labor Day", - "2000-05-02": "Liberation Day/Reunification Day (Observed)", + "2000-05-02": "Liberation Day/Reunification Day (observed)", "2000-09-02": "Independence Day", - "2000-09-04": "Independence Day (Observed)", + "2000-09-04": "Independence Day (observed)", "2001-01-01": "International New Year's Day", "2001-01-23": "Vietnamese New Year's Eve", "2001-01-24": "Vietnamese New Year", @@ -578,7 +578,7 @@ "2001-04-30": "Liberation Day/Reunification Day", "2001-05-01": "International Labor Day", "2001-09-02": "Independence Day", - "2001-09-03": "Independence Day (Observed)", + "2001-09-03": "Independence Day (observed)", "2002-01-01": "International New Year's Day", "2002-02-11": "Vietnamese New Year's Eve", "2002-02-12": "Vietnamese New Year", @@ -608,10 +608,10 @@ "2004-01-26": "The fifth day of Tet Holiday", "2004-04-30": "Liberation Day/Reunification Day", "2004-05-01": "International Labor Day", - "2004-05-03": "International Labor Day (Observed)", + "2004-05-03": "International Labor Day (observed)", "2004-09-02": "Independence Day", "2005-01-01": "International New Year's Day", - "2005-01-03": "International New Year's Day (Observed)", + "2005-01-03": "International New Year's Day (observed)", "2005-02-08": "Vietnamese New Year's Eve", "2005-02-09": "Vietnamese New Year", "2005-02-10": "The second day of Tet Holiday", @@ -620,11 +620,11 @@ "2005-02-13": "The fifth day of Tet Holiday", "2005-04-30": "Liberation Day/Reunification Day", "2005-05-01": "International Labor Day", - "2005-05-02": "Liberation Day/Reunification Day (Observed)", - "2005-05-03": "International Labor Day (Observed)", + "2005-05-02": "Liberation Day/Reunification Day (observed)", + "2005-05-03": "International Labor Day (observed)", "2005-09-02": "Independence Day", "2006-01-01": "International New Year's Day", - "2006-01-02": "International New Year's Day (Observed)", + "2006-01-02": "International New Year's Day (observed)", "2006-01-28": "Vietnamese New Year's Eve", "2006-01-29": "Vietnamese New Year", "2006-01-30": "The second day of Tet Holiday", @@ -633,9 +633,9 @@ "2006-02-02": "The fifth day of Tet Holiday", "2006-04-30": "Liberation Day/Reunification Day", "2006-05-01": "International Labor Day", - "2006-05-02": "Liberation Day/Reunification Day (Observed)", + "2006-05-02": "Liberation Day/Reunification Day (observed)", "2006-09-02": "Independence Day", - "2006-09-04": "Independence Day (Observed)", + "2006-09-04": "Independence Day (observed)", "2007-01-01": "International New Year's Day", "2007-02-17": "Vietnamese New Year's Eve", "2007-02-18": "Vietnamese New Year", @@ -647,7 +647,7 @@ "2007-04-30": "Liberation Day/Reunification Day", "2007-05-01": "International Labor Day", "2007-09-02": "Independence Day", - "2007-09-03": "Independence Day (Observed)", + "2007-09-03": "Independence Day (observed)", "2008-01-01": "International New Year's Day", "2008-02-06": "Vietnamese New Year's Eve", "2008-02-07": "Vietnamese New Year", @@ -667,7 +667,7 @@ "2009-01-29": "The forth day of Tet Holiday", "2009-01-30": "The fifth day of Tet Holiday", "2009-04-05": "Hung Kings Commemoration Day", - "2009-04-06": "Hung Kings Commemoration Day (Observed)", + "2009-04-06": "Hung Kings Commemoration Day (observed)", "2009-04-30": "Liberation Day/Reunification Day", "2009-05-01": "International Labor Day", "2009-09-02": "Independence Day", @@ -681,10 +681,10 @@ "2010-04-23": "Hung Kings Commemoration Day", "2010-04-30": "Liberation Day/Reunification Day", "2010-05-01": "International Labor Day", - "2010-05-03": "International Labor Day (Observed)", + "2010-05-03": "International Labor Day (observed)", "2010-09-02": "Independence Day", "2011-01-01": "International New Year's Day", - "2011-01-03": "International New Year's Day (Observed)", + "2011-01-03": "International New Year's Day (observed)", "2011-02-02": "Vietnamese New Year's Eve", "2011-02-03": "Vietnamese New Year", "2011-02-04": "The second day of Tet Holiday", @@ -694,11 +694,11 @@ "2011-04-12": "Hung Kings Commemoration Day", "2011-04-30": "Liberation Day/Reunification Day", "2011-05-01": "International Labor Day", - "2011-05-02": "Liberation Day/Reunification Day (Observed)", - "2011-05-03": "International Labor Day (Observed)", + "2011-05-02": "Liberation Day/Reunification Day (observed)", + "2011-05-03": "International Labor Day (observed)", "2011-09-02": "Independence Day", "2012-01-01": "International New Year's Day", - "2012-01-02": "International New Year's Day (Observed)", + "2012-01-02": "International New Year's Day (observed)", "2012-01-22": "Vietnamese New Year's Eve", "2012-01-23": "Vietnamese New Year", "2012-01-24": "The second day of Tet Holiday", @@ -706,11 +706,11 @@ "2012-01-26": "The forth day of Tet Holiday", "2012-01-27": "The fifth day of Tet Holiday", "2012-03-31": "Hung Kings Commemoration Day", - "2012-04-02": "Hung Kings Commemoration Day (Observed)", + "2012-04-02": "Hung Kings Commemoration Day (observed)", "2012-04-30": "Liberation Day/Reunification Day", "2012-05-01": "International Labor Day", "2012-09-02": "Independence Day", - "2012-09-03": "Independence Day (Observed)", + "2012-09-03": "Independence Day (observed)", "2013-01-01": "International New Year's Day", "2013-02-09": "Vietnamese New Year's Eve", "2013-02-10": "Vietnamese New Year", @@ -752,14 +752,14 @@ "2016-02-11": "The forth day of Tet Holiday", "2016-02-12": "The fifth day of Tet Holiday", "2016-04-16": "Hung Kings Commemoration Day", - "2016-04-18": "Hung Kings Commemoration Day (Observed)", + "2016-04-18": "Hung Kings Commemoration Day (observed)", "2016-04-30": "Liberation Day/Reunification Day", "2016-05-01": "International Labor Day", - "2016-05-02": "Liberation Day/Reunification Day (Observed)", - "2016-05-03": "International Labor Day (Observed)", + "2016-05-02": "Liberation Day/Reunification Day (observed)", + "2016-05-03": "International Labor Day (observed)", "2016-09-02": "Independence Day", "2017-01-01": "International New Year's Day", - "2017-01-02": "International New Year's Day (Observed)", + "2017-01-02": "International New Year's Day (observed)", "2017-01-27": "Vietnamese New Year's Eve", "2017-01-28": "Vietnamese New Year", "2017-01-29": "The second day of Tet Holiday", @@ -769,9 +769,9 @@ "2017-04-06": "Hung Kings Commemoration Day", "2017-04-30": "Liberation Day/Reunification Day", "2017-05-01": "International Labor Day", - "2017-05-02": "Liberation Day/Reunification Day (Observed)", + "2017-05-02": "Liberation Day/Reunification Day (observed)", "2017-09-02": "Independence Day", - "2017-09-04": "Independence Day (Observed)", + "2017-09-04": "Independence Day (observed)", "2018-01-01": "International New Year's Day", "2018-02-15": "Vietnamese New Year's Eve", "2018-02-16": "Vietnamese New Year", @@ -783,7 +783,7 @@ "2018-04-30": "Liberation Day/Reunification Day", "2018-05-01": "International Labor Day", "2018-09-02": "Independence Day", - "2018-09-03": "Independence Day (Observed)", + "2018-09-03": "Independence Day (observed)", "2019-01-01": "International New Year's Day", "2019-02-04": "Vietnamese New Year's Eve", "2019-02-05": "Vietnamese New Year", @@ -792,7 +792,7 @@ "2019-02-08": "The forth day of Tet Holiday", "2019-02-09": "The fifth day of Tet Holiday", "2019-04-14": "Hung Kings Commemoration Day", - "2019-04-15": "Hung Kings Commemoration Day (Observed)", + "2019-04-15": "Hung Kings Commemoration Day (observed)", "2019-04-30": "Liberation Day/Reunification Day", "2019-05-01": "International Labor Day", "2019-09-02": "Independence Day", @@ -817,10 +817,10 @@ "2021-04-21": "Hung Kings Commemoration Day", "2021-04-30": "Liberation Day/Reunification Day", "2021-05-01": "International Labor Day", - "2021-05-03": "International Labor Day (Observed)", + "2021-05-03": "International Labor Day (observed)", "2021-09-02": "Independence Day", "2022-01-01": "International New Year's Day", - "2022-01-03": "International New Year's Day (Observed)", + "2022-01-03": "International New Year's Day (observed)", "2022-01-31": "Vietnamese New Year's Eve", "2022-02-01": "Vietnamese New Year", "2022-02-02": "The second day of Tet Holiday", @@ -828,14 +828,14 @@ "2022-02-04": "The forth day of Tet Holiday", "2022-02-05": "The fifth day of Tet Holiday", "2022-04-10": "Hung Kings Commemoration Day", - "2022-04-11": "Hung Kings Commemoration Day (Observed)", + "2022-04-11": "Hung Kings Commemoration Day (observed)", "2022-04-30": "Liberation Day/Reunification Day", "2022-05-01": "International Labor Day", - "2022-05-02": "Liberation Day/Reunification Day (Observed)", - "2022-05-03": "International Labor Day (Observed)", + "2022-05-02": "Liberation Day/Reunification Day (observed)", + "2022-05-03": "International Labor Day (observed)", "2022-09-02": "Independence Day", "2023-01-01": "International New Year's Day", - "2023-01-02": "International New Year's Day (Observed)", + "2023-01-02": "International New Year's Day (observed)", "2023-01-21": "Vietnamese New Year's Eve", "2023-01-22": "Vietnamese New Year", "2023-01-23": "The second day of Tet Holiday", @@ -845,10 +845,10 @@ "2023-04-29": "Hung Kings Commemoration Day", "2023-04-30": "Liberation Day/Reunification Day", "2023-05-01": "International Labor Day", - "2023-05-02": "Hung Kings Commemoration Day (Observed)", - "2023-05-03": "Liberation Day/Reunification Day (Observed)", + "2023-05-02": "Hung Kings Commemoration Day (observed)", + "2023-05-03": "Liberation Day/Reunification Day (observed)", "2023-09-02": "Independence Day", - "2023-09-04": "Independence Day (Observed)", + "2023-09-04": "Independence Day (observed)", "2024-01-01": "International New Year's Day", "2024-02-09": "Vietnamese New Year's Eve", "2024-02-10": "Vietnamese New Year", @@ -879,7 +879,7 @@ "2026-02-20": "The forth day of Tet Holiday", "2026-02-21": "The fifth day of Tet Holiday", "2026-04-26": "Hung Kings Commemoration Day", - "2026-04-27": "Hung Kings Commemoration Day (Observed)", + "2026-04-27": "Hung Kings Commemoration Day (observed)", "2026-04-30": "Liberation Day/Reunification Day", "2026-05-01": "International Labor Day", "2026-09-02": "Independence Day", @@ -893,10 +893,10 @@ "2027-04-16": "Hung Kings Commemoration Day", "2027-04-30": "Liberation Day/Reunification Day", "2027-05-01": "International Labor Day", - "2027-05-03": "International Labor Day (Observed)", + "2027-05-03": "International Labor Day (observed)", "2027-09-02": "Independence Day", "2028-01-01": "International New Year's Day", - "2028-01-03": "International New Year's Day (Observed)", + "2028-01-03": "International New Year's Day (observed)", "2028-01-25": "Vietnamese New Year's Eve", "2028-01-26": "Vietnamese New Year", "2028-01-27": "The second day of Tet Holiday", @@ -906,9 +906,9 @@ "2028-04-04": "Hung Kings Commemoration Day", "2028-04-30": "Liberation Day/Reunification Day", "2028-05-01": "International Labor Day", - "2028-05-02": "Liberation Day/Reunification Day (Observed)", + "2028-05-02": "Liberation Day/Reunification Day (observed)", "2028-09-02": "Independence Day", - "2028-09-04": "Independence Day (Observed)", + "2028-09-04": "Independence Day (observed)", "2029-01-01": "International New Year's Day", "2029-02-12": "Vietnamese New Year's Eve", "2029-02-13": "Vietnamese New Year", @@ -920,7 +920,7 @@ "2029-04-30": "Liberation Day/Reunification Day", "2029-05-01": "International Labor Day", "2029-09-02": "Independence Day", - "2029-09-03": "Independence Day (Observed)", + "2029-09-03": "Independence Day (observed)", "2030-01-01": "International New Year's Day", "2030-02-02": "Vietnamese New Year's Eve", "2030-02-03": "Vietnamese New Year", @@ -953,10 +953,10 @@ "2032-04-19": "Hung Kings Commemoration Day", "2032-04-30": "Liberation Day/Reunification Day", "2032-05-01": "International Labor Day", - "2032-05-03": "International Labor Day (Observed)", + "2032-05-03": "International Labor Day (observed)", "2032-09-02": "Independence Day", "2033-01-01": "International New Year's Day", - "2033-01-03": "International New Year's Day (Observed)", + "2033-01-03": "International New Year's Day (observed)", "2033-01-30": "Vietnamese New Year's Eve", "2033-01-31": "Vietnamese New Year", "2033-02-01": "The second day of Tet Holiday", @@ -964,14 +964,14 @@ "2033-02-03": "The forth day of Tet Holiday", "2033-02-04": "The fifth day of Tet Holiday", "2033-04-09": "Hung Kings Commemoration Day", - "2033-04-11": "Hung Kings Commemoration Day (Observed)", + "2033-04-11": "Hung Kings Commemoration Day (observed)", "2033-04-30": "Liberation Day/Reunification Day", "2033-05-01": "International Labor Day", - "2033-05-02": "Liberation Day/Reunification Day (Observed)", - "2033-05-03": "International Labor Day (Observed)", + "2033-05-02": "Liberation Day/Reunification Day (observed)", + "2033-05-03": "International Labor Day (observed)", "2033-09-02": "Independence Day", "2034-01-01": "International New Year's Day", - "2034-01-02": "International New Year's Day (Observed)", + "2034-01-02": "International New Year's Day (observed)", "2034-02-18": "Vietnamese New Year's Eve", "2034-02-19": "Vietnamese New Year", "2034-02-20": "The second day of Tet Holiday", @@ -981,9 +981,9 @@ "2034-04-28": "Hung Kings Commemoration Day", "2034-04-30": "Liberation Day/Reunification Day", "2034-05-01": "International Labor Day", - "2034-05-02": "Liberation Day/Reunification Day (Observed)", + "2034-05-02": "Liberation Day/Reunification Day (observed)", "2034-09-02": "Independence Day", - "2034-09-04": "Independence Day (Observed)", + "2034-09-04": "Independence Day (observed)", "2035-01-01": "International New Year's Day", "2035-02-07": "Vietnamese New Year's Eve", "2035-02-08": "Vietnamese New Year", @@ -995,7 +995,7 @@ "2035-04-30": "Liberation Day/Reunification Day", "2035-05-01": "International Labor Day", "2035-09-02": "Independence Day", - "2035-09-03": "Independence Day (Observed)", + "2035-09-03": "Independence Day (observed)", "2036-01-01": "International New Year's Day", "2036-01-27": "Vietnamese New Year's Eve", "2036-01-28": "Vietnamese New Year", @@ -1004,7 +1004,7 @@ "2036-01-31": "The forth day of Tet Holiday", "2036-02-01": "The fifth day of Tet Holiday", "2036-04-06": "Hung Kings Commemoration Day", - "2036-04-07": "Hung Kings Commemoration Day (Observed)", + "2036-04-07": "Hung Kings Commemoration Day (observed)", "2036-04-30": "Liberation Day/Reunification Day", "2036-05-01": "International Labor Day", "2036-09-02": "Independence Day", @@ -1016,7 +1016,7 @@ "2037-02-18": "The forth day of Tet Holiday", "2037-02-19": "The fifth day of Tet Holiday", "2037-04-25": "Hung Kings Commemoration Day", - "2037-04-27": "Hung Kings Commemoration Day (Observed)", + "2037-04-27": "Hung Kings Commemoration Day (observed)", "2037-04-30": "Liberation Day/Reunification Day", "2037-05-01": "International Labor Day", "2037-09-02": "Independence Day", @@ -1030,10 +1030,10 @@ "2038-04-14": "Hung Kings Commemoration Day", "2038-04-30": "Liberation Day/Reunification Day", "2038-05-01": "International Labor Day", - "2038-05-03": "International Labor Day (Observed)", + "2038-05-03": "International Labor Day (observed)", "2038-09-02": "Independence Day", "2039-01-01": "International New Year's Day", - "2039-01-03": "International New Year's Day (Observed)", + "2039-01-03": "International New Year's Day (observed)", "2039-01-23": "Vietnamese New Year's Eve", "2039-01-24": "Vietnamese New Year", "2039-01-25": "The second day of Tet Holiday", @@ -1041,14 +1041,14 @@ "2039-01-27": "The forth day of Tet Holiday", "2039-01-28": "The fifth day of Tet Holiday", "2039-04-03": "Hung Kings Commemoration Day", - "2039-04-04": "Hung Kings Commemoration Day (Observed)", + "2039-04-04": "Hung Kings Commemoration Day (observed)", "2039-04-30": "Liberation Day/Reunification Day", "2039-05-01": "International Labor Day", - "2039-05-02": "Liberation Day/Reunification Day (Observed)", - "2039-05-03": "International Labor Day (Observed)", + "2039-05-02": "Liberation Day/Reunification Day (observed)", + "2039-05-03": "International Labor Day (observed)", "2039-09-02": "Independence Day", "2040-01-01": "International New Year's Day", - "2040-01-02": "International New Year's Day (Observed)", + "2040-01-02": "International New Year's Day (observed)", "2040-02-11": "Vietnamese New Year's Eve", "2040-02-12": "Vietnamese New Year", "2040-02-13": "The second day of Tet Holiday", @@ -1059,7 +1059,7 @@ "2040-04-30": "Liberation Day/Reunification Day", "2040-05-01": "International Labor Day", "2040-09-02": "Independence Day", - "2040-09-03": "Independence Day (Observed)", + "2040-09-03": "Independence Day (observed)", "2041-01-01": "International New Year's Day", "2041-01-31": "Vietnamese New Year's Eve", "2041-02-01": "Vietnamese New Year", @@ -1090,7 +1090,7 @@ "2043-02-13": "The forth day of Tet Holiday", "2043-02-14": "The fifth day of Tet Holiday", "2043-04-19": "Hung Kings Commemoration Day", - "2043-04-20": "Hung Kings Commemoration Day (Observed)", + "2043-04-20": "Hung Kings Commemoration Day (observed)", "2043-04-30": "Liberation Day/Reunification Day", "2043-05-01": "International Labor Day", "2043-09-02": "Independence Day", @@ -1104,11 +1104,11 @@ "2044-04-07": "Hung Kings Commemoration Day", "2044-04-30": "Liberation Day/Reunification Day", "2044-05-01": "International Labor Day", - "2044-05-02": "Liberation Day/Reunification Day (Observed)", - "2044-05-03": "International Labor Day (Observed)", + "2044-05-02": "Liberation Day/Reunification Day (observed)", + "2044-05-03": "International Labor Day (observed)", "2044-09-02": "Independence Day", "2045-01-01": "International New Year's Day", - "2045-01-02": "International New Year's Day (Observed)", + "2045-01-02": "International New Year's Day (observed)", "2045-02-16": "Vietnamese New Year's Eve", "2045-02-17": "Vietnamese New Year", "2045-02-18": "The second day of Tet Holiday", @@ -1118,9 +1118,9 @@ "2045-04-26": "Hung Kings Commemoration Day", "2045-04-30": "Liberation Day/Reunification Day", "2045-05-01": "International Labor Day", - "2045-05-02": "Liberation Day/Reunification Day (Observed)", + "2045-05-02": "Liberation Day/Reunification Day (observed)", "2045-09-02": "Independence Day", - "2045-09-04": "Independence Day (Observed)", + "2045-09-04": "Independence Day (observed)", "2046-01-01": "International New Year's Day", "2046-02-05": "Vietnamese New Year's Eve", "2046-02-06": "Vietnamese New Year", @@ -1129,11 +1129,11 @@ "2046-02-09": "The forth day of Tet Holiday", "2046-02-10": "The fifth day of Tet Holiday", "2046-04-15": "Hung Kings Commemoration Day", - "2046-04-16": "Hung Kings Commemoration Day (Observed)", + "2046-04-16": "Hung Kings Commemoration Day (observed)", "2046-04-30": "Liberation Day/Reunification Day", "2046-05-01": "International Labor Day", "2046-09-02": "Independence Day", - "2046-09-03": "Independence Day (Observed)", + "2046-09-03": "Independence Day (observed)", "2047-01-01": "International New Year's Day", "2047-01-25": "Vietnamese New Year's Eve", "2047-01-26": "Vietnamese New Year", @@ -1164,13 +1164,13 @@ "2049-02-05": "The forth day of Tet Holiday", "2049-02-06": "The fifth day of Tet Holiday", "2049-04-11": "Hung Kings Commemoration Day", - "2049-04-12": "Hung Kings Commemoration Day (Observed)", + "2049-04-12": "Hung Kings Commemoration Day (observed)", "2049-04-30": "Liberation Day/Reunification Day", "2049-05-01": "International Labor Day", - "2049-05-03": "International Labor Day (Observed)", + "2049-05-03": "International Labor Day (observed)", "2049-09-02": "Independence Day", "2050-01-01": "International New Year's Day", - "2050-01-03": "International New Year's Day (Observed)", + "2050-01-03": "International New Year's Day (observed)", "2050-01-22": "Vietnamese New Year's Eve", "2050-01-23": "Vietnamese New Year", "2050-01-24": "The second day of Tet Holiday", @@ -1180,7 +1180,7 @@ "2050-04-01": "Hung Kings Commemoration Day", "2050-04-30": "Liberation Day/Reunification Day", "2050-05-01": "International Labor Day", - "2050-05-02": "Liberation Day/Reunification Day (Observed)", - "2050-05-03": "International Labor Day (Observed)", + "2050-05-02": "Liberation Day/Reunification Day (observed)", + "2050-05-03": "International Labor Day (observed)", "2050-09-02": "Independence Day" } diff --git a/snapshots/countries/VU_COMMON.json b/snapshots/countries/VU_COMMON.json index ba9eca7a7..0df062c94 100644 --- a/snapshots/countries/VU_COMMON.json +++ b/snapshots/countries/VU_COMMON.json @@ -10,7 +10,7 @@ "1981-08-15": "Assumption Day", "1981-10-05": "Constitution Day", "1981-11-29": "Unity Day", - "1981-11-30": "Unity Day (Observed)", + "1981-11-30": "Unity Day (observed)", "1981-12-25": "Christmas Day", "1981-12-26": "Family Day", "1982-01-01": "New Year's Day", @@ -22,30 +22,30 @@ "1982-07-24": "Children's Day", "1982-07-30": "Independence Day", "1982-08-15": "Assumption Day", - "1982-08-16": "Assumption Day (Observed)", + "1982-08-16": "Assumption Day (observed)", "1982-10-05": "Constitution Day", "1982-11-29": "Unity Day", "1982-12-25": "Christmas Day", "1982-12-26": "Family Day", - "1982-12-27": "Family Day (Observed)", + "1982-12-27": "Family Day (observed)", "1983-01-01": "New Year's Day", "1983-03-05": "Custom Chief's Day", "1983-04-01": "Good Friday", "1983-04-04": "Easter Monday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-05-12": "Ascension Day", "1983-07-24": "Children's Day", - "1983-07-25": "Children's Day (Observed)", + "1983-07-25": "Children's Day (observed)", "1983-07-30": "Independence Day", "1983-08-15": "Assumption Day", "1983-10-05": "Constitution Day", "1983-11-29": "Unity Day", "1983-12-25": "Christmas Day", "1983-12-26": "Family Day", - "1983-12-27": "Family Day (Observed)", + "1983-12-27": "Family Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-05": "Custom Chief's Day", "1984-04-20": "Good Friday", "1984-04-23": "Easter Monday", @@ -81,7 +81,7 @@ "1986-07-30": "Independence Day", "1986-08-15": "Assumption Day", "1986-10-05": "Constitution Day", - "1986-10-06": "Constitution Day (Observed)", + "1986-10-06": "Constitution Day (observed)", "1986-11-29": "Unity Day", "1986-12-25": "Christmas Day", "1986-12-26": "Family Day", @@ -96,7 +96,7 @@ "1987-08-15": "Assumption Day", "1987-10-05": "Constitution Day", "1987-11-29": "Unity Day", - "1987-11-30": "Unity Day (Observed)", + "1987-11-30": "Unity Day (observed)", "1987-12-25": "Christmas Day", "1987-12-26": "Family Day", "1988-01-01": "New Year's Day", @@ -104,28 +104,28 @@ "1988-04-01": "Good Friday", "1988-04-04": "Easter Monday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-05-12": "Ascension Day", "1988-07-24": "Children's Day", - "1988-07-25": "Children's Day (Observed)", + "1988-07-25": "Children's Day (observed)", "1988-07-30": "Independence Day", "1988-08-15": "Assumption Day", "1988-10-05": "Constitution Day", "1988-11-29": "Unity Day", "1988-12-25": "Christmas Day", "1988-12-26": "Family Day", - "1988-12-27": "Family Day (Observed)", + "1988-12-27": "Family Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-05": "Custom Chief's Day", - "1989-03-06": "Custom Chief's Day (Observed)", + "1989-03-06": "Custom Chief's Day (observed)", "1989-03-24": "Good Friday", "1989-03-27": "Easter Monday", "1989-05-01": "Labour Day", "1989-05-04": "Ascension Day", "1989-07-24": "Children's Day", "1989-07-30": "Independence Day", - "1989-07-31": "Independence Day (Observed)", + "1989-07-31": "Independence Day (observed)", "1989-08-15": "Assumption Day", "1989-10-05": "Constitution Day", "1989-11-29": "Unity Day", @@ -168,7 +168,7 @@ "1992-08-15": "Assumption Day", "1992-10-05": "Constitution Day", "1992-11-29": "Unity Day", - "1992-11-30": "Unity Day (Observed)", + "1992-11-30": "Unity Day (observed)", "1992-12-25": "Christmas Day", "1992-12-26": "Family Day", "1993-01-01": "New Year's Day", @@ -180,39 +180,39 @@ "1993-07-24": "Children's Day", "1993-07-30": "Independence Day", "1993-08-15": "Assumption Day", - "1993-08-16": "Assumption Day (Observed)", + "1993-08-16": "Assumption Day (observed)", "1993-10-05": "Constitution Day", "1993-11-29": "Unity Day", "1993-12-25": "Christmas Day", "1993-12-26": "Family Day", - "1993-12-27": "Family Day (Observed)", + "1993-12-27": "Family Day (observed)", "1994-01-01": "New Year's Day", "1994-03-05": "Custom Chief's Day", "1994-04-01": "Good Friday", "1994-04-04": "Easter Monday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-05-12": "Ascension Day", "1994-07-24": "Children's Day", - "1994-07-25": "Children's Day (Observed)", + "1994-07-25": "Children's Day (observed)", "1994-07-30": "Independence Day", "1994-08-15": "Assumption Day", "1994-10-05": "Constitution Day", "1994-11-29": "Unity Day", "1994-12-25": "Christmas Day", "1994-12-26": "Family Day", - "1994-12-27": "Family Day (Observed)", + "1994-12-27": "Family Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-03-05": "Custom Chief's Day", - "1995-03-06": "Custom Chief's Day (Observed)", + "1995-03-06": "Custom Chief's Day (observed)", "1995-04-14": "Good Friday", "1995-04-17": "Easter Monday", "1995-05-01": "Labour Day", "1995-05-25": "Ascension Day", "1995-07-24": "Children's Day", "1995-07-30": "Independence Day", - "1995-07-31": "Independence Day (Observed)", + "1995-07-31": "Independence Day (observed)", "1995-08-15": "Assumption Day", "1995-10-05": "Constitution Day", "1995-11-29": "Unity Day", @@ -241,7 +241,7 @@ "1997-07-30": "Independence Day", "1997-08-15": "Assumption Day", "1997-10-05": "Constitution Day", - "1997-10-06": "Constitution Day (Observed)", + "1997-10-06": "Constitution Day (observed)", "1997-11-29": "Unity Day", "1997-12-25": "Christmas Day", "1997-12-26": "Family Day", @@ -256,12 +256,12 @@ "1998-08-15": "Assumption Day", "1998-10-05": "Constitution Day", "1998-11-29": "Unity Day", - "1998-11-30": "Unity Day (Observed)", + "1998-11-30": "Unity Day (observed)", "1998-12-25": "Christmas Day", "1998-12-26": "Family Day", "1999-01-01": "New Year's Day", "1999-02-21": "Father Lini Day", - "1999-02-22": "Father Lini Day (Observed)", + "1999-02-22": "Father Lini Day (observed)", "1999-03-05": "Custom Chief's Day", "1999-04-02": "Good Friday", "1999-04-05": "Easter Monday", @@ -270,23 +270,23 @@ "1999-07-24": "Children's Day", "1999-07-30": "Independence Day", "1999-08-15": "Assumption Day", - "1999-08-16": "Assumption Day (Observed)", + "1999-08-16": "Assumption Day (observed)", "1999-10-05": "Constitution Day", "1999-11-29": "Unity Day", "1999-12-25": "Christmas Day", "1999-12-26": "Family Day", - "1999-12-27": "Family Day (Observed)", + "1999-12-27": "Family Day (observed)", "2000-01-01": "New Year's Day", "2000-02-21": "Father Lini Day", "2000-03-05": "Custom Chief's Day", - "2000-03-06": "Custom Chief's Day (Observed)", + "2000-03-06": "Custom Chief's Day (observed)", "2000-04-21": "Good Friday", "2000-04-24": "Easter Monday", "2000-05-01": "Labour Day", "2000-06-01": "Ascension Day", "2000-07-24": "Children's Day", "2000-07-30": "Independence Day", - "2000-07-31": "Independence Day (Observed)", + "2000-07-31": "Independence Day (observed)", "2000-08-15": "Assumption Day", "2000-10-05": "Constitution Day", "2000-11-29": "Unity Day", @@ -331,7 +331,7 @@ "2003-07-30": "Independence Day", "2003-08-15": "Assumption Day", "2003-10-05": "Constitution Day", - "2003-10-06": "Constitution Day (Observed)", + "2003-10-06": "Constitution Day (observed)", "2003-11-29": "Unity Day", "2003-12-25": "Christmas Day", "2003-12-26": "Family Day", @@ -345,41 +345,41 @@ "2004-07-24": "Children's Day", "2004-07-30": "Independence Day", "2004-08-15": "Assumption Day", - "2004-08-16": "Assumption Day (Observed)", + "2004-08-16": "Assumption Day (observed)", "2004-10-05": "Constitution Day", "2004-11-29": "Unity Day", "2004-12-25": "Christmas Day", "2004-12-26": "Family Day", - "2004-12-27": "Family Day (Observed)", + "2004-12-27": "Family Day (observed)", "2005-01-01": "New Year's Day", "2005-02-21": "Father Lini Day", "2005-03-05": "Custom Chief's Day", "2005-03-25": "Good Friday", "2005-03-28": "Easter Monday", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-05-05": "Ascension Day", "2005-07-24": "Children's Day", - "2005-07-25": "Children's Day (Observed)", + "2005-07-25": "Children's Day (observed)", "2005-07-30": "Independence Day", "2005-08-15": "Assumption Day", "2005-10-05": "Constitution Day", "2005-11-29": "Unity Day", "2005-12-25": "Christmas Day", "2005-12-26": "Family Day", - "2005-12-27": "Family Day (Observed)", + "2005-12-27": "Family Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-02-21": "Father Lini Day", "2006-03-05": "Custom Chief's Day", - "2006-03-06": "Custom Chief's Day (Observed)", + "2006-03-06": "Custom Chief's Day (observed)", "2006-04-14": "Good Friday", "2006-04-17": "Easter Monday", "2006-05-01": "Labour Day", "2006-05-25": "Ascension Day", "2006-07-24": "Children's Day", "2006-07-30": "Independence Day", - "2006-07-31": "Independence Day (Observed)", + "2006-07-31": "Independence Day (observed)", "2006-08-15": "Assumption Day", "2006-10-05": "Constitution Day", "2006-11-29": "Unity Day", @@ -409,7 +409,7 @@ "2008-07-30": "Independence Day", "2008-08-15": "Assumption Day", "2008-10-05": "Constitution Day", - "2008-10-06": "Constitution Day (Observed)", + "2008-10-06": "Constitution Day (observed)", "2008-11-29": "Unity Day", "2008-12-25": "Christmas Day", "2008-12-26": "Family Day", @@ -425,12 +425,12 @@ "2009-08-15": "Assumption Day", "2009-10-05": "Constitution Day", "2009-11-29": "Unity Day", - "2009-11-30": "Unity Day (Observed)", + "2009-11-30": "Unity Day (observed)", "2009-12-25": "Christmas Day", "2009-12-26": "Family Day", "2010-01-01": "New Year's Day", "2010-02-21": "Father Lini Day", - "2010-02-22": "Father Lini Day (Observed)", + "2010-02-22": "Father Lini Day (observed)", "2010-03-05": "Custom Chief's Day", "2010-04-02": "Good Friday", "2010-04-05": "Easter Monday", @@ -439,31 +439,31 @@ "2010-07-24": "Children's Day", "2010-07-30": "Independence Day", "2010-08-15": "Assumption Day", - "2010-08-16": "Assumption Day (Observed)", + "2010-08-16": "Assumption Day (observed)", "2010-10-05": "Constitution Day", "2010-11-29": "Unity Day", "2010-12-25": "Christmas Day", "2010-12-26": "Family Day", - "2010-12-27": "Family Day (Observed)", + "2010-12-27": "Family Day (observed)", "2011-01-01": "New Year's Day", "2011-02-21": "Father Lini Day", "2011-03-05": "Custom Chief's Day", "2011-04-22": "Good Friday", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-06-02": "Ascension Day", "2011-07-24": "Children's Day", - "2011-07-25": "Children's Day (Observed)", + "2011-07-25": "Children's Day (observed)", "2011-07-30": "Independence Day", "2011-08-15": "Assumption Day", "2011-10-05": "Constitution Day", "2011-11-29": "Unity Day", "2011-12-25": "Christmas Day", "2011-12-26": "Family Day", - "2011-12-27": "Family Day (Observed)", + "2011-12-27": "Family Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-02-21": "Father Lini Day", "2012-03-05": "Custom Chief's Day", "2012-04-06": "Good Friday", @@ -502,7 +502,7 @@ "2014-07-30": "Independence Day", "2014-08-15": "Assumption Day", "2014-10-05": "Constitution Day", - "2014-10-06": "Constitution Day (Observed)", + "2014-10-06": "Constitution Day (observed)", "2014-11-29": "Unity Day", "2014-12-25": "Christmas Day", "2014-12-26": "Family Day", @@ -518,39 +518,39 @@ "2015-08-15": "Assumption Day", "2015-10-05": "Constitution Day", "2015-11-29": "Unity Day", - "2015-11-30": "Unity Day (Observed)", + "2015-11-30": "Unity Day (observed)", "2015-12-25": "Christmas Day", "2015-12-26": "Family Day", "2016-01-01": "New Year's Day", "2016-02-21": "Father Lini Day", - "2016-02-22": "Father Lini Day (Observed)", + "2016-02-22": "Father Lini Day (observed)", "2016-03-05": "Custom Chief's Day", "2016-03-25": "Good Friday", "2016-03-28": "Easter Monday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-05-05": "Ascension Day", "2016-07-24": "Children's Day", - "2016-07-25": "Children's Day (Observed)", + "2016-07-25": "Children's Day (observed)", "2016-07-30": "Independence Day", "2016-08-15": "Assumption Day", "2016-10-05": "Constitution Day", "2016-11-29": "Unity Day", "2016-12-25": "Christmas Day", "2016-12-26": "Family Day", - "2016-12-27": "Family Day (Observed)", + "2016-12-27": "Family Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-02-21": "Father Lini Day", "2017-03-05": "Custom Chief's Day", - "2017-03-06": "Custom Chief's Day (Observed)", + "2017-03-06": "Custom Chief's Day (observed)", "2017-04-14": "Good Friday", "2017-04-17": "Easter Monday", "2017-05-01": "Labour Day", "2017-05-25": "Ascension Day", "2017-07-24": "Children's Day", "2017-07-30": "Independence Day", - "2017-07-31": "Independence Day (Observed)", + "2017-07-31": "Independence Day (observed)", "2017-08-15": "Assumption Day", "2017-10-05": "Constitution Day", "2017-11-29": "Unity Day", @@ -601,12 +601,12 @@ "2020-08-15": "Assumption Day", "2020-10-05": "Constitution Day", "2020-11-29": "Unity Day", - "2020-11-30": "Unity Day (Observed)", + "2020-11-30": "Unity Day (observed)", "2020-12-25": "Christmas Day", "2020-12-26": "Family Day", "2021-01-01": "New Year's Day", "2021-02-21": "Father Lini Day", - "2021-02-22": "Father Lini Day (Observed)", + "2021-02-22": "Father Lini Day (observed)", "2021-03-05": "Custom Chief's Day", "2021-04-02": "Good Friday", "2021-04-05": "Easter Monday", @@ -615,22 +615,22 @@ "2021-07-24": "Children's Day", "2021-07-30": "Independence Day", "2021-08-15": "Assumption Day", - "2021-08-16": "Assumption Day (Observed)", + "2021-08-16": "Assumption Day (observed)", "2021-10-05": "Constitution Day", "2021-11-29": "Unity Day", "2021-12-25": "Christmas Day", "2021-12-26": "Family Day", - "2021-12-27": "Family Day (Observed)", + "2021-12-27": "Family Day (observed)", "2022-01-01": "New Year's Day", "2022-02-21": "Father Lini Day", "2022-03-05": "Custom Chief's Day", "2022-04-15": "Good Friday", "2022-04-18": "Easter Monday", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-05-26": "Ascension Day", "2022-07-24": "Children's Day", - "2022-07-25": "Children's Day (Observed)", + "2022-07-25": "Children's Day (observed)", "2022-07-30": "Independence Day", "2022-08-15": "Assumption Day", "2022-10-05": "Constitution Day", @@ -638,19 +638,19 @@ "2022-11-29": "Unity Day", "2022-12-25": "Christmas Day", "2022-12-26": "Family Day", - "2022-12-27": "Family Day (Observed)", + "2022-12-27": "Family Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-21": "Father Lini Day", "2023-03-05": "Custom Chief's Day", - "2023-03-06": "Custom Chief's Day (Observed)", + "2023-03-06": "Custom Chief's Day (observed)", "2023-04-07": "Good Friday", "2023-04-10": "Easter Monday", "2023-05-01": "Labour Day", "2023-05-18": "Ascension Day", "2023-07-24": "Children's Day", "2023-07-30": "Independence Day", - "2023-07-31": "Independence Day (Observed)", + "2023-07-31": "Independence Day (observed)", "2023-08-15": "Assumption Day", "2023-10-05": "Constitution Day", "2023-11-29": "Unity Day", @@ -681,7 +681,7 @@ "2025-07-30": "Independence Day", "2025-08-15": "Assumption Day", "2025-10-05": "Constitution Day", - "2025-10-06": "Constitution Day (Observed)", + "2025-10-06": "Constitution Day (observed)", "2025-11-29": "Unity Day", "2025-12-25": "Christmas Day", "2025-12-26": "Family Day", @@ -697,12 +697,12 @@ "2026-08-15": "Assumption Day", "2026-10-05": "Constitution Day", "2026-11-29": "Unity Day", - "2026-11-30": "Unity Day (Observed)", + "2026-11-30": "Unity Day (observed)", "2026-12-25": "Christmas Day", "2026-12-26": "Family Day", "2027-01-01": "New Year's Day", "2027-02-21": "Father Lini Day", - "2027-02-22": "Father Lini Day (Observed)", + "2027-02-22": "Father Lini Day (observed)", "2027-03-05": "Custom Chief's Day", "2027-03-26": "Good Friday", "2027-03-29": "Easter Monday", @@ -711,23 +711,23 @@ "2027-07-24": "Children's Day", "2027-07-30": "Independence Day", "2027-08-15": "Assumption Day", - "2027-08-16": "Assumption Day (Observed)", + "2027-08-16": "Assumption Day (observed)", "2027-10-05": "Constitution Day", "2027-11-29": "Unity Day", "2027-12-25": "Christmas Day", "2027-12-26": "Family Day", - "2027-12-27": "Family Day (Observed)", + "2027-12-27": "Family Day (observed)", "2028-01-01": "New Year's Day", "2028-02-21": "Father Lini Day", "2028-03-05": "Custom Chief's Day", - "2028-03-06": "Custom Chief's Day (Observed)", + "2028-03-06": "Custom Chief's Day (observed)", "2028-04-14": "Good Friday", "2028-04-17": "Easter Monday", "2028-05-01": "Labour Day", "2028-05-25": "Ascension Day", "2028-07-24": "Children's Day", "2028-07-30": "Independence Day", - "2028-07-31": "Independence Day (Observed)", + "2028-07-31": "Independence Day (observed)", "2028-08-15": "Assumption Day", "2028-10-05": "Constitution Day", "2028-11-29": "Unity Day", @@ -772,7 +772,7 @@ "2031-07-30": "Independence Day", "2031-08-15": "Assumption Day", "2031-10-05": "Constitution Day", - "2031-10-06": "Constitution Day (Observed)", + "2031-10-06": "Constitution Day (observed)", "2031-11-29": "Unity Day", "2031-12-25": "Christmas Day", "2031-12-26": "Family Day", @@ -786,41 +786,41 @@ "2032-07-24": "Children's Day", "2032-07-30": "Independence Day", "2032-08-15": "Assumption Day", - "2032-08-16": "Assumption Day (Observed)", + "2032-08-16": "Assumption Day (observed)", "2032-10-05": "Constitution Day", "2032-11-29": "Unity Day", "2032-12-25": "Christmas Day", "2032-12-26": "Family Day", - "2032-12-27": "Family Day (Observed)", + "2032-12-27": "Family Day (observed)", "2033-01-01": "New Year's Day", "2033-02-21": "Father Lini Day", "2033-03-05": "Custom Chief's Day", "2033-04-15": "Good Friday", "2033-04-18": "Easter Monday", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-05-26": "Ascension Day", "2033-07-24": "Children's Day", - "2033-07-25": "Children's Day (Observed)", + "2033-07-25": "Children's Day (observed)", "2033-07-30": "Independence Day", "2033-08-15": "Assumption Day", "2033-10-05": "Constitution Day", "2033-11-29": "Unity Day", "2033-12-25": "Christmas Day", "2033-12-26": "Family Day", - "2033-12-27": "Family Day (Observed)", + "2033-12-27": "Family Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-21": "Father Lini Day", "2034-03-05": "Custom Chief's Day", - "2034-03-06": "Custom Chief's Day (Observed)", + "2034-03-06": "Custom Chief's Day (observed)", "2034-04-07": "Good Friday", "2034-04-10": "Easter Monday", "2034-05-01": "Labour Day", "2034-05-18": "Ascension Day", "2034-07-24": "Children's Day", "2034-07-30": "Independence Day", - "2034-07-31": "Independence Day (Observed)", + "2034-07-31": "Independence Day (observed)", "2034-08-15": "Assumption Day", "2034-10-05": "Constitution Day", "2034-11-29": "Unity Day", @@ -851,7 +851,7 @@ "2036-07-30": "Independence Day", "2036-08-15": "Assumption Day", "2036-10-05": "Constitution Day", - "2036-10-06": "Constitution Day (Observed)", + "2036-10-06": "Constitution Day (observed)", "2036-11-29": "Unity Day", "2036-12-25": "Christmas Day", "2036-12-26": "Family Day", @@ -867,12 +867,12 @@ "2037-08-15": "Assumption Day", "2037-10-05": "Constitution Day", "2037-11-29": "Unity Day", - "2037-11-30": "Unity Day (Observed)", + "2037-11-30": "Unity Day (observed)", "2037-12-25": "Christmas Day", "2037-12-26": "Family Day", "2038-01-01": "New Year's Day", "2038-02-21": "Father Lini Day", - "2038-02-22": "Father Lini Day (Observed)", + "2038-02-22": "Father Lini Day (observed)", "2038-03-05": "Custom Chief's Day", "2038-04-23": "Good Friday", "2038-04-26": "Easter Monday", @@ -881,31 +881,31 @@ "2038-07-24": "Children's Day", "2038-07-30": "Independence Day", "2038-08-15": "Assumption Day", - "2038-08-16": "Assumption Day (Observed)", + "2038-08-16": "Assumption Day (observed)", "2038-10-05": "Constitution Day", "2038-11-29": "Unity Day", "2038-12-25": "Christmas Day", "2038-12-26": "Family Day", - "2038-12-27": "Family Day (Observed)", + "2038-12-27": "Family Day (observed)", "2039-01-01": "New Year's Day", "2039-02-21": "Father Lini Day", "2039-03-05": "Custom Chief's Day", "2039-04-08": "Good Friday", "2039-04-11": "Easter Monday", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-05-19": "Ascension Day", "2039-07-24": "Children's Day", - "2039-07-25": "Children's Day (Observed)", + "2039-07-25": "Children's Day (observed)", "2039-07-30": "Independence Day", "2039-08-15": "Assumption Day", "2039-10-05": "Constitution Day", "2039-11-29": "Unity Day", "2039-12-25": "Christmas Day", "2039-12-26": "Family Day", - "2039-12-27": "Family Day (Observed)", + "2039-12-27": "Family Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-21": "Father Lini Day", "2040-03-05": "Custom Chief's Day", "2040-03-30": "Good Friday", @@ -944,7 +944,7 @@ "2042-07-30": "Independence Day", "2042-08-15": "Assumption Day", "2042-10-05": "Constitution Day", - "2042-10-06": "Constitution Day (Observed)", + "2042-10-06": "Constitution Day (observed)", "2042-11-29": "Unity Day", "2042-12-25": "Christmas Day", "2042-12-26": "Family Day", @@ -960,39 +960,39 @@ "2043-08-15": "Assumption Day", "2043-10-05": "Constitution Day", "2043-11-29": "Unity Day", - "2043-11-30": "Unity Day (Observed)", + "2043-11-30": "Unity Day (observed)", "2043-12-25": "Christmas Day", "2043-12-26": "Family Day", "2044-01-01": "New Year's Day", "2044-02-21": "Father Lini Day", - "2044-02-22": "Father Lini Day (Observed)", + "2044-02-22": "Father Lini Day (observed)", "2044-03-05": "Custom Chief's Day", "2044-04-15": "Good Friday", "2044-04-18": "Easter Monday", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-05-26": "Ascension Day", "2044-07-24": "Children's Day", - "2044-07-25": "Children's Day (Observed)", + "2044-07-25": "Children's Day (observed)", "2044-07-30": "Independence Day", "2044-08-15": "Assumption Day", "2044-10-05": "Constitution Day", "2044-11-29": "Unity Day", "2044-12-25": "Christmas Day", "2044-12-26": "Family Day", - "2044-12-27": "Family Day (Observed)", + "2044-12-27": "Family Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-21": "Father Lini Day", "2045-03-05": "Custom Chief's Day", - "2045-03-06": "Custom Chief's Day (Observed)", + "2045-03-06": "Custom Chief's Day (observed)", "2045-04-07": "Good Friday", "2045-04-10": "Easter Monday", "2045-05-01": "Labour Day", "2045-05-18": "Ascension Day", "2045-07-24": "Children's Day", "2045-07-30": "Independence Day", - "2045-07-31": "Independence Day (Observed)", + "2045-07-31": "Independence Day (observed)", "2045-08-15": "Assumption Day", "2045-10-05": "Constitution Day", "2045-11-29": "Unity Day", @@ -1038,12 +1038,12 @@ "2048-08-15": "Assumption Day", "2048-10-05": "Constitution Day", "2048-11-29": "Unity Day", - "2048-11-30": "Unity Day (Observed)", + "2048-11-30": "Unity Day (observed)", "2048-12-25": "Christmas Day", "2048-12-26": "Family Day", "2049-01-01": "New Year's Day", "2049-02-21": "Father Lini Day", - "2049-02-22": "Father Lini Day (Observed)", + "2049-02-22": "Father Lini Day (observed)", "2049-03-05": "Custom Chief's Day", "2049-04-16": "Good Friday", "2049-04-19": "Easter Monday", @@ -1052,27 +1052,27 @@ "2049-07-24": "Children's Day", "2049-07-30": "Independence Day", "2049-08-15": "Assumption Day", - "2049-08-16": "Assumption Day (Observed)", + "2049-08-16": "Assumption Day (observed)", "2049-10-05": "Constitution Day", "2049-11-29": "Unity Day", "2049-12-25": "Christmas Day", "2049-12-26": "Family Day", - "2049-12-27": "Family Day (Observed)", + "2049-12-27": "Family Day (observed)", "2050-01-01": "New Year's Day", "2050-02-21": "Father Lini Day", "2050-03-05": "Custom Chief's Day", "2050-04-08": "Good Friday", "2050-04-11": "Easter Monday", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-05-19": "Ascension Day", "2050-07-24": "Children's Day", - "2050-07-25": "Children's Day (Observed)", + "2050-07-25": "Children's Day (observed)", "2050-07-30": "Independence Day", "2050-08-15": "Assumption Day", "2050-10-05": "Constitution Day", "2050-11-29": "Unity Day", "2050-12-25": "Christmas Day", "2050-12-26": "Family Day", - "2050-12-27": "Family Day (Observed)" + "2050-12-27": "Family Day (observed)" } diff --git a/snapshots/countries/ZA_COMMON.json b/snapshots/countries/ZA_COMMON.json index c44635857..8253b18b3 100644 --- a/snapshots/countries/ZA_COMMON.json +++ b/snapshots/countries/ZA_COMMON.json @@ -490,7 +490,7 @@ "1994-12-25": "Christmas Day", "1994-12-26": "Day of Goodwill", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-03-21": "Human Rights Day", "1995-04-14": "Good Friday", "1995-04-17": "Family Day", @@ -499,7 +499,7 @@ "1995-06-16": "Youth Day", "1995-08-09": "National Women's Day", "1995-09-24": "Heritage Day", - "1995-09-25": "Heritage Day (Observed)", + "1995-09-25": "Heritage Day (observed)", "1995-12-16": "Day of Reconciliation", "1995-12-25": "Christmas Day", "1995-12-26": "Day of Goodwill", @@ -510,7 +510,7 @@ "1996-04-27": "Freedom Day", "1996-05-01": "Workers' Day", "1996-06-16": "Youth Day", - "1996-06-17": "Youth Day (Observed)", + "1996-06-17": "Youth Day (observed)", "1996-08-09": "National Women's Day", "1996-09-24": "Heritage Day", "1996-12-16": "Day of Reconciliation", @@ -521,7 +521,7 @@ "1997-03-28": "Good Friday", "1997-03-31": "Family Day", "1997-04-27": "Freedom Day", - "1997-04-28": "Freedom Day (Observed)", + "1997-04-28": "Freedom Day (observed)", "1997-05-01": "Workers' Day", "1997-06-16": "Youth Day", "1997-08-09": "National Women's Day", @@ -537,14 +537,14 @@ "1998-05-01": "Workers' Day", "1998-06-16": "Youth Day", "1998-08-09": "National Women's Day", - "1998-08-10": "National Women's Day (Observed)", + "1998-08-10": "National Women's Day (observed)", "1998-09-24": "Heritage Day", "1998-12-16": "Day of Reconciliation", "1998-12-25": "Christmas Day", "1998-12-26": "Day of Goodwill", "1999-01-01": "New Year's Day", "1999-03-21": "Human Rights Day", - "1999-03-22": "Human Rights Day (Observed)", + "1999-03-22": "Human Rights Day (observed)", "1999-04-02": "Good Friday", "1999-04-05": "Family Day", "1999-04-27": "Freedom Day", @@ -556,11 +556,11 @@ "1999-12-16": "Day of Reconciliation", "1999-12-25": "Christmas Day", "1999-12-26": "Day of Goodwill", - "1999-12-27": "Day of Goodwill (Observed)", + "1999-12-27": "Day of Goodwill (observed)", "1999-12-31": "Y2K changeover", "2000-01-01": "New Year's Day", "2000-01-02": "Y2K changeover", - "2000-01-03": "Y2K changeover (Observed)", + "2000-01-03": "Y2K changeover (observed)", "2000-03-21": "Human Rights Day", "2000-04-21": "Good Friday", "2000-04-24": "Family Day", @@ -569,7 +569,7 @@ "2000-06-16": "Youth Day", "2000-08-09": "National Women's Day", "2000-09-24": "Heritage Day", - "2000-09-25": "Heritage Day (Observed)", + "2000-09-25": "Heritage Day (observed)", "2000-12-16": "Day of Reconciliation", "2000-12-25": "Christmas Day", "2000-12-26": "Day of Goodwill", @@ -583,7 +583,7 @@ "2001-08-09": "National Women's Day", "2001-09-24": "Heritage Day", "2001-12-16": "Day of Reconciliation", - "2001-12-17": "Day of Reconciliation (Observed)", + "2001-12-17": "Day of Reconciliation (observed)", "2001-12-25": "Christmas Day", "2001-12-26": "Day of Goodwill", "2002-01-01": "New Year's Day", @@ -593,7 +593,7 @@ "2002-04-27": "Freedom Day", "2002-05-01": "Workers' Day", "2002-06-16": "Youth Day", - "2002-06-17": "Youth Day (Observed)", + "2002-06-17": "Youth Day (observed)", "2002-08-09": "National Women's Day", "2002-09-24": "Heritage Day", "2002-12-16": "Day of Reconciliation", @@ -604,7 +604,7 @@ "2003-04-18": "Good Friday", "2003-04-21": "Family Day", "2003-04-27": "Freedom Day", - "2003-04-28": "Freedom Day (Observed)", + "2003-04-28": "Freedom Day (observed)", "2003-05-01": "Workers' Day", "2003-06-16": "Youth Day", "2003-08-09": "National Women's Day", @@ -614,7 +614,7 @@ "2003-12-26": "Day of Goodwill", "2004-01-01": "New Year's Day", "2004-03-21": "Human Rights Day", - "2004-03-22": "Human Rights Day (Observed)", + "2004-03-22": "Human Rights Day (observed)", "2004-04-09": "Good Friday", "2004-04-12": "Family Day", "2004-04-14": "National and provincial government elections", @@ -626,14 +626,14 @@ "2004-12-16": "Day of Reconciliation", "2004-12-25": "Christmas Day", "2004-12-26": "Day of Goodwill", - "2004-12-27": "Day of Goodwill (Observed)", + "2004-12-27": "Day of Goodwill (observed)", "2005-01-01": "New Year's Day", "2005-03-21": "Human Rights Day", "2005-03-25": "Good Friday", "2005-03-28": "Family Day", "2005-04-27": "Freedom Day", "2005-05-01": "Workers' Day", - "2005-05-02": "Workers' Day (Observed)", + "2005-05-02": "Workers' Day (observed)", "2005-06-16": "Youth Day", "2005-08-09": "National Women's Day", "2005-09-24": "Heritage Day", @@ -641,7 +641,7 @@ "2005-12-25": "Christmas Day", "2005-12-26": "Day of Goodwill", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-03-01": "Local government elections", "2006-03-21": "Human Rights Day", "2006-04-14": "Good Friday", @@ -651,7 +651,7 @@ "2006-06-16": "Youth Day", "2006-08-09": "National Women's Day", "2006-09-24": "Heritage Day", - "2006-09-25": "Heritage Day (Observed)", + "2006-09-25": "Heritage Day (observed)", "2006-12-16": "Day of Reconciliation", "2006-12-25": "Christmas Day", "2006-12-26": "Day of Goodwill", @@ -665,14 +665,14 @@ "2007-08-09": "National Women's Day", "2007-09-24": "Heritage Day", "2007-12-16": "Day of Reconciliation", - "2007-12-17": "Day of Reconciliation (Observed)", + "2007-12-17": "Day of Reconciliation (observed)", "2007-12-25": "Christmas Day", "2007-12-26": "Day of Goodwill", "2008-01-01": "New Year's Day", "2008-03-21": "Good Friday; Human Rights Day", "2008-03-24": "Family Day", "2008-04-27": "Freedom Day", - "2008-04-28": "Freedom Day (Observed)", + "2008-04-28": "Freedom Day (observed)", "2008-05-01": "Workers' Day", "2008-05-02": "Public holiday by presidential decree", "2008-06-16": "Youth Day", @@ -690,14 +690,14 @@ "2009-05-01": "Workers' Day", "2009-06-16": "Youth Day", "2009-08-09": "National Women's Day", - "2009-08-10": "National Women's Day (Observed)", + "2009-08-10": "National Women's Day (observed)", "2009-09-24": "Heritage Day", "2009-12-16": "Day of Reconciliation", "2009-12-25": "Christmas Day", "2009-12-26": "Day of Goodwill", "2010-01-01": "New Year's Day", "2010-03-21": "Human Rights Day", - "2010-03-22": "Human Rights Day (Observed)", + "2010-03-22": "Human Rights Day (observed)", "2010-04-02": "Good Friday", "2010-04-05": "Family Day", "2010-04-27": "Freedom Day", @@ -708,14 +708,14 @@ "2010-12-16": "Day of Reconciliation", "2010-12-25": "Christmas Day", "2010-12-26": "Day of Goodwill", - "2010-12-27": "Day of Goodwill (Observed)", + "2010-12-27": "Day of Goodwill (observed)", "2011-01-01": "New Year's Day", "2011-03-21": "Human Rights Day", "2011-04-22": "Good Friday", "2011-04-25": "Family Day", "2011-04-27": "Freedom Day", "2011-05-01": "Workers' Day", - "2011-05-02": "Workers' Day (Observed)", + "2011-05-02": "Workers' Day (observed)", "2011-05-18": "Local government elections", "2011-06-16": "Youth Day", "2011-08-09": "National Women's Day", @@ -725,7 +725,7 @@ "2011-12-26": "Day of Goodwill", "2011-12-27": "Public holiday by presidential decree", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-03-21": "Human Rights Day", "2012-04-06": "Good Friday", "2012-04-09": "Family Day", @@ -735,7 +735,7 @@ "2012-08-09": "National Women's Day", "2012-09-24": "Heritage Day", "2012-12-16": "Day of Reconciliation", - "2012-12-17": "Day of Reconciliation (Observed)", + "2012-12-17": "Day of Reconciliation (observed)", "2012-12-25": "Christmas Day", "2012-12-26": "Day of Goodwill", "2013-01-01": "New Year's Day", @@ -745,7 +745,7 @@ "2013-04-27": "Freedom Day", "2013-05-01": "Workers' Day", "2013-06-16": "Youth Day", - "2013-06-17": "Youth Day (Observed)", + "2013-06-17": "Youth Day (observed)", "2013-08-09": "National Women's Day", "2013-09-24": "Heritage Day", "2013-12-16": "Day of Reconciliation", @@ -756,7 +756,7 @@ "2014-04-18": "Good Friday", "2014-04-21": "Family Day", "2014-04-27": "Freedom Day", - "2014-04-28": "Freedom Day (Observed)", + "2014-04-28": "Freedom Day (observed)", "2014-05-01": "Workers' Day", "2014-05-07": "National and provincial government elections", "2014-06-16": "Youth Day", @@ -773,7 +773,7 @@ "2015-05-01": "Workers' Day", "2015-06-16": "Youth Day", "2015-08-09": "National Women's Day", - "2015-08-10": "National Women's Day (Observed)", + "2015-08-10": "National Women's Day (observed)", "2015-09-24": "Heritage Day", "2015-12-16": "Day of Reconciliation", "2015-12-25": "Christmas Day", @@ -784,7 +784,7 @@ "2016-03-28": "Family Day", "2016-04-27": "Freedom Day", "2016-05-01": "Workers' Day", - "2016-05-02": "Workers' Day (Observed)", + "2016-05-02": "Workers' Day (observed)", "2016-06-16": "Youth Day", "2016-08-03": "Local government elections", "2016-08-09": "National Women's Day", @@ -794,7 +794,7 @@ "2016-12-26": "Day of Goodwill", "2016-12-27": "Public holiday by presidential decree", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-03-21": "Human Rights Day", "2017-04-14": "Good Friday", "2017-04-17": "Family Day", @@ -803,7 +803,7 @@ "2017-06-16": "Youth Day", "2017-08-09": "National Women's Day", "2017-09-24": "Heritage Day", - "2017-09-25": "Heritage Day (Observed)", + "2017-09-25": "Heritage Day (observed)", "2017-12-16": "Day of Reconciliation", "2017-12-25": "Christmas Day", "2017-12-26": "Day of Goodwill", @@ -817,7 +817,7 @@ "2018-08-09": "National Women's Day", "2018-09-24": "Heritage Day", "2018-12-16": "Day of Reconciliation", - "2018-12-17": "Day of Reconciliation (Observed)", + "2018-12-17": "Day of Reconciliation (observed)", "2018-12-25": "Christmas Day", "2018-12-26": "Day of Goodwill", "2019-01-01": "New Year's Day", @@ -828,7 +828,7 @@ "2019-05-01": "Workers' Day", "2019-05-08": "National and provincial government elections", "2019-06-16": "Youth Day", - "2019-06-17": "Youth Day (Observed)", + "2019-06-17": "Youth Day (observed)", "2019-08-09": "National Women's Day", "2019-09-24": "Heritage Day", "2019-12-16": "Day of Reconciliation", @@ -842,14 +842,14 @@ "2020-05-01": "Workers' Day", "2020-06-16": "Youth Day", "2020-08-09": "National Women's Day", - "2020-08-10": "National Women's Day (Observed)", + "2020-08-10": "National Women's Day (observed)", "2020-09-24": "Heritage Day", "2020-12-16": "Day of Reconciliation", "2020-12-25": "Christmas Day", "2020-12-26": "Day of Goodwill", "2021-01-01": "New Year's Day", "2021-03-21": "Human Rights Day", - "2021-03-22": "Human Rights Day (Observed)", + "2021-03-22": "Human Rights Day (observed)", "2021-04-02": "Good Friday", "2021-04-05": "Family Day", "2021-04-27": "Freedom Day", @@ -861,14 +861,14 @@ "2021-12-16": "Day of Reconciliation", "2021-12-25": "Christmas Day", "2021-12-26": "Day of Goodwill", - "2021-12-27": "Day of Goodwill (Observed)", + "2021-12-27": "Day of Goodwill (observed)", "2022-01-01": "New Year's Day", "2022-03-21": "Human Rights Day", "2022-04-15": "Good Friday", "2022-04-18": "Family Day", "2022-04-27": "Freedom Day", "2022-05-01": "Workers' Day", - "2022-05-02": "Workers' Day (Observed)", + "2022-05-02": "Workers' Day (observed)", "2022-06-16": "Youth Day", "2022-08-09": "National Women's Day", "2022-09-24": "Heritage Day", @@ -877,7 +877,7 @@ "2022-12-26": "Day of Goodwill", "2022-12-27": "Public holiday by presidential decree", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-03-21": "Human Rights Day", "2023-04-07": "Good Friday", "2023-04-10": "Family Day", @@ -886,7 +886,7 @@ "2023-06-16": "Youth Day", "2023-08-09": "National Women's Day", "2023-09-24": "Heritage Day", - "2023-09-25": "Heritage Day (Observed)", + "2023-09-25": "Heritage Day (observed)", "2023-12-15": "Public holiday by presidential decree", "2023-12-16": "Day of Reconciliation", "2023-12-25": "Christmas Day", @@ -898,7 +898,7 @@ "2024-04-27": "Freedom Day", "2024-05-01": "Workers' Day", "2024-06-16": "Youth Day", - "2024-06-17": "Youth Day (Observed)", + "2024-06-17": "Youth Day (observed)", "2024-08-09": "National Women's Day", "2024-09-24": "Heritage Day", "2024-12-16": "Day of Reconciliation", @@ -909,7 +909,7 @@ "2025-04-18": "Good Friday", "2025-04-21": "Family Day", "2025-04-27": "Freedom Day", - "2025-04-28": "Freedom Day (Observed)", + "2025-04-28": "Freedom Day (observed)", "2025-05-01": "Workers' Day", "2025-06-16": "Youth Day", "2025-08-09": "National Women's Day", @@ -925,14 +925,14 @@ "2026-05-01": "Workers' Day", "2026-06-16": "Youth Day", "2026-08-09": "National Women's Day", - "2026-08-10": "National Women's Day (Observed)", + "2026-08-10": "National Women's Day (observed)", "2026-09-24": "Heritage Day", "2026-12-16": "Day of Reconciliation", "2026-12-25": "Christmas Day", "2026-12-26": "Day of Goodwill", "2027-01-01": "New Year's Day", "2027-03-21": "Human Rights Day", - "2027-03-22": "Human Rights Day (Observed)", + "2027-03-22": "Human Rights Day (observed)", "2027-03-26": "Good Friday", "2027-03-29": "Family Day", "2027-04-27": "Freedom Day", @@ -943,7 +943,7 @@ "2027-12-16": "Day of Reconciliation", "2027-12-25": "Christmas Day", "2027-12-26": "Day of Goodwill", - "2027-12-27": "Day of Goodwill (Observed)", + "2027-12-27": "Day of Goodwill (observed)", "2028-01-01": "New Year's Day", "2028-03-21": "Human Rights Day", "2028-04-14": "Good Friday", @@ -953,7 +953,7 @@ "2028-06-16": "Youth Day", "2028-08-09": "National Women's Day", "2028-09-24": "Heritage Day", - "2028-09-25": "Heritage Day (Observed)", + "2028-09-25": "Heritage Day (observed)", "2028-12-16": "Day of Reconciliation", "2028-12-25": "Christmas Day", "2028-12-26": "Day of Goodwill", @@ -967,7 +967,7 @@ "2029-08-09": "National Women's Day", "2029-09-24": "Heritage Day", "2029-12-16": "Day of Reconciliation", - "2029-12-17": "Day of Reconciliation (Observed)", + "2029-12-17": "Day of Reconciliation (observed)", "2029-12-25": "Christmas Day", "2029-12-26": "Day of Goodwill", "2030-01-01": "New Year's Day", @@ -977,7 +977,7 @@ "2030-04-27": "Freedom Day", "2030-05-01": "Workers' Day", "2030-06-16": "Youth Day", - "2030-06-17": "Youth Day (Observed)", + "2030-06-17": "Youth Day (observed)", "2030-08-09": "National Women's Day", "2030-09-24": "Heritage Day", "2030-12-16": "Day of Reconciliation", @@ -988,7 +988,7 @@ "2031-04-11": "Good Friday", "2031-04-14": "Family Day", "2031-04-27": "Freedom Day", - "2031-04-28": "Freedom Day (Observed)", + "2031-04-28": "Freedom Day (observed)", "2031-05-01": "Workers' Day", "2031-06-16": "Youth Day", "2031-08-09": "National Women's Day", @@ -998,7 +998,7 @@ "2031-12-26": "Day of Goodwill", "2032-01-01": "New Year's Day", "2032-03-21": "Human Rights Day", - "2032-03-22": "Human Rights Day (Observed)", + "2032-03-22": "Human Rights Day (observed)", "2032-03-26": "Good Friday", "2032-03-29": "Family Day", "2032-04-27": "Freedom Day", @@ -1009,14 +1009,14 @@ "2032-12-16": "Day of Reconciliation", "2032-12-25": "Christmas Day", "2032-12-26": "Day of Goodwill", - "2032-12-27": "Day of Goodwill (Observed)", + "2032-12-27": "Day of Goodwill (observed)", "2033-01-01": "New Year's Day", "2033-03-21": "Human Rights Day", "2033-04-15": "Good Friday", "2033-04-18": "Family Day", "2033-04-27": "Freedom Day", "2033-05-01": "Workers' Day", - "2033-05-02": "Workers' Day (Observed)", + "2033-05-02": "Workers' Day (observed)", "2033-06-16": "Youth Day", "2033-08-09": "National Women's Day", "2033-09-24": "Heritage Day", @@ -1024,7 +1024,7 @@ "2033-12-25": "Christmas Day", "2033-12-26": "Day of Goodwill", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-21": "Human Rights Day", "2034-04-07": "Good Friday", "2034-04-10": "Family Day", @@ -1033,7 +1033,7 @@ "2034-06-16": "Youth Day", "2034-08-09": "National Women's Day", "2034-09-24": "Heritage Day", - "2034-09-25": "Heritage Day (Observed)", + "2034-09-25": "Heritage Day (observed)", "2034-12-16": "Day of Reconciliation", "2034-12-25": "Christmas Day", "2034-12-26": "Day of Goodwill", @@ -1047,7 +1047,7 @@ "2035-08-09": "National Women's Day", "2035-09-24": "Heritage Day", "2035-12-16": "Day of Reconciliation", - "2035-12-17": "Day of Reconciliation (Observed)", + "2035-12-17": "Day of Reconciliation (observed)", "2035-12-25": "Christmas Day", "2035-12-26": "Day of Goodwill", "2036-01-01": "New Year's Day", @@ -1055,7 +1055,7 @@ "2036-04-11": "Good Friday", "2036-04-14": "Family Day", "2036-04-27": "Freedom Day", - "2036-04-28": "Freedom Day (Observed)", + "2036-04-28": "Freedom Day (observed)", "2036-05-01": "Workers' Day", "2036-06-16": "Youth Day", "2036-08-09": "National Women's Day", @@ -1071,14 +1071,14 @@ "2037-05-01": "Workers' Day", "2037-06-16": "Youth Day", "2037-08-09": "National Women's Day", - "2037-08-10": "National Women's Day (Observed)", + "2037-08-10": "National Women's Day (observed)", "2037-09-24": "Heritage Day", "2037-12-16": "Day of Reconciliation", "2037-12-25": "Christmas Day", "2037-12-26": "Day of Goodwill", "2038-01-01": "New Year's Day", "2038-03-21": "Human Rights Day", - "2038-03-22": "Human Rights Day (Observed)", + "2038-03-22": "Human Rights Day (observed)", "2038-04-23": "Good Friday", "2038-04-26": "Family Day", "2038-04-27": "Freedom Day", @@ -1089,14 +1089,14 @@ "2038-12-16": "Day of Reconciliation", "2038-12-25": "Christmas Day", "2038-12-26": "Day of Goodwill", - "2038-12-27": "Day of Goodwill (Observed)", + "2038-12-27": "Day of Goodwill (observed)", "2039-01-01": "New Year's Day", "2039-03-21": "Human Rights Day", "2039-04-08": "Good Friday", "2039-04-11": "Family Day", "2039-04-27": "Freedom Day", "2039-05-01": "Workers' Day", - "2039-05-02": "Workers' Day (Observed)", + "2039-05-02": "Workers' Day (observed)", "2039-06-16": "Youth Day", "2039-08-09": "National Women's Day", "2039-09-24": "Heritage Day", @@ -1104,7 +1104,7 @@ "2039-12-25": "Christmas Day", "2039-12-26": "Day of Goodwill", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-21": "Human Rights Day", "2040-03-30": "Good Friday", "2040-04-02": "Family Day", @@ -1114,7 +1114,7 @@ "2040-08-09": "National Women's Day", "2040-09-24": "Heritage Day", "2040-12-16": "Day of Reconciliation", - "2040-12-17": "Day of Reconciliation (Observed)", + "2040-12-17": "Day of Reconciliation (observed)", "2040-12-25": "Christmas Day", "2040-12-26": "Day of Goodwill", "2041-01-01": "New Year's Day", @@ -1124,7 +1124,7 @@ "2041-04-27": "Freedom Day", "2041-05-01": "Workers' Day", "2041-06-16": "Youth Day", - "2041-06-17": "Youth Day (Observed)", + "2041-06-17": "Youth Day (observed)", "2041-08-09": "National Women's Day", "2041-09-24": "Heritage Day", "2041-12-16": "Day of Reconciliation", @@ -1135,7 +1135,7 @@ "2042-04-04": "Good Friday", "2042-04-07": "Family Day", "2042-04-27": "Freedom Day", - "2042-04-28": "Freedom Day (Observed)", + "2042-04-28": "Freedom Day (observed)", "2042-05-01": "Workers' Day", "2042-06-16": "Youth Day", "2042-08-09": "National Women's Day", @@ -1151,7 +1151,7 @@ "2043-05-01": "Workers' Day", "2043-06-16": "Youth Day", "2043-08-09": "National Women's Day", - "2043-08-10": "National Women's Day (Observed)", + "2043-08-10": "National Women's Day (observed)", "2043-09-24": "Heritage Day", "2043-12-16": "Day of Reconciliation", "2043-12-25": "Christmas Day", @@ -1162,7 +1162,7 @@ "2044-04-18": "Family Day", "2044-04-27": "Freedom Day", "2044-05-01": "Workers' Day", - "2044-05-02": "Workers' Day (Observed)", + "2044-05-02": "Workers' Day (observed)", "2044-06-16": "Youth Day", "2044-08-09": "National Women's Day", "2044-09-24": "Heritage Day", @@ -1170,7 +1170,7 @@ "2044-12-25": "Christmas Day", "2044-12-26": "Day of Goodwill", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-03-21": "Human Rights Day", "2045-04-07": "Good Friday", "2045-04-10": "Family Day", @@ -1179,7 +1179,7 @@ "2045-06-16": "Youth Day", "2045-08-09": "National Women's Day", "2045-09-24": "Heritage Day", - "2045-09-25": "Heritage Day (Observed)", + "2045-09-25": "Heritage Day (observed)", "2045-12-16": "Day of Reconciliation", "2045-12-25": "Christmas Day", "2045-12-26": "Day of Goodwill", @@ -1193,7 +1193,7 @@ "2046-08-09": "National Women's Day", "2046-09-24": "Heritage Day", "2046-12-16": "Day of Reconciliation", - "2046-12-17": "Day of Reconciliation (Observed)", + "2046-12-17": "Day of Reconciliation (observed)", "2046-12-25": "Christmas Day", "2046-12-26": "Day of Goodwill", "2047-01-01": "New Year's Day", @@ -1203,7 +1203,7 @@ "2047-04-27": "Freedom Day", "2047-05-01": "Workers' Day", "2047-06-16": "Youth Day", - "2047-06-17": "Youth Day (Observed)", + "2047-06-17": "Youth Day (observed)", "2047-08-09": "National Women's Day", "2047-09-24": "Heritage Day", "2047-12-16": "Day of Reconciliation", @@ -1217,14 +1217,14 @@ "2048-05-01": "Workers' Day", "2048-06-16": "Youth Day", "2048-08-09": "National Women's Day", - "2048-08-10": "National Women's Day (Observed)", + "2048-08-10": "National Women's Day (observed)", "2048-09-24": "Heritage Day", "2048-12-16": "Day of Reconciliation", "2048-12-25": "Christmas Day", "2048-12-26": "Day of Goodwill", "2049-01-01": "New Year's Day", "2049-03-21": "Human Rights Day", - "2049-03-22": "Human Rights Day (Observed)", + "2049-03-22": "Human Rights Day (observed)", "2049-04-16": "Good Friday", "2049-04-19": "Family Day", "2049-04-27": "Freedom Day", @@ -1235,14 +1235,14 @@ "2049-12-16": "Day of Reconciliation", "2049-12-25": "Christmas Day", "2049-12-26": "Day of Goodwill", - "2049-12-27": "Day of Goodwill (Observed)", + "2049-12-27": "Day of Goodwill (observed)", "2050-01-01": "New Year's Day", "2050-03-21": "Human Rights Day", "2050-04-08": "Good Friday", "2050-04-11": "Family Day", "2050-04-27": "Freedom Day", "2050-05-01": "Workers' Day", - "2050-05-02": "Workers' Day (Observed)", + "2050-05-02": "Workers' Day (observed)", "2050-06-16": "Youth Day", "2050-08-09": "National Women's Day", "2050-09-24": "Heritage Day", diff --git a/snapshots/countries/ZM_COMMON.json b/snapshots/countries/ZM_COMMON.json index 7bcc158fb..0d6262d41 100644 --- a/snapshots/countries/ZM_COMMON.json +++ b/snapshots/countries/ZM_COMMON.json @@ -10,7 +10,7 @@ "1965-07-06": "Unity Day", "1965-08-02": "Farmers' Day", "1965-10-24": "Independence Day", - "1965-10-25": "Independence Day (Observed)", + "1965-10-25": "Independence Day (observed)", "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-03-12": "Youth Day", @@ -18,18 +18,18 @@ "1966-04-09": "Holy Saturday", "1966-04-11": "Easter Monday", "1966-05-01": "Labour Day", - "1966-05-02": "Labour Day (Observed)", + "1966-05-02": "Labour Day (observed)", "1966-05-25": "Africa Freedom Day", "1966-07-04": "Heroes' Day", "1966-07-05": "Unity Day", "1966-08-01": "Farmers' Day", "1966-10-24": "Independence Day", "1966-12-25": "Christmas Day", - "1966-12-26": "Christmas Day (Observed)", + "1966-12-26": "Christmas Day (observed)", "1967-01-01": "New Year's Day", - "1967-01-02": "New Year's Day (Observed)", + "1967-01-02": "New Year's Day (observed)", "1967-03-12": "Youth Day", - "1967-03-13": "Youth Day (Observed)", + "1967-03-13": "Youth Day (observed)", "1967-03-24": "Good Friday", "1967-03-25": "Holy Saturday", "1967-03-27": "Easter Monday", @@ -59,7 +59,7 @@ "1969-04-07": "Easter Monday", "1969-05-01": "Labour Day", "1969-05-25": "Africa Freedom Day", - "1969-05-26": "Africa Freedom Day (Observed)", + "1969-05-26": "Africa Freedom Day (observed)", "1969-07-07": "Heroes' Day", "1969-07-08": "Unity Day", "1969-08-04": "Farmers' Day", @@ -88,11 +88,11 @@ "1971-07-06": "Unity Day", "1971-08-02": "Farmers' Day", "1971-10-24": "Independence Day", - "1971-10-25": "Independence Day (Observed)", + "1971-10-25": "Independence Day (observed)", "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", "1972-03-12": "Youth Day", - "1972-03-13": "Youth Day (Observed)", + "1972-03-13": "Youth Day (observed)", "1972-03-31": "Good Friday", "1972-04-01": "Holy Saturday", "1972-04-03": "Easter Monday", @@ -134,7 +134,7 @@ "1975-03-31": "Easter Monday", "1975-05-01": "Labour Day", "1975-05-25": "Africa Freedom Day", - "1975-05-26": "Africa Freedom Day (Observed)", + "1975-05-26": "Africa Freedom Day (observed)", "1975-07-07": "Heroes' Day", "1975-07-08": "Unity Day", "1975-08-04": "Farmers' Day", @@ -151,7 +151,7 @@ "1976-07-06": "Unity Day", "1976-08-02": "Farmers' Day", "1976-10-24": "Independence Day", - "1976-10-25": "Independence Day (Observed)", + "1976-10-25": "Independence Day (observed)", "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-03-12": "Youth Day", @@ -159,18 +159,18 @@ "1977-04-09": "Holy Saturday", "1977-04-11": "Easter Monday", "1977-05-01": "Labour Day", - "1977-05-02": "Labour Day (Observed)", + "1977-05-02": "Labour Day (observed)", "1977-05-25": "Africa Freedom Day", "1977-07-04": "Heroes' Day", "1977-07-05": "Unity Day", "1977-08-01": "Farmers' Day", "1977-10-24": "Independence Day", "1977-12-25": "Christmas Day", - "1977-12-26": "Christmas Day (Observed)", + "1977-12-26": "Christmas Day (observed)", "1978-01-01": "New Year's Day", - "1978-01-02": "New Year's Day (Observed)", + "1978-01-02": "New Year's Day (observed)", "1978-03-12": "Youth Day", - "1978-03-13": "Youth Day (Observed)", + "1978-03-13": "Youth Day (observed)", "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-03-27": "Easter Monday", @@ -200,7 +200,7 @@ "1980-04-07": "Easter Monday", "1980-05-01": "Labour Day", "1980-05-25": "Africa Freedom Day", - "1980-05-26": "Africa Freedom Day (Observed)", + "1980-05-26": "Africa Freedom Day (observed)", "1980-07-07": "Heroes' Day", "1980-07-08": "Unity Day", "1980-08-04": "Farmers' Day", @@ -229,7 +229,7 @@ "1982-07-06": "Unity Day", "1982-08-02": "Farmers' Day", "1982-10-24": "Independence Day", - "1982-10-25": "Independence Day (Observed)", + "1982-10-25": "Independence Day (observed)", "1982-12-25": "Christmas Day", "1983-01-01": "New Year's Day", "1983-03-12": "Youth Day", @@ -237,16 +237,16 @@ "1983-04-02": "Holy Saturday", "1983-04-04": "Easter Monday", "1983-05-01": "Labour Day", - "1983-05-02": "Labour Day (Observed)", + "1983-05-02": "Labour Day (observed)", "1983-05-25": "Africa Freedom Day", "1983-07-04": "Heroes' Day", "1983-07-05": "Unity Day", "1983-08-01": "Farmers' Day", "1983-10-24": "Independence Day", "1983-12-25": "Christmas Day", - "1983-12-26": "Christmas Day (Observed)", + "1983-12-26": "Christmas Day (observed)", "1984-01-01": "New Year's Day", - "1984-01-02": "New Year's Day (Observed)", + "1984-01-02": "New Year's Day (observed)", "1984-03-12": "Youth Day", "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", @@ -277,7 +277,7 @@ "1986-03-31": "Easter Monday", "1986-05-01": "Labour Day", "1986-05-25": "Africa Freedom Day", - "1986-05-26": "Africa Freedom Day (Observed)", + "1986-05-26": "Africa Freedom Day (observed)", "1986-07-07": "Heroes' Day", "1986-07-08": "Unity Day", "1986-08-04": "Farmers' Day", @@ -301,18 +301,18 @@ "1988-04-02": "Holy Saturday", "1988-04-04": "Easter Monday", "1988-05-01": "Labour Day", - "1988-05-02": "Labour Day (Observed)", + "1988-05-02": "Labour Day (observed)", "1988-05-25": "Africa Freedom Day", "1988-07-04": "Heroes' Day", "1988-07-05": "Unity Day", "1988-08-01": "Farmers' Day", "1988-10-24": "Independence Day", "1988-12-25": "Christmas Day", - "1988-12-26": "Christmas Day (Observed)", + "1988-12-26": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-12": "Youth Day", - "1989-03-13": "Youth Day (Observed)", + "1989-03-13": "Youth Day (observed)", "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-03-27": "Easter Monday", @@ -350,7 +350,7 @@ "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-03-08": "International Women's Day", - "1992-03-09": "International Women's Day (Observed)", + "1992-03-09": "International Women's Day (observed)", "1992-03-12": "Youth Day", "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", @@ -374,7 +374,7 @@ "1993-07-06": "Unity Day", "1993-08-02": "Farmers' Day", "1993-10-24": "Independence Day", - "1993-10-25": "Independence Day (Observed)", + "1993-10-25": "Independence Day (observed)", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-03-08": "International Women's Day", @@ -383,19 +383,19 @@ "1994-04-02": "Holy Saturday", "1994-04-04": "Easter Monday", "1994-05-01": "Labour Day", - "1994-05-02": "Labour Day (Observed)", + "1994-05-02": "Labour Day (observed)", "1994-05-25": "Africa Freedom Day", "1994-07-04": "Heroes' Day", "1994-07-05": "Unity Day", "1994-08-01": "Farmers' Day", "1994-10-24": "Independence Day", "1994-12-25": "Christmas Day", - "1994-12-26": "Christmas Day (Observed)", + "1994-12-26": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-03-08": "International Women's Day", "1995-03-12": "Youth Day", - "1995-03-13": "Youth Day (Observed)", + "1995-03-13": "Youth Day (observed)", "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-04-17": "Easter Monday", @@ -427,7 +427,7 @@ "1997-03-31": "Easter Monday", "1997-05-01": "Labour Day", "1997-05-25": "Africa Freedom Day", - "1997-05-26": "Africa Freedom Day (Observed)", + "1997-05-26": "Africa Freedom Day (observed)", "1997-07-07": "Heroes' Day", "1997-07-08": "Unity Day", "1997-08-04": "Farmers' Day", @@ -435,7 +435,7 @@ "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-03-08": "International Women's Day", - "1998-03-09": "International Women's Day (Observed)", + "1998-03-09": "International Women's Day (observed)", "1998-03-12": "Youth Day", "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", @@ -459,12 +459,12 @@ "1999-07-06": "Unity Day", "1999-08-02": "Farmers' Day", "1999-10-24": "Independence Day", - "1999-10-25": "Independence Day (Observed)", + "1999-10-25": "Independence Day (observed)", "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", "2000-03-08": "International Women's Day", "2000-03-12": "Youth Day", - "2000-03-13": "Youth Day (Observed)", + "2000-03-13": "Youth Day (observed)", "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-04-24": "Easter Monday", @@ -509,7 +509,7 @@ "2003-04-21": "Easter Monday", "2003-05-01": "Labour Day", "2003-05-25": "Africa Freedom Day", - "2003-05-26": "Africa Freedom Day (Observed)", + "2003-05-26": "Africa Freedom Day (observed)", "2003-07-07": "Heroes' Day", "2003-07-08": "Unity Day", "2003-08-04": "Farmers' Day", @@ -527,7 +527,7 @@ "2004-07-06": "Unity Day", "2004-08-02": "Farmers' Day", "2004-10-24": "Independence Day", - "2004-10-25": "Independence Day (Observed)", + "2004-10-25": "Independence Day (observed)", "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-03-08": "International Women's Day", @@ -536,19 +536,19 @@ "2005-03-26": "Holy Saturday", "2005-03-28": "Easter Monday", "2005-05-01": "Labour Day", - "2005-05-02": "Labour Day (Observed)", + "2005-05-02": "Labour Day (observed)", "2005-05-25": "Africa Freedom Day", "2005-07-04": "Heroes' Day", "2005-07-05": "Unity Day", "2005-08-01": "Farmers' Day", "2005-10-24": "Independence Day", "2005-12-25": "Christmas Day", - "2005-12-26": "Christmas Day (Observed)", + "2005-12-26": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-03-08": "International Women's Day", "2006-03-12": "Youth Day", - "2006-03-13": "Youth Day (Observed)", + "2006-03-13": "Youth Day (observed)", "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-04-17": "Easter Monday", @@ -580,7 +580,7 @@ "2008-03-24": "Easter Monday", "2008-05-01": "Labour Day", "2008-05-25": "Africa Freedom Day", - "2008-05-26": "Africa Freedom Day (Observed)", + "2008-05-26": "Africa Freedom Day (observed)", "2008-07-07": "Heroes' Day", "2008-07-08": "Unity Day", "2008-08-04": "Farmers' Day", @@ -588,7 +588,7 @@ "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-03-08": "International Women's Day", - "2009-03-09": "International Women's Day (Observed)", + "2009-03-09": "International Women's Day (observed)", "2009-03-12": "Youth Day", "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", @@ -612,7 +612,7 @@ "2010-07-06": "Unity Day", "2010-08-02": "Farmers' Day", "2010-10-24": "Independence Day", - "2010-10-25": "Independence Day (Observed)", + "2010-10-25": "Independence Day (observed)", "2010-12-25": "Christmas Day", "2011-01-01": "New Year's Day", "2011-03-08": "International Women's Day", @@ -621,16 +621,16 @@ "2011-04-23": "Holy Saturday", "2011-04-25": "Easter Monday", "2011-05-01": "Labour Day", - "2011-05-02": "Labour Day (Observed)", + "2011-05-02": "Labour Day (observed)", "2011-05-25": "Africa Freedom Day", "2011-07-04": "Heroes' Day", "2011-07-05": "Unity Day", "2011-08-01": "Farmers' Day", "2011-10-24": "Independence Day", "2011-12-25": "Christmas Day", - "2011-12-26": "Christmas Day (Observed)", + "2011-12-26": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-03-08": "International Women's Day", "2012-03-12": "Youth Day", "2012-04-06": "Good Friday", @@ -664,7 +664,7 @@ "2014-04-21": "Easter Monday", "2014-05-01": "Labour Day", "2014-05-25": "Africa Freedom Day", - "2014-05-26": "Africa Freedom Day (Observed)", + "2014-05-26": "Africa Freedom Day (observed)", "2014-07-07": "Heroes' Day", "2014-07-08": "Unity Day", "2014-08-04": "Farmers' Day", @@ -672,7 +672,7 @@ "2014-12-25": "Christmas Day", "2015-01-01": "New Year's Day", "2015-03-08": "International Women's Day", - "2015-03-09": "International Women's Day (Observed)", + "2015-03-09": "International Women's Day (observed)", "2015-03-12": "Youth Day", "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", @@ -683,7 +683,7 @@ "2015-07-07": "Unity Day", "2015-08-03": "Farmers' Day", "2015-10-18": "National Prayer Day", - "2015-10-19": "National Prayer Day (Observed)", + "2015-10-19": "National Prayer Day (observed)", "2015-10-24": "Independence Day", "2015-12-25": "Christmas Day", "2016-01-01": "New Year's Day", @@ -693,7 +693,7 @@ "2016-03-26": "Holy Saturday", "2016-03-28": "Easter Monday", "2016-05-01": "Labour Day", - "2016-05-02": "Labour Day (Observed)", + "2016-05-02": "Labour Day (observed)", "2016-05-25": "Africa Freedom Day", "2016-07-04": "Heroes' Day", "2016-07-05": "Unity Day", @@ -703,12 +703,12 @@ "2016-10-18": "National Prayer Day", "2016-10-24": "Independence Day", "2016-12-25": "Christmas Day", - "2016-12-26": "Christmas Day (Observed)", + "2016-12-26": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-03-08": "International Women's Day", "2017-03-12": "Youth Day", - "2017-03-13": "Youth Day (Observed)", + "2017-03-13": "Youth Day (observed)", "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-04-17": "Easter Monday", @@ -752,7 +752,7 @@ "2019-12-25": "Christmas Day", "2020-01-01": "New Year's Day", "2020-03-08": "International Women's Day", - "2020-03-09": "International Women's Day (Observed)", + "2020-03-09": "International Women's Day (observed)", "2020-03-12": "Youth Day", "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", @@ -763,7 +763,7 @@ "2020-07-07": "Unity Day", "2020-08-03": "Farmers' Day", "2020-10-18": "National Prayer Day", - "2020-10-19": "National Prayer Day (Observed)", + "2020-10-19": "National Prayer Day (observed)", "2020-10-24": "Independence Day", "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", @@ -784,7 +784,7 @@ "2021-08-24": "Presidential inauguration", "2021-10-18": "National Prayer Day", "2021-10-24": "Independence Day", - "2021-10-25": "Independence Day (Observed)", + "2021-10-25": "Independence Day (observed)", "2021-12-25": "Christmas Day", "2022-01-01": "New Year's Day", "2022-03-08": "International Women's Day", @@ -795,7 +795,7 @@ "2022-04-18": "Easter Monday", "2022-04-28": "Kenneth Kaunda Day", "2022-05-01": "Labour Day", - "2022-05-02": "Labour Day (Observed)", + "2022-05-02": "Labour Day (observed)", "2022-05-25": "Africa Freedom Day", "2022-07-04": "Heroes' Day", "2022-07-05": "Unity Day", @@ -803,12 +803,12 @@ "2022-10-18": "National Prayer Day", "2022-10-24": "Independence Day", "2022-12-25": "Christmas Day", - "2022-12-26": "Christmas Day (Observed)", + "2022-12-26": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-03-08": "International Women's Day", "2023-03-12": "Youth Day", - "2023-03-13": "Youth Day (Observed)", + "2023-03-13": "Youth Day (observed)", "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-04-10": "Easter Monday", @@ -828,7 +828,7 @@ "2024-03-30": "Holy Saturday", "2024-04-01": "Easter Monday", "2024-04-28": "Kenneth Kaunda Day", - "2024-04-29": "Kenneth Kaunda Day (Observed)", + "2024-04-29": "Kenneth Kaunda Day (observed)", "2024-05-01": "Labour Day", "2024-05-25": "Africa Freedom Day", "2024-07-01": "Heroes' Day", @@ -846,7 +846,7 @@ "2025-04-28": "Kenneth Kaunda Day", "2025-05-01": "Labour Day", "2025-05-25": "Africa Freedom Day", - "2025-05-26": "Africa Freedom Day (Observed)", + "2025-05-26": "Africa Freedom Day (observed)", "2025-07-07": "Heroes' Day", "2025-07-08": "Unity Day", "2025-08-04": "Farmers' Day", @@ -855,7 +855,7 @@ "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-03-08": "International Women's Day", - "2026-03-09": "International Women's Day (Observed)", + "2026-03-09": "International Women's Day (observed)", "2026-03-12": "Youth Day", "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", @@ -867,7 +867,7 @@ "2026-07-07": "Unity Day", "2026-08-03": "Farmers' Day", "2026-10-18": "National Prayer Day", - "2026-10-19": "National Prayer Day (Observed)", + "2026-10-19": "National Prayer Day (observed)", "2026-10-24": "Independence Day", "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", @@ -884,12 +884,12 @@ "2027-08-02": "Farmers' Day", "2027-10-18": "National Prayer Day", "2027-10-24": "Independence Day", - "2027-10-25": "Independence Day (Observed)", + "2027-10-25": "Independence Day (observed)", "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-03-08": "International Women's Day", "2028-03-12": "Youth Day", - "2028-03-13": "Youth Day (Observed)", + "2028-03-13": "Youth Day (observed)", "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-04-17": "Easter Monday", @@ -924,7 +924,7 @@ "2030-04-20": "Holy Saturday", "2030-04-22": "Easter Monday", "2030-04-28": "Kenneth Kaunda Day", - "2030-04-29": "Kenneth Kaunda Day (Observed)", + "2030-04-29": "Kenneth Kaunda Day (observed)", "2030-05-01": "Labour Day", "2030-05-25": "Africa Freedom Day", "2030-07-01": "Heroes' Day", @@ -942,7 +942,7 @@ "2031-04-28": "Kenneth Kaunda Day", "2031-05-01": "Labour Day", "2031-05-25": "Africa Freedom Day", - "2031-05-26": "Africa Freedom Day (Observed)", + "2031-05-26": "Africa Freedom Day (observed)", "2031-07-07": "Heroes' Day", "2031-07-08": "Unity Day", "2031-08-04": "Farmers' Day", @@ -963,7 +963,7 @@ "2032-08-02": "Farmers' Day", "2032-10-18": "National Prayer Day", "2032-10-24": "Independence Day", - "2032-10-25": "Independence Day (Observed)", + "2032-10-25": "Independence Day (observed)", "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", "2033-03-08": "International Women's Day", @@ -973,7 +973,7 @@ "2033-04-18": "Easter Monday", "2033-04-28": "Kenneth Kaunda Day", "2033-05-01": "Labour Day", - "2033-05-02": "Labour Day (Observed)", + "2033-05-02": "Labour Day (observed)", "2033-05-25": "Africa Freedom Day", "2033-07-04": "Heroes' Day", "2033-07-05": "Unity Day", @@ -981,12 +981,12 @@ "2033-10-18": "National Prayer Day", "2033-10-24": "Independence Day", "2033-12-25": "Christmas Day", - "2033-12-26": "Christmas Day (Observed)", + "2033-12-26": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-08": "International Women's Day", "2034-03-12": "Youth Day", - "2034-03-13": "Youth Day (Observed)", + "2034-03-13": "Youth Day (observed)", "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-04-10": "Easter Monday", @@ -1023,7 +1023,7 @@ "2036-04-28": "Kenneth Kaunda Day", "2036-05-01": "Labour Day", "2036-05-25": "Africa Freedom Day", - "2036-05-26": "Africa Freedom Day (Observed)", + "2036-05-26": "Africa Freedom Day (observed)", "2036-07-07": "Heroes' Day", "2036-07-08": "Unity Day", "2036-08-04": "Farmers' Day", @@ -1032,7 +1032,7 @@ "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-03-08": "International Women's Day", - "2037-03-09": "International Women's Day (Observed)", + "2037-03-09": "International Women's Day (observed)", "2037-03-12": "Youth Day", "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", @@ -1044,7 +1044,7 @@ "2037-07-07": "Unity Day", "2037-08-03": "Farmers' Day", "2037-10-18": "National Prayer Day", - "2037-10-19": "National Prayer Day (Observed)", + "2037-10-19": "National Prayer Day (observed)", "2037-10-24": "Independence Day", "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", @@ -1061,7 +1061,7 @@ "2038-08-02": "Farmers' Day", "2038-10-18": "National Prayer Day", "2038-10-24": "Independence Day", - "2038-10-25": "Independence Day (Observed)", + "2038-10-25": "Independence Day (observed)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", "2039-03-08": "International Women's Day", @@ -1071,7 +1071,7 @@ "2039-04-11": "Easter Monday", "2039-04-28": "Kenneth Kaunda Day", "2039-05-01": "Labour Day", - "2039-05-02": "Labour Day (Observed)", + "2039-05-02": "Labour Day (observed)", "2039-05-25": "Africa Freedom Day", "2039-07-04": "Heroes' Day", "2039-07-05": "Unity Day", @@ -1079,9 +1079,9 @@ "2039-10-18": "National Prayer Day", "2039-10-24": "Independence Day", "2039-12-25": "Christmas Day", - "2039-12-26": "Christmas Day (Observed)", + "2039-12-26": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-08": "International Women's Day", "2040-03-12": "Youth Day", "2040-03-30": "Good Friday", @@ -1103,7 +1103,7 @@ "2041-04-20": "Holy Saturday", "2041-04-22": "Easter Monday", "2041-04-28": "Kenneth Kaunda Day", - "2041-04-29": "Kenneth Kaunda Day (Observed)", + "2041-04-29": "Kenneth Kaunda Day (observed)", "2041-05-01": "Labour Day", "2041-05-25": "Africa Freedom Day", "2041-07-01": "Heroes' Day", @@ -1121,7 +1121,7 @@ "2042-04-28": "Kenneth Kaunda Day", "2042-05-01": "Labour Day", "2042-05-25": "Africa Freedom Day", - "2042-05-26": "Africa Freedom Day (Observed)", + "2042-05-26": "Africa Freedom Day (observed)", "2042-07-07": "Heroes' Day", "2042-07-08": "Unity Day", "2042-08-04": "Farmers' Day", @@ -1130,7 +1130,7 @@ "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-03-08": "International Women's Day", - "2043-03-09": "International Women's Day (Observed)", + "2043-03-09": "International Women's Day (observed)", "2043-03-12": "Youth Day", "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", @@ -1142,7 +1142,7 @@ "2043-07-07": "Unity Day", "2043-08-03": "Farmers' Day", "2043-10-18": "National Prayer Day", - "2043-10-19": "National Prayer Day (Observed)", + "2043-10-19": "National Prayer Day (observed)", "2043-10-24": "Independence Day", "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", @@ -1153,7 +1153,7 @@ "2044-04-18": "Easter Monday", "2044-04-28": "Kenneth Kaunda Day", "2044-05-01": "Labour Day", - "2044-05-02": "Labour Day (Observed)", + "2044-05-02": "Labour Day (observed)", "2044-05-25": "Africa Freedom Day", "2044-07-04": "Heroes' Day", "2044-07-05": "Unity Day", @@ -1161,12 +1161,12 @@ "2044-10-18": "National Prayer Day", "2044-10-24": "Independence Day", "2044-12-25": "Christmas Day", - "2044-12-26": "Christmas Day (Observed)", + "2044-12-26": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-03-08": "International Women's Day", "2045-03-12": "Youth Day", - "2045-03-13": "Youth Day (Observed)", + "2045-03-13": "Youth Day (observed)", "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-04-10": "Easter Monday", @@ -1201,7 +1201,7 @@ "2047-04-13": "Holy Saturday", "2047-04-15": "Easter Monday", "2047-04-28": "Kenneth Kaunda Day", - "2047-04-29": "Kenneth Kaunda Day (Observed)", + "2047-04-29": "Kenneth Kaunda Day (observed)", "2047-05-01": "Labour Day", "2047-05-25": "Africa Freedom Day", "2047-07-01": "Heroes' Day", @@ -1212,7 +1212,7 @@ "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-03-08": "International Women's Day", - "2048-03-09": "International Women's Day (Observed)", + "2048-03-09": "International Women's Day (observed)", "2048-03-12": "Youth Day", "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", @@ -1224,7 +1224,7 @@ "2048-07-07": "Unity Day", "2048-08-03": "Farmers' Day", "2048-10-18": "National Prayer Day", - "2048-10-19": "National Prayer Day (Observed)", + "2048-10-19": "National Prayer Day (observed)", "2048-10-24": "Independence Day", "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", @@ -1241,7 +1241,7 @@ "2049-08-02": "Farmers' Day", "2049-10-18": "National Prayer Day", "2049-10-24": "Independence Day", - "2049-10-25": "Independence Day (Observed)", + "2049-10-25": "Independence Day (observed)", "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-03-08": "International Women's Day", @@ -1251,7 +1251,7 @@ "2050-04-11": "Easter Monday", "2050-04-28": "Kenneth Kaunda Day", "2050-05-01": "Labour Day", - "2050-05-02": "Labour Day (Observed)", + "2050-05-02": "Labour Day (observed)", "2050-05-25": "Africa Freedom Day", "2050-07-04": "Heroes' Day", "2050-07-05": "Unity Day", @@ -1259,5 +1259,5 @@ "2050-10-18": "National Prayer Day", "2050-10-24": "Independence Day", "2050-12-25": "Christmas Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/countries/ZW_COMMON.json b/snapshots/countries/ZW_COMMON.json index 9df0d57bc..9d8797c1a 100644 --- a/snapshots/countries/ZW_COMMON.json +++ b/snapshots/countries/ZW_COMMON.json @@ -5,16 +5,16 @@ "1988-04-04": "Easter Monday", "1988-04-18": "Independence Day", "1988-05-01": "Workers' Day", - "1988-05-02": "Workers' Day (Observed)", + "1988-05-02": "Workers' Day (observed)", "1988-05-25": "Africa Day", "1988-08-08": "Zimbabwe Heroes' Day", "1988-08-09": "Defense Forces Day", "1988-12-22": "Unity Day", "1988-12-25": "Christmas Day", "1988-12-26": "Boxing Day", - "1988-12-27": "Christmas Day (Observed)", + "1988-12-27": "Christmas Day (observed)", "1989-01-01": "New Year's Day", - "1989-01-02": "New Year's Day (Observed)", + "1989-01-02": "New Year's Day (observed)", "1989-03-24": "Good Friday", "1989-03-25": "Easter Saturday", "1989-03-27": "Easter Monday", @@ -48,7 +48,7 @@ "1991-08-12": "Zimbabwe Heroes' Day", "1991-08-13": "Defense Forces Day", "1991-12-22": "Unity Day", - "1991-12-23": "Unity Day (Observed)", + "1991-12-23": "Unity Day (observed)", "1991-12-25": "Christmas Day", "1991-12-26": "Boxing Day", "1992-01-01": "New Year's Day", @@ -67,7 +67,7 @@ "1993-04-10": "Easter Saturday", "1993-04-12": "Easter Monday", "1993-04-18": "Independence Day", - "1993-04-19": "Independence Day (Observed)", + "1993-04-19": "Independence Day (observed)", "1993-05-01": "Workers' Day", "1993-05-25": "Africa Day", "1993-08-09": "Zimbabwe Heroes' Day", @@ -75,23 +75,23 @@ "1993-12-22": "Unity Day", "1993-12-25": "Christmas Day", "1993-12-26": "Boxing Day", - "1993-12-27": "Boxing Day (Observed)", + "1993-12-27": "Boxing Day (observed)", "1994-01-01": "New Year's Day", "1994-04-01": "Good Friday", "1994-04-02": "Easter Saturday", "1994-04-04": "Easter Monday", "1994-04-18": "Independence Day", "1994-05-01": "Workers' Day", - "1994-05-02": "Workers' Day (Observed)", + "1994-05-02": "Workers' Day (observed)", "1994-05-25": "Africa Day", "1994-08-08": "Zimbabwe Heroes' Day", "1994-08-09": "Defense Forces Day", "1994-12-22": "Unity Day", "1994-12-25": "Christmas Day", "1994-12-26": "Boxing Day", - "1994-12-27": "Christmas Day (Observed)", + "1994-12-27": "Christmas Day (observed)", "1995-01-01": "New Year's Day", - "1995-01-02": "New Year's Day (Observed)", + "1995-01-02": "New Year's Day (observed)", "1995-04-14": "Good Friday", "1995-04-15": "Easter Saturday", "1995-04-17": "Easter Monday", @@ -113,7 +113,7 @@ "1996-08-12": "Zimbabwe Heroes' Day", "1996-08-13": "Defense Forces Day", "1996-12-22": "Unity Day", - "1996-12-23": "Unity Day (Observed)", + "1996-12-23": "Unity Day (observed)", "1996-12-25": "Christmas Day", "1996-12-26": "Boxing Day", "1997-01-01": "New Year's Day", @@ -123,7 +123,7 @@ "1997-04-18": "Independence Day", "1997-05-01": "Workers' Day", "1997-05-25": "Africa Day", - "1997-05-26": "Africa Day (Observed)", + "1997-05-26": "Africa Day (observed)", "1997-08-11": "Zimbabwe Heroes' Day", "1997-08-12": "Defense Forces Day", "1997-12-22": "Unity Day", @@ -146,7 +146,7 @@ "1999-04-03": "Easter Saturday", "1999-04-05": "Easter Monday", "1999-04-18": "Independence Day", - "1999-04-19": "Independence Day (Observed)", + "1999-04-19": "Independence Day (observed)", "1999-05-01": "Workers' Day", "1999-05-25": "Africa Day", "1999-08-09": "Zimbabwe Heroes' Day", @@ -154,7 +154,7 @@ "1999-12-22": "Unity Day", "1999-12-25": "Christmas Day", "1999-12-26": "Boxing Day", - "1999-12-27": "Boxing Day (Observed)", + "1999-12-27": "Boxing Day (observed)", "2000-01-01": "New Year's Day", "2000-04-18": "Independence Day", "2000-04-21": "Good Friday", @@ -189,7 +189,7 @@ "2002-08-12": "Zimbabwe Heroes' Day", "2002-08-13": "Defense Forces Day", "2002-12-22": "Unity Day", - "2002-12-23": "Unity Day (Observed)", + "2002-12-23": "Unity Day (observed)", "2002-12-25": "Christmas Day", "2002-12-26": "Boxing Day", "2003-01-01": "New Year's Day", @@ -198,7 +198,7 @@ "2003-04-21": "Easter Monday", "2003-05-01": "Workers' Day", "2003-05-25": "Africa Day", - "2003-05-26": "Africa Day (Observed)", + "2003-05-26": "Africa Day (observed)", "2003-08-11": "Zimbabwe Heroes' Day", "2003-08-12": "Defense Forces Day", "2003-12-22": "Unity Day", @@ -209,7 +209,7 @@ "2004-04-10": "Easter Saturday", "2004-04-12": "Easter Monday", "2004-04-18": "Independence Day", - "2004-04-19": "Independence Day (Observed)", + "2004-04-19": "Independence Day (observed)", "2004-05-01": "Workers' Day", "2004-05-25": "Africa Day", "2004-08-09": "Zimbabwe Heroes' Day", @@ -217,23 +217,23 @@ "2004-12-22": "Unity Day", "2004-12-25": "Christmas Day", "2004-12-26": "Boxing Day", - "2004-12-27": "Boxing Day (Observed)", + "2004-12-27": "Boxing Day (observed)", "2005-01-01": "New Year's Day", "2005-03-25": "Good Friday", "2005-03-26": "Easter Saturday", "2005-03-28": "Easter Monday", "2005-04-18": "Independence Day", "2005-05-01": "Workers' Day", - "2005-05-02": "Workers' Day (Observed)", + "2005-05-02": "Workers' Day (observed)", "2005-05-25": "Africa Day", "2005-08-08": "Zimbabwe Heroes' Day", "2005-08-09": "Defense Forces Day", "2005-12-22": "Unity Day", "2005-12-25": "Christmas Day", "2005-12-26": "Boxing Day", - "2005-12-27": "Christmas Day (Observed)", + "2005-12-27": "Christmas Day (observed)", "2006-01-01": "New Year's Day", - "2006-01-02": "New Year's Day (Observed)", + "2006-01-02": "New Year's Day (observed)", "2006-04-14": "Good Friday", "2006-04-15": "Easter Saturday", "2006-04-17": "Easter Monday", @@ -264,7 +264,7 @@ "2008-04-18": "Independence Day", "2008-05-01": "Workers' Day", "2008-05-25": "Africa Day", - "2008-05-26": "Africa Day (Observed)", + "2008-05-26": "Africa Day (observed)", "2008-08-11": "Zimbabwe Heroes' Day", "2008-08-12": "Defense Forces Day", "2008-12-22": "Unity Day", @@ -287,7 +287,7 @@ "2010-04-03": "Easter Saturday", "2010-04-05": "Easter Monday", "2010-04-18": "Independence Day", - "2010-04-19": "Independence Day (Observed)", + "2010-04-19": "Independence Day (observed)", "2010-05-01": "Workers' Day", "2010-05-25": "Africa Day", "2010-08-09": "Zimbabwe Heroes' Day", @@ -295,23 +295,23 @@ "2010-12-22": "Unity Day", "2010-12-25": "Christmas Day", "2010-12-26": "Boxing Day", - "2010-12-27": "Boxing Day (Observed)", + "2010-12-27": "Boxing Day (observed)", "2011-01-01": "New Year's Day", "2011-04-18": "Independence Day", "2011-04-22": "Good Friday", "2011-04-23": "Easter Saturday", "2011-04-25": "Easter Monday", "2011-05-01": "Workers' Day", - "2011-05-02": "Workers' Day (Observed)", + "2011-05-02": "Workers' Day (observed)", "2011-05-25": "Africa Day", "2011-08-08": "Zimbabwe Heroes' Day", "2011-08-09": "Defense Forces Day", "2011-12-22": "Unity Day", "2011-12-25": "Christmas Day", "2011-12-26": "Boxing Day", - "2011-12-27": "Christmas Day (Observed)", + "2011-12-27": "Christmas Day (observed)", "2012-01-01": "New Year's Day", - "2012-01-02": "New Year's Day (Observed)", + "2012-01-02": "New Year's Day (observed)", "2012-04-06": "Good Friday", "2012-04-07": "Easter Saturday", "2012-04-09": "Easter Monday", @@ -333,7 +333,7 @@ "2013-08-12": "Zimbabwe Heroes' Day", "2013-08-13": "Defense Forces Day", "2013-12-22": "Unity Day", - "2013-12-23": "Unity Day (Observed)", + "2013-12-23": "Unity Day (observed)", "2013-12-25": "Christmas Day", "2013-12-26": "Boxing Day", "2014-01-01": "New Year's Day", @@ -342,7 +342,7 @@ "2014-04-21": "Easter Monday", "2014-05-01": "Workers' Day", "2014-05-25": "Africa Day", - "2014-05-26": "Africa Day (Observed)", + "2014-05-26": "Africa Day (observed)", "2014-08-11": "Zimbabwe Heroes' Day", "2014-08-12": "Defense Forces Day", "2014-12-22": "Unity Day", @@ -366,16 +366,16 @@ "2016-03-28": "Easter Monday", "2016-04-18": "Independence Day", "2016-05-01": "Workers' Day", - "2016-05-02": "Workers' Day (Observed)", + "2016-05-02": "Workers' Day (observed)", "2016-05-25": "Africa Day", "2016-08-08": "Zimbabwe Heroes' Day", "2016-08-09": "Defense Forces Day", "2016-12-22": "Unity Day", "2016-12-25": "Christmas Day", "2016-12-26": "Boxing Day", - "2016-12-27": "Christmas Day (Observed)", + "2016-12-27": "Christmas Day (observed)", "2017-01-01": "New Year's Day", - "2017-01-02": "New Year's Day (Observed)", + "2017-01-02": "New Year's Day (observed)", "2017-04-14": "Good Friday", "2017-04-15": "Easter Saturday", "2017-04-17": "Easter Monday", @@ -411,7 +411,7 @@ "2019-08-12": "Zimbabwe Heroes' Day", "2019-08-13": "Defense Forces Day", "2019-12-22": "Unity Day", - "2019-12-23": "Unity Day (Observed)", + "2019-12-23": "Unity Day (observed)", "2019-12-25": "Christmas Day", "2019-12-26": "Boxing Day", "2020-01-01": "New Year's Day", @@ -429,12 +429,12 @@ "2020-12-26": "Boxing Day", "2021-01-01": "New Year's Day", "2021-02-21": "Robert Gabriel Mugabe National Youth Day", - "2021-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2021-02-22": "Robert Gabriel Mugabe National Youth Day (observed)", "2021-04-02": "Good Friday", "2021-04-03": "Easter Saturday", "2021-04-05": "Easter Monday", "2021-04-18": "Independence Day", - "2021-04-19": "Independence Day (Observed)", + "2021-04-19": "Independence Day (observed)", "2021-05-01": "Workers' Day", "2021-05-25": "Africa Day", "2021-08-09": "Zimbabwe Heroes' Day", @@ -442,23 +442,23 @@ "2021-12-22": "Unity Day", "2021-12-25": "Christmas Day", "2021-12-26": "Boxing Day", - "2021-12-27": "Boxing Day (Observed)", + "2021-12-27": "Boxing Day (observed)", "2022-01-01": "New Year's Day", "2022-02-21": "Robert Gabriel Mugabe National Youth Day", "2022-04-15": "Good Friday", "2022-04-16": "Easter Saturday", "2022-04-18": "Easter Monday; Independence Day", "2022-05-01": "Workers' Day", - "2022-05-02": "Workers' Day (Observed)", + "2022-05-02": "Workers' Day (observed)", "2022-05-25": "Africa Day", "2022-08-08": "Zimbabwe Heroes' Day", "2022-08-09": "Defense Forces Day", "2022-12-22": "Unity Day", "2022-12-25": "Christmas Day", "2022-12-26": "Boxing Day", - "2022-12-27": "Christmas Day (Observed)", + "2022-12-27": "Christmas Day (observed)", "2023-01-01": "New Year's Day", - "2023-01-02": "New Year's Day (Observed)", + "2023-01-02": "New Year's Day (observed)", "2023-02-21": "Robert Gabriel Mugabe National Youth Day", "2023-04-07": "Good Friday", "2023-04-08": "Easter Saturday", @@ -482,7 +482,7 @@ "2024-08-12": "Zimbabwe Heroes' Day", "2024-08-13": "Defense Forces Day", "2024-12-22": "Unity Day", - "2024-12-23": "Unity Day (Observed)", + "2024-12-23": "Unity Day (observed)", "2024-12-25": "Christmas Day", "2024-12-26": "Boxing Day", "2025-01-01": "New Year's Day", @@ -492,7 +492,7 @@ "2025-04-21": "Easter Monday", "2025-05-01": "Workers' Day", "2025-05-25": "Africa Day", - "2025-05-26": "Africa Day (Observed)", + "2025-05-26": "Africa Day (observed)", "2025-08-11": "Zimbabwe Heroes' Day", "2025-08-12": "Defense Forces Day", "2025-12-22": "Unity Day", @@ -513,12 +513,12 @@ "2026-12-26": "Boxing Day", "2027-01-01": "New Year's Day", "2027-02-21": "Robert Gabriel Mugabe National Youth Day", - "2027-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2027-02-22": "Robert Gabriel Mugabe National Youth Day (observed)", "2027-03-26": "Good Friday", "2027-03-27": "Easter Saturday", "2027-03-29": "Easter Monday", "2027-04-18": "Independence Day", - "2027-04-19": "Independence Day (Observed)", + "2027-04-19": "Independence Day (observed)", "2027-05-01": "Workers' Day", "2027-05-25": "Africa Day", "2027-08-09": "Zimbabwe Heroes' Day", @@ -526,7 +526,7 @@ "2027-12-22": "Unity Day", "2027-12-25": "Christmas Day", "2027-12-26": "Boxing Day", - "2027-12-27": "Boxing Day (Observed)", + "2027-12-27": "Boxing Day (observed)", "2028-01-01": "New Year's Day", "2028-02-21": "Robert Gabriel Mugabe National Youth Day", "2028-04-14": "Good Friday", @@ -564,7 +564,7 @@ "2030-08-12": "Zimbabwe Heroes' Day", "2030-08-13": "Defense Forces Day", "2030-12-22": "Unity Day", - "2030-12-23": "Unity Day (Observed)", + "2030-12-23": "Unity Day (observed)", "2030-12-25": "Christmas Day", "2030-12-26": "Boxing Day", "2031-01-01": "New Year's Day", @@ -575,7 +575,7 @@ "2031-04-18": "Independence Day", "2031-05-01": "Workers' Day", "2031-05-25": "Africa Day", - "2031-05-26": "Africa Day (Observed)", + "2031-05-26": "Africa Day (observed)", "2031-08-11": "Zimbabwe Heroes' Day", "2031-08-12": "Defense Forces Day", "2031-12-22": "Unity Day", @@ -587,7 +587,7 @@ "2032-03-27": "Easter Saturday", "2032-03-29": "Easter Monday", "2032-04-18": "Independence Day", - "2032-04-19": "Independence Day (Observed)", + "2032-04-19": "Independence Day (observed)", "2032-05-01": "Workers' Day", "2032-05-25": "Africa Day", "2032-08-09": "Zimbabwe Heroes' Day", @@ -595,23 +595,23 @@ "2032-12-22": "Unity Day", "2032-12-25": "Christmas Day", "2032-12-26": "Boxing Day", - "2032-12-27": "Boxing Day (Observed)", + "2032-12-27": "Boxing Day (observed)", "2033-01-01": "New Year's Day", "2033-02-21": "Robert Gabriel Mugabe National Youth Day", "2033-04-15": "Good Friday", "2033-04-16": "Easter Saturday", "2033-04-18": "Easter Monday; Independence Day", "2033-05-01": "Workers' Day", - "2033-05-02": "Workers' Day (Observed)", + "2033-05-02": "Workers' Day (observed)", "2033-05-25": "Africa Day", "2033-08-08": "Zimbabwe Heroes' Day", "2033-08-09": "Defense Forces Day", "2033-12-22": "Unity Day", "2033-12-25": "Christmas Day", "2033-12-26": "Boxing Day", - "2033-12-27": "Christmas Day (Observed)", + "2033-12-27": "Christmas Day (observed)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-02-21": "Robert Gabriel Mugabe National Youth Day", "2034-04-07": "Good Friday", "2034-04-08": "Easter Saturday", @@ -645,7 +645,7 @@ "2036-04-18": "Independence Day", "2036-05-01": "Workers' Day", "2036-05-25": "Africa Day", - "2036-05-26": "Africa Day (Observed)", + "2036-05-26": "Africa Day (observed)", "2036-08-11": "Zimbabwe Heroes' Day", "2036-08-12": "Defense Forces Day", "2036-12-22": "Unity Day", @@ -666,9 +666,9 @@ "2037-12-26": "Boxing Day", "2038-01-01": "New Year's Day", "2038-02-21": "Robert Gabriel Mugabe National Youth Day", - "2038-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2038-02-22": "Robert Gabriel Mugabe National Youth Day (observed)", "2038-04-18": "Independence Day", - "2038-04-19": "Independence Day (Observed)", + "2038-04-19": "Independence Day (observed)", "2038-04-23": "Good Friday", "2038-04-24": "Easter Saturday", "2038-04-26": "Easter Monday", @@ -679,7 +679,7 @@ "2038-12-22": "Unity Day", "2038-12-25": "Christmas Day", "2038-12-26": "Boxing Day", - "2038-12-27": "Boxing Day (Observed)", + "2038-12-27": "Boxing Day (observed)", "2039-01-01": "New Year's Day", "2039-02-21": "Robert Gabriel Mugabe National Youth Day", "2039-04-08": "Good Friday", @@ -687,16 +687,16 @@ "2039-04-11": "Easter Monday", "2039-04-18": "Independence Day", "2039-05-01": "Workers' Day", - "2039-05-02": "Workers' Day (Observed)", + "2039-05-02": "Workers' Day (observed)", "2039-05-25": "Africa Day", "2039-08-08": "Zimbabwe Heroes' Day", "2039-08-09": "Defense Forces Day", "2039-12-22": "Unity Day", "2039-12-25": "Christmas Day", "2039-12-26": "Boxing Day", - "2039-12-27": "Christmas Day (Observed)", + "2039-12-27": "Christmas Day (observed)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-02-21": "Robert Gabriel Mugabe National Youth Day", "2040-03-30": "Good Friday", "2040-03-31": "Easter Saturday", @@ -720,7 +720,7 @@ "2041-08-12": "Zimbabwe Heroes' Day", "2041-08-13": "Defense Forces Day", "2041-12-22": "Unity Day", - "2041-12-23": "Unity Day (Observed)", + "2041-12-23": "Unity Day (observed)", "2041-12-25": "Christmas Day", "2041-12-26": "Boxing Day", "2042-01-01": "New Year's Day", @@ -731,7 +731,7 @@ "2042-04-18": "Independence Day", "2042-05-01": "Workers' Day", "2042-05-25": "Africa Day", - "2042-05-26": "Africa Day (Observed)", + "2042-05-26": "Africa Day (observed)", "2042-08-11": "Zimbabwe Heroes' Day", "2042-08-12": "Defense Forces Day", "2042-12-22": "Unity Day", @@ -752,21 +752,21 @@ "2043-12-26": "Boxing Day", "2044-01-01": "New Year's Day", "2044-02-21": "Robert Gabriel Mugabe National Youth Day", - "2044-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2044-02-22": "Robert Gabriel Mugabe National Youth Day (observed)", "2044-04-15": "Good Friday", "2044-04-16": "Easter Saturday", "2044-04-18": "Easter Monday; Independence Day", "2044-05-01": "Workers' Day", - "2044-05-02": "Workers' Day (Observed)", + "2044-05-02": "Workers' Day (observed)", "2044-05-25": "Africa Day", "2044-08-08": "Zimbabwe Heroes' Day", "2044-08-09": "Defense Forces Day", "2044-12-22": "Unity Day", "2044-12-25": "Christmas Day", "2044-12-26": "Boxing Day", - "2044-12-27": "Christmas Day (Observed)", + "2044-12-27": "Christmas Day (observed)", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-02-21": "Robert Gabriel Mugabe National Youth Day", "2045-04-07": "Good Friday", "2045-04-08": "Easter Saturday", @@ -803,7 +803,7 @@ "2047-08-12": "Zimbabwe Heroes' Day", "2047-08-13": "Defense Forces Day", "2047-12-22": "Unity Day", - "2047-12-23": "Unity Day (Observed)", + "2047-12-23": "Unity Day (observed)", "2047-12-25": "Christmas Day", "2047-12-26": "Boxing Day", "2048-01-01": "New Year's Day", @@ -821,12 +821,12 @@ "2048-12-26": "Boxing Day", "2049-01-01": "New Year's Day", "2049-02-21": "Robert Gabriel Mugabe National Youth Day", - "2049-02-22": "Robert Gabriel Mugabe National Youth Day (Observed)", + "2049-02-22": "Robert Gabriel Mugabe National Youth Day (observed)", "2049-04-16": "Good Friday", "2049-04-17": "Easter Saturday", "2049-04-18": "Independence Day", "2049-04-19": "Easter Monday", - "2049-04-20": "Independence Day (Observed)", + "2049-04-20": "Independence Day (observed)", "2049-05-01": "Workers' Day", "2049-05-25": "Africa Day", "2049-08-09": "Zimbabwe Heroes' Day", @@ -834,7 +834,7 @@ "2049-12-22": "Unity Day", "2049-12-25": "Christmas Day", "2049-12-26": "Boxing Day", - "2049-12-27": "Boxing Day (Observed)", + "2049-12-27": "Boxing Day (observed)", "2050-01-01": "New Year's Day", "2050-02-21": "Robert Gabriel Mugabe National Youth Day", "2050-04-08": "Good Friday", @@ -842,12 +842,12 @@ "2050-04-11": "Easter Monday", "2050-04-18": "Independence Day", "2050-05-01": "Workers' Day", - "2050-05-02": "Workers' Day (Observed)", + "2050-05-02": "Workers' Day (observed)", "2050-05-25": "Africa Day", "2050-08-08": "Zimbabwe Heroes' Day", "2050-08-09": "Defense Forces Day", "2050-12-22": "Unity Day", "2050-12-25": "Christmas Day", "2050-12-26": "Boxing Day", - "2050-12-27": "Christmas Day (Observed)" + "2050-12-27": "Christmas Day (observed)" } diff --git a/snapshots/financial/NYSE.json b/snapshots/financial/NYSE.json index d731073bf..15f1e818c 100644 --- a/snapshots/financial/NYSE.json +++ b/snapshots/financial/NYSE.json @@ -1,6 +1,6 @@ { - "1950-01-02": "New Year's Day (Observed)", - "1950-02-13": "Lincoln's Birthday (Observed)", + "1950-01-02": "New Year's Day (observed)", + "1950-02-13": "Lincoln's Birthday (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", @@ -9,7 +9,7 @@ "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", "1950-11-07": "Election Day", - "1950-11-10": "Veteran's Day (Observed)", + "1950-11-10": "Veteran's Day (observed)", "1950-11-23": "Thanksgiving Day", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", @@ -22,7 +22,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-06": "Election Day", - "1951-11-12": "Veteran's Day (Observed)", + "1951-11-12": "Veteran's Day (observed)", "1951-11-22": "Thanksgiving Day", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -30,21 +30,21 @@ "1952-02-22": "Washington's Birthday", "1952-04-11": "Good Friday", "1952-05-30": "Memorial Day", - "1952-06-13": "Flag Day (Observed)", + "1952-06-13": "Flag Day (observed)", "1952-07-04": "Independence Day", "1952-09-01": "Labor Day", - "1952-10-13": "Columbus Day (Observed)", + "1952-10-13": "Columbus Day (observed)", "1952-11-04": "Election Day", "1952-11-11": "Veteran's Day", "1952-11-27": "Thanksgiving Day", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-12": "Lincoln's Birthday", - "1953-02-23": "Washington's Birthday (Observed)", + "1953-02-23": "Washington's Birthday (observed)", "1953-04-03": "Good Friday", - "1953-05-29": "Memorial Day (Observed)", - "1953-06-15": "Flag Day (Observed)", - "1953-07-03": "Independence Day (Observed)", + "1953-05-29": "Memorial Day (observed)", + "1953-06-15": "Flag Day (observed)", + "1953-07-03": "Independence Day (observed)", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", "1953-11-03": "Election Day", @@ -54,12 +54,12 @@ "1954-01-01": "New Year's Day", "1954-02-22": "Washington's Birthday", "1954-04-16": "Good Friday", - "1954-05-31": "Memorial Day (Observed)", - "1954-07-05": "Independence Day (Observed)", + "1954-05-31": "Memorial Day (observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-02": "Election Day", "1954-11-25": "Thanksgiving Day", - "1954-12-24": "Christmas Day (Observed); Christmas Eve", + "1954-12-24": "Christmas Day (observed); Christmas Eve", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", "1955-05-30": "Memorial Day", @@ -67,8 +67,8 @@ "1955-09-05": "Labor Day", "1955-11-08": "Election Day", "1955-11-24": "Thanksgiving Day", - "1955-12-26": "Christmas Day (Observed)", - "1956-01-02": "New Year's Day (Observed)", + "1955-12-26": "Christmas Day (observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -88,7 +88,7 @@ "1957-11-28": "Thanksgiving Day", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-21": "Washington's Birthday (Observed)", + "1958-02-21": "Washington's Birthday (observed)", "1958-04-04": "Good Friday", "1958-05-30": "Memorial Day", "1958-07-04": "Independence Day", @@ -98,10 +98,10 @@ "1958-12-25": "Christmas Day", "1958-12-26": "Day after Christmas", "1959-01-01": "New Year's Day", - "1959-02-23": "Washington's Birthday (Observed)", + "1959-02-23": "Washington's Birthday (observed)", "1959-03-27": "Good Friday", - "1959-05-29": "Memorial Day (Observed)", - "1959-07-03": "Independence Day (Observed)", + "1959-05-29": "Memorial Day (observed)", + "1959-07-03": "Independence Day (observed)", "1959-09-07": "Labor Day", "1959-11-03": "Election Day", "1959-11-26": "Thanksgiving Day", @@ -114,8 +114,8 @@ "1960-09-05": "Labor Day", "1960-11-08": "Election Day", "1960-11-24": "Thanksgiving Day", - "1960-12-26": "Christmas Day (Observed)", - "1961-01-02": "New Year's Day (Observed)", + "1960-12-26": "Christmas Day (observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-29": "Day before Decoration Day", @@ -145,10 +145,10 @@ "1963-11-28": "Thanksgiving Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-21": "Washington's Birthday (Observed)", + "1964-02-21": "Washington's Birthday (observed)", "1964-03-27": "Good Friday", - "1964-05-29": "Memorial Day (Observed)", - "1964-07-03": "Independence Day (Observed)", + "1964-05-29": "Memorial Day (observed)", + "1964-07-03": "Independence Day (observed)", "1964-09-07": "Labor Day", "1964-11-03": "Election Day", "1964-11-26": "Thanksgiving Day", @@ -156,12 +156,12 @@ "1965-01-01": "New Year's Day", "1965-02-22": "Washington's Birthday", "1965-04-16": "Good Friday", - "1965-05-31": "Memorial Day (Observed)", - "1965-07-05": "Independence Day (Observed)", + "1965-05-31": "Memorial Day (observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-02": "Election Day", "1965-11-25": "Thanksgiving Day", - "1965-12-24": "Christmas Day (Observed); Christmas Eve", + "1965-12-24": "Christmas Day (observed); Christmas Eve", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", "1966-05-30": "Memorial Day", @@ -169,8 +169,8 @@ "1966-09-05": "Labor Day", "1966-11-08": "Election Day", "1966-11-24": "Thanksgiving Day", - "1966-12-26": "Christmas Day (Observed)", - "1967-01-02": "New Year's Day (Observed)", + "1966-12-26": "Christmas Day (observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", @@ -221,7 +221,7 @@ "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-10": "Heavy Snow", - "1969-02-21": "Washington's Birthday (Observed)", + "1969-02-21": "Washington's Birthday (observed)", "1969-03-31": "Funeral of President Dwight D. Eisenhower", "1969-04-04": "Good Friday", "1969-05-30": "Memorial Day", @@ -231,10 +231,10 @@ "1969-11-27": "Thanksgiving Day", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-23": "Washington's Birthday (Observed)", + "1970-02-23": "Washington's Birthday (observed)", "1970-03-27": "Good Friday", - "1970-05-29": "Memorial Day (Observed)", - "1970-07-03": "Independence Day (Observed)", + "1970-05-29": "Memorial Day (observed)", + "1970-07-03": "Independence Day (observed)", "1970-09-07": "Labor Day", "1970-11-26": "Thanksgiving Day", "1970-12-25": "Christmas Day", @@ -242,10 +242,10 @@ "1971-02-15": "Washington's Birthday", "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-11-25": "Thanksgiving Day", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1972-02-21": "Washington's Birthday", "1972-03-31": "Good Friday", "1972-05-29": "Memorial Day", @@ -284,11 +284,11 @@ "1976-02-16": "Washington's Birthday", "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-11-02": "Election Day", "1976-11-25": "Thanksgiving Day", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1977-02-21": "Washington's Birthday", "1977-04-08": "Good Friday", "1977-05-30": "Memorial Day", @@ -296,8 +296,8 @@ "1977-07-14": "Blackout in New York City", "1977-09-05": "Labor Day", "1977-11-24": "Thanksgiving Day", - "1977-12-26": "Christmas Day (Observed)", - "1978-01-02": "New Year's Day (Observed)", + "1977-12-26": "Christmas Day (observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", @@ -326,7 +326,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-09-07": "Labor Day", "1981-11-26": "Thanksgiving Day", "1981-12-25": "Christmas Day", @@ -334,18 +334,18 @@ "1982-02-15": "Washington's Birthday", "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-25": "Thanksgiving Day", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1983-02-21": "Washington's Birthday", "1983-04-01": "Good Friday", "1983-05-30": "Memorial Day", "1983-07-04": "Independence Day", "1983-09-05": "Labor Day", "1983-11-24": "Thanksgiving Day", - "1983-12-26": "Christmas Day (Observed)", - "1984-01-02": "New Year's Day (Observed)", + "1983-12-26": "Christmas Day (observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", @@ -374,7 +374,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-09-07": "Labor Day", "1987-11-26": "Thanksgiving Day", "1987-12-25": "Christmas Day", @@ -385,8 +385,8 @@ "1988-07-04": "Independence Day", "1988-09-05": "Labor Day", "1988-11-24": "Thanksgiving Day", - "1988-12-26": "Christmas Day (Observed)", - "1989-01-02": "New Year's Day (Observed)", + "1988-12-26": "Christmas Day (observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-20": "Washington's Birthday", "1989-03-24": "Good Friday", "1989-05-29": "Memorial Day", @@ -414,7 +414,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-09-07": "Labor Day", "1992-11-26": "Thanksgiving Day", "1992-12-25": "Christmas Day", @@ -422,10 +422,10 @@ "1993-02-15": "Washington's Birthday", "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-25": "Thanksgiving Day", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1994-02-21": "Washington's Birthday", "1994-04-01": "Good Friday", "1994-04-27": "Funeral for President Richard M. Nixon", @@ -433,8 +433,8 @@ "1994-07-04": "Independence Day", "1994-09-05": "Labor Day", "1994-11-24": "Thanksgiving Day", - "1994-12-26": "Christmas Day (Observed)", - "1995-01-02": "New Year's Day (Observed)", + "1994-12-26": "Christmas Day (observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-20": "Washington's Birthday", "1995-04-14": "Good Friday", "1995-05-29": "Memorial Day", @@ -463,7 +463,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-09-07": "Labor Day", "1998-11-26": "Thanksgiving Day", "1998-12-25": "Christmas Day", @@ -472,10 +472,10 @@ "1999-02-15": "Washington's Birthday", "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-25": "Thanksgiving Day", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-04-21": "Good Friday", @@ -521,10 +521,10 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-06-11": "Day of Mourning for President Ronald W. Reagan", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-25": "Thanksgiving Day", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", "2005-03-25": "Good Friday", @@ -532,8 +532,8 @@ "2005-07-04": "Independence Day", "2005-09-05": "Labor Day", "2005-11-24": "Thanksgiving Day", - "2005-12-26": "Christmas Day (Observed)", - "2006-01-02": "New Year's Day (Observed)", + "2005-12-26": "Christmas Day (observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-14": "Good Friday", @@ -566,7 +566,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-09-07": "Labor Day", "2009-11-26": "Thanksgiving Day", "2009-12-25": "Christmas Day", @@ -575,10 +575,10 @@ "2010-02-15": "Washington's Birthday", "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-25": "Thanksgiving Day", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", "2011-04-22": "Good Friday", @@ -586,8 +586,8 @@ "2011-07-04": "Independence Day", "2011-09-05": "Labor Day", "2011-11-24": "Thanksgiving Day", - "2011-12-26": "Christmas Day (Observed)", - "2012-01-02": "New Year's Day (Observed)", + "2011-12-26": "Christmas Day (observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-06": "Good Friday", @@ -621,7 +621,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-09-07": "Labor Day", "2015-11-26": "Thanksgiving Day", "2015-12-25": "Christmas Day", @@ -633,8 +633,8 @@ "2016-07-04": "Independence Day", "2016-09-05": "Labor Day", "2016-11-24": "Thanksgiving Day", - "2016-12-26": "Christmas Day (Observed)", - "2017-01-02": "New Year's Day (Observed)", + "2016-12-26": "Christmas Day (observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-04-14": "Good Friday", @@ -667,7 +667,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-09-07": "Labor Day", "2020-11-26": "Thanksgiving Day", "2020-12-25": "Christmas Day", @@ -676,20 +676,20 @@ "2021-02-15": "Washington's Birthday", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-25": "Thanksgiving Day", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-24": "Thanksgiving Day", - "2022-12-26": "Christmas Day (Observed)", - "2023-01-02": "New Year's Day (Observed)", + "2022-12-26": "Christmas Day (observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-07": "Good Friday", @@ -725,7 +725,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-09-07": "Labor Day", "2026-11-26": "Thanksgiving Day", "2026-12-25": "Christmas Day", @@ -734,11 +734,11 @@ "2027-02-15": "Washington's Birthday", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", - "2027-07-05": "Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-25": "Thanksgiving Day", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", "2028-04-14": "Good Friday", @@ -783,21 +783,21 @@ "2032-02-16": "Washington's Birthday", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", - "2032-07-05": "Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-25": "Thanksgiving Day", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-24": "Thanksgiving Day", - "2033-12-26": "Christmas Day (Observed)", - "2034-01-02": "New Year's Day (Observed)", + "2033-12-26": "Christmas Day (observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-07": "Good Friday", @@ -833,7 +833,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-09-07": "Labor Day", "2037-11-26": "Thanksgiving Day", "2037-12-25": "Christmas Day", @@ -842,21 +842,21 @@ "2038-02-15": "Washington's Birthday", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", - "2038-07-05": "Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-25": "Thanksgiving Day", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-24": "Thanksgiving Day", - "2039-12-26": "Christmas Day (Observed)", - "2040-01-02": "New Year's Day (Observed)", + "2039-12-26": "Christmas Day (observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-30": "Good Friday", @@ -892,7 +892,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-09-07": "Labor Day", "2043-11-26": "Thanksgiving Day", "2043-12-25": "Christmas Day", @@ -901,12 +901,12 @@ "2044-02-15": "Washington's Birthday", "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-24": "Thanksgiving Day", - "2044-12-26": "Christmas Day (Observed)", - "2045-01-02": "New Year's Day (Observed)", + "2044-12-26": "Christmas Day (observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-04-07": "Good Friday", @@ -942,7 +942,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-09-07": "Labor Day", "2048-11-26": "Thanksgiving Day", "2048-12-25": "Christmas Day", @@ -951,18 +951,18 @@ "2049-02-15": "Washington's Birthday", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", - "2049-07-05": "Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-25": "Thanksgiving Day", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-24": "Thanksgiving Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/snapshots/financial/XNYS.json b/snapshots/financial/XNYS.json index d731073bf..15f1e818c 100644 --- a/snapshots/financial/XNYS.json +++ b/snapshots/financial/XNYS.json @@ -1,6 +1,6 @@ { - "1950-01-02": "New Year's Day (Observed)", - "1950-02-13": "Lincoln's Birthday (Observed)", + "1950-01-02": "New Year's Day (observed)", + "1950-02-13": "Lincoln's Birthday (observed)", "1950-02-22": "Washington's Birthday", "1950-04-07": "Good Friday", "1950-05-30": "Memorial Day", @@ -9,7 +9,7 @@ "1950-09-04": "Labor Day", "1950-10-12": "Columbus Day", "1950-11-07": "Election Day", - "1950-11-10": "Veteran's Day (Observed)", + "1950-11-10": "Veteran's Day (observed)", "1950-11-23": "Thanksgiving Day", "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", @@ -22,7 +22,7 @@ "1951-09-03": "Labor Day", "1951-10-12": "Columbus Day", "1951-11-06": "Election Day", - "1951-11-12": "Veteran's Day (Observed)", + "1951-11-12": "Veteran's Day (observed)", "1951-11-22": "Thanksgiving Day", "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", @@ -30,21 +30,21 @@ "1952-02-22": "Washington's Birthday", "1952-04-11": "Good Friday", "1952-05-30": "Memorial Day", - "1952-06-13": "Flag Day (Observed)", + "1952-06-13": "Flag Day (observed)", "1952-07-04": "Independence Day", "1952-09-01": "Labor Day", - "1952-10-13": "Columbus Day (Observed)", + "1952-10-13": "Columbus Day (observed)", "1952-11-04": "Election Day", "1952-11-11": "Veteran's Day", "1952-11-27": "Thanksgiving Day", "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-02-12": "Lincoln's Birthday", - "1953-02-23": "Washington's Birthday (Observed)", + "1953-02-23": "Washington's Birthday (observed)", "1953-04-03": "Good Friday", - "1953-05-29": "Memorial Day (Observed)", - "1953-06-15": "Flag Day (Observed)", - "1953-07-03": "Independence Day (Observed)", + "1953-05-29": "Memorial Day (observed)", + "1953-06-15": "Flag Day (observed)", + "1953-07-03": "Independence Day (observed)", "1953-09-07": "Labor Day", "1953-10-12": "Columbus Day", "1953-11-03": "Election Day", @@ -54,12 +54,12 @@ "1954-01-01": "New Year's Day", "1954-02-22": "Washington's Birthday", "1954-04-16": "Good Friday", - "1954-05-31": "Memorial Day (Observed)", - "1954-07-05": "Independence Day (Observed)", + "1954-05-31": "Memorial Day (observed)", + "1954-07-05": "Independence Day (observed)", "1954-09-06": "Labor Day", "1954-11-02": "Election Day", "1954-11-25": "Thanksgiving Day", - "1954-12-24": "Christmas Day (Observed); Christmas Eve", + "1954-12-24": "Christmas Day (observed); Christmas Eve", "1955-02-22": "Washington's Birthday", "1955-04-08": "Good Friday", "1955-05-30": "Memorial Day", @@ -67,8 +67,8 @@ "1955-09-05": "Labor Day", "1955-11-08": "Election Day", "1955-11-24": "Thanksgiving Day", - "1955-12-26": "Christmas Day (Observed)", - "1956-01-02": "New Year's Day (Observed)", + "1955-12-26": "Christmas Day (observed)", + "1956-01-02": "New Year's Day (observed)", "1956-02-22": "Washington's Birthday", "1956-03-30": "Good Friday", "1956-05-30": "Memorial Day", @@ -88,7 +88,7 @@ "1957-11-28": "Thanksgiving Day", "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", - "1958-02-21": "Washington's Birthday (Observed)", + "1958-02-21": "Washington's Birthday (observed)", "1958-04-04": "Good Friday", "1958-05-30": "Memorial Day", "1958-07-04": "Independence Day", @@ -98,10 +98,10 @@ "1958-12-25": "Christmas Day", "1958-12-26": "Day after Christmas", "1959-01-01": "New Year's Day", - "1959-02-23": "Washington's Birthday (Observed)", + "1959-02-23": "Washington's Birthday (observed)", "1959-03-27": "Good Friday", - "1959-05-29": "Memorial Day (Observed)", - "1959-07-03": "Independence Day (Observed)", + "1959-05-29": "Memorial Day (observed)", + "1959-07-03": "Independence Day (observed)", "1959-09-07": "Labor Day", "1959-11-03": "Election Day", "1959-11-26": "Thanksgiving Day", @@ -114,8 +114,8 @@ "1960-09-05": "Labor Day", "1960-11-08": "Election Day", "1960-11-24": "Thanksgiving Day", - "1960-12-26": "Christmas Day (Observed)", - "1961-01-02": "New Year's Day (Observed)", + "1960-12-26": "Christmas Day (observed)", + "1961-01-02": "New Year's Day (observed)", "1961-02-22": "Washington's Birthday", "1961-03-31": "Good Friday", "1961-05-29": "Day before Decoration Day", @@ -145,10 +145,10 @@ "1963-11-28": "Thanksgiving Day", "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", - "1964-02-21": "Washington's Birthday (Observed)", + "1964-02-21": "Washington's Birthday (observed)", "1964-03-27": "Good Friday", - "1964-05-29": "Memorial Day (Observed)", - "1964-07-03": "Independence Day (Observed)", + "1964-05-29": "Memorial Day (observed)", + "1964-07-03": "Independence Day (observed)", "1964-09-07": "Labor Day", "1964-11-03": "Election Day", "1964-11-26": "Thanksgiving Day", @@ -156,12 +156,12 @@ "1965-01-01": "New Year's Day", "1965-02-22": "Washington's Birthday", "1965-04-16": "Good Friday", - "1965-05-31": "Memorial Day (Observed)", - "1965-07-05": "Independence Day (Observed)", + "1965-05-31": "Memorial Day (observed)", + "1965-07-05": "Independence Day (observed)", "1965-09-06": "Labor Day", "1965-11-02": "Election Day", "1965-11-25": "Thanksgiving Day", - "1965-12-24": "Christmas Day (Observed); Christmas Eve", + "1965-12-24": "Christmas Day (observed); Christmas Eve", "1966-02-22": "Washington's Birthday", "1966-04-08": "Good Friday", "1966-05-30": "Memorial Day", @@ -169,8 +169,8 @@ "1966-09-05": "Labor Day", "1966-11-08": "Election Day", "1966-11-24": "Thanksgiving Day", - "1966-12-26": "Christmas Day (Observed)", - "1967-01-02": "New Year's Day (Observed)", + "1966-12-26": "Christmas Day (observed)", + "1967-01-02": "New Year's Day (observed)", "1967-02-22": "Washington's Birthday", "1967-03-24": "Good Friday", "1967-05-30": "Memorial Day", @@ -221,7 +221,7 @@ "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-02-10": "Heavy Snow", - "1969-02-21": "Washington's Birthday (Observed)", + "1969-02-21": "Washington's Birthday (observed)", "1969-03-31": "Funeral of President Dwight D. Eisenhower", "1969-04-04": "Good Friday", "1969-05-30": "Memorial Day", @@ -231,10 +231,10 @@ "1969-11-27": "Thanksgiving Day", "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", - "1970-02-23": "Washington's Birthday (Observed)", + "1970-02-23": "Washington's Birthday (observed)", "1970-03-27": "Good Friday", - "1970-05-29": "Memorial Day (Observed)", - "1970-07-03": "Independence Day (Observed)", + "1970-05-29": "Memorial Day (observed)", + "1970-07-03": "Independence Day (observed)", "1970-09-07": "Labor Day", "1970-11-26": "Thanksgiving Day", "1970-12-25": "Christmas Day", @@ -242,10 +242,10 @@ "1971-02-15": "Washington's Birthday", "1971-04-09": "Good Friday", "1971-05-31": "Memorial Day", - "1971-07-05": "Independence Day (Observed)", + "1971-07-05": "Independence Day (observed)", "1971-09-06": "Labor Day", "1971-11-25": "Thanksgiving Day", - "1971-12-24": "Christmas Day (Observed)", + "1971-12-24": "Christmas Day (observed)", "1972-02-21": "Washington's Birthday", "1972-03-31": "Good Friday", "1972-05-29": "Memorial Day", @@ -284,11 +284,11 @@ "1976-02-16": "Washington's Birthday", "1976-04-16": "Good Friday", "1976-05-31": "Memorial Day", - "1976-07-05": "Independence Day (Observed)", + "1976-07-05": "Independence Day (observed)", "1976-09-06": "Labor Day", "1976-11-02": "Election Day", "1976-11-25": "Thanksgiving Day", - "1976-12-24": "Christmas Day (Observed)", + "1976-12-24": "Christmas Day (observed)", "1977-02-21": "Washington's Birthday", "1977-04-08": "Good Friday", "1977-05-30": "Memorial Day", @@ -296,8 +296,8 @@ "1977-07-14": "Blackout in New York City", "1977-09-05": "Labor Day", "1977-11-24": "Thanksgiving Day", - "1977-12-26": "Christmas Day (Observed)", - "1978-01-02": "New Year's Day (Observed)", + "1977-12-26": "Christmas Day (observed)", + "1978-01-02": "New Year's Day (observed)", "1978-02-20": "Washington's Birthday", "1978-03-24": "Good Friday", "1978-05-29": "Memorial Day", @@ -326,7 +326,7 @@ "1981-02-16": "Washington's Birthday", "1981-04-17": "Good Friday", "1981-05-25": "Memorial Day", - "1981-07-03": "Independence Day (Observed)", + "1981-07-03": "Independence Day (observed)", "1981-09-07": "Labor Day", "1981-11-26": "Thanksgiving Day", "1981-12-25": "Christmas Day", @@ -334,18 +334,18 @@ "1982-02-15": "Washington's Birthday", "1982-04-09": "Good Friday", "1982-05-31": "Memorial Day", - "1982-07-05": "Independence Day (Observed)", + "1982-07-05": "Independence Day (observed)", "1982-09-06": "Labor Day", "1982-11-25": "Thanksgiving Day", - "1982-12-24": "Christmas Day (Observed)", + "1982-12-24": "Christmas Day (observed)", "1983-02-21": "Washington's Birthday", "1983-04-01": "Good Friday", "1983-05-30": "Memorial Day", "1983-07-04": "Independence Day", "1983-09-05": "Labor Day", "1983-11-24": "Thanksgiving Day", - "1983-12-26": "Christmas Day (Observed)", - "1984-01-02": "New Year's Day (Observed)", + "1983-12-26": "Christmas Day (observed)", + "1984-01-02": "New Year's Day (observed)", "1984-02-20": "Washington's Birthday", "1984-04-20": "Good Friday", "1984-05-28": "Memorial Day", @@ -374,7 +374,7 @@ "1987-02-16": "Washington's Birthday", "1987-04-17": "Good Friday", "1987-05-25": "Memorial Day", - "1987-07-03": "Independence Day (Observed)", + "1987-07-03": "Independence Day (observed)", "1987-09-07": "Labor Day", "1987-11-26": "Thanksgiving Day", "1987-12-25": "Christmas Day", @@ -385,8 +385,8 @@ "1988-07-04": "Independence Day", "1988-09-05": "Labor Day", "1988-11-24": "Thanksgiving Day", - "1988-12-26": "Christmas Day (Observed)", - "1989-01-02": "New Year's Day (Observed)", + "1988-12-26": "Christmas Day (observed)", + "1989-01-02": "New Year's Day (observed)", "1989-02-20": "Washington's Birthday", "1989-03-24": "Good Friday", "1989-05-29": "Memorial Day", @@ -414,7 +414,7 @@ "1992-02-17": "Washington's Birthday", "1992-04-17": "Good Friday", "1992-05-25": "Memorial Day", - "1992-07-03": "Independence Day (Observed)", + "1992-07-03": "Independence Day (observed)", "1992-09-07": "Labor Day", "1992-11-26": "Thanksgiving Day", "1992-12-25": "Christmas Day", @@ -422,10 +422,10 @@ "1993-02-15": "Washington's Birthday", "1993-04-09": "Good Friday", "1993-05-31": "Memorial Day", - "1993-07-05": "Independence Day (Observed)", + "1993-07-05": "Independence Day (observed)", "1993-09-06": "Labor Day", "1993-11-25": "Thanksgiving Day", - "1993-12-24": "Christmas Day (Observed)", + "1993-12-24": "Christmas Day (observed)", "1994-02-21": "Washington's Birthday", "1994-04-01": "Good Friday", "1994-04-27": "Funeral for President Richard M. Nixon", @@ -433,8 +433,8 @@ "1994-07-04": "Independence Day", "1994-09-05": "Labor Day", "1994-11-24": "Thanksgiving Day", - "1994-12-26": "Christmas Day (Observed)", - "1995-01-02": "New Year's Day (Observed)", + "1994-12-26": "Christmas Day (observed)", + "1995-01-02": "New Year's Day (observed)", "1995-02-20": "Washington's Birthday", "1995-04-14": "Good Friday", "1995-05-29": "Memorial Day", @@ -463,7 +463,7 @@ "1998-02-16": "Washington's Birthday", "1998-04-10": "Good Friday", "1998-05-25": "Memorial Day", - "1998-07-03": "Independence Day (Observed)", + "1998-07-03": "Independence Day (observed)", "1998-09-07": "Labor Day", "1998-11-26": "Thanksgiving Day", "1998-12-25": "Christmas Day", @@ -472,10 +472,10 @@ "1999-02-15": "Washington's Birthday", "1999-04-02": "Good Friday", "1999-05-31": "Memorial Day", - "1999-07-05": "Independence Day (Observed)", + "1999-07-05": "Independence Day (observed)", "1999-09-06": "Labor Day", "1999-11-25": "Thanksgiving Day", - "1999-12-24": "Christmas Day (Observed)", + "1999-12-24": "Christmas Day (observed)", "2000-01-17": "Martin Luther King Jr. Day", "2000-02-21": "Washington's Birthday", "2000-04-21": "Good Friday", @@ -521,10 +521,10 @@ "2004-04-09": "Good Friday", "2004-05-31": "Memorial Day", "2004-06-11": "Day of Mourning for President Ronald W. Reagan", - "2004-07-05": "Independence Day (Observed)", + "2004-07-05": "Independence Day (observed)", "2004-09-06": "Labor Day", "2004-11-25": "Thanksgiving Day", - "2004-12-24": "Christmas Day (Observed)", + "2004-12-24": "Christmas Day (observed)", "2005-01-17": "Martin Luther King Jr. Day", "2005-02-21": "Washington's Birthday", "2005-03-25": "Good Friday", @@ -532,8 +532,8 @@ "2005-07-04": "Independence Day", "2005-09-05": "Labor Day", "2005-11-24": "Thanksgiving Day", - "2005-12-26": "Christmas Day (Observed)", - "2006-01-02": "New Year's Day (Observed)", + "2005-12-26": "Christmas Day (observed)", + "2006-01-02": "New Year's Day (observed)", "2006-01-16": "Martin Luther King Jr. Day", "2006-02-20": "Washington's Birthday", "2006-04-14": "Good Friday", @@ -566,7 +566,7 @@ "2009-02-16": "Washington's Birthday", "2009-04-10": "Good Friday", "2009-05-25": "Memorial Day", - "2009-07-03": "Independence Day (Observed)", + "2009-07-03": "Independence Day (observed)", "2009-09-07": "Labor Day", "2009-11-26": "Thanksgiving Day", "2009-12-25": "Christmas Day", @@ -575,10 +575,10 @@ "2010-02-15": "Washington's Birthday", "2010-04-02": "Good Friday", "2010-05-31": "Memorial Day", - "2010-07-05": "Independence Day (Observed)", + "2010-07-05": "Independence Day (observed)", "2010-09-06": "Labor Day", "2010-11-25": "Thanksgiving Day", - "2010-12-24": "Christmas Day (Observed)", + "2010-12-24": "Christmas Day (observed)", "2011-01-17": "Martin Luther King Jr. Day", "2011-02-21": "Washington's Birthday", "2011-04-22": "Good Friday", @@ -586,8 +586,8 @@ "2011-07-04": "Independence Day", "2011-09-05": "Labor Day", "2011-11-24": "Thanksgiving Day", - "2011-12-26": "Christmas Day (Observed)", - "2012-01-02": "New Year's Day (Observed)", + "2011-12-26": "Christmas Day (observed)", + "2012-01-02": "New Year's Day (observed)", "2012-01-16": "Martin Luther King Jr. Day", "2012-02-20": "Washington's Birthday", "2012-04-06": "Good Friday", @@ -621,7 +621,7 @@ "2015-02-16": "Washington's Birthday", "2015-04-03": "Good Friday", "2015-05-25": "Memorial Day", - "2015-07-03": "Independence Day (Observed)", + "2015-07-03": "Independence Day (observed)", "2015-09-07": "Labor Day", "2015-11-26": "Thanksgiving Day", "2015-12-25": "Christmas Day", @@ -633,8 +633,8 @@ "2016-07-04": "Independence Day", "2016-09-05": "Labor Day", "2016-11-24": "Thanksgiving Day", - "2016-12-26": "Christmas Day (Observed)", - "2017-01-02": "New Year's Day (Observed)", + "2016-12-26": "Christmas Day (observed)", + "2017-01-02": "New Year's Day (observed)", "2017-01-16": "Martin Luther King Jr. Day", "2017-02-20": "Washington's Birthday", "2017-04-14": "Good Friday", @@ -667,7 +667,7 @@ "2020-02-17": "Washington's Birthday", "2020-04-10": "Good Friday", "2020-05-25": "Memorial Day", - "2020-07-03": "Independence Day (Observed)", + "2020-07-03": "Independence Day (observed)", "2020-09-07": "Labor Day", "2020-11-26": "Thanksgiving Day", "2020-12-25": "Christmas Day", @@ -676,20 +676,20 @@ "2021-02-15": "Washington's Birthday", "2021-04-02": "Good Friday", "2021-05-31": "Memorial Day", - "2021-07-05": "Independence Day (Observed)", + "2021-07-05": "Independence Day (observed)", "2021-09-06": "Labor Day", "2021-11-25": "Thanksgiving Day", - "2021-12-24": "Christmas Day (Observed)", + "2021-12-24": "Christmas Day (observed)", "2022-01-17": "Martin Luther King Jr. Day", "2022-02-21": "Washington's Birthday", "2022-04-15": "Good Friday", "2022-05-30": "Memorial Day", - "2022-06-20": "Juneteenth National Independence Day (Observed)", + "2022-06-20": "Juneteenth National Independence Day (observed)", "2022-07-04": "Independence Day", "2022-09-05": "Labor Day", "2022-11-24": "Thanksgiving Day", - "2022-12-26": "Christmas Day (Observed)", - "2023-01-02": "New Year's Day (Observed)", + "2022-12-26": "Christmas Day (observed)", + "2023-01-02": "New Year's Day (observed)", "2023-01-16": "Martin Luther King Jr. Day", "2023-02-20": "Washington's Birthday", "2023-04-07": "Good Friday", @@ -725,7 +725,7 @@ "2026-04-03": "Good Friday", "2026-05-25": "Memorial Day", "2026-06-19": "Juneteenth National Independence Day", - "2026-07-03": "Independence Day (Observed)", + "2026-07-03": "Independence Day (observed)", "2026-09-07": "Labor Day", "2026-11-26": "Thanksgiving Day", "2026-12-25": "Christmas Day", @@ -734,11 +734,11 @@ "2027-02-15": "Washington's Birthday", "2027-03-26": "Good Friday", "2027-05-31": "Memorial Day", - "2027-06-18": "Juneteenth National Independence Day (Observed)", - "2027-07-05": "Independence Day (Observed)", + "2027-06-18": "Juneteenth National Independence Day (observed)", + "2027-07-05": "Independence Day (observed)", "2027-09-06": "Labor Day", "2027-11-25": "Thanksgiving Day", - "2027-12-24": "Christmas Day (Observed)", + "2027-12-24": "Christmas Day (observed)", "2028-01-17": "Martin Luther King Jr. Day", "2028-02-21": "Washington's Birthday", "2028-04-14": "Good Friday", @@ -783,21 +783,21 @@ "2032-02-16": "Washington's Birthday", "2032-03-26": "Good Friday", "2032-05-31": "Memorial Day", - "2032-06-18": "Juneteenth National Independence Day (Observed)", - "2032-07-05": "Independence Day (Observed)", + "2032-06-18": "Juneteenth National Independence Day (observed)", + "2032-07-05": "Independence Day (observed)", "2032-09-06": "Labor Day", "2032-11-25": "Thanksgiving Day", - "2032-12-24": "Christmas Day (Observed)", + "2032-12-24": "Christmas Day (observed)", "2033-01-17": "Martin Luther King Jr. Day", "2033-02-21": "Washington's Birthday", "2033-04-15": "Good Friday", "2033-05-30": "Memorial Day", - "2033-06-20": "Juneteenth National Independence Day (Observed)", + "2033-06-20": "Juneteenth National Independence Day (observed)", "2033-07-04": "Independence Day", "2033-09-05": "Labor Day", "2033-11-24": "Thanksgiving Day", - "2033-12-26": "Christmas Day (Observed)", - "2034-01-02": "New Year's Day (Observed)", + "2033-12-26": "Christmas Day (observed)", + "2034-01-02": "New Year's Day (observed)", "2034-01-16": "Martin Luther King Jr. Day", "2034-02-20": "Washington's Birthday", "2034-04-07": "Good Friday", @@ -833,7 +833,7 @@ "2037-04-03": "Good Friday", "2037-05-25": "Memorial Day", "2037-06-19": "Juneteenth National Independence Day", - "2037-07-03": "Independence Day (Observed)", + "2037-07-03": "Independence Day (observed)", "2037-09-07": "Labor Day", "2037-11-26": "Thanksgiving Day", "2037-12-25": "Christmas Day", @@ -842,21 +842,21 @@ "2038-02-15": "Washington's Birthday", "2038-04-23": "Good Friday", "2038-05-31": "Memorial Day", - "2038-06-18": "Juneteenth National Independence Day (Observed)", - "2038-07-05": "Independence Day (Observed)", + "2038-06-18": "Juneteenth National Independence Day (observed)", + "2038-07-05": "Independence Day (observed)", "2038-09-06": "Labor Day", "2038-11-25": "Thanksgiving Day", - "2038-12-24": "Christmas Day (Observed)", + "2038-12-24": "Christmas Day (observed)", "2039-01-17": "Martin Luther King Jr. Day", "2039-02-21": "Washington's Birthday", "2039-04-08": "Good Friday", "2039-05-30": "Memorial Day", - "2039-06-20": "Juneteenth National Independence Day (Observed)", + "2039-06-20": "Juneteenth National Independence Day (observed)", "2039-07-04": "Independence Day", "2039-09-05": "Labor Day", "2039-11-24": "Thanksgiving Day", - "2039-12-26": "Christmas Day (Observed)", - "2040-01-02": "New Year's Day (Observed)", + "2039-12-26": "Christmas Day (observed)", + "2040-01-02": "New Year's Day (observed)", "2040-01-16": "Martin Luther King Jr. Day", "2040-02-20": "Washington's Birthday", "2040-03-30": "Good Friday", @@ -892,7 +892,7 @@ "2043-03-27": "Good Friday", "2043-05-25": "Memorial Day", "2043-06-19": "Juneteenth National Independence Day", - "2043-07-03": "Independence Day (Observed)", + "2043-07-03": "Independence Day (observed)", "2043-09-07": "Labor Day", "2043-11-26": "Thanksgiving Day", "2043-12-25": "Christmas Day", @@ -901,12 +901,12 @@ "2044-02-15": "Washington's Birthday", "2044-04-15": "Good Friday", "2044-05-30": "Memorial Day", - "2044-06-20": "Juneteenth National Independence Day (Observed)", + "2044-06-20": "Juneteenth National Independence Day (observed)", "2044-07-04": "Independence Day", "2044-09-05": "Labor Day", "2044-11-24": "Thanksgiving Day", - "2044-12-26": "Christmas Day (Observed)", - "2045-01-02": "New Year's Day (Observed)", + "2044-12-26": "Christmas Day (observed)", + "2045-01-02": "New Year's Day (observed)", "2045-01-16": "Martin Luther King Jr. Day", "2045-02-20": "Washington's Birthday", "2045-04-07": "Good Friday", @@ -942,7 +942,7 @@ "2048-04-03": "Good Friday", "2048-05-25": "Memorial Day", "2048-06-19": "Juneteenth National Independence Day", - "2048-07-03": "Independence Day (Observed)", + "2048-07-03": "Independence Day (observed)", "2048-09-07": "Labor Day", "2048-11-26": "Thanksgiving Day", "2048-12-25": "Christmas Day", @@ -951,18 +951,18 @@ "2049-02-15": "Washington's Birthday", "2049-04-16": "Good Friday", "2049-05-31": "Memorial Day", - "2049-06-18": "Juneteenth National Independence Day (Observed)", - "2049-07-05": "Independence Day (Observed)", + "2049-06-18": "Juneteenth National Independence Day (observed)", + "2049-07-05": "Independence Day (observed)", "2049-09-06": "Labor Day", "2049-11-25": "Thanksgiving Day", - "2049-12-24": "Christmas Day (Observed)", + "2049-12-24": "Christmas Day (observed)", "2050-01-17": "Martin Luther King Jr. Day", "2050-02-21": "Washington's Birthday", "2050-04-08": "Good Friday", "2050-05-30": "Memorial Day", - "2050-06-20": "Juneteenth National Independence Day (Observed)", + "2050-06-20": "Juneteenth National Independence Day (observed)", "2050-07-04": "Independence Day", "2050-09-05": "Labor Day", "2050-11-24": "Thanksgiving Day", - "2050-12-26": "Christmas Day (Observed)" + "2050-12-26": "Christmas Day (observed)" } diff --git a/tests/countries/test_albania.py b/tests/countries/test_albania.py index f89edad0b..0b6e3db6c 100644 --- a/tests/countries/test_albania.py +++ b/tests/countries/test_albania.py @@ -175,26 +175,26 @@ def test_2022(self): Albania(years=2022), ("2022-01-01", "New Year's Day"), ("2022-01-02", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), - ("2022-01-04", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), + ("2022-01-04", "New Year's Day (observed)"), ("2022-03-14", "Summer Day"), ("2022-03-21", "Public Holiday"), ("2022-03-22", "Nevruz"), ("2022-04-17", "Catholic Easter"), - ("2022-04-18", "Catholic Easter (Observed)"), + ("2022-04-18", "Catholic Easter (observed)"), ("2022-04-24", "Orthodox Easter"), - ("2022-04-25", "Orthodox Easter (Observed)"), + ("2022-04-25", "Orthodox Easter (observed)"), ("2022-05-01", "May Day"), ("2022-05-02", "Eid al-Fitr (estimated)"), - ("2022-05-03", "May Day (Observed)"), + ("2022-05-03", "May Day (observed)"), ("2022-07-09", "Eid al-Adha (estimated)"), - ("2022-07-11", "Eid al-Adha (estimated) (Observed)"), + ("2022-07-11", "Eid al-Adha (estimated) (observed)"), ("2022-09-05", "Mother Teresa Canonization Day"), ("2022-11-28", "Independence Day"), ("2022-11-29", "Liberation Day"), ("2022-12-08", "National Youth Day"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed)"), + ("2022-12-26", "Christmas Day (observed)"), ) def test_2023(self): @@ -202,13 +202,13 @@ def test_2023(self): Albania(years=2023), ("2023-01-01", "New Year's Day"), ("2023-01-02", "New Year's Day"), - ("2023-01-03", "New Year's Day (Observed)"), + ("2023-01-03", "New Year's Day (observed)"), ("2023-03-14", "Summer Day"), ("2023-03-22", "Nevruz"), ("2023-04-09", "Catholic Easter"), - ("2023-04-10", "Catholic Easter (Observed)"), + ("2023-04-10", "Catholic Easter (observed)"), ("2023-04-16", "Orthodox Easter"), - ("2023-04-17", "Orthodox Easter (Observed)"), + ("2023-04-17", "Orthodox Easter (observed)"), ("2023-04-21", "Eid al-Fitr (estimated)"), ("2023-05-01", "May Day"), ("2023-06-28", "Eid al-Adha (estimated)"), diff --git a/tests/countries/test_american_samoa.py b/tests/countries/test_american_samoa.py index 1c2f0f937..aa99640b4 100644 --- a/tests/countries/test_american_samoa.py +++ b/tests/countries/test_american_samoa.py @@ -27,4 +27,4 @@ def test_country_aliases(self): def test_as_only(self): """Check for a holiday that is not returned by US unless the subdivision is specified.""" - self.assertIn("Christmas Eve (Observed)", self.holidays.get_list(date(2017, DEC, 22))) + self.assertIn("Christmas Eve (observed)", self.holidays.get_list(date(2017, DEC, 22))) diff --git a/tests/countries/test_angola.py b/tests/countries/test_angola.py index 3fdfeea20..6c6a08226 100644 --- a/tests/countries/test_angola.py +++ b/tests/countries/test_angola.py @@ -35,7 +35,7 @@ def test_new_years_day(self): "2018-12-31", "2026-01-02", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_martyrs_of_colonial_repression_day(self): @@ -48,7 +48,7 @@ def test_martyrs_of_colonial_repression_day(self): "2004-01-05", "2009-01-05", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_armed_struggle_day(self): @@ -62,7 +62,7 @@ def test_armed_struggle_day(self): "2001-02-05", "2007-02-05", ) - self.assertHolidayName(f"{name_1} (Ponte)", obs_dt) + self.assertHolidayName(f"{name_1} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) obs_dt = ( "2018-02-05", @@ -70,7 +70,7 @@ def test_armed_struggle_day(self): "2021-02-05", "2025-02-03", ) - self.assertHolidayName(f"{name_2} (Ponte)", obs_dt) + self.assertHolidayName(f"{name_2} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_carnival_day(self): @@ -97,7 +97,7 @@ def test_carnival_day(self): "2022-02-28", "2023-02-20", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_international_womens_day(self): @@ -111,7 +111,7 @@ def test_international_womens_day(self): "2022-03-07", "2029-03-09", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_southern_africa_liberation_day(self): @@ -125,7 +125,7 @@ def test_southern_africa_liberation_day(self): "2027-03-22", "2028-03-24", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_peace_and_national_reconciliation_day(self): @@ -141,7 +141,7 @@ def test_peace_and_national_reconciliation_day(self): "2024-04-05", "2028-04-03", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_good_friday(self): @@ -171,7 +171,7 @@ def test_international_workers_day(self): "2025-05-02", "2029-04-30", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_africa_day(self): @@ -184,7 +184,7 @@ def test_africa_day(self): "2003-05-26", "2008-05-26", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_international_childrens_day(self): @@ -197,7 +197,7 @@ def test_international_childrens_day(self): "2003-06-02", "2008-06-02", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_national_heroes_day(self): @@ -213,7 +213,7 @@ def test_national_heroes_day(self): "2020-09-18", "2024-09-16", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_all_souls_day(self): @@ -226,7 +226,7 @@ def test_all_souls_day(self): "2023-11-03", "2027-11-01", ) - self.assertHolidayName(f"{name} (Ponte)", obs_dt) + self.assertHolidayName(f"{name} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_national_independence_day(self): @@ -243,7 +243,7 @@ def test_national_independence_day(self): "2021-11-12", "2025-11-10", ) - self.assertHolidayName(f"{name_2} (Ponte)", obs_dt) + self.assertHolidayName(f"{name_2} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_date_of_founding_of_mpla(self): @@ -264,14 +264,14 @@ def test_christmas_and_family_day(self): self.assertNoHolidayName(name_3, range(1996, 2011)) obs_dt = ("2005-12-26",) - self.assertHolidayName(f"{name_2} (Ponte)", obs_dt) + self.assertHolidayName(f"{name_2} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) obs_dt = ( "2018-12-24", "2025-12-26", "2029-12-24", ) - self.assertHolidayName(f"{name_3} (Ponte)", obs_dt) + self.assertHolidayName(f"{name_3} (ponte)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_2022(self): @@ -279,9 +279,9 @@ def test_2022(self): Angola(years=2022), ("2022-01-01", "Dia do Ano Novo"), ("2022-02-04", "Dia do Início da Luta Armada de Libertação Nacional"), - ("2022-02-28", "Dia do Carnaval (Ponte)"), + ("2022-02-28", "Dia do Carnaval (ponte)"), ("2022-03-01", "Dia do Carnaval"), - ("2022-03-07", "Dia Internacional da Mulher (Ponte)"), + ("2022-03-07", "Dia Internacional da Mulher (ponte)"), ("2022-03-08", "Dia Internacional da Mulher"), ("2022-03-23", "Dia da Libertação da África Austral"), ("2022-04-04", "Dia da Paz e Reconciliação Nacional"), @@ -297,18 +297,18 @@ def test_l10n_default(self): self.assertLocalizedHolidays( ("2023-01-01", "Dia do Ano Novo"), ("2023-02-04", "Dia do Início da Luta Armada de Libertação Nacional"), - ("2023-02-20", "Dia do Carnaval (Ponte)"), + ("2023-02-20", "Dia do Carnaval (ponte)"), ("2023-02-21", "Dia do Carnaval"), ("2023-03-08", "Dia Internacional da Mulher"), ("2023-03-23", "Dia da Libertação da África Austral"), - ("2023-03-24", "Dia da Libertação da África Austral (Ponte)"), - ("2023-04-03", "Dia da Paz e Reconciliação Nacional (Ponte)"), + ("2023-03-24", "Dia da Libertação da África Austral (ponte)"), + ("2023-04-03", "Dia da Paz e Reconciliação Nacional (ponte)"), ("2023-04-04", "Dia da Paz e Reconciliação Nacional"), ("2023-04-07", "Sexta-Feira Santa"), ("2023-05-01", "Dia Internacional do Trabalhador"), ("2023-09-17", "Dia do Fundador da Nação e do Herói Nacional"), ("2023-11-02", "Dia dos Finados"), - ("2023-11-03", "Dia dos Finados (Ponte)"), + ("2023-11-03", "Dia dos Finados (ponte)"), ("2023-11-11", "Dia da Independência Nacional"), ("2023-12-25", "Dia de Natal e da Família"), ) diff --git a/tests/countries/test_argentina.py b/tests/countries/test_argentina.py index 935857dce..145230d92 100644 --- a/tests/countries/test_argentina.py +++ b/tests/countries/test_argentina.py @@ -214,10 +214,10 @@ def test_2022(self): ("2022-07-09", "Día de la Independencia"), ( "2022-08-15", - "Paso a la Inmortalidad del General Don José de San Martin (Observado)", + "Paso a la Inmortalidad del General Don José de San Martin (observado)", ), ("2022-10-07", "Feriado con fines turísticos"), - ("2022-10-10", "Día del Respeto a la Diversidad Cultural (Observado)"), + ("2022-10-10", "Día del Respeto a la Diversidad Cultural (observado)"), ("2022-11-20", "Día de la Soberanía Nacional"), ("2022-11-21", "Feriado con fines turísticos"), ("2022-12-08", "Inmaculada Concepción de María"), @@ -243,10 +243,10 @@ def test_2023(self): ("2023-07-09", "Día de la Independencia"), ( "2023-08-21", - "Paso a la Inmortalidad del General Don José de San Martin (Observado)", + "Paso a la Inmortalidad del General Don José de San Martin (observado)", ), ("2023-10-13", "Feriado con fines turísticos"), - ("2023-10-16", "Día del Respeto a la Diversidad Cultural (Observado)"), + ("2023-10-16", "Día del Respeto a la Diversidad Cultural (observado)"), ("2023-11-20", "Día de la Soberanía Nacional"), ("2023-12-08", "Inmaculada Concepción de María"), ("2023-12-25", "Navidad"), @@ -268,10 +268,10 @@ def test_l10n_default(self): ("2022-07-09", "Día de la Independencia"), ( "2022-08-15", - "Paso a la Inmortalidad del General Don José de San Martin (Observado)", + "Paso a la Inmortalidad del General Don José de San Martin (observado)", ), ("2022-10-07", "Feriado con fines turísticos"), - ("2022-10-10", "Día del Respeto a la Diversidad Cultural (Observado)"), + ("2022-10-10", "Día del Respeto a la Diversidad Cultural (observado)"), ("2022-11-20", "Día de la Soberanía Nacional"), ("2022-11-21", "Feriado con fines turísticos"), ("2022-12-08", "Inmaculada Concepción de María"), @@ -294,9 +294,9 @@ def test_l10n_en_us(self): ("2022-06-17", "Pass to the Immortality of General Don Martín Miguel de Güemes"), ("2022-06-20", "Pass to the Immortality of General Don Manuel Belgrano"), ("2022-07-09", "Independence Day"), - ("2022-08-15", "Pass to the Immortality of General Don José de San Martin (Observed)"), + ("2022-08-15", "Pass to the Immortality of General Don José de San Martin (observed)"), ("2022-10-07", "Bridge Public Holiday"), - ("2022-10-10", "Respect for Cultural Diversity Day (Observed)"), + ("2022-10-10", "Respect for Cultural Diversity Day (observed)"), ("2022-11-20", "National Sovereignty Day"), ("2022-11-21", "Bridge Public Holiday"), ("2022-12-08", "Immaculate Conception"), diff --git a/tests/countries/test_australia.py b/tests/countries/test_australia.py index cef1ea71e..fe4615b14 100644 --- a/tests/countries/test_australia.py +++ b/tests/countries/test_australia.py @@ -38,14 +38,14 @@ def test_new_years(self): "2022-01-03", "2023-01-02", ) - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) for subdiv in Australia.subdivisions: self.assertHolidayName( name, self.subdiv_holidays[subdiv], (f"{year}-01-01" for year in range(1900, 2050)) ) - self.assertHolidayName(f"{name} (Observed)", self.subdiv_holidays[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.subdiv_holidays[subdiv], obs_dt) self.assertNoNonObservedHoliday(Australia(subdiv=subdiv, observed=False), obs_dt) def test_good_friday(self): @@ -156,9 +156,9 @@ def test_australia_day(self): "2019-01-28", "2020-01-27", ) - self.assertHolidayName(f"{name_2} (Observed)", obs_dt) + self.assertHolidayName(f"{name_2} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) - self.assertNoHolidayName(f"{name_2} (Observed)", range(1900, 1946)) + self.assertNoHolidayName(f"{name_2} (observed)", range(1900, 1946)) def test_anzac_day(self): name = "Anzac Day" @@ -176,7 +176,7 @@ def test_anzac_day(self): "2021-04-26", ) for subdiv in ("ACT", "NT", "QLD", "SA", "WA"): - self.assertHolidayName(f"{name} (Observed)", self.subdiv_holidays[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.subdiv_holidays[subdiv], obs_dt) self.assertNoNonObservedHoliday(Australia(subdiv=subdiv, observed=False), obs_dt) for subdiv in ("NSW", "TAS", "VIC"): self.assertNoHoliday(self.subdiv_holidays[subdiv], obs_dt) @@ -193,14 +193,14 @@ def test_christmas_day(self): "2021-12-27", "2022-12-27", ) - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) for subdiv in Australia.subdivisions: self.assertHolidayName( name, self.subdiv_holidays[subdiv], (f"{year}-12-25" for year in range(1900, 2050)) ) - self.assertHolidayName(f"{name} (Observed)", self.subdiv_holidays[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.subdiv_holidays[subdiv], obs_dt) self.assertNoNonObservedHoliday(Australia(subdiv=subdiv, observed=False), obs_dt) def test_boxing_day(self): @@ -215,7 +215,7 @@ def test_boxing_day(self): "2020-12-28", "2021-12-28", ) - self.assertHolidayName(f"{name_common} (Observed)", obs_dt) + self.assertHolidayName(f"{name_common} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) for subdiv in Australia.subdivisions: @@ -223,7 +223,7 @@ def test_boxing_day(self): self.assertHolidayName( name, self.subdiv_holidays[subdiv], (f"{year}-12-26" for year in range(1900, 2050)) ) - self.assertHolidayName(f"{name} (Observed)", self.subdiv_holidays[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.subdiv_holidays[subdiv], obs_dt) self.assertNoNonObservedHoliday(Australia(subdiv=subdiv, observed=False), obs_dt) def test_labour_day(self): diff --git a/tests/countries/test_azerbaijan.py b/tests/countries/test_azerbaijan.py index b0f883c9f..372e659a7 100644 --- a/tests/countries/test_azerbaijan.py +++ b/tests/countries/test_azerbaijan.py @@ -353,8 +353,8 @@ def test_l10n_en_us(self): "en_US", ("2023-01-01", "New Year's Day"), ("2023-01-02", "New Year's Day"), - ("2023-01-03", "International Azerbaijanis Solidarity Day (Observed)"), - ("2023-01-04", "New Year's Day (Observed)"), + ("2023-01-03", "International Azerbaijanis Solidarity Day (observed)"), + ("2023-01-04", "New Year's Day (observed)"), ("2023-01-20", "Martyrs' Day"), ("2023-03-08", "Women's Day"), ("2023-03-20", "Spring Festival"), @@ -364,10 +364,10 @@ def test_l10n_en_us(self): ("2023-03-24", "Spring Festival"), ("2023-04-21", "Eid al-Fitr"), ("2023-04-22", "Eid al-Fitr"), - ("2023-04-24", "Eid al-Fitr (Observed)"), + ("2023-04-24", "Eid al-Fitr (observed)"), ("2023-05-09", "Victory over Fascism Day"), ("2023-05-28", "Independence Day"), - ("2023-05-29", "Independence Day (Observed)"), + ("2023-05-29", "Independence Day (observed)"), ("2023-06-15", "National Liberation Day"), ("2023-06-26", "Armed Forces Day"), ("2023-06-27", "Day off (substituted from 06/24/2023)"), diff --git a/tests/countries/test_bahamas.py b/tests/countries/test_bahamas.py index f31f4f11b..c3420d392 100644 --- a/tests/countries/test_bahamas.py +++ b/tests/countries/test_bahamas.py @@ -53,7 +53,7 @@ def test_2012(self): self.assertHolidays( Bahamas(years=2012), ("2012-01-01", "New Year's Day"), - ("2012-01-02", "New Year's Day (Observed)"), + ("2012-01-02", "New Year's Day (observed)"), ("2012-04-06", "Good Friday"), ("2012-04-09", "Easter Monday"), ("2012-05-28", "Whit Monday"), @@ -110,7 +110,7 @@ def test_2020(self): ("2020-10-12", "National Heroes Day"), ("2020-12-25", "Christmas Day"), ("2020-12-26", "Boxing Day"), - ("2020-12-28", "Boxing Day (Observed)"), + ("2020-12-28", "Boxing Day (observed)"), ) def test_2021(self): @@ -118,18 +118,18 @@ def test_2021(self): Bahamas(years=2021), ("2021-01-01", "New Year's Day"), ("2021-01-10", "Majority Rule Day"), - ("2021-01-11", "Majority Rule Day (Observed)"), + ("2021-01-11", "Majority Rule Day (observed)"), ("2021-04-02", "Good Friday"), ("2021-04-05", "Easter Monday"), ("2021-05-24", "Whit Monday"), ("2021-06-04", "Randol Fawkes Labour Day"), ("2021-07-10", "Independence Day"), - ("2021-07-12", "Independence Day (Observed)"), + ("2021-07-12", "Independence Day (observed)"), ("2021-08-02", "Emancipation Day"), ("2021-10-11", "National Heroes Day"), ("2021-12-25", "Christmas Day"), ("2021-12-26", "Boxing Day"), - ("2021-12-27", "Boxing Day (Observed)"), + ("2021-12-27", "Boxing Day (observed)"), ) def test_2022(self): @@ -142,20 +142,20 @@ def test_2022(self): ("2022-06-03", "Randol Fawkes Labour Day"), ("2022-06-06", "Whit Monday"), ("2022-07-10", "Independence Day"), - ("2022-07-11", "Independence Day (Observed)"), + ("2022-07-11", "Independence Day (observed)"), ("2022-08-01", "Emancipation Day"), ("2022-09-19", "State Funeral of Queen Elizabeth II"), ("2022-10-10", "National Heroes Day"), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Boxing Day"), - ("2022-12-27", "Christmas Day (Observed)"), + ("2022-12-27", "Christmas Day (observed)"), ) def test_2023(self): self.assertHolidays( Bahamas(years=2023), ("2023-01-01", "New Year's Day"), - ("2023-01-02", "New Year's Day (Observed)"), + ("2023-01-02", "New Year's Day (observed)"), ("2023-01-10", "Majority Rule Day"), ("2023-04-07", "Good Friday"), ("2023-04-10", "Easter Monday"), diff --git a/tests/countries/test_barbados.py b/tests/countries/test_barbados.py index 6abba5276..ba5ea6a22 100644 --- a/tests/countries/test_barbados.py +++ b/tests/countries/test_barbados.py @@ -40,7 +40,7 @@ def test_new_years_day(self): "2017-01-02", "2023-01-02", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_errol_barrow_day(self): @@ -53,7 +53,7 @@ def test_errol_barrow_day(self): "2007-01-22", "2018-01-22", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_good_friday(self): @@ -92,7 +92,7 @@ def test_national_heroes_day(self): "2013-04-29", "2019-04-29", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_may_day(self): @@ -104,7 +104,7 @@ def test_may_day(self): "2016-05-02", "2022-05-02", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_whit_monday(self): @@ -132,7 +132,7 @@ def test_emancipation_day(self): "2021-08-03", "2022-08-02", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_kadooment_day(self): @@ -156,7 +156,7 @@ def test_independence_day(self): "2008-12-01", "2014-12-01", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_christmas_day(self): @@ -168,7 +168,7 @@ def test_christmas_day(self): "2016-12-27", "2022-12-27", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_boxing_day(self): @@ -179,7 +179,7 @@ def test_boxing_day(self): "2010-12-27", "2021-12-27", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_2022(self): @@ -191,21 +191,21 @@ def test_2022(self): ("2022-04-18", "Easter Monday"), ("2022-04-28", "National Heroes Day"), ("2022-05-01", "May Day"), - ("2022-05-02", "May Day (Observed)"), + ("2022-05-02", "May Day (observed)"), ("2022-06-06", "Whit Monday"), ("2022-08-01", "Emancipation Day; Kadooment Day"), - ("2022-08-02", "Emancipation Day (Observed)"), + ("2022-08-02", "Emancipation Day (observed)"), ("2022-11-30", "Independence Day"), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Boxing Day"), - ("2022-12-27", "Christmas Day (Observed)"), + ("2022-12-27", "Christmas Day (observed)"), ) def test_2023(self): self.assertHolidays( Barbados(years=2023), ("2023-01-01", "New Year's Day"), - ("2023-01-02", "New Year's Day (Observed)"), + ("2023-01-02", "New Year's Day (observed)"), ("2023-01-21", "Errol Barrow Day"), ("2023-04-07", "Good Friday"), ("2023-04-10", "Easter Monday"), diff --git a/tests/countries/test_belize.py b/tests/countries/test_belize.py index 15c7f5eaa..569f30f3d 100644 --- a/tests/countries/test_belize.py +++ b/tests/countries/test_belize.py @@ -30,7 +30,7 @@ def test_new_years_day(self): self.assertHolidayName( name, (f"{year}-01-01" for year in set(range(1982, 2050)).difference(years_observed)) ) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-01-02" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-01-02" for year in years_observed)) def test_george_price_day(self): name = "George Price Day" @@ -38,14 +38,14 @@ def test_george_price_day(self): self.assertHolidayName( name, (f"{year}-01-15" for year in set(range(2021, 2050)).difference(years_observed)) ) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-01-16" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-01-16" for year in years_observed)) self.assertNoHoliday(f"{year}-01-15" for year in range(1982, 2021)) self.assertNoHolidayName(name, range(1982, 2021)) def test_national_heroes_and_benefactors_day(self): name = "National Heroes and Benefactors Day" self.assertHolidayName( - f"{name} (Observed)", + f"{name} (observed)", "1982-03-08", "1983-03-07", "1984-03-12", @@ -93,12 +93,12 @@ def test_labour_day(self): self.assertHolidayName( name, (f"{year}-05-01" for year in set(range(1982, 2050)).difference(years_observed)) ) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-05-02" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-05-02" for year in years_observed)) def test_commonwealth_day(self): name = "Commonwealth Day" self.assertHolidayName( - f"{name} (Observed)", + f"{name} (observed)", "1983-05-23", "1984-05-21", "1992-05-25", @@ -114,7 +114,7 @@ def test_commonwealth_day(self): def test_emancipation_day(self): name = "Emancipation Day" self.assertHolidayName( - f"{name} (Observed)", + f"{name} (observed)", "2021-08-02", "2023-07-31", "2024-07-29", @@ -129,7 +129,7 @@ def test_saint_georges_caye_day(self): self.assertHolidayName( name, (f"{year}-09-10" for year in set(range(1982, 2050)).difference(years_observed)) ) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-09-11" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-09-11" for year in years_observed)) def test_independence_day(self): name = "Independence Day" @@ -137,13 +137,13 @@ def test_independence_day(self): self.assertHolidayName( name, (f"{year}-09-21" for year in set(range(1982, 2050)).difference(years_observed)) ) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-09-22" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-09-22" for year in years_observed)) def test_indigenous_peoples_resistance_day(self): name1 = "Pan American Day" name2 = "Indigenous Peoples' Resistance Day" self.assertHolidayName( - f"{name1} (Observed)", + f"{name1} (observed)", "1982-10-11", "1983-10-10", "1993-10-11", @@ -152,7 +152,7 @@ def test_indigenous_peoples_resistance_day(self): "2018-10-15", ) self.assertHolidayName( - f"{name2} (Observed)", + f"{name2} (observed)", "2021-10-11", "2022-10-10", "2023-10-09", @@ -170,7 +170,7 @@ def test_garifuna_settlement_day(self): self.assertHolidayName( name, (f"{year}-11-19" for year in set(range(1982, 2050)).difference(years_observed)) ) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-11-20" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-11-20" for year in years_observed)) def test_christmas_day(self): self.assertHolidayName("Christmas Day", (f"{year}-12-25" for year in range(1982, 2050))) @@ -181,7 +181,7 @@ def test_boxing_day(self): self.assertHolidayName( name, (f"{year}-12-26" for year in set(range(1982, 2050)).difference(years_observed)) ) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-12-27" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-12-27" for year in years_observed)) def test_2021(self): # https://www.pressoffice.gov.bz/public-and-bank-holidays-2021-3/ @@ -189,19 +189,19 @@ def test_2021(self): Belize(years=2021), ("2021-01-01", "New Year's Day"), ("2021-01-15", "George Price Day"), - ("2021-03-08", "National Heroes and Benefactors Day (Observed)"), + ("2021-03-08", "National Heroes and Benefactors Day (observed)"), ("2021-04-02", "Good Friday"), ("2021-04-03", "Holy Saturday"), ("2021-04-05", "Easter Monday"), ("2021-05-01", "Labour Day"), ("2021-05-24", "Commonwealth Day"), - ("2021-08-02", "Emancipation Day (Observed)"), + ("2021-08-02", "Emancipation Day (observed)"), ("2021-09-10", "Saint George's Caye Day"), ("2021-09-21", "Independence Day"), - ("2021-10-11", "Indigenous Peoples' Resistance Day (Observed)"), + ("2021-10-11", "Indigenous Peoples' Resistance Day (observed)"), ("2021-11-19", "Garifuna Settlement Day"), ("2021-12-25", "Christmas Day"), - ("2021-12-27", "Boxing Day (Observed)"), + ("2021-12-27", "Boxing Day (observed)"), ) def test_2022(self): @@ -210,15 +210,15 @@ def test_2022(self): Belize(years=2022), ("2022-01-01", "New Year's Day"), ("2022-01-15", "George Price Day"), - ("2022-03-07", "National Heroes and Benefactors Day (Observed)"), + ("2022-03-07", "National Heroes and Benefactors Day (observed)"), ("2022-04-15", "Good Friday"), ("2022-04-16", "Holy Saturday"), ("2022-04-18", "Easter Monday"), - ("2022-05-02", "Labour Day (Observed)"), + ("2022-05-02", "Labour Day (observed)"), ("2022-08-01", "Emancipation Day"), ("2022-09-10", "Saint George's Caye Day"), ("2022-09-21", "Independence Day"), - ("2022-10-10", "Indigenous Peoples' Resistance Day (Observed)"), + ("2022-10-10", "Indigenous Peoples' Resistance Day (observed)"), ("2022-11-19", "Garifuna Settlement Day"), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Boxing Day"), diff --git a/tests/countries/test_bolivia.py b/tests/countries/test_bolivia.py index 88152d231..d853c11bf 100644 --- a/tests/countries/test_bolivia.py +++ b/tests/countries/test_bolivia.py @@ -34,7 +34,7 @@ def test_new_years(self): "2017-01-02", "2023-01-02", ) - self.assertHolidayName(f"{name} (Observado)", dt) + self.assertHolidayName(f"{name} (observado)", dt) self.assertNoNonObservedHoliday(dt) def test_plurinational_state_foundation_day(self): @@ -47,7 +47,7 @@ def test_plurinational_state_foundation_day(self): "2017-01-23", "2023-01-23", ) - self.assertHolidayName(f"{name} (Observado)", dt) + self.assertHolidayName(f"{name} (observado)", dt) self.assertNoNonObservedHoliday(dt) def test_carnival(self): @@ -98,7 +98,7 @@ def test_labor_day(self): "2016-05-02", "2022-05-02", ) - self.assertHolidayName(f"{name} (Observado)", dt) + self.assertHolidayName(f"{name} (observado)", dt) self.assertNoNonObservedHoliday(dt) def test_corpus_christi(self): @@ -125,7 +125,7 @@ def test_andean_new_year(self): "2015-06-22", "2020-06-22", ) - self.assertHolidayName(f"{name} (Observado)", dt) + self.assertHolidayName(f"{name} (observado)", dt) self.assertNoNonObservedHoliday(dt) def test_independence_day(self): @@ -137,7 +137,7 @@ def test_independence_day(self): "2017-08-07", "2023-08-07", ) - self.assertHolidayName(f"{name} (Observado)", dt) + self.assertHolidayName(f"{name} (observado)", dt) self.assertNoNonObservedHoliday(dt) def test_national_dignity_day(self): @@ -163,9 +163,9 @@ def test_all_souls_day(self): "2008-11-03", "2014-11-03", ) - self.assertHolidayName(f"{name} (Observado)", dt) + self.assertHolidayName(f"{name} (observado)", dt) self.assertNoNonObservedHoliday(dt) - self.assertNoHolidayName(f"{name} (Observado)", range(2016, 2050)) + self.assertNoHolidayName(f"{name} (observado)", range(2016, 2050)) def test_christmas_day(self): name = "Navidad" @@ -176,7 +176,7 @@ def test_christmas_day(self): "2016-12-26", "2022-12-26", ) - self.assertHolidayName(f"{name} (Observado)", dt) + self.assertHolidayName(f"{name} (observado)", dt) self.assertNoNonObservedHoliday(dt) def test_beni_day(self): @@ -265,9 +265,9 @@ def test_la_tablada(self): def test_l10n_default(self): self.assertLocalizedHolidays( ("2023-01-01", "Año Nuevo"), - ("2023-01-02", "Año Nuevo (Observado)"), + ("2023-01-02", "Año Nuevo (observado)"), ("2023-01-22", "Día de la Creación del Estado Plurinacional de Bolivia"), - ("2023-01-23", "Día de la Creación del Estado Plurinacional de Bolivia (Observado)"), + ("2023-01-23", "Día de la Creación del Estado Plurinacional de Bolivia (observado)"), ("2023-02-20", "Carnaval"), ("2023-02-21", "Carnaval"), ("2023-04-07", "Viernes Santo"), @@ -275,7 +275,7 @@ def test_l10n_default(self): ("2023-06-08", "Corpus Christi"), ("2023-06-21", "Año Nuevo Aymara Amazónico"), ("2023-08-06", "Día de la Independencia de Bolivia"), - ("2023-08-07", "Día de la Independencia de Bolivia (Observado)"), + ("2023-08-07", "Día de la Independencia de Bolivia (observado)"), ("2023-10-17", "Día de la Dignidad Nacional"), ("2023-11-02", "Día de Todos los Difuntos"), ("2023-12-25", "Navidad"), @@ -285,9 +285,9 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2023-01-01", "New Year's Day"), - ("2023-01-02", "New Year's Day (Observed)"), + ("2023-01-02", "New Year's Day (observed)"), ("2023-01-22", "Plurinational State Foundation Day"), - ("2023-01-23", "Plurinational State Foundation Day (Observed)"), + ("2023-01-23", "Plurinational State Foundation Day (observed)"), ("2023-02-20", "Carnival"), ("2023-02-21", "Carnival"), ("2023-04-07", "Good Friday"), @@ -295,7 +295,7 @@ def test_l10n_en_us(self): ("2023-06-08", "Corpus Christi"), ("2023-06-21", "Aymara New Year"), ("2023-08-06", "Independence Day"), - ("2023-08-07", "Independence Day (Observed)"), + ("2023-08-07", "Independence Day (observed)"), ("2023-10-17", "National Dignity Day"), ("2023-11-02", "All Souls' Day"), ("2023-12-25", "Christmas Day"), diff --git a/tests/countries/test_brunei.py b/tests/countries/test_brunei.py index 26b25a0b4..db053651b 100644 --- a/tests/countries/test_brunei.py +++ b/tests/countries/test_brunei.py @@ -35,29 +35,29 @@ def test_2022(self): ("2022-02-23", "Hari Kebangsaan"), ("2022-03-01", "Israk dan Mikraj"), ("2022-04-03", "Hari Pertama Berpuasa"), - ("2022-04-04", "Hari Pertama Berpuasa - Diperhatikan"), + ("2022-04-04", "Hari Pertama Berpuasa (diperhatikan)"), ("2022-04-19", "Hari Nuzul Al-Quran"), ("2022-05-03", "Hari Raya Aidil Fitri"), ("2022-05-04", "Hari Raya Aidil Fitri"), ("2022-05-05", "Hari Raya Aidil Fitri"), ("2022-05-31", "Hari Angkatan Bersenjata Diraja Brunei"), ("2022-07-10", "Hari Raya Aidil Adha"), - ("2022-07-11", "Hari Raya Aidil Adha - Diperhatikan"), + ("2022-07-11", "Hari Raya Aidil Adha (diperhatikan)"), ("2022-07-15", "Hari Keputeraan KDYMM Sultan Brunei"), - ("2022-07-16", "Hari Keputeraan KDYMM Sultan Brunei - Diperhatikan"), + ("2022-07-16", "Hari Keputeraan KDYMM Sultan Brunei (diperhatikan)"), ("2022-07-30", "Awal Tahun Hijrah"), ("2022-10-08", "Maulidur Rasul"), ("2022-12-25", "Hari Natal"), - ("2022-12-26", "Hari Natal - Diperhatikan"), + ("2022-12-26", "Hari Natal (diperhatikan)"), ) def test_2023(self): self.assertHolidays( Brunei(years=2023), ("2023-01-01", "Awal Tahun Masihi"), - ("2023-01-02", "Awal Tahun Masihi - Diperhatikan"), + ("2023-01-02", "Awal Tahun Masihi (diperhatikan)"), ("2023-01-22", "Tahun Baru Cina"), - ("2023-01-23", "Tahun Baru Cina - Diperhatikan"), + ("2023-01-23", "Tahun Baru Cina (diperhatikan)"), ("2023-02-18", "Israk dan Mikraj"), ("2023-02-23", "Hari Kebangsaan"), ("2023-03-23", "Hari Pertama Berpuasa"), @@ -65,7 +65,7 @@ def test_2023(self): ("2023-04-22", "Hari Raya Aidil Fitri"), ("2023-04-23", "Hari Raya Aidil Fitri"), ("2023-04-24", "Hari Raya Aidil Fitri"), - ("2023-04-25", "Hari Raya Aidil Fitri - Diperhatikan"), + ("2023-04-25", "Hari Raya Aidil Fitri (diperhatikan)"), ("2023-05-31", "Hari Angkatan Bersenjata Diraja Brunei"), ("2023-06-29", "Hari Raya Aidil Adha"), ("2023-07-15", "Hari Keputeraan KDYMM Sultan Brunei"), @@ -115,9 +115,9 @@ def test_sultan_hassanal_bolkiah_birthday(self): def test_l10n_default(self): self.assertLocalizedHolidays( ("2023-01-01", "Awal Tahun Masihi"), - ("2023-01-02", "Awal Tahun Masihi - Diperhatikan"), + ("2023-01-02", "Awal Tahun Masihi (diperhatikan)"), ("2023-01-22", "Tahun Baru Cina"), - ("2023-01-23", "Tahun Baru Cina - Diperhatikan"), + ("2023-01-23", "Tahun Baru Cina (diperhatikan)"), ("2023-02-18", "Israk dan Mikraj"), ("2023-02-23", "Hari Kebangsaan"), ("2023-03-23", "Hari Pertama Berpuasa"), @@ -125,7 +125,7 @@ def test_l10n_default(self): ("2023-04-22", "Hari Raya Aidil Fitri"), ("2023-04-23", "Hari Raya Aidil Fitri"), ("2023-04-24", "Hari Raya Aidil Fitri"), - ("2023-04-25", "Hari Raya Aidil Fitri - Diperhatikan"), + ("2023-04-25", "Hari Raya Aidil Fitri (diperhatikan)"), ("2023-05-31", "Hari Angkatan Bersenjata Diraja Brunei"), ("2023-06-29", "Hari Raya Aidil Adha"), ("2023-07-15", "Hari Keputeraan KDYMM Sultan Brunei"), @@ -138,9 +138,9 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2023-01-01", "New Year's Day"), - ("2023-01-02", "New Year's Day (Observed)"), + ("2023-01-02", "New Year's Day (observed)"), ("2023-01-22", "Lunar New Year"), - ("2023-01-23", "Lunar New Year (Observed)"), + ("2023-01-23", "Lunar New Year (observed)"), ("2023-02-18", "Isra Mi'raj"), ("2023-02-23", "National Day"), ("2023-03-23", "First Day of Ramadan"), @@ -148,7 +148,7 @@ def test_l10n_en_us(self): ("2023-04-22", "Eid al-Fitr"), ("2023-04-23", "Eid al-Fitr"), ("2023-04-24", "Eid al-Fitr"), - ("2023-04-25", "Eid al-Fitr (Observed)"), + ("2023-04-25", "Eid al-Fitr (observed)"), ("2023-05-31", "Armed Forces Day"), ("2023-06-29", "Eid al-Adha"), ("2023-07-15", "Sultan Hassanal Bolkiah's Birthday"), diff --git a/tests/countries/test_bulgaria.py b/tests/countries/test_bulgaria.py index 9ef32ff65..84b0acb2e 100644 --- a/tests/countries/test_bulgaria.py +++ b/tests/countries/test_bulgaria.py @@ -217,14 +217,14 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2022-01-01", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), ("2022-03-03", "Liberation Day"), ("2022-04-22", "Good Friday"), ("2022-04-23", "Holy Saturday"), ("2022-04-24", "Easter"), ("2022-04-25", "Easter"), ("2022-05-01", "Labor Day and International Workers' Solidarity Day"), - ("2022-05-02", "Labor Day and International Workers' Solidarity Day (Observed)"), + ("2022-05-02", "Labor Day and International Workers' Solidarity Day (observed)"), ("2022-05-06", "St. George's Day (Day of the Bulgarian Army)"), ("2022-05-24", "Day of Slavonic Alphabet, Bulgarian Enlightenment and Culture"), ("2022-09-06", "Unification Day"), @@ -233,8 +233,8 @@ def test_l10n_en_us(self): ("2022-12-24", "Christmas Eve"), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Christmas Day"), - ("2022-12-27", "Christmas Eve (Observed)"), - ("2022-12-28", "Christmas Day (Observed)"), + ("2022-12-27", "Christmas Eve (observed)"), + ("2022-12-28", "Christmas Day (observed)"), ) def test_l10n_uk(self): diff --git a/tests/countries/test_burkina_faso.py b/tests/countries/test_burkina_faso.py index f5b4e50ef..20c6feca3 100644 --- a/tests/countries/test_burkina_faso.py +++ b/tests/countries/test_burkina_faso.py @@ -79,7 +79,7 @@ def test_2022(self): ("2022-03-08", "International Women's Day"), ("2022-04-18", "Easter Monday"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Eid al-Fitr; Labour Day (Observed)"), + ("2022-05-02", "Eid al-Fitr; Labour Day (observed)"), ("2022-05-26", "Ascension Day"), ("2022-07-09", "Eid al-Adha"), ("2022-08-05", "Independence Day"), @@ -88,7 +88,7 @@ def test_2022(self): ("2022-10-31", "Martyrs' Day"), ("2022-11-01", "All Saints' Day"), ("2022-12-11", "Proclamation of Independence Day"), - ("2022-12-12", "Proclamation of Independence Day (Observed)"), + ("2022-12-12", "Proclamation of Independence Day (observed)"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed)"), + ("2022-12-26", "Christmas Day (observed)"), ) diff --git a/tests/countries/test_cameroon.py b/tests/countries/test_cameroon.py index c7e12f3df..717788bef 100644 --- a/tests/countries/test_cameroon.py +++ b/tests/countries/test_cameroon.py @@ -83,12 +83,12 @@ def test_2022(self): ("2022-04-15", "Good Friday"), ("2022-05-01", "Labour Day"), ("2022-05-02", "Eid al-Fitr"), - ("2022-05-03", "Labour Day (Observed)"), + ("2022-05-03", "Labour Day (observed)"), ("2022-05-20", "National Day"), ("2022-05-26", "Ascension Day"), ("2022-07-09", "Eid al-Adha"), ("2022-08-15", "Assumption Day"), ("2022-10-08", "Mawlid"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed)"), + ("2022-12-26", "Christmas Day (observed)"), ) diff --git a/tests/countries/test_canada.py b/tests/countries/test_canada.py index 576e57269..7b4abaec7 100644 --- a/tests/countries/test_canada.py +++ b/tests/countries/test_canada.py @@ -35,7 +35,7 @@ def test_no_holidays(self): def test_new_years_day(self): name = "New Year's Day" - name_observed = f"{name} (Observed)" + name_observed = f"{name} (observed)" self.assertHolidayName(name, (f"{year}-01-01" for year in range(1867, 2050))) self.assertHolidayName( name, self.gov_hols, (f"{year}-01-01" for year in range(1867, 2050)) @@ -102,7 +102,7 @@ def test_canada_day(self): "2012-07-02", "2018-07-02", ) - name_observed = f"{name_2} (Observed)" + name_observed = f"{name_2} (observed)" self.assertNoHoliday(dts_sat, dts_sun) self.assertHolidayName(name_observed, self.gov_hols, dts_sat, dts_sun) self.assertNoNonObservedHoliday( @@ -148,7 +148,7 @@ def test_labour_day(self): def test_christmas_day(self): name = "Christmas Day" - name_observed = f"{name} (Observed)" + name_observed = f"{name} (observed)" self.assertHolidayName(name, (f"{year}-12-25" for year in range(1867, 2050))) for _, holidays in self.prov_hols.items(): self.assertHolidayName(name, holidays, (f"{year}-12-25" for year in range(1867, 2050))) @@ -224,7 +224,7 @@ def test_victoria_day(self): def test_national_day_for_truth_and_reconciliation(self): name = "National Day for Truth and Reconciliation" - name_observed = f"{name} (Observed)" + name_observed = f"{name} (observed)" self.assertNoHolidayName(name) self.assertHolidayName( name, self.gov_hols, (f"{year}-09-30" for year in range(2021, 2050)) @@ -297,7 +297,7 @@ def test_thanksgiving_day(self): def test_remembrance_day(self): name = "Remembrance Day" - name_observed = f"{name} (Observed)" + name_observed = f"{name} (observed)" self.assertNoHolidayName(name) self.assertHolidayName( name, self.gov_hols, (f"{year}-11-11" for year in range(1931, 2050)) @@ -343,7 +343,7 @@ def test_remembrance_day(self): def test_boxing_day(self): name = "Boxing Day" - name_observed = f"{name} (Observed)" + name_observed = f"{name} (observed)" self.assertNoHolidayName(name) self.assertHolidayName( name, self.gov_hols, (f"{year}-12-26" for year in range(1867, 2050)) @@ -760,19 +760,19 @@ def test_public_2022(self): self.assertHolidays( Canada(years=2022), ("2022-01-01", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), ("2022-04-15", "Good Friday"), ("2022-07-01", "Canada Day"), ("2022-09-05", "Labour Day"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed)"), + ("2022-12-26", "Christmas Day (observed)"), ) def test_government_2022(self): self.assertHolidays( Canada(years=2022, categories=GOVERNMENT), ("2022-01-01", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), ("2022-04-15", "Good Friday"), ("2022-05-23", "Victoria Day"), ("2022-07-01", "Canada Day"), @@ -782,7 +782,7 @@ def test_government_2022(self): ("2022-11-11", "Remembrance Day"), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Boxing Day"), - ("2022-12-27", "Christmas Day (Observed)"), + ("2022-12-27", "Christmas Day (observed)"), ) def test_optional_2022(self): @@ -790,7 +790,7 @@ def test_optional_2022(self): Canada(years=2022, categories=OPTIONAL), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Boxing Day"), - ("2022-12-27", "Christmas Day (Observed)"), + ("2022-12-27", "Christmas Day (observed)"), ) def test_all_holidays_present(self): @@ -834,7 +834,7 @@ def test_all_holidays_present(self): def test_l10n_default(self): self.assertLocalizedHolidays( ("2022-01-01", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), ("2022-04-15", "Good Friday"), ("2022-05-23", "Victoria Day"), ("2022-07-01", "Canada Day"), @@ -843,8 +843,8 @@ def test_l10n_default(self): ("2022-10-10", "Thanksgiving Day"), ("2022-11-11", "Remembrance Day"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Boxing Day; Christmas Day (Observed)"), - ("2022-12-27", "Christmas Day (Observed)"), + ("2022-12-26", "Boxing Day; Christmas Day (observed)"), + ("2022-12-27", "Christmas Day (observed)"), ) def test_l10n_ar(self): @@ -868,7 +868,7 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2022-01-01", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), ("2022-04-15", "Good Friday"), ("2022-05-23", "Victoria Day"), ("2022-07-01", "Canada Day"), @@ -877,8 +877,8 @@ def test_l10n_en_us(self): ("2022-10-10", "Thanksgiving Day"), ("2022-11-11", "Remembrance Day"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Boxing Day; Christmas Day (Observed)"), - ("2022-12-27", "Christmas Day (Observed)"), + ("2022-12-26", "Boxing Day; Christmas Day (observed)"), + ("2022-12-27", "Christmas Day (observed)"), ) def test_l10n_fr(self): diff --git a/tests/countries/test_chad.py b/tests/countries/test_chad.py index 24a46708f..6abb6c862 100644 --- a/tests/countries/test_chad.py +++ b/tests/countries/test_chad.py @@ -64,7 +64,7 @@ def test_2022(self): ("2022-03-08", "International Women's Day"), ("2022-04-18", "Easter Monday"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Eid al-Fitr; Labour Day (Observed)"), + ("2022-05-02", "Eid al-Fitr; Labour Day (observed)"), ("2022-07-09", "Eid al-Adha"), ("2022-08-11", "Independence Day"), ("2022-10-08", "Mawlid"), diff --git a/tests/countries/test_china.py b/tests/countries/test_china.py index e9fe2a578..2f3c09c29 100644 --- a/tests/countries/test_china.py +++ b/tests/countries/test_china.py @@ -933,7 +933,7 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2022-01-01", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), ("2022-01-31", "Day off (substituted from 01/29/2022)"), ("2022-02-01", "Chinese New Year (Spring Festival)"), ("2022-02-02", "Chinese New Year (Spring Festival)"), @@ -943,19 +943,19 @@ def test_l10n_en_us(self): ("2022-04-04", "Day off (substituted from 04/02/2022)"), ("2022-04-05", "Tomb-Sweeping Day"), ("2022-05-01", "Labor Day"), - ("2022-05-02", "Labor Day (Observed)"), + ("2022-05-02", "Labor Day (observed)"), ("2022-05-03", "Day off (substituted from 04/24/2022)"), ("2022-05-04", "Day off (substituted from 05/07/2022); Youth Day"), ("2022-06-01", "Children's Day"), ("2022-06-03", "Dragon Boat Festival"), ("2022-08-01", "Army Day"), ("2022-09-10", "Mid-Autumn Festival"), - ("2022-09-12", "Mid-Autumn Festival (Observed)"), + ("2022-09-12", "Mid-Autumn Festival (observed)"), ("2022-10-01", "National Day"), ("2022-10-02", "National Day"), ("2022-10-03", "National Day"), - ("2022-10-04", "National Day (Observed)"), - ("2022-10-05", "National Day (Observed)"), + ("2022-10-04", "National Day (observed)"), + ("2022-10-05", "National Day (observed)"), ("2022-10-06", "Day off (substituted from 10/08/2022)"), ("2022-10-07", "Day off (substituted from 10/09/2022)"), ) diff --git a/tests/countries/test_colombia.py b/tests/countries/test_colombia.py index e200fe24d..3f4652c8f 100644 --- a/tests/countries/test_colombia.py +++ b/tests/countries/test_colombia.py @@ -281,21 +281,21 @@ def test_1950(self): def test_l10n_default(self): self.assertLocalizedHolidays( ("2022-01-01", "Año Nuevo"), - ("2022-01-10", "Día de los Reyes Magos (Observado)"), - ("2022-03-21", "Día de San José (Observado)"), + ("2022-01-10", "Día de los Reyes Magos (observado)"), + ("2022-03-21", "Día de San José (observado)"), ("2022-04-14", "Jueves Santo"), ("2022-04-15", "Viernes Santo"), ("2022-05-01", "Día del Trabajo"), - ("2022-05-30", "Ascensión del señor (Observado)"), - ("2022-06-20", "Corpus Christi (Observado)"), - ("2022-06-27", "Sagrado Corazón (Observado)"), - ("2022-07-04", "San Pedro y San Pablo (Observado)"), + ("2022-05-30", "Ascensión del señor (observado)"), + ("2022-06-20", "Corpus Christi (observado)"), + ("2022-06-27", "Sagrado Corazón (observado)"), + ("2022-07-04", "San Pedro y San Pablo (observado)"), ("2022-07-20", "Día de la Independencia"), ("2022-08-07", "Batalla de Boyacá"), ("2022-08-15", "La Asunción"), - ("2022-10-17", "Día de la Raza (Observado)"), - ("2022-11-07", "Día de Todos los Santos (Observado)"), - ("2022-11-14", "Independencia de Cartagena (Observado)"), + ("2022-10-17", "Día de la Raza (observado)"), + ("2022-11-07", "Día de Todos los Santos (observado)"), + ("2022-11-14", "Independencia de Cartagena (observado)"), ("2022-12-08", "La Inmaculada Concepción"), ("2022-12-25", "Navidad"), ) @@ -304,21 +304,21 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2022-01-01", "New Year's Day"), - ("2022-01-10", "Epiphany (Observed)"), - ("2022-03-21", "Saint Joseph's Day (Observed)"), + ("2022-01-10", "Epiphany (observed)"), + ("2022-03-21", "Saint Joseph's Day (observed)"), ("2022-04-14", "Maundy Thursday"), ("2022-04-15", "Good Friday"), ("2022-05-01", "Labour Day"), - ("2022-05-30", "Ascension of Jesus (Observed)"), - ("2022-06-20", "Corpus Christi (Observed)"), - ("2022-06-27", "Sacred Heart (Observed)"), - ("2022-07-04", "Saint Peter and Saint Paul (Observed)"), + ("2022-05-30", "Ascension of Jesus (observed)"), + ("2022-06-20", "Corpus Christi (observed)"), + ("2022-06-27", "Sacred Heart (observed)"), + ("2022-07-04", "Saint Peter and Saint Paul (observed)"), ("2022-07-20", "Independence Day"), ("2022-08-07", "Battle of Boyacá"), ("2022-08-15", "Assumption of Mary"), - ("2022-10-17", "Columbus Day (Observed)"), - ("2022-11-07", "All Saints' Day (Observed)"), - ("2022-11-14", "Independence of Cartagena (Observed)"), + ("2022-10-17", "Columbus Day (observed)"), + ("2022-11-07", "All Saints' Day (observed)"), + ("2022-11-14", "Independence of Cartagena (observed)"), ("2022-12-08", "Immaculate Conception"), ("2022-12-25", "Christmas"), ) diff --git a/tests/countries/test_costa_rica.py b/tests/countries/test_costa_rica.py index d5cdf37b4..d5f043187 100644 --- a/tests/countries/test_costa_rica.py +++ b/tests/countries/test_costa_rica.py @@ -197,9 +197,9 @@ def test_2022(self): ("2022-07-25", "Anexión del Partido de Nicoya a Costa Rica"), ("2022-08-02", "Fiesta de Nuestra Señora de los Ángeles"), ("2022-08-15", "Día de la Madre"), - ("2022-09-04", "Día de la Persona Negra y la Cultura Afrocostarricense (Observado)"), - ("2022-09-19", "Día de la Independencia (Observado)"), - ("2022-12-05", "Día de la Abolición del Ejército (Observado)"), + ("2022-09-04", "Día de la Persona Negra y la Cultura Afrocostarricense (observado)"), + ("2022-09-19", "Día de la Independencia (observado)"), + ("2022-12-05", "Día de la Abolición del Ejército (observado)"), ("2022-12-25", "Navidad"), ) @@ -223,12 +223,12 @@ def test_2023(self): ("2023-01-01", "Año Nuevo"), ("2023-04-06", "Jueves Santo"), ("2023-04-07", "Viernes Santo"), - ("2023-04-10", "Día de Juan Santamaría (Observado)"), + ("2023-04-10", "Día de Juan Santamaría (observado)"), ("2023-05-01", "Día Internacional del Trabajo"), - ("2023-07-24", "Anexión del Partido de Nicoya a Costa Rica (Observado)"), + ("2023-07-24", "Anexión del Partido de Nicoya a Costa Rica (observado)"), ("2023-08-02", "Fiesta de Nuestra Señora de los Ángeles"), - ("2023-08-14", "Día de la Madre (Observado)"), - ("2023-09-03", "Día de la Persona Negra y la Cultura Afrocostarricense (Observado)"), + ("2023-08-14", "Día de la Madre (observado)"), + ("2023-09-03", "Día de la Persona Negra y la Cultura Afrocostarricense (observado)"), ("2023-09-15", "Día de la Independencia"), ("2023-12-01", "Día de la Abolición del Ejército"), ("2023-12-25", "Navidad"), @@ -244,9 +244,9 @@ def test_l10n_default(self): ("2022-07-25", "Anexión del Partido de Nicoya a Costa Rica"), ("2022-08-02", "Fiesta de Nuestra Señora de los Ángeles"), ("2022-08-15", "Día de la Madre"), - ("2022-09-04", "Día de la Persona Negra y la Cultura Afrocostarricense (Observado)"), - ("2022-09-19", "Día de la Independencia (Observado)"), - ("2022-12-05", "Día de la Abolición del Ejército (Observado)"), + ("2022-09-04", "Día de la Persona Negra y la Cultura Afrocostarricense (observado)"), + ("2022-09-19", "Día de la Independencia (observado)"), + ("2022-12-05", "Día de la Abolición del Ejército (observado)"), ("2022-12-25", "Navidad"), ) @@ -261,9 +261,9 @@ def test_l10n_en_us(self): ("2022-07-25", "Annexation of the Party of Nicoya to Costa Rica"), ("2022-08-02", "Feast of Our Lady of the Angels"), ("2022-08-15", "Mother's Day"), - ("2022-09-04", "Day of the Black Person and Afro-Costa Rican Culture (Observed)"), - ("2022-09-19", "Independence Day (Observed)"), - ("2022-12-05", "Army Abolition Day (Observed)"), + ("2022-09-04", "Day of the Black Person and Afro-Costa Rican Culture (observed)"), + ("2022-09-19", "Independence Day (observed)"), + ("2022-12-05", "Army Abolition Day (observed)"), ("2022-12-25", "Christmas Day"), ) diff --git a/tests/countries/test_cuba.py b/tests/countries/test_cuba.py index 44d362f83..c8c9d51eb 100644 --- a/tests/countries/test_cuba.py +++ b/tests/countries/test_cuba.py @@ -298,7 +298,7 @@ def test_l10n_default(self): ("2022-01-02", "Día de la Victoria"), ("2022-04-15", "Viernes Santo"), ("2022-05-01", "Día Internacional de los Trabajadores"), - ("2022-05-02", "Día Internacional de los Trabajadores (Observado)"), + ("2022-05-02", "Día Internacional de los Trabajadores (observado)"), ("2022-07-25", "Conmemoración del asalto a Moncada"), ("2022-07-26", "Día de la Rebeldía Nacional"), ("2022-07-27", "Conmemoración del asalto a Moncada"), @@ -314,7 +314,7 @@ def test_l10n_en_us(self): ("2022-01-02", "Victory Day"), ("2022-04-15", "Good Friday"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Labour Day (Observed)"), + ("2022-05-02", "Labour Day (observed)"), ("2022-07-25", "Commemoration of the Assault of the Moncada garrison"), ("2022-07-26", "Day of the National Rebellion"), ("2022-07-27", "Commemoration of the Assault of the Moncada garrison"), diff --git a/tests/countries/test_ecuador.py b/tests/countries/test_ecuador.py index 366aaae05..ce2d1b19c 100644 --- a/tests/countries/test_ecuador.py +++ b/tests/countries/test_ecuador.py @@ -143,18 +143,18 @@ def test_2022(self): ("2022-03-01", "Carnaval"), ("2022-04-15", "Viernes Santo"), ("2022-05-01", "Día del Trabajo"), - ("2022-05-02", "Día del Trabajo (Observado)"), - ("2022-05-23", "Batalla de Pichincha (Observado)"), + ("2022-05-02", "Día del Trabajo (observado)"), + ("2022-05-23", "Batalla de Pichincha (observado)"), ("2022-05-24", "Batalla de Pichincha"), ("2022-08-10", "Primer Grito de Independencia"), - ("2022-08-12", "Primer Grito de Independencia (Observado)"), + ("2022-08-12", "Primer Grito de Independencia (observado)"), ("2022-10-09", "Independencia de Guayaquil"), - ("2022-10-10", "Independencia de Guayaquil (Observado)"), + ("2022-10-10", "Independencia de Guayaquil (observado)"), ("2022-11-02", "Día de los Difuntos"), ("2022-11-03", "Independencia de Cuenca"), - ("2022-11-04", "Día de los Difuntos (Observado); Independencia de Cuenca (Observado)"), + ("2022-11-04", "Día de los Difuntos (observado); Independencia de Cuenca (observado)"), ("2022-12-25", "Día de Navidad"), - ("2022-12-26", "Día de Navidad (Observado)"), + ("2022-12-26", "Día de Navidad (observado)"), ) self.assertNonObservedHolidays( Ecuador(observed=False, years=2022), @@ -178,18 +178,18 @@ def test_l10n_default(self): ("2022-03-01", "Carnaval"), ("2022-04-15", "Viernes Santo"), ("2022-05-01", "Día del Trabajo"), - ("2022-05-02", "Día del Trabajo (Observado)"), - ("2022-05-23", "Batalla de Pichincha (Observado)"), + ("2022-05-02", "Día del Trabajo (observado)"), + ("2022-05-23", "Batalla de Pichincha (observado)"), ("2022-05-24", "Batalla de Pichincha"), ("2022-08-10", "Primer Grito de Independencia"), - ("2022-08-12", "Primer Grito de Independencia (Observado)"), + ("2022-08-12", "Primer Grito de Independencia (observado)"), ("2022-10-09", "Independencia de Guayaquil"), - ("2022-10-10", "Independencia de Guayaquil (Observado)"), + ("2022-10-10", "Independencia de Guayaquil (observado)"), ("2022-11-02", "Día de los Difuntos"), ("2022-11-03", "Independencia de Cuenca"), - ("2022-11-04", "Día de los Difuntos (Observado); Independencia de Cuenca (Observado)"), + ("2022-11-04", "Día de los Difuntos (observado); Independencia de Cuenca (observado)"), ("2022-12-25", "Día de Navidad"), - ("2022-12-26", "Día de Navidad (Observado)"), + ("2022-12-26", "Día de Navidad (observado)"), ) def test_l10n_en_us(self): @@ -200,18 +200,18 @@ def test_l10n_en_us(self): ("2022-03-01", "Carnival"), ("2022-04-15", "Good Friday"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Labour Day (Observed)"), - ("2022-05-23", "The Battle of Pichincha (Observed)"), + ("2022-05-02", "Labour Day (observed)"), + ("2022-05-23", "The Battle of Pichincha (observed)"), ("2022-05-24", "The Battle of Pichincha"), ("2022-08-10", "Declaration of Independence of Quito"), - ("2022-08-12", "Declaration of Independence of Quito (Observed)"), + ("2022-08-12", "Declaration of Independence of Quito (observed)"), ("2022-10-09", "Independence of Guayaquil"), - ("2022-10-10", "Independence of Guayaquil (Observed)"), + ("2022-10-10", "Independence of Guayaquil (observed)"), ("2022-11-02", "All Souls' Day"), ("2022-11-03", "Independence of Cuenca"), - ("2022-11-04", "All Souls' Day (Observed); Independence of Cuenca (Observed)"), + ("2022-11-04", "All Souls' Day (observed); Independence of Cuenca (observed)"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed)"), + ("2022-12-26", "Christmas Day (observed)"), ) def test_l10n_uk(self): diff --git a/tests/countries/test_greece.py b/tests/countries/test_greece.py index cf8c06d9a..5fbcfaea5 100644 --- a/tests/countries/test_greece.py +++ b/tests/countries/test_greece.py @@ -136,7 +136,7 @@ def test_l10n_en_us(self): ("2022-04-22", "Good Friday"), ("2022-04-25", "Easter Monday"), ("2022-05-01", "Labor Day"), - ("2022-05-02", "Labor Day (Observed)"), + ("2022-05-02", "Labor Day (observed)"), ("2022-06-13", "Easter Monday"), ("2022-08-15", "Dormition of the Mother of God"), ("2022-10-28", "Ochi Day"), diff --git a/tests/countries/test_ireland.py b/tests/countries/test_ireland.py index 8eb3ce159..d45f57e46 100644 --- a/tests/countries/test_ireland.py +++ b/tests/countries/test_ireland.py @@ -130,7 +130,7 @@ def test_christmas_day(self): self.assertHoliday(obs_dt) self.assertNoNonObservedHoliday(obs_dt) self.assertHolidayName( - f"{name} (Observed)", + f"{name} (observed)", "1994-12-26", "2005-12-26", "2011-12-26", @@ -163,7 +163,7 @@ def test_2020(self): ("2020-10-26", "October Bank Holiday"), ("2020-12-25", "Christmas Day"), ("2020-12-26", "St. Stephen's Day"), - ("2020-12-28", "St. Stephen's Day (Observed)"), + ("2020-12-28", "St. Stephen's Day (observed)"), ) def test_2022(self): @@ -178,5 +178,5 @@ def test_2022(self): ("2022-08-01", "August Bank Holiday"), ("2022-10-31", "October Bank Holiday"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed); St. Stephen's Day"), + ("2022-12-26", "Christmas Day (observed); St. Stephen's Day"), ) diff --git a/tests/countries/test_isle_of_man.py b/tests/countries/test_isle_of_man.py index d2dcb1bc2..4d8fab6a7 100644 --- a/tests/countries/test_isle_of_man.py +++ b/tests/countries/test_isle_of_man.py @@ -30,14 +30,14 @@ def test_1970(self): ("1970-07-05", "Tynwald Day"), ("1970-12-25", "Christmas Day"), ("1970-12-26", "Boxing Day"), - ("1970-12-28", "Boxing Day (Observed)"), + ("1970-12-28", "Boxing Day (observed)"), ) def test_2022(self): self.assertHolidays( IsleOfMan(years=2022), ("2022-01-01", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), ("2022-04-15", "Good Friday"), ("2022-04-18", "Easter Monday"), ("2022-05-02", "May Day"), @@ -48,7 +48,7 @@ def test_2022(self): ("2022-09-19", "State Funeral of Queen Elizabeth II"), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Boxing Day"), - ("2022-12-27", "Christmas Day (Observed)"), + ("2022-12-27", "Christmas Day (observed)"), ) def test_tynwald_day(self): diff --git a/tests/countries/test_israel.py b/tests/countries/test_israel.py index 5b39f92d7..cbc2988f6 100644 --- a/tests/countries/test_israel.py +++ b/tests/countries/test_israel.py @@ -465,8 +465,8 @@ def test_l10n_en_us(self): ("2021-04-01", "Pesach holiday"), ("2021-04-02", "Pesach holiday"), ("2021-04-03", "Seventh day of Pesach"), - ("2021-04-14", "Remembrance Day (Observed)"), - ("2021-04-15", "Independence Day (Observed)"), + ("2021-04-14", "Remembrance Day (observed)"), + ("2021-04-15", "Independence Day (observed)"), ("2021-04-30", "Lag BaOmer"), ("2021-05-10", "Jerusalem Day"), ("2021-05-17", "Shavuot"), diff --git a/tests/countries/test_jamaica.py b/tests/countries/test_jamaica.py index 4bf3e4edc..a06ca3805 100644 --- a/tests/countries/test_jamaica.py +++ b/tests/countries/test_jamaica.py @@ -98,7 +98,7 @@ def test_christmas_day(self): "2022-12-27", "2033-12-27", ) - self.assertHolidayName("Christmas Day (Observed)", dt) + self.assertHolidayName("Christmas Day (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_boxing_day(self): @@ -110,7 +110,7 @@ def test_boxing_day(self): "2027-12-27", "2032-12-27", ) - self.assertHolidayName("Boxing Day (Observed)", dt) + self.assertHolidayName("Boxing Day (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_ash_wednesday(self): diff --git a/tests/countries/test_malaysia.py b/tests/countries/test_malaysia.py index 84d549c79..58c25f98d 100644 --- a/tests/countries/test_malaysia.py +++ b/tests/countries/test_malaysia.py @@ -368,7 +368,7 @@ def test_JHR_holidays(self): "2014-03-23", # Hari Hol of Sultan Iskandar of Johor "2010-01-21", - # Malaysia Day [In lieu] + # Malaysia Day (in lieu) "2018-09-17", ) dt = ( @@ -429,7 +429,7 @@ def test_KDH_holidays(self): ) self.assertNoHoliday( state_holidays, - # Malaysia Day [In lieu] + # Malaysia Day (in lieu) "2018-09-17", ) dt = ( @@ -490,7 +490,7 @@ def test_KTN_holidays(self): state_holidays, # Birthday of the Sultan of Kelantan "2001-11-11", - # Malaysia Day [In lieu] + # Malaysia Day (in lieu) "2018-09-17", ) dt = ( @@ -928,7 +928,7 @@ def test_TRG_holidays(self): "1999-03-04", # Birthday of the Sultan of Terengganu "1999-04-26", - # Malaysia Day [In lieu] + # Malaysia Day (in lieu) "2018-09-17", ) dt = ( diff --git a/tests/countries/test_monaco.py b/tests/countries/test_monaco.py index e29d94793..0e4494cfb 100644 --- a/tests/countries/test_monaco.py +++ b/tests/countries/test_monaco.py @@ -129,7 +129,7 @@ def test_l10n_default(self): ("2022-01-27", "La Sainte Dévote"), ("2022-04-18", "Le lundi de Pâques"), ("2022-05-01", "Fête de la Travaille"), - ("2022-05-02", "Fête de la Travaille (Observé)"), + ("2022-05-02", "Fête de la Travaille (observé)"), ("2022-05-26", "L'Ascension"), ("2022-06-06", "Le lundi de Pentecôte"), ("2022-06-16", "La Fête Dieu"), @@ -138,7 +138,7 @@ def test_l10n_default(self): ("2022-11-19", "La Fête du Prince"), ("2022-12-08", "L'Immaculée Conception"), ("2022-12-25", "Noël"), - ("2022-12-26", "Noël (Observé)"), + ("2022-12-26", "Noël (observé)"), ) def test_l10n_en_us(self): @@ -148,7 +148,7 @@ def test_l10n_en_us(self): ("2022-01-27", "Saint Devote's Day"), ("2022-04-18", "Easter Monday"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Labour Day (Observed)"), + ("2022-05-02", "Labour Day (observed)"), ("2022-05-26", "Ascension's Day"), ("2022-06-06", "Whit Monday"), ("2022-06-16", "Corpus Christi"), @@ -157,7 +157,7 @@ def test_l10n_en_us(self): ("2022-11-19", "Prince's Day"), ("2022-12-08", "Immaculate Conception's Day"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed)"), + ("2022-12-26", "Christmas Day (observed)"), ) def test_l10n_uk(self): diff --git a/tests/countries/test_montenegro.py b/tests/countries/test_montenegro.py index 5842d1b67..1c1d793b6 100644 --- a/tests/countries/test_montenegro.py +++ b/tests/countries/test_montenegro.py @@ -29,7 +29,7 @@ def test_2021(self): ("2021-04-30", "Orthodox Good Friday"), ("2021-05-01", "Labour Day"), ("2021-05-02", "Labour Day; Orthodox Easter Sunday"), - ("2021-05-03", "Labour Day (Observed); Orthodox Easter Monday"), + ("2021-05-03", "Labour Day (observed); Orthodox Easter Monday"), ("2021-05-21", "Independence Day"), ("2021-05-22", "Independence Day"), ("2021-07-13", "Statehood Day"), @@ -40,7 +40,7 @@ def test_2022(self): self.assertHolidays( ("2022-01-01", "New Year's Day"), ("2022-01-02", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), ("2022-01-06", "Orthodox Christmas Eve"), ("2022-01-07", "Orthodox Christmas"), ("2022-04-22", "Orthodox Good Friday"), @@ -48,10 +48,10 @@ def test_2022(self): ("2022-04-25", "Orthodox Easter Monday"), ("2022-05-01", "Labour Day"), ("2022-05-02", "Labour Day"), - ("2022-05-03", "Labour Day (Observed)"), + ("2022-05-03", "Labour Day (observed)"), ("2022-05-21", "Independence Day"), ("2022-05-22", "Independence Day"), - ("2022-05-23", "Independence Day (Observed)"), + ("2022-05-23", "Independence Day (observed)"), ("2022-07-13", "Statehood Day"), ("2022-07-14", "Statehood Day"), ) @@ -60,7 +60,7 @@ def test_2023(self): self.assertHolidays( ("2023-01-01", "New Year's Day"), ("2023-01-02", "New Year's Day"), - ("2023-01-03", "New Year's Day (Observed)"), + ("2023-01-03", "New Year's Day (observed)"), ("2023-01-06", "Orthodox Christmas Eve"), ("2023-01-07", "Orthodox Christmas"), ("2023-04-14", "Orthodox Good Friday"), @@ -70,7 +70,7 @@ def test_2023(self): ("2023-05-02", "Labour Day"), ("2023-05-21", "Independence Day"), ("2023-05-22", "Independence Day"), - ("2023-05-23", "Independence Day (Observed)"), + ("2023-05-23", "Independence Day (observed)"), ("2023-07-13", "Statehood Day"), ("2023-07-14", "Statehood Day"), ) diff --git a/tests/countries/test_mozambique.py b/tests/countries/test_mozambique.py index 0f1e58003..ec5615aa9 100644 --- a/tests/countries/test_mozambique.py +++ b/tests/countries/test_mozambique.py @@ -71,12 +71,12 @@ def test_observed(self): def test_l10n_default(self): self.assertLocalizedHolidays( ("2023-01-01", "Dia da Fraternidade universal"), - ("2023-01-02", "Dia da Fraternidade universal (Ponte)"), + ("2023-01-02", "Dia da Fraternidade universal (ponte)"), ("2023-02-03", "Dia dos Heróis Moçambicanos"), ("2023-04-07", "Dia da Mulher Moçambicana"), ("2023-05-01", "Dia Internacional dos Trabalhadores"), ("2023-06-25", "Dia da Independência Nacional"), - ("2023-06-26", "Dia da Independência Nacional (Ponte)"), + ("2023-06-26", "Dia da Independência Nacional (ponte)"), ("2023-09-07", "Dia da Vitória"), ("2023-09-25", "Dia das Forças Armadas de Libertação Nacional"), ("2023-10-04", "Dia da Paz e Reconciliação"), @@ -87,12 +87,12 @@ def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", ("2023-01-01", "International Fraternalism Day"), - ("2023-01-02", "International Fraternalism Day (Observed)"), + ("2023-01-02", "International Fraternalism Day (observed)"), ("2023-02-03", "Heroes' Day"), ("2023-04-07", "Women's Day"), ("2023-05-01", "International Workers' Day"), ("2023-06-25", "Independence Day"), - ("2023-06-26", "Independence Day (Observed)"), + ("2023-06-26", "Independence Day (observed)"), ("2023-09-07", "Victory Day"), ("2023-09-25", "Armed Forces Day"), ("2023-10-04", "Peace and Reconciliation Day"), diff --git a/tests/countries/test_new_zealand.py b/tests/countries/test_new_zealand.py index e4435bd49..bebea338e 100644 --- a/tests/countries/test_new_zealand.py +++ b/tests/countries/test_new_zealand.py @@ -36,14 +36,14 @@ def test_new_years(self): name = "New Year's Day" self.assertHolidayName(name, (f"{year}-01-01" for year in range(1900, 2050))) years_observed = (2005, 2006, 2011, 2012, 2017) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-01-03" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-01-03" for year in years_observed)) self.assertNoNonObservedHoliday(f"{year}-01-03" for year in years_observed) def test_day_after_new_years(self): name = "Day after New Year's Day" self.assertHolidayName(name, (f"{year}-01-02" for year in range(1900, 2050))) years_observed = (2010, 2011, 2016, 2021, 2022) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-01-04" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-01-04" for year in years_observed)) self.assertNoNonObservedHoliday(f"{year}-01-04" for year in years_observed) def test_waitangi_day(self): @@ -65,7 +65,7 @@ def test_waitangi_day(self): self.assertHolidayName(name1, (f"{year}-02-06" for year in range(1974, 1977))) self.assertHolidayName(name2, (f"{year}-02-06" for year in range(1977, 2050))) obs_dt = ("2016-02-08", "2021-02-08", "2022-02-07") - self.assertHolidayName(f"{name2} (Observed)", obs_dt) + self.assertHolidayName(f"{name2} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_good_friday(self): @@ -96,7 +96,7 @@ def test_anzac_day(self): name = "Anzac Day" self.assertHolidayName(name, (f"{year}-04-25" for year in range(1921, 2050))) obs_dt = ("2015-04-27", "2020-04-27", "2021-04-26") - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) self.assertNoHolidayName(name, range(1900, 1921)) self.assertNoHoliday(f"{year}-04-25" for year in range(1900, 1921)) @@ -213,14 +213,14 @@ def test_christmas_day(self): name = "Christmas Day" self.assertHolidayName(name, (f"{year}-12-25" for year in range(1900, 2050))) years_observed = (2004, 2005, 2010, 2011, 2016, 2021, 2022) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-12-27" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-12-27" for year in years_observed)) self.assertNoNonObservedHoliday(f"{year}-12-27" for year in years_observed) def test_boxing_day(self): name = "Boxing Day" self.assertHolidayName(name, (f"{year}-12-26" for year in range(1900, 2050))) years_observed = (2004, 2009, 2010, 2015, 2020, 2021) - self.assertHolidayName(f"{name} (Observed)", (f"{year}-12-28" for year in years_observed)) + self.assertHolidayName(f"{name} (observed)", (f"{year}-12-28" for year in years_observed)) self.assertNoNonObservedHoliday(f"{year}-12-28" for year in years_observed) def test_auckland_anniversary_day(self): diff --git a/tests/countries/test_panama.py b/tests/countries/test_panama.py index b2fa00aca..8eec58723 100644 --- a/tests/countries/test_panama.py +++ b/tests/countries/test_panama.py @@ -81,11 +81,11 @@ def test_2022(self): Panama(years=2022), ("2022-01-01", "New Year's Day"), ("2022-01-09", "Martyrs' Day"), - ("2022-01-10", "Martyrs' Day (Observed)"), + ("2022-01-10", "Martyrs' Day (observed)"), ("2022-03-01", "Carnival"), ("2022-04-15", "Good Friday"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Labour Day (Observed)"), + ("2022-05-02", "Labour Day (observed)"), ("2022-11-03", "Separation Day"), ("2022-11-04", "National Symbols Day"), ("2022-11-05", "Colon Day"), @@ -94,14 +94,14 @@ def test_2022(self): ("2022-12-08", "Mother's Day"), ("2022-12-20", "National Mourning Day"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed)"), + ("2022-12-26", "Christmas Day (observed)"), ) def test_2023(self): self.assertHolidays( Panama(years=2023), ("2023-01-01", "New Year's Day"), - ("2023-01-02", "New Year's Day (Observed)"), + ("2023-01-02", "New Year's Day (observed)"), ("2023-01-09", "Martyrs' Day"), ("2023-02-21", "Carnival"), ("2023-04-07", "Good Friday"), diff --git a/tests/countries/test_papua_new_guinea.py b/tests/countries/test_papua_new_guinea.py index ce71caf74..842df0c91 100644 --- a/tests/countries/test_papua_new_guinea.py +++ b/tests/countries/test_papua_new_guinea.py @@ -114,7 +114,7 @@ def test_2021(self): ("2021-09-16", "Independence Day"), ("2021-12-25", "Christmas Day"), ("2021-12-26", "Boxing Day"), - ("2021-12-27", "Boxing Day (Observed)"), + ("2021-12-27", "Boxing Day (observed)"), ) def test_2022(self): @@ -125,7 +125,7 @@ def test_2022(self): PapuaNewGuinea(years=2022), ("2022-01-01", "New Year's Day"), ("2022-02-26", "Grand Chief Sir Michael Somare Remembrance Day"), - ("2022-02-28", "Grand Chief Sir Michael Somare Remembrance Day (Observed)"), + ("2022-02-28", "Grand Chief Sir Michael Somare Remembrance Day (observed)"), ("2022-04-15", "Good Friday"), ("2022-04-16", "Easter Saturday"), ("2022-04-17", "Easter Sunday"), @@ -137,7 +137,7 @@ def test_2022(self): ("2022-09-19", "State Funeral of Queen Elizabeth II"), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Boxing Day"), - ("2022-12-27", "Christmas Day (Observed)"), + ("2022-12-27", "Christmas Day (observed)"), ) def test_2023(self): @@ -146,20 +146,20 @@ def test_2023(self): self.assertHolidays( PapuaNewGuinea(years=2023), ("2023-01-01", "New Year's Day"), - ("2023-01-02", "New Year's Day (Observed)"), - ("2023-02-24", "Grand Chief Sir Michael Somare Remembrance Day (Observed)"), + ("2023-01-02", "New Year's Day (observed)"), + ("2023-02-24", "Grand Chief Sir Michael Somare Remembrance Day (observed)"), ("2023-02-26", "Grand Chief Sir Michael Somare Remembrance Day"), ("2023-04-07", "Good Friday"), ("2023-04-08", "Easter Saturday"), ("2023-04-09", "Easter Sunday"), ("2023-04-10", "Easter Monday"), ("2023-04-18", "State Funeral of Sir Rabbie Namaliu"), - ("2023-06-16", "King's Birthday (Observed)"), + ("2023-06-16", "King's Birthday (observed)"), ("2023-06-17", "King's Birthday"), ("2023-07-23", "Papua New Guinea Remembrance Day"), - ("2023-07-24", "Papua New Guinea Remembrance Day (Observed)"), + ("2023-07-24", "Papua New Guinea Remembrance Day (observed)"), ("2023-08-26", "National Repentance Day"), - ("2023-09-15", "Independence Day (Observed)"), + ("2023-09-15", "Independence Day (observed)"), ("2023-09-16", "Independence Day"), ("2023-12-25", "Christmas Day"), ("2023-12-26", "Boxing Day"), diff --git a/tests/countries/test_puerto_rico.py b/tests/countries/test_puerto_rico.py index d170d7158..c0abf4dd3 100644 --- a/tests/countries/test_puerto_rico.py +++ b/tests/countries/test_puerto_rico.py @@ -27,4 +27,4 @@ def test_country_aliases(self): def test_pr_only(self): """Check for a holiday that is not returned by US unless the subdivision is specified.""" - self.assertIn("Discovery Day (Observed)", self.holidays.get_list(date(2017, NOV, 20))) + self.assertIn("Discovery Day (observed)", self.holidays.get_list(date(2017, NOV, 20))) diff --git a/tests/countries/test_serbia.py b/tests/countries/test_serbia.py index 254da9237..fe4f5009c 100644 --- a/tests/countries/test_serbia.py +++ b/tests/countries/test_serbia.py @@ -95,7 +95,7 @@ def test_l10n_en_us(self): "en_US", ("2022-01-01", "New Year's Day"), ("2022-01-02", "New Year's Day"), - ("2022-01-03", "New Year's Day (Observed)"), + ("2022-01-03", "New Year's Day (observed)"), ("2022-01-07", "Orthodox Christmas Day"), ("2022-02-15", "Statehood Day"), ("2022-02-16", "Statehood Day"), @@ -105,6 +105,6 @@ def test_l10n_en_us(self): ("2022-04-25", "Easter Monday"), ("2022-05-01", "International Workers' Day"), ("2022-05-02", "International Workers' Day"), - ("2022-05-03", "International Workers' Day (Observed)"), + ("2022-05-03", "International Workers' Day (observed)"), ("2022-11-11", "Armistice Day"), ) diff --git a/tests/countries/test_singapore.py b/tests/countries/test_singapore.py index 89244ec63..aa803a6f9 100644 --- a/tests/countries/test_singapore.py +++ b/tests/countries/test_singapore.py @@ -77,13 +77,13 @@ def test_2019(self): ("2019-04-19", "Good Friday"), ("2019-05-01", "Labour Day"), ("2019-05-19", "Vesak Day"), - ("2019-05-20", "Vesak Day (Observed)"), + ("2019-05-20", "Vesak Day (observed)"), ("2019-06-05", "Hari Raya Puasa"), ("2019-08-09", "National Day"), ("2019-08-11", "Hari Raya Haji"), - ("2019-08-12", "Hari Raya Haji (Observed)"), + ("2019-08-12", "Hari Raya Haji (observed)"), ("2019-10-27", "Deepavali"), - ("2019-10-28", "Deepavali (Observed)"), + ("2019-10-28", "Deepavali (observed)"), ("2019-12-25", "Christmas Day"), ) @@ -92,16 +92,16 @@ def test_2020(self): ("2020-01-01", "New Year's Day"), ("2020-01-25", "Chinese New Year"), ("2020-01-26", "Chinese New Year"), - ("2020-01-27", "Chinese New Year (Observed)"), + ("2020-01-27", "Chinese New Year (observed)"), ("2020-04-10", "Good Friday"), ("2020-05-01", "Labour Day"), ("2020-05-07", "Vesak Day"), ("2020-05-24", "Hari Raya Puasa"), - ("2020-05-25", "Hari Raya Puasa (Observed)"), + ("2020-05-25", "Hari Raya Puasa (observed)"), ("2020-07-10", "Polling Day"), ("2020-07-31", "Hari Raya Haji"), ("2020-08-09", "National Day"), - ("2020-08-10", "National Day (Observed)"), + ("2020-08-10", "National Day (observed)"), ("2020-11-14", "Deepavali"), ("2020-12-25", "Christmas Day"), ) @@ -128,25 +128,25 @@ def test_2022(self): ("2022-02-02", "Chinese New Year"), ("2022-04-15", "Good Friday"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Labour Day (Observed)"), + ("2022-05-02", "Labour Day (observed)"), ("2022-05-03", "Hari Raya Puasa"), ("2022-05-15", "Vesak Day"), - ("2022-05-16", "Vesak Day (Observed)"), + ("2022-05-16", "Vesak Day (observed)"), ("2022-07-10", "Hari Raya Haji"), - ("2022-07-11", "Hari Raya Haji (Observed)"), + ("2022-07-11", "Hari Raya Haji (observed)"), ("2022-08-09", "National Day"), ("2022-10-24", "Deepavali"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed)"), + ("2022-12-26", "Christmas Day (observed)"), ) def test_2023(self): self.assertHolidays( ("2023-01-01", "New Year's Day"), - ("2023-01-02", "New Year's Day (Observed)"), + ("2023-01-02", "New Year's Day (observed)"), ("2023-01-22", "Chinese New Year"), ("2023-01-23", "Chinese New Year"), - ("2023-01-24", "Chinese New Year (Observed)"), + ("2023-01-24", "Chinese New Year (observed)"), ("2023-04-07", "Good Friday"), ("2023-04-22", "Hari Raya Puasa"), ("2023-05-01", "Labour Day"), @@ -155,7 +155,7 @@ def test_2023(self): ("2023-08-09", "National Day"), ("2023-09-01", "Polling Day"), ("2023-11-12", "Deepavali"), - ("2023-11-13", "Deepavali (Observed)"), + ("2023-11-13", "Deepavali (observed)"), ("2023-12-25", "Christmas Day"), ) @@ -164,7 +164,7 @@ def test_2024(self): ("2024-01-01", "New Year's Day"), ("2024-02-10", "Chinese New Year"), ("2024-02-11", "Chinese New Year"), - ("2024-02-12", "Chinese New Year (Observed)"), + ("2024-02-12", "Chinese New Year (observed)"), ("2024-03-29", "Good Friday"), ("2024-04-10", "Hari Raya Puasa"), ("2024-05-01", "Labour Day"), diff --git a/tests/countries/test_taiwan.py b/tests/countries/test_taiwan.py index 435fc2bd1..0a9f4ad24 100644 --- a/tests/countries/test_taiwan.py +++ b/tests/countries/test_taiwan.py @@ -260,7 +260,7 @@ def test_l10n_en_us(self): ("2022-04-04", "Children's Day"), ("2022-04-05", "Tomb Sweeping Day"), ("2022-06-03", "Dragon Boat Festival"), - ("2022-09-09", "Mid-Autumn Festival (Observed)"), + ("2022-09-09", "Mid-Autumn Festival (observed)"), ("2022-09-10", "Mid-Autumn Festival"), ("2022-10-10", "National Day"), ) diff --git a/tests/countries/test_tonga.py b/tests/countries/test_tonga.py index b94f331b8..fe78e9631 100644 --- a/tests/countries/test_tonga.py +++ b/tests/countries/test_tonga.py @@ -135,11 +135,11 @@ def test_2017(self): ("2017-04-14", "Falaite Lelei"), ("2017-04-17", "Monite 'o e Toetu'u"), ("2017-04-25", "'Aho Anzac"), - ("2017-06-05", "'Aho Tau'ataina (Fakatokanga'i)"), + ("2017-06-05", "'Aho Tau'ataina (fakatokanga'i)"), ("2017-07-04", "'Aho 'Alo'i 'o 'Ene 'Afio ko e Tu'i 'o Tonga 'oku lolotonga Pule"), ("2017-09-17", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga"), - ("2017-09-18", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga (Fakatokanga'i)"), - ("2017-11-06", "'Aho Konisitutone (Fakatokanga'i)"), + ("2017-09-18", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga (fakatokanga'i)"), + ("2017-11-06", "'Aho Konisitutone (fakatokanga'i)"), ("2017-11-29", "'Aho malolo 'akapulu 'a Tonga"), ( "2017-12-04", @@ -160,12 +160,12 @@ def test_2018(self): ("2018-06-04", "'Aho Tau'ataina"), ("2018-07-04", "'Aho 'Alo'i 'o 'Ene 'Afio ko e Tu'i 'o Tonga 'oku lolotonga Pule"), ("2018-09-17", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga"), - ("2018-11-05", "'Aho Konisitutone (Fakatokanga'i)"), + ("2018-11-05", "'Aho Konisitutone (fakatokanga'i)"), ( "2018-12-03", ( "'Aho Fakamanatu 'o e Hilifaki Kalauni 'o 'Ene 'Afio ko " - "Siaosi Tupou I (Fakatokanga'i)" + "Siaosi Tupou I (fakatokanga'i)" ), ), ("2018-12-25", "'Aho Kilisimasi"), @@ -180,7 +180,7 @@ def test_2019(self): ("2019-04-19", "Falaite Lelei"), ("2019-04-22", "Monite 'o e Toetu'u"), ("2019-04-25", "'Aho Anzac"), - ("2019-06-03", "'Aho Tau'ataina (Fakatokanga'i)"), + ("2019-06-03", "'Aho Tau'ataina (fakatokanga'i)"), ("2019-07-04", "'Aho 'Alo'i 'o 'Ene 'Afio ko e Tu'i 'o Tonga 'oku lolotonga Pule"), ("2019-09-17", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga"), ("2019-09-19", "Me'afaka'eiki 'o e Siteiti 'Akilisi Pohiva"), @@ -190,7 +190,7 @@ def test_2019(self): "2019-12-02", ( "'Aho Fakamanatu 'o e Hilifaki Kalauni 'o 'Ene 'Afio ko " - "Siaosi Tupou I (Fakatokanga'i)" + "Siaosi Tupou I (fakatokanga'i)" ), ), ("2019-12-25", "'Aho Kilisimasi"), @@ -205,15 +205,15 @@ def test_2020(self): ("2020-04-10", "Falaite Lelei"), ("2020-04-13", "Monite 'o e Toetu'u"), ("2020-04-25", "'Aho Anzac"), - ("2020-06-08", "'Aho Tau'ataina (Fakatokanga'i)"), + ("2020-06-08", "'Aho Tau'ataina (fakatokanga'i)"), ("2020-07-04", "'Aho 'Alo'i 'o 'Ene 'Afio ko e Tu'i 'o Tonga 'oku lolotonga Pule"), ("2020-09-17", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga"), - ("2020-11-02", "'Aho Konisitutone (Fakatokanga'i)"), + ("2020-11-02", "'Aho Konisitutone (fakatokanga'i)"), ( "2020-12-07", ( "'Aho Fakamanatu 'o e Hilifaki Kalauni 'o 'Ene 'Afio ko " - "Siaosi Tupou I (Fakatokanga'i)" + "Siaosi Tupou I (fakatokanga'i)" ), ), ("2020-12-25", "'Aho Kilisimasi"), @@ -228,27 +228,27 @@ def test_2021(self): ("2021-04-02", "Falaite Lelei"), ("2021-04-05", "Monite 'o e Toetu'u"), ("2021-04-25", "'Aho Anzac"), - ("2021-06-07", "'Aho Tau'ataina (Fakatokanga'i)"), + ("2021-06-07", "'Aho Tau'ataina (fakatokanga'i)"), ("2021-07-04", "'Aho 'Alo'i 'o 'Ene 'Afio ko e Tu'i 'o Tonga 'oku lolotonga Pule"), ( "2021-07-05", ( "'Aho 'Alo'i 'o 'Ene 'Afio ko e Tu'i 'o Tonga 'oku " - "lolotonga Pule (Fakatokanga'i)" + "lolotonga Pule (fakatokanga'i)" ), ), ("2021-09-17", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga"), - ("2021-11-08", "'Aho Konisitutone (Fakatokanga'i)"), + ("2021-11-08", "'Aho Konisitutone (fakatokanga'i)"), ( "2021-12-06", ( "'Aho Fakamanatu 'o e Hilifaki Kalauni 'o 'Ene 'Afio ko " - "Siaosi Tupou I (Fakatokanga'i)" + "Siaosi Tupou I (fakatokanga'i)" ), ), ("2021-12-25", "'Aho Kilisimasi"), ("2021-12-26", "'Aho 2 'o e Kilisimasi"), - ("2021-12-27", "'Aho 2 'o e Kilisimasi (Fakatokanga'i)"), # ??? + ("2021-12-27", "'Aho 2 'o e Kilisimasi (fakatokanga'i)"), # ??? ) def test_2022(self): @@ -259,15 +259,15 @@ def test_2022(self): ("2022-04-15", "Falaite Lelei"), ("2022-04-18", "Monite 'o e Toetu'u"), ("2022-04-25", "'Aho Anzac"), - ("2022-06-06", "'Aho Tau'ataina (Fakatokanga'i)"), + ("2022-06-06", "'Aho Tau'ataina (fakatokanga'i)"), ("2022-07-04", "'Aho 'Alo'i 'o 'Ene 'Afio ko e Tu'i 'o Tonga 'oku lolotonga Pule"), ("2022-09-17", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga"), - ("2022-11-07", "'Aho Konisitutone (Fakatokanga'i)"), + ("2022-11-07", "'Aho Konisitutone (fakatokanga'i)"), ( "2022-12-05", ( "'Aho Fakamanatu 'o e Hilifaki Kalauni 'o 'Ene 'Afio ko " - "Siaosi Tupou I (Fakatokanga'i)" + "Siaosi Tupou I (fakatokanga'i)" ), ), ("2022-12-25", "'Aho Kilisimasi"), @@ -282,7 +282,7 @@ def test_2024(self): ("2024-03-29", "Falaite Lelei"), ("2024-04-01", "Monite 'o e Toetu'u"), ("2024-04-25", "'Aho Anzac"), - ("2024-06-03", "'Aho Tau'ataina (Fakatokanga'i)"), + ("2024-06-03", "'Aho Tau'ataina (fakatokanga'i)"), ("2024-07-04", "'Aho 'Alo'i 'o 'Ene 'Afio ko e Tu'i 'o Tonga 'oku lolotonga Pule"), ("2024-09-17", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga"), ("2024-11-04", "'Aho Konisitutone"), @@ -290,7 +290,7 @@ def test_2024(self): "2024-12-02", ( "'Aho Fakamanatu 'o e Hilifaki Kalauni 'o 'Ene 'Afio ko " - "Siaosi Tupou I (Fakatokanga'i)" + "Siaosi Tupou I (fakatokanga'i)" ), ), ("2024-12-25", "'Aho Kilisimasi"), @@ -304,11 +304,11 @@ def test_l10n_default(self): ("2023-04-07", "Falaite Lelei"), ("2023-04-10", "Monite 'o e Toetu'u"), ("2023-04-25", "'Aho Anzac"), - ("2023-06-05", "'Aho Tau'ataina (Fakatokanga'i)"), + ("2023-06-05", "'Aho Tau'ataina (fakatokanga'i)"), ("2023-07-04", "'Aho 'Alo'i 'o 'Ene 'Afio ko e Tu'i 'o Tonga 'oku lolotonga Pule"), ("2023-09-17", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga"), - ("2023-09-18", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga (Fakatokanga'i)"), - ("2023-11-06", "'Aho Konisitutone (Fakatokanga'i)"), + ("2023-09-18", "'Aho 'Alo'i 'o e 'Ea ki he Kalauni 'o Tonga (fakatokanga'i)"), + ("2023-11-06", "'Aho Konisitutone (fakatokanga'i)"), ( "2023-12-04", "'Aho Fakamanatu 'o e Hilifaki Kalauni 'o 'Ene 'Afio ko Siaosi Tupou I", @@ -324,11 +324,11 @@ def test_l10n_en_us(self): ("2023-04-07", "Good Friday"), ("2023-04-10", "Easter Monday"), ("2023-04-25", "Anzac Day"), - ("2023-06-05", "Emancipation Day (Observed)"), + ("2023-06-05", "Emancipation Day (observed)"), ("2023-07-04", "Birthday of the Reigning Sovereign of Tonga"), ("2023-09-17", "Birthday of the Heir to the Crown of Tonga"), - ("2023-09-18", "Birthday of the Heir to the Crown of Tonga (Observed)"), - ("2023-11-06", "Constitution Day (Observed)"), + ("2023-09-18", "Birthday of the Heir to the Crown of Tonga (observed)"), + ("2023-11-06", "Constitution Day (observed)"), ("2023-12-04", "Anniversary of the Coronation of HM King George Tupou I"), ("2023-12-25", "Christmas Day"), ("2023-12-26", "Boxing Day"), diff --git a/tests/countries/test_ukraine.py b/tests/countries/test_ukraine.py index c56be0e74..d52579e33 100644 --- a/tests/countries/test_ukraine.py +++ b/tests/countries/test_ukraine.py @@ -481,19 +481,19 @@ def test_l10n_en_us(self): ("2021-03-08", "International Women's Day"), ("2021-05-01", "Labor Day"), ("2021-05-02", "Easter Sunday (Pascha)"), - ("2021-05-03", "Labor Day (Observed)"), - ("2021-05-04", "Easter Sunday (Pascha) (Observed)"), + ("2021-05-03", "Labor Day (observed)"), + ("2021-05-04", "Easter Sunday (Pascha) (observed)"), ("2021-05-09", "Day of Victory over Nazism in World War II (Victory Day)"), - ("2021-05-10", "Day of Victory over Nazism in World War II (Victory Day) (Observed)"), + ("2021-05-10", "Day of Victory over Nazism in World War II (Victory Day) (observed)"), ("2021-06-20", "Holy Trinity Day"), - ("2021-06-21", "Holy Trinity Day (Observed)"), + ("2021-06-21", "Holy Trinity Day (observed)"), ("2021-06-28", "Day of the Constitution of Ukraine"), ("2021-08-23", "Day off (substituted from 08/28/2021)"), ("2021-08-24", "Independence Day"), ("2021-10-14", "Day of defenders of Ukraine"), ("2021-10-15", "Day off (substituted from 10/23/2021)"), ("2021-12-25", "Christmas (Gregorian calendar)"), - ("2021-12-27", "Christmas (Gregorian calendar) (Observed)"), + ("2021-12-27", "Christmas (Gregorian calendar) (observed)"), ) def test_l10n_ar(self): diff --git a/tests/countries/test_united_kingdom.py b/tests/countries/test_united_kingdom.py index e08a5709b..ff0c6fd53 100644 --- a/tests/countries/test_united_kingdom.py +++ b/tests/countries/test_united_kingdom.py @@ -65,7 +65,7 @@ def test_new_years(self): "2022-01-03", "2023-01-02", ) - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_new_year_scotland(self): @@ -100,11 +100,11 @@ def test_new_year_scotland(self): self.assertHolidayName( name_new_year, holidays, (f"{year}-01-01" for year in range(1950, 2050)) ) - self.assertHolidayName(f"{name_new_year} (Observed)", holidays, ny_obs_dt) + self.assertHolidayName(f"{name_new_year} (observed)", holidays, ny_obs_dt) self.assertHolidayName( name_new_year_holiday, holidays, (f"{year}-01-02" for year in range(1950, 2050)) ) - self.assertHolidayName(f"{name_new_year_holiday} (Observed)", holidays, nyh_obs_dt) + self.assertHolidayName(f"{name_new_year_holiday} (observed)", holidays, nyh_obs_dt) self.assertNoNonObservedHoliday( UnitedKingdom(subdiv=subdiv, observed=False), nyh_obs_dt ) @@ -136,7 +136,7 @@ def test_st_patricks_day(self): self.assertHolidayName( name, self.subdiv_holidays[subdiv], (f"{year}-03-17" for year in range(1950, 2050)) ) - self.assertHolidayName(f"{name} (Observed)", self.subdiv_holidays[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.subdiv_holidays[subdiv], obs_dt) self.assertNoNonObservedHoliday(UnitedKingdom(subdiv=subdiv, observed=False), obs_dt) self.assertNoHolidayName(name, UnitedKingdom(subdiv=subdiv, years=1902)) @@ -235,7 +235,7 @@ def test_battle_of_the_boyne_day(self): self.assertHolidayName( name, self.subdiv_holidays[subdiv], (f"{year}-07-12" for year in range(1950, 2050)) ) - self.assertHolidayName(f"{name} (Observed)", self.subdiv_holidays[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.subdiv_holidays[subdiv], obs_dt) self.assertNoNonObservedHoliday(UnitedKingdom(subdiv=subdiv, observed=False), obs_dt) for subdiv in ("ENG", "SCT", "WLS", "England", "Scotland", "Wales"): @@ -331,7 +331,7 @@ def test_st_andrews_day(self): self.subdiv_holidays[subdiv], (f"{year}-11-30" for year in range(1950, 2006)) ) self.assertNoHolidayName(name, self.subdiv_holidays[subdiv], range(1950, 2006)) - self.assertHolidayName(f"{name} (Observed)", self.subdiv_holidays[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.subdiv_holidays[subdiv], obs_dt) self.assertNoNonObservedHoliday(UnitedKingdom(subdiv=subdiv, observed=False), obs_dt) for subdiv in ( @@ -361,7 +361,7 @@ def test_christmas_day(self): "2021-12-27", "2022-12-27", ) - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_christmas_day_scotland(self): @@ -371,8 +371,8 @@ def test_christmas_day_scotland(self): "1960-12-26", "1966-12-26", ) - self.assertHolidayName(f"{name} (Observed)", self.subdiv_holidays["SCT"], obs_dt) - self.assertNoHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", self.subdiv_holidays["SCT"], obs_dt) + self.assertNoHolidayName(f"{name} (observed)", obs_dt) def test_boxing_day(self): name = "Boxing Day" @@ -385,7 +385,7 @@ def test_boxing_day(self): "2020-12-28", "2021-12-28", ) - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_boxing_day_scotland(self): diff --git a/tests/countries/test_united_states.py b/tests/countries/test_united_states.py index 43bece7be..ed3d51639 100644 --- a/tests/countries/test_united_states.py +++ b/tests/countries/test_united_states.py @@ -44,7 +44,7 @@ def test_new_years(self): "2021-12-31", "2023-01-02", ) - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_memorial_day(self): @@ -83,7 +83,7 @@ def test_juneteenth_day(self): "2027-06-18", "2032-06-18", ) - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_independence_day(self): @@ -99,7 +99,7 @@ def test_independence_day(self): "2020-07-03", "2021-07-05", ) - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_labor_day(self): @@ -151,7 +151,7 @@ def test_veterans_day(self): "2018-11-12", "2023-11-10", ) - self.assertHolidayName(f"{name_2} (Observed)", obs_dt) + self.assertHolidayName(f"{name_2} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_thanksgiving_day(self): @@ -190,7 +190,7 @@ def test_christmas_day(self): "2021-12-24", "2022-12-26", ) - self.assertHolidayName(f"{name} (Observed)", obs_dt) + self.assertHolidayName(f"{name} (observed)", obs_dt) self.assertNoNonObservedHoliday(obs_dt) def test_martin_luther_king_day(self): @@ -686,9 +686,9 @@ def test_inauguration_day(self): self.assertHolidayName(name, UnitedStates(subdiv=subdiv), "1789-03-04") self.assertNoHolidayName(name, UnitedStates(subdiv=subdiv), "1788-03-04") self.assertNoHolidayName(name, self.state_hols[subdiv], years_no) - self.assertHolidayName(f"{name} (Observed)", self.state_hols[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols[subdiv], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv=subdiv, observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv=subdiv, observed=False), obs_dt ) def test_lincolns_birthday(self): @@ -705,9 +705,9 @@ def test_lincolns_birthday(self): self.assertHolidayName( name, self.state_hols[subdiv], (f"{year}-02-12" for year in range(1971, 2050)) ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols[subdiv], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv=subdiv, observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv=subdiv, observed=False), obs_dt ) obs_dt = ( "1994-02-11", @@ -719,9 +719,9 @@ def test_lincolns_birthday(self): self.assertHolidayName( name, self.state_hols["CA"], (f"{year}-02-12" for year in range(1971, 2010)) ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["CA"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["CA"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="CA", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="CA", observed=False), obs_dt ) def test_susan_b_anthony_day(self): @@ -852,9 +852,9 @@ def test_evacuation_day(self): "2018-03-19", "2019-03-18", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["MA"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["MA"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="MA", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="MA", observed=False), obs_dt ) def test_emancipation_day_in_puerto_rico(self): @@ -869,9 +869,9 @@ def test_emancipation_day_in_puerto_rico(self): "2015-03-23", "2020-03-23", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["PR"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["PR"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="PR", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="PR", observed=False), obs_dt ) def test_commonwealth_covenant_day(self): @@ -886,9 +886,9 @@ def test_commonwealth_covenant_day(self): "2018-03-23", "2019-03-25", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["MP"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["MP"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="MP", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="MP", observed=False), obs_dt ) def test_prince_jonah_kuhio_kalanianaole_day(self): @@ -905,9 +905,9 @@ def test_prince_jonah_kuhio_kalanianaole_day(self): "2022-03-25", "2023-03-27", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["HI"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["HI"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="HI", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="HI", observed=False), obs_dt ) def test_sewards_day(self): @@ -949,9 +949,9 @@ def test_cesar_chavez_day(self): "2013-04-01", "2019-04-01", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["CA"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["CA"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="CA", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="CA", observed=False), obs_dt ) self.assertHolidayName( name, self.state_hols["CO"], (f"{year}-03-31" for year in range(2001, 2050)) @@ -983,9 +983,9 @@ def test_emancipation_day(self): "2022-04-15", "2023-04-17", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["DC"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["DC"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="DC", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="DC", observed=False), obs_dt ) def test_patriots_day(self): @@ -1229,9 +1229,9 @@ def test_truman_day(self): "2021-05-07", "2022-05-09", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["MO"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["MO"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="MO", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="MO", observed=False), obs_dt ) def test_jefferson_davis_birthday(self): @@ -1271,11 +1271,11 @@ def test_kamehameha_day(self): "2022-06-10", "2023-06-12", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["HI"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["HI"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="HI", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="HI", observed=False), obs_dt ) - self.assertNoHolidayName(f"{name} (Observed)", self.state_hols["HI"], range(1872, 2011)) + self.assertNoHolidayName(f"{name} (observed)", self.state_hols["HI"], range(1872, 2011)) def test_emancipation_day_in_texas(self): name = "Emancipation Day In Texas" @@ -1298,9 +1298,9 @@ def test_west_virginia_day(self): "2020-06-19", "2021-06-21", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["WV"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["WV"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="WV", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="WV", observed=False), obs_dt ) def test_emancipation_day_in_virgin_islands(self): @@ -1332,9 +1332,9 @@ def test_pioneer_day(self): "2021-07-23", "2022-07-25", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["UT"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["UT"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="UT", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="UT", observed=False), obs_dt ) def test_constitution_day(self): @@ -1349,9 +1349,9 @@ def test_constitution_day(self): "2010-07-26", "2021-07-26", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["PR"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["PR"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="PR", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="PR", observed=False), obs_dt ) def test_victory_day(self): @@ -1413,9 +1413,9 @@ def test_bennington_battle_day(self): "2015-08-17", "2020-08-17", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["VT"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["VT"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="VT", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="VT", observed=False), obs_dt ) def test_lyndon_baines_johnson_day(self): @@ -1460,9 +1460,9 @@ def test_alaska_day(self): "2015-10-19", "2020-10-19", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["AK"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["AK"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="AK", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="AK", observed=False), obs_dt ) def test_nevada_day(self): @@ -1497,9 +1497,9 @@ def test_nevada_day(self): "1998-10-30", "1999-11-01", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["NV"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["NV"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="NV", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="NV", observed=False), obs_dt ) def test_liberty_day(self): @@ -1565,9 +1565,9 @@ def test_citizenship_day(self): "2018-11-05", "2023-11-03", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["MP"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["MP"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="MP", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="MP", observed=False), obs_dt ) def test_discovery_day(self): @@ -1582,9 +1582,9 @@ def test_discovery_day(self): "2017-11-20", "2023-11-20", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["PR"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["PR"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="PR", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="PR", observed=False), obs_dt ) def test_after_thanksgiving_day(self): @@ -1680,9 +1680,9 @@ def test_constitution_day_mp(self): "2018-12-07", "2019-12-09", ) - self.assertHolidayName(f"{name} (Observed)", self.state_hols["MP"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["MP"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="MP", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="MP", observed=False), obs_dt ) def test_christmas_eve(self): @@ -1710,9 +1710,9 @@ def test_christmas_eve(self): ) if start_year > 0: self.assertNoHolidayName(name, self.state_hols[subdiv], range(1865, start_year)) - self.assertHolidayName(f"{name} (Observed)", self.state_hols[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols[subdiv], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv=subdiv, observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv=subdiv, observed=False), obs_dt ) def test_day_after_christmas(self): @@ -1737,9 +1737,9 @@ def test_day_after_christmas(self): "2022-12-27", ) name = "Day After Christmas" - self.assertHolidayName(f"{name} (Observed)", self.state_hols["NC"], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols["NC"], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv="NC", observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv="NC", observed=False), obs_dt ) def test_new_years_eve(self): @@ -1761,7 +1761,7 @@ def test_new_years_eve(self): ) if start_year > 0: self.assertNoHolidayName(name, self.state_hols[subdiv], range(1865, start_year)) - self.assertHolidayName(f"{name} (Observed)", self.state_hols[subdiv], obs_dt) + self.assertHolidayName(f"{name} (observed)", self.state_hols[subdiv], obs_dt) self.assertNoNonObservedHolidayName( - f"{name} (Observed)", UnitedStates(subdiv=subdiv, observed=False), obs_dt + f"{name} (observed)", UnitedStates(subdiv=subdiv, observed=False), obs_dt ) diff --git a/tests/countries/test_vanuatu.py b/tests/countries/test_vanuatu.py index b13377e91..4a1704e4d 100644 --- a/tests/countries/test_vanuatu.py +++ b/tests/countries/test_vanuatu.py @@ -43,7 +43,7 @@ def test_new_years_day(self): "2017-01-02", "2023-01-02", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_father_lini_day(self): @@ -56,7 +56,7 @@ def test_father_lini_day(self): "2016-02-22", "2021-02-22", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_custom_chiefs_day(self): @@ -68,7 +68,7 @@ def test_custom_chiefs_day(self): "2017-03-06", "2023-03-06", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_good_friday(self): @@ -106,7 +106,7 @@ def test_labour_day(self): "2016-05-02", "2022-05-02", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_ascension_day(self): @@ -131,7 +131,7 @@ def test_childrens_day(self): "2016-07-25", "2022-07-25", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_independence_day(self): @@ -143,7 +143,7 @@ def test_independence_day(self): "2017-07-31", "2023-07-31", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_assumption_day(self): @@ -154,7 +154,7 @@ def test_assumption_day(self): "2010-08-16", "2021-08-16", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_constitution_day(self): @@ -165,7 +165,7 @@ def test_constitution_day(self): "2008-10-06", "2014-10-06", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_unity_day(self): @@ -176,7 +176,7 @@ def test_unity_day(self): "2015-11-30", "2020-11-30", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_christmas_day(self): @@ -194,7 +194,7 @@ def test_family_day(self): "2021-12-27", "2022-12-27", ) - self.assertHolidayName(f"{name} (Observed)", dt) + self.assertHolidayName(f"{name} (observed)", dt) self.assertNoNonObservedHoliday(dt) def test_2022(self): @@ -206,10 +206,10 @@ def test_2022(self): ("2022-04-15", "Good Friday"), ("2022-04-18", "Easter Monday"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Labour Day (Observed)"), + ("2022-05-02", "Labour Day (observed)"), ("2022-05-26", "Ascension Day"), ("2022-07-24", "Children's Day"), - ("2022-07-25", "Children's Day (Observed)"), + ("2022-07-25", "Children's Day (observed)"), ("2022-07-30", "Independence Day"), ("2022-08-15", "Assumption Day"), ("2022-10-05", "Constitution Day"), @@ -217,5 +217,5 @@ def test_2022(self): ("2022-11-29", "Unity Day"), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Family Day"), - ("2022-12-27", "Family Day (Observed)"), + ("2022-12-27", "Family Day (observed)"), ) diff --git a/tests/countries/test_zambia.py b/tests/countries/test_zambia.py index 897d1683f..23866c0bb 100644 --- a/tests/countries/test_zambia.py +++ b/tests/countries/test_zambia.py @@ -142,7 +142,7 @@ def test_2022(self): ("2022-04-18", "Easter Monday"), ("2022-04-28", "Kenneth Kaunda Day"), ("2022-05-01", "Labour Day"), - ("2022-05-02", "Labour Day (Observed)"), + ("2022-05-02", "Labour Day (observed)"), ("2022-05-25", "Africa Freedom Day"), ("2022-07-04", "Heroes' Day"), ("2022-07-05", "Unity Day"), @@ -150,5 +150,5 @@ def test_2022(self): ("2022-10-18", "National Prayer Day"), ("2022-10-24", "Independence Day"), ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Christmas Day (Observed)"), + ("2022-12-26", "Christmas Day (observed)"), ) diff --git a/tests/countries/test_zimbabwe.py b/tests/countries/test_zimbabwe.py index 87ac4c60e..1c558d735 100644 --- a/tests/countries/test_zimbabwe.py +++ b/tests/countries/test_zimbabwe.py @@ -124,12 +124,12 @@ def test_2022(self): ("2022-04-16", "Easter Saturday"), ("2022-04-18", "Easter Monday; Independence Day"), ("2022-05-01", "Workers' Day"), - ("2022-05-02", "Workers' Day (Observed)"), + ("2022-05-02", "Workers' Day (observed)"), ("2022-05-25", "Africa Day"), ("2022-08-08", "Zimbabwe Heroes' Day"), ("2022-08-09", "Defense Forces Day"), ("2022-12-22", "Unity Day"), ("2022-12-25", "Christmas Day"), ("2022-12-26", "Boxing Day"), - ("2022-12-27", "Christmas Day (Observed)"), + ("2022-12-27", "Christmas Day (observed)"), ) diff --git a/tests/financial/test_ny_stock_exchange.py b/tests/financial/test_ny_stock_exchange.py index ebdf862a1..50c031173 100644 --- a/tests/financial/test_ny_stock_exchange.py +++ b/tests/financial/test_ny_stock_exchange.py @@ -471,7 +471,7 @@ def _make_special_holiday_list(begin, end, days=None, weekends=False): def test_all_modern_holidays_present(self): self.assertHolidays( - ("2023-01-02", "New Year's Day (Observed)"), + ("2023-01-02", "New Year's Day (observed)"), ("2023-01-16", "Martin Luther King Jr. Day"), ("2023-02-20", "Washington's Birthday"), ("2023-04-07", "Good Friday"), diff --git a/tests/test_holiday_base.py b/tests/test_holiday_base.py index 2333dc7a9..7e5df8def 100644 --- a/tests/test_holiday_base.py +++ b/tests/test_holiday_base.py @@ -41,9 +41,9 @@ def _add_observed(self, dt: date, before: bool = True, after: bool = True) -> No return None if self._is_saturday(dt) and before: - self._add_holiday("%s (Observed)" % self[dt], dt + td(days=-1)) + self._add_holiday("%s (observed)" % self[dt], dt + td(days=-1)) elif self._is_sunday(dt) and after: - self._add_holiday("%s (Observed)" % self[dt], dt + td(days=+1)) + self._add_holiday("%s (observed)" % self[dt], dt + td(days=+1)) def _populate(self, year: int) -> None: super()._populate(year) @@ -51,7 +51,7 @@ def _populate(self, year: int) -> None: name = "New Year's Day" self._add_observed(self._add_holiday_jan_1(name), before=False) if self.observed and self._is_friday(DEC, 31): - self._add_holiday_dec_31("%s (Observed)" % name) + self._add_holiday_dec_31("%s (observed)" % name) self._add_observed(self._add_holiday_jun_19("Juneteenth National Independence Day")) self._add_observed(self._add_holiday_jul_4("Independence Day")) From 4ce51a215a4eb631ee359e9b4f976ef3e6fd354a Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Mon, 8 Jan 2024 18:31:12 +0200 Subject: [PATCH 16/23] Update Cyprus holidays (#1632) --- README.rst | 4 +- holidays/countries/cyprus.py | 59 +- holidays/locale/el/LC_MESSAGES/CY.po | 34 +- holidays/locale/en_CY/LC_MESSAGES/CY.po | 89 ++ holidays/locale/en_US/LC_MESSAGES/CY.po | 48 +- holidays/locale/uk/LC_MESSAGES/CY.po | 89 ++ snapshots/countries/CY_COMMON.json | 1100 +++++++++++------------ tests/countries/test_cyprus.py | 287 +++--- 8 files changed, 979 insertions(+), 731 deletions(-) create mode 100644 holidays/locale/en_CY/LC_MESSAGES/CY.po create mode 100644 holidays/locale/uk/LC_MESSAGES/CY.po diff --git a/README.rst b/README.rst index 84cd2a36f..8cdeb74da 100644 --- a/README.rst +++ b/README.rst @@ -361,8 +361,8 @@ All other default values are highlighted with bold: * - Cyprus - CY - - - **el**, en_US - - + - **el**, en_CY, en_US, uk + - BANK, OPTIONAL * - Czechia - CZ - diff --git a/holidays/countries/cyprus.py b/holidays/countries/cyprus.py index a1abc00e6..8022faafa 100644 --- a/holidays/countries/cyprus.py +++ b/holidays/countries/cyprus.py @@ -9,10 +9,11 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) - +from datetime import timedelta as td from gettext import gettext as tr from holidays.calendars.julian_revised import JULIAN_REVISED_CALENDAR +from holidays.constants import BANK, OPTIONAL, PUBLIC from holidays.groups import ChristianHolidays, InternationalHolidays from holidays.holiday_base import HolidayBase @@ -22,12 +23,14 @@ class Cyprus(HolidayBase, ChristianHolidays, InternationalHolidays): Cyprus holidays. References: - - https://en.wikipedia.org/wiki/Public_holidays_in_Cyprus + - https://en.wikipedia.org/wiki/Public_holidays_in_Cyprus + - https://www.centralbank.cy/en/the-bank/working-hours-bank-holidays """ country = "CY" default_language = "el" - supported_languages = ("el", "en_US") + supported_categories = (BANK, OPTIONAL, PUBLIC) + supported_languages = ("el", "en_CY", "en_US", "uk") def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self, JULIAN_REVISED_CALENDAR) @@ -35,20 +38,23 @@ def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) def _populate_public_holidays(self): - # New Years Day. + if self._year <= 1960: + return None + + # New Year's Day. self._add_new_years_day(tr("Πρωτοχρονιά")) # Epiphany. - self._add_epiphany_day(tr("Θεοφάνεια")) + self._add_epiphany_day(tr("Ημέρα των Θεοφανίων")) - # Clean Monday. + # Green Monday. self._add_ash_monday(tr("Καθαρά Δευτέρα")) # Greek Independence Day. - self._add_holiday_mar_25(tr("Εικοστή Πέμπτη Μαρτίου")) + self._add_holiday_mar_25(tr("Ημέρα της Ελληνικής Ανεξαρτησίας")) # Cyprus National Day. - self._add_holiday_apr_1(tr("1η Απριλίου")) + self._add_holiday_apr_1(tr("Εθνική Ημέρα Κύπρου")) # Good Friday. self._add_good_friday(tr("Μεγάλη Παρασκευή")) @@ -57,31 +63,46 @@ def _populate_public_holidays(self): self._add_easter_sunday(tr("Κυριακή του Πάσχα")) # Easter Monday. - self._add_easter_monday(tr("Δευτέρα του Πάσχα")) + self._add_easter_monday(tr("Δευτέρα της Διακαινησίμου")) - # Labour Day. - self._add_labor_day(tr("Εργατική Πρωτομαγιά")) + # Labor Day. + self._add_labor_day(tr("Πρωτομαγιά")) - # Monday of the Holy Spirit. + # Whit Monday. self._add_whit_monday(tr("Δευτέρα του Αγίου Πνεύματος")) - # Assumption of Mary. + # Assumption Day. self._add_assumption_of_mary_day(tr("Κοίμηση της Θεοτόκου")) - # Cyprus Independence Day. - self._add_holiday_oct_1(tr("Ημέρα Ανεξαρτησίας της Κύπρου")) + if self._year >= 1979: + # Cyprus Independence Day. + self._add_holiday_oct_1(tr("Ημέρα της Κυπριακής Ανεξαρτησίας")) # Ochi Day. self._add_holiday_oct_28(tr("Ημέρα του Όχι")) - # Christmas Eve. - self._add_christmas_eve(tr("Παραμονή Χριστουγέννων")) - # Christmas Day. self._add_christmas_day(tr("Χριστούγεννα")) # Day After Christmas. - self._add_christmas_day_two(tr("Δεύτερη μέρα Χριστουγέννων")) + self._add_christmas_day_two(tr("Επομένη Χριστουγέννων")) + + def _populate_bank_holidays(self): + if self._year <= 1960: + return None + + # Easter Tuesday. + self._add_holiday(tr("Τρίτη της Διακαινησίμου"), self._easter_sunday + td(days=+2)) + + def _populate_optional_holidays(self): + if self._year <= 1960: + return None + + # Holy Saturday. + self._add_holy_saturday(tr("Μεγάλο Σάββατο")) + + # Christmas Eve. + self._add_christmas_eve(tr("Παραμονή Χριστουγέννων")) class CY(Cyprus): diff --git a/holidays/locale/el/LC_MESSAGES/CY.po b/holidays/locale/el/LC_MESSAGES/CY.po index c9ae0ab41..bc1473a33 100644 --- a/holidays/locale/el/LC_MESSAGES/CY.po +++ b/holidays/locale/el/LC_MESSAGES/CY.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-02-15 11:50-0800\n" "PO-Revision-Date: 2023-02-16 08:50-0800\n" "Last-Translator: Arkadii Yakovets \n" @@ -15,24 +15,24 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.2.2\n" -#. New Years Day. +#. New Year's Day. msgid "Πρωτοχρονιά" msgstr "" #. Epiphany. -msgid "Θεοφάνεια" +msgid "Ημέρα των Θεοφανίων" msgstr "" -#. Clean Monday. +#. Green Monday. msgid "Καθαρά Δευτέρα" msgstr "" #. Greek Independence Day. -msgid "Εικοστή Πέμπτη Μαρτίου" +msgid "Ημέρα της Ελληνικής Ανεξαρτησίας" msgstr "" #. Cyprus National Day. -msgid "1η Απριλίου" +msgid "Εθνική Ημέρα Κύπρου" msgstr "" #. Good Friday. @@ -44,23 +44,23 @@ msgid "Κυριακή του Πάσχα" msgstr "" #. Easter Monday. -msgid "Δευτέρα του Πάσχα" +msgid "Δευτέρα της Διακαινησίμου" msgstr "" -#. Labour Day. -msgid "Εργατική Πρωτομαγιά" +#. Labor Day. +msgid "Πρωτομαγιά" msgstr "" -#. Monday of the Holy Spirit. +#. Whit Monday. msgid "Δευτέρα του Αγίου Πνεύματος" msgstr "" -#. Assumption of Mary. +#. Assumption Day. msgid "Κοίμηση της Θεοτόκου" msgstr "" #. Cyprus Independence Day. -msgid "Ημέρα Ανεξαρτησίας της Κύπρου" +msgid "Ημέρα της Κυπριακής Ανεξαρτησίας" msgstr "" #. Ochi Day. @@ -76,5 +76,13 @@ msgid "Χριστούγεννα" msgstr "" #. Day After Christmas. -msgid "Δεύτερη μέρα Χριστουγέννων" +msgid "Επομένη Χριστουγέννων" +msgstr "" + +#. Easter Tuesday. +msgid "Τρίτη της Διακαινησίμου" +msgstr "" + +#. Holy Saturday. +msgid "Μεγάλο Σάββατο" msgstr "" diff --git a/holidays/locale/en_CY/LC_MESSAGES/CY.po b/holidays/locale/en_CY/LC_MESSAGES/CY.po new file mode 100644 index 000000000..b39a1606a --- /dev/null +++ b/holidays/locale/en_CY/LC_MESSAGES/CY.po @@ -0,0 +1,89 @@ +# Cyprus holidays en_CY localization. +# Authors: ~Jhellico , (c) 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.41\n" +"POT-Creation-Date: 2023-02-15 11:50-0800\n" +"PO-Revision-Date: 2024-01-05 13:33+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Python Holidays localization team\n" +"Language: en_CY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Lingua 4.15.0\n" +"X-Generator: Poedit 3.4\n" + +#. New Year's Day. +msgid "Πρωτοχρονιά" +msgstr "New Year's Day" + +#. Epiphany. +msgid "Ημέρα των Θεοφανίων" +msgstr "Epiphany" + +#. Green Monday. +msgid "Καθαρά Δευτέρα" +msgstr "Green Monday" + +#. Greek Independence Day. +msgid "Ημέρα της Ελληνικής Ανεξαρτησίας" +msgstr "Greek Independence Day" + +#. Cyprus National Day. +msgid "Εθνική Ημέρα Κύπρου" +msgstr "Cyprus National Day" + +#. Good Friday. +msgid "Μεγάλη Παρασκευή" +msgstr "Good Friday" + +#. Easter Sunday. +msgid "Κυριακή του Πάσχα" +msgstr "Easter Sunday" + +#. Easter Monday. +msgid "Δευτέρα της Διακαινησίμου" +msgstr "Easter Monday" + +#. Labor Day. +msgid "Πρωτομαγιά" +msgstr "Labour Day" + +#. Whit Monday. +msgid "Δευτέρα του Αγίου Πνεύματος" +msgstr "Pentecost" + +#. Assumption Day. +msgid "Κοίμηση της Θεοτόκου" +msgstr "Assumption Day" + +#. Cyprus Independence Day. +msgid "Ημέρα της Κυπριακής Ανεξαρτησίας" +msgstr "Cyprus Independence Day" + +#. Ochi Day. +msgid "Ημέρα του Όχι" +msgstr "Ochi Day" + +#. Christmas Eve. +msgid "Παραμονή Χριστουγέννων" +msgstr "Christmas Eve" + +#. Christmas Day. +msgid "Χριστούγεννα" +msgstr "Christmas Day" + +#. Day After Christmas. +msgid "Επομένη Χριστουγέννων" +msgstr "Day After Christmas" + +#. Easter Tuesday. +msgid "Τρίτη της Διακαινησίμου" +msgstr "Easter Tuesday" + +#. Holy Saturday. +msgid "Μεγάλο Σάββατο" +msgstr "Holy Saturday" diff --git a/holidays/locale/en_US/LC_MESSAGES/CY.po b/holidays/locale/en_US/LC_MESSAGES/CY.po index 1024b617f..97adfd0af 100644 --- a/holidays/locale/en_US/LC_MESSAGES/CY.po +++ b/holidays/locale/en_US/LC_MESSAGES/CY.po @@ -3,10 +3,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.20\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-02-15 11:50-0800\n" -"PO-Revision-Date: 2023-02-15 11:58-0800\n" -"Last-Translator: Arkadii Yakovets \n" +"PO-Revision-Date: 2024-01-05 13:23+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: en_US\n" "MIME-Version: 1.0\n" @@ -14,26 +14,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.4\n" -#. New Years Day. +#. New Year's Day. msgid "Πρωτοχρονιά" msgstr "New Year's Day" #. Epiphany. -msgid "Θεοφάνεια" +msgid "Ημέρα των Θεοφανίων" msgstr "Epiphany" -#. Clean Monday. +#. Green Monday. msgid "Καθαρά Δευτέρα" -msgstr "Clean Monday" +msgstr "Green Monday" #. Greek Independence Day. -msgid "Εικοστή Πέμπτη Μαρτίου" +msgid "Ημέρα της Ελληνικής Ανεξαρτησίας" msgstr "Greek Independence Day" #. Cyprus National Day. -msgid "1η Απριλίου" +msgid "Εθνική Ημέρα Κύπρου" msgstr "Cyprus National Day" #. Good Friday. @@ -45,28 +45,28 @@ msgid "Κυριακή του Πάσχα" msgstr "Easter Sunday" #. Easter Monday. -msgid "Δευτέρα του Πάσχα" +msgid "Δευτέρα της Διακαινησίμου" msgstr "Easter Monday" -#. Labour Day. -msgid "Εργατική Πρωτομαγιά" +#. Labor Day. +msgid "Πρωτομαγιά" msgstr "Labor Day" -#. Monday of the Holy Spirit. +#. Whit Monday. msgid "Δευτέρα του Αγίου Πνεύματος" -msgstr "Monday of the Holy Spirit" +msgstr "Whit Monday" -#. Assumption of Mary. +#. Assumption Day. msgid "Κοίμηση της Θεοτόκου" -msgstr "Assumption of Mary" +msgstr "Assumption Day" #. Cyprus Independence Day. -msgid "Ημέρα Ανεξαρτησίας της Κύπρου" +msgid "Ημέρα της Κυπριακής Ανεξαρτησίας" msgstr "Cyprus Independence Day" #. Ochi Day. msgid "Ημέρα του Όχι" -msgstr "Ochi Day" +msgstr "Greek National Day" #. Christmas Eve. msgid "Παραμονή Χριστουγέννων" @@ -77,5 +77,13 @@ msgid "Χριστούγεννα" msgstr "Christmas Day" #. Day After Christmas. -msgid "Δεύτερη μέρα Χριστουγέννων" +msgid "Επομένη Χριστουγέννων" msgstr "Day After Christmas" + +#. Easter Tuesday. +msgid "Τρίτη της Διακαινησίμου" +msgstr "Easter Tuesday" + +#. Holy Saturday. +msgid "Μεγάλο Σάββατο" +msgstr "Holy Saturday" diff --git a/holidays/locale/uk/LC_MESSAGES/CY.po b/holidays/locale/uk/LC_MESSAGES/CY.po new file mode 100644 index 000000000..61df6c954 --- /dev/null +++ b/holidays/locale/uk/LC_MESSAGES/CY.po @@ -0,0 +1,89 @@ +# Cyprus holidays uk localization. +# Authors: ~Jhellico , (c) 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.41\n" +"POT-Creation-Date: 2023-02-15 11:50-0800\n" +"PO-Revision-Date: 2024-01-05 14:18+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Python Holidays localization team\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"Generated-By: Lingua 4.15.0\n" +"X-Generator: Poedit 3.4\n" + +#. New Year's Day. +msgid "Πρωτοχρονιά" +msgstr "Новий рік" + +#. Epiphany. +msgid "Ημέρα των Θεοφανίων" +msgstr "Богоявлення" + +#. Green Monday. +msgid "Καθαρά Δευτέρα" +msgstr "Чистий понеділок" + +#. Greek Independence Day. +msgid "Ημέρα της Ελληνικής Ανεξαρτησίας" +msgstr "День незалежності Греції" + +#. Cyprus National Day. +msgid "Εθνική Ημέρα Κύπρου" +msgstr "Національне свято Кіпру" + +#. Good Friday. +msgid "Μεγάλη Παρασκευή" +msgstr "Страсна пʼятниця" + +#. Easter Sunday. +msgid "Κυριακή του Πάσχα" +msgstr "Великдень" + +#. Easter Monday. +msgid "Δευτέρα της Διακαινησίμου" +msgstr "Великодній понеділок" + +#. Labor Day. +msgid "Πρωτομαγιά" +msgstr "День праці" + +#. Whit Monday. +msgid "Δευτέρα του Αγίου Πνεύματος" +msgstr "День Святого Духа" + +#. Assumption Day. +msgid "Κοίμηση της Θεοτόκου" +msgstr "Успіння Пресвятої Богородиці" + +#. Cyprus Independence Day. +msgid "Ημέρα της Κυπριακής Ανεξαρτησίας" +msgstr "День незалежності Кіпру" + +#. Ochi Day. +msgid "Ημέρα του Όχι" +msgstr "День Охі" + +#. Christmas Eve. +msgid "Παραμονή Χριστουγέννων" +msgstr "Святий вечір" + +#. Christmas Day. +msgid "Χριστούγεννα" +msgstr "Різдво Христове" + +#. Day After Christmas. +msgid "Επομένη Χριστουγέννων" +msgstr "Другий день Різдва" + +#. Easter Tuesday. +msgid "Τρίτη της Διακαινησίμου" +msgstr "Великодній вівторок" + +#. Holy Saturday. +msgid "Μεγάλο Σάββατο" +msgstr "Велика субота" diff --git a/snapshots/countries/CY_COMMON.json b/snapshots/countries/CY_COMMON.json index 932ce6baf..17d64cda1 100644 --- a/snapshots/countries/CY_COMMON.json +++ b/snapshots/countries/CY_COMMON.json @@ -1,1607 +1,1587 @@ { - "1950-01-01": "New Year's Day", - "1950-01-06": "Epiphany", - "1950-02-20": "Clean Monday", - "1950-03-25": "Greek Independence Day", - "1950-04-01": "Cyprus National Day", - "1950-04-07": "Good Friday", - "1950-04-09": "Easter Sunday", - "1950-04-10": "Easter Monday", - "1950-05-01": "Labor Day", - "1950-05-29": "Monday of the Holy Spirit", - "1950-08-15": "Assumption of Mary", - "1950-10-01": "Cyprus Independence Day", - "1950-10-28": "Ochi Day", - "1950-12-24": "Christmas Eve", - "1950-12-25": "Christmas Day", - "1950-12-26": "Day After Christmas", - "1951-01-01": "New Year's Day", - "1951-01-06": "Epiphany", - "1951-03-12": "Clean Monday", - "1951-03-25": "Greek Independence Day", - "1951-04-01": "Cyprus National Day", - "1951-04-27": "Good Friday", - "1951-04-29": "Easter Sunday", - "1951-04-30": "Easter Monday", - "1951-05-01": "Labor Day", - "1951-06-18": "Monday of the Holy Spirit", - "1951-08-15": "Assumption of Mary", - "1951-10-01": "Cyprus Independence Day", - "1951-10-28": "Ochi Day", - "1951-12-24": "Christmas Eve", - "1951-12-25": "Christmas Day", - "1951-12-26": "Day After Christmas", - "1952-01-01": "New Year's Day", - "1952-01-06": "Epiphany", - "1952-03-03": "Clean Monday", - "1952-03-25": "Greek Independence Day", - "1952-04-01": "Cyprus National Day", - "1952-04-18": "Good Friday", - "1952-04-20": "Easter Sunday", - "1952-04-21": "Easter Monday", - "1952-05-01": "Labor Day", - "1952-06-09": "Monday of the Holy Spirit", - "1952-08-15": "Assumption of Mary", - "1952-10-01": "Cyprus Independence Day", - "1952-10-28": "Ochi Day", - "1952-12-24": "Christmas Eve", - "1952-12-25": "Christmas Day", - "1952-12-26": "Day After Christmas", - "1953-01-01": "New Year's Day", - "1953-01-06": "Epiphany", - "1953-02-16": "Clean Monday", - "1953-03-25": "Greek Independence Day", - "1953-04-01": "Cyprus National Day", - "1953-04-03": "Good Friday", - "1953-04-05": "Easter Sunday", - "1953-04-06": "Easter Monday", - "1953-05-01": "Labor Day", - "1953-05-25": "Monday of the Holy Spirit", - "1953-08-15": "Assumption of Mary", - "1953-10-01": "Cyprus Independence Day", - "1953-10-28": "Ochi Day", - "1953-12-24": "Christmas Eve", - "1953-12-25": "Christmas Day", - "1953-12-26": "Day After Christmas", - "1954-01-01": "New Year's Day", - "1954-01-06": "Epiphany", - "1954-03-08": "Clean Monday", - "1954-03-25": "Greek Independence Day", - "1954-04-01": "Cyprus National Day", - "1954-04-23": "Good Friday", - "1954-04-25": "Easter Sunday", - "1954-04-26": "Easter Monday", - "1954-05-01": "Labor Day", - "1954-06-14": "Monday of the Holy Spirit", - "1954-08-15": "Assumption of Mary", - "1954-10-01": "Cyprus Independence Day", - "1954-10-28": "Ochi Day", - "1954-12-24": "Christmas Eve", - "1954-12-25": "Christmas Day", - "1954-12-26": "Day After Christmas", - "1955-01-01": "New Year's Day", - "1955-01-06": "Epiphany", - "1955-02-28": "Clean Monday", - "1955-03-25": "Greek Independence Day", - "1955-04-01": "Cyprus National Day", - "1955-04-15": "Good Friday", - "1955-04-17": "Easter Sunday", - "1955-04-18": "Easter Monday", - "1955-05-01": "Labor Day", - "1955-06-06": "Monday of the Holy Spirit", - "1955-08-15": "Assumption of Mary", - "1955-10-01": "Cyprus Independence Day", - "1955-10-28": "Ochi Day", - "1955-12-24": "Christmas Eve", - "1955-12-25": "Christmas Day", - "1955-12-26": "Day After Christmas", - "1956-01-01": "New Year's Day", - "1956-01-06": "Epiphany", - "1956-03-19": "Clean Monday", - "1956-03-25": "Greek Independence Day", - "1956-04-01": "Cyprus National Day", - "1956-05-01": "Labor Day", - "1956-05-04": "Good Friday", - "1956-05-06": "Easter Sunday", - "1956-05-07": "Easter Monday", - "1956-06-25": "Monday of the Holy Spirit", - "1956-08-15": "Assumption of Mary", - "1956-10-01": "Cyprus Independence Day", - "1956-10-28": "Ochi Day", - "1956-12-24": "Christmas Eve", - "1956-12-25": "Christmas Day", - "1956-12-26": "Day After Christmas", - "1957-01-01": "New Year's Day", - "1957-01-06": "Epiphany", - "1957-03-04": "Clean Monday", - "1957-03-25": "Greek Independence Day", - "1957-04-01": "Cyprus National Day", - "1957-04-19": "Good Friday", - "1957-04-21": "Easter Sunday", - "1957-04-22": "Easter Monday", - "1957-05-01": "Labor Day", - "1957-06-10": "Monday of the Holy Spirit", - "1957-08-15": "Assumption of Mary", - "1957-10-01": "Cyprus Independence Day", - "1957-10-28": "Ochi Day", - "1957-12-24": "Christmas Eve", - "1957-12-25": "Christmas Day", - "1957-12-26": "Day After Christmas", - "1958-01-01": "New Year's Day", - "1958-01-06": "Epiphany", - "1958-02-24": "Clean Monday", - "1958-03-25": "Greek Independence Day", - "1958-04-01": "Cyprus National Day", - "1958-04-11": "Good Friday", - "1958-04-13": "Easter Sunday", - "1958-04-14": "Easter Monday", - "1958-05-01": "Labor Day", - "1958-06-02": "Monday of the Holy Spirit", - "1958-08-15": "Assumption of Mary", - "1958-10-01": "Cyprus Independence Day", - "1958-10-28": "Ochi Day", - "1958-12-24": "Christmas Eve", - "1958-12-25": "Christmas Day", - "1958-12-26": "Day After Christmas", - "1959-01-01": "New Year's Day", - "1959-01-06": "Epiphany", - "1959-03-16": "Clean Monday", - "1959-03-25": "Greek Independence Day", - "1959-04-01": "Cyprus National Day", - "1959-05-01": "Good Friday; Labor Day", - "1959-05-03": "Easter Sunday", - "1959-05-04": "Easter Monday", - "1959-06-22": "Monday of the Holy Spirit", - "1959-08-15": "Assumption of Mary", - "1959-10-01": "Cyprus Independence Day", - "1959-10-28": "Ochi Day", - "1959-12-24": "Christmas Eve", - "1959-12-25": "Christmas Day", - "1959-12-26": "Day After Christmas", - "1960-01-01": "New Year's Day", - "1960-01-06": "Epiphany", - "1960-02-29": "Clean Monday", - "1960-03-25": "Greek Independence Day", - "1960-04-01": "Cyprus National Day", - "1960-04-15": "Good Friday", - "1960-04-17": "Easter Sunday", - "1960-04-18": "Easter Monday", - "1960-05-01": "Labor Day", - "1960-06-06": "Monday of the Holy Spirit", - "1960-08-15": "Assumption of Mary", - "1960-10-01": "Cyprus Independence Day", - "1960-10-28": "Ochi Day", - "1960-12-24": "Christmas Eve", - "1960-12-25": "Christmas Day", - "1960-12-26": "Day After Christmas", "1961-01-01": "New Year's Day", "1961-01-06": "Epiphany", - "1961-02-20": "Clean Monday", + "1961-02-20": "Green Monday", "1961-03-25": "Greek Independence Day", "1961-04-01": "Cyprus National Day", "1961-04-07": "Good Friday", + "1961-04-08": "Holy Saturday", "1961-04-09": "Easter Sunday", "1961-04-10": "Easter Monday", + "1961-04-11": "Easter Tuesday", "1961-05-01": "Labor Day", - "1961-05-29": "Monday of the Holy Spirit", - "1961-08-15": "Assumption of Mary", - "1961-10-01": "Cyprus Independence Day", - "1961-10-28": "Ochi Day", + "1961-05-29": "Whit Monday", + "1961-08-15": "Assumption Day", + "1961-10-28": "Greek National Day", "1961-12-24": "Christmas Eve", "1961-12-25": "Christmas Day", "1961-12-26": "Day After Christmas", "1962-01-01": "New Year's Day", "1962-01-06": "Epiphany", - "1962-03-12": "Clean Monday", + "1962-03-12": "Green Monday", "1962-03-25": "Greek Independence Day", "1962-04-01": "Cyprus National Day", "1962-04-27": "Good Friday", + "1962-04-28": "Holy Saturday", "1962-04-29": "Easter Sunday", "1962-04-30": "Easter Monday", - "1962-05-01": "Labor Day", - "1962-06-18": "Monday of the Holy Spirit", - "1962-08-15": "Assumption of Mary", - "1962-10-01": "Cyprus Independence Day", - "1962-10-28": "Ochi Day", + "1962-05-01": "Easter Tuesday; Labor Day", + "1962-06-18": "Whit Monday", + "1962-08-15": "Assumption Day", + "1962-10-28": "Greek National Day", "1962-12-24": "Christmas Eve", "1962-12-25": "Christmas Day", "1962-12-26": "Day After Christmas", "1963-01-01": "New Year's Day", "1963-01-06": "Epiphany", - "1963-02-25": "Clean Monday", + "1963-02-25": "Green Monday", "1963-03-25": "Greek Independence Day", "1963-04-01": "Cyprus National Day", "1963-04-12": "Good Friday", + "1963-04-13": "Holy Saturday", "1963-04-14": "Easter Sunday", "1963-04-15": "Easter Monday", + "1963-04-16": "Easter Tuesday", "1963-05-01": "Labor Day", - "1963-06-03": "Monday of the Holy Spirit", - "1963-08-15": "Assumption of Mary", - "1963-10-01": "Cyprus Independence Day", - "1963-10-28": "Ochi Day", + "1963-06-03": "Whit Monday", + "1963-08-15": "Assumption Day", + "1963-10-28": "Greek National Day", "1963-12-24": "Christmas Eve", "1963-12-25": "Christmas Day", "1963-12-26": "Day After Christmas", "1964-01-01": "New Year's Day", "1964-01-06": "Epiphany", - "1964-03-16": "Clean Monday", + "1964-03-16": "Green Monday", "1964-03-25": "Greek Independence Day", "1964-04-01": "Cyprus National Day", "1964-05-01": "Good Friday; Labor Day", + "1964-05-02": "Holy Saturday", "1964-05-03": "Easter Sunday", "1964-05-04": "Easter Monday", - "1964-06-22": "Monday of the Holy Spirit", - "1964-08-15": "Assumption of Mary", - "1964-10-01": "Cyprus Independence Day", - "1964-10-28": "Ochi Day", + "1964-05-05": "Easter Tuesday", + "1964-06-22": "Whit Monday", + "1964-08-15": "Assumption Day", + "1964-10-28": "Greek National Day", "1964-12-24": "Christmas Eve", "1964-12-25": "Christmas Day", "1964-12-26": "Day After Christmas", "1965-01-01": "New Year's Day", "1965-01-06": "Epiphany", - "1965-03-08": "Clean Monday", + "1965-03-08": "Green Monday", "1965-03-25": "Greek Independence Day", "1965-04-01": "Cyprus National Day", "1965-04-23": "Good Friday", + "1965-04-24": "Holy Saturday", "1965-04-25": "Easter Sunday", "1965-04-26": "Easter Monday", + "1965-04-27": "Easter Tuesday", "1965-05-01": "Labor Day", - "1965-06-14": "Monday of the Holy Spirit", - "1965-08-15": "Assumption of Mary", - "1965-10-01": "Cyprus Independence Day", - "1965-10-28": "Ochi Day", + "1965-06-14": "Whit Monday", + "1965-08-15": "Assumption Day", + "1965-10-28": "Greek National Day", "1965-12-24": "Christmas Eve", "1965-12-25": "Christmas Day", "1965-12-26": "Day After Christmas", "1966-01-01": "New Year's Day", "1966-01-06": "Epiphany", - "1966-02-21": "Clean Monday", + "1966-02-21": "Green Monday", "1966-03-25": "Greek Independence Day", "1966-04-01": "Cyprus National Day", "1966-04-08": "Good Friday", + "1966-04-09": "Holy Saturday", "1966-04-10": "Easter Sunday", "1966-04-11": "Easter Monday", + "1966-04-12": "Easter Tuesday", "1966-05-01": "Labor Day", - "1966-05-30": "Monday of the Holy Spirit", - "1966-08-15": "Assumption of Mary", - "1966-10-01": "Cyprus Independence Day", - "1966-10-28": "Ochi Day", + "1966-05-30": "Whit Monday", + "1966-08-15": "Assumption Day", + "1966-10-28": "Greek National Day", "1966-12-24": "Christmas Eve", "1966-12-25": "Christmas Day", "1966-12-26": "Day After Christmas", "1967-01-01": "New Year's Day", "1967-01-06": "Epiphany", - "1967-03-13": "Clean Monday", + "1967-03-13": "Green Monday", "1967-03-25": "Greek Independence Day", "1967-04-01": "Cyprus National Day", "1967-04-28": "Good Friday", + "1967-04-29": "Holy Saturday", "1967-04-30": "Easter Sunday", "1967-05-01": "Easter Monday; Labor Day", - "1967-06-19": "Monday of the Holy Spirit", - "1967-08-15": "Assumption of Mary", - "1967-10-01": "Cyprus Independence Day", - "1967-10-28": "Ochi Day", + "1967-05-02": "Easter Tuesday", + "1967-06-19": "Whit Monday", + "1967-08-15": "Assumption Day", + "1967-10-28": "Greek National Day", "1967-12-24": "Christmas Eve", "1967-12-25": "Christmas Day", "1967-12-26": "Day After Christmas", "1968-01-01": "New Year's Day", "1968-01-06": "Epiphany", - "1968-03-04": "Clean Monday", + "1968-03-04": "Green Monday", "1968-03-25": "Greek Independence Day", "1968-04-01": "Cyprus National Day", "1968-04-19": "Good Friday", + "1968-04-20": "Holy Saturday", "1968-04-21": "Easter Sunday", "1968-04-22": "Easter Monday", + "1968-04-23": "Easter Tuesday", "1968-05-01": "Labor Day", - "1968-06-10": "Monday of the Holy Spirit", - "1968-08-15": "Assumption of Mary", - "1968-10-01": "Cyprus Independence Day", - "1968-10-28": "Ochi Day", + "1968-06-10": "Whit Monday", + "1968-08-15": "Assumption Day", + "1968-10-28": "Greek National Day", "1968-12-24": "Christmas Eve", "1968-12-25": "Christmas Day", "1968-12-26": "Day After Christmas", "1969-01-01": "New Year's Day", "1969-01-06": "Epiphany", - "1969-02-24": "Clean Monday", + "1969-02-24": "Green Monday", "1969-03-25": "Greek Independence Day", "1969-04-01": "Cyprus National Day", "1969-04-11": "Good Friday", + "1969-04-12": "Holy Saturday", "1969-04-13": "Easter Sunday", "1969-04-14": "Easter Monday", + "1969-04-15": "Easter Tuesday", "1969-05-01": "Labor Day", - "1969-06-02": "Monday of the Holy Spirit", - "1969-08-15": "Assumption of Mary", - "1969-10-01": "Cyprus Independence Day", - "1969-10-28": "Ochi Day", + "1969-06-02": "Whit Monday", + "1969-08-15": "Assumption Day", + "1969-10-28": "Greek National Day", "1969-12-24": "Christmas Eve", "1969-12-25": "Christmas Day", "1969-12-26": "Day After Christmas", "1970-01-01": "New Year's Day", "1970-01-06": "Epiphany", - "1970-03-09": "Clean Monday", + "1970-03-09": "Green Monday", "1970-03-25": "Greek Independence Day", "1970-04-01": "Cyprus National Day", "1970-04-24": "Good Friday", + "1970-04-25": "Holy Saturday", "1970-04-26": "Easter Sunday", "1970-04-27": "Easter Monday", + "1970-04-28": "Easter Tuesday", "1970-05-01": "Labor Day", - "1970-06-15": "Monday of the Holy Spirit", - "1970-08-15": "Assumption of Mary", - "1970-10-01": "Cyprus Independence Day", - "1970-10-28": "Ochi Day", + "1970-06-15": "Whit Monday", + "1970-08-15": "Assumption Day", + "1970-10-28": "Greek National Day", "1970-12-24": "Christmas Eve", "1970-12-25": "Christmas Day", "1970-12-26": "Day After Christmas", "1971-01-01": "New Year's Day", "1971-01-06": "Epiphany", - "1971-03-01": "Clean Monday", + "1971-03-01": "Green Monday", "1971-03-25": "Greek Independence Day", "1971-04-01": "Cyprus National Day", "1971-04-16": "Good Friday", + "1971-04-17": "Holy Saturday", "1971-04-18": "Easter Sunday", "1971-04-19": "Easter Monday", + "1971-04-20": "Easter Tuesday", "1971-05-01": "Labor Day", - "1971-06-07": "Monday of the Holy Spirit", - "1971-08-15": "Assumption of Mary", - "1971-10-01": "Cyprus Independence Day", - "1971-10-28": "Ochi Day", + "1971-06-07": "Whit Monday", + "1971-08-15": "Assumption Day", + "1971-10-28": "Greek National Day", "1971-12-24": "Christmas Eve", "1971-12-25": "Christmas Day", "1971-12-26": "Day After Christmas", "1972-01-01": "New Year's Day", "1972-01-06": "Epiphany", - "1972-02-21": "Clean Monday", + "1972-02-21": "Green Monday", "1972-03-25": "Greek Independence Day", "1972-04-01": "Cyprus National Day", "1972-04-07": "Good Friday", + "1972-04-08": "Holy Saturday", "1972-04-09": "Easter Sunday", "1972-04-10": "Easter Monday", + "1972-04-11": "Easter Tuesday", "1972-05-01": "Labor Day", - "1972-05-29": "Monday of the Holy Spirit", - "1972-08-15": "Assumption of Mary", - "1972-10-01": "Cyprus Independence Day", - "1972-10-28": "Ochi Day", + "1972-05-29": "Whit Monday", + "1972-08-15": "Assumption Day", + "1972-10-28": "Greek National Day", "1972-12-24": "Christmas Eve", "1972-12-25": "Christmas Day", "1972-12-26": "Day After Christmas", "1973-01-01": "New Year's Day", "1973-01-06": "Epiphany", - "1973-03-12": "Clean Monday", + "1973-03-12": "Green Monday", "1973-03-25": "Greek Independence Day", "1973-04-01": "Cyprus National Day", "1973-04-27": "Good Friday", + "1973-04-28": "Holy Saturday", "1973-04-29": "Easter Sunday", "1973-04-30": "Easter Monday", - "1973-05-01": "Labor Day", - "1973-06-18": "Monday of the Holy Spirit", - "1973-08-15": "Assumption of Mary", - "1973-10-01": "Cyprus Independence Day", - "1973-10-28": "Ochi Day", + "1973-05-01": "Easter Tuesday; Labor Day", + "1973-06-18": "Whit Monday", + "1973-08-15": "Assumption Day", + "1973-10-28": "Greek National Day", "1973-12-24": "Christmas Eve", "1973-12-25": "Christmas Day", "1973-12-26": "Day After Christmas", "1974-01-01": "New Year's Day", "1974-01-06": "Epiphany", - "1974-02-25": "Clean Monday", + "1974-02-25": "Green Monday", "1974-03-25": "Greek Independence Day", "1974-04-01": "Cyprus National Day", "1974-04-12": "Good Friday", + "1974-04-13": "Holy Saturday", "1974-04-14": "Easter Sunday", "1974-04-15": "Easter Monday", + "1974-04-16": "Easter Tuesday", "1974-05-01": "Labor Day", - "1974-06-03": "Monday of the Holy Spirit", - "1974-08-15": "Assumption of Mary", - "1974-10-01": "Cyprus Independence Day", - "1974-10-28": "Ochi Day", + "1974-06-03": "Whit Monday", + "1974-08-15": "Assumption Day", + "1974-10-28": "Greek National Day", "1974-12-24": "Christmas Eve", "1974-12-25": "Christmas Day", "1974-12-26": "Day After Christmas", "1975-01-01": "New Year's Day", "1975-01-06": "Epiphany", - "1975-03-17": "Clean Monday", + "1975-03-17": "Green Monday", "1975-03-25": "Greek Independence Day", "1975-04-01": "Cyprus National Day", "1975-05-01": "Labor Day", "1975-05-02": "Good Friday", + "1975-05-03": "Holy Saturday", "1975-05-04": "Easter Sunday", "1975-05-05": "Easter Monday", - "1975-06-23": "Monday of the Holy Spirit", - "1975-08-15": "Assumption of Mary", - "1975-10-01": "Cyprus Independence Day", - "1975-10-28": "Ochi Day", + "1975-05-06": "Easter Tuesday", + "1975-06-23": "Whit Monday", + "1975-08-15": "Assumption Day", + "1975-10-28": "Greek National Day", "1975-12-24": "Christmas Eve", "1975-12-25": "Christmas Day", "1975-12-26": "Day After Christmas", "1976-01-01": "New Year's Day", "1976-01-06": "Epiphany", - "1976-03-08": "Clean Monday", + "1976-03-08": "Green Monday", "1976-03-25": "Greek Independence Day", "1976-04-01": "Cyprus National Day", "1976-04-23": "Good Friday", + "1976-04-24": "Holy Saturday", "1976-04-25": "Easter Sunday", "1976-04-26": "Easter Monday", + "1976-04-27": "Easter Tuesday", "1976-05-01": "Labor Day", - "1976-06-14": "Monday of the Holy Spirit", - "1976-08-15": "Assumption of Mary", - "1976-10-01": "Cyprus Independence Day", - "1976-10-28": "Ochi Day", + "1976-06-14": "Whit Monday", + "1976-08-15": "Assumption Day", + "1976-10-28": "Greek National Day", "1976-12-24": "Christmas Eve", "1976-12-25": "Christmas Day", "1976-12-26": "Day After Christmas", "1977-01-01": "New Year's Day", "1977-01-06": "Epiphany", - "1977-02-21": "Clean Monday", + "1977-02-21": "Green Monday", "1977-03-25": "Greek Independence Day", "1977-04-01": "Cyprus National Day", "1977-04-08": "Good Friday", + "1977-04-09": "Holy Saturday", "1977-04-10": "Easter Sunday", "1977-04-11": "Easter Monday", + "1977-04-12": "Easter Tuesday", "1977-05-01": "Labor Day", - "1977-05-30": "Monday of the Holy Spirit", - "1977-08-15": "Assumption of Mary", - "1977-10-01": "Cyprus Independence Day", - "1977-10-28": "Ochi Day", + "1977-05-30": "Whit Monday", + "1977-08-15": "Assumption Day", + "1977-10-28": "Greek National Day", "1977-12-24": "Christmas Eve", "1977-12-25": "Christmas Day", "1977-12-26": "Day After Christmas", "1978-01-01": "New Year's Day", "1978-01-06": "Epiphany", - "1978-03-13": "Clean Monday", + "1978-03-13": "Green Monday", "1978-03-25": "Greek Independence Day", "1978-04-01": "Cyprus National Day", "1978-04-28": "Good Friday", + "1978-04-29": "Holy Saturday", "1978-04-30": "Easter Sunday", "1978-05-01": "Easter Monday; Labor Day", - "1978-06-19": "Monday of the Holy Spirit", - "1978-08-15": "Assumption of Mary", - "1978-10-01": "Cyprus Independence Day", - "1978-10-28": "Ochi Day", + "1978-05-02": "Easter Tuesday", + "1978-06-19": "Whit Monday", + "1978-08-15": "Assumption Day", + "1978-10-28": "Greek National Day", "1978-12-24": "Christmas Eve", "1978-12-25": "Christmas Day", "1978-12-26": "Day After Christmas", "1979-01-01": "New Year's Day", "1979-01-06": "Epiphany", - "1979-03-05": "Clean Monday", + "1979-03-05": "Green Monday", "1979-03-25": "Greek Independence Day", "1979-04-01": "Cyprus National Day", "1979-04-20": "Good Friday", + "1979-04-21": "Holy Saturday", "1979-04-22": "Easter Sunday", "1979-04-23": "Easter Monday", + "1979-04-24": "Easter Tuesday", "1979-05-01": "Labor Day", - "1979-06-11": "Monday of the Holy Spirit", - "1979-08-15": "Assumption of Mary", + "1979-06-11": "Whit Monday", + "1979-08-15": "Assumption Day", "1979-10-01": "Cyprus Independence Day", - "1979-10-28": "Ochi Day", + "1979-10-28": "Greek National Day", "1979-12-24": "Christmas Eve", "1979-12-25": "Christmas Day", "1979-12-26": "Day After Christmas", "1980-01-01": "New Year's Day", "1980-01-06": "Epiphany", - "1980-02-18": "Clean Monday", + "1980-02-18": "Green Monday", "1980-03-25": "Greek Independence Day", "1980-04-01": "Cyprus National Day", "1980-04-04": "Good Friday", + "1980-04-05": "Holy Saturday", "1980-04-06": "Easter Sunday", "1980-04-07": "Easter Monday", + "1980-04-08": "Easter Tuesday", "1980-05-01": "Labor Day", - "1980-05-26": "Monday of the Holy Spirit", - "1980-08-15": "Assumption of Mary", + "1980-05-26": "Whit Monday", + "1980-08-15": "Assumption Day", "1980-10-01": "Cyprus Independence Day", - "1980-10-28": "Ochi Day", + "1980-10-28": "Greek National Day", "1980-12-24": "Christmas Eve", "1980-12-25": "Christmas Day", "1980-12-26": "Day After Christmas", "1981-01-01": "New Year's Day", "1981-01-06": "Epiphany", - "1981-03-09": "Clean Monday", + "1981-03-09": "Green Monday", "1981-03-25": "Greek Independence Day", "1981-04-01": "Cyprus National Day", "1981-04-24": "Good Friday", + "1981-04-25": "Holy Saturday", "1981-04-26": "Easter Sunday", "1981-04-27": "Easter Monday", + "1981-04-28": "Easter Tuesday", "1981-05-01": "Labor Day", - "1981-06-15": "Monday of the Holy Spirit", - "1981-08-15": "Assumption of Mary", + "1981-06-15": "Whit Monday", + "1981-08-15": "Assumption Day", "1981-10-01": "Cyprus Independence Day", - "1981-10-28": "Ochi Day", + "1981-10-28": "Greek National Day", "1981-12-24": "Christmas Eve", "1981-12-25": "Christmas Day", "1981-12-26": "Day After Christmas", "1982-01-01": "New Year's Day", "1982-01-06": "Epiphany", - "1982-03-01": "Clean Monday", + "1982-03-01": "Green Monday", "1982-03-25": "Greek Independence Day", "1982-04-01": "Cyprus National Day", "1982-04-16": "Good Friday", + "1982-04-17": "Holy Saturday", "1982-04-18": "Easter Sunday", "1982-04-19": "Easter Monday", + "1982-04-20": "Easter Tuesday", "1982-05-01": "Labor Day", - "1982-06-07": "Monday of the Holy Spirit", - "1982-08-15": "Assumption of Mary", + "1982-06-07": "Whit Monday", + "1982-08-15": "Assumption Day", "1982-10-01": "Cyprus Independence Day", - "1982-10-28": "Ochi Day", + "1982-10-28": "Greek National Day", "1982-12-24": "Christmas Eve", "1982-12-25": "Christmas Day", "1982-12-26": "Day After Christmas", "1983-01-01": "New Year's Day", "1983-01-06": "Epiphany", - "1983-03-21": "Clean Monday", + "1983-03-21": "Green Monday", "1983-03-25": "Greek Independence Day", "1983-04-01": "Cyprus National Day", "1983-05-01": "Labor Day", "1983-05-06": "Good Friday", + "1983-05-07": "Holy Saturday", "1983-05-08": "Easter Sunday", "1983-05-09": "Easter Monday", - "1983-06-27": "Monday of the Holy Spirit", - "1983-08-15": "Assumption of Mary", + "1983-05-10": "Easter Tuesday", + "1983-06-27": "Whit Monday", + "1983-08-15": "Assumption Day", "1983-10-01": "Cyprus Independence Day", - "1983-10-28": "Ochi Day", + "1983-10-28": "Greek National Day", "1983-12-24": "Christmas Eve", "1983-12-25": "Christmas Day", "1983-12-26": "Day After Christmas", "1984-01-01": "New Year's Day", "1984-01-06": "Epiphany", - "1984-03-05": "Clean Monday", + "1984-03-05": "Green Monday", "1984-03-25": "Greek Independence Day", "1984-04-01": "Cyprus National Day", "1984-04-20": "Good Friday", + "1984-04-21": "Holy Saturday", "1984-04-22": "Easter Sunday", "1984-04-23": "Easter Monday", + "1984-04-24": "Easter Tuesday", "1984-05-01": "Labor Day", - "1984-06-11": "Monday of the Holy Spirit", - "1984-08-15": "Assumption of Mary", + "1984-06-11": "Whit Monday", + "1984-08-15": "Assumption Day", "1984-10-01": "Cyprus Independence Day", - "1984-10-28": "Ochi Day", + "1984-10-28": "Greek National Day", "1984-12-24": "Christmas Eve", "1984-12-25": "Christmas Day", "1984-12-26": "Day After Christmas", "1985-01-01": "New Year's Day", "1985-01-06": "Epiphany", - "1985-02-25": "Clean Monday", + "1985-02-25": "Green Monday", "1985-03-25": "Greek Independence Day", "1985-04-01": "Cyprus National Day", "1985-04-12": "Good Friday", + "1985-04-13": "Holy Saturday", "1985-04-14": "Easter Sunday", "1985-04-15": "Easter Monday", + "1985-04-16": "Easter Tuesday", "1985-05-01": "Labor Day", - "1985-06-03": "Monday of the Holy Spirit", - "1985-08-15": "Assumption of Mary", + "1985-06-03": "Whit Monday", + "1985-08-15": "Assumption Day", "1985-10-01": "Cyprus Independence Day", - "1985-10-28": "Ochi Day", + "1985-10-28": "Greek National Day", "1985-12-24": "Christmas Eve", "1985-12-25": "Christmas Day", "1985-12-26": "Day After Christmas", "1986-01-01": "New Year's Day", "1986-01-06": "Epiphany", - "1986-03-17": "Clean Monday", + "1986-03-17": "Green Monday", "1986-03-25": "Greek Independence Day", "1986-04-01": "Cyprus National Day", "1986-05-01": "Labor Day", "1986-05-02": "Good Friday", + "1986-05-03": "Holy Saturday", "1986-05-04": "Easter Sunday", "1986-05-05": "Easter Monday", - "1986-06-23": "Monday of the Holy Spirit", - "1986-08-15": "Assumption of Mary", + "1986-05-06": "Easter Tuesday", + "1986-06-23": "Whit Monday", + "1986-08-15": "Assumption Day", "1986-10-01": "Cyprus Independence Day", - "1986-10-28": "Ochi Day", + "1986-10-28": "Greek National Day", "1986-12-24": "Christmas Eve", "1986-12-25": "Christmas Day", "1986-12-26": "Day After Christmas", "1987-01-01": "New Year's Day", "1987-01-06": "Epiphany", - "1987-03-02": "Clean Monday", + "1987-03-02": "Green Monday", "1987-03-25": "Greek Independence Day", "1987-04-01": "Cyprus National Day", "1987-04-17": "Good Friday", + "1987-04-18": "Holy Saturday", "1987-04-19": "Easter Sunday", "1987-04-20": "Easter Monday", + "1987-04-21": "Easter Tuesday", "1987-05-01": "Labor Day", - "1987-06-08": "Monday of the Holy Spirit", - "1987-08-15": "Assumption of Mary", + "1987-06-08": "Whit Monday", + "1987-08-15": "Assumption Day", "1987-10-01": "Cyprus Independence Day", - "1987-10-28": "Ochi Day", + "1987-10-28": "Greek National Day", "1987-12-24": "Christmas Eve", "1987-12-25": "Christmas Day", "1987-12-26": "Day After Christmas", "1988-01-01": "New Year's Day", "1988-01-06": "Epiphany", - "1988-02-22": "Clean Monday", + "1988-02-22": "Green Monday", "1988-03-25": "Greek Independence Day", "1988-04-01": "Cyprus National Day", "1988-04-08": "Good Friday", + "1988-04-09": "Holy Saturday", "1988-04-10": "Easter Sunday", "1988-04-11": "Easter Monday", + "1988-04-12": "Easter Tuesday", "1988-05-01": "Labor Day", - "1988-05-30": "Monday of the Holy Spirit", - "1988-08-15": "Assumption of Mary", + "1988-05-30": "Whit Monday", + "1988-08-15": "Assumption Day", "1988-10-01": "Cyprus Independence Day", - "1988-10-28": "Ochi Day", + "1988-10-28": "Greek National Day", "1988-12-24": "Christmas Eve", "1988-12-25": "Christmas Day", "1988-12-26": "Day After Christmas", "1989-01-01": "New Year's Day", "1989-01-06": "Epiphany", - "1989-03-13": "Clean Monday", + "1989-03-13": "Green Monday", "1989-03-25": "Greek Independence Day", "1989-04-01": "Cyprus National Day", "1989-04-28": "Good Friday", + "1989-04-29": "Holy Saturday", "1989-04-30": "Easter Sunday", "1989-05-01": "Easter Monday; Labor Day", - "1989-06-19": "Monday of the Holy Spirit", - "1989-08-15": "Assumption of Mary", + "1989-05-02": "Easter Tuesday", + "1989-06-19": "Whit Monday", + "1989-08-15": "Assumption Day", "1989-10-01": "Cyprus Independence Day", - "1989-10-28": "Ochi Day", + "1989-10-28": "Greek National Day", "1989-12-24": "Christmas Eve", "1989-12-25": "Christmas Day", "1989-12-26": "Day After Christmas", "1990-01-01": "New Year's Day", "1990-01-06": "Epiphany", - "1990-02-26": "Clean Monday", + "1990-02-26": "Green Monday", "1990-03-25": "Greek Independence Day", "1990-04-01": "Cyprus National Day", "1990-04-13": "Good Friday", + "1990-04-14": "Holy Saturday", "1990-04-15": "Easter Sunday", "1990-04-16": "Easter Monday", + "1990-04-17": "Easter Tuesday", "1990-05-01": "Labor Day", - "1990-06-04": "Monday of the Holy Spirit", - "1990-08-15": "Assumption of Mary", + "1990-06-04": "Whit Monday", + "1990-08-15": "Assumption Day", "1990-10-01": "Cyprus Independence Day", - "1990-10-28": "Ochi Day", + "1990-10-28": "Greek National Day", "1990-12-24": "Christmas Eve", "1990-12-25": "Christmas Day", "1990-12-26": "Day After Christmas", "1991-01-01": "New Year's Day", "1991-01-06": "Epiphany", - "1991-02-18": "Clean Monday", + "1991-02-18": "Green Monday", "1991-03-25": "Greek Independence Day", "1991-04-01": "Cyprus National Day", "1991-04-05": "Good Friday", + "1991-04-06": "Holy Saturday", "1991-04-07": "Easter Sunday", "1991-04-08": "Easter Monday", + "1991-04-09": "Easter Tuesday", "1991-05-01": "Labor Day", - "1991-05-27": "Monday of the Holy Spirit", - "1991-08-15": "Assumption of Mary", + "1991-05-27": "Whit Monday", + "1991-08-15": "Assumption Day", "1991-10-01": "Cyprus Independence Day", - "1991-10-28": "Ochi Day", + "1991-10-28": "Greek National Day", "1991-12-24": "Christmas Eve", "1991-12-25": "Christmas Day", "1991-12-26": "Day After Christmas", "1992-01-01": "New Year's Day", "1992-01-06": "Epiphany", - "1992-03-09": "Clean Monday", + "1992-03-09": "Green Monday", "1992-03-25": "Greek Independence Day", "1992-04-01": "Cyprus National Day", "1992-04-24": "Good Friday", + "1992-04-25": "Holy Saturday", "1992-04-26": "Easter Sunday", "1992-04-27": "Easter Monday", + "1992-04-28": "Easter Tuesday", "1992-05-01": "Labor Day", - "1992-06-15": "Monday of the Holy Spirit", - "1992-08-15": "Assumption of Mary", + "1992-06-15": "Whit Monday", + "1992-08-15": "Assumption Day", "1992-10-01": "Cyprus Independence Day", - "1992-10-28": "Ochi Day", + "1992-10-28": "Greek National Day", "1992-12-24": "Christmas Eve", "1992-12-25": "Christmas Day", "1992-12-26": "Day After Christmas", "1993-01-01": "New Year's Day", "1993-01-06": "Epiphany", - "1993-03-01": "Clean Monday", + "1993-03-01": "Green Monday", "1993-03-25": "Greek Independence Day", "1993-04-01": "Cyprus National Day", "1993-04-16": "Good Friday", + "1993-04-17": "Holy Saturday", "1993-04-18": "Easter Sunday", "1993-04-19": "Easter Monday", + "1993-04-20": "Easter Tuesday", "1993-05-01": "Labor Day", - "1993-06-07": "Monday of the Holy Spirit", - "1993-08-15": "Assumption of Mary", + "1993-06-07": "Whit Monday", + "1993-08-15": "Assumption Day", "1993-10-01": "Cyprus Independence Day", - "1993-10-28": "Ochi Day", + "1993-10-28": "Greek National Day", "1993-12-24": "Christmas Eve", "1993-12-25": "Christmas Day", "1993-12-26": "Day After Christmas", "1994-01-01": "New Year's Day", "1994-01-06": "Epiphany", - "1994-03-14": "Clean Monday", + "1994-03-14": "Green Monday", "1994-03-25": "Greek Independence Day", "1994-04-01": "Cyprus National Day", "1994-04-29": "Good Friday", + "1994-04-30": "Holy Saturday", "1994-05-01": "Easter Sunday; Labor Day", "1994-05-02": "Easter Monday", - "1994-06-20": "Monday of the Holy Spirit", - "1994-08-15": "Assumption of Mary", + "1994-05-03": "Easter Tuesday", + "1994-06-20": "Whit Monday", + "1994-08-15": "Assumption Day", "1994-10-01": "Cyprus Independence Day", - "1994-10-28": "Ochi Day", + "1994-10-28": "Greek National Day", "1994-12-24": "Christmas Eve", "1994-12-25": "Christmas Day", "1994-12-26": "Day After Christmas", "1995-01-01": "New Year's Day", "1995-01-06": "Epiphany", - "1995-03-06": "Clean Monday", + "1995-03-06": "Green Monday", "1995-03-25": "Greek Independence Day", "1995-04-01": "Cyprus National Day", "1995-04-21": "Good Friday", + "1995-04-22": "Holy Saturday", "1995-04-23": "Easter Sunday", "1995-04-24": "Easter Monday", + "1995-04-25": "Easter Tuesday", "1995-05-01": "Labor Day", - "1995-06-12": "Monday of the Holy Spirit", - "1995-08-15": "Assumption of Mary", + "1995-06-12": "Whit Monday", + "1995-08-15": "Assumption Day", "1995-10-01": "Cyprus Independence Day", - "1995-10-28": "Ochi Day", + "1995-10-28": "Greek National Day", "1995-12-24": "Christmas Eve", "1995-12-25": "Christmas Day", "1995-12-26": "Day After Christmas", "1996-01-01": "New Year's Day", "1996-01-06": "Epiphany", - "1996-02-26": "Clean Monday", + "1996-02-26": "Green Monday", "1996-03-25": "Greek Independence Day", "1996-04-01": "Cyprus National Day", "1996-04-12": "Good Friday", + "1996-04-13": "Holy Saturday", "1996-04-14": "Easter Sunday", "1996-04-15": "Easter Monday", + "1996-04-16": "Easter Tuesday", "1996-05-01": "Labor Day", - "1996-06-03": "Monday of the Holy Spirit", - "1996-08-15": "Assumption of Mary", + "1996-06-03": "Whit Monday", + "1996-08-15": "Assumption Day", "1996-10-01": "Cyprus Independence Day", - "1996-10-28": "Ochi Day", + "1996-10-28": "Greek National Day", "1996-12-24": "Christmas Eve", "1996-12-25": "Christmas Day", "1996-12-26": "Day After Christmas", "1997-01-01": "New Year's Day", "1997-01-06": "Epiphany", - "1997-03-10": "Clean Monday", + "1997-03-10": "Green Monday", "1997-03-25": "Greek Independence Day", "1997-04-01": "Cyprus National Day", "1997-04-25": "Good Friday", + "1997-04-26": "Holy Saturday", "1997-04-27": "Easter Sunday", "1997-04-28": "Easter Monday", + "1997-04-29": "Easter Tuesday", "1997-05-01": "Labor Day", - "1997-06-16": "Monday of the Holy Spirit", - "1997-08-15": "Assumption of Mary", + "1997-06-16": "Whit Monday", + "1997-08-15": "Assumption Day", "1997-10-01": "Cyprus Independence Day", - "1997-10-28": "Ochi Day", + "1997-10-28": "Greek National Day", "1997-12-24": "Christmas Eve", "1997-12-25": "Christmas Day", "1997-12-26": "Day After Christmas", "1998-01-01": "New Year's Day", "1998-01-06": "Epiphany", - "1998-03-02": "Clean Monday", + "1998-03-02": "Green Monday", "1998-03-25": "Greek Independence Day", "1998-04-01": "Cyprus National Day", "1998-04-17": "Good Friday", + "1998-04-18": "Holy Saturday", "1998-04-19": "Easter Sunday", "1998-04-20": "Easter Monday", + "1998-04-21": "Easter Tuesday", "1998-05-01": "Labor Day", - "1998-06-08": "Monday of the Holy Spirit", - "1998-08-15": "Assumption of Mary", + "1998-06-08": "Whit Monday", + "1998-08-15": "Assumption Day", "1998-10-01": "Cyprus Independence Day", - "1998-10-28": "Ochi Day", + "1998-10-28": "Greek National Day", "1998-12-24": "Christmas Eve", "1998-12-25": "Christmas Day", "1998-12-26": "Day After Christmas", "1999-01-01": "New Year's Day", "1999-01-06": "Epiphany", - "1999-02-22": "Clean Monday", + "1999-02-22": "Green Monday", "1999-03-25": "Greek Independence Day", "1999-04-01": "Cyprus National Day", "1999-04-09": "Good Friday", + "1999-04-10": "Holy Saturday", "1999-04-11": "Easter Sunday", "1999-04-12": "Easter Monday", + "1999-04-13": "Easter Tuesday", "1999-05-01": "Labor Day", - "1999-05-31": "Monday of the Holy Spirit", - "1999-08-15": "Assumption of Mary", + "1999-05-31": "Whit Monday", + "1999-08-15": "Assumption Day", "1999-10-01": "Cyprus Independence Day", - "1999-10-28": "Ochi Day", + "1999-10-28": "Greek National Day", "1999-12-24": "Christmas Eve", "1999-12-25": "Christmas Day", "1999-12-26": "Day After Christmas", "2000-01-01": "New Year's Day", "2000-01-06": "Epiphany", - "2000-03-13": "Clean Monday", + "2000-03-13": "Green Monday", "2000-03-25": "Greek Independence Day", "2000-04-01": "Cyprus National Day", "2000-04-28": "Good Friday", + "2000-04-29": "Holy Saturday", "2000-04-30": "Easter Sunday", "2000-05-01": "Easter Monday; Labor Day", - "2000-06-19": "Monday of the Holy Spirit", - "2000-08-15": "Assumption of Mary", + "2000-05-02": "Easter Tuesday", + "2000-06-19": "Whit Monday", + "2000-08-15": "Assumption Day", "2000-10-01": "Cyprus Independence Day", - "2000-10-28": "Ochi Day", + "2000-10-28": "Greek National Day", "2000-12-24": "Christmas Eve", "2000-12-25": "Christmas Day", "2000-12-26": "Day After Christmas", "2001-01-01": "New Year's Day", "2001-01-06": "Epiphany", - "2001-02-26": "Clean Monday", + "2001-02-26": "Green Monday", "2001-03-25": "Greek Independence Day", "2001-04-01": "Cyprus National Day", "2001-04-13": "Good Friday", + "2001-04-14": "Holy Saturday", "2001-04-15": "Easter Sunday", "2001-04-16": "Easter Monday", + "2001-04-17": "Easter Tuesday", "2001-05-01": "Labor Day", - "2001-06-04": "Monday of the Holy Spirit", - "2001-08-15": "Assumption of Mary", + "2001-06-04": "Whit Monday", + "2001-08-15": "Assumption Day", "2001-10-01": "Cyprus Independence Day", - "2001-10-28": "Ochi Day", + "2001-10-28": "Greek National Day", "2001-12-24": "Christmas Eve", "2001-12-25": "Christmas Day", "2001-12-26": "Day After Christmas", "2002-01-01": "New Year's Day", "2002-01-06": "Epiphany", - "2002-03-18": "Clean Monday", + "2002-03-18": "Green Monday", "2002-03-25": "Greek Independence Day", "2002-04-01": "Cyprus National Day", "2002-05-01": "Labor Day", "2002-05-03": "Good Friday", + "2002-05-04": "Holy Saturday", "2002-05-05": "Easter Sunday", "2002-05-06": "Easter Monday", - "2002-06-24": "Monday of the Holy Spirit", - "2002-08-15": "Assumption of Mary", + "2002-05-07": "Easter Tuesday", + "2002-06-24": "Whit Monday", + "2002-08-15": "Assumption Day", "2002-10-01": "Cyprus Independence Day", - "2002-10-28": "Ochi Day", + "2002-10-28": "Greek National Day", "2002-12-24": "Christmas Eve", "2002-12-25": "Christmas Day", "2002-12-26": "Day After Christmas", "2003-01-01": "New Year's Day", "2003-01-06": "Epiphany", - "2003-03-10": "Clean Monday", + "2003-03-10": "Green Monday", "2003-03-25": "Greek Independence Day", "2003-04-01": "Cyprus National Day", "2003-04-25": "Good Friday", + "2003-04-26": "Holy Saturday", "2003-04-27": "Easter Sunday", "2003-04-28": "Easter Monday", + "2003-04-29": "Easter Tuesday", "2003-05-01": "Labor Day", - "2003-06-16": "Monday of the Holy Spirit", - "2003-08-15": "Assumption of Mary", + "2003-06-16": "Whit Monday", + "2003-08-15": "Assumption Day", "2003-10-01": "Cyprus Independence Day", - "2003-10-28": "Ochi Day", + "2003-10-28": "Greek National Day", "2003-12-24": "Christmas Eve", "2003-12-25": "Christmas Day", "2003-12-26": "Day After Christmas", "2004-01-01": "New Year's Day", "2004-01-06": "Epiphany", - "2004-02-23": "Clean Monday", + "2004-02-23": "Green Monday", "2004-03-25": "Greek Independence Day", "2004-04-01": "Cyprus National Day", "2004-04-09": "Good Friday", + "2004-04-10": "Holy Saturday", "2004-04-11": "Easter Sunday", "2004-04-12": "Easter Monday", + "2004-04-13": "Easter Tuesday", "2004-05-01": "Labor Day", - "2004-05-31": "Monday of the Holy Spirit", - "2004-08-15": "Assumption of Mary", + "2004-05-31": "Whit Monday", + "2004-08-15": "Assumption Day", "2004-10-01": "Cyprus Independence Day", - "2004-10-28": "Ochi Day", + "2004-10-28": "Greek National Day", "2004-12-24": "Christmas Eve", "2004-12-25": "Christmas Day", "2004-12-26": "Day After Christmas", "2005-01-01": "New Year's Day", "2005-01-06": "Epiphany", - "2005-03-14": "Clean Monday", + "2005-03-14": "Green Monday", "2005-03-25": "Greek Independence Day", "2005-04-01": "Cyprus National Day", "2005-04-29": "Good Friday", + "2005-04-30": "Holy Saturday", "2005-05-01": "Easter Sunday; Labor Day", "2005-05-02": "Easter Monday", - "2005-06-20": "Monday of the Holy Spirit", - "2005-08-15": "Assumption of Mary", + "2005-05-03": "Easter Tuesday", + "2005-06-20": "Whit Monday", + "2005-08-15": "Assumption Day", "2005-10-01": "Cyprus Independence Day", - "2005-10-28": "Ochi Day", + "2005-10-28": "Greek National Day", "2005-12-24": "Christmas Eve", "2005-12-25": "Christmas Day", "2005-12-26": "Day After Christmas", "2006-01-01": "New Year's Day", "2006-01-06": "Epiphany", - "2006-03-06": "Clean Monday", + "2006-03-06": "Green Monday", "2006-03-25": "Greek Independence Day", "2006-04-01": "Cyprus National Day", "2006-04-21": "Good Friday", + "2006-04-22": "Holy Saturday", "2006-04-23": "Easter Sunday", "2006-04-24": "Easter Monday", + "2006-04-25": "Easter Tuesday", "2006-05-01": "Labor Day", - "2006-06-12": "Monday of the Holy Spirit", - "2006-08-15": "Assumption of Mary", + "2006-06-12": "Whit Monday", + "2006-08-15": "Assumption Day", "2006-10-01": "Cyprus Independence Day", - "2006-10-28": "Ochi Day", + "2006-10-28": "Greek National Day", "2006-12-24": "Christmas Eve", "2006-12-25": "Christmas Day", "2006-12-26": "Day After Christmas", "2007-01-01": "New Year's Day", "2007-01-06": "Epiphany", - "2007-02-19": "Clean Monday", + "2007-02-19": "Green Monday", "2007-03-25": "Greek Independence Day", "2007-04-01": "Cyprus National Day", "2007-04-06": "Good Friday", + "2007-04-07": "Holy Saturday", "2007-04-08": "Easter Sunday", "2007-04-09": "Easter Monday", + "2007-04-10": "Easter Tuesday", "2007-05-01": "Labor Day", - "2007-05-28": "Monday of the Holy Spirit", - "2007-08-15": "Assumption of Mary", + "2007-05-28": "Whit Monday", + "2007-08-15": "Assumption Day", "2007-10-01": "Cyprus Independence Day", - "2007-10-28": "Ochi Day", + "2007-10-28": "Greek National Day", "2007-12-24": "Christmas Eve", "2007-12-25": "Christmas Day", "2007-12-26": "Day After Christmas", "2008-01-01": "New Year's Day", "2008-01-06": "Epiphany", - "2008-03-10": "Clean Monday", + "2008-03-10": "Green Monday", "2008-03-25": "Greek Independence Day", "2008-04-01": "Cyprus National Day", "2008-04-25": "Good Friday", + "2008-04-26": "Holy Saturday", "2008-04-27": "Easter Sunday", "2008-04-28": "Easter Monday", + "2008-04-29": "Easter Tuesday", "2008-05-01": "Labor Day", - "2008-06-16": "Monday of the Holy Spirit", - "2008-08-15": "Assumption of Mary", + "2008-06-16": "Whit Monday", + "2008-08-15": "Assumption Day", "2008-10-01": "Cyprus Independence Day", - "2008-10-28": "Ochi Day", + "2008-10-28": "Greek National Day", "2008-12-24": "Christmas Eve", "2008-12-25": "Christmas Day", "2008-12-26": "Day After Christmas", "2009-01-01": "New Year's Day", "2009-01-06": "Epiphany", - "2009-03-02": "Clean Monday", + "2009-03-02": "Green Monday", "2009-03-25": "Greek Independence Day", "2009-04-01": "Cyprus National Day", "2009-04-17": "Good Friday", + "2009-04-18": "Holy Saturday", "2009-04-19": "Easter Sunday", "2009-04-20": "Easter Monday", + "2009-04-21": "Easter Tuesday", "2009-05-01": "Labor Day", - "2009-06-08": "Monday of the Holy Spirit", - "2009-08-15": "Assumption of Mary", + "2009-06-08": "Whit Monday", + "2009-08-15": "Assumption Day", "2009-10-01": "Cyprus Independence Day", - "2009-10-28": "Ochi Day", + "2009-10-28": "Greek National Day", "2009-12-24": "Christmas Eve", "2009-12-25": "Christmas Day", "2009-12-26": "Day After Christmas", "2010-01-01": "New Year's Day", "2010-01-06": "Epiphany", - "2010-02-15": "Clean Monday", + "2010-02-15": "Green Monday", "2010-03-25": "Greek Independence Day", "2010-04-01": "Cyprus National Day", "2010-04-02": "Good Friday", + "2010-04-03": "Holy Saturday", "2010-04-04": "Easter Sunday", "2010-04-05": "Easter Monday", + "2010-04-06": "Easter Tuesday", "2010-05-01": "Labor Day", - "2010-05-24": "Monday of the Holy Spirit", - "2010-08-15": "Assumption of Mary", + "2010-05-24": "Whit Monday", + "2010-08-15": "Assumption Day", "2010-10-01": "Cyprus Independence Day", - "2010-10-28": "Ochi Day", + "2010-10-28": "Greek National Day", "2010-12-24": "Christmas Eve", "2010-12-25": "Christmas Day", "2010-12-26": "Day After Christmas", "2011-01-01": "New Year's Day", "2011-01-06": "Epiphany", - "2011-03-07": "Clean Monday", + "2011-03-07": "Green Monday", "2011-03-25": "Greek Independence Day", "2011-04-01": "Cyprus National Day", "2011-04-22": "Good Friday", + "2011-04-23": "Holy Saturday", "2011-04-24": "Easter Sunday", "2011-04-25": "Easter Monday", + "2011-04-26": "Easter Tuesday", "2011-05-01": "Labor Day", - "2011-06-13": "Monday of the Holy Spirit", - "2011-08-15": "Assumption of Mary", + "2011-06-13": "Whit Monday", + "2011-08-15": "Assumption Day", "2011-10-01": "Cyprus Independence Day", - "2011-10-28": "Ochi Day", + "2011-10-28": "Greek National Day", "2011-12-24": "Christmas Eve", "2011-12-25": "Christmas Day", "2011-12-26": "Day After Christmas", "2012-01-01": "New Year's Day", "2012-01-06": "Epiphany", - "2012-02-27": "Clean Monday", + "2012-02-27": "Green Monday", "2012-03-25": "Greek Independence Day", "2012-04-01": "Cyprus National Day", "2012-04-13": "Good Friday", + "2012-04-14": "Holy Saturday", "2012-04-15": "Easter Sunday", "2012-04-16": "Easter Monday", + "2012-04-17": "Easter Tuesday", "2012-05-01": "Labor Day", - "2012-06-04": "Monday of the Holy Spirit", - "2012-08-15": "Assumption of Mary", + "2012-06-04": "Whit Monday", + "2012-08-15": "Assumption Day", "2012-10-01": "Cyprus Independence Day", - "2012-10-28": "Ochi Day", + "2012-10-28": "Greek National Day", "2012-12-24": "Christmas Eve", "2012-12-25": "Christmas Day", "2012-12-26": "Day After Christmas", "2013-01-01": "New Year's Day", "2013-01-06": "Epiphany", - "2013-03-18": "Clean Monday", + "2013-03-18": "Green Monday", "2013-03-25": "Greek Independence Day", "2013-04-01": "Cyprus National Day", "2013-05-01": "Labor Day", "2013-05-03": "Good Friday", + "2013-05-04": "Holy Saturday", "2013-05-05": "Easter Sunday", "2013-05-06": "Easter Monday", - "2013-06-24": "Monday of the Holy Spirit", - "2013-08-15": "Assumption of Mary", + "2013-05-07": "Easter Tuesday", + "2013-06-24": "Whit Monday", + "2013-08-15": "Assumption Day", "2013-10-01": "Cyprus Independence Day", - "2013-10-28": "Ochi Day", + "2013-10-28": "Greek National Day", "2013-12-24": "Christmas Eve", "2013-12-25": "Christmas Day", "2013-12-26": "Day After Christmas", "2014-01-01": "New Year's Day", "2014-01-06": "Epiphany", - "2014-03-03": "Clean Monday", + "2014-03-03": "Green Monday", "2014-03-25": "Greek Independence Day", "2014-04-01": "Cyprus National Day", "2014-04-18": "Good Friday", + "2014-04-19": "Holy Saturday", "2014-04-20": "Easter Sunday", "2014-04-21": "Easter Monday", + "2014-04-22": "Easter Tuesday", "2014-05-01": "Labor Day", - "2014-06-09": "Monday of the Holy Spirit", - "2014-08-15": "Assumption of Mary", + "2014-06-09": "Whit Monday", + "2014-08-15": "Assumption Day", "2014-10-01": "Cyprus Independence Day", - "2014-10-28": "Ochi Day", + "2014-10-28": "Greek National Day", "2014-12-24": "Christmas Eve", "2014-12-25": "Christmas Day", "2014-12-26": "Day After Christmas", "2015-01-01": "New Year's Day", "2015-01-06": "Epiphany", - "2015-02-23": "Clean Monday", + "2015-02-23": "Green Monday", "2015-03-25": "Greek Independence Day", "2015-04-01": "Cyprus National Day", "2015-04-10": "Good Friday", + "2015-04-11": "Holy Saturday", "2015-04-12": "Easter Sunday", "2015-04-13": "Easter Monday", + "2015-04-14": "Easter Tuesday", "2015-05-01": "Labor Day", - "2015-06-01": "Monday of the Holy Spirit", - "2015-08-15": "Assumption of Mary", + "2015-06-01": "Whit Monday", + "2015-08-15": "Assumption Day", "2015-10-01": "Cyprus Independence Day", - "2015-10-28": "Ochi Day", + "2015-10-28": "Greek National Day", "2015-12-24": "Christmas Eve", "2015-12-25": "Christmas Day", "2015-12-26": "Day After Christmas", "2016-01-01": "New Year's Day", "2016-01-06": "Epiphany", - "2016-03-14": "Clean Monday", + "2016-03-14": "Green Monday", "2016-03-25": "Greek Independence Day", "2016-04-01": "Cyprus National Day", "2016-04-29": "Good Friday", + "2016-04-30": "Holy Saturday", "2016-05-01": "Easter Sunday; Labor Day", "2016-05-02": "Easter Monday", - "2016-06-20": "Monday of the Holy Spirit", - "2016-08-15": "Assumption of Mary", + "2016-05-03": "Easter Tuesday", + "2016-06-20": "Whit Monday", + "2016-08-15": "Assumption Day", "2016-10-01": "Cyprus Independence Day", - "2016-10-28": "Ochi Day", + "2016-10-28": "Greek National Day", "2016-12-24": "Christmas Eve", "2016-12-25": "Christmas Day", "2016-12-26": "Day After Christmas", "2017-01-01": "New Year's Day", "2017-01-06": "Epiphany", - "2017-02-27": "Clean Monday", + "2017-02-27": "Green Monday", "2017-03-25": "Greek Independence Day", "2017-04-01": "Cyprus National Day", "2017-04-14": "Good Friday", + "2017-04-15": "Holy Saturday", "2017-04-16": "Easter Sunday", "2017-04-17": "Easter Monday", + "2017-04-18": "Easter Tuesday", "2017-05-01": "Labor Day", - "2017-06-05": "Monday of the Holy Spirit", - "2017-08-15": "Assumption of Mary", + "2017-06-05": "Whit Monday", + "2017-08-15": "Assumption Day", "2017-10-01": "Cyprus Independence Day", - "2017-10-28": "Ochi Day", + "2017-10-28": "Greek National Day", "2017-12-24": "Christmas Eve", "2017-12-25": "Christmas Day", "2017-12-26": "Day After Christmas", "2018-01-01": "New Year's Day", "2018-01-06": "Epiphany", - "2018-02-19": "Clean Monday", + "2018-02-19": "Green Monday", "2018-03-25": "Greek Independence Day", "2018-04-01": "Cyprus National Day", "2018-04-06": "Good Friday", + "2018-04-07": "Holy Saturday", "2018-04-08": "Easter Sunday", "2018-04-09": "Easter Monday", + "2018-04-10": "Easter Tuesday", "2018-05-01": "Labor Day", - "2018-05-28": "Monday of the Holy Spirit", - "2018-08-15": "Assumption of Mary", + "2018-05-28": "Whit Monday", + "2018-08-15": "Assumption Day", "2018-10-01": "Cyprus Independence Day", - "2018-10-28": "Ochi Day", + "2018-10-28": "Greek National Day", "2018-12-24": "Christmas Eve", "2018-12-25": "Christmas Day", "2018-12-26": "Day After Christmas", "2019-01-01": "New Year's Day", "2019-01-06": "Epiphany", - "2019-03-11": "Clean Monday", + "2019-03-11": "Green Monday", "2019-03-25": "Greek Independence Day", "2019-04-01": "Cyprus National Day", "2019-04-26": "Good Friday", + "2019-04-27": "Holy Saturday", "2019-04-28": "Easter Sunday", "2019-04-29": "Easter Monday", + "2019-04-30": "Easter Tuesday", "2019-05-01": "Labor Day", - "2019-06-17": "Monday of the Holy Spirit", - "2019-08-15": "Assumption of Mary", + "2019-06-17": "Whit Monday", + "2019-08-15": "Assumption Day", "2019-10-01": "Cyprus Independence Day", - "2019-10-28": "Ochi Day", + "2019-10-28": "Greek National Day", "2019-12-24": "Christmas Eve", "2019-12-25": "Christmas Day", "2019-12-26": "Day After Christmas", "2020-01-01": "New Year's Day", "2020-01-06": "Epiphany", - "2020-03-02": "Clean Monday", + "2020-03-02": "Green Monday", "2020-03-25": "Greek Independence Day", "2020-04-01": "Cyprus National Day", "2020-04-17": "Good Friday", + "2020-04-18": "Holy Saturday", "2020-04-19": "Easter Sunday", "2020-04-20": "Easter Monday", + "2020-04-21": "Easter Tuesday", "2020-05-01": "Labor Day", - "2020-06-08": "Monday of the Holy Spirit", - "2020-08-15": "Assumption of Mary", + "2020-06-08": "Whit Monday", + "2020-08-15": "Assumption Day", "2020-10-01": "Cyprus Independence Day", - "2020-10-28": "Ochi Day", + "2020-10-28": "Greek National Day", "2020-12-24": "Christmas Eve", "2020-12-25": "Christmas Day", "2020-12-26": "Day After Christmas", "2021-01-01": "New Year's Day", "2021-01-06": "Epiphany", - "2021-03-15": "Clean Monday", + "2021-03-15": "Green Monday", "2021-03-25": "Greek Independence Day", "2021-04-01": "Cyprus National Day", "2021-04-30": "Good Friday", - "2021-05-01": "Labor Day", + "2021-05-01": "Holy Saturday; Labor Day", "2021-05-02": "Easter Sunday", "2021-05-03": "Easter Monday", - "2021-06-21": "Monday of the Holy Spirit", - "2021-08-15": "Assumption of Mary", + "2021-05-04": "Easter Tuesday", + "2021-06-21": "Whit Monday", + "2021-08-15": "Assumption Day", "2021-10-01": "Cyprus Independence Day", - "2021-10-28": "Ochi Day", + "2021-10-28": "Greek National Day", "2021-12-24": "Christmas Eve", "2021-12-25": "Christmas Day", "2021-12-26": "Day After Christmas", "2022-01-01": "New Year's Day", "2022-01-06": "Epiphany", - "2022-03-07": "Clean Monday", + "2022-03-07": "Green Monday", "2022-03-25": "Greek Independence Day", "2022-04-01": "Cyprus National Day", "2022-04-22": "Good Friday", + "2022-04-23": "Holy Saturday", "2022-04-24": "Easter Sunday", "2022-04-25": "Easter Monday", + "2022-04-26": "Easter Tuesday", "2022-05-01": "Labor Day", - "2022-06-13": "Monday of the Holy Spirit", - "2022-08-15": "Assumption of Mary", + "2022-06-13": "Whit Monday", + "2022-08-15": "Assumption Day", "2022-10-01": "Cyprus Independence Day", - "2022-10-28": "Ochi Day", + "2022-10-28": "Greek National Day", "2022-12-24": "Christmas Eve", "2022-12-25": "Christmas Day", "2022-12-26": "Day After Christmas", "2023-01-01": "New Year's Day", "2023-01-06": "Epiphany", - "2023-02-27": "Clean Monday", + "2023-02-27": "Green Monday", "2023-03-25": "Greek Independence Day", "2023-04-01": "Cyprus National Day", "2023-04-14": "Good Friday", + "2023-04-15": "Holy Saturday", "2023-04-16": "Easter Sunday", "2023-04-17": "Easter Monday", + "2023-04-18": "Easter Tuesday", "2023-05-01": "Labor Day", - "2023-06-05": "Monday of the Holy Spirit", - "2023-08-15": "Assumption of Mary", + "2023-06-05": "Whit Monday", + "2023-08-15": "Assumption Day", "2023-10-01": "Cyprus Independence Day", - "2023-10-28": "Ochi Day", + "2023-10-28": "Greek National Day", "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2023-12-26": "Day After Christmas", "2024-01-01": "New Year's Day", "2024-01-06": "Epiphany", - "2024-03-18": "Clean Monday", + "2024-03-18": "Green Monday", "2024-03-25": "Greek Independence Day", "2024-04-01": "Cyprus National Day", "2024-05-01": "Labor Day", "2024-05-03": "Good Friday", + "2024-05-04": "Holy Saturday", "2024-05-05": "Easter Sunday", "2024-05-06": "Easter Monday", - "2024-06-24": "Monday of the Holy Spirit", - "2024-08-15": "Assumption of Mary", + "2024-05-07": "Easter Tuesday", + "2024-06-24": "Whit Monday", + "2024-08-15": "Assumption Day", "2024-10-01": "Cyprus Independence Day", - "2024-10-28": "Ochi Day", + "2024-10-28": "Greek National Day", "2024-12-24": "Christmas Eve", "2024-12-25": "Christmas Day", "2024-12-26": "Day After Christmas", "2025-01-01": "New Year's Day", "2025-01-06": "Epiphany", - "2025-03-03": "Clean Monday", + "2025-03-03": "Green Monday", "2025-03-25": "Greek Independence Day", "2025-04-01": "Cyprus National Day", "2025-04-18": "Good Friday", + "2025-04-19": "Holy Saturday", "2025-04-20": "Easter Sunday", "2025-04-21": "Easter Monday", + "2025-04-22": "Easter Tuesday", "2025-05-01": "Labor Day", - "2025-06-09": "Monday of the Holy Spirit", - "2025-08-15": "Assumption of Mary", + "2025-06-09": "Whit Monday", + "2025-08-15": "Assumption Day", "2025-10-01": "Cyprus Independence Day", - "2025-10-28": "Ochi Day", + "2025-10-28": "Greek National Day", "2025-12-24": "Christmas Eve", "2025-12-25": "Christmas Day", "2025-12-26": "Day After Christmas", "2026-01-01": "New Year's Day", "2026-01-06": "Epiphany", - "2026-02-23": "Clean Monday", + "2026-02-23": "Green Monday", "2026-03-25": "Greek Independence Day", "2026-04-01": "Cyprus National Day", "2026-04-10": "Good Friday", + "2026-04-11": "Holy Saturday", "2026-04-12": "Easter Sunday", "2026-04-13": "Easter Monday", + "2026-04-14": "Easter Tuesday", "2026-05-01": "Labor Day", - "2026-06-01": "Monday of the Holy Spirit", - "2026-08-15": "Assumption of Mary", + "2026-06-01": "Whit Monday", + "2026-08-15": "Assumption Day", "2026-10-01": "Cyprus Independence Day", - "2026-10-28": "Ochi Day", + "2026-10-28": "Greek National Day", "2026-12-24": "Christmas Eve", "2026-12-25": "Christmas Day", "2026-12-26": "Day After Christmas", "2027-01-01": "New Year's Day", "2027-01-06": "Epiphany", - "2027-03-15": "Clean Monday", + "2027-03-15": "Green Monday", "2027-03-25": "Greek Independence Day", "2027-04-01": "Cyprus National Day", "2027-04-30": "Good Friday", - "2027-05-01": "Labor Day", + "2027-05-01": "Holy Saturday; Labor Day", "2027-05-02": "Easter Sunday", "2027-05-03": "Easter Monday", - "2027-06-21": "Monday of the Holy Spirit", - "2027-08-15": "Assumption of Mary", + "2027-05-04": "Easter Tuesday", + "2027-06-21": "Whit Monday", + "2027-08-15": "Assumption Day", "2027-10-01": "Cyprus Independence Day", - "2027-10-28": "Ochi Day", + "2027-10-28": "Greek National Day", "2027-12-24": "Christmas Eve", "2027-12-25": "Christmas Day", "2027-12-26": "Day After Christmas", "2028-01-01": "New Year's Day", "2028-01-06": "Epiphany", - "2028-02-28": "Clean Monday", + "2028-02-28": "Green Monday", "2028-03-25": "Greek Independence Day", "2028-04-01": "Cyprus National Day", "2028-04-14": "Good Friday", + "2028-04-15": "Holy Saturday", "2028-04-16": "Easter Sunday", "2028-04-17": "Easter Monday", + "2028-04-18": "Easter Tuesday", "2028-05-01": "Labor Day", - "2028-06-05": "Monday of the Holy Spirit", - "2028-08-15": "Assumption of Mary", + "2028-06-05": "Whit Monday", + "2028-08-15": "Assumption Day", "2028-10-01": "Cyprus Independence Day", - "2028-10-28": "Ochi Day", + "2028-10-28": "Greek National Day", "2028-12-24": "Christmas Eve", "2028-12-25": "Christmas Day", "2028-12-26": "Day After Christmas", "2029-01-01": "New Year's Day", "2029-01-06": "Epiphany", - "2029-02-19": "Clean Monday", + "2029-02-19": "Green Monday", "2029-03-25": "Greek Independence Day", "2029-04-01": "Cyprus National Day", "2029-04-06": "Good Friday", + "2029-04-07": "Holy Saturday", "2029-04-08": "Easter Sunday", "2029-04-09": "Easter Monday", + "2029-04-10": "Easter Tuesday", "2029-05-01": "Labor Day", - "2029-05-28": "Monday of the Holy Spirit", - "2029-08-15": "Assumption of Mary", + "2029-05-28": "Whit Monday", + "2029-08-15": "Assumption Day", "2029-10-01": "Cyprus Independence Day", - "2029-10-28": "Ochi Day", + "2029-10-28": "Greek National Day", "2029-12-24": "Christmas Eve", "2029-12-25": "Christmas Day", "2029-12-26": "Day After Christmas", "2030-01-01": "New Year's Day", "2030-01-06": "Epiphany", - "2030-03-11": "Clean Monday", + "2030-03-11": "Green Monday", "2030-03-25": "Greek Independence Day", "2030-04-01": "Cyprus National Day", "2030-04-26": "Good Friday", + "2030-04-27": "Holy Saturday", "2030-04-28": "Easter Sunday", "2030-04-29": "Easter Monday", + "2030-04-30": "Easter Tuesday", "2030-05-01": "Labor Day", - "2030-06-17": "Monday of the Holy Spirit", - "2030-08-15": "Assumption of Mary", + "2030-06-17": "Whit Monday", + "2030-08-15": "Assumption Day", "2030-10-01": "Cyprus Independence Day", - "2030-10-28": "Ochi Day", + "2030-10-28": "Greek National Day", "2030-12-24": "Christmas Eve", "2030-12-25": "Christmas Day", "2030-12-26": "Day After Christmas", "2031-01-01": "New Year's Day", "2031-01-06": "Epiphany", - "2031-02-24": "Clean Monday", + "2031-02-24": "Green Monday", "2031-03-25": "Greek Independence Day", "2031-04-01": "Cyprus National Day", "2031-04-11": "Good Friday", + "2031-04-12": "Holy Saturday", "2031-04-13": "Easter Sunday", "2031-04-14": "Easter Monday", + "2031-04-15": "Easter Tuesday", "2031-05-01": "Labor Day", - "2031-06-02": "Monday of the Holy Spirit", - "2031-08-15": "Assumption of Mary", + "2031-06-02": "Whit Monday", + "2031-08-15": "Assumption Day", "2031-10-01": "Cyprus Independence Day", - "2031-10-28": "Ochi Day", + "2031-10-28": "Greek National Day", "2031-12-24": "Christmas Eve", "2031-12-25": "Christmas Day", "2031-12-26": "Day After Christmas", "2032-01-01": "New Year's Day", "2032-01-06": "Epiphany", - "2032-03-15": "Clean Monday", + "2032-03-15": "Green Monday", "2032-03-25": "Greek Independence Day", "2032-04-01": "Cyprus National Day", "2032-04-30": "Good Friday", - "2032-05-01": "Labor Day", + "2032-05-01": "Holy Saturday; Labor Day", "2032-05-02": "Easter Sunday", "2032-05-03": "Easter Monday", - "2032-06-21": "Monday of the Holy Spirit", - "2032-08-15": "Assumption of Mary", + "2032-05-04": "Easter Tuesday", + "2032-06-21": "Whit Monday", + "2032-08-15": "Assumption Day", "2032-10-01": "Cyprus Independence Day", - "2032-10-28": "Ochi Day", + "2032-10-28": "Greek National Day", "2032-12-24": "Christmas Eve", "2032-12-25": "Christmas Day", "2032-12-26": "Day After Christmas", "2033-01-01": "New Year's Day", "2033-01-06": "Epiphany", - "2033-03-07": "Clean Monday", + "2033-03-07": "Green Monday", "2033-03-25": "Greek Independence Day", "2033-04-01": "Cyprus National Day", "2033-04-22": "Good Friday", + "2033-04-23": "Holy Saturday", "2033-04-24": "Easter Sunday", "2033-04-25": "Easter Monday", + "2033-04-26": "Easter Tuesday", "2033-05-01": "Labor Day", - "2033-06-13": "Monday of the Holy Spirit", - "2033-08-15": "Assumption of Mary", + "2033-06-13": "Whit Monday", + "2033-08-15": "Assumption Day", "2033-10-01": "Cyprus Independence Day", - "2033-10-28": "Ochi Day", + "2033-10-28": "Greek National Day", "2033-12-24": "Christmas Eve", "2033-12-25": "Christmas Day", "2033-12-26": "Day After Christmas", "2034-01-01": "New Year's Day", "2034-01-06": "Epiphany", - "2034-02-20": "Clean Monday", + "2034-02-20": "Green Monday", "2034-03-25": "Greek Independence Day", "2034-04-01": "Cyprus National Day", "2034-04-07": "Good Friday", + "2034-04-08": "Holy Saturday", "2034-04-09": "Easter Sunday", "2034-04-10": "Easter Monday", + "2034-04-11": "Easter Tuesday", "2034-05-01": "Labor Day", - "2034-05-29": "Monday of the Holy Spirit", - "2034-08-15": "Assumption of Mary", + "2034-05-29": "Whit Monday", + "2034-08-15": "Assumption Day", "2034-10-01": "Cyprus Independence Day", - "2034-10-28": "Ochi Day", + "2034-10-28": "Greek National Day", "2034-12-24": "Christmas Eve", "2034-12-25": "Christmas Day", "2034-12-26": "Day After Christmas", "2035-01-01": "New Year's Day", "2035-01-06": "Epiphany", - "2035-03-12": "Clean Monday", + "2035-03-12": "Green Monday", "2035-03-25": "Greek Independence Day", "2035-04-01": "Cyprus National Day", "2035-04-27": "Good Friday", + "2035-04-28": "Holy Saturday", "2035-04-29": "Easter Sunday", "2035-04-30": "Easter Monday", - "2035-05-01": "Labor Day", - "2035-06-18": "Monday of the Holy Spirit", - "2035-08-15": "Assumption of Mary", + "2035-05-01": "Easter Tuesday; Labor Day", + "2035-06-18": "Whit Monday", + "2035-08-15": "Assumption Day", "2035-10-01": "Cyprus Independence Day", - "2035-10-28": "Ochi Day", + "2035-10-28": "Greek National Day", "2035-12-24": "Christmas Eve", "2035-12-25": "Christmas Day", "2035-12-26": "Day After Christmas", "2036-01-01": "New Year's Day", "2036-01-06": "Epiphany", - "2036-03-03": "Clean Monday", + "2036-03-03": "Green Monday", "2036-03-25": "Greek Independence Day", "2036-04-01": "Cyprus National Day", "2036-04-18": "Good Friday", + "2036-04-19": "Holy Saturday", "2036-04-20": "Easter Sunday", "2036-04-21": "Easter Monday", + "2036-04-22": "Easter Tuesday", "2036-05-01": "Labor Day", - "2036-06-09": "Monday of the Holy Spirit", - "2036-08-15": "Assumption of Mary", + "2036-06-09": "Whit Monday", + "2036-08-15": "Assumption Day", "2036-10-01": "Cyprus Independence Day", - "2036-10-28": "Ochi Day", + "2036-10-28": "Greek National Day", "2036-12-24": "Christmas Eve", "2036-12-25": "Christmas Day", "2036-12-26": "Day After Christmas", "2037-01-01": "New Year's Day", "2037-01-06": "Epiphany", - "2037-02-16": "Clean Monday", + "2037-02-16": "Green Monday", "2037-03-25": "Greek Independence Day", "2037-04-01": "Cyprus National Day", "2037-04-03": "Good Friday", + "2037-04-04": "Holy Saturday", "2037-04-05": "Easter Sunday", "2037-04-06": "Easter Monday", + "2037-04-07": "Easter Tuesday", "2037-05-01": "Labor Day", - "2037-05-25": "Monday of the Holy Spirit", - "2037-08-15": "Assumption of Mary", + "2037-05-25": "Whit Monday", + "2037-08-15": "Assumption Day", "2037-10-01": "Cyprus Independence Day", - "2037-10-28": "Ochi Day", + "2037-10-28": "Greek National Day", "2037-12-24": "Christmas Eve", "2037-12-25": "Christmas Day", "2037-12-26": "Day After Christmas", "2038-01-01": "New Year's Day", "2038-01-06": "Epiphany", - "2038-03-08": "Clean Monday", + "2038-03-08": "Green Monday", "2038-03-25": "Greek Independence Day", "2038-04-01": "Cyprus National Day", "2038-04-23": "Good Friday", + "2038-04-24": "Holy Saturday", "2038-04-25": "Easter Sunday", "2038-04-26": "Easter Monday", + "2038-04-27": "Easter Tuesday", "2038-05-01": "Labor Day", - "2038-06-14": "Monday of the Holy Spirit", - "2038-08-15": "Assumption of Mary", + "2038-06-14": "Whit Monday", + "2038-08-15": "Assumption Day", "2038-10-01": "Cyprus Independence Day", - "2038-10-28": "Ochi Day", + "2038-10-28": "Greek National Day", "2038-12-24": "Christmas Eve", "2038-12-25": "Christmas Day", "2038-12-26": "Day After Christmas", "2039-01-01": "New Year's Day", "2039-01-06": "Epiphany", - "2039-02-28": "Clean Monday", + "2039-02-28": "Green Monday", "2039-03-25": "Greek Independence Day", "2039-04-01": "Cyprus National Day", "2039-04-15": "Good Friday", + "2039-04-16": "Holy Saturday", "2039-04-17": "Easter Sunday", "2039-04-18": "Easter Monday", + "2039-04-19": "Easter Tuesday", "2039-05-01": "Labor Day", - "2039-06-06": "Monday of the Holy Spirit", - "2039-08-15": "Assumption of Mary", + "2039-06-06": "Whit Monday", + "2039-08-15": "Assumption Day", "2039-10-01": "Cyprus Independence Day", - "2039-10-28": "Ochi Day", + "2039-10-28": "Greek National Day", "2039-12-24": "Christmas Eve", "2039-12-25": "Christmas Day", "2039-12-26": "Day After Christmas", "2040-01-01": "New Year's Day", "2040-01-06": "Epiphany", - "2040-03-19": "Clean Monday", + "2040-03-19": "Green Monday", "2040-03-25": "Greek Independence Day", "2040-04-01": "Cyprus National Day", "2040-05-01": "Labor Day", "2040-05-04": "Good Friday", + "2040-05-05": "Holy Saturday", "2040-05-06": "Easter Sunday", "2040-05-07": "Easter Monday", - "2040-06-25": "Monday of the Holy Spirit", - "2040-08-15": "Assumption of Mary", + "2040-05-08": "Easter Tuesday", + "2040-06-25": "Whit Monday", + "2040-08-15": "Assumption Day", "2040-10-01": "Cyprus Independence Day", - "2040-10-28": "Ochi Day", + "2040-10-28": "Greek National Day", "2040-12-24": "Christmas Eve", "2040-12-25": "Christmas Day", "2040-12-26": "Day After Christmas", "2041-01-01": "New Year's Day", "2041-01-06": "Epiphany", - "2041-03-04": "Clean Monday", + "2041-03-04": "Green Monday", "2041-03-25": "Greek Independence Day", "2041-04-01": "Cyprus National Day", "2041-04-19": "Good Friday", + "2041-04-20": "Holy Saturday", "2041-04-21": "Easter Sunday", "2041-04-22": "Easter Monday", + "2041-04-23": "Easter Tuesday", "2041-05-01": "Labor Day", - "2041-06-10": "Monday of the Holy Spirit", - "2041-08-15": "Assumption of Mary", + "2041-06-10": "Whit Monday", + "2041-08-15": "Assumption Day", "2041-10-01": "Cyprus Independence Day", - "2041-10-28": "Ochi Day", + "2041-10-28": "Greek National Day", "2041-12-24": "Christmas Eve", "2041-12-25": "Christmas Day", "2041-12-26": "Day After Christmas", "2042-01-01": "New Year's Day", "2042-01-06": "Epiphany", - "2042-02-24": "Clean Monday", + "2042-02-24": "Green Monday", "2042-03-25": "Greek Independence Day", "2042-04-01": "Cyprus National Day", "2042-04-11": "Good Friday", + "2042-04-12": "Holy Saturday", "2042-04-13": "Easter Sunday", "2042-04-14": "Easter Monday", + "2042-04-15": "Easter Tuesday", "2042-05-01": "Labor Day", - "2042-06-02": "Monday of the Holy Spirit", - "2042-08-15": "Assumption of Mary", + "2042-06-02": "Whit Monday", + "2042-08-15": "Assumption Day", "2042-10-01": "Cyprus Independence Day", - "2042-10-28": "Ochi Day", + "2042-10-28": "Greek National Day", "2042-12-24": "Christmas Eve", "2042-12-25": "Christmas Day", "2042-12-26": "Day After Christmas", "2043-01-01": "New Year's Day", "2043-01-06": "Epiphany", - "2043-03-16": "Clean Monday", + "2043-03-16": "Green Monday", "2043-03-25": "Greek Independence Day", "2043-04-01": "Cyprus National Day", "2043-05-01": "Good Friday; Labor Day", + "2043-05-02": "Holy Saturday", "2043-05-03": "Easter Sunday", "2043-05-04": "Easter Monday", - "2043-06-22": "Monday of the Holy Spirit", - "2043-08-15": "Assumption of Mary", + "2043-05-05": "Easter Tuesday", + "2043-06-22": "Whit Monday", + "2043-08-15": "Assumption Day", "2043-10-01": "Cyprus Independence Day", - "2043-10-28": "Ochi Day", + "2043-10-28": "Greek National Day", "2043-12-24": "Christmas Eve", "2043-12-25": "Christmas Day", "2043-12-26": "Day After Christmas", "2044-01-01": "New Year's Day", "2044-01-06": "Epiphany", - "2044-03-07": "Clean Monday", + "2044-03-07": "Green Monday", "2044-03-25": "Greek Independence Day", "2044-04-01": "Cyprus National Day", "2044-04-22": "Good Friday", + "2044-04-23": "Holy Saturday", "2044-04-24": "Easter Sunday", "2044-04-25": "Easter Monday", + "2044-04-26": "Easter Tuesday", "2044-05-01": "Labor Day", - "2044-06-13": "Monday of the Holy Spirit", - "2044-08-15": "Assumption of Mary", + "2044-06-13": "Whit Monday", + "2044-08-15": "Assumption Day", "2044-10-01": "Cyprus Independence Day", - "2044-10-28": "Ochi Day", + "2044-10-28": "Greek National Day", "2044-12-24": "Christmas Eve", "2044-12-25": "Christmas Day", "2044-12-26": "Day After Christmas", "2045-01-01": "New Year's Day", "2045-01-06": "Epiphany", - "2045-02-20": "Clean Monday", + "2045-02-20": "Green Monday", "2045-03-25": "Greek Independence Day", "2045-04-01": "Cyprus National Day", "2045-04-07": "Good Friday", + "2045-04-08": "Holy Saturday", "2045-04-09": "Easter Sunday", "2045-04-10": "Easter Monday", + "2045-04-11": "Easter Tuesday", "2045-05-01": "Labor Day", - "2045-05-29": "Monday of the Holy Spirit", - "2045-08-15": "Assumption of Mary", + "2045-05-29": "Whit Monday", + "2045-08-15": "Assumption Day", "2045-10-01": "Cyprus Independence Day", - "2045-10-28": "Ochi Day", + "2045-10-28": "Greek National Day", "2045-12-24": "Christmas Eve", "2045-12-25": "Christmas Day", "2045-12-26": "Day After Christmas", "2046-01-01": "New Year's Day", "2046-01-06": "Epiphany", - "2046-03-12": "Clean Monday", + "2046-03-12": "Green Monday", "2046-03-25": "Greek Independence Day", "2046-04-01": "Cyprus National Day", "2046-04-27": "Good Friday", + "2046-04-28": "Holy Saturday", "2046-04-29": "Easter Sunday", "2046-04-30": "Easter Monday", - "2046-05-01": "Labor Day", - "2046-06-18": "Monday of the Holy Spirit", - "2046-08-15": "Assumption of Mary", + "2046-05-01": "Easter Tuesday; Labor Day", + "2046-06-18": "Whit Monday", + "2046-08-15": "Assumption Day", "2046-10-01": "Cyprus Independence Day", - "2046-10-28": "Ochi Day", + "2046-10-28": "Greek National Day", "2046-12-24": "Christmas Eve", "2046-12-25": "Christmas Day", "2046-12-26": "Day After Christmas", "2047-01-01": "New Year's Day", "2047-01-06": "Epiphany", - "2047-03-04": "Clean Monday", + "2047-03-04": "Green Monday", "2047-03-25": "Greek Independence Day", "2047-04-01": "Cyprus National Day", "2047-04-19": "Good Friday", + "2047-04-20": "Holy Saturday", "2047-04-21": "Easter Sunday", "2047-04-22": "Easter Monday", + "2047-04-23": "Easter Tuesday", "2047-05-01": "Labor Day", - "2047-06-10": "Monday of the Holy Spirit", - "2047-08-15": "Assumption of Mary", + "2047-06-10": "Whit Monday", + "2047-08-15": "Assumption Day", "2047-10-01": "Cyprus Independence Day", - "2047-10-28": "Ochi Day", + "2047-10-28": "Greek National Day", "2047-12-24": "Christmas Eve", "2047-12-25": "Christmas Day", "2047-12-26": "Day After Christmas", "2048-01-01": "New Year's Day", "2048-01-06": "Epiphany", - "2048-02-17": "Clean Monday", + "2048-02-17": "Green Monday", "2048-03-25": "Greek Independence Day", "2048-04-01": "Cyprus National Day", "2048-04-03": "Good Friday", + "2048-04-04": "Holy Saturday", "2048-04-05": "Easter Sunday", "2048-04-06": "Easter Monday", + "2048-04-07": "Easter Tuesday", "2048-05-01": "Labor Day", - "2048-05-25": "Monday of the Holy Spirit", - "2048-08-15": "Assumption of Mary", + "2048-05-25": "Whit Monday", + "2048-08-15": "Assumption Day", "2048-10-01": "Cyprus Independence Day", - "2048-10-28": "Ochi Day", + "2048-10-28": "Greek National Day", "2048-12-24": "Christmas Eve", "2048-12-25": "Christmas Day", "2048-12-26": "Day After Christmas", "2049-01-01": "New Year's Day", "2049-01-06": "Epiphany", - "2049-03-08": "Clean Monday", + "2049-03-08": "Green Monday", "2049-03-25": "Greek Independence Day", "2049-04-01": "Cyprus National Day", "2049-04-23": "Good Friday", + "2049-04-24": "Holy Saturday", "2049-04-25": "Easter Sunday", "2049-04-26": "Easter Monday", + "2049-04-27": "Easter Tuesday", "2049-05-01": "Labor Day", - "2049-06-14": "Monday of the Holy Spirit", - "2049-08-15": "Assumption of Mary", + "2049-06-14": "Whit Monday", + "2049-08-15": "Assumption Day", "2049-10-01": "Cyprus Independence Day", - "2049-10-28": "Ochi Day", + "2049-10-28": "Greek National Day", "2049-12-24": "Christmas Eve", "2049-12-25": "Christmas Day", "2049-12-26": "Day After Christmas", "2050-01-01": "New Year's Day", "2050-01-06": "Epiphany", - "2050-02-28": "Clean Monday", + "2050-02-28": "Green Monday", "2050-03-25": "Greek Independence Day", "2050-04-01": "Cyprus National Day", "2050-04-15": "Good Friday", + "2050-04-16": "Holy Saturday", "2050-04-17": "Easter Sunday", "2050-04-18": "Easter Monday", + "2050-04-19": "Easter Tuesday", "2050-05-01": "Labor Day", - "2050-06-06": "Monday of the Holy Spirit", - "2050-08-15": "Assumption of Mary", + "2050-06-06": "Whit Monday", + "2050-08-15": "Assumption Day", "2050-10-01": "Cyprus Independence Day", - "2050-10-28": "Ochi Day", + "2050-10-28": "Greek National Day", "2050-12-24": "Christmas Eve", "2050-12-25": "Christmas Day", "2050-12-26": "Day After Christmas" diff --git a/tests/countries/test_cyprus.py b/tests/countries/test_cyprus.py index d5069f9b8..ba26f8ed3 100644 --- a/tests/countries/test_cyprus.py +++ b/tests/countries/test_cyprus.py @@ -9,8 +9,7 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) -from datetime import date - +from holidays.constants import BANK, OPTIONAL, PUBLIC from holidays.countries.cyprus import Cyprus, CY, CYP from tests.common import TestCase @@ -18,142 +17,196 @@ class TestCyprus(TestCase): @classmethod def setUpClass(cls): - super().setUpClass(Cyprus) + super().setUpClass(Cyprus, years=range(2000, 2025)) def test_country_aliases(self): self.assertCountryAliases(Cyprus, CY, CYP) + def test_no_holidays(self): + self.assertNoHolidays(Cyprus(categories=(BANK, OPTIONAL, PUBLIC), years=1960)) + def test_fixed_holidays(self): - years = range(2000, 2025) - for y in years: - fdays = ( - (date(y, 1, 1), "Πρωτοχρονιά"), - (date(y, 1, 6), "Θεοφάνεια"), - (date(y, 3, 25), "Εικοστή Πέμπτη Μαρτίου"), - (date(y, 4, 1), "1η Απριλίου"), - (date(y, 5, 1), "Εργατική Πρωτομαγιά"), - (date(y, 8, 15), "Κοίμηση της Θεοτόκου"), - (date(y, 10, 28), "Ημέρα του Όχι"), - (date(y, 12, 25), "Χριστούγεννα"), - (date(y, 12, 26), "Δεύτερη μέρα Χριστουγέννων"), - ) - - for d, dstr in fdays: - self.assertIn(d, self.holidays) - self.assertIn(dstr, self.holidays[d]) - - def test_cy_clean_monday(self): - checkdates = ( - date(2018, 2, 19), - date(2019, 3, 11), - date(2020, 3, 2), - date(2021, 3, 15), - date(2022, 3, 7), - date(2023, 2, 27), - date(2024, 3, 18), + fdays = ( + (1, 1, "Πρωτοχρονιά"), + (1, 6, "Ημέρα των Θεοφανίων"), + (3, 25, "Ημέρα της Ελληνικής Ανεξαρτησίας"), + (4, 1, "Εθνική Ημέρα Κύπρου"), + (5, 1, "Πρωτομαγιά"), + (8, 15, "Κοίμηση της Θεοτόκου"), + (10, 1, "Ημέρα της Κυπριακής Ανεξαρτησίας"), + (10, 28, "Ημέρα του Όχι"), + (12, 25, "Χριστούγεννα"), + (12, 26, "Επομένη Χριστουγέννων"), + ) + for y in range(2000, 2025): + for m, d, name in fdays: + self.assertHolidayName(name, f"{y}-{m}-{d}") + + def test_green_monday(self): + self.assertHolidayName( + "Καθαρά Δευτέρα", + "2018-02-19", + "2019-03-11", + "2020-03-02", + "2021-03-15", + "2022-03-07", + "2023-02-27", + "2024-03-18", ) - for d in checkdates: - self.assertIn(d, self.holidays) - self.assertIn("Καθαρά Δευτέρα", self.holidays[d]) - - def test_cy_good_friday(self): - checkdates = ( - date(2018, 4, 6), - date(2019, 4, 26), - date(2020, 4, 17), - date(2021, 4, 30), - date(2022, 4, 22), - date(2023, 4, 14), - date(2024, 5, 3), + def test_good_friday(self): + self.assertHolidayName( + "Μεγάλη Παρασκευή", + "2018-04-06", + "2019-04-26", + "2020-04-17", + "2021-04-30", + "2022-04-22", + "2023-04-14", + "2024-05-03", ) - for d in checkdates: - self.assertIn(d, self.holidays) - self.assertIn("Μεγάλη Παρασκευή", self.holidays[d]) - - def test_cy_easter_sunday(self): - checkdates = ( - date(2018, 4, 8), - date(2019, 4, 28), - date(2020, 4, 19), - date(2021, 5, 2), - date(2022, 4, 24), - date(2023, 4, 16), - date(2024, 5, 5), + def test_easter_sunday(self): + self.assertHolidayName( + "Κυριακή του Πάσχα", + "2018-04-08", + "2019-04-28", + "2020-04-19", + "2021-05-02", + "2022-04-24", + "2023-04-16", + "2024-05-05", ) - for d in checkdates: - self.assertIn(d, self.holidays) - self.assertIn("Κυριακή του Πάσχα", self.holidays[d]) - - def test_cy_easter_monday(self): - checkdates = ( - date(2018, 4, 9), - date(2019, 4, 29), - date(2020, 4, 20), - date(2021, 5, 3), - date(2022, 4, 25), - date(2023, 4, 17), - date(2024, 5, 6), + def test_easter_monday(self): + self.assertHolidayName( + "Δευτέρα της Διακαινησίμου", + "2018-04-09", + "2019-04-29", + "2020-04-20", + "2021-05-03", + "2022-04-25", + "2023-04-17", + "2024-05-06", ) - for d in checkdates: - self.assertIn(d, self.holidays) - self.assertIn("Δευτέρα του Πάσχα", self.holidays[d]) - - def test_cy_monday_of_the_holy_spirit(self): - checkdates = ( - date(2018, 5, 28), - date(2019, 6, 17), - date(2020, 6, 8), - date(2021, 6, 21), - date(2022, 6, 13), - date(2023, 6, 5), - date(2024, 6, 24), + def test_whit_monday(self): + self.assertHolidayName( + "Δευτέρα του Αγίου Πνεύματος", + "2018-05-28", + "2019-06-17", + "2020-06-08", + "2021-06-21", + "2022-06-13", + "2023-06-05", + "2024-06-24", ) - for d in checkdates: - self.assertIn(d, self.holidays) - self.assertIn("Δευτέρα του Αγίου Πνεύματος", self.holidays[d]) + def test_cyprus_independence_day(self): + name = "Ημέρα της Κυπριακής Ανεξαρτησίας" + self.assertHolidayName(name, (f"{year}-10-01" for year in range(1979, 2025))) + self.assertNoHolidayName(name, Cyprus(years=range(1961, 1979))) + + def test_bank_2023(self): + self.assertHolidays( + Cyprus(categories=BANK, years=2023), + ("2023-04-18", "Τρίτη της Διακαινησίμου"), + ) + + def test_optional_2023(self): + self.assertHolidays( + Cyprus(categories=OPTIONAL, years=2023), + ("2023-04-15", "Μεγάλο Σάββατο"), + ("2023-12-24", "Παραμονή Χριστουγέννων"), + ) def test_l10n_default(self): self.assertLocalizedHolidays( - ("2022-01-01", "Πρωτοχρονιά"), - ("2022-01-06", "Θεοφάνεια"), - ("2022-03-07", "Καθαρά Δευτέρα"), - ("2022-03-25", "Εικοστή Πέμπτη Μαρτίου"), - ("2022-04-01", "1η Απριλίου"), - ("2022-04-22", "Μεγάλη Παρασκευή"), - ("2022-04-24", "Κυριακή του Πάσχα"), - ("2022-04-25", "Δευτέρα του Πάσχα"), - ("2022-05-01", "Εργατική Πρωτομαγιά"), - ("2022-06-13", "Δευτέρα του Αγίου Πνεύματος"), - ("2022-08-15", "Κοίμηση της Θεοτόκου"), - ("2022-10-01", "Ημέρα Ανεξαρτησίας της Κύπρου"), - ("2022-10-28", "Ημέρα του Όχι"), - ("2022-12-24", "Παραμονή Χριστουγέννων"), - ("2022-12-25", "Χριστούγεννα"), - ("2022-12-26", "Δεύτερη μέρα Χριστουγέννων"), + ("2023-01-01", "Πρωτοχρονιά"), + ("2023-01-06", "Ημέρα των Θεοφανίων"), + ("2023-02-27", "Καθαρά Δευτέρα"), + ("2023-03-25", "Ημέρα της Ελληνικής Ανεξαρτησίας"), + ("2023-04-01", "Εθνική Ημέρα Κύπρου"), + ("2023-04-14", "Μεγάλη Παρασκευή"), + ("2023-04-15", "Μεγάλο Σάββατο"), + ("2023-04-16", "Κυριακή του Πάσχα"), + ("2023-04-17", "Δευτέρα της Διακαινησίμου"), + ("2023-04-18", "Τρίτη της Διακαινησίμου"), + ("2023-05-01", "Πρωτομαγιά"), + ("2023-06-05", "Δευτέρα του Αγίου Πνεύματος"), + ("2023-08-15", "Κοίμηση της Θεοτόκου"), + ("2023-10-01", "Ημέρα της Κυπριακής Ανεξαρτησίας"), + ("2023-10-28", "Ημέρα του Όχι"), + ("2023-12-24", "Παραμονή Χριστουγέννων"), + ("2023-12-25", "Χριστούγεννα"), + ("2023-12-26", "Επομένη Χριστουγέννων"), + ) + + def test_l10n_en_cy(self): + self.assertLocalizedHolidays( + "en_CY", + ("2023-01-01", "New Year's Day"), + ("2023-01-06", "Epiphany"), + ("2023-02-27", "Green Monday"), + ("2023-03-25", "Greek Independence Day"), + ("2023-04-01", "Cyprus National Day"), + ("2023-04-14", "Good Friday"), + ("2023-04-15", "Holy Saturday"), + ("2023-04-16", "Easter Sunday"), + ("2023-04-17", "Easter Monday"), + ("2023-04-18", "Easter Tuesday"), + ("2023-05-01", "Labour Day"), + ("2023-06-05", "Pentecost"), + ("2023-08-15", "Assumption Day"), + ("2023-10-01", "Cyprus Independence Day"), + ("2023-10-28", "Ochi Day"), + ("2023-12-24", "Christmas Eve"), + ("2023-12-25", "Christmas Day"), + ("2023-12-26", "Day After Christmas"), ) def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", - ("2022-01-01", "New Year's Day"), - ("2022-01-06", "Epiphany"), - ("2022-03-07", "Clean Monday"), - ("2022-03-25", "Greek Independence Day"), - ("2022-04-01", "Cyprus National Day"), - ("2022-04-22", "Good Friday"), - ("2022-04-24", "Easter Sunday"), - ("2022-04-25", "Easter Monday"), - ("2022-05-01", "Labor Day"), - ("2022-06-13", "Monday of the Holy Spirit"), - ("2022-08-15", "Assumption of Mary"), - ("2022-10-01", "Cyprus Independence Day"), - ("2022-10-28", "Ochi Day"), - ("2022-12-24", "Christmas Eve"), - ("2022-12-25", "Christmas Day"), - ("2022-12-26", "Day After Christmas"), + ("2023-01-01", "New Year's Day"), + ("2023-01-06", "Epiphany"), + ("2023-02-27", "Green Monday"), + ("2023-03-25", "Greek Independence Day"), + ("2023-04-01", "Cyprus National Day"), + ("2023-04-14", "Good Friday"), + ("2023-04-15", "Holy Saturday"), + ("2023-04-16", "Easter Sunday"), + ("2023-04-17", "Easter Monday"), + ("2023-04-18", "Easter Tuesday"), + ("2023-05-01", "Labor Day"), + ("2023-06-05", "Whit Monday"), + ("2023-08-15", "Assumption Day"), + ("2023-10-01", "Cyprus Independence Day"), + ("2023-10-28", "Greek National Day"), + ("2023-12-24", "Christmas Eve"), + ("2023-12-25", "Christmas Day"), + ("2023-12-26", "Day After Christmas"), + ) + + def test_l10n_uk(self): + self.assertLocalizedHolidays( + "uk", + ("2023-01-01", "Новий рік"), + ("2023-01-06", "Богоявлення"), + ("2023-02-27", "Чистий понеділок"), + ("2023-03-25", "День незалежності Греції"), + ("2023-04-01", "Національне свято Кіпру"), + ("2023-04-14", "Страсна пʼятниця"), + ("2023-04-15", "Велика субота"), + ("2023-04-16", "Великдень"), + ("2023-04-17", "Великодній понеділок"), + ("2023-04-18", "Великодній вівторок"), + ("2023-05-01", "День праці"), + ("2023-06-05", "День Святого Духа"), + ("2023-08-15", "Успіння Пресвятої Богородиці"), + ("2023-10-01", "День незалежності Кіпру"), + ("2023-10-28", "День Охі"), + ("2023-12-24", "Святий вечір"), + ("2023-12-25", "Різдво Христове"), + ("2023-12-26", "Другий день Різдва"), ) From c7c00b4745b33191ceb057b7bfba51d5314bf832 Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Mon, 8 Jan 2024 10:44:52 -0800 Subject: [PATCH 17/23] Update common tests (#1637) --- tests/common.py | 51 ++++++++-------- tests/countries/test_albania.py | 8 ++- tests/countries/test_algeria.py | 8 ++- tests/countries/test_american_samoa.py | 7 ++- tests/countries/test_andorra.py | 8 ++- tests/countries/test_angola.py | 8 ++- tests/countries/test_argentina.py | 8 ++- tests/countries/test_armenia.py | 8 ++- tests/countries/test_aruba.py | 8 ++- tests/countries/test_australia.py | 8 ++- tests/countries/test_austria.py | 7 ++- tests/countries/test_azerbaijan.py | 8 ++- tests/countries/test_bahamas.py | 8 ++- tests/countries/test_bahrain.py | 8 ++- tests/countries/test_bangladesh.py | 8 ++- tests/countries/test_barbados.py | 8 ++- tests/countries/test_belarus.py | 8 ++- tests/countries/test_belgium.py | 8 ++- tests/countries/test_belize.py | 8 ++- tests/countries/test_bolivia.py | 8 ++- .../countries/test_bosnia_and_herzegovina.py | 7 ++- tests/countries/test_botswana.py | 8 ++- tests/countries/test_brazil.py | 8 ++- tests/countries/test_brunei.py | 8 ++- tests/countries/test_bulgaria.py | 8 ++- tests/countries/test_burkina_faso.py | 8 ++- tests/countries/test_burundi.py | 8 ++- tests/countries/test_cambodia.py | 8 ++- tests/countries/test_cameroon.py | 8 ++- tests/countries/test_canada.py | 8 ++- tests/countries/test_chad.py | 8 ++- tests/countries/test_chile.py | 8 ++- tests/countries/test_china.py | 8 ++- tests/countries/test_colombia.py | 8 ++- tests/countries/test_costa_rica.py | 8 ++- tests/countries/test_croatia.py | 8 ++- tests/countries/test_cuba.py | 8 ++- tests/countries/test_curacao.py | 8 ++- tests/countries/test_cyprus.py | 8 ++- tests/countries/test_czechia.py | 8 ++- tests/countries/test_denmark.py | 8 ++- tests/countries/test_djibouti.py | 8 ++- tests/countries/test_dominican_republic.py | 8 ++- tests/countries/test_ecuador.py | 8 ++- tests/countries/test_egypt.py | 8 ++- tests/countries/test_el_salvador.py | 8 ++- tests/countries/test_estonia.py | 8 ++- tests/countries/test_eswatini.py | 7 ++- tests/countries/test_ethiopia.py | 7 ++- tests/countries/test_finland.py | 8 ++- tests/countries/test_france.py | 7 ++- tests/countries/test_gabon.py | 8 ++- tests/countries/test_georgia.py | 8 ++- tests/countries/test_germany.py | 8 ++- tests/countries/test_greece.py | 8 ++- tests/countries/test_guam.py | 7 ++- tests/countries/test_guatemala.py | 8 ++- tests/countries/test_honduras.py | 8 ++- tests/countries/test_hongkong.py | 8 ++- tests/countries/test_hungary.py | 8 ++- tests/countries/test_iceland.py | 8 ++- tests/countries/test_india.py | 7 ++- tests/countries/test_indonesia.py | 8 ++- tests/countries/test_iran.py | 8 ++- tests/countries/test_ireland.py | 8 ++- tests/countries/test_isle_of_man.py | 8 ++- tests/countries/test_israel.py | 8 ++- tests/countries/test_italy.py | 7 ++- tests/countries/test_jamaica.py | 8 ++- tests/countries/test_japan.py | 8 ++- tests/countries/test_kazakhstan.py | 8 ++- tests/countries/test_kenya.py | 8 ++- tests/countries/test_kyrgyzstan.py | 8 ++- tests/countries/test_laos.py | 8 ++- tests/countries/test_latvia.py | 8 ++- tests/countries/test_lesotho.py | 8 ++- tests/countries/test_liechtenstein.py | 8 ++- tests/countries/test_lithuania.py | 8 ++- tests/countries/test_luxembourg.py | 8 ++- tests/countries/test_madagascar.py | 8 ++- tests/countries/test_malawi.py | 8 ++- tests/countries/test_malaysia.py | 7 ++- tests/countries/test_maldives.py | 8 ++- tests/countries/test_malta.py | 8 ++- tests/countries/test_marshall_islands.py | 7 ++- tests/countries/test_mexico.py | 8 ++- tests/countries/test_moldova.py | 8 ++- tests/countries/test_monaco.py | 8 ++- tests/countries/test_montenegro.py | 8 ++- tests/countries/test_morocco.py | 8 ++- tests/countries/test_mozambique.py | 8 ++- tests/countries/test_namibia.py | 8 ++- tests/countries/test_netherlands.py | 8 ++- tests/countries/test_new_zealand.py | 7 ++- tests/countries/test_nicaragua.py | 8 ++- tests/countries/test_nigeria.py | 8 ++- tests/countries/test_north_macedonia.py | 8 ++- .../test_northern_mariana_islands.py | 7 ++- tests/countries/test_norway.py | 8 ++- tests/countries/test_pakistan.py | 7 ++- tests/countries/test_panama.py | 8 ++- tests/countries/test_papua_new_guinea.py | 8 ++- tests/countries/test_paraguay.py | 7 ++- tests/countries/test_peru.py | 8 ++- tests/countries/test_philippines.py | 8 ++- tests/countries/test_poland.py | 8 ++- tests/countries/test_portugal.py | 7 ++- tests/countries/test_puerto_rico.py | 7 ++- tests/countries/test_romania.py | 8 ++- tests/countries/test_russia.py | 8 ++- tests/countries/test_san_marino.py | 8 ++- tests/countries/test_saudi_arabia.py | 8 ++- tests/countries/test_serbia.py | 7 ++- tests/countries/test_singapore.py | 8 ++- tests/countries/test_slovakia.py | 8 ++- tests/countries/test_slovenia.py | 8 ++- tests/countries/test_south_africa.py | 8 ++- tests/countries/test_south_korea.py | 7 ++- tests/countries/test_spain.py | 7 ++- tests/countries/test_sweden.py | 8 ++- tests/countries/test_switzerland.py | 7 ++- tests/countries/test_taiwan.py | 8 ++- tests/countries/test_tanzania.py | 8 ++- tests/countries/test_thailand.py | 8 ++- tests/countries/test_timor_leste.py | 8 ++- tests/countries/test_tonga.py | 8 ++- tests/countries/test_tunisia.py | 8 ++- tests/countries/test_turkey.py | 7 ++- tests/countries/test_ukraine.py | 8 ++- tests/countries/test_united_arab_emirates.py | 8 ++- tests/countries/test_united_kingdom.py | 9 +-- tests/countries/test_united_states.py | 8 ++- ...st_united_states_minor_outlying_islands.py | 8 ++- .../test_united_states_virgin_islands.py | 7 ++- tests/countries/test_uruguay.py | 8 ++- tests/countries/test_uzbekistan.py | 8 ++- tests/countries/test_vanuatu.py | 8 ++- tests/countries/test_vatican_city.py | 8 ++- tests/countries/test_venezuela.py | 8 ++- tests/countries/test_vietnam.py | 7 ++- tests/countries/test_zambia.py | 8 ++- tests/countries/test_zimbabwe.py | 8 ++- tests/financial/test_european_central_bank.py | 58 ++++++++----------- tests/financial/test_ny_stock_exchange.py | 10 +++- 144 files changed, 738 insertions(+), 486 deletions(-) diff --git a/tests/common.py b/tests/common.py index a77caf0ed..c8809e793 100644 --- a/tests/common.py +++ b/tests/common.py @@ -11,7 +11,6 @@ import os import sys -import unittest import warnings from datetime import date from typing import Generator @@ -25,7 +24,7 @@ PYTHON_VERSION = (sys.version_info.major, sys.version_info.minor) -class TestCase(unittest.TestCase): +class TestCase: """Base class for python-holidays test cases.""" @classmethod @@ -118,36 +117,18 @@ def _verify_type(self, holidays): "`holidays` object must be a subclass of `HolidayBase`", ) - def assertCountryAliases(self, cls, alpha_2, alpha_3): - """Assert country aliases match.""" + def assertAliases(self, cls, *aliases): + """Assert aliases match.""" self.assertTrue( issubclass(cls, HolidayBase), - "Country holidays object must be a subclass of `HolidayBase`", + "The entity object must be a subclass of `HolidayBase`", ) - type_error_message = "Country alias object must be a subclass of the country class." - for alias in (alpha_2, alpha_3): + type_error_message = "The entity alias object must be a subclass of the entity class." + for alias in aliases: self.assertIsNotNone(alias, type_error_message) self.assertTrue(issubclass(alias, cls), type_error_message) - length_error_message = ( - "This method accepts exactly 3 arguments " - "in this specific order: country base class, country alpha-2 " - "alias, and country alpha-3 alias. For example: " - "`self.assertCountryAliases(UnitedStates, US, USA)`" - ) - if len(alpha_2.__name__) != 2: - raise ValueError( - f"{length_error_message}. Alias `{alpha_2.__name__}` doesn't " - "look like alpha-2 country code." - ) - - if len(alpha_3.__name__) != 3: - raise ValueError( - f"{length_error_message}. Alias `{alpha_3.__name__}` doesn't " - "look like alpha-3 country code." - ) - def assertDeprecatedSubdivisions(self, message): warnings.simplefilter("always", category=DeprecationWarning) for subdiv in self.test_class._deprecated_subdivisions: @@ -348,6 +329,26 @@ def assertLocalizedHolidays(self, *args): self._assertLocalizedHolidays(localized_holidays, language) +class CommonTests(TestCase): + """Common test cases for all entities.""" + + +class CommonCountryTests(CommonTests): + """Common test cases for country entities.""" + + def test_code(self): + self.assertTrue(hasattr(self.holidays, "country")) + self.assertFalse(hasattr(self.holidays, "market")) + + +class CommonFinancialTests(CommonTests): + """Common test cases for financial entities.""" + + def test_code(self): + self.assertTrue(hasattr(self.holidays, "market")) + self.assertFalse(hasattr(self.holidays, "country")) + + class SundayHolidays(TestCase): """Common class to test countries with Sundays as a holidays.""" diff --git a/tests/countries/test_albania.py b/tests/countries/test_albania.py index 0b6e3db6c..781cfc941 100644 --- a/tests/countries/test_albania.py +++ b/tests/countries/test_albania.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.albania import Albania, AL, ALB -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestAlbania(TestCase): +class TestAlbania(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Albania, years=range(1990, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Albania, AL, ALB) + self.assertAliases(Albania, AL, ALB) def test_special_holidays(self): self.assertHoliday("2022-03-21") diff --git a/tests/countries/test_algeria.py b/tests/countries/test_algeria.py index f113565ec..2c18e4d59 100644 --- a/tests/countries/test_algeria.py +++ b/tests/countries/test_algeria.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.algeria import Algeria, DZ, DZA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestAlgeria(TestCase): +class TestAlgeria(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Algeria) def test_country_aliases(self): - self.assertCountryAliases(Algeria, DZ, DZA) + self.assertAliases(Algeria, DZ, DZA) def test_2022(self): self.assertHoliday( diff --git a/tests/countries/test_american_samoa.py b/tests/countries/test_american_samoa.py index aa99640b4..db6772987 100644 --- a/tests/countries/test_american_samoa.py +++ b/tests/countries/test_american_samoa.py @@ -10,19 +10,20 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.calendars.gregorian import DEC from holidays.countries.american_samoa import HolidaysAS, AS, ASM -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestAS(TestCase): +class TestAS(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(HolidaysAS) def test_country_aliases(self): - self.assertCountryAliases(HolidaysAS, AS, ASM) + self.assertAliases(HolidaysAS, AS, ASM) def test_as_only(self): """Check for a holiday that is not returned by US unless the diff --git a/tests/countries/test_andorra.py b/tests/countries/test_andorra.py index 973aa8dcb..e15484f56 100644 --- a/tests/countries/test_andorra.py +++ b/tests/countries/test_andorra.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.andorra import Andorra, AD, AND -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestAndorra(TestCase): +class TestAndorra(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Andorra) def test_country_aliases(self): - self.assertCountryAliases(Andorra, AD, AND) + self.assertAliases(Andorra, AD, AND) def test_2022(self): self.assertHolidays( diff --git a/tests/countries/test_angola.py b/tests/countries/test_angola.py index 6c6a08226..462d01ecc 100644 --- a/tests/countries/test_angola.py +++ b/tests/countries/test_angola.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.angola import Angola, AO, AGO -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestAngola(TestCase): +class TestAngola(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Angola, years=range(1975, 2050), years_non_observed=range(2000, 2030)) def test_country_aliases(self): - self.assertCountryAliases(Angola, AO, AGO) + self.assertAliases(Angola, AO, AGO) def test_no_holidays(self): self.assertNoHolidays(Angola(years=1974)) diff --git a/tests/countries/test_argentina.py b/tests/countries/test_argentina.py index 145230d92..1c5ee614d 100644 --- a/tests/countries/test_argentina.py +++ b/tests/countries/test_argentina.py @@ -9,11 +9,13 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.argentina import Argentina, AR, ARG -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestArgentina(TestCase): +class TestArgentina(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass( @@ -21,7 +23,7 @@ def setUpClass(cls): ) def test_country_aliases(self): - self.assertCountryAliases(Argentina, AR, ARG) + self.assertAliases(Argentina, AR, ARG) def test_new_years_day(self): self.assertHoliday(f"{year}-01-01" for year in range(1950, 2050)) diff --git a/tests/countries/test_armenia.py b/tests/countries/test_armenia.py index 0f18aba77..22a4538e0 100644 --- a/tests/countries/test_armenia.py +++ b/tests/countries/test_armenia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.armenia import Armenia, AM, ARM -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestArmenia(TestCase): +class TestArmenia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Armenia, years=range(1991, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Armenia, AM, ARM) + self.assertAliases(Armenia, AM, ARM) def test_no_holidays(self): self.assertNoHolidays(Armenia(years=1990)) diff --git a/tests/countries/test_aruba.py b/tests/countries/test_aruba.py index e6e1e8085..698605c2e 100644 --- a/tests/countries/test_aruba.py +++ b/tests/countries/test_aruba.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.aruba import Aruba, AW, ABW -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestAruba(TestCase): +class TestAruba(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Aruba, years=range(1947, 2077)) def test_country_aliases(self): - self.assertCountryAliases(Aruba, AW, ABW) + self.assertAliases(Aruba, AW, ABW) def test_no_holidays(self): self.assertNoHolidays(Aruba(years=1946)) diff --git a/tests/countries/test_australia.py b/tests/countries/test_australia.py index fe4615b14..845cfc62a 100644 --- a/tests/countries/test_australia.py +++ b/tests/countries/test_australia.py @@ -9,11 +9,13 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.australia import Australia, AU, AUS -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestAustralia(TestCase): +class TestAustralia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): years = range(1900, 2050) @@ -23,7 +25,7 @@ def setUpClass(cls): } def test_country_aliases(self): - self.assertCountryAliases(Australia, AU, AUS) + self.assertAliases(Australia, AU, AUS) def test_new_years(self): name = "New Year's Day" diff --git a/tests/countries/test_austria.py b/tests/countries/test_austria.py index 33306ec7b..195bce141 100644 --- a/tests/countries/test_austria.py +++ b/tests/countries/test_austria.py @@ -10,19 +10,20 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase from holidays.constants import BANK from holidays.countries.austria import Austria, AT, AUT -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestAustria(TestCase): +class TestAustria(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Austria, years=range(1900, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Austria, AT, AUT) + self.assertAliases(Austria, AT, AUT) def test_new_years(self): self.assertHolidayName("Neujahr", (f"{year}-01-01" for year in range(1900, 2050))) diff --git a/tests/countries/test_azerbaijan.py b/tests/countries/test_azerbaijan.py index 372e659a7..297d2fdd6 100644 --- a/tests/countries/test_azerbaijan.py +++ b/tests/countries/test_azerbaijan.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import PUBLIC, WORKDAY from holidays.countries.azerbaijan import Azerbaijan, AZ, AZE -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestAzerbaijan(TestCase): +class TestAzerbaijan(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Azerbaijan, years=range(1990, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Azerbaijan, AZ, AZE) + self.assertAliases(Azerbaijan, AZ, AZE) def test_no_holidays(self): self.assertNoHolidays(Azerbaijan(categories=(PUBLIC, WORKDAY), years=1989)) diff --git a/tests/countries/test_bahamas.py b/tests/countries/test_bahamas.py index c3420d392..55ea1e6ee 100644 --- a/tests/countries/test_bahamas.py +++ b/tests/countries/test_bahamas.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.bahamas import Bahamas, BS, BHS -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBahamas(TestCase): +class TestBahamas(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Bahamas, years=range(1974, 2050), years_non_observed=range(1974, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Bahamas, BS, BHS) + self.assertAliases(Bahamas, BS, BHS) def test_no_holidays(self): self.assertNoHolidays(Bahamas(years=1973)) diff --git a/tests/countries/test_bahrain.py b/tests/countries/test_bahrain.py index ee31f4730..568aac662 100644 --- a/tests/countries/test_bahrain.py +++ b/tests/countries/test_bahrain.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.bahrain import Bahrain, BH, BAH -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBahrain(TestCase): +class TestBahrain(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Bahrain) def test_country_aliases(self): - self.assertCountryAliases(Bahrain, BH, BAH) + self.assertAliases(Bahrain, BH, BAH) def test_2022(self): self.assertHoliday( diff --git a/tests/countries/test_bangladesh.py b/tests/countries/test_bangladesh.py index f0eed098e..17e21f1cf 100644 --- a/tests/countries/test_bangladesh.py +++ b/tests/countries/test_bangladesh.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.bangladesh import Bangladesh, BD, BGD -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBangladesh(TestCase): +class TestBangladesh(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Bangladesh) def test_country_aliases(self): - self.assertCountryAliases(Bangladesh, BD, BGD) + self.assertAliases(Bangladesh, BD, BGD) def test_2022(self): self.assertHolidays( diff --git a/tests/countries/test_barbados.py b/tests/countries/test_barbados.py index ba5ea6a22..354ac7880 100644 --- a/tests/countries/test_barbados.py +++ b/tests/countries/test_barbados.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.barbados import Barbados, BB, BRB -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBarbados(TestCase): +class TestBarbados(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Barbados, years=range(1969, 2050), years_non_observed=range(2000, 2024)) def test_country_aliases(self): - self.assertCountryAliases(Barbados, BB, BRB) + self.assertAliases(Barbados, BB, BRB) def test_no_holidays(self): self.assertNoHolidays(Barbados(years=1968)) diff --git a/tests/countries/test_belarus.py b/tests/countries/test_belarus.py index 811750aec..948aa4561 100644 --- a/tests/countries/test_belarus.py +++ b/tests/countries/test_belarus.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.belarus import Belarus, BY, BLR -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBelarus(TestCase): +class TestBelarus(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Belarus) def test_country_aliases(self): - self.assertCountryAliases(Belarus, BY, BLR) + self.assertAliases(Belarus, BY, BLR) def test_no_holidays(self): self.assertNoHolidays(Belarus(years=1997)) diff --git a/tests/countries/test_belgium.py b/tests/countries/test_belgium.py index dd9c8bc0d..3b9ef09af 100644 --- a/tests/countries/test_belgium.py +++ b/tests/countries/test_belgium.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import BANK from holidays.countries.belgium import Belgium, BE, BEL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBelgium(TestCase): +class TestBelgium(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Belgium) def test_country_aliases(self): - self.assertCountryAliases(Belgium, BE, BEL) + self.assertAliases(Belgium, BE, BEL) def test_2020(self): self.assertHolidays( diff --git a/tests/countries/test_belize.py b/tests/countries/test_belize.py index 569f30f3d..74796cf23 100644 --- a/tests/countries/test_belize.py +++ b/tests/countries/test_belize.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.belize import Belize, BZ, BLZ -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBelize(TestCase): +class TestBelize(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Belize, years=range(1982, 2050), years_non_observed=range(1982, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Belize, BZ, BLZ) + self.assertAliases(Belize, BZ, BLZ) def test_no_holidays(self): self.assertNoHolidays(Belize(years=1981)) diff --git a/tests/countries/test_bolivia.py b/tests/countries/test_bolivia.py index d853c11bf..5e6c0fc7a 100644 --- a/tests/countries/test_bolivia.py +++ b/tests/countries/test_bolivia.py @@ -10,17 +10,19 @@ # License: MIT (see LICENSE file) # Copyright: Kateryna Golovanova , 2022 +from unittest import TestCase + from holidays.countries.bolivia import Bolivia, BO, BOL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBolivia(TestCase): +class TestBolivia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Bolivia, years=range(1980, 2050), years_non_observed=range(2000, 2024)) def test_country_aliases(self): - self.assertCountryAliases(Bolivia, BO, BOL) + self.assertAliases(Bolivia, BO, BOL) def test_no_holidays(self): self.assertNoHolidays(Bolivia(years=1824)) diff --git a/tests/countries/test_bosnia_and_herzegovina.py b/tests/countries/test_bosnia_and_herzegovina.py index a0d7702cd..24cd437de 100644 --- a/tests/countries/test_bosnia_and_herzegovina.py +++ b/tests/countries/test_bosnia_and_herzegovina.py @@ -11,12 +11,13 @@ # Copyright: Kateryna Golovanova , 2022 import warnings +from unittest import TestCase from holidays.countries.bosnia_and_herzegovina import BosniaAndHerzegovina, BA, BIH -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBosniaAndHerzegovina(TestCase): +class TestBosniaAndHerzegovina(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): years = range(2000, 2030) @@ -33,7 +34,7 @@ def setUp(self): warnings.simplefilter("ignore", category=DeprecationWarning) def test_country_aliases(self): - self.assertCountryAliases(BosniaAndHerzegovina, BA, BIH) + self.assertAliases(BosniaAndHerzegovina, BA, BIH) def test_new_years(self): name = "Nova godina" diff --git a/tests/countries/test_botswana.py b/tests/countries/test_botswana.py index a2b5a2696..cde69448d 100644 --- a/tests/countries/test_botswana.py +++ b/tests/countries/test_botswana.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.botswana import Botswana, BW, BWA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBotswana(TestCase): +class TestBotswana(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Botswana, years=range(1966, 2050), years_non_observed=range(2010, 2024)) def test_country_aliases(self): - self.assertCountryAliases(Botswana, BW, BWA) + self.assertAliases(Botswana, BW, BWA) def test_no_holidays(self): self.assertNoHolidays(Botswana(years=1965)) diff --git a/tests/countries/test_brazil.py b/tests/countries/test_brazil.py index 4665d3030..8f4e5bd02 100644 --- a/tests/countries/test_brazil.py +++ b/tests/countries/test_brazil.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import OPTIONAL, PUBLIC from holidays.countries.brazil import Brazil, BR, BRA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBrazil(TestCase): +class TestBrazil(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Brazil, years=range(1890, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Brazil, BR, BRA) + self.assertAliases(Brazil, BR, BRA) def test_no_holidays(self): self.assertNoHolidays(Brazil(categories=(OPTIONAL, PUBLIC), years=1889)) diff --git a/tests/countries/test_brunei.py b/tests/countries/test_brunei.py index db053651b..e02bb8de1 100644 --- a/tests/countries/test_brunei.py +++ b/tests/countries/test_brunei.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.brunei import Brunei, BN, BRN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBrunei(TestCase): +class TestBrunei(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Brunei, years=range(1984, 2077), years_non_observed=range(1984, 2077)) def test_country_aliases(self): - self.assertCountryAliases(Brunei, BN, BRN) + self.assertAliases(Brunei, BN, BRN) def test_no_holidays(self): self.assertNoHolidays(Brunei(years=1983)) diff --git a/tests/countries/test_bulgaria.py b/tests/countries/test_bulgaria.py index 84b0acb2e..5ef3cd1ce 100644 --- a/tests/countries/test_bulgaria.py +++ b/tests/countries/test_bulgaria.py @@ -10,18 +10,20 @@ # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import PUBLIC, SCHOOL from holidays.countries.bulgaria import Bulgaria, BG, BLG -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBulgaria(TestCase): +class TestBulgaria(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Bulgaria, years=range(1990, 2050), years_non_observed=range(2017, 2030)) def test_country_aliases(self): - self.assertCountryAliases(Bulgaria, BG, BLG) + self.assertAliases(Bulgaria, BG, BLG) def test_no_holidays(self): self.assertNoHolidays(Bulgaria(categories=(PUBLIC, SCHOOL), years=1989)) diff --git a/tests/countries/test_burkina_faso.py b/tests/countries/test_burkina_faso.py index 20c6feca3..878578d77 100644 --- a/tests/countries/test_burkina_faso.py +++ b/tests/countries/test_burkina_faso.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.burkina_faso import BurkinaFaso, BF, BFA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBurkinaFaso(TestCase): +class TestBurkinaFaso(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(BurkinaFaso) def test_country_aliases(self): - self.assertCountryAliases(BurkinaFaso, BF, BFA) + self.assertAliases(BurkinaFaso, BF, BFA) def test_no_holidays(self): self.assertNoHolidays(BurkinaFaso(years=1960)) diff --git a/tests/countries/test_burundi.py b/tests/countries/test_burundi.py index a86922fef..9d03451aa 100644 --- a/tests/countries/test_burundi.py +++ b/tests/countries/test_burundi.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.burundi import Burundi, BI, BDI -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestBurundi(TestCase): +class TestBurundi(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Burundi, years=range(1962, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Burundi, BI, BDI) + self.assertAliases(Burundi, BI, BDI) def test_no_holidays(self): self.assertNoHolidays(Burundi(years=1961)) diff --git a/tests/countries/test_cambodia.py b/tests/countries/test_cambodia.py index 434eadbec..3d23030db 100644 --- a/tests/countries/test_cambodia.py +++ b/tests/countries/test_cambodia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.cambodia import Cambodia, KH, KHM -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestCambodia(TestCase): +class TestCambodia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Cambodia, years=range(1993, 2059)) def test_country_aliases(self): - self.assertCountryAliases(Cambodia, KH, KHM) + self.assertAliases(Cambodia, KH, KHM) def test_no_holidays(self): self.assertNoHolidays(Cambodia(years=1992)) diff --git a/tests/countries/test_cameroon.py b/tests/countries/test_cameroon.py index 717788bef..7a62653eb 100644 --- a/tests/countries/test_cameroon.py +++ b/tests/countries/test_cameroon.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.cameroon import Cameroon, CM, CMR -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestCameroon(TestCase): +class TestCameroon(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Cameroon, years=range(1960, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Cameroon, CM, CMR) + self.assertAliases(Cameroon, CM, CMR) def test_no_holidays(self): self.assertNoHolidays(Cameroon(years=1959)) diff --git a/tests/countries/test_canada.py b/tests/countries/test_canada.py index 7b4abaec7..35c4897a3 100644 --- a/tests/countries/test_canada.py +++ b/tests/countries/test_canada.py @@ -9,12 +9,14 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import GOVERNMENT, OPTIONAL from holidays.countries.canada import Canada, CA, CAN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestCanada(TestCase): +class TestCanada(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): years = range(1867, 2050) @@ -26,7 +28,7 @@ def setUpClass(cls): } def test_country_aliases(self): - self.assertCountryAliases(Canada, CA, CAN) + self.assertAliases(Canada, CA, CAN) def test_no_holidays(self): self.assertNoHolidays(Canada(years=1866)) diff --git a/tests/countries/test_chad.py b/tests/countries/test_chad.py index 6abb6c862..0b56f1a7f 100644 --- a/tests/countries/test_chad.py +++ b/tests/countries/test_chad.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.chad import Chad, TD, TCD -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestChad(TestCase): +class TestChad(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Chad) def test_country_aliases(self): - self.assertCountryAliases(Chad, TD, TCD) + self.assertAliases(Chad, TD, TCD) def test_no_holidays(self): self.assertNoHolidays(Chad(years=1960)) diff --git a/tests/countries/test_chile.py b/tests/countries/test_chile.py index 489f4c416..3ce3e19cc 100644 --- a/tests/countries/test_chile.py +++ b/tests/countries/test_chile.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.chile import Chile, CL, CHL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestChile(TestCase): +class TestChile(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Chile, years=range(1915, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Chile, CL, CHL) + self.assertAliases(Chile, CL, CHL) def test_special_holidays(self): self.assertHoliday("2022-09-16") diff --git a/tests/countries/test_china.py b/tests/countries/test_china.py index 2f3c09c29..81947504c 100644 --- a/tests/countries/test_china.py +++ b/tests/countries/test_china.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import HALF_DAY, PUBLIC from holidays.countries.china import China, CN, CHN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestChina(TestCase): +class TestChina(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(China, years=range(1950, 2051), years_non_observed=range(2001, 2025)) def test_country_aliases(self): - self.assertCountryAliases(China, CN, CHN) + self.assertAliases(China, CN, CHN) def test_no_holidays(self): self.assertNoHolidays(China(years=1949)) diff --git a/tests/countries/test_colombia.py b/tests/countries/test_colombia.py index 3f4652c8f..33b90aff5 100644 --- a/tests/countries/test_colombia.py +++ b/tests/countries/test_colombia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.colombia import Colombia, CO, COL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestColombia(TestCase): +class TestColombia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Colombia) def test_country_aliases(self): - self.assertCountryAliases(Colombia, CO, COL) + self.assertAliases(Colombia, CO, COL) def test_2016(self): # https://www.officeholidays.com/countries/colombia/2016 diff --git a/tests/countries/test_costa_rica.py b/tests/countries/test_costa_rica.py index d5f043187..14f625e93 100644 --- a/tests/countries/test_costa_rica.py +++ b/tests/countries/test_costa_rica.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.costa_rica import CostaRica, CR, CRI -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestCostaRica(TestCase): +class TestCostaRica(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(CostaRica) def test_country_aliases(self): - self.assertCountryAliases(CostaRica, CR, CRI) + self.assertAliases(CostaRica, CR, CRI) def test_new_year_day(self): self.assertHoliday(f"{year}-01-01" for year in range(1980, 2041)) diff --git a/tests/countries/test_croatia.py b/tests/countries/test_croatia.py index 2dfa170d4..dc0feee40 100644 --- a/tests/countries/test_croatia.py +++ b/tests/countries/test_croatia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.croatia import Croatia, HR, HRV -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestCroatia(TestCase): +class TestCroatia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Croatia, years=range(1990, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Croatia, HR, HRV) + self.assertAliases(Croatia, HR, HRV) def test_new_years_day(self): self.assertHolidayName("Nova Godina", (f"{year}-01-01" for year in range(1990, 2050))) diff --git a/tests/countries/test_cuba.py b/tests/countries/test_cuba.py index c8c9d51eb..a47766940 100644 --- a/tests/countries/test_cuba.py +++ b/tests/countries/test_cuba.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.cuba import Cuba, CU, CUB -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestCuba(TestCase): +class TestCuba(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Cuba, years=range(1959, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Cuba, CU, CUB) + self.assertAliases(Cuba, CU, CUB) def test_no_holidays(self): self.assertNoHolidays(Cuba(years=1958)) diff --git a/tests/countries/test_curacao.py b/tests/countries/test_curacao.py index 950fe7641..8417a0fe8 100644 --- a/tests/countries/test_curacao.py +++ b/tests/countries/test_curacao.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.curacao import Curacao, CW, CUW -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestCuracao(TestCase): +class TestCuracao(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Curacao, years=range(1954, 2077)) def test_country_aliases(self): - self.assertCountryAliases(Curacao, CW, CUW) + self.assertAliases(Curacao, CW, CUW) def test_no_holidays(self): self.assertNoHolidays(Curacao(years=1953)) diff --git a/tests/countries/test_cyprus.py b/tests/countries/test_cyprus.py index ba26f8ed3..c12dd1cb6 100644 --- a/tests/countries/test_cyprus.py +++ b/tests/countries/test_cyprus.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import BANK, OPTIONAL, PUBLIC from holidays.countries.cyprus import Cyprus, CY, CYP -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestCyprus(TestCase): +class TestCyprus(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Cyprus, years=range(2000, 2025)) def test_country_aliases(self): - self.assertCountryAliases(Cyprus, CY, CYP) + self.assertAliases(Cyprus, CY, CYP) def test_no_holidays(self): self.assertNoHolidays(Cyprus(categories=(BANK, OPTIONAL, PUBLIC), years=1960)) diff --git a/tests/countries/test_czechia.py b/tests/countries/test_czechia.py index 12d89bb46..34d26dbea 100644 --- a/tests/countries/test_czechia.py +++ b/tests/countries/test_czechia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.czechia import Czechia, CZ, CZE -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestCzechia(TestCase): +class TestCzechia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Czechia, years=range(1945, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Czechia, CZ, CZE) + self.assertAliases(Czechia, CZ, CZE) def test_new_years_day(self): name_1 = "Nový rok" diff --git a/tests/countries/test_denmark.py b/tests/countries/test_denmark.py index 2bd045391..229b46c36 100644 --- a/tests/countries/test_denmark.py +++ b/tests/countries/test_denmark.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import OPTIONAL from holidays.countries.denmark import Denmark, DK, DNK -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestDenmark(TestCase): +class TestDenmark(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Denmark) def test_country_aliases(self): - self.assertCountryAliases(Denmark, DK, DNK) + self.assertAliases(Denmark, DK, DNK) def test_2016(self): # http://www.officeholidays.com/countries/denmark/2016.php diff --git a/tests/countries/test_djibouti.py b/tests/countries/test_djibouti.py index c8652b3c6..f7a12eebd 100644 --- a/tests/countries/test_djibouti.py +++ b/tests/countries/test_djibouti.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.djibouti import Djibouti, DJ, DJI -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestDjibouti(TestCase): +class TestDjibouti(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Djibouti) def test_country_aliases(self): - self.assertCountryAliases(Djibouti, DJ, DJI) + self.assertAliases(Djibouti, DJ, DJI) def test_no_holidays(self): self.assertNoHolidays(Djibouti(years=1977)) diff --git a/tests/countries/test_dominican_republic.py b/tests/countries/test_dominican_republic.py index a6eca627f..fe3c4e5ce 100644 --- a/tests/countries/test_dominican_republic.py +++ b/tests/countries/test_dominican_republic.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.dominican_republic import DominicanRepublic, DO, DOM -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestDominicanRepublic(TestCase): +class TestDominicanRepublic(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(DominicanRepublic) def test_country_aliases(self): - self.assertCountryAliases(DominicanRepublic, DO, DOM) + self.assertAliases(DominicanRepublic, DO, DOM) def test_2020(self): self.assertHolidays( diff --git a/tests/countries/test_ecuador.py b/tests/countries/test_ecuador.py index ce2d1b19c..3b5091d2d 100644 --- a/tests/countries/test_ecuador.py +++ b/tests/countries/test_ecuador.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.ecuador import Ecuador, EC, ECU -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestEcuador(TestCase): +class TestEcuador(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Ecuador, years=range(2000, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Ecuador, EC, ECU) + self.assertAliases(Ecuador, EC, ECU) def test_new_years_day(self): self.assertHolidayName("Año Nuevo", (f"{year}-01-01" for year in range(2000, 2050))) diff --git a/tests/countries/test_egypt.py b/tests/countries/test_egypt.py index ac374bfae..e9317c014 100644 --- a/tests/countries/test_egypt.py +++ b/tests/countries/test_egypt.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.egypt import Egypt, EG, EGY -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestEgypt(TestCase): +class TestEgypt(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Egypt) def test_country_aliases(self): - self.assertCountryAliases(Egypt, EG, EGY) + self.assertAliases(Egypt, EG, EGY) def test_2019(self): self.assertHoliday( diff --git a/tests/countries/test_el_salvador.py b/tests/countries/test_el_salvador.py index d2cf8926d..303835ad8 100644 --- a/tests/countries/test_el_salvador.py +++ b/tests/countries/test_el_salvador.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.el_salvador import ElSalvador, SV, SLV -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestElSalvador(TestCase): +class TestElSalvador(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(ElSalvador, years=range(2000, 2050)) def test_country_aliases(self): - self.assertCountryAliases(ElSalvador, SV, SLV) + self.assertAliases(ElSalvador, SV, SLV) def test_mothers_day(self): name = "Mothers' Day" diff --git a/tests/countries/test_estonia.py b/tests/countries/test_estonia.py index 37cce7c55..1744affab 100644 --- a/tests/countries/test_estonia.py +++ b/tests/countries/test_estonia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.estonia import Estonia, EE, EST -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestEstonia(TestCase): +class TestEstonia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Estonia, years=range(1990, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Estonia, EE, EST) + self.assertAliases(Estonia, EE, EST) def test_new_years(self): self.assertHolidayName("uusaasta", (f"{year}-01-01" for year in range(1990, 2050))) diff --git a/tests/countries/test_eswatini.py b/tests/countries/test_eswatini.py index d3601af19..b1179ee01 100644 --- a/tests/countries/test_eswatini.py +++ b/tests/countries/test_eswatini.py @@ -10,19 +10,20 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase import holidays from holidays.countries.eswatini import Eswatini, SZ, SZW -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestEswatini(TestCase): +class TestEswatini(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Eswatini, years=range(1939, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Eswatini, SZ, SZW) + self.assertAliases(Eswatini, SZ, SZW) def test_no_holidays(self): self.assertNoHolidays(Eswatini(years=1938)) diff --git a/tests/countries/test_ethiopia.py b/tests/countries/test_ethiopia.py index 85ae6833a..806616c13 100644 --- a/tests/countries/test_ethiopia.py +++ b/tests/countries/test_ethiopia.py @@ -10,18 +10,19 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.countries.ethiopia import Ethiopia, ET, ETH -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestEthiopia(TestCase): +class TestEthiopia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Ethiopia) def test_country_aliases(self): - self.assertCountryAliases(Ethiopia, ET, ETH) + self.assertAliases(Ethiopia, ET, ETH) # Check isleap loops def test_not_holiday(self): diff --git a/tests/countries/test_finland.py b/tests/countries/test_finland.py index c8c15f042..8c6dd110c 100644 --- a/tests/countries/test_finland.py +++ b/tests/countries/test_finland.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.finland import Finland, FI, FIN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestFinland(TestCase): +class TestFinland(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Finland) def test_country_aliases(self): - self.assertCountryAliases(Finland, FI, FIN) + self.assertAliases(Finland, FI, FIN) def test_fixed_holidays(self): for year in range(2010, 2030): diff --git a/tests/countries/test_france.py b/tests/countries/test_france.py index 75903f5c0..c5a21d532 100644 --- a/tests/countries/test_france.py +++ b/tests/countries/test_france.py @@ -10,12 +10,13 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase from holidays.countries.france import France, FR, FRA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestFrance(TestCase): +class TestFrance(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(France) @@ -25,7 +26,7 @@ def setUp(self): warnings.simplefilter("ignore", category=DeprecationWarning) def test_country_aliases(self): - self.assertCountryAliases(France, FR, FRA) + self.assertAliases(France, FR, FRA) def test_pre_1802(self): self.assertNoHoliday("1801-08-15", "1801-11-01", "1801-12-25") diff --git a/tests/countries/test_gabon.py b/tests/countries/test_gabon.py index 448664bc4..bbd48c1f0 100644 --- a/tests/countries/test_gabon.py +++ b/tests/countries/test_gabon.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.gabon import Gabon, GA, GAB -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestGabon(TestCase): +class TestGabon(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Gabon) def test_country_aliases(self): - self.assertCountryAliases(Gabon, GA, GAB) + self.assertAliases(Gabon, GA, GAB) def test_no_holidays(self): self.assertNoHolidays(Gabon(years=1960)) diff --git a/tests/countries/test_georgia.py b/tests/countries/test_georgia.py index 32cc5233b..ce356f282 100644 --- a/tests/countries/test_georgia.py +++ b/tests/countries/test_georgia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.georgia import Georgia, GE, GEO -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestGeorgia(TestCase): +class TestGeorgia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Georgia) def test_country_aliases(self): - self.assertCountryAliases(Georgia, GE, GEO) + self.assertAliases(Georgia, GE, GEO) def test_no_holidays(self): self.assertNoHolidays(Georgia(years=1990)) diff --git a/tests/countries/test_germany.py b/tests/countries/test_germany.py index bbdea2502..2e9d61007 100644 --- a/tests/countries/test_germany.py +++ b/tests/countries/test_germany.py @@ -9,11 +9,13 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.germany import Germany, DE, DEU -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestDE(TestCase): +class TestDE(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): years = range(1991, 2050) @@ -21,7 +23,7 @@ def setUpClass(cls): cls.prov_hols = {prov: DE(subdiv=prov, years=years) for prov in DE.subdivisions} def test_country_aliases(self): - self.assertCountryAliases(Germany, DE, DEU) + self.assertAliases(Germany, DE, DEU) def test_no_data_before_1990(self): self.assertNoHolidays(DE(years=1989)) diff --git a/tests/countries/test_greece.py b/tests/countries/test_greece.py index 5fbcfaea5..0d1ab5f7f 100644 --- a/tests/countries/test_greece.py +++ b/tests/countries/test_greece.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import HALF_DAY from holidays.countries.greece import Greece, GR, GRC -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestGreece(TestCase): +class TestGreece(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Greece, years=range(2000, 2025)) def test_country_aliases(self): - self.assertCountryAliases(Greece, GR, GRC) + self.assertAliases(Greece, GR, GRC) def test_fixed_holidays(self): years = range(2000, 2025) diff --git a/tests/countries/test_guam.py b/tests/countries/test_guam.py index 420255891..e39cf83c3 100644 --- a/tests/countries/test_guam.py +++ b/tests/countries/test_guam.py @@ -10,19 +10,20 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.calendars.gregorian import MAR from holidays.countries.guam import HolidaysGU, GU, GUM -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestGU(TestCase): +class TestGU(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(HolidaysGU) def test_country_aliases(self): - self.assertCountryAliases(HolidaysGU, GU, GUM) + self.assertAliases(HolidaysGU, GU, GUM) def test_gu_only(self): """Check for a holiday that is not returned by US unless the diff --git a/tests/countries/test_guatemala.py b/tests/countries/test_guatemala.py index babea6fac..09008f44e 100644 --- a/tests/countries/test_guatemala.py +++ b/tests/countries/test_guatemala.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.guatemala import Guatemala, GT, GUA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestGuatemala(TestCase): +class TestGuatemala(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Guatemala) def test_country_aliases(self): - self.assertCountryAliases(Guatemala, GT, GUA) + self.assertAliases(Guatemala, GT, GUA) def test_2016(self): # https://calendariohispanohablante.com/2016/calendario-guatemala-2016.html diff --git a/tests/countries/test_honduras.py b/tests/countries/test_honduras.py index c6618d719..6d4373818 100644 --- a/tests/countries/test_honduras.py +++ b/tests/countries/test_honduras.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.honduras import Honduras, HN, HND -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestHonduras(TestCase): +class TestHonduras(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Honduras) def test_country_aliases(self): - self.assertCountryAliases(Honduras, HN, HND) + self.assertAliases(Honduras, HN, HND) def test_2014(self): self.assertHolidayDates( diff --git a/tests/countries/test_hongkong.py b/tests/countries/test_hongkong.py index b5fed530c..425fa642f 100644 --- a/tests/countries/test_hongkong.py +++ b/tests/countries/test_hongkong.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.hongkong import HongKong, HK, HKG -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestHongKong(TestCase): +class TestHongKong(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(HongKong, years=range(2006, 2024)) def test_country_aliases(self): - self.assertCountryAliases(HongKong, HK, HKG) + self.assertAliases(HongKong, HK, HKG) def test_no_holidays(self): self.assertNoHolidays(HongKong(years=1945)) diff --git a/tests/countries/test_hungary.py b/tests/countries/test_hungary.py index 6127aa978..4955b95b3 100644 --- a/tests/countries/test_hungary.py +++ b/tests/countries/test_hungary.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.hungary import Hungary, HU, HUN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestHungary(TestCase): +class TestHungary(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Hungary, years=range(1945, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Hungary, HU, HUN) + self.assertAliases(Hungary, HU, HUN) def test_new_years_day(self): self.assertHolidayName("Újév", (f"{year}-01-01" for year in range(1945, 2050))) diff --git a/tests/countries/test_iceland.py b/tests/countries/test_iceland.py index b3f7b23b1..01b23c6eb 100644 --- a/tests/countries/test_iceland.py +++ b/tests/countries/test_iceland.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.iceland import Iceland, IS, ISL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestIceland(TestCase): +class TestIceland(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Iceland) def test_country_aliases(self): - self.assertCountryAliases(Iceland, IS, ISL) + self.assertAliases(Iceland, IS, ISL) def test_2018(self): self.assertHolidays( diff --git a/tests/countries/test_india.py b/tests/countries/test_india.py index a4c38ec28..e0c5a20de 100644 --- a/tests/countries/test_india.py +++ b/tests/countries/test_india.py @@ -10,18 +10,19 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase from holidays.countries.india import India, IN, IND -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestIndia(TestCase): +class TestIndia(CommonCountryTests, TestCase): def setUp(self): self.holidays = India() warnings.simplefilter("ignore") def test_country_aliases(self): - self.assertCountryAliases(India, IN, IND) + self.assertAliases(India, IN, IND) def test_2018(self): self.assertHoliday( diff --git a/tests/countries/test_indonesia.py b/tests/countries/test_indonesia.py index b47b56dc0..ce815367d 100644 --- a/tests/countries/test_indonesia.py +++ b/tests/countries/test_indonesia.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import GOVERNMENT from holidays.countries.indonesia import Indonesia, ID, IDN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestIndonesia(TestCase): +class TestIndonesia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Indonesia, years=range(1946, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Indonesia, ID, IDN) + self.assertAliases(Indonesia, ID, IDN) def test_no_holidays(self): self.assertNoHolidays(Indonesia(years=1945)) diff --git a/tests/countries/test_iran.py b/tests/countries/test_iran.py index e63af1e5e..29b567399 100644 --- a/tests/countries/test_iran.py +++ b/tests/countries/test_iran.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.iran import Iran, IR, IRN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestIran(TestCase): +class TestIran(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Iran) def test_country_aliases(self): - self.assertCountryAliases(Iran, IR, IRN) + self.assertAliases(Iran, IR, IRN) def test_no_holidays(self): self.assertNoHolidays(Iran(years=1979)) diff --git a/tests/countries/test_ireland.py b/tests/countries/test_ireland.py index d45f57e46..0f645d222 100644 --- a/tests/countries/test_ireland.py +++ b/tests/countries/test_ireland.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.ireland import Ireland, IE, IRL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestIreland(TestCase): +class TestIreland(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Ireland, years=range(1950, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Ireland, IE, IRL) + self.assertAliases(Ireland, IE, IRL) def test_special_holidays(self): self.assertHoliday("2022-03-18") diff --git a/tests/countries/test_isle_of_man.py b/tests/countries/test_isle_of_man.py index 4d8fab6a7..66dd3ce61 100644 --- a/tests/countries/test_isle_of_man.py +++ b/tests/countries/test_isle_of_man.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.isle_of_man import IsleOfMan, IM, IMN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestIM(TestCase): +class TestIM(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(IsleOfMan, years=range(1970, 2070)) def test_country_aliases(self): - self.assertCountryAliases(IsleOfMan, IM, IMN) + self.assertAliases(IsleOfMan, IM, IMN) def test_1970(self): self.assertHolidays( diff --git a/tests/countries/test_israel.py b/tests/countries/test_israel.py index cbc2988f6..6c8cf1541 100644 --- a/tests/countries/test_israel.py +++ b/tests/countries/test_israel.py @@ -9,12 +9,14 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import OPTIONAL, SCHOOL from holidays.countries.israel import Israel, IL, ISR -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestIsrael(TestCase): +class TestIsrael(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Israel, years=range(1948, 2050)) @@ -24,7 +26,7 @@ def setUpClass(cls): ) def test_country_aliases(self): - self.assertCountryAliases(Israel, IL, ISR) + self.assertAliases(Israel, IL, ISR) def test_not_implemented(self): self.assertRaises(NotImplementedError, lambda: Israel(years=2101)) diff --git a/tests/countries/test_italy.py b/tests/countries/test_italy.py index 6c39c9f9b..5ba7ab262 100644 --- a/tests/countries/test_italy.py +++ b/tests/countries/test_italy.py @@ -10,12 +10,13 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase from holidays.countries.italy import Italy, IT, ITA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestItaly(TestCase): +class TestItaly(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Italy) @@ -25,7 +26,7 @@ def setUp(self): warnings.simplefilter("ignore", category=DeprecationWarning) def test_country_aliases(self): - self.assertCountryAliases(Italy, IT, ITA) + self.assertAliases(Italy, IT, ITA) def test_2022(self): self.assertHolidays( diff --git a/tests/countries/test_jamaica.py b/tests/countries/test_jamaica.py index a06ca3805..249f6a761 100644 --- a/tests/countries/test_jamaica.py +++ b/tests/countries/test_jamaica.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.jamaica import Jamaica, JM, JAM -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestJamaica(TestCase): +class TestJamaica(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Jamaica, years=range(1950, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Jamaica, JM, JAM) + self.assertAliases(Jamaica, JM, JAM) def test_new_years_day(self): self.assertHoliday(f"{year}-01-01" for year in range(1950, 2050)) diff --git a/tests/countries/test_japan.py b/tests/countries/test_japan.py index 2c92d1e00..a8eea146f 100644 --- a/tests/countries/test_japan.py +++ b/tests/countries/test_japan.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import BANK from holidays.countries.japan import Japan, JP, JPN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestJapan(TestCase): +class TestJapan(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Japan, years=range(1949, 2051)) def test_country_aliases(self): - self.assertCountryAliases(Japan, JP, JPN) + self.assertAliases(Japan, JP, JPN) def test_not_implemented(self): with self.assertRaises(NotImplementedError): diff --git a/tests/countries/test_kazakhstan.py b/tests/countries/test_kazakhstan.py index 24d5bf1e2..68ca6febe 100644 --- a/tests/countries/test_kazakhstan.py +++ b/tests/countries/test_kazakhstan.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.kazakhstan import Kazakhstan, KZ, KAZ -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestKazakhstan(TestCase): +class TestKazakhstan(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Kazakhstan, years=range(1991, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Kazakhstan, KZ, KAZ) + self.assertAliases(Kazakhstan, KZ, KAZ) def test_no_holidays(self): self.assertNoHolidays(Kazakhstan(years=1990)) diff --git a/tests/countries/test_kenya.py b/tests/countries/test_kenya.py index 2b6b0b074..5d0dde839 100644 --- a/tests/countries/test_kenya.py +++ b/tests/countries/test_kenya.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.kenya import Kenya, KE, KEN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestKenya(TestCase): +class TestKenya(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Kenya, years=range(1963, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Kenya, KE, KEN) + self.assertAliases(Kenya, KE, KEN) def test_no_holidays(self): self.assertNoHolidays(Kenya(years=1962)) diff --git a/tests/countries/test_kyrgyzstan.py b/tests/countries/test_kyrgyzstan.py index 5238a2884..166e48367 100644 --- a/tests/countries/test_kyrgyzstan.py +++ b/tests/countries/test_kyrgyzstan.py @@ -9,16 +9,18 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.kyrgyzstan import Kyrgyzstan, KG, KGZ -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestKyrgyzstan(TestCase): +class TestKyrgyzstan(CommonCountryTests, TestCase): def setUp(self): self.holidays = Kyrgyzstan() def test_country_aliases(self): - self.assertCountryAliases(Kyrgyzstan, KG, KGZ) + self.assertAliases(Kyrgyzstan, KG, KGZ) def test_2022(self): self.assertHolidays( diff --git a/tests/countries/test_laos.py b/tests/countries/test_laos.py index b206b62e5..33175a689 100644 --- a/tests/countries/test_laos.py +++ b/tests/countries/test_laos.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import BANK, PUBLIC, SCHOOL, WORKDAY from holidays.countries.laos import Laos, LA, LAO -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestLaos(TestCase): +class TestLaos(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Laos, years=range(1976, 2058), years_non_observed=range(2018, 2058)) def test_country_aliases(self): - self.assertCountryAliases(Laos, LA, LAO) + self.assertAliases(Laos, LA, LAO) def test_no_holidays(self): self.assertNoHolidays(Laos(categories=(BANK, PUBLIC, SCHOOL, WORKDAY), years=1975)) diff --git a/tests/countries/test_latvia.py b/tests/countries/test_latvia.py index 54a0c0cd7..ee9ce14c3 100644 --- a/tests/countries/test_latvia.py +++ b/tests/countries/test_latvia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.latvia import Latvia, LV, LVA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestLatvia(TestCase): +class TestLatvia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Latvia, years=range(1990, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Latvia, LV, LVA) + self.assertAliases(Latvia, LV, LVA) def test_no_holidays(self): self.assertNoHolidays(Latvia(years=1989)) diff --git a/tests/countries/test_lesotho.py b/tests/countries/test_lesotho.py index 98018a952..6ab52d3cd 100644 --- a/tests/countries/test_lesotho.py +++ b/tests/countries/test_lesotho.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.lesotho import Lesotho, LS, LSO -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestLesotho(TestCase): +class TestLesotho(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Lesotho, years=range(1996, 2040)) def test_country_aliases(self): - self.assertCountryAliases(Lesotho, LS, LSO) + self.assertAliases(Lesotho, LS, LSO) def test_no_holidays(self): self.assertNoHolidays(Lesotho(years=1995)) diff --git a/tests/countries/test_liechtenstein.py b/tests/countries/test_liechtenstein.py index b91394140..8790917f1 100644 --- a/tests/countries/test_liechtenstein.py +++ b/tests/countries/test_liechtenstein.py @@ -10,12 +10,14 @@ # License: MIT (see LICENSE file) # Copyright: Kateryna Golovanova , 2022 +from unittest import TestCase + from holidays.constants import BANK from holidays.countries.liechtenstein import Liechtenstein, LI, LIE -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestLiechtenstein(TestCase): +class TestLiechtenstein(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): years = range(1900, 2050) @@ -23,7 +25,7 @@ def setUpClass(cls): cls.bank_holidays = Liechtenstein(categories=BANK, years=years) def test_country_aliases(self): - self.assertCountryAliases(Liechtenstein, LI, LIE) + self.assertAliases(Liechtenstein, LI, LIE) def test_new_years(self): self.assertHolidayName("Neujahr", (f"{year}-01-01" for year in range(1900, 2050))) diff --git a/tests/countries/test_lithuania.py b/tests/countries/test_lithuania.py index ac0ba4f8d..1b9700a5e 100644 --- a/tests/countries/test_lithuania.py +++ b/tests/countries/test_lithuania.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.lithuania import Lithuania, LT, LTU -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestLithuania(TestCase): +class TestLithuania(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Lithuania, years=range(1990, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Lithuania, LT, LTU) + self.assertAliases(Lithuania, LT, LTU) def test_no_holidays(self): self.assertNoHolidays(Lithuania(years=1989)) diff --git a/tests/countries/test_luxembourg.py b/tests/countries/test_luxembourg.py index acb339881..af4e2f044 100644 --- a/tests/countries/test_luxembourg.py +++ b/tests/countries/test_luxembourg.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.luxembourg import Luxembourg, LU, LUX -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestLuxembourg(TestCase): +class TestLuxembourg(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Luxembourg) def test_country_aliases(self): - self.assertCountryAliases(Luxembourg, LU, LUX) + self.assertAliases(Luxembourg, LU, LUX) def test_2018(self): self.assertHolidays( diff --git a/tests/countries/test_madagascar.py b/tests/countries/test_madagascar.py index c97ce6a97..9484cf281 100644 --- a/tests/countries/test_madagascar.py +++ b/tests/countries/test_madagascar.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.madagascar import Madagascar, MG, MDG -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMadagascar(TestCase): +class TestMadagascar(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Madagascar, years=range(1947, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Madagascar, MG, MDG) + self.assertAliases(Madagascar, MG, MDG) def test_no_holidays(self): self.assertNoHolidays(Madagascar(years=1946)) diff --git a/tests/countries/test_malawi.py b/tests/countries/test_malawi.py index 048138012..b3e221d0a 100644 --- a/tests/countries/test_malawi.py +++ b/tests/countries/test_malawi.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.malawi import Malawi, MW, MWI -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMalawi(TestCase): +class TestMalawi(CommonCountryTests, TestCase): @classmethod def setUpClass(self): super().setUpClass(Malawi) def test_country_aliases(self): - self.assertCountryAliases(Malawi, MW, MWI) + self.assertAliases(Malawi, MW, MWI) def test_no_holidays(self): self.assertNoHolidays(Malawi(years=1999)) diff --git a/tests/countries/test_malaysia.py b/tests/countries/test_malaysia.py index 58c25f98d..9d2574054 100644 --- a/tests/countries/test_malaysia.py +++ b/tests/countries/test_malaysia.py @@ -10,19 +10,20 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.calendars.gregorian import APR, AUG, DEC, FEB, JAN, JUL, JUN, MAR, MAY, NOV, OCT, SEP from holidays.countries.malaysia import Malaysia, MY, MYS -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMalaysia(TestCase): +class TestMalaysia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Malaysia) def test_country_aliases(self): - self.assertCountryAliases(Malaysia, MY, MYS) + self.assertAliases(Malaysia, MY, MYS) holidays1 = MY() holidays2 = MYS() self.assertEqual(list(holidays1), list(holidays2)) diff --git a/tests/countries/test_maldives.py b/tests/countries/test_maldives.py index 3cb87d898..ba68b6271 100644 --- a/tests/countries/test_maldives.py +++ b/tests/countries/test_maldives.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.maldives import Maldives, MDV, MV -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMaldives(TestCase): +class TestMaldives(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Maldives, years=range(1950, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Maldives, MV, MDV) + self.assertAliases(Maldives, MV, MDV) def test_new_years_day(self): self.assertHolidayName("New Year's Day", (f"{year}-01-01" for year in range(1950, 2050))) diff --git a/tests/countries/test_malta.py b/tests/countries/test_malta.py index 1985877f0..4684412fc 100644 --- a/tests/countries/test_malta.py +++ b/tests/countries/test_malta.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.malta import Malta, MT, MLT -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMalta(TestCase): +class TestMalta(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Malta) def test_country_aliases(self): - self.assertCountryAliases(Malta, MT, MLT) + self.assertAliases(Malta, MT, MLT) def test_no_holidays(self): self.assertNoHolidays(Malta(years=1979)) diff --git a/tests/countries/test_marshall_islands.py b/tests/countries/test_marshall_islands.py index c92af2194..6dc651dba 100644 --- a/tests/countries/test_marshall_islands.py +++ b/tests/countries/test_marshall_islands.py @@ -10,12 +10,13 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase from holidays.countries.marshall_islands import HolidaysMH, MH, MHL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMH(TestCase): +class TestMH(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(HolidaysMH) @@ -25,7 +26,7 @@ def setUp(self): warnings.simplefilter("ignore") def test_country_aliases(self): - self.assertCountryAliases(HolidaysMH, MH, MHL) + self.assertAliases(HolidaysMH, MH, MHL) def test_2020(self): # http://web.archive.org/web/20201125072002/https://www.pscrmi.net/rmi-holiday-memos diff --git a/tests/countries/test_mexico.py b/tests/countries/test_mexico.py index 8aeb24dbb..158a52885 100644 --- a/tests/countries/test_mexico.py +++ b/tests/countries/test_mexico.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.mexico import Mexico, MX, MEX -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMexico(TestCase): +class TestMexico(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Mexico, years=range(1900, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Mexico, MX, MEX) + self.assertAliases(Mexico, MX, MEX) def test_new_years_day(self): self.assertHoliday(f"{year}-01-01" for year in range(1900, 2050)) diff --git a/tests/countries/test_moldova.py b/tests/countries/test_moldova.py index 78eb141fd..50d32bdf7 100644 --- a/tests/countries/test_moldova.py +++ b/tests/countries/test_moldova.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.moldova import Moldova, MD, MDA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMoldova(TestCase): +class TestMoldova(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Moldova) def test_country_aliases(self): - self.assertCountryAliases(Moldova, MD, MDA) + self.assertAliases(Moldova, MD, MDA) def test_no_holidays(self): self.assertNoHolidays(Moldova(years=1990)) diff --git a/tests/countries/test_monaco.py b/tests/countries/test_monaco.py index 0e4494cfb..83e4d68b7 100644 --- a/tests/countries/test_monaco.py +++ b/tests/countries/test_monaco.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.monaco import Monaco, MC, MCO -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMonaco(TestCase): +class TestMonaco(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Monaco) def test_country_aliases(self): - self.assertCountryAliases(Monaco, MC, MCO) + self.assertAliases(Monaco, MC, MCO) def test_immaculate_conception_day(self): self.assertHoliday( diff --git a/tests/countries/test_montenegro.py b/tests/countries/test_montenegro.py index 1c1d793b6..910fa7a63 100644 --- a/tests/countries/test_montenegro.py +++ b/tests/countries/test_montenegro.py @@ -9,16 +9,18 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.montenegro import Montenegro, ME, MNE -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMontenegro(TestCase): +class TestMontenegro(CommonCountryTests, TestCase): def setUp(self): self.holidays = Montenegro() def test_country_aliases(self): - self.assertCountryAliases(Montenegro, ME, MNE) + self.assertAliases(Montenegro, ME, MNE) def test_2021(self): self.assertHolidays( diff --git a/tests/countries/test_morocco.py b/tests/countries/test_morocco.py index 1790e8548..960509457 100644 --- a/tests/countries/test_morocco.py +++ b/tests/countries/test_morocco.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.morocco import Morocco, MA, MOR -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMorocco(TestCase): +class TestMorocco(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Morocco) def test_country_aliases(self): - self.assertCountryAliases(Morocco, MA, MOR) + self.assertAliases(Morocco, MA, MOR) def test_2019(self): self.assertHolidayDates( diff --git a/tests/countries/test_mozambique.py b/tests/countries/test_mozambique.py index ec5615aa9..a50d2f90d 100644 --- a/tests/countries/test_mozambique.py +++ b/tests/countries/test_mozambique.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.mozambique import Mozambique, MZ, MOZ -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMozambique(TestCase): +class TestMozambique(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Mozambique, years=range(1975, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Mozambique, MZ, MOZ) + self.assertAliases(Mozambique, MZ, MOZ) def test_no_holidays(self): self.assertNoHolidays(Mozambique(years=1974)) diff --git a/tests/countries/test_namibia.py b/tests/countries/test_namibia.py index 285c0723c..0a8d73dec 100644 --- a/tests/countries/test_namibia.py +++ b/tests/countries/test_namibia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.namibia import Namibia, NA, NAM -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestNamibia(TestCase): +class TestNamibia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Namibia, years=range(1990, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Namibia, NA, NAM) + self.assertAliases(Namibia, NA, NAM) def test_no_holidays(self): self.assertNoHolidays(Namibia(years=1989)) diff --git a/tests/countries/test_netherlands.py b/tests/countries/test_netherlands.py index 30e3b3597..5c0aab03a 100644 --- a/tests/countries/test_netherlands.py +++ b/tests/countries/test_netherlands.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import OPTIONAL from holidays.countries.netherlands import Netherlands, NL, NLD -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestNetherlands(TestCase): +class TestNetherlands(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Netherlands) def test_country_aliases(self): - self.assertCountryAliases(Netherlands, NL, NLD) + self.assertAliases(Netherlands, NL, NLD) def test_queens_day_between_1891_and_1948(self): name = "Koninginnedag" diff --git a/tests/countries/test_new_zealand.py b/tests/countries/test_new_zealand.py index bebea338e..b4a727d4f 100644 --- a/tests/countries/test_new_zealand.py +++ b/tests/countries/test_new_zealand.py @@ -10,12 +10,13 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase from holidays.countries.new_zealand import NewZealand, NZ, NZL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestNZ(TestCase): +class TestNZ(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass( @@ -27,7 +28,7 @@ def setUp(self): warnings.simplefilter("ignore", category=DeprecationWarning) def test_country_aliases(self): - self.assertCountryAliases(NewZealand, NZ, NZL) + self.assertAliases(NewZealand, NZ, NZL) def test_no_holidays(self): self.assertNoHolidays(NewZealand(years=1893)) diff --git a/tests/countries/test_nicaragua.py b/tests/countries/test_nicaragua.py index bcb2b936e..4b2a9d81a 100644 --- a/tests/countries/test_nicaragua.py +++ b/tests/countries/test_nicaragua.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.nicaragua import Nicaragua, NI, NIC -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestNicaragua(TestCase): +class TestNicaragua(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Nicaragua) def test_country_aliases(self): - self.assertCountryAliases(Nicaragua, NI, NIC) + self.assertAliases(Nicaragua, NI, NIC) def test_2020(self): self.assertHoliday( diff --git a/tests/countries/test_nigeria.py b/tests/countries/test_nigeria.py index 573ddac18..8d27dcc79 100644 --- a/tests/countries/test_nigeria.py +++ b/tests/countries/test_nigeria.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.nigeria import Nigeria, NG, NGA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestNigeria(TestCase): +class TestNigeria(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Nigeria, years=range(1979, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Nigeria, NG, NGA) + self.assertAliases(Nigeria, NG, NGA) def test_no_holidays(self): self.assertNoHolidays(Nigeria(years=1978)) diff --git a/tests/countries/test_north_macedonia.py b/tests/countries/test_north_macedonia.py index d96c2b94e..03b78cca6 100644 --- a/tests/countries/test_north_macedonia.py +++ b/tests/countries/test_north_macedonia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.north_macedonia import NorthMacedonia, MK, MKD -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestNorthMacedonia(TestCase): +class TestNorthMacedonia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(NorthMacedonia) def test_country_aliases(self): - self.assertCountryAliases(NorthMacedonia, MK, MKD) + self.assertAliases(NorthMacedonia, MK, MKD) def test_2019(self): # https://en.wikipedia.org/wiki/Public_holidays_in_North_Macedonia diff --git a/tests/countries/test_northern_mariana_islands.py b/tests/countries/test_northern_mariana_islands.py index c5f9b7b64..24889a2e9 100644 --- a/tests/countries/test_northern_mariana_islands.py +++ b/tests/countries/test_northern_mariana_islands.py @@ -10,19 +10,20 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.calendars.gregorian import MAR from holidays.countries.northern_mariana_islands import HolidaysMP, MP, MNP -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestMP(TestCase): +class TestMP(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(HolidaysMP) def test_country_aliases(self): - self.assertCountryAliases(HolidaysMP, MP, MNP) + self.assertAliases(HolidaysMP, MP, MNP) def test_mp_only(self): """Check for a holiday that is not returned by US unless the diff --git a/tests/countries/test_norway.py b/tests/countries/test_norway.py index b63dbdfe4..9c3edc4a5 100644 --- a/tests/countries/test_norway.py +++ b/tests/countries/test_norway.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.norway import Norway, NO, NOR -from tests.common import SundayHolidays +from tests.common import CommonCountryTests, SundayHolidays -class TestNorway(SundayHolidays): +class TestNorway(CommonCountryTests, SundayHolidays, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Norway) def test_country_aliases(self): - self.assertCountryAliases(Norway, NO, NOR) + self.assertAliases(Norway, NO, NOR) def test_new_years(self): self.assertHoliday("1900-01-01", "2017-01-01", "2023-01-01") diff --git a/tests/countries/test_pakistan.py b/tests/countries/test_pakistan.py index 153262bb7..0058feb80 100644 --- a/tests/countries/test_pakistan.py +++ b/tests/countries/test_pakistan.py @@ -11,18 +11,19 @@ from datetime import date from datetime import timedelta as td +from unittest import TestCase from holidays.countries.pakistan import Pakistan, PK, PAK -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestPakistan(TestCase): +class TestPakistan(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Pakistan, years=range(1948, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Pakistan, PK, PAK) + self.assertAliases(Pakistan, PK, PAK) def test_no_holidays(self): self.assertNoHolidays(Pakistan(years=1947)) diff --git a/tests/countries/test_panama.py b/tests/countries/test_panama.py index 8eec58723..d05d53afe 100644 --- a/tests/countries/test_panama.py +++ b/tests/countries/test_panama.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.panama import Panama, PA, PAN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestPanama(TestCase): +class TestPanama(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Panama, years=range(1950, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Panama, PA, PAN) + self.assertAliases(Panama, PA, PAN) def test_new_year_day(self): self.assertHoliday(f"{year}-01-01" for year in range(1950, 2050)) diff --git a/tests/countries/test_papua_new_guinea.py b/tests/countries/test_papua_new_guinea.py index 842df0c91..ec12db286 100644 --- a/tests/countries/test_papua_new_guinea.py +++ b/tests/countries/test_papua_new_guinea.py @@ -9,11 +9,13 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.papua_new_guinea import PapuaNewGuinea, PG, PNG -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestPapuaNewGuinea(TestCase): +class TestPapuaNewGuinea(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass( @@ -21,7 +23,7 @@ def setUpClass(cls): ) def test_country_aliases(self): - self.assertCountryAliases(PapuaNewGuinea, PG, PNG) + self.assertAliases(PapuaNewGuinea, PG, PNG) def test_no_holidays(self): self.assertNoHolidays(PapuaNewGuinea(years=1952)) diff --git a/tests/countries/test_paraguay.py b/tests/countries/test_paraguay.py index fce3f360e..3f7cdd732 100644 --- a/tests/countries/test_paraguay.py +++ b/tests/countries/test_paraguay.py @@ -11,18 +11,19 @@ from datetime import date from datetime import timedelta as td +from unittest import TestCase from holidays.countries.paraguay import Paraguay, PY, PRY -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestParaguay(TestCase): +class TestParaguay(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Paraguay) def test_country_aliases(self): - self.assertCountryAliases(Paraguay, PY, PRY) + self.assertAliases(Paraguay, PY, PRY) def test_fixed_holidays(self): for year, month, day in ( diff --git a/tests/countries/test_peru.py b/tests/countries/test_peru.py index 7fb2f6439..656fc4b25 100644 --- a/tests/countries/test_peru.py +++ b/tests/countries/test_peru.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.peru import Peru, PE, PER -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestPeru(TestCase): +class TestPeru(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Peru) def test_country_aliases(self): - self.assertCountryAliases(Peru, PE, PER) + self.assertAliases(Peru, PE, PER) def test_2019(self): self.assertHolidayDates( diff --git a/tests/countries/test_philippines.py b/tests/countries/test_philippines.py index 344fcd472..787dd9499 100644 --- a/tests/countries/test_philippines.py +++ b/tests/countries/test_philippines.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.philippines import Philippines, PH, PHL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestPhilippines(TestCase): +class TestPhilippines(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Philippines) def test_country_aliases(self): - self.assertCountryAliases(Philippines, PH, PHL) + self.assertAliases(Philippines, PH, PHL) def test_2022(self): self.assertHolidays( diff --git a/tests/countries/test_poland.py b/tests/countries/test_poland.py index e941ac450..b4ab81feb 100644 --- a/tests/countries/test_poland.py +++ b/tests/countries/test_poland.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.poland import Poland, PL, POL -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestPoland(TestCase): +class TestPoland(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Poland, years=range(1925, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Poland, PL, POL) + self.assertAliases(Poland, PL, POL) def test_no_holidays(self): self.assertNoHolidays(Poland(years=1924)) diff --git a/tests/countries/test_portugal.py b/tests/countries/test_portugal.py index da5130652..e9f721126 100644 --- a/tests/countries/test_portugal.py +++ b/tests/countries/test_portugal.py @@ -10,13 +10,14 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase from holidays.constants import OPTIONAL, PUBLIC from holidays.countries.portugal import Portugal, PT, PRT -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestPortugal(TestCase): +class TestPortugal(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Portugal, years=range(1910, 2050)) @@ -26,7 +27,7 @@ def setUp(self): warnings.simplefilter("ignore", category=DeprecationWarning) def test_country_aliases(self): - self.assertCountryAliases(Portugal, PT, PRT) + self.assertAliases(Portugal, PT, PRT) def test_subdiv_deprecation(self): self.assertDeprecatedSubdivisions("This subdivision is deprecated and will be removed") diff --git a/tests/countries/test_puerto_rico.py b/tests/countries/test_puerto_rico.py index c0abf4dd3..31180b844 100644 --- a/tests/countries/test_puerto_rico.py +++ b/tests/countries/test_puerto_rico.py @@ -10,19 +10,20 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.calendars.gregorian import NOV from holidays.countries.puerto_rico import HolidaysPR, PR, PRI -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestPR(TestCase): +class TestPR(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(HolidaysPR) def test_country_aliases(self): - self.assertCountryAliases(HolidaysPR, PR, PRI) + self.assertAliases(HolidaysPR, PR, PRI) def test_pr_only(self): """Check for a holiday that is not returned by US unless the diff --git a/tests/countries/test_romania.py b/tests/countries/test_romania.py index 1712e6e9c..7c1c98b2f 100644 --- a/tests/countries/test_romania.py +++ b/tests/countries/test_romania.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.romania import Romania, RO, ROU -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestRomania(TestCase): +class TestRomania(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Romania) def test_country_aliases(self): - self.assertCountryAliases(Romania, RO, ROU) + self.assertAliases(Romania, RO, ROU) def test_from_2024(self): self.assertHoliday("2024-01-06", "2024-01-07") diff --git a/tests/countries/test_russia.py b/tests/countries/test_russia.py index dd308f3bd..27a10b566 100644 --- a/tests/countries/test_russia.py +++ b/tests/countries/test_russia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.russia import Russia, RU, RUS -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestRussia(TestCase): +class TestRussia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Russia, years=range(1991, 2025)) def test_country_aliases(self): - self.assertCountryAliases(Russia, RU, RUS) + self.assertAliases(Russia, RU, RUS) def test_no_holidays(self): self.assertNoHolidays(Russia(years=1990)) diff --git a/tests/countries/test_san_marino.py b/tests/countries/test_san_marino.py index 5a736dc46..8f7471340 100644 --- a/tests/countries/test_san_marino.py +++ b/tests/countries/test_san_marino.py @@ -9,16 +9,18 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.san_marino import SanMarino, SM, SMR -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSanMarino(TestCase): +class TestSanMarino(CommonCountryTests, TestCase): def setUp(self): self.holidays = SanMarino() def test_country_aliases(self): - self.assertCountryAliases(SanMarino, SM, SMR) + self.assertAliases(SanMarino, SM, SMR) def test_2022(self): self.assertHolidays( diff --git a/tests/countries/test_saudi_arabia.py b/tests/countries/test_saudi_arabia.py index abd2bf6e4..942aa2752 100644 --- a/tests/countries/test_saudi_arabia.py +++ b/tests/countries/test_saudi_arabia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.saudi_arabia import SaudiArabia, SA, SAU -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSaudiArabia(TestCase): +class TestSaudiArabia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(SaudiArabia, years=range(1950, 2050)) def test_country_aliases(self): - self.assertCountryAliases(SaudiArabia, SA, SAU) + self.assertAliases(SaudiArabia, SA, SAU) def test_special_holidays(self): self.assertHoliday("2022-11-23") diff --git a/tests/countries/test_serbia.py b/tests/countries/test_serbia.py index fe4f5009c..90cc80d2e 100644 --- a/tests/countries/test_serbia.py +++ b/tests/countries/test_serbia.py @@ -10,18 +10,19 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.countries.serbia import Serbia, RS, SRB -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSerbia(TestCase): +class TestSerbia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Serbia) def test_country_aliases(self): - self.assertCountryAliases(Serbia, RS, SRB) + self.assertAliases(Serbia, RS, SRB) def test_new_year(self): # If January 1st is in Weekend, test oberved diff --git a/tests/countries/test_singapore.py b/tests/countries/test_singapore.py index aa803a6f9..f2e528b9b 100644 --- a/tests/countries/test_singapore.py +++ b/tests/countries/test_singapore.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.singapore import Singapore, SG, SGP -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSingapore(TestCase): +class TestSingapore(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Singapore) def test_country_aliases(self): - self.assertCountryAliases(Singapore, SG, SGP) + self.assertAliases(Singapore, SG, SGP) def test_common(self): self.assertNonObservedHolidayName("New Year's Day", "2022-01-01") diff --git a/tests/countries/test_slovakia.py b/tests/countries/test_slovakia.py index e16133060..5498bb96d 100644 --- a/tests/countries/test_slovakia.py +++ b/tests/countries/test_slovakia.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import WORKDAY from holidays.countries.slovakia import Slovakia, SK, SVK -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSlovakia(TestCase): +class TestSlovakia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Slovakia, years=range(1993, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Slovakia, SK, SVK) + self.assertAliases(Slovakia, SK, SVK) def test_no_holidays(self): self.assertNoHolidays(Slovakia(years=1992)) diff --git a/tests/countries/test_slovenia.py b/tests/countries/test_slovenia.py index 482dca026..e743364cc 100644 --- a/tests/countries/test_slovenia.py +++ b/tests/countries/test_slovenia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.slovenia import Slovenia, SI, SVN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSlovenia(TestCase): +class TestSlovenia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Slovenia, years=range(1991, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Slovenia, SI, SVN) + self.assertAliases(Slovenia, SI, SVN) def test_no_holidays(self): self.assertNoHolidays(Slovenia(years=1990)) diff --git a/tests/countries/test_south_africa.py b/tests/countries/test_south_africa.py index 8783a4c93..60ddd47f2 100644 --- a/tests/countries/test_south_africa.py +++ b/tests/countries/test_south_africa.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.south_africa import SouthAfrica, ZA, ZAF -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSouthAfrica(TestCase): +class TestSouthAfrica(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(SouthAfrica, years=range(1940, 2050)) def test_country_aliases(self): - self.assertCountryAliases(SouthAfrica, ZA, ZAF) + self.assertAliases(SouthAfrica, ZA, ZAF) def test_no_holidays(self): self.assertNoHolidays(SouthAfrica(years=1909)) diff --git a/tests/countries/test_south_korea.py b/tests/countries/test_south_korea.py index 0ae020312..d5bbcf3c7 100644 --- a/tests/countries/test_south_korea.py +++ b/tests/countries/test_south_korea.py @@ -10,19 +10,20 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase from holidays.constants import BANK, PUBLIC from holidays.countries.south_korea import SouthKorea, KR, KOR, Korea -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSouthKorea(TestCase): +class TestSouthKorea(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(SouthKorea, years=range(1948, 2050)) def test_country_aliases(self): - self.assertCountryAliases(SouthKorea, KR, KOR) + self.assertAliases(SouthKorea, KR, KOR) def test_no_holidays(self): self.assertNoHolidays(SouthKorea(years=1947)) diff --git a/tests/countries/test_spain.py b/tests/countries/test_spain.py index 9206aa84f..0301ad4a8 100644 --- a/tests/countries/test_spain.py +++ b/tests/countries/test_spain.py @@ -10,13 +10,14 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.calendars.gregorian import JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC from holidays.countries.spain import Spain, ES, ESP -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSpain(TestCase): +class TestSpain(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Spain) @@ -36,7 +37,7 @@ def _assertVariableDays(self, year: int, subdiv_holidays: dict): ) def test_country_aliases(self): - self.assertCountryAliases(Spain, ES, ESP) + self.assertAliases(Spain, ES, ESP) def test_fixed_holidays_2010(self): self.assertNonObservedHoliday( diff --git a/tests/countries/test_sweden.py b/tests/countries/test_sweden.py index 3bb23b0a2..2520f8b01 100644 --- a/tests/countries/test_sweden.py +++ b/tests/countries/test_sweden.py @@ -9,11 +9,13 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.sweden import Sweden, SE, SWE -from tests.common import SundayHolidays +from tests.common import CommonCountryTests, SundayHolidays -class TestSweden(SundayHolidays): +class TestSweden(CommonCountryTests, SundayHolidays, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Sweden) @@ -23,7 +25,7 @@ def setUp(self): self.holidays.include_sundays = False def test_country_aliases(self): - self.assertCountryAliases(Sweden, SE, SWE) + self.assertAliases(Sweden, SE, SWE) def test_new_years(self): self.assertHoliday( diff --git a/tests/countries/test_switzerland.py b/tests/countries/test_switzerland.py index d97b9f339..acdb6e37c 100644 --- a/tests/countries/test_switzerland.py +++ b/tests/countries/test_switzerland.py @@ -10,12 +10,13 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.countries.switzerland import Switzerland, CH, CHE -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestSwitzerland(TestCase): +class TestSwitzerland(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): years = range(1970, 2050) @@ -23,7 +24,7 @@ def setUpClass(cls): cls.prov_hols = {prov: CH(subdiv=prov, years=years) for prov in CH.subdivisions} def test_country_aliases(self): - self.assertCountryAliases(Switzerland, CH, CHE) + self.assertAliases(Switzerland, CH, CHE) def test_all_holidays_present(self): y_2018 = set() diff --git a/tests/countries/test_taiwan.py b/tests/countries/test_taiwan.py index 0a9f4ad24..e4f2c0e0e 100644 --- a/tests/countries/test_taiwan.py +++ b/tests/countries/test_taiwan.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.taiwan import Taiwan, TW, TWN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestTaiwan(TestCase): +class TestTaiwan(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): years = range(1990, 2030) super().setUpClass(Taiwan, years=years, years_non_observed=years) def test_country_aliases(self): - self.assertCountryAliases(Taiwan, TW, TWN) + self.assertAliases(Taiwan, TW, TWN) def test_no_holidays(self): self.assertNoHolidays(Taiwan(years=1911)) diff --git a/tests/countries/test_tanzania.py b/tests/countries/test_tanzania.py index 702e3fad7..840877c2c 100644 --- a/tests/countries/test_tanzania.py +++ b/tests/countries/test_tanzania.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import BANK, PUBLIC from holidays.countries.tanzania import Tanzania, TZ, TZA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestTanzania(TestCase): +class TestTanzania(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Tanzania, years=range(1994, 2077)) def test_country_aliases(self): - self.assertCountryAliases(Tanzania, TZ, TZA) + self.assertAliases(Tanzania, TZ, TZA) def test_no_holidays(self): self.assertNoHolidays(Tanzania(years=1993)) diff --git a/tests/countries/test_thailand.py b/tests/countries/test_thailand.py index 9c4d89a0a..2a58a9760 100644 --- a/tests/countries/test_thailand.py +++ b/tests/countries/test_thailand.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import ARMED_FORCES, BANK, GOVERNMENT, PUBLIC, SCHOOL, WORKDAY from holidays.countries.thailand import Thailand, TH, THA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestThailand(TestCase): +class TestThailand(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Thailand, years=range(1941, 2058), years_non_observed=range(1941, 2058)) def test_country_aliases(self): - self.assertCountryAliases(Thailand, TH, THA) + self.assertAliases(Thailand, TH, THA) def test_no_holidays(self): self.assertNoHolidays(Thailand(years=1940)) diff --git a/tests/countries/test_timor_leste.py b/tests/countries/test_timor_leste.py index 7882c1d3f..ad21196fb 100644 --- a/tests/countries/test_timor_leste.py +++ b/tests/countries/test_timor_leste.py @@ -9,18 +9,20 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import GOVERNMENT, PUBLIC, WORKDAY from holidays.countries.timor_leste import TimorLeste, TL, TLS -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestTimorLeste(TestCase): +class TestTimorLeste(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(TimorLeste, years=range(2006, 2050)) def test_country_aliases(self): - self.assertCountryAliases(TimorLeste, TL, TLS) + self.assertAliases(TimorLeste, TL, TLS) def test_no_holidays(self): self.assertNoHolidays(TimorLeste(years=2005)) diff --git a/tests/countries/test_tonga.py b/tests/countries/test_tonga.py index fe78e9631..e64a6d0c9 100644 --- a/tests/countries/test_tonga.py +++ b/tests/countries/test_tonga.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.tonga import Tonga, TO, TON -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestTonga(TestCase): +class TestTonga(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Tonga, years=range(1989, 2050), years_non_observed=range(1989, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Tonga, TO, TON) + self.assertAliases(Tonga, TO, TON) def test_no_holidays(self): self.assertNoHolidays(Tonga(years=1988)) diff --git a/tests/countries/test_tunisia.py b/tests/countries/test_tunisia.py index 208742151..ce15ad7dc 100644 --- a/tests/countries/test_tunisia.py +++ b/tests/countries/test_tunisia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.tunisia import Tunisia, TN, TUN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestTunisia(TestCase): +class TestTunisia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Tunisia) def test_country_aliases(self): - self.assertCountryAliases(Tunisia, TN, TUN) + self.assertAliases(Tunisia, TN, TUN) def test_2021(self): self.assertHolidayDates( diff --git a/tests/countries/test_turkey.py b/tests/countries/test_turkey.py index c7232afd8..b09b684a1 100644 --- a/tests/countries/test_turkey.py +++ b/tests/countries/test_turkey.py @@ -11,19 +11,20 @@ from datetime import date from datetime import timedelta as td +from unittest import TestCase from holidays.constants import HALF_DAY, PUBLIC from holidays.countries.turkey import Turkey, TR, TUR -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestTurkey(TestCase): +class TestTurkey(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Turkey, years=range(1936, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Turkey, TR, TUR) + self.assertAliases(Turkey, TR, TUR) def test_no_holidays(self): self.assertNoHolidays(Turkey(categories=(HALF_DAY, PUBLIC), years=1935)) diff --git a/tests/countries/test_ukraine.py b/tests/countries/test_ukraine.py index d52579e33..270f779bb 100644 --- a/tests/countries/test_ukraine.py +++ b/tests/countries/test_ukraine.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.ukraine import Ukraine, UA, UKR -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestUkraine(TestCase): +class TestUkraine(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Ukraine, years=range(1991, 2023), years_non_observed=range(1991, 2023)) def test_country_aliases(self): - self.assertCountryAliases(Ukraine, UA, UKR) + self.assertAliases(Ukraine, UA, UKR) def test_no_holidays(self): self.assertNoHolidays(Ukraine(years=1990)) diff --git a/tests/countries/test_united_arab_emirates.py b/tests/countries/test_united_arab_emirates.py index 9ff5ee856..1a8f73935 100644 --- a/tests/countries/test_united_arab_emirates.py +++ b/tests/countries/test_united_arab_emirates.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.united_arab_emirates import UnitedArabEmirates, AE, ARE -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestUnitedArabEmirates(TestCase): +class TestUnitedArabEmirates(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(UnitedArabEmirates) def test_country_aliases(self): - self.assertCountryAliases(UnitedArabEmirates, AE, ARE) + self.assertAliases(UnitedArabEmirates, AE, ARE) def test_2020(self): self.assertHoliday( diff --git a/tests/countries/test_united_kingdom.py b/tests/countries/test_united_kingdom.py index ff0c6fd53..2543f0f23 100644 --- a/tests/countries/test_united_kingdom.py +++ b/tests/countries/test_united_kingdom.py @@ -10,12 +10,13 @@ # License: MIT (see LICENSE file) import warnings +from unittest import TestCase from holidays.countries.united_kingdom import UnitedKingdom, UK, GB, GBR -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestUnitedKingdom(TestCase): +class TestUnitedKingdom(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass( @@ -35,8 +36,8 @@ def setUp(self): warnings.simplefilter("ignore", category=DeprecationWarning) def test_country_aliases(self): - self.assertCountryAliases(UnitedKingdom, UK, GBR) - self.assertCountryAliases(UnitedKingdom, GB, GBR) + self.assertAliases(UnitedKingdom, UK, GBR) + self.assertAliases(UnitedKingdom, GB, GBR) def test_special_holidays(self): self.assertHoliday( diff --git a/tests/countries/test_united_states.py b/tests/countries/test_united_states.py index ed3d51639..6d2b637a1 100644 --- a/tests/countries/test_united_states.py +++ b/tests/countries/test_united_states.py @@ -9,11 +9,13 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.united_states import UnitedStates, US, USA -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestUS(TestCase): +class TestUS(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass( @@ -25,7 +27,7 @@ def setUpClass(cls): } def test_country_aliases(self): - self.assertCountryAliases(UnitedStates, US, USA) + self.assertAliases(UnitedStates, US, USA) def test_subdiv_deprecation(self): self.assertDeprecatedSubdivisions("This subdivision is deprecated and will be removed") diff --git a/tests/countries/test_united_states_minor_outlying_islands.py b/tests/countries/test_united_states_minor_outlying_islands.py index 9d7e7aefa..51e03e06d 100644 --- a/tests/countries/test_united_states_minor_outlying_islands.py +++ b/tests/countries/test_united_states_minor_outlying_islands.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.united_states_minor_outlying_islands import HolidaysUM, UM, UMI -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestUM(TestCase): +class TestUM(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(HolidaysUM) def test_country_aliases(self): - self.assertCountryAliases(HolidaysUM, UM, UMI) + self.assertAliases(HolidaysUM, UM, UMI) def test_common(self): self.assertIn("Christmas Day", self.holidays["2022-12-25"]) diff --git a/tests/countries/test_united_states_virgin_islands.py b/tests/countries/test_united_states_virgin_islands.py index c1d3393eb..4a32d2259 100644 --- a/tests/countries/test_united_states_virgin_islands.py +++ b/tests/countries/test_united_states_virgin_islands.py @@ -10,19 +10,20 @@ # License: MIT (see LICENSE file) from datetime import date +from unittest import TestCase from holidays.calendars.gregorian import MAR from holidays.countries.united_states_virgin_islands import HolidaysVI, VI, VIR -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestVI(TestCase): +class TestVI(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(HolidaysVI) def test_country_aliases(self): - self.assertCountryAliases(HolidaysVI, VI, VIR) + self.assertAliases(HolidaysVI, VI, VIR) def test_vi_only(self): """Check for a holiday that is not returned by US unless the diff --git a/tests/countries/test_uruguay.py b/tests/countries/test_uruguay.py index 35486e16d..101ba44bb 100644 --- a/tests/countries/test_uruguay.py +++ b/tests/countries/test_uruguay.py @@ -9,12 +9,14 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.constants import BANK, PUBLIC from holidays.countries.uruguay import Uruguay, UY, URY -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestUruguay(TestCase): +class TestUruguay(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): years = range(1920, 2050) @@ -22,7 +24,7 @@ def setUpClass(cls): cls.bank_holidays = Uruguay(years=years, categories=BANK) def test_country_aliases(self): - self.assertCountryAliases(Uruguay, UY, URY) + self.assertAliases(Uruguay, UY, URY) def test_no_holidays(self): self.assertNoHolidays(Uruguay(categories=(BANK, PUBLIC), years=1919)) diff --git a/tests/countries/test_uzbekistan.py b/tests/countries/test_uzbekistan.py index 0c0988722..c7c03b4f7 100644 --- a/tests/countries/test_uzbekistan.py +++ b/tests/countries/test_uzbekistan.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.uzbekistan import Uzbekistan, UZ, UZB -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestUzbekistan(TestCase): +class TestUzbekistan(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Uzbekistan, years=range(1992, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Uzbekistan, UZ, UZB) + self.assertAliases(Uzbekistan, UZ, UZB) def test_no_holidays(self): self.assertNoHolidays(Uzbekistan(years=1991)) diff --git a/tests/countries/test_vanuatu.py b/tests/countries/test_vanuatu.py index 4a1704e4d..6fc272e37 100644 --- a/tests/countries/test_vanuatu.py +++ b/tests/countries/test_vanuatu.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.vanuatu import Vanuatu, VU, VTU -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestVanuatu(TestCase): +class TestVanuatu(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Vanuatu, years=range(1981, 2050), years_non_observed=range(2000, 2024)) def test_country_aliases(self): - self.assertCountryAliases(Vanuatu, VU, VTU) + self.assertAliases(Vanuatu, VU, VTU) def test_no_holidays(self): self.assertNoHolidays(Vanuatu(years=1980)) diff --git a/tests/countries/test_vatican_city.py b/tests/countries/test_vatican_city.py index 48392d9df..16e483c24 100644 --- a/tests/countries/test_vatican_city.py +++ b/tests/countries/test_vatican_city.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.vatican_city import VaticanCity, VA, VAT -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestVaticanCity(TestCase): +class TestVaticanCity(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(VaticanCity, years=range(1970, 2050)) def test_country_aliases(self): - self.assertCountryAliases(VaticanCity, VA, VAT) + self.assertAliases(VaticanCity, VA, VAT) def test_no_holidays(self): self.assertNoHolidays(VaticanCity(years=1928)) diff --git a/tests/countries/test_venezuela.py b/tests/countries/test_venezuela.py index c44590863..3b5a86a36 100644 --- a/tests/countries/test_venezuela.py +++ b/tests/countries/test_venezuela.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.venezuela import Venezuela, VE, VEN -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestVenezuela(TestCase): +class TestVenezuela(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Venezuela, years=range(1900, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Venezuela, VE, VEN) + self.assertAliases(Venezuela, VE, VEN) def test_2016(self): # https://www.officeholidays.com/countries/venezuela/2016 diff --git a/tests/countries/test_vietnam.py b/tests/countries/test_vietnam.py index 9de2f9708..92fe03161 100644 --- a/tests/countries/test_vietnam.py +++ b/tests/countries/test_vietnam.py @@ -11,18 +11,19 @@ from datetime import date from datetime import timedelta as td +from unittest import TestCase from holidays.countries.vietnam import Vietnam, VN, VNM -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestVietnam(TestCase): +class TestVietnam(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Vietnam, years=range(1979, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Vietnam, VN, VNM) + self.assertAliases(Vietnam, VN, VNM) def test_common(self): self.assertHolidayName( diff --git a/tests/countries/test_zambia.py b/tests/countries/test_zambia.py index 23866c0bb..4becdbb91 100644 --- a/tests/countries/test_zambia.py +++ b/tests/countries/test_zambia.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.zambia import Zambia, ZM, ZMB -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestZambia(TestCase): +class TestZambia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Zambia, years=range(1965, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Zambia, ZM, ZMB) + self.assertAliases(Zambia, ZM, ZMB) def test_no_holidays(self): self.assertNoHolidays(Zambia(years=1964)) diff --git a/tests/countries/test_zimbabwe.py b/tests/countries/test_zimbabwe.py index 1c558d735..2a5c2c9bd 100644 --- a/tests/countries/test_zimbabwe.py +++ b/tests/countries/test_zimbabwe.py @@ -9,17 +9,19 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) +from unittest import TestCase + from holidays.countries.zimbabwe import Zimbabwe, ZW, ZWE -from tests.common import TestCase +from tests.common import CommonCountryTests -class TestZimbabwe(TestCase): +class TestZimbabwe(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(Zimbabwe, years=range(1988, 2050)) def test_country_aliases(self): - self.assertCountryAliases(Zimbabwe, ZW, ZWE) + self.assertAliases(Zimbabwe, ZW, ZWE) def test_no_holidays(self): self.assertNoHolidays(Zimbabwe(years=1987)) diff --git a/tests/financial/test_european_central_bank.py b/tests/financial/test_european_central_bank.py index 5aef2bdf1..5df205377 100644 --- a/tests/financial/test_european_central_bank.py +++ b/tests/financial/test_european_central_bank.py @@ -9,16 +9,21 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) -import unittest from datetime import date from datetime import timedelta as td +from unittest import TestCase -import holidays +from holidays.financial.european_central_bank import EuropeanCentralBank, ECB, TAR +from tests.common import CommonFinancialTests -class TestTAR(unittest.TestCase): - def setUp(self): - self.holidays = holidays.TAR() +class TestEuropeanCentralBank(CommonFinancialTests, TestCase): + @classmethod + def setUpClass(cls): + super().setUpClass(EuropeanCentralBank) + + def test_market_aliases(self): + self.assertAliases(EuropeanCentralBank, ECB, TAR) def test_new_years(self): for year in range(1974, 2100): @@ -27,7 +32,7 @@ def test_new_years(self): self.assertNotIn(dt + td(days=-1), self.holidays) def test_good_friday(self): - for dt in [ + for dt in ( date(1900, 4, 13), date(1901, 4, 5), date(1902, 3, 28), @@ -37,13 +42,13 @@ def test_good_friday(self): date(2018, 3, 30), date(2019, 4, 19), date(2020, 4, 10), - ]: + ): self.assertIn(dt, self.holidays) self.assertNotIn(dt + td(days=-1), self.holidays) self.assertNotIn(dt + td(days=+1), self.holidays) def test_easter_monday(self): - for dt in [ + for dt in ( date(1900, 4, 16), date(1901, 4, 8), date(1902, 3, 31), @@ -53,7 +58,7 @@ def test_easter_monday(self): date(2018, 4, 2), date(2019, 4, 22), date(2020, 4, 13), - ]: + ): self.assertIn(dt, self.holidays) self.assertNotIn(dt + td(days=-1), self.holidays) self.assertNotIn(dt + td(days=+1), self.holidays) @@ -77,28 +82,13 @@ def test_26_december_day(self): self.assertIn(dt, self.holidays) self.assertNotIn(dt + td(days=+1), self.holidays) - def test_all_holidays_present(self): - tar_2015 = holidays.TAR(years=[2015]) - all_holidays = [ - "New Year's Day", - "Good Friday", - "Easter Monday", - "1 May (Labour Day)", - "Christmas Day", - "26 December", - ] - for holiday in all_holidays: - self.assertIn(holiday, tar_2015.values()) - - -class TestECB(unittest.TestCase): - def setUp(self): - self.holidays_ecb = holidays.ECB() - self.holidays_tar = holidays.TAR() - - def test_new_years(self): - for year in range(1974, 2100): - self.holidays_ecb._populate(year) - self.holidays_tar._populate(year) - for holiday in self.holidays_tar: - self.assertIn(holiday, self.holidays_ecb) + def test_2015(self): + self.assertHolidays( + EuropeanCentralBank(years=2015), + ("2015-01-01", "New Year's Day"), + ("2015-04-03", "Good Friday"), + ("2015-04-06", "Easter Monday"), + ("2015-05-01", "1 May (Labour Day)"), + ("2015-12-25", "Christmas Day"), + ("2015-12-26", "26 December"), + ) diff --git a/tests/financial/test_ny_stock_exchange.py b/tests/financial/test_ny_stock_exchange.py index 50c031173..1057ed53c 100644 --- a/tests/financial/test_ny_stock_exchange.py +++ b/tests/financial/test_ny_stock_exchange.py @@ -11,6 +11,7 @@ from datetime import date from datetime import timedelta as td +from unittest import TestCase from holidays.calendars.gregorian import ( JAN, @@ -29,15 +30,18 @@ SAT, SUN, ) -from holidays.financial.ny_stock_exchange import NewYorkStockExchange -from tests.common import TestCase +from holidays.financial.ny_stock_exchange import NewYorkStockExchange, NYSE, XNYS +from tests.common import CommonFinancialTests -class TestNewYorkStockExchange(TestCase): +class TestNewYorkStockExchange(CommonFinancialTests, TestCase): @classmethod def setUpClass(cls): super().setUpClass(NewYorkStockExchange) + def test_market_aliases(self): + self.assertAliases(NewYorkStockExchange, NYSE, XNYS) + def test_new_years(self): for dt in ( date(1900, JAN, 1), From c89823f1b79df94f987b8eca3b41a624a9d45e0a Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Wed, 10 Jan 2024 05:48:32 +0200 Subject: [PATCH 18/23] Update Paraguay holidays (#1634) --- README.rst | 2 +- holidays/countries/paraguay.py | 115 +++-- holidays/locale/en_US/LC_MESSAGES/PY.po | 20 +- holidays/locale/es/LC_MESSAGES/PY.po | 12 +- holidays/locale/uk/LC_MESSAGES/PY.po | 12 +- snapshots/countries/PY_COMMON.json | 606 ++++++++++++------------ tests/countries/test_paraguay.py | 351 ++++++++------ 7 files changed, 592 insertions(+), 526 deletions(-) diff --git a/README.rst b/README.rst index 8cdeb74da..58131a24f 100644 --- a/README.rst +++ b/README.rst @@ -682,7 +682,7 @@ All other default values are highlighted with bold: - PY - - en_US, **es**, uk - - + - GOVERNMENT * - Peru - PE - diff --git a/holidays/countries/paraguay.py b/holidays/countries/paraguay.py index 637505a28..10be6bc9b 100644 --- a/holidays/countries/paraguay.py +++ b/holidays/countries/paraguay.py @@ -13,19 +13,22 @@ from gettext import gettext as tr from holidays.calendars.gregorian import JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, DEC +from holidays.constants import GOVERNMENT, PUBLIC from holidays.groups import ChristianHolidays, InternationalHolidays, StaticHolidays from holidays.holiday_base import HolidayBase class Paraguay(HolidayBase, ChristianHolidays, InternationalHolidays, StaticHolidays): """ - https://www.ghp.com.py/news/feriados-nacionales-del-ano-2019-en-paraguay - https://es.wikipedia.org/wiki/Anexo:D%C3%ADas_feriados_en_Paraguay - http://www.calendarioparaguay.com/ + References: + - https://es.wikipedia.org/wiki/Anexo:D%C3%ADas_festivos_en_Paraguay + - https://www.ghp.com.py/news/feriados-nacionales-del-ano-2019-en-paraguay + - http://www.calendarioparaguay.com/ """ country = "PY" default_language = "es" + supported_categories = (GOVERNMENT, PUBLIC) supported_languages = ("en_US", "es", "uk") def __init__(self, *args, **kwargs): @@ -61,10 +64,10 @@ def _populate_public_holidays(self): # Good Friday. self._add_good_friday(tr("Viernes Santo")) - # Easter Day. - self._move_holiday(self._add_easter_sunday(tr("Día de Pascuas"))) + # Easter Sunday. + self._move_holiday(self._add_easter_sunday(tr("Domingo de Resurrección"))) - # Labour Day. + # Labor Day. self._move_holiday(self._add_labor_day(tr("Día del Trabajador"))) # Independence Day. @@ -106,7 +109,7 @@ def _populate_public_holidays(self): # Caacupe Virgin Day. self._move_holiday(self._add_holiday_dec_8(tr("Día de la Virgen de Caacupé"))) - # Christmas. + # Christmas Day. self._add_christmas_day(tr("Navidad")) @@ -123,104 +126,96 @@ class ParaguayStaticHolidays: public_holiday = tr("Asueto adicionale") # Public sector holiday. public_sector_holiday = tr("Asueto de la Administración Pública") + special_public_holidays = { - # public holiday for business purposes, in view of - # the recently increased risk of Dengue fever + # public holiday for business purposes, in view of the recently increased risk + # of Dengue fever. 2007: (JAN, 29, public_holiday), - # public sector holiday to celebrate Paraguay's - # football team's qualification for the 2010 World Cup + # public sector holiday to celebrate Paraguay's football team's qualification + # for the 2010 World Cup. 2009: (SEP, 10, public_holiday), + # public holiday to coincide with the Paraguay-Italy game of the current World Cup. + 2010: (JUN, 14, public_holiday), + 2011: ( + # public holiday to coincide with the current anti-Dengue drive. + (APR, 19, public_holiday), + # public holidays to commemorate the Bicentennial of Paraguay's independence. + (MAY, 14, public_holiday), + (MAY, 16, public_holiday), + ), + # date of the inauguration of President-elect Horacio Cartes. + 2013: (AUG, 14, public_holiday), + 2015: ( + # public holidays in Paraguay on account of the upcoming visit of Pope Francis + # in Paraguay. + (JUL, 10, public_holiday), + (JUL, 11, public_holiday), + ), + } + + special_government_holidays = { 2010: ( - # public holiday to coincide with the Paraguay-Italy - # game of the current World Cup - (JUN, 14, public_holiday), - # 2 year-end public sector holidays + # 2 year-end public sector holidays. (DEC, 24, public_sector_holiday), (DEC, 31, public_sector_holiday), ), 2011: ( - # public holiday to coincide with the current anti-Dengue drive - (APR, 19, public_holiday), - # public sector holiday to let civil servants - # begin their Holy Week earlier + # public sector holiday to let civil servants begin their Holy Week earlier. (APR, 20, public_sector_holiday), - # public holidays to commemorate the Bicentennial - # of Paraguay's independence - (MAY, 14, public_holiday), - (MAY, 16, public_holiday), - # 2 year-end public sector holidays + # 2 year-end public sector holidays. (DEC, 23, public_sector_holiday), (DEC, 30, public_sector_holiday), ), 2012: ( - # public sector holiday to let civil servants - # begin their Holy Week earlier + # public sector holiday to let civil servants begin their Holy Week earlier. (APR, 4, public_sector_holiday), - # 2 year-end public sector holidays + # 2 year-end public sector holidays. (DEC, 24, public_sector_holiday), (DEC, 31, public_sector_holiday), ), - 2013: ( - # public sector holiday to let civil servants - # begin their Holy Week earlier - (MAR, 27, public_sector_holiday), - # date of the inauguration of President-elect - # Horacio Cartes, as a one-off non-working public holiday - (AUG, 14, public_holiday), - ), + # public sector holiday to let civil servants begin their Holy Week earlier. + 2013: (MAR, 27, public_sector_holiday), 2014: ( - # public sector holiday to let civil servants - # begin their Holy Week earlier + # public sector holiday to let civil servants begin their Holy Week earlier. (APR, 16, public_sector_holiday), - # 2 year-end public sector holidays + # 2 year-end public sector holidays. (DEC, 24, public_sector_holiday), (DEC, 31, public_sector_holiday), ), 2015: ( - # public sector holiday to let civil servants - # begin their Holy Week earlier + # public sector holiday to let civil servants begin their Holy Week earlier. (APR, 1, public_sector_holiday), - # public holidays in Paraguay on account - # of the upcoming visit of Pope Francis in Paraguay - (JUL, 10, public_holiday), - (JUL, 11, public_holiday), - # 2 year-end public sector holidays + # 2 year-end public sector holidays. (DEC, 24, public_sector_holiday), (DEC, 31, public_sector_holiday), ), - # public sector holiday to let civil servants - # begin their Holy Week earlier + # public sector holiday to let civil servants begin their Holy Week earlier. 2016: (MAR, 23, public_sector_holiday), - # public sector holiday to let civil servants - # begin their Holy Week earlier + # public sector holiday to let civil servants begin their Holy Week earlier. 2017: (MAR, 28, public_sector_holiday), 2018: ( - # 2 year-end public sector holidays + # 2 year-end public sector holidays. (DEC, 24, public_sector_holiday), (DEC, 31, public_sector_holiday), ), 2019: ( - # public sector holiday to let civil servants - # begin their Holy Week earlier + # public sector holiday to let civil servants begin their Holy Week earlier. (APR, 17, public_sector_holiday), - # 2 year-end public sector holidays + # 2 year-end public sector holidays. (DEC, 24, public_sector_holiday), (DEC, 31, public_sector_holiday), ), - # public sector holiday to let civil servants - # begin their Holy Week earlier + # public sector holiday to let civil servants begin their Holy Week earlier. 2020: (APR, 8, public_sector_holiday), 2021: ( - # 2 year-end public sector holidays + # 2 year-end public sector holidays. (DEC, 24, public_sector_holiday), (DEC, 31, public_sector_holiday), ), 2022: ( - # public sector holiday to let civil servants - # begin their Holy Week earlier + # public sector holiday to let civil servants begin their Holy Week earlier. (APR, 13, public_sector_holiday), - # public sector holiday due to the annual May 1st - # public holiday falling on a Sunday + # public sector holiday due to the annual May 1st public holiday falling on a Sunday. (MAY, 2, public_sector_holiday), ), } diff --git a/holidays/locale/en_US/LC_MESSAGES/PY.po b/holidays/locale/en_US/LC_MESSAGES/PY.po index d0392be5b..b167e2cbc 100644 --- a/holidays/locale/en_US/LC_MESSAGES/PY.po +++ b/holidays/locale/en_US/LC_MESSAGES/PY.po @@ -3,9 +3,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" -"PO-Revision-Date: 2023-03-05 13:05+0200\n" +"PO-Revision-Date: 2024-01-05 12:44+0200\n" "Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: en_US\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: pygettext.py 1.5\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.4\n" #. Public holiday. msgid "Asueto adicionale" @@ -40,13 +40,13 @@ msgstr "Maundy Thursday" msgid "Viernes Santo" msgstr "Good Friday" -#. Easter Day. -msgid "Día de Pascuas" -msgstr "Easter Day" +#. Easter Sunday. +msgid "Domingo de Resurrección" +msgstr "Easter Sunday" -#. Labour Day. +#. Labor Day. msgid "Día del Trabajador" -msgstr "Labour Day" +msgstr "Labor Day" #. Independence Day. msgid "Día de la Independencia Nacional" @@ -68,6 +68,6 @@ msgstr "Boqueron Battle Day" msgid "Día de la Virgen de Caacupé" msgstr "Caacupe Virgin Day" -#. Christmas. +#. Christmas Day. msgid "Navidad" -msgstr "Christmas" +msgstr "Christmas Day" diff --git a/holidays/locale/es/LC_MESSAGES/PY.po b/holidays/locale/es/LC_MESSAGES/PY.po index 6947ea357..6052781ab 100644 --- a/holidays/locale/es/LC_MESSAGES/PY.po +++ b/holidays/locale/es/LC_MESSAGES/PY.po @@ -3,9 +3,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" -"PO-Revision-Date: 2023-03-05 12:45+0200\n" +"PO-Revision-Date: 2024-01-05 12:41+0200\n" "Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: es\n" @@ -40,11 +40,11 @@ msgstr "" msgid "Viernes Santo" msgstr "" -#. Easter Day. -msgid "Día de Pascuas" +#. Easter Sunday. +msgid "Domingo de Resurrección" msgstr "" -#. Labour Day. +#. Labor Day. msgid "Día del Trabajador" msgstr "" @@ -68,6 +68,6 @@ msgstr "" msgid "Día de la Virgen de Caacupé" msgstr "" -#. Christmas. +#. Christmas Day. msgid "Navidad" msgstr "" diff --git a/holidays/locale/uk/LC_MESSAGES/PY.po b/holidays/locale/uk/LC_MESSAGES/PY.po index 910bec617..4777357be 100644 --- a/holidays/locale/uk/LC_MESSAGES/PY.po +++ b/holidays/locale/uk/LC_MESSAGES/PY.po @@ -3,9 +3,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.22\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-05 12:33+0200\n" -"PO-Revision-Date: 2023-03-05 14:16+0200\n" +"PO-Revision-Date: 2024-01-05 12:45+0200\n" "Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: uk\n" @@ -40,11 +40,11 @@ msgstr "Великий четвер" msgid "Viernes Santo" msgstr "Страсна пʼятниця" -#. Easter Day. -msgid "Día de Pascuas" +#. Easter Sunday. +msgid "Domingo de Resurrección" msgstr "Великдень" -#. Labour Day. +#. Labor Day. msgid "Día del Trabajador" msgstr "День трудящих" @@ -68,6 +68,6 @@ msgstr "День битви за Бокерон" msgid "Día de la Virgen de Caacupé" msgstr "Успіння Пресвятої Богородиці" -#. Christmas. +#. Christmas Day. msgid "Navidad" msgstr "Різдво Христове" diff --git a/snapshots/countries/PY_COMMON.json b/snapshots/countries/PY_COMMON.json index cd7145ad5..356756b9a 100644 --- a/snapshots/countries/PY_COMMON.json +++ b/snapshots/countries/PY_COMMON.json @@ -3,680 +3,680 @@ "1950-03-01": "Patriots Day", "1950-04-06": "Maundy Thursday", "1950-04-07": "Good Friday", - "1950-04-09": "Easter Day", - "1950-05-01": "Labour Day", + "1950-04-09": "Easter Sunday", + "1950-05-01": "Labor Day", "1950-05-15": "Independence Day", "1950-06-12": "Chaco Armistice Day", "1950-08-15": "Asuncion Foundation's Day", "1950-12-08": "Caacupe Virgin Day", - "1950-12-25": "Christmas", + "1950-12-25": "Christmas Day", "1951-01-01": "New Year's Day", "1951-03-01": "Patriots Day", "1951-03-22": "Maundy Thursday", "1951-03-23": "Good Friday", - "1951-03-25": "Easter Day", - "1951-05-01": "Labour Day", + "1951-03-25": "Easter Sunday", + "1951-05-01": "Labor Day", "1951-05-15": "Independence Day", "1951-06-12": "Chaco Armistice Day", "1951-08-15": "Asuncion Foundation's Day", "1951-12-08": "Caacupe Virgin Day", - "1951-12-25": "Christmas", + "1951-12-25": "Christmas Day", "1952-01-01": "New Year's Day", "1952-03-01": "Patriots Day", "1952-04-10": "Maundy Thursday", "1952-04-11": "Good Friday", - "1952-04-13": "Easter Day", - "1952-05-01": "Labour Day", + "1952-04-13": "Easter Sunday", + "1952-05-01": "Labor Day", "1952-05-15": "Independence Day", "1952-06-12": "Chaco Armistice Day", "1952-08-15": "Asuncion Foundation's Day", "1952-12-08": "Caacupe Virgin Day", - "1952-12-25": "Christmas", + "1952-12-25": "Christmas Day", "1953-01-01": "New Year's Day", "1953-03-01": "Patriots Day", "1953-04-02": "Maundy Thursday", "1953-04-03": "Good Friday", - "1953-04-05": "Easter Day", - "1953-05-01": "Labour Day", + "1953-04-05": "Easter Sunday", + "1953-05-01": "Labor Day", "1953-05-15": "Independence Day", "1953-06-12": "Chaco Armistice Day", "1953-08-15": "Asuncion Foundation's Day", "1953-12-08": "Caacupe Virgin Day", - "1953-12-25": "Christmas", + "1953-12-25": "Christmas Day", "1954-01-01": "New Year's Day", "1954-03-01": "Patriots Day", "1954-04-15": "Maundy Thursday", "1954-04-16": "Good Friday", - "1954-04-18": "Easter Day", - "1954-05-01": "Labour Day", + "1954-04-18": "Easter Sunday", + "1954-05-01": "Labor Day", "1954-05-15": "Independence Day", "1954-06-12": "Chaco Armistice Day", "1954-08-15": "Asuncion Foundation's Day", "1954-12-08": "Caacupe Virgin Day", - "1954-12-25": "Christmas", + "1954-12-25": "Christmas Day", "1955-01-01": "New Year's Day", "1955-03-01": "Patriots Day", "1955-04-07": "Maundy Thursday", "1955-04-08": "Good Friday", - "1955-04-10": "Easter Day", - "1955-05-01": "Labour Day", + "1955-04-10": "Easter Sunday", + "1955-05-01": "Labor Day", "1955-05-15": "Independence Day", "1955-06-12": "Chaco Armistice Day", "1955-08-15": "Asuncion Foundation's Day", "1955-12-08": "Caacupe Virgin Day", - "1955-12-25": "Christmas", + "1955-12-25": "Christmas Day", "1956-01-01": "New Year's Day", "1956-03-01": "Patriots Day", "1956-03-29": "Maundy Thursday", "1956-03-30": "Good Friday", - "1956-04-01": "Easter Day", - "1956-05-01": "Labour Day", + "1956-04-01": "Easter Sunday", + "1956-05-01": "Labor Day", "1956-05-15": "Independence Day", "1956-06-12": "Chaco Armistice Day", "1956-08-15": "Asuncion Foundation's Day", "1956-12-08": "Caacupe Virgin Day", - "1956-12-25": "Christmas", + "1956-12-25": "Christmas Day", "1957-01-01": "New Year's Day", "1957-03-01": "Patriots Day", "1957-04-18": "Maundy Thursday", "1957-04-19": "Good Friday", - "1957-04-21": "Easter Day", - "1957-05-01": "Labour Day", + "1957-04-21": "Easter Sunday", + "1957-05-01": "Labor Day", "1957-05-15": "Independence Day", "1957-06-12": "Chaco Armistice Day", "1957-08-15": "Asuncion Foundation's Day", "1957-12-08": "Caacupe Virgin Day", - "1957-12-25": "Christmas", + "1957-12-25": "Christmas Day", "1958-01-01": "New Year's Day", "1958-03-01": "Patriots Day", "1958-04-03": "Maundy Thursday", "1958-04-04": "Good Friday", - "1958-04-06": "Easter Day", - "1958-05-01": "Labour Day", + "1958-04-06": "Easter Sunday", + "1958-05-01": "Labor Day", "1958-05-15": "Independence Day", "1958-06-12": "Chaco Armistice Day", "1958-08-15": "Asuncion Foundation's Day", "1958-12-08": "Caacupe Virgin Day", - "1958-12-25": "Christmas", + "1958-12-25": "Christmas Day", "1959-01-01": "New Year's Day", "1959-03-01": "Patriots Day", "1959-03-26": "Maundy Thursday", "1959-03-27": "Good Friday", - "1959-03-29": "Easter Day", - "1959-05-01": "Labour Day", + "1959-03-29": "Easter Sunday", + "1959-05-01": "Labor Day", "1959-05-15": "Independence Day", "1959-06-12": "Chaco Armistice Day", "1959-08-15": "Asuncion Foundation's Day", "1959-12-08": "Caacupe Virgin Day", - "1959-12-25": "Christmas", + "1959-12-25": "Christmas Day", "1960-01-01": "New Year's Day", "1960-03-01": "Patriots Day", "1960-04-14": "Maundy Thursday", "1960-04-15": "Good Friday", - "1960-04-17": "Easter Day", - "1960-05-01": "Labour Day", + "1960-04-17": "Easter Sunday", + "1960-05-01": "Labor Day", "1960-05-15": "Independence Day", "1960-06-12": "Chaco Armistice Day", "1960-08-15": "Asuncion Foundation's Day", "1960-12-08": "Caacupe Virgin Day", - "1960-12-25": "Christmas", + "1960-12-25": "Christmas Day", "1961-01-01": "New Year's Day", "1961-03-01": "Patriots Day", "1961-03-30": "Maundy Thursday", "1961-03-31": "Good Friday", - "1961-04-02": "Easter Day", - "1961-05-01": "Labour Day", + "1961-04-02": "Easter Sunday", + "1961-05-01": "Labor Day", "1961-05-15": "Independence Day", "1961-06-12": "Chaco Armistice Day", "1961-08-15": "Asuncion Foundation's Day", "1961-12-08": "Caacupe Virgin Day", - "1961-12-25": "Christmas", + "1961-12-25": "Christmas Day", "1962-01-01": "New Year's Day", "1962-03-01": "Patriots Day", "1962-04-19": "Maundy Thursday", "1962-04-20": "Good Friday", - "1962-04-22": "Easter Day", - "1962-05-01": "Labour Day", + "1962-04-22": "Easter Sunday", + "1962-05-01": "Labor Day", "1962-05-15": "Independence Day", "1962-06-12": "Chaco Armistice Day", "1962-08-15": "Asuncion Foundation's Day", "1962-12-08": "Caacupe Virgin Day", - "1962-12-25": "Christmas", + "1962-12-25": "Christmas Day", "1963-01-01": "New Year's Day", "1963-03-01": "Patriots Day", "1963-04-11": "Maundy Thursday", "1963-04-12": "Good Friday", - "1963-04-14": "Easter Day", - "1963-05-01": "Labour Day", + "1963-04-14": "Easter Sunday", + "1963-05-01": "Labor Day", "1963-05-15": "Independence Day", "1963-06-12": "Chaco Armistice Day", "1963-08-15": "Asuncion Foundation's Day", "1963-12-08": "Caacupe Virgin Day", - "1963-12-25": "Christmas", + "1963-12-25": "Christmas Day", "1964-01-01": "New Year's Day", "1964-03-01": "Patriots Day", "1964-03-26": "Maundy Thursday", "1964-03-27": "Good Friday", - "1964-03-29": "Easter Day", - "1964-05-01": "Labour Day", + "1964-03-29": "Easter Sunday", + "1964-05-01": "Labor Day", "1964-05-15": "Independence Day", "1964-06-12": "Chaco Armistice Day", "1964-08-15": "Asuncion Foundation's Day", "1964-12-08": "Caacupe Virgin Day", - "1964-12-25": "Christmas", + "1964-12-25": "Christmas Day", "1965-01-01": "New Year's Day", "1965-03-01": "Patriots Day", "1965-04-15": "Maundy Thursday", "1965-04-16": "Good Friday", - "1965-04-18": "Easter Day", - "1965-05-01": "Labour Day", + "1965-04-18": "Easter Sunday", + "1965-05-01": "Labor Day", "1965-05-15": "Independence Day", "1965-06-12": "Chaco Armistice Day", "1965-08-15": "Asuncion Foundation's Day", "1965-12-08": "Caacupe Virgin Day", - "1965-12-25": "Christmas", + "1965-12-25": "Christmas Day", "1966-01-01": "New Year's Day", "1966-03-01": "Patriots Day", "1966-04-07": "Maundy Thursday", "1966-04-08": "Good Friday", - "1966-04-10": "Easter Day", - "1966-05-01": "Labour Day", + "1966-04-10": "Easter Sunday", + "1966-05-01": "Labor Day", "1966-05-15": "Independence Day", "1966-06-12": "Chaco Armistice Day", "1966-08-15": "Asuncion Foundation's Day", "1966-12-08": "Caacupe Virgin Day", - "1966-12-25": "Christmas", + "1966-12-25": "Christmas Day", "1967-01-01": "New Year's Day", "1967-03-01": "Patriots Day", "1967-03-23": "Maundy Thursday", "1967-03-24": "Good Friday", - "1967-03-26": "Easter Day", - "1967-05-01": "Labour Day", + "1967-03-26": "Easter Sunday", + "1967-05-01": "Labor Day", "1967-05-15": "Independence Day", "1967-06-12": "Chaco Armistice Day", "1967-08-15": "Asuncion Foundation's Day", "1967-12-08": "Caacupe Virgin Day", - "1967-12-25": "Christmas", + "1967-12-25": "Christmas Day", "1968-01-01": "New Year's Day", "1968-03-01": "Patriots Day", "1968-04-11": "Maundy Thursday", "1968-04-12": "Good Friday", - "1968-04-14": "Easter Day", - "1968-05-01": "Labour Day", + "1968-04-14": "Easter Sunday", + "1968-05-01": "Labor Day", "1968-05-15": "Independence Day", "1968-06-12": "Chaco Armistice Day", "1968-08-15": "Asuncion Foundation's Day", "1968-12-08": "Caacupe Virgin Day", - "1968-12-25": "Christmas", + "1968-12-25": "Christmas Day", "1969-01-01": "New Year's Day", "1969-03-01": "Patriots Day", "1969-04-03": "Maundy Thursday", "1969-04-04": "Good Friday", - "1969-04-06": "Easter Day", - "1969-05-01": "Labour Day", + "1969-04-06": "Easter Sunday", + "1969-05-01": "Labor Day", "1969-05-15": "Independence Day", "1969-06-12": "Chaco Armistice Day", "1969-08-15": "Asuncion Foundation's Day", "1969-12-08": "Caacupe Virgin Day", - "1969-12-25": "Christmas", + "1969-12-25": "Christmas Day", "1970-01-01": "New Year's Day", "1970-03-01": "Patriots Day", "1970-03-26": "Maundy Thursday", "1970-03-27": "Good Friday", - "1970-03-29": "Easter Day", - "1970-05-01": "Labour Day", + "1970-03-29": "Easter Sunday", + "1970-05-01": "Labor Day", "1970-05-15": "Independence Day", "1970-06-12": "Chaco Armistice Day", "1970-08-15": "Asuncion Foundation's Day", "1970-12-08": "Caacupe Virgin Day", - "1970-12-25": "Christmas", + "1970-12-25": "Christmas Day", "1971-01-01": "New Year's Day", "1971-03-01": "Patriots Day", "1971-04-08": "Maundy Thursday", "1971-04-09": "Good Friday", - "1971-04-11": "Easter Day", - "1971-05-01": "Labour Day", + "1971-04-11": "Easter Sunday", + "1971-05-01": "Labor Day", "1971-05-15": "Independence Day", "1971-06-12": "Chaco Armistice Day", "1971-08-15": "Asuncion Foundation's Day", "1971-12-08": "Caacupe Virgin Day", - "1971-12-25": "Christmas", + "1971-12-25": "Christmas Day", "1972-01-01": "New Year's Day", "1972-03-01": "Patriots Day", "1972-03-30": "Maundy Thursday", "1972-03-31": "Good Friday", - "1972-04-02": "Easter Day", - "1972-05-01": "Labour Day", + "1972-04-02": "Easter Sunday", + "1972-05-01": "Labor Day", "1972-05-15": "Independence Day", "1972-06-12": "Chaco Armistice Day", "1972-08-15": "Asuncion Foundation's Day", "1972-12-08": "Caacupe Virgin Day", - "1972-12-25": "Christmas", + "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-03-01": "Patriots Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", - "1973-04-22": "Easter Day", - "1973-05-01": "Labour Day", + "1973-04-22": "Easter Sunday", + "1973-05-01": "Labor Day", "1973-05-15": "Independence Day", "1973-06-12": "Chaco Armistice Day", "1973-08-15": "Asuncion Foundation's Day", "1973-12-08": "Caacupe Virgin Day", - "1973-12-25": "Christmas", + "1973-12-25": "Christmas Day", "1974-01-01": "New Year's Day", "1974-03-01": "Patriots Day", "1974-04-11": "Maundy Thursday", "1974-04-12": "Good Friday", - "1974-04-14": "Easter Day", - "1974-05-01": "Labour Day", + "1974-04-14": "Easter Sunday", + "1974-05-01": "Labor Day", "1974-05-15": "Independence Day", "1974-06-12": "Chaco Armistice Day", "1974-08-15": "Asuncion Foundation's Day", "1974-12-08": "Caacupe Virgin Day", - "1974-12-25": "Christmas", + "1974-12-25": "Christmas Day", "1975-01-01": "New Year's Day", "1975-03-01": "Patriots Day", "1975-03-27": "Maundy Thursday", "1975-03-28": "Good Friday", - "1975-03-30": "Easter Day", - "1975-05-01": "Labour Day", + "1975-03-30": "Easter Sunday", + "1975-05-01": "Labor Day", "1975-05-15": "Independence Day", "1975-06-12": "Chaco Armistice Day", "1975-08-15": "Asuncion Foundation's Day", "1975-12-08": "Caacupe Virgin Day", - "1975-12-25": "Christmas", + "1975-12-25": "Christmas Day", "1976-01-01": "New Year's Day", "1976-03-01": "Patriots Day", "1976-04-15": "Maundy Thursday", "1976-04-16": "Good Friday", - "1976-04-18": "Easter Day", - "1976-05-01": "Labour Day", + "1976-04-18": "Easter Sunday", + "1976-05-01": "Labor Day", "1976-05-15": "Independence Day", "1976-06-12": "Chaco Armistice Day", "1976-08-15": "Asuncion Foundation's Day", "1976-12-08": "Caacupe Virgin Day", - "1976-12-25": "Christmas", + "1976-12-25": "Christmas Day", "1977-01-01": "New Year's Day", "1977-03-01": "Patriots Day", "1977-04-07": "Maundy Thursday", "1977-04-08": "Good Friday", - "1977-04-10": "Easter Day", - "1977-05-01": "Labour Day", + "1977-04-10": "Easter Sunday", + "1977-05-01": "Labor Day", "1977-05-15": "Independence Day", "1977-06-12": "Chaco Armistice Day", "1977-08-15": "Asuncion Foundation's Day", "1977-12-08": "Caacupe Virgin Day", - "1977-12-25": "Christmas", + "1977-12-25": "Christmas Day", "1978-01-01": "New Year's Day", "1978-03-01": "Patriots Day", "1978-03-23": "Maundy Thursday", "1978-03-24": "Good Friday", - "1978-03-26": "Easter Day", - "1978-05-01": "Labour Day", + "1978-03-26": "Easter Sunday", + "1978-05-01": "Labor Day", "1978-05-15": "Independence Day", "1978-06-12": "Chaco Armistice Day", "1978-08-15": "Asuncion Foundation's Day", "1978-12-08": "Caacupe Virgin Day", - "1978-12-25": "Christmas", + "1978-12-25": "Christmas Day", "1979-01-01": "New Year's Day", "1979-03-01": "Patriots Day", "1979-04-12": "Maundy Thursday", "1979-04-13": "Good Friday", - "1979-04-15": "Easter Day", - "1979-05-01": "Labour Day", + "1979-04-15": "Easter Sunday", + "1979-05-01": "Labor Day", "1979-05-15": "Independence Day", "1979-06-12": "Chaco Armistice Day", "1979-08-15": "Asuncion Foundation's Day", "1979-12-08": "Caacupe Virgin Day", - "1979-12-25": "Christmas", + "1979-12-25": "Christmas Day", "1980-01-01": "New Year's Day", "1980-03-01": "Patriots Day", "1980-04-03": "Maundy Thursday", "1980-04-04": "Good Friday", - "1980-04-06": "Easter Day", - "1980-05-01": "Labour Day", + "1980-04-06": "Easter Sunday", + "1980-05-01": "Labor Day", "1980-05-15": "Independence Day", "1980-06-12": "Chaco Armistice Day", "1980-08-15": "Asuncion Foundation's Day", "1980-12-08": "Caacupe Virgin Day", - "1980-12-25": "Christmas", + "1980-12-25": "Christmas Day", "1981-01-01": "New Year's Day", "1981-03-01": "Patriots Day", "1981-04-16": "Maundy Thursday", "1981-04-17": "Good Friday", - "1981-04-19": "Easter Day", - "1981-05-01": "Labour Day", + "1981-04-19": "Easter Sunday", + "1981-05-01": "Labor Day", "1981-05-15": "Independence Day", "1981-06-12": "Chaco Armistice Day", "1981-08-15": "Asuncion Foundation's Day", "1981-12-08": "Caacupe Virgin Day", - "1981-12-25": "Christmas", + "1981-12-25": "Christmas Day", "1982-01-01": "New Year's Day", "1982-03-01": "Patriots Day", "1982-04-08": "Maundy Thursday", "1982-04-09": "Good Friday", - "1982-04-11": "Easter Day", - "1982-05-01": "Labour Day", + "1982-04-11": "Easter Sunday", + "1982-05-01": "Labor Day", "1982-05-15": "Independence Day", "1982-06-12": "Chaco Armistice Day", "1982-08-15": "Asuncion Foundation's Day", "1982-12-08": "Caacupe Virgin Day", - "1982-12-25": "Christmas", + "1982-12-25": "Christmas Day", "1983-01-01": "New Year's Day", "1983-03-01": "Patriots Day", "1983-03-31": "Maundy Thursday", "1983-04-01": "Good Friday", - "1983-04-03": "Easter Day", - "1983-05-01": "Labour Day", + "1983-04-03": "Easter Sunday", + "1983-05-01": "Labor Day", "1983-05-15": "Independence Day", "1983-06-12": "Chaco Armistice Day", "1983-08-15": "Asuncion Foundation's Day", "1983-12-08": "Caacupe Virgin Day", - "1983-12-25": "Christmas", + "1983-12-25": "Christmas Day", "1984-01-01": "New Year's Day", "1984-03-01": "Patriots Day", "1984-04-19": "Maundy Thursday", "1984-04-20": "Good Friday", - "1984-04-22": "Easter Day", - "1984-05-01": "Labour Day", + "1984-04-22": "Easter Sunday", + "1984-05-01": "Labor Day", "1984-05-15": "Independence Day", "1984-06-12": "Chaco Armistice Day", "1984-08-15": "Asuncion Foundation's Day", "1984-12-08": "Caacupe Virgin Day", - "1984-12-25": "Christmas", + "1984-12-25": "Christmas Day", "1985-01-01": "New Year's Day", "1985-03-01": "Patriots Day", "1985-04-04": "Maundy Thursday", "1985-04-05": "Good Friday", - "1985-04-07": "Easter Day", - "1985-05-01": "Labour Day", + "1985-04-07": "Easter Sunday", + "1985-05-01": "Labor Day", "1985-05-15": "Independence Day", "1985-06-12": "Chaco Armistice Day", "1985-08-15": "Asuncion Foundation's Day", "1985-12-08": "Caacupe Virgin Day", - "1985-12-25": "Christmas", + "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-03-01": "Patriots Day", "1986-03-27": "Maundy Thursday", "1986-03-28": "Good Friday", - "1986-03-30": "Easter Day", - "1986-05-01": "Labour Day", + "1986-03-30": "Easter Sunday", + "1986-05-01": "Labor Day", "1986-05-15": "Independence Day", "1986-06-12": "Chaco Armistice Day", "1986-08-15": "Asuncion Foundation's Day", "1986-12-08": "Caacupe Virgin Day", - "1986-12-25": "Christmas", + "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-03-01": "Patriots Day", "1987-04-16": "Maundy Thursday", "1987-04-17": "Good Friday", - "1987-04-19": "Easter Day", - "1987-05-01": "Labour Day", + "1987-04-19": "Easter Sunday", + "1987-05-01": "Labor Day", "1987-05-15": "Independence Day", "1987-06-12": "Chaco Armistice Day", "1987-08-15": "Asuncion Foundation's Day", "1987-12-08": "Caacupe Virgin Day", - "1987-12-25": "Christmas", + "1987-12-25": "Christmas Day", "1988-01-01": "New Year's Day", "1988-03-01": "Patriots Day", "1988-03-31": "Maundy Thursday", "1988-04-01": "Good Friday", - "1988-04-03": "Easter Day", - "1988-05-01": "Labour Day", + "1988-04-03": "Easter Sunday", + "1988-05-01": "Labor Day", "1988-05-15": "Independence Day", "1988-06-12": "Chaco Armistice Day", "1988-08-15": "Asuncion Foundation's Day", "1988-12-08": "Caacupe Virgin Day", - "1988-12-25": "Christmas", + "1988-12-25": "Christmas Day", "1989-01-01": "New Year's Day", "1989-03-01": "Patriots Day", "1989-03-23": "Maundy Thursday", "1989-03-24": "Good Friday", - "1989-03-26": "Easter Day", - "1989-05-01": "Labour Day", + "1989-03-26": "Easter Sunday", + "1989-05-01": "Labor Day", "1989-05-15": "Independence Day", "1989-06-12": "Chaco Armistice Day", "1989-08-15": "Asuncion Foundation's Day", "1989-12-08": "Caacupe Virgin Day", - "1989-12-25": "Christmas", + "1989-12-25": "Christmas Day", "1990-01-01": "New Year's Day", "1990-03-01": "Patriots Day", "1990-04-12": "Maundy Thursday", "1990-04-13": "Good Friday", - "1990-04-15": "Easter Day", - "1990-05-01": "Labour Day", + "1990-04-15": "Easter Sunday", + "1990-05-01": "Labor Day", "1990-05-15": "Independence Day", "1990-06-12": "Chaco Armistice Day", "1990-08-15": "Asuncion Foundation's Day", "1990-12-08": "Caacupe Virgin Day", - "1990-12-25": "Christmas", + "1990-12-25": "Christmas Day", "1991-01-01": "New Year's Day", "1991-03-01": "Patriots Day", "1991-03-28": "Maundy Thursday", "1991-03-29": "Good Friday", - "1991-03-31": "Easter Day", - "1991-05-01": "Labour Day", + "1991-03-31": "Easter Sunday", + "1991-05-01": "Labor Day", "1991-05-15": "Independence Day", "1991-06-12": "Chaco Armistice Day", "1991-08-15": "Asuncion Foundation's Day", "1991-12-08": "Caacupe Virgin Day", - "1991-12-25": "Christmas", + "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-03-01": "Patriots Day", "1992-04-16": "Maundy Thursday", "1992-04-17": "Good Friday", - "1992-04-19": "Easter Day", - "1992-05-01": "Labour Day", + "1992-04-19": "Easter Sunday", + "1992-05-01": "Labor Day", "1992-05-15": "Independence Day", "1992-06-12": "Chaco Armistice Day", "1992-08-15": "Asuncion Foundation's Day", "1992-12-08": "Caacupe Virgin Day", - "1992-12-25": "Christmas", + "1992-12-25": "Christmas Day", "1993-01-01": "New Year's Day", "1993-03-01": "Patriots Day", "1993-04-08": "Maundy Thursday", "1993-04-09": "Good Friday", - "1993-04-11": "Easter Day", - "1993-05-01": "Labour Day", + "1993-04-11": "Easter Sunday", + "1993-05-01": "Labor Day", "1993-05-15": "Independence Day", "1993-06-12": "Chaco Armistice Day", "1993-08-15": "Asuncion Foundation's Day", "1993-12-08": "Caacupe Virgin Day", - "1993-12-25": "Christmas", + "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-03-01": "Patriots Day", "1994-03-31": "Maundy Thursday", "1994-04-01": "Good Friday", - "1994-04-03": "Easter Day", - "1994-05-01": "Labour Day", + "1994-04-03": "Easter Sunday", + "1994-05-01": "Labor Day", "1994-05-15": "Independence Day", "1994-06-12": "Chaco Armistice Day", "1994-08-15": "Asuncion Foundation's Day", "1994-12-08": "Caacupe Virgin Day", - "1994-12-25": "Christmas", + "1994-12-25": "Christmas Day", "1995-01-01": "New Year's Day", "1995-03-01": "Patriots Day", "1995-04-13": "Maundy Thursday", "1995-04-14": "Good Friday", - "1995-04-16": "Easter Day", - "1995-05-01": "Labour Day", + "1995-04-16": "Easter Sunday", + "1995-05-01": "Labor Day", "1995-05-15": "Independence Day", "1995-06-12": "Chaco Armistice Day", "1995-08-15": "Asuncion Foundation's Day", "1995-12-08": "Caacupe Virgin Day", - "1995-12-25": "Christmas", + "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-03-01": "Patriots Day", "1996-04-04": "Maundy Thursday", "1996-04-05": "Good Friday", - "1996-04-07": "Easter Day", - "1996-05-01": "Labour Day", + "1996-04-07": "Easter Sunday", + "1996-05-01": "Labor Day", "1996-05-15": "Independence Day", "1996-06-12": "Chaco Armistice Day", "1996-08-15": "Asuncion Foundation's Day", "1996-12-08": "Caacupe Virgin Day", - "1996-12-25": "Christmas", + "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-03-01": "Patriots Day", "1997-03-27": "Maundy Thursday", "1997-03-28": "Good Friday", - "1997-03-30": "Easter Day", - "1997-05-01": "Labour Day", + "1997-03-30": "Easter Sunday", + "1997-05-01": "Labor Day", "1997-05-15": "Independence Day", "1997-06-12": "Chaco Armistice Day", "1997-08-15": "Asuncion Foundation's Day", "1997-12-08": "Caacupe Virgin Day", - "1997-12-25": "Christmas", + "1997-12-25": "Christmas Day", "1998-01-01": "New Year's Day", "1998-03-01": "Patriots Day", "1998-04-09": "Maundy Thursday", "1998-04-10": "Good Friday", - "1998-04-12": "Easter Day", - "1998-05-01": "Labour Day", + "1998-04-12": "Easter Sunday", + "1998-05-01": "Labor Day", "1998-05-15": "Independence Day", "1998-06-12": "Chaco Armistice Day", "1998-08-15": "Asuncion Foundation's Day", "1998-12-08": "Caacupe Virgin Day", - "1998-12-25": "Christmas", + "1998-12-25": "Christmas Day", "1999-01-01": "New Year's Day", "1999-03-01": "Patriots Day", "1999-04-01": "Maundy Thursday", "1999-04-02": "Good Friday", - "1999-04-04": "Easter Day", - "1999-05-01": "Labour Day", + "1999-04-04": "Easter Sunday", + "1999-05-01": "Labor Day", "1999-05-15": "Independence Day", "1999-06-12": "Chaco Armistice Day", "1999-08-15": "Asuncion Foundation's Day", "1999-12-08": "Caacupe Virgin Day", - "1999-12-25": "Christmas", + "1999-12-25": "Christmas Day", "2000-01-01": "New Year's Day", "2000-03-01": "Patriots Day", "2000-04-20": "Maundy Thursday", "2000-04-21": "Good Friday", - "2000-04-23": "Easter Day", - "2000-05-01": "Labour Day", + "2000-04-23": "Easter Sunday", + "2000-05-01": "Labor Day", "2000-05-15": "Independence Day", "2000-06-12": "Chaco Armistice Day", "2000-08-15": "Asuncion Foundation's Day", "2000-09-29": "Boqueron Battle Day", "2000-12-08": "Caacupe Virgin Day", - "2000-12-25": "Christmas", + "2000-12-25": "Christmas Day", "2001-01-01": "New Year's Day", "2001-03-01": "Patriots Day", "2001-04-12": "Maundy Thursday", "2001-04-13": "Good Friday", - "2001-04-15": "Easter Day", - "2001-05-01": "Labour Day", + "2001-04-15": "Easter Sunday", + "2001-05-01": "Labor Day", "2001-05-15": "Independence Day", "2001-06-12": "Chaco Armistice Day", "2001-08-15": "Asuncion Foundation's Day", "2001-09-29": "Boqueron Battle Day", "2001-12-08": "Caacupe Virgin Day", - "2001-12-25": "Christmas", + "2001-12-25": "Christmas Day", "2002-01-01": "New Year's Day", "2002-03-01": "Patriots Day", "2002-03-28": "Maundy Thursday", "2002-03-29": "Good Friday", - "2002-03-31": "Easter Day", - "2002-05-01": "Labour Day", + "2002-03-31": "Easter Sunday", + "2002-05-01": "Labor Day", "2002-05-15": "Independence Day", "2002-06-12": "Chaco Armistice Day", "2002-08-15": "Asuncion Foundation's Day", "2002-09-29": "Boqueron Battle Day", "2002-12-08": "Caacupe Virgin Day", - "2002-12-25": "Christmas", + "2002-12-25": "Christmas Day", "2003-01-01": "New Year's Day", "2003-03-01": "Patriots Day", "2003-04-17": "Maundy Thursday", "2003-04-18": "Good Friday", - "2003-04-20": "Easter Day", - "2003-05-01": "Labour Day", + "2003-04-20": "Easter Sunday", + "2003-05-01": "Labor Day", "2003-05-15": "Independence Day", "2003-06-12": "Chaco Armistice Day", "2003-08-15": "Asuncion Foundation's Day", "2003-09-29": "Boqueron Battle Day", "2003-12-08": "Caacupe Virgin Day", - "2003-12-25": "Christmas", + "2003-12-25": "Christmas Day", "2004-01-01": "New Year's Day", "2004-03-01": "Patriots Day", "2004-04-08": "Maundy Thursday", "2004-04-09": "Good Friday", - "2004-04-11": "Easter Day", - "2004-05-01": "Labour Day", + "2004-04-11": "Easter Sunday", + "2004-05-01": "Labor Day", "2004-05-15": "Independence Day", "2004-06-12": "Chaco Armistice Day", "2004-08-15": "Asuncion Foundation's Day", "2004-09-29": "Boqueron Battle Day", "2004-12-08": "Caacupe Virgin Day", - "2004-12-25": "Christmas", + "2004-12-25": "Christmas Day", "2005-01-01": "New Year's Day", "2005-03-01": "Patriots Day", "2005-03-24": "Maundy Thursday", "2005-03-25": "Good Friday", - "2005-03-27": "Easter Day", - "2005-05-01": "Labour Day", + "2005-03-27": "Easter Sunday", + "2005-05-01": "Labor Day", "2005-05-15": "Independence Day", "2005-06-12": "Chaco Armistice Day", "2005-08-15": "Asuncion Foundation's Day", "2005-09-29": "Boqueron Battle Day", "2005-12-08": "Caacupe Virgin Day", - "2005-12-25": "Christmas", + "2005-12-25": "Christmas Day", "2006-01-01": "New Year's Day", "2006-03-01": "Patriots Day", "2006-04-13": "Maundy Thursday", "2006-04-14": "Good Friday", - "2006-04-16": "Easter Day", - "2006-05-01": "Labour Day", + "2006-04-16": "Easter Sunday", + "2006-05-01": "Labor Day", "2006-05-15": "Independence Day", "2006-06-12": "Chaco Armistice Day", "2006-08-15": "Asuncion Foundation's Day", "2006-09-29": "Boqueron Battle Day", "2006-12-08": "Caacupe Virgin Day", - "2006-12-25": "Christmas", + "2006-12-25": "Christmas Day", "2007-01-01": "New Year's Day", "2007-01-29": "Public holiday", "2007-03-01": "Patriots Day", "2007-04-05": "Maundy Thursday", "2007-04-06": "Good Friday", - "2007-04-08": "Easter Day", - "2007-05-01": "Labour Day", + "2007-04-08": "Easter Sunday", + "2007-05-01": "Labor Day", "2007-05-15": "Independence Day", "2007-06-12": "Chaco Armistice Day", "2007-08-15": "Asuncion Foundation's Day", "2007-09-29": "Boqueron Battle Day", "2007-12-08": "Caacupe Virgin Day", - "2007-12-25": "Christmas", + "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-03-01": "Patriots Day", "2008-03-20": "Maundy Thursday", "2008-03-21": "Good Friday", - "2008-03-23": "Easter Day", - "2008-05-01": "Labour Day", + "2008-03-23": "Easter Sunday", + "2008-05-01": "Labor Day", "2008-05-15": "Independence Day", "2008-06-12": "Chaco Armistice Day", "2008-08-15": "Asuncion Foundation's Day", "2008-09-29": "Boqueron Battle Day", "2008-12-08": "Caacupe Virgin Day", - "2008-12-25": "Christmas", + "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-03-01": "Patriots Day", "2009-04-09": "Maundy Thursday", "2009-04-10": "Good Friday", - "2009-04-12": "Easter Day", - "2009-05-01": "Labour Day", + "2009-04-12": "Easter Sunday", + "2009-05-01": "Labor Day", "2009-05-15": "Independence Day", "2009-06-12": "Chaco Armistice Day", "2009-08-15": "Asuncion Foundation's Day", "2009-09-10": "Public holiday", "2009-09-29": "Boqueron Battle Day", "2009-12-08": "Caacupe Virgin Day", - "2009-12-25": "Christmas", + "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-03-01": "Patriots Day", "2010-04-01": "Maundy Thursday", "2010-04-02": "Good Friday", - "2010-04-04": "Easter Day", - "2010-05-01": "Labour Day", + "2010-04-04": "Easter Sunday", + "2010-05-01": "Labor Day", "2010-05-15": "Independence Day", "2010-06-12": "Chaco Armistice Day", "2010-06-14": "Public holiday", @@ -684,7 +684,7 @@ "2010-09-29": "Boqueron Battle Day", "2010-12-08": "Caacupe Virgin Day", "2010-12-24": "Public sector holiday", - "2010-12-25": "Christmas", + "2010-12-25": "Christmas Day", "2010-12-31": "Public sector holiday", "2011-01-01": "New Year's Day", "2011-03-01": "Patriots Day", @@ -692,8 +692,8 @@ "2011-04-20": "Public sector holiday", "2011-04-21": "Maundy Thursday", "2011-04-22": "Good Friday", - "2011-04-24": "Easter Day", - "2011-05-01": "Labour Day", + "2011-04-24": "Easter Sunday", + "2011-05-01": "Labor Day", "2011-05-14": "Public holiday", "2011-05-15": "Independence Day", "2011-05-16": "Public holiday", @@ -702,15 +702,15 @@ "2011-09-29": "Boqueron Battle Day", "2011-12-08": "Caacupe Virgin Day", "2011-12-23": "Public sector holiday", - "2011-12-25": "Christmas", + "2011-12-25": "Christmas Day", "2011-12-30": "Public sector holiday", "2012-01-01": "New Year's Day", "2012-03-01": "Patriots Day", "2012-04-04": "Public sector holiday", "2012-04-05": "Maundy Thursday", "2012-04-06": "Good Friday", - "2012-04-08": "Easter Day", - "2012-05-01": "Labour Day", + "2012-04-08": "Easter Sunday", + "2012-05-01": "Labor Day", "2012-05-14": "Independence Day", "2012-05-15": "Independence Day", "2012-06-12": "Chaco Armistice Day", @@ -718,15 +718,15 @@ "2012-09-29": "Boqueron Battle Day", "2012-12-08": "Caacupe Virgin Day", "2012-12-24": "Public sector holiday", - "2012-12-25": "Christmas", + "2012-12-25": "Christmas Day", "2012-12-31": "Public sector holiday", "2013-01-01": "New Year's Day", "2013-03-04": "Patriots Day", "2013-03-27": "Public sector holiday", "2013-03-28": "Maundy Thursday", "2013-03-29": "Good Friday", - "2013-03-31": "Easter Day", - "2013-05-01": "Labour Day", + "2013-03-31": "Easter Sunday", + "2013-05-01": "Labor Day", "2013-05-14": "Independence Day", "2013-05-15": "Independence Day", "2013-06-12": "Chaco Armistice Day", @@ -734,14 +734,14 @@ "2013-08-15": "Asuncion Foundation's Day", "2013-09-29": "Boqueron Battle Day", "2013-12-08": "Caacupe Virgin Day", - "2013-12-25": "Christmas", + "2013-12-25": "Christmas Day", "2014-01-01": "New Year's Day", "2014-03-01": "Patriots Day", "2014-04-16": "Public sector holiday", "2014-04-17": "Maundy Thursday", "2014-04-18": "Good Friday", - "2014-04-20": "Easter Day", - "2014-05-01": "Labour Day", + "2014-04-20": "Easter Sunday", + "2014-05-01": "Labor Day", "2014-05-14": "Independence Day", "2014-05-15": "Independence Day", "2014-06-16": "Chaco Armistice Day", @@ -749,15 +749,15 @@ "2014-09-29": "Boqueron Battle Day", "2014-12-08": "Caacupe Virgin Day", "2014-12-24": "Public sector holiday", - "2014-12-25": "Christmas", + "2014-12-25": "Christmas Day", "2014-12-31": "Public sector holiday", "2015-01-01": "New Year's Day", "2015-03-01": "Patriots Day", "2015-04-01": "Public sector holiday", "2015-04-02": "Maundy Thursday", "2015-04-03": "Good Friday", - "2015-04-05": "Easter Day", - "2015-05-01": "Labour Day", + "2015-04-05": "Easter Sunday", + "2015-05-01": "Labor Day", "2015-05-14": "Independence Day", "2015-05-15": "Independence Day", "2015-06-12": "Chaco Armistice Day", @@ -767,42 +767,42 @@ "2015-09-28": "Boqueron Battle Day", "2015-12-08": "Caacupe Virgin Day", "2015-12-24": "Public sector holiday", - "2015-12-25": "Christmas", + "2015-12-25": "Christmas Day", "2015-12-31": "Public sector holiday", "2016-01-01": "New Year's Day", "2016-02-29": "Patriots Day", "2016-03-23": "Public sector holiday", "2016-03-24": "Maundy Thursday", "2016-03-25": "Good Friday", - "2016-03-27": "Easter Day", - "2016-05-01": "Labour Day", + "2016-03-27": "Easter Sunday", + "2016-05-01": "Labor Day", "2016-05-14": "Independence Day", "2016-05-15": "Independence Day", "2016-06-12": "Chaco Armistice Day", "2016-08-15": "Asuncion Foundation's Day", "2016-10-03": "Boqueron Battle Day", "2016-12-08": "Caacupe Virgin Day", - "2016-12-25": "Christmas", + "2016-12-25": "Christmas Day", "2017-01-01": "New Year's Day", "2017-03-01": "Patriots Day", "2017-03-28": "Public sector holiday", "2017-04-13": "Maundy Thursday", "2017-04-14": "Good Friday", - "2017-04-16": "Easter Day", - "2017-05-01": "Labour Day", + "2017-04-16": "Easter Sunday", + "2017-05-01": "Labor Day", "2017-05-14": "Independence Day", "2017-05-15": "Independence Day", "2017-06-12": "Chaco Armistice Day", "2017-08-15": "Asuncion Foundation's Day", "2017-10-02": "Boqueron Battle Day", "2017-12-08": "Caacupe Virgin Day", - "2017-12-25": "Christmas", + "2017-12-25": "Christmas Day", "2018-01-01": "New Year's Day", "2018-02-26": "Patriots Day", "2018-03-29": "Maundy Thursday", "2018-03-30": "Good Friday", - "2018-04-01": "Easter Day", - "2018-05-01": "Labour Day", + "2018-04-01": "Easter Sunday", + "2018-05-01": "Labor Day", "2018-05-14": "Independence Day", "2018-05-15": "Independence Day", "2018-06-11": "Chaco Armistice Day", @@ -810,15 +810,15 @@ "2018-09-29": "Boqueron Battle Day", "2018-12-08": "Caacupe Virgin Day", "2018-12-24": "Public sector holiday", - "2018-12-25": "Christmas", + "2018-12-25": "Christmas Day", "2018-12-31": "Public sector holiday", "2019-01-01": "New Year's Day", "2019-03-01": "Patriots Day", "2019-04-17": "Public sector holiday", "2019-04-18": "Maundy Thursday", "2019-04-19": "Good Friday", - "2019-04-21": "Easter Day", - "2019-05-01": "Labour Day", + "2019-04-21": "Easter Sunday", + "2019-05-01": "Labor Day", "2019-05-14": "Independence Day", "2019-05-15": "Independence Day", "2019-06-12": "Chaco Armistice Day", @@ -826,28 +826,28 @@ "2019-09-29": "Boqueron Battle Day", "2019-12-08": "Caacupe Virgin Day", "2019-12-24": "Public sector holiday", - "2019-12-25": "Christmas", + "2019-12-25": "Christmas Day", "2019-12-31": "Public sector holiday", "2020-01-01": "New Year's Day", "2020-03-01": "Patriots Day", "2020-04-08": "Public sector holiday", "2020-04-09": "Maundy Thursday", "2020-04-10": "Good Friday", - "2020-04-12": "Easter Day", - "2020-05-01": "Labour Day", + "2020-04-12": "Easter Sunday", + "2020-05-01": "Labor Day", "2020-05-14": "Independence Day", "2020-05-15": "Independence Day", "2020-06-12": "Chaco Armistice Day", "2020-08-15": "Asuncion Foundation's Day", "2020-09-29": "Boqueron Battle Day", "2020-12-08": "Caacupe Virgin Day", - "2020-12-25": "Christmas", + "2020-12-25": "Christmas Day", "2021-01-01": "New Year's Day", "2021-03-01": "Patriots Day", "2021-04-01": "Maundy Thursday", "2021-04-02": "Good Friday", - "2021-04-04": "Easter Day", - "2021-05-01": "Labour Day", + "2021-04-04": "Easter Sunday", + "2021-05-01": "Labor Day", "2021-05-14": "Independence Day", "2021-05-15": "Independence Day", "2021-06-12": "Chaco Armistice Day", @@ -855,15 +855,15 @@ "2021-09-27": "Boqueron Battle Day", "2021-12-08": "Caacupe Virgin Day", "2021-12-24": "Public sector holiday", - "2021-12-25": "Christmas", + "2021-12-25": "Christmas Day", "2021-12-31": "Public sector holiday", "2022-01-01": "New Year's Day", "2022-02-28": "Patriots Day", "2022-04-13": "Public sector holiday", "2022-04-14": "Maundy Thursday", "2022-04-15": "Good Friday", - "2022-04-17": "Easter Day", - "2022-05-01": "Labour Day", + "2022-04-17": "Easter Sunday", + "2022-05-01": "Labor Day", "2022-05-02": "Public sector holiday", "2022-05-14": "Independence Day", "2022-05-15": "Independence Day", @@ -871,369 +871,369 @@ "2022-08-15": "Asuncion Foundation's Day", "2022-10-03": "Boqueron Battle Day", "2022-12-08": "Caacupe Virgin Day", - "2022-12-25": "Christmas", + "2022-12-25": "Christmas Day", "2023-01-01": "New Year's Day", "2023-03-01": "Patriots Day", "2023-04-06": "Maundy Thursday", "2023-04-07": "Good Friday", - "2023-04-09": "Easter Day", - "2023-05-01": "Labour Day", + "2023-04-09": "Easter Sunday", + "2023-05-01": "Labor Day", "2023-05-14": "Independence Day", "2023-05-15": "Independence Day", "2023-06-12": "Chaco Armistice Day", "2023-08-15": "Asuncion Foundation's Day", "2023-09-29": "Boqueron Battle Day", "2023-12-08": "Caacupe Virgin Day", - "2023-12-25": "Christmas", + "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-03-01": "Patriots Day", "2024-03-28": "Maundy Thursday", "2024-03-29": "Good Friday", - "2024-03-31": "Easter Day", - "2024-05-01": "Labour Day", + "2024-03-31": "Easter Sunday", + "2024-05-01": "Labor Day", "2024-05-14": "Independence Day", "2024-05-15": "Independence Day", "2024-06-12": "Chaco Armistice Day", "2024-08-15": "Asuncion Foundation's Day", "2024-09-29": "Boqueron Battle Day", "2024-12-08": "Caacupe Virgin Day", - "2024-12-25": "Christmas", + "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-03-01": "Patriots Day", "2025-04-17": "Maundy Thursday", "2025-04-18": "Good Friday", - "2025-04-20": "Easter Day", - "2025-05-01": "Labour Day", + "2025-04-20": "Easter Sunday", + "2025-05-01": "Labor Day", "2025-05-14": "Independence Day", "2025-05-15": "Independence Day", "2025-06-12": "Chaco Armistice Day", "2025-08-15": "Asuncion Foundation's Day", "2025-09-29": "Boqueron Battle Day", "2025-12-08": "Caacupe Virgin Day", - "2025-12-25": "Christmas", + "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-03-01": "Patriots Day", "2026-04-02": "Maundy Thursday", "2026-04-03": "Good Friday", - "2026-04-05": "Easter Day", - "2026-05-01": "Labour Day", + "2026-04-05": "Easter Sunday", + "2026-05-01": "Labor Day", "2026-05-14": "Independence Day", "2026-05-15": "Independence Day", "2026-06-12": "Chaco Armistice Day", "2026-08-15": "Asuncion Foundation's Day", "2026-09-29": "Boqueron Battle Day", "2026-12-08": "Caacupe Virgin Day", - "2026-12-25": "Christmas", + "2026-12-25": "Christmas Day", "2027-01-01": "New Year's Day", "2027-03-01": "Patriots Day", "2027-03-25": "Maundy Thursday", "2027-03-26": "Good Friday", - "2027-03-28": "Easter Day", - "2027-05-01": "Labour Day", + "2027-03-28": "Easter Sunday", + "2027-05-01": "Labor Day", "2027-05-14": "Independence Day", "2027-05-15": "Independence Day", "2027-06-12": "Chaco Armistice Day", "2027-08-15": "Asuncion Foundation's Day", "2027-09-29": "Boqueron Battle Day", "2027-12-08": "Caacupe Virgin Day", - "2027-12-25": "Christmas", + "2027-12-25": "Christmas Day", "2028-01-01": "New Year's Day", "2028-03-01": "Patriots Day", "2028-04-13": "Maundy Thursday", "2028-04-14": "Good Friday", - "2028-04-16": "Easter Day", - "2028-05-01": "Labour Day", + "2028-04-16": "Easter Sunday", + "2028-05-01": "Labor Day", "2028-05-14": "Independence Day", "2028-05-15": "Independence Day", "2028-06-12": "Chaco Armistice Day", "2028-08-15": "Asuncion Foundation's Day", "2028-09-29": "Boqueron Battle Day", "2028-12-08": "Caacupe Virgin Day", - "2028-12-25": "Christmas", + "2028-12-25": "Christmas Day", "2029-01-01": "New Year's Day", "2029-03-01": "Patriots Day", "2029-03-29": "Maundy Thursday", "2029-03-30": "Good Friday", - "2029-04-01": "Easter Day", - "2029-05-01": "Labour Day", + "2029-04-01": "Easter Sunday", + "2029-05-01": "Labor Day", "2029-05-14": "Independence Day", "2029-05-15": "Independence Day", "2029-06-12": "Chaco Armistice Day", "2029-08-15": "Asuncion Foundation's Day", "2029-09-29": "Boqueron Battle Day", "2029-12-08": "Caacupe Virgin Day", - "2029-12-25": "Christmas", + "2029-12-25": "Christmas Day", "2030-01-01": "New Year's Day", "2030-03-01": "Patriots Day", "2030-04-18": "Maundy Thursday", "2030-04-19": "Good Friday", - "2030-04-21": "Easter Day", - "2030-05-01": "Labour Day", + "2030-04-21": "Easter Sunday", + "2030-05-01": "Labor Day", "2030-05-14": "Independence Day", "2030-05-15": "Independence Day", "2030-06-12": "Chaco Armistice Day", "2030-08-15": "Asuncion Foundation's Day", "2030-09-29": "Boqueron Battle Day", "2030-12-08": "Caacupe Virgin Day", - "2030-12-25": "Christmas", + "2030-12-25": "Christmas Day", "2031-01-01": "New Year's Day", "2031-03-01": "Patriots Day", "2031-04-10": "Maundy Thursday", "2031-04-11": "Good Friday", - "2031-04-13": "Easter Day", - "2031-05-01": "Labour Day", + "2031-04-13": "Easter Sunday", + "2031-05-01": "Labor Day", "2031-05-14": "Independence Day", "2031-05-15": "Independence Day", "2031-06-12": "Chaco Armistice Day", "2031-08-15": "Asuncion Foundation's Day", "2031-09-29": "Boqueron Battle Day", "2031-12-08": "Caacupe Virgin Day", - "2031-12-25": "Christmas", + "2031-12-25": "Christmas Day", "2032-01-01": "New Year's Day", "2032-03-01": "Patriots Day", "2032-03-25": "Maundy Thursday", "2032-03-26": "Good Friday", - "2032-03-28": "Easter Day", - "2032-05-01": "Labour Day", + "2032-03-28": "Easter Sunday", + "2032-05-01": "Labor Day", "2032-05-14": "Independence Day", "2032-05-15": "Independence Day", "2032-06-12": "Chaco Armistice Day", "2032-08-15": "Asuncion Foundation's Day", "2032-09-29": "Boqueron Battle Day", "2032-12-08": "Caacupe Virgin Day", - "2032-12-25": "Christmas", + "2032-12-25": "Christmas Day", "2033-01-01": "New Year's Day", "2033-03-01": "Patriots Day", "2033-04-14": "Maundy Thursday", "2033-04-15": "Good Friday", - "2033-04-17": "Easter Day", - "2033-05-01": "Labour Day", + "2033-04-17": "Easter Sunday", + "2033-05-01": "Labor Day", "2033-05-14": "Independence Day", "2033-05-15": "Independence Day", "2033-06-12": "Chaco Armistice Day", "2033-08-15": "Asuncion Foundation's Day", "2033-09-29": "Boqueron Battle Day", "2033-12-08": "Caacupe Virgin Day", - "2033-12-25": "Christmas", + "2033-12-25": "Christmas Day", "2034-01-01": "New Year's Day", "2034-03-01": "Patriots Day", "2034-04-06": "Maundy Thursday", "2034-04-07": "Good Friday", - "2034-04-09": "Easter Day", - "2034-05-01": "Labour Day", + "2034-04-09": "Easter Sunday", + "2034-05-01": "Labor Day", "2034-05-14": "Independence Day", "2034-05-15": "Independence Day", "2034-06-12": "Chaco Armistice Day", "2034-08-15": "Asuncion Foundation's Day", "2034-09-29": "Boqueron Battle Day", "2034-12-08": "Caacupe Virgin Day", - "2034-12-25": "Christmas", + "2034-12-25": "Christmas Day", "2035-01-01": "New Year's Day", "2035-03-01": "Patriots Day", "2035-03-22": "Maundy Thursday", "2035-03-23": "Good Friday", - "2035-03-25": "Easter Day", - "2035-05-01": "Labour Day", + "2035-03-25": "Easter Sunday", + "2035-05-01": "Labor Day", "2035-05-14": "Independence Day", "2035-05-15": "Independence Day", "2035-06-12": "Chaco Armistice Day", "2035-08-15": "Asuncion Foundation's Day", "2035-09-29": "Boqueron Battle Day", "2035-12-08": "Caacupe Virgin Day", - "2035-12-25": "Christmas", + "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-03-01": "Patriots Day", "2036-04-10": "Maundy Thursday", "2036-04-11": "Good Friday", - "2036-04-13": "Easter Day", - "2036-05-01": "Labour Day", + "2036-04-13": "Easter Sunday", + "2036-05-01": "Labor Day", "2036-05-14": "Independence Day", "2036-05-15": "Independence Day", "2036-06-12": "Chaco Armistice Day", "2036-08-15": "Asuncion Foundation's Day", "2036-09-29": "Boqueron Battle Day", "2036-12-08": "Caacupe Virgin Day", - "2036-12-25": "Christmas", + "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-03-01": "Patriots Day", "2037-04-02": "Maundy Thursday", "2037-04-03": "Good Friday", - "2037-04-05": "Easter Day", - "2037-05-01": "Labour Day", + "2037-04-05": "Easter Sunday", + "2037-05-01": "Labor Day", "2037-05-14": "Independence Day", "2037-05-15": "Independence Day", "2037-06-12": "Chaco Armistice Day", "2037-08-15": "Asuncion Foundation's Day", "2037-09-29": "Boqueron Battle Day", "2037-12-08": "Caacupe Virgin Day", - "2037-12-25": "Christmas", + "2037-12-25": "Christmas Day", "2038-01-01": "New Year's Day", "2038-03-01": "Patriots Day", "2038-04-22": "Maundy Thursday", "2038-04-23": "Good Friday", - "2038-04-25": "Easter Day", - "2038-05-01": "Labour Day", + "2038-04-25": "Easter Sunday", + "2038-05-01": "Labor Day", "2038-05-14": "Independence Day", "2038-05-15": "Independence Day", "2038-06-12": "Chaco Armistice Day", "2038-08-15": "Asuncion Foundation's Day", "2038-09-29": "Boqueron Battle Day", "2038-12-08": "Caacupe Virgin Day", - "2038-12-25": "Christmas", + "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", "2039-03-01": "Patriots Day", "2039-04-07": "Maundy Thursday", "2039-04-08": "Good Friday", - "2039-04-10": "Easter Day", - "2039-05-01": "Labour Day", + "2039-04-10": "Easter Sunday", + "2039-05-01": "Labor Day", "2039-05-14": "Independence Day", "2039-05-15": "Independence Day", "2039-06-12": "Chaco Armistice Day", "2039-08-15": "Asuncion Foundation's Day", "2039-09-29": "Boqueron Battle Day", "2039-12-08": "Caacupe Virgin Day", - "2039-12-25": "Christmas", + "2039-12-25": "Christmas Day", "2040-01-01": "New Year's Day", "2040-03-01": "Patriots Day", "2040-03-29": "Maundy Thursday", "2040-03-30": "Good Friday", - "2040-04-01": "Easter Day", - "2040-05-01": "Labour Day", + "2040-04-01": "Easter Sunday", + "2040-05-01": "Labor Day", "2040-05-14": "Independence Day", "2040-05-15": "Independence Day", "2040-06-12": "Chaco Armistice Day", "2040-08-15": "Asuncion Foundation's Day", "2040-09-29": "Boqueron Battle Day", "2040-12-08": "Caacupe Virgin Day", - "2040-12-25": "Christmas", + "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-03-01": "Patriots Day", "2041-04-18": "Maundy Thursday", "2041-04-19": "Good Friday", - "2041-04-21": "Easter Day", - "2041-05-01": "Labour Day", + "2041-04-21": "Easter Sunday", + "2041-05-01": "Labor Day", "2041-05-14": "Independence Day", "2041-05-15": "Independence Day", "2041-06-12": "Chaco Armistice Day", "2041-08-15": "Asuncion Foundation's Day", "2041-09-29": "Boqueron Battle Day", "2041-12-08": "Caacupe Virgin Day", - "2041-12-25": "Christmas", + "2041-12-25": "Christmas Day", "2042-01-01": "New Year's Day", "2042-03-01": "Patriots Day", "2042-04-03": "Maundy Thursday", "2042-04-04": "Good Friday", - "2042-04-06": "Easter Day", - "2042-05-01": "Labour Day", + "2042-04-06": "Easter Sunday", + "2042-05-01": "Labor Day", "2042-05-14": "Independence Day", "2042-05-15": "Independence Day", "2042-06-12": "Chaco Armistice Day", "2042-08-15": "Asuncion Foundation's Day", "2042-09-29": "Boqueron Battle Day", "2042-12-08": "Caacupe Virgin Day", - "2042-12-25": "Christmas", + "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-03-01": "Patriots Day", "2043-03-26": "Maundy Thursday", "2043-03-27": "Good Friday", - "2043-03-29": "Easter Day", - "2043-05-01": "Labour Day", + "2043-03-29": "Easter Sunday", + "2043-05-01": "Labor Day", "2043-05-14": "Independence Day", "2043-05-15": "Independence Day", "2043-06-12": "Chaco Armistice Day", "2043-08-15": "Asuncion Foundation's Day", "2043-09-29": "Boqueron Battle Day", "2043-12-08": "Caacupe Virgin Day", - "2043-12-25": "Christmas", + "2043-12-25": "Christmas Day", "2044-01-01": "New Year's Day", "2044-03-01": "Patriots Day", "2044-04-14": "Maundy Thursday", "2044-04-15": "Good Friday", - "2044-04-17": "Easter Day", - "2044-05-01": "Labour Day", + "2044-04-17": "Easter Sunday", + "2044-05-01": "Labor Day", "2044-05-14": "Independence Day", "2044-05-15": "Independence Day", "2044-06-12": "Chaco Armistice Day", "2044-08-15": "Asuncion Foundation's Day", "2044-09-29": "Boqueron Battle Day", "2044-12-08": "Caacupe Virgin Day", - "2044-12-25": "Christmas", + "2044-12-25": "Christmas Day", "2045-01-01": "New Year's Day", "2045-03-01": "Patriots Day", "2045-04-06": "Maundy Thursday", "2045-04-07": "Good Friday", - "2045-04-09": "Easter Day", - "2045-05-01": "Labour Day", + "2045-04-09": "Easter Sunday", + "2045-05-01": "Labor Day", "2045-05-14": "Independence Day", "2045-05-15": "Independence Day", "2045-06-12": "Chaco Armistice Day", "2045-08-15": "Asuncion Foundation's Day", "2045-09-29": "Boqueron Battle Day", "2045-12-08": "Caacupe Virgin Day", - "2045-12-25": "Christmas", + "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-03-01": "Patriots Day", "2046-03-22": "Maundy Thursday", "2046-03-23": "Good Friday", - "2046-03-25": "Easter Day", - "2046-05-01": "Labour Day", + "2046-03-25": "Easter Sunday", + "2046-05-01": "Labor Day", "2046-05-14": "Independence Day", "2046-05-15": "Independence Day", "2046-06-12": "Chaco Armistice Day", "2046-08-15": "Asuncion Foundation's Day", "2046-09-29": "Boqueron Battle Day", "2046-12-08": "Caacupe Virgin Day", - "2046-12-25": "Christmas", + "2046-12-25": "Christmas Day", "2047-01-01": "New Year's Day", "2047-03-01": "Patriots Day", "2047-04-11": "Maundy Thursday", "2047-04-12": "Good Friday", - "2047-04-14": "Easter Day", - "2047-05-01": "Labour Day", + "2047-04-14": "Easter Sunday", + "2047-05-01": "Labor Day", "2047-05-14": "Independence Day", "2047-05-15": "Independence Day", "2047-06-12": "Chaco Armistice Day", "2047-08-15": "Asuncion Foundation's Day", "2047-09-29": "Boqueron Battle Day", "2047-12-08": "Caacupe Virgin Day", - "2047-12-25": "Christmas", + "2047-12-25": "Christmas Day", "2048-01-01": "New Year's Day", "2048-03-01": "Patriots Day", "2048-04-02": "Maundy Thursday", "2048-04-03": "Good Friday", - "2048-04-05": "Easter Day", - "2048-05-01": "Labour Day", + "2048-04-05": "Easter Sunday", + "2048-05-01": "Labor Day", "2048-05-14": "Independence Day", "2048-05-15": "Independence Day", "2048-06-12": "Chaco Armistice Day", "2048-08-15": "Asuncion Foundation's Day", "2048-09-29": "Boqueron Battle Day", "2048-12-08": "Caacupe Virgin Day", - "2048-12-25": "Christmas", + "2048-12-25": "Christmas Day", "2049-01-01": "New Year's Day", "2049-03-01": "Patriots Day", "2049-04-15": "Maundy Thursday", "2049-04-16": "Good Friday", - "2049-04-18": "Easter Day", - "2049-05-01": "Labour Day", + "2049-04-18": "Easter Sunday", + "2049-05-01": "Labor Day", "2049-05-14": "Independence Day", "2049-05-15": "Independence Day", "2049-06-12": "Chaco Armistice Day", "2049-08-15": "Asuncion Foundation's Day", "2049-09-29": "Boqueron Battle Day", "2049-12-08": "Caacupe Virgin Day", - "2049-12-25": "Christmas", + "2049-12-25": "Christmas Day", "2050-01-01": "New Year's Day", "2050-03-01": "Patriots Day", "2050-04-07": "Maundy Thursday", "2050-04-08": "Good Friday", - "2050-04-10": "Easter Day", - "2050-05-01": "Labour Day", + "2050-04-10": "Easter Sunday", + "2050-05-01": "Labor Day", "2050-05-14": "Independence Day", "2050-05-15": "Independence Day", "2050-06-12": "Chaco Armistice Day", "2050-08-15": "Asuncion Foundation's Day", "2050-09-29": "Boqueron Battle Day", "2050-12-08": "Caacupe Virgin Day", - "2050-12-25": "Christmas" + "2050-12-25": "Christmas Day" } diff --git a/tests/countries/test_paraguay.py b/tests/countries/test_paraguay.py index 3f7cdd732..d9d352ffb 100644 --- a/tests/countries/test_paraguay.py +++ b/tests/countries/test_paraguay.py @@ -9,10 +9,9 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) -from datetime import date -from datetime import timedelta as td from unittest import TestCase +from holidays.constants import GOVERNMENT from holidays.countries.paraguay import Paraguay, PY, PRY from tests.common import CommonCountryTests @@ -20,147 +19,219 @@ class TestParaguay(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): - super().setUpClass(Paraguay) + super().setUpClass(Paraguay, years=range(1990, 2050), years_non_observed=range(2000, 2025)) def test_country_aliases(self): self.assertAliases(Paraguay, PY, PRY) - def test_fixed_holidays(self): - for year, month, day in ( - (2016, 1, 1), - (2020, 1, 1), - (2020, 3, 1), - (2020, 4, 8), - (2020, 4, 9), - (2020, 4, 10), - (2020, 4, 12), - (2020, 5, 1), - (2020, 5, 14), - (2020, 5, 15), - (2020, 6, 12), - (2020, 8, 15), - (2020, 9, 29), - (2020, 12, 8), - (2020, 12, 25), - ): - self.assertIn(date(year, month, day), self.holidays) - - def test_non_observed(self): - # no observed dates - for year, month, day in ( - (2017, 1, 1), - (2014, 3, 2), - (2020, 4, 12), - (2016, 5, 1), - (2016, 5, 15), - (2016, 6, 12), - (2015, 8, 15), - (2018, 9, 29), - (2018, 12, 8), - ): - self.assertNoNonObservedHoliday(date(year, month, day)) - - def test_moveable(self): - for year, month, day in ( - # Patriots day - (2013, 3, 4), - (2016, 2, 29), - (2018, 2, 26), - (2022, 2, 28), - (2014, 3, 1), - (2015, 3, 1), - (2017, 3, 1), - (2019, 3, 1), - (2020, 3, 1), - (2021, 3, 1), - # Peace in Chaco Day - (2014, 6, 16), - (2018, 6, 11), - (2013, 6, 12), - (2015, 6, 12), - (2016, 6, 12), - (2017, 6, 12), - (2019, 6, 12), - (2020, 6, 12), - (2021, 6, 12), - (2022, 6, 12), - # Boqueron's Battle - (2015, 9, 28), - (2016, 10, 3), - (2017, 10, 2), - (2021, 9, 27), - (2022, 10, 3), - (2013, 9, 29), - (2014, 9, 29), - (2018, 9, 29), - (2019, 9, 29), - (2020, 9, 29), - ): - self.assertIn(date(year, month, day), self.holidays) - - for year, month, day in ( - # Patriots day - (2013, 3, 1), - (2016, 3, 1), - (2018, 3, 1), - (2022, 3, 1), - # Peace in Chaco Day - (2014, 6, 12), - (2018, 6, 12), - # Boqueron's Battle - (1999, 9, 29), - (2015, 9, 29), - (2016, 9, 29), - (2017, 9, 29), - (2021, 9, 29), - (2022, 9, 29), - ): - self.assertNotIn(date(year, month, day), self.holidays) + def test_new_years_day(self): + self.assertHolidayName("Año Nuevo", (f"{year}-01-01" for year in range(1990, 2050))) + self.assertNoNonObservedHoliday( + "2005-01-01", + "2006-01-01", + "2011-01-01", + "2012-01-01", + "2017-01-01", + "2022-01-01", + "2023-01-01", + ) - def test_independence_day(self): - for year, month, day in ( - (2010, 5, 15), - (2011, 5, 15), - (2012, 5, 14), - (2012, 5, 15), - (2013, 5, 14), - (2013, 5, 15), - (2018, 5, 14), - (2018, 5, 15), - (2021, 5, 14), - (2021, 5, 15), - ): - self.assertIn(date(year, month, day), self.holidays) + def test_patriots_day(self): + name = "Día de los Héroes de la Patria" + years_excluded = {2013, 2016, 2018, 2022} + self.assertHolidayName( + name, (f"{year}-03-01" for year in set(range(1990, 2050)).difference(years_excluded)) + ) + self.assertNoHolidayName(name, (f"{year}-03-01" for year in years_excluded)) + self.assertHolidayName( + name, + "2013-03-04", + "2016-02-29", + "2018-02-26", + "2022-02-28", + ) def test_easter(self): - for year, month, day in [ - (2002, 3, 31), - (2003, 4, 20), - (2004, 4, 11), - (2005, 3, 27), - (2006, 4, 16), - (2007, 4, 8), - (2008, 3, 23), - (2009, 4, 12), - (2010, 4, 4), - (2011, 4, 24), - (2012, 4, 8), - (2013, 3, 31), - (2014, 4, 20), - (2015, 4, 5), - (2016, 3, 27), - (2017, 4, 16), - (2018, 4, 1), - (2019, 4, 21), - (2020, 4, 12), - (2021, 4, 4), - (2022, 4, 17), - ]: - easter = date(year, month, day) - easter_thursday = easter + td(days=-3) - easter_friday = easter + td(days=-2) - for holiday in [easter_thursday, easter_friday, easter]: - self.assertIn(holiday, self.holidays) + self.assertHolidayName( + "Jueves Santo", + "2019-04-18", + "2020-04-09", + "2021-04-01", + "2022-04-14", + "2023-04-06", + ) + + self.assertHolidayName( + "Viernes Santo", + "2019-04-19", + "2020-04-10", + "2021-04-02", + "2022-04-15", + "2023-04-07", + ) + + dt = ( + "2019-04-21", + "2020-04-12", + "2021-04-04", + "2022-04-17", + "2023-04-09", + ) + self.assertHolidayName("Domingo de Resurrección", dt) + self.assertNoNonObservedHoliday(dt) + + def test_labor_day(self): + self.assertHolidayName( + "Día del Trabajador", (f"{year}-05-01" for year in range(1990, 2050)) + ) + self.assertNoNonObservedHoliday( + "2004-05-01", + "2005-05-01", + "2010-05-01", + "2011-05-01", + "2016-05-01", + "2021-05-01", + "2022-05-01", + ) + + def test_independence_day(self): + name = "Día de la Independencia Nacional" + self.assertHolidayName(name, (f"{year}-05-15" for year in range(1990, 2050))) + self.assertHolidayName(name, (f"{year}-05-14" for year in range(2012, 2050))) + self.assertNoHolidayName(name, (f"{year}-05-14" for year in range(1990, 2012))) + self.assertNoNonObservedHoliday( + "2004-05-15", + "2005-05-15", + "2010-05-15", + "2011-05-15", + "2016-05-14", + "2016-05-15", + "2017-05-14", + "2022-05-14", + "2022-05-15", + "2023-05-14", + ) + + def test_chaco_armistice_day(self): + name = "Día de la Paz del Chaco" + years_excluded = {2014, 2018} + self.assertHolidayName( + name, (f"{year}-06-12" for year in set(range(1990, 2050)).difference(years_excluded)) + ) + self.assertNoHolidayName(name, (f"{year}-06-12" for year in years_excluded)) + self.assertHolidayName( + name, + "2014-06-16", + "2018-06-11", + ) + self.assertNoNonObservedHoliday( + "2004-06-12", + "2005-06-12", + "2010-06-12", + "2011-06-12", + "2016-06-12", + "2021-06-12", + "2022-06-12", + ) + + def test_asuncion_foundations_day(self): + self.assertHolidayName( + "Día de la Fundación de Asunción", (f"{year}-08-15" for year in range(1990, 2050)) + ) + self.assertNoNonObservedHoliday( + "2004-08-15", + "2009-08-15", + "2010-08-15", + "2015-08-15", + "2020-08-15", + "2021-08-15", + ) + + def test_boqueron_battle_day(self): + name = "Día de la Batalla de Boquerón" + years_excluded = {2015, 2016, 2017, 2021, 2022} + self.assertHolidayName( + name, (f"{year}-09-29" for year in set(range(2000, 2050)).difference(years_excluded)) + ) + self.assertNoHolidayName(name, (f"{year}-09-29" for year in years_excluded)) + self.assertNoHolidayName(name, (f"{year}-09-29" for year in range(1990, 2000))) + self.assertHolidayName( + name, + "2015-09-28", + "2016-10-03", + "2017-10-02", + "2021-09-27", + "2022-10-03", + ) + self.assertNoNonObservedHoliday( + "2001-09-29", + "2002-09-29", + "2007-09-29", + "2012-09-29", + "2013-09-29", + "2018-09-29", + "2019-09-29", + "2024-09-29", + ) + + def test_caacupe_virgin_day(self): + self.assertHolidayName( + "Día de la Virgen de Caacupé", (f"{year}-12-08" for year in range(1990, 2050)) + ) + self.assertNoNonObservedHoliday( + "2001-12-08", + "2002-12-08", + "2007-12-08", + "2012-12-08", + "2013-12-08", + "2018-12-08", + "2019-12-08", + "2024-12-08", + ) + + def test_special_public_holidays(self): + self.assertHoliday( + "2007-01-29", + "2009-09-10", + "2010-06-14", + "2011-04-19", + "2011-05-14", + "2011-05-16", + "2013-08-14", + "2015-07-10", + ) + + def test_special_government_holidays(self): + self.assertHoliday( + Paraguay(categories=GOVERNMENT, years=range(2010, 2023)), + "2010-12-24", + "2010-12-31", + "2011-04-20", + "2011-12-23", + "2011-12-30", + "2012-04-04", + "2012-12-24", + "2012-12-31", + "2013-03-27", + "2014-04-16", + "2014-12-24", + "2014-12-31", + "2015-04-01", + "2015-12-24", + "2015-12-31", + "2016-03-23", + "2017-03-28", + "2018-12-24", + "2018-12-31", + "2019-04-17", + "2019-12-24", + "2019-12-31", + "2020-04-08", + "2021-12-24", + "2021-12-31", + "2022-04-13", + "2022-05-02", + ) def test_l10n_default(self): self.assertLocalizedHolidays( @@ -169,7 +240,7 @@ def test_l10n_default(self): ("2022-04-13", "Asueto de la Administración Pública"), ("2022-04-14", "Jueves Santo"), ("2022-04-15", "Viernes Santo"), - ("2022-04-17", "Día de Pascuas"), + ("2022-04-17", "Domingo de Resurrección"), ("2022-05-01", "Día del Trabajador"), ("2022-05-02", "Asueto de la Administración Pública"), ("2022-05-14", "Día de la Independencia Nacional"), @@ -189,8 +260,8 @@ def test_l10n_en_us(self): ("2022-04-13", "Public sector holiday"), ("2022-04-14", "Maundy Thursday"), ("2022-04-15", "Good Friday"), - ("2022-04-17", "Easter Day"), - ("2022-05-01", "Labour Day"), + ("2022-04-17", "Easter Sunday"), + ("2022-05-01", "Labor Day"), ("2022-05-02", "Public sector holiday"), ("2022-05-14", "Independence Day"), ("2022-05-15", "Independence Day"), @@ -198,7 +269,7 @@ def test_l10n_en_us(self): ("2022-08-15", "Asuncion Foundation's Day"), ("2022-10-03", "Boqueron Battle Day"), ("2022-12-08", "Caacupe Virgin Day"), - ("2022-12-25", "Christmas"), + ("2022-12-25", "Christmas Day"), ) def test_l10n_uk(self): From 5cfd3d8bf5565b3d337599c5a8fe25421f157aeb Mon Sep 17 00:00:00 2001 From: PPsyrius <19505219+PPsyrius@users.noreply.github.com> Date: Fri, 12 Jan 2024 06:36:52 +0700 Subject: [PATCH 19/23] Update Thailand holidays (#1626) --- holidays/countries/thailand.py | 71 ++++++++++++++++---- snapshots/countries/TH_COMMON.json | 101 ++++++++++++++--------------- tests/countries/test_thailand.py | 74 ++++++++++++++++++--- 3 files changed, 172 insertions(+), 74 deletions(-) diff --git a/holidays/countries/thailand.py b/holidays/countries/thailand.py index 6d04bc338..73e5d1ce8 100644 --- a/holidays/countries/thailand.py +++ b/holidays/countries/thailand.py @@ -90,7 +90,10 @@ class Thailand(ObservedHolidayBase, InternationalHolidays, StaticHolidays, ThaiC - [Royal Ploughing Ceremony] https://en.wikipedia.org/wiki/Royal_Ploughing_Ceremony https://www.lib.ru.ac.th/journal/may/may_phauchmongkol.html - ``_ + https://dl.parliament.go.th/handle/20.500.13072/103428 + https://dl.parliament.go.th/handle/20.500.13072/92816 + https://e-manage.mju.ac.th/timeline_detail.aspx?key=MTk4 + https://resolution.soc.go.th/PDF_UPLOAD/2510/932141.pdf - [Royal Thai Armed Forces Day] ``_ - [Teacher's Day] @@ -522,18 +525,59 @@ def _populate_government_holidays(self): # No Future Fixed Date Holidays # วันพืชมงคล - # Restarts in 1957 (B.E. 2500). + # Restarts in 1947 (B.E. 2490), wouldn't become an holiday again until 1960 (B.E. 2503). + # Removed as an holiday in 1999 due to financial crisis, reinstated in 2000. + # No event was held in 2021 due to local Covid-19 situation, though it stays a day off. # Is dated on an annual basis by the Royal Palace, always on weekdays. + # For historic research, วันเกษตรแห่งชาติ (National Agricultural Day) also concides with + # this from 1966 onwards. For earlier records the date was refered as วันแรกนาขวัญ. # This isn't even fixed even by the Thai Lunar Calendar, but instead - # by Court Astrologers; All chosen dates are all around May, so we - # can technically assign it to 13 May for years prior with no data. + # by Court Astrologers; All chosen dates are all in the first three weeks of May. # *** NOTE: only observed by government sectors. # TODO: Update this annually around Dec of each year. + # Got only 1 source for 1992 and 1993, might need some recheck later. raeknakhwan_dates = { - 1997: (MAY, 13), - 1998: (MAY, 13), - # Not held in 1999 date. + 1960: (MAY, 2), + 1961: (MAY, 11), + 1962: (MAY, 7), + 1963: (MAY, 10), + 1964: (MAY, 8), + 1965: (MAY, 13), + 1966: (MAY, 13), + 1967: (MAY, 11), + 1968: (MAY, 10), + 1969: (MAY, 9), + 1970: (MAY, 8), + 1971: (MAY, 7), + 1972: (MAY, 8), + 1973: (MAY, 7), + 1974: (MAY, 8), + 1975: (MAY, 7), + 1976: (MAY, 10), + 1977: (MAY, 12), + 1978: (MAY, 11), + 1979: (MAY, 7), + 1980: (MAY, 14), + 1981: (MAY, 7), + 1982: (MAY, 19), + 1983: (MAY, 11), + 1984: (MAY, 10), + 1985: (MAY, 9), + 1986: (MAY, 9), + 1987: (MAY, 8), + 1988: (MAY, 11), + 1989: (MAY, 11), + 1990: (MAY, 11), + 1991: (MAY, 10), + 1992: (MAY, 14), + 1993: (MAY, 17), + 1994: (MAY, 11), + 1995: (MAY, 10), + 1996: (MAY, 16), + 1997: (MAY, 9), + 1998: (MAY, 8), + # Not a holiday in 1999 date, was held on MAY, 14. 2000: (MAY, 15), 2001: (MAY, 16), 2002: (MAY, 9), @@ -544,7 +588,7 @@ def _populate_government_holidays(self): 2007: (MAY, 10), 2008: (MAY, 9), 2009: (MAY, 11), - 2010: (MAY, 10), + 2010: (MAY, 13), 2011: (MAY, 13), 2012: (MAY, 9), 2013: (MAY, 13), @@ -555,11 +599,12 @@ def _populate_government_holidays(self): 2018: (MAY, 14), 2019: (MAY, 9), 2020: (MAY, 11), - 2021: (MAY, 13), - 2022: (MAY, 17), - 2023: (MAY, 11), + 2021: (MAY, 10), + 2022: (MAY, 13), + 2023: (MAY, 17), + 2024: (MAY, 10), } - if 1957 <= self._year <= 2023 and self._year != 1999: + if 1960 <= self._year <= 2024 and self._year != 1999: self._add_observed( # Royal Ploughing Ceremony. self._add_holiday(tr("วันพืชมงคล"), raeknakhwan_dates.get(self._year, (MAY, 13))) @@ -795,7 +840,9 @@ class ThailandStaticHolidays: (JUL, 31, thai_bridge_public_holiday), (DEC, 29, thai_bridge_public_holiday), ), + 2024: (DEC, 30, thai_bridge_public_holiday), } + special_workday_holidays = {1999: (MAY, 14, tr("วันพืชมงคล"))} special_public_holidays_observed = { 2007: (DEC, 24, thai_election), diff --git a/snapshots/countries/TH_COMMON.json b/snapshots/countries/TH_COMMON.json index 1c14fabac..f3afbccf4 100644 --- a/snapshots/countries/TH_COMMON.json +++ b/snapshots/countries/TH_COMMON.json @@ -122,7 +122,7 @@ "1957-04-06": "Chakri Memorial Day", "1957-04-13": "Songkran Festival", "1957-04-15": "National Mother's Day", - "1957-05-13": "Royal Ploughing Ceremony; Visakha Bucha", + "1957-05-13": "Visakha Bucha", "1957-06-24": "National Day", "1957-07-01": "Mid-Year Closing Day", "1957-07-12": "Asarnha Bucha", @@ -140,7 +140,6 @@ "1958-04-06": "Chakri Memorial Day", "1958-04-13": "Songkran Festival", "1958-05-05": "Coronation Day", - "1958-05-13": "Royal Ploughing Ceremony", "1958-06-02": "Visakha Bucha", "1958-06-24": "National Day", "1958-07-01": "Mid-Year Closing Day", @@ -160,7 +159,6 @@ "1959-04-08": "Royal Thai Armed Forces Day", "1959-04-13": "Songkran Festival", "1959-05-05": "Coronation Day", - "1959-05-13": "Royal Ploughing Ceremony", "1959-05-22": "Visakha Bucha", "1959-06-24": "National Day", "1959-07-01": "Mid-Year Closing Day", @@ -179,9 +177,9 @@ "1960-04-06": "Chakri Memorial Day", "1960-04-08": "Royal Thai Armed Forces Day", "1960-04-13": "Songkran Festival", + "1960-05-02": "Royal Ploughing Ceremony", "1960-05-05": "Coronation Day", "1960-05-10": "Visakha Bucha", - "1960-05-13": "Royal Ploughing Ceremony", "1960-07-01": "Mid-Year Closing Day", "1960-07-08": "Asarnha Bucha", "1960-07-09": "Buddhist Lent Day", @@ -201,8 +199,7 @@ "1961-04-08": "Royal Thai Armed Forces Day", "1961-04-13": "Songkran Festival", "1961-05-05": "Coronation Day", - "1961-05-13": "Royal Ploughing Ceremony", - "1961-05-15": "Royal Ploughing Ceremony (in lieu)", + "1961-05-11": "Royal Ploughing Ceremony", "1961-05-29": "Visakha Bucha", "1961-07-01": "Mid-Year Closing Day", "1961-07-27": "Asarnha Bucha", @@ -223,9 +220,7 @@ "1962-04-08": "Royal Thai Armed Forces Day", "1962-04-13": "Songkran Festival", "1962-05-05": "Coronation Day", - "1962-05-07": "Coronation Day (in lieu)", - "1962-05-13": "Royal Ploughing Ceremony", - "1962-05-14": "Royal Ploughing Ceremony (in lieu)", + "1962-05-07": "Coronation Day (in lieu); Royal Ploughing Ceremony", "1962-05-18": "Visakha Bucha", "1962-07-01": "Mid-Year Closing Day", "1962-07-16": "Asarnha Bucha", @@ -248,7 +243,7 @@ "1963-05-05": "Coronation Day", "1963-05-06": "Coronation Day (in lieu)", "1963-05-07": "Visakha Bucha", - "1963-05-13": "Royal Ploughing Ceremony", + "1963-05-10": "Royal Ploughing Ceremony", "1963-07-01": "Mid-Year Closing Day", "1963-07-06": "Asarnha Bucha", "1963-07-07": "Buddhist Lent Day", @@ -268,7 +263,7 @@ "1964-04-08": "Royal Thai Armed Forces Day", "1964-04-13": "Songkran Festival", "1964-05-05": "Coronation Day", - "1964-05-13": "Royal Ploughing Ceremony", + "1964-05-08": "Royal Ploughing Ceremony", "1964-05-26": "Visakha Bucha", "1964-07-01": "Mid-Year Closing Day", "1964-07-24": "Asarnha Bucha", @@ -338,8 +333,7 @@ "1967-04-08": "Royal Thai Armed Forces Day", "1967-04-13": "Songkran Festival", "1967-05-05": "Coronation Day", - "1967-05-13": "Royal Ploughing Ceremony", - "1967-05-15": "Royal Ploughing Ceremony (in lieu)", + "1967-05-11": "Royal Ploughing Ceremony", "1967-05-23": "Visakha Bucha", "1967-07-01": "Mid-Year Closing Day", "1967-07-21": "Asarnha Bucha", @@ -363,8 +357,9 @@ "1968-04-15": "Songkran Festival (in lieu)", "1968-05-05": "Coronation Day", "1968-05-06": "Coronation Day (in lieu)", + "1968-05-10": "Royal Ploughing Ceremony", "1968-05-11": "Visakha Bucha", - "1968-05-13": "Royal Ploughing Ceremony; Visakha Bucha (in lieu)", + "1968-05-13": "Visakha Bucha (in lieu)", "1968-07-01": "Mid-Year Closing Day", "1968-07-09": "Asarnha Bucha", "1968-07-10": "Buddhist Lent Day", @@ -386,7 +381,7 @@ "1969-04-13": "Songkran Festival", "1969-04-14": "Songkran Festival (in lieu)", "1969-05-05": "Coronation Day", - "1969-05-13": "Royal Ploughing Ceremony", + "1969-05-09": "Royal Ploughing Ceremony", "1969-05-30": "Visakha Bucha", "1969-07-01": "Mid-Year Closing Day", "1969-07-28": "Asarnha Bucha", @@ -406,7 +401,7 @@ "1970-04-08": "Royal Thai Armed Forces Day", "1970-04-13": "Songkran Festival", "1970-05-05": "Coronation Day", - "1970-05-13": "Royal Ploughing Ceremony", + "1970-05-08": "Royal Ploughing Ceremony", "1970-05-19": "Visakha Bucha", "1970-07-01": "Mid-Year Closing Day", "1970-07-18": "Asarnha Bucha", @@ -428,9 +423,9 @@ "1971-04-08": "Royal Thai Armed Forces Day", "1971-04-13": "Songkran Festival", "1971-05-05": "Coronation Day", + "1971-05-07": "Royal Ploughing Ceremony", "1971-05-09": "Visakha Bucha", "1971-05-10": "Visakha Bucha (in lieu)", - "1971-05-13": "Royal Ploughing Ceremony", "1971-07-01": "Mid-Year Closing Day", "1971-07-07": "Asarnha Bucha", "1971-07-08": "Buddhist Lent Day", @@ -452,8 +447,7 @@ "1972-04-08": "Royal Thai Armed Forces Day", "1972-04-13": "Songkran Festival", "1972-05-05": "Coronation Day", - "1972-05-13": "Royal Ploughing Ceremony", - "1972-05-15": "Royal Ploughing Ceremony (in lieu)", + "1972-05-08": "Royal Ploughing Ceremony", "1972-05-27": "Visakha Bucha", "1972-05-29": "Visakha Bucha (in lieu)", "1972-07-01": "Mid-Year Closing Day", @@ -476,9 +470,7 @@ "1973-04-08": "Royal Thai Armed Forces Day", "1973-04-13": "Songkran Festival", "1973-05-05": "Coronation Day", - "1973-05-07": "Coronation Day (in lieu)", - "1973-05-13": "Royal Ploughing Ceremony", - "1973-05-14": "Royal Ploughing Ceremony (in lieu)", + "1973-05-07": "Coronation Day (in lieu); Royal Ploughing Ceremony", "1973-05-16": "Visakha Bucha", "1973-07-01": "Mid-Year Closing Day", "1973-07-15": "Asarnha Bucha", @@ -501,7 +493,7 @@ "1974-05-01": "National Labour Day", "1974-05-05": "Coronation Day", "1974-05-06": "Visakha Bucha", - "1974-05-13": "Royal Ploughing Ceremony", + "1974-05-08": "Royal Ploughing Ceremony", "1974-07-01": "Mid-Year Closing Day", "1974-07-04": "Asarnha Bucha", "1974-07-05": "Buddhist Lent Day", @@ -521,7 +513,7 @@ "1975-04-13": "Songkran Festival", "1975-05-01": "National Labour Day", "1975-05-05": "Coronation Day", - "1975-05-13": "Royal Ploughing Ceremony", + "1975-05-07": "Royal Ploughing Ceremony", "1975-05-25": "Visakha Bucha", "1975-07-01": "Mid-Year Closing Day", "1975-07-23": "Asarnha Bucha", @@ -542,7 +534,8 @@ "1976-04-13": "Songkran Festival", "1976-05-01": "National Labour Day", "1976-05-05": "Coronation Day", - "1976-05-13": "Royal Ploughing Ceremony; Visakha Bucha", + "1976-05-10": "Royal Ploughing Ceremony", + "1976-05-13": "Visakha Bucha", "1976-07-01": "Mid-Year Closing Day", "1976-07-11": "Asarnha Bucha", "1976-07-12": "Buddhist Lent Day", @@ -563,7 +556,7 @@ "1977-04-13": "Songkran Festival", "1977-05-01": "National Labour Day", "1977-05-05": "Coronation Day", - "1977-05-13": "Royal Ploughing Ceremony", + "1977-05-12": "Royal Ploughing Ceremony", "1977-06-01": "Visakha Bucha", "1977-07-01": "Mid-Year Closing Day", "1977-07-30": "Asarnha Bucha", @@ -585,7 +578,7 @@ "1978-04-13": "Songkran Festival", "1978-05-01": "National Labour Day", "1978-05-05": "Coronation Day", - "1978-05-13": "Royal Ploughing Ceremony", + "1978-05-11": "Royal Ploughing Ceremony", "1978-05-21": "Visakha Bucha", "1978-07-01": "Mid-Year Closing Day", "1978-07-19": "Asarnha Bucha", @@ -607,8 +600,8 @@ "1979-04-13": "Songkran Festival", "1979-05-01": "National Labour Day", "1979-05-05": "Coronation Day", + "1979-05-07": "Royal Ploughing Ceremony", "1979-05-10": "Visakha Bucha", - "1979-05-13": "Royal Ploughing Ceremony", "1979-07-01": "Mid-Year Closing Day", "1979-07-09": "Asarnha Bucha", "1979-07-10": "Buddhist Lent Day", @@ -629,7 +622,7 @@ "1980-04-13": "Songkran Festival", "1980-05-01": "National Labour Day", "1980-05-05": "Coronation Day", - "1980-05-13": "Royal Ploughing Ceremony", + "1980-05-14": "Royal Ploughing Ceremony", "1980-05-29": "Visakha Bucha", "1980-07-01": "Mid-Year Closing Day", "1980-07-27": "Asarnha Bucha", @@ -651,7 +644,7 @@ "1981-04-13": "Songkran Festival", "1981-05-01": "National Labour Day", "1981-05-05": "Coronation Day", - "1981-05-13": "Royal Ploughing Ceremony", + "1981-05-07": "Royal Ploughing Ceremony", "1981-05-18": "Visakha Bucha", "1981-07-01": "Mid-Year Closing Day", "1981-07-16": "Asarnha Bucha", @@ -674,7 +667,7 @@ "1982-05-01": "National Labour Day", "1982-05-05": "Coronation Day", "1982-05-07": "Visakha Bucha", - "1982-05-13": "Royal Ploughing Ceremony", + "1982-05-19": "Royal Ploughing Ceremony", "1982-07-01": "Mid-Year Closing Day", "1982-07-05": "Asarnha Bucha", "1982-07-06": "Buddhist Lent Day", @@ -696,7 +689,7 @@ "1983-04-13": "Songkran Festival", "1983-05-01": "National Labour Day", "1983-05-05": "Coronation Day", - "1983-05-13": "Royal Ploughing Ceremony", + "1983-05-11": "Royal Ploughing Ceremony", "1983-05-26": "Visakha Bucha", "1983-07-01": "Mid-Year Closing Day", "1983-07-24": "Asarnha Bucha", @@ -719,7 +712,7 @@ "1984-04-13": "Songkran Festival", "1984-05-01": "National Labour Day", "1984-05-05": "Coronation Day", - "1984-05-13": "Royal Ploughing Ceremony", + "1984-05-10": "Royal Ploughing Ceremony", "1984-05-14": "Visakha Bucha", "1984-07-01": "Mid-Year Closing Day", "1984-07-12": "Asarnha Bucha", @@ -743,7 +736,7 @@ "1985-04-13": "Songkran Festival", "1985-05-01": "National Labour Day", "1985-05-05": "Coronation Day", - "1985-05-13": "Royal Ploughing Ceremony", + "1985-05-09": "Royal Ploughing Ceremony", "1985-06-02": "Visakha Bucha", "1985-07-01": "Mid-Year Closing Day", "1985-07-31": "Asarnha Bucha", @@ -767,7 +760,7 @@ "1986-04-13": "Songkran Festival", "1986-05-01": "National Labour Day", "1986-05-05": "Coronation Day", - "1986-05-13": "Royal Ploughing Ceremony", + "1986-05-09": "Royal Ploughing Ceremony", "1986-05-22": "Visakha Bucha", "1986-07-01": "Mid-Year Closing Day", "1986-07-20": "Asarnha Bucha", @@ -791,8 +784,8 @@ "1987-04-13": "Songkran Festival", "1987-05-01": "National Labour Day", "1987-05-05": "Coronation Day", + "1987-05-08": "Royal Ploughing Ceremony", "1987-05-11": "Visakha Bucha", - "1987-05-13": "Royal Ploughing Ceremony", "1987-07-01": "Mid-Year Closing Day", "1987-07-10": "Asarnha Bucha", "1987-07-11": "Buddhist Lent Day", @@ -815,7 +808,7 @@ "1988-04-13": "Songkran Festival", "1988-05-01": "National Labour Day", "1988-05-05": "Coronation Day", - "1988-05-13": "Royal Ploughing Ceremony", + "1988-05-11": "Royal Ploughing Ceremony", "1988-05-30": "Visakha Bucha", "1988-07-01": "Mid-Year Closing Day", "1988-07-28": "Asarnha Bucha", @@ -842,7 +835,7 @@ "1989-04-14": "Songkran Festival", "1989-05-01": "National Labour Day", "1989-05-05": "Coronation Day", - "1989-05-13": "Royal Ploughing Ceremony", + "1989-05-11": "Royal Ploughing Ceremony", "1989-05-19": "Visakha Bucha", "1989-07-01": "Mid-Year Closing Day", "1989-07-17": "Asarnha Bucha", @@ -872,7 +865,7 @@ "1990-05-01": "National Labour Day", "1990-05-05": "Coronation Day", "1990-05-08": "Visakha Bucha", - "1990-05-13": "Royal Ploughing Ceremony", + "1990-05-11": "Royal Ploughing Ceremony", "1990-07-01": "Mid-Year Closing Day", "1990-07-07": "Asarnha Bucha", "1990-07-08": "Buddhist Lent Day", @@ -900,7 +893,7 @@ "1991-04-14": "Songkran Festival", "1991-05-01": "National Labour Day", "1991-05-05": "Coronation Day", - "1991-05-13": "Royal Ploughing Ceremony", + "1991-05-10": "Royal Ploughing Ceremony", "1991-05-28": "Visakha Bucha", "1991-07-01": "Mid-Year Closing Day", "1991-07-26": "Asarnha Bucha", @@ -929,7 +922,7 @@ "1992-04-14": "Songkran Festival", "1992-05-01": "National Labour Day", "1992-05-05": "Coronation Day", - "1992-05-13": "Royal Ploughing Ceremony", + "1992-05-14": "Royal Ploughing Ceremony", "1992-05-16": "Visakha Bucha", "1992-05-18": "Special In Lieu Holiday", "1992-07-01": "Mid-Year Closing Day", @@ -961,7 +954,7 @@ "1993-05-01": "National Labour Day", "1993-05-03": "Special In Lieu Holiday", "1993-05-05": "Coronation Day; Visakha Bucha", - "1993-05-13": "Royal Ploughing Ceremony", + "1993-05-17": "Royal Ploughing Ceremony", "1993-07-01": "Mid-Year Closing Day", "1993-07-03": "Asarnha Bucha", "1993-07-04": "Buddhist Lent Day", @@ -993,7 +986,7 @@ "1994-05-01": "National Labour Day", "1994-05-02": "Special In Lieu Holiday", "1994-05-05": "Coronation Day", - "1994-05-13": "Royal Ploughing Ceremony", + "1994-05-11": "Royal Ploughing Ceremony", "1994-05-24": "Visakha Bucha", "1994-07-01": "Mid-Year Closing Day", "1994-07-22": "Asarnha Bucha", @@ -1027,8 +1020,9 @@ "1995-04-14": "Songkran Festival", "1995-05-01": "National Labour Day", "1995-05-05": "Coronation Day", - "1995-05-13": "Royal Ploughing Ceremony; Visakha Bucha", - "1995-05-15": "Royal Ploughing Ceremony (in lieu); Visakha Bucha (in lieu)", + "1995-05-10": "Royal Ploughing Ceremony", + "1995-05-13": "Visakha Bucha", + "1995-05-15": "Visakha Bucha (in lieu)", "1995-07-01": "Mid-Year Closing Day", "1995-07-11": "Asarnha Bucha", "1995-07-12": "Buddhist Lent Day", @@ -1063,7 +1057,7 @@ "1996-05-01": "National Labour Day", "1996-05-05": "Coronation Day", "1996-05-06": "Coronation Day (in lieu)", - "1996-05-13": "Royal Ploughing Ceremony", + "1996-05-16": "Royal Ploughing Ceremony", "1996-05-31": "Visakha Bucha", "1996-06-10": "HM King Bhumibol Adulyadej's Golden Jubilee", "1996-07-01": "Mid-Year Closing Day", @@ -1096,7 +1090,7 @@ "1997-04-15": "Songkran Festival (in lieu)", "1997-05-01": "National Labour Day", "1997-05-05": "Coronation Day", - "1997-05-13": "Royal Ploughing Ceremony", + "1997-05-09": "Royal Ploughing Ceremony", "1997-05-20": "Visakha Bucha", "1997-07-01": "Mid-Year Closing Day", "1997-07-19": "Asarnha Bucha", @@ -1127,9 +1121,9 @@ "1998-04-15": "Songkran Festival", "1998-05-01": "National Labour Day", "1998-05-05": "Coronation Day", + "1998-05-08": "Royal Ploughing Ceremony", "1998-05-10": "Visakha Bucha", "1998-05-11": "Special In Lieu Holiday", - "1998-05-13": "Royal Ploughing Ceremony", "1998-07-01": "Mid-Year Closing Day", "1998-07-08": "Asarnha Bucha", "1998-07-09": "Buddhist Lent Day", @@ -1160,6 +1154,7 @@ "1999-05-01": "National Labour Day", "1999-05-03": "Special In Lieu Holiday", "1999-05-05": "Coronation Day", + "1999-05-14": "Royal Ploughing Ceremony", "1999-05-29": "Visakha Bucha", "1999-05-31": "Special In Lieu Holiday", "1999-07-01": "Mid-Year Closing Day", @@ -1538,7 +1533,7 @@ "2010-05-01": "National Labour Day", "2010-05-03": "National Labour Day (in lieu)", "2010-05-05": "Coronation Day", - "2010-05-10": "Royal Ploughing Ceremony", + "2010-05-13": "Royal Ploughing Ceremony", "2010-05-20": "Bridge Public Holiday", "2010-05-21": "Bridge Public Holiday", "2010-05-28": "Visakha Bucha", @@ -1938,7 +1933,7 @@ "2021-05-01": "National Labour Day", "2021-05-03": "National Labour Day (in lieu)", "2021-05-04": "Coronation Day", - "2021-05-13": "Royal Ploughing Ceremony", + "2021-05-10": "Royal Ploughing Ceremony", "2021-05-26": "Visakha Bucha", "2021-06-03": "HM Queen Suthida's Birthday", "2021-07-24": "Asarnha Bucha", @@ -1976,9 +1971,9 @@ "2022-05-01": "National Labour Day", "2022-05-02": "National Labour Day (in lieu)", "2022-05-04": "Coronation Day", + "2022-05-13": "Royal Ploughing Ceremony", "2022-05-15": "Visakha Bucha", "2022-05-16": "Visakha Bucha (in lieu)", - "2022-05-17": "Royal Ploughing Ceremony", "2022-06-03": "HM Queen Suthida's Birthday", "2022-07-13": "Asarnha Bucha", "2022-07-14": "Buddhist Lent Day", @@ -2018,7 +2013,7 @@ "2023-05-01": "National Labour Day", "2023-05-04": "Coronation Day", "2023-05-05": "Bridge Public Holiday", - "2023-05-11": "Royal Ploughing Ceremony", + "2023-05-17": "Royal Ploughing Ceremony", "2023-06-03": "HM Queen Suthida's Birthday; Visakha Bucha", "2023-06-05": "HM Queen Suthida's Birthday (in lieu); Visakha Bucha (in lieu)", "2023-07-28": "HM King Maha Vajiralongkorn's Birthday", @@ -2056,6 +2051,7 @@ "2024-05-01": "National Labour Day", "2024-05-04": "Coronation Day", "2024-05-06": "Coronation Day (in lieu)", + "2024-05-10": "Royal Ploughing Ceremony", "2024-05-22": "Visakha Bucha", "2024-06-03": "HM Queen Suthida's Birthday", "2024-07-20": "Asarnha Bucha", @@ -2072,6 +2068,7 @@ "2024-11-15": "Loy Krathong", "2024-12-05": "HM King Bhumibol Adulyadej the Great's Birthday; National Day; National Father's Day", "2024-12-10": "Constitution Day", + "2024-12-30": "Bridge Public Holiday", "2024-12-31": "New Year's Eve", "2025-01-01": "New Year's Day", "2025-01-11": "National Children's Day", diff --git a/tests/countries/test_thailand.py b/tests/countries/test_thailand.py index 2a58a9760..929541269 100644 --- a/tests/countries/test_thailand.py +++ b/tests/countries/test_thailand.py @@ -103,6 +103,7 @@ def test_special_holidays(self): "2023-05-05", "2023-07-31", "2023-12-29", + "2024-12-30", ) dt_observed = ( "2007-12-24", @@ -135,9 +136,9 @@ def test_2022_all(self): ("2022-05-01", "วันแรงงานแห่งชาติ"), ("2022-05-02", "ชดเชยวันแรงงานแห่งชาติ"), ("2022-05-04", "วันฉัตรมงคล"), + ("2022-05-13", "วันพืชมงคล"), ("2022-05-15", "วันวิสาขบูชา"), ("2022-05-16", "ชดเชยวันวิสาขบูชา"), - ("2022-05-17", "วันพืชมงคล"), ( "2022-06-03", "วันเฉลิมพระชนมพรรษาสมเด็จพระนางเจ้าสุทิดา พัชรสุธาพิมลลักษณ พระบรมราชินี", @@ -613,9 +614,47 @@ def test_khao_phansa(self): def test_raeknakhwan(self): name = "วันพืชมงคล" self.assertHolidays( - Thailand(categories=GOVERNMENT, years=range(1997, 2024)), - ("1997-05-13", name), - ("1998-05-13", name), + Thailand(categories=GOVERNMENT, years=range(1960, 2024)), + ("1960-05-02", name), + ("1961-05-11", name), + ("1962-05-07", name), + ("1963-05-10", name), + ("1964-05-08", name), + ("1965-05-13", name), + ("1966-05-13", name), + ("1967-05-11", name), + ("1968-05-10", name), + ("1969-05-09", name), + ("1970-05-08", name), + ("1971-05-07", name), + ("1972-05-08", name), + ("1973-05-07", name), + ("1974-05-08", name), + ("1975-05-07", name), + ("1976-05-10", name), + ("1977-05-12", name), + ("1978-05-11", name), + ("1979-05-07", name), + ("1980-05-14", name), + ("1981-05-07", name), + ("1982-05-19", name), + ("1983-05-11", name), + ("1984-05-10", name), + ("1985-05-09", name), + ("1986-05-09", name), + ("1987-05-08", name), + ("1988-05-11", name), + ("1989-05-11", name), + ("1990-05-11", name), + ("1991-05-10", name), + ("1992-05-14", name), + ("1993-05-17", name), + ("1994-05-11", name), + ("1995-05-10", name), + ("1996-05-16", name), + ("1997-05-09", name), + ("1998-05-08", name), + # Not a holiday in 1999 date, was held on MAY, 14. ("2000-05-15", name), ("2001-05-16", name), ("2002-05-09", name), @@ -626,7 +665,7 @@ def test_raeknakhwan(self): ("2007-05-10", name), ("2008-05-09", name), ("2009-05-11", name), - ("2010-05-10", name), + ("2010-05-13", name), ("2011-05-13", name), ("2012-05-09", name), ("2013-05-13", name), @@ -637,9 +676,10 @@ def test_raeknakhwan(self): ("2018-05-14", name), ("2019-05-09", name), ("2020-05-11", name), - ("2021-05-13", name), - ("2022-05-17", name), - ("2023-05-11", name), + ("2021-05-10", name), + ("2022-05-13", name), + ("2023-05-17", name), + ("2024-05-10", name), ) def test_armed_forces_holiday(self): @@ -751,6 +791,20 @@ def test_workday_1995(self): ("1995-11-06", "วันลอยกระทง"), ) + def test_workday_1999(self): + self.assertHolidays( + Thailand(categories=WORKDAY, years=1999), + ("1999-01-13", "วันการบินแห่งชาติ"), + ("1999-01-14", "วันอนุรักษ์ทรัพยากรป่าไม้ของชาติ"), + ("1999-01-17", "วันพ่อขุนรามคำแหงมหาราช"), + ("1999-02-03", "วันทหารผ่านศึก"), + ("1999-02-26", "วันศิลปินแห่งชาติ"), + ("1999-03-08", "วันสตรีสากล"), + ("1999-05-14", "วันพืชมงคล"), + ("1999-08-18", "วันวิทยาศาสตร์แห่งชาติ"), + ("1999-11-22", "วันลอยกระทง"), + ) + def test_workday_2017(self): self.assertHolidays( Thailand(categories=WORKDAY, years=2017), @@ -786,9 +840,9 @@ def test_l10n_default(self): ("2022-05-01", "วันแรงงานแห่งชาติ"), ("2022-05-02", "ชดเชยวันแรงงานแห่งชาติ"), ("2022-05-04", "วันฉัตรมงคล"), + ("2022-05-13", "วันพืชมงคล"), ("2022-05-15", "วันวิสาขบูชา"), ("2022-05-16", "ชดเชยวันวิสาขบูชา"), - ("2022-05-17", "วันพืชมงคล"), ( "2022-06-03", "วันเฉลิมพระชนมพรรษาสมเด็จพระนางเจ้าสุทิดา พัชรสุธาพิมลลักษณ พระบรมราชินี", @@ -853,9 +907,9 @@ def test_l10n_en_US(self): ("2022-05-01", "National Labour Day"), ("2022-05-02", "National Labour Day (in lieu)"), ("2022-05-04", "Coronation Day"), + ("2022-05-13", "Royal Ploughing Ceremony"), ("2022-05-15", "Visakha Bucha"), ("2022-05-16", "Visakha Bucha (in lieu)"), - ("2022-05-17", "Royal Ploughing Ceremony"), ("2022-06-03", "HM Queen Suthida's Birthday"), ("2022-07-13", "Asarnha Bucha"), ("2022-07-14", "Buddhist Lent Day"), From ce947df1006eb8d748264a7a3735fc019095febd Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Fri, 12 Jan 2024 09:46:04 -0800 Subject: [PATCH 20/23] Introduce observed_estimated_label (#1633) --- holidays/countries/azerbaijan.py | 4 +- holidays/countries/brunei.py | 4 + holidays/countries/saudi_arabia.py | 2 + holidays/countries/uzbekistan.py | 6 +- holidays/locale/ar/LC_MESSAGES/SA.po | 7 +- holidays/locale/az/LC_MESSAGES/AZ.po | 9 +- holidays/locale/en_US/LC_MESSAGES/AZ.po | 9 +- holidays/locale/en_US/LC_MESSAGES/BN.po | 7 + holidays/locale/en_US/LC_MESSAGES/SA.po | 7 +- holidays/locale/en_US/LC_MESSAGES/UZ.po | 11 +- holidays/locale/ms/LC_MESSAGES/BN.po | 7 + holidays/locale/th/LC_MESSAGES/BN.po | 7 + holidays/locale/uk/LC_MESSAGES/AZ.po | 9 +- holidays/locale/uk/LC_MESSAGES/UZ.po | 9 +- holidays/locale/uz/LC_MESSAGES/UZ.po | 9 +- holidays/observed_holiday_base.py | 25 +- snapshots/countries/AZ_COMMON.json | 64 ++-- snapshots/countries/BN_COMMON.json | 224 ++++++------ snapshots/countries/SA_COMMON.json | 464 ++++++++++++------------ snapshots/countries/UZ_COMMON.json | 142 ++++---- tests/common.py | 13 + tests/countries/test_saudi_arabia.py | 12 +- tests/countries/test_uzbekistan.py | 2 +- 23 files changed, 576 insertions(+), 477 deletions(-) diff --git a/holidays/countries/azerbaijan.py b/holidays/countries/azerbaijan.py index 12928d92b..8f58e5429 100644 --- a/holidays/countries/azerbaijan.py +++ b/holidays/countries/azerbaijan.py @@ -30,10 +30,12 @@ class Azerbaijan(ObservedHolidayBase, InternationalHolidays, IslamicHolidays, St country = "AZ" default_language = "az" - # Estimated label. + # %s (estimated). estimated_label = tr("%s (təxmini)") # %s (observed). observed_label = tr("%s (müşahidə olunur)") + # %s (observed, estimated). + observed_estimated_label = tr("%s (müşahidə olunur, təxmini)") supported_categories = (PUBLIC, WORKDAY) supported_languages = ("az", "en_US", "uk") diff --git a/holidays/countries/brunei.py b/holidays/countries/brunei.py index d469282ea..e18218bb4 100644 --- a/holidays/countries/brunei.py +++ b/holidays/countries/brunei.py @@ -67,8 +67,12 @@ class Brunei( country = "BN" default_language = "ms" + # %s (estimated). estimated_label = tr("%s (anggaran)") + # %s (observed). observed_label = tr("%s (diperhatikan)") + # %s (observed, estimated). + observed_estimated_label = tr("%s (diperhatikan, anggaran)") supported_languages = ("en_US", "ms", "th") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/saudi_arabia.py b/holidays/countries/saudi_arabia.py index 80b614945..76f7184c0 100644 --- a/holidays/countries/saudi_arabia.py +++ b/holidays/countries/saudi_arabia.py @@ -49,6 +49,8 @@ class SaudiArabia(ObservedHolidayBase, IslamicHolidays, StaticHolidays): estimated_label = tr("(تقدير) %s") # %s (observed). observed_label = tr("(ملاحظة) %s") + # %s (observed, estimated). + observed_estimated_label = tr("(تقدير ملاحظة) %s") supported_languages = ("ar", "en_US") def __init__(self, *args, **kwargs): diff --git a/holidays/countries/uzbekistan.py b/holidays/countries/uzbekistan.py index f3ad8294b..947cce775 100644 --- a/holidays/countries/uzbekistan.py +++ b/holidays/countries/uzbekistan.py @@ -28,10 +28,12 @@ class Uzbekistan(ObservedHolidayBase, InternationalHolidays, IslamicHolidays, St country = "UZ" default_language = "uz" - # Estimated label. + # %s (estimated). estimated_label = tr("%s (taxminiy)") - # %s (Observed). + # %s (observed). observed_label = tr("%s (ko‘chirilgan)") + # %s (observed, estimated). + observed_estimated_label = tr("%s (ko‘chirilgan, taxminiy)") supported_languages = ("en_US", "uk", "uz") def __init__(self, *args, **kwargs): diff --git a/holidays/locale/ar/LC_MESSAGES/SA.po b/holidays/locale/ar/LC_MESSAGES/SA.po index 966418cc0..d702c67e7 100644 --- a/holidays/locale/ar/LC_MESSAGES/SA.po +++ b/holidays/locale/ar/LC_MESSAGES/SA.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-08-04 20:02+0300\n" "PO-Revision-Date: 2023-08-04 20:05+0300\n" "Last-Translator: ~Jhellico \n" @@ -49,3 +49,8 @@ msgstr "" #. Founding Day msgid "يوم التأسيسي" msgstr "" + +#. %s (observed, estimated). +#, c-format +msgid "(تقدير ملاحظة) %s" +msgstr "" diff --git a/holidays/locale/az/LC_MESSAGES/AZ.po b/holidays/locale/az/LC_MESSAGES/AZ.po index d24d745e6..9af0af681 100644 --- a/holidays/locale/az/LC_MESSAGES/AZ.po +++ b/holidays/locale/az/LC_MESSAGES/AZ.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-11-15 20:42+0200\n" "PO-Revision-Date: 2023-11-15 20:47+0200\n" "Last-Translator: ~Jhellico \n" @@ -16,7 +16,7 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. Estimated label. +#. %s (estimated). #, c-format msgid "%s (təxmini)" msgstr "" @@ -118,3 +118,8 @@ msgstr "" #, c-format msgid "İstirahət günü (%s ilə əvəz edilmişdir)" msgstr "" + +#. %s (observed, estimated). +#, c-format +msgid "%s (müşahidə olunur, təxmini)" +msgstr "" diff --git a/holidays/locale/en_US/LC_MESSAGES/AZ.po b/holidays/locale/en_US/LC_MESSAGES/AZ.po index 1d0122ec7..165f8e1a8 100644 --- a/holidays/locale/en_US/LC_MESSAGES/AZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/AZ.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-11-15 20:42+0200\n" "PO-Revision-Date: 2023-11-15 20:52+0200\n" "Last-Translator: ~Jhellico \n" @@ -16,7 +16,7 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. Estimated label. +#. %s (estimated). #, c-format msgid "%s (təxmini)" msgstr "%s (estimated)" @@ -118,3 +118,8 @@ msgstr "%m/%d/%Y" #, c-format msgid "İstirahət günü (%s ilə əvəz edilmişdir)" msgstr "Day off (substituted from %s)" + +#. %s (observed, estimated). +#, c-format +msgid "%s (müşahidə olunur, təxmini)" +msgstr "%s (observed, estimated)" diff --git a/holidays/locale/en_US/LC_MESSAGES/BN.po b/holidays/locale/en_US/LC_MESSAGES/BN.po index a2fd191ae..5dbb8bad4 100644 --- a/holidays/locale/en_US/LC_MESSAGES/BN.po +++ b/holidays/locale/en_US/LC_MESSAGES/BN.po @@ -19,10 +19,12 @@ msgstr "" msgid "Jubli Emas Sultan Hassanal Bolkiah" msgstr "Sultan Hassanal Bolkiah's Golden Jubilee" +#. %s (estimated). #, c-format msgid "%s (anggaran)" msgstr "%s (estimated)" +#. %s (observed). #, c-format msgid "%s (diperhatikan)" msgstr "%s (observed)" @@ -78,3 +80,8 @@ msgstr "Islamic New Year" #. Birth of the Prophet msgid "Maulidur Rasul" msgstr "Birth of the Prophet" + +#. %s (observed, estimated). +#, c-format +msgid "%s (diperhatikan, anggaran)" +msgstr "%s (observed, estimated)" diff --git a/holidays/locale/en_US/LC_MESSAGES/SA.po b/holidays/locale/en_US/LC_MESSAGES/SA.po index 2d4b2f2ec..9a1db69e3 100644 --- a/holidays/locale/en_US/LC_MESSAGES/SA.po +++ b/holidays/locale/en_US/LC_MESSAGES/SA.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.30\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-08-04 20:02+0300\n" "PO-Revision-Date: 2023-08-04 20:03+0300\n" "Last-Translator: ~Jhellico \n" @@ -49,3 +49,8 @@ msgstr "National Day Holiday" #. Founding Day msgid "يوم التأسيسي" msgstr "Founding Day Holiday" + +#. %s (observed, estimated). +#, c-format +msgid "(تقدير ملاحظة) %s" +msgstr "%s (observed, estimated)" diff --git a/holidays/locale/en_US/LC_MESSAGES/UZ.po b/holidays/locale/en_US/LC_MESSAGES/UZ.po index 1332081e8..5a64d171f 100644 --- a/holidays/locale/en_US/LC_MESSAGES/UZ.po +++ b/holidays/locale/en_US/LC_MESSAGES/UZ.po @@ -56,15 +56,15 @@ msgstr "Eid al-Fitr" msgid "Qurbon hayit" msgstr "Eid al-Adha" -#. Estimated label. +#. %s (estimated). #, c-format msgid "%s (taxminiy)" msgstr "%s (estimated)" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (ko‘chirilgan)" -msgstr "%s (Observed)" +msgstr "%s (observed)" #. Date format (see strftime() Format Codes) msgid "%d/%m %Y" @@ -78,3 +78,8 @@ msgstr "Day off (substituted from %s)" #. Additional day off by Presidential decree. msgid "Prezidentining farmoni bilan qo‘shimcha dam olish kuni" msgstr "Additional day off by Presidential decree" + +#. %s (observed, estimated). +#, c-format +msgid "%s (ko‘chirilgan, taxminiy)" +msgstr "%s (observed, estimated)" diff --git a/holidays/locale/ms/LC_MESSAGES/BN.po b/holidays/locale/ms/LC_MESSAGES/BN.po index 11a76aec2..c1b0aabaf 100644 --- a/holidays/locale/ms/LC_MESSAGES/BN.po +++ b/holidays/locale/ms/LC_MESSAGES/BN.po @@ -19,10 +19,12 @@ msgstr "" msgid "Jubli Emas Sultan Hassanal Bolkiah" msgstr "" +#. %s (estimated). #, c-format msgid "%s (anggaran)" msgstr "" +#. %s (observed). #, c-format msgid "%s (diperhatikan)" msgstr "" @@ -78,3 +80,8 @@ msgstr "" #. Birth of the Prophet msgid "Maulidur Rasul" msgstr "" + +#. %s (observed, estimated). +#, c-format +msgid "%s (diperhatikan, anggaran)" +msgstr "" diff --git a/holidays/locale/th/LC_MESSAGES/BN.po b/holidays/locale/th/LC_MESSAGES/BN.po index a83eb4f16..a5d60adff 100644 --- a/holidays/locale/th/LC_MESSAGES/BN.po +++ b/holidays/locale/th/LC_MESSAGES/BN.po @@ -19,10 +19,12 @@ msgstr "" msgid "Jubli Emas Sultan Hassanal Bolkiah" msgstr "พระราชพิธีกาญจนาภิเษกสมเด็จพระราชาธิบดีสุลต่านฮัสซานัล โบลเกียห์" +#. %s (estimated). #, c-format msgid "%s (anggaran)" msgstr "%s (โดยประมาณ)" +#. %s (observed). #, c-format msgid "%s (diperhatikan)" msgstr "ชดเชย%s" @@ -78,3 +80,8 @@ msgstr "วันขึ้นปีใหม่อิสลาม" #. Birth of the Prophet msgid "Maulidur Rasul" msgstr "วันเมาลิดนบี" + +#. %s (observed, estimated). +#, c-format +msgid "%s (diperhatikan, anggaran)" +msgstr "ชดเชย%s (โดยประมาณ)" diff --git a/holidays/locale/uk/LC_MESSAGES/AZ.po b/holidays/locale/uk/LC_MESSAGES/AZ.po index 6cdf87233..44d4947ec 100644 --- a/holidays/locale/uk/LC_MESSAGES/AZ.po +++ b/holidays/locale/uk/LC_MESSAGES/AZ.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.39\n" +"Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-11-15 20:42+0200\n" "PO-Revision-Date: 2023-11-15 20:55+0200\n" "Last-Translator: ~Jhellico \n" @@ -16,7 +16,7 @@ msgstr "" "Generated-By: Lingua 4.15.0\n" "X-Generator: Poedit 3.4\n" -#. Estimated label. +#. %s (estimated). #, c-format msgid "%s (təxmini)" msgstr "%s (приблизна дата)" @@ -118,3 +118,8 @@ msgstr "%d.%m.%Y" #, c-format msgid "İstirahət günü (%s ilə əvəz edilmişdir)" msgstr "Вихідний день (перенесено з %s)" + +#. %s (observed, estimated). +#, c-format +msgid "%s (müşahidə olunur, təxmini)" +msgstr "%s (вихідний, приблизна дата)" diff --git a/holidays/locale/uk/LC_MESSAGES/UZ.po b/holidays/locale/uk/LC_MESSAGES/UZ.po index 0290f9128..71a5a8374 100644 --- a/holidays/locale/uk/LC_MESSAGES/UZ.po +++ b/holidays/locale/uk/LC_MESSAGES/UZ.po @@ -56,12 +56,12 @@ msgstr "Рамазан-байрам" msgid "Qurbon hayit" msgstr "Курбан-байрам" -#. Estimated label. +#. %s (estimated). #, c-format msgid "%s (taxminiy)" msgstr "%s (приблизна дата)" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (ko‘chirilgan)" msgstr "%s (вихідний)" @@ -78,3 +78,8 @@ msgstr "Вихідний день (перенесено з %s)" #. Additional day off by Presidential decree. msgid "Prezidentining farmoni bilan qo‘shimcha dam olish kuni" msgstr "Додатковий вихідний згідно указу Президента" + +#. %s (observed, estimated). +#, c-format +msgid "%s (ko‘chirilgan, taxminiy)" +msgstr "%s (вихідний, приблизна дата)" diff --git a/holidays/locale/uz/LC_MESSAGES/UZ.po b/holidays/locale/uz/LC_MESSAGES/UZ.po index 9d6ac7113..b5ebe156c 100644 --- a/holidays/locale/uz/LC_MESSAGES/UZ.po +++ b/holidays/locale/uz/LC_MESSAGES/UZ.po @@ -56,12 +56,12 @@ msgstr "" msgid "Qurbon hayit" msgstr "" -#. Estimated label. +#. %s (estimated). #, c-format msgid "%s (taxminiy)" msgstr "" -#. %s (Observed). +#. %s (observed). #, c-format msgid "%s (ko‘chirilgan)" msgstr "" @@ -78,3 +78,8 @@ msgstr "" #. Additional day off by Presidential decree. msgid "Prezidentining farmoni bilan qo‘shimcha dam olish kuni" msgstr "" + +#. %s (observed, estimated). +#, c-format +msgid "%s (ko‘chirilgan, taxminiy)" +msgstr "" diff --git a/holidays/observed_holiday_base.py b/holidays/observed_holiday_base.py index 0ede0c699..3ca02d79c 100644 --- a/holidays/observed_holiday_base.py +++ b/holidays/observed_holiday_base.py @@ -134,13 +134,28 @@ def _add_observed( if dt_observed == dt: return False, dt - observed_label = getattr( - self, - "observed_label_before" if dt_observed < dt else "observed_label", - self.observed_label, + estimated_label = self.tr(getattr(self, "estimated_label", "")) + observed_label = self.tr( + getattr( + self, + "observed_label_before" if dt_observed < dt else "observed_label", + self.observed_label, + ) ) + + estimated_label_text = estimated_label.strip("%s ()") + # Use observed_estimated_label instead of observed_label for estimated dates. for name in (name,) if name else self.get_list(dt): - super()._add_holiday(self.tr(observed_label) % self.tr(name), dt_observed) + holiday_name = self.tr(name) + observed_estimated_label = None + if len(estimated_label_text) > 0 and estimated_label_text in holiday_name: + holiday_name = holiday_name.replace(f"({estimated_label_text})", "").strip() + observed_estimated_label = self.tr(getattr(self, "observed_estimated_label")) + + super()._add_holiday( + (observed_estimated_label or observed_label) % holiday_name, dt_observed + ) + return True, dt_observed def _move_holiday(self, dt: date, rule: Optional[ObservedRule] = None) -> Tuple[bool, date]: diff --git a/snapshots/countries/AZ_COMMON.json b/snapshots/countries/AZ_COMMON.json index 84b378d2b..c9c98d635 100644 --- a/snapshots/countries/AZ_COMMON.json +++ b/snapshots/countries/AZ_COMMON.json @@ -718,7 +718,7 @@ "2024-06-16": "Eid al-Adha (estimated)", "2024-06-17": "Eid al-Adha (estimated)", "2024-06-18": "National Liberation Day (observed)", - "2024-06-19": "Eid al-Adha (estimated) (observed)", + "2024-06-19": "Eid al-Adha (observed, estimated)", "2024-06-26": "Armed Forces Day", "2024-09-27": "Memorial Day", "2024-10-18": "Independence Restoration Day", @@ -742,12 +742,12 @@ "2025-03-26": "Spring Festival (observed)", "2025-03-30": "Eid al-Fitr (estimated)", "2025-03-31": "Eid al-Fitr (estimated)", - "2025-04-01": "Eid al-Fitr (estimated) (observed)", + "2025-04-01": "Eid al-Fitr (observed, estimated)", "2025-05-09": "Victory over Fascism Day", "2025-05-28": "Independence Day", "2025-06-06": "Eid al-Adha (estimated)", "2025-06-07": "Eid al-Adha (estimated)", - "2025-06-09": "Eid al-Adha (estimated) (observed)", + "2025-06-09": "Eid al-Adha (observed, estimated)", "2025-06-15": "National Liberation Day", "2025-06-16": "National Liberation Day (observed)", "2025-06-26": "Armed Forces Day", @@ -770,7 +770,7 @@ "2026-03-22": "Spring Festival", "2026-03-23": "Spring Festival", "2026-03-24": "Spring Festival", - "2026-03-25": "Eid al-Fitr (estimated) (observed); Spring Festival (observed)", + "2026-03-25": "Eid al-Fitr (observed, estimated); Spring Festival (observed)", "2026-03-26": "Spring Festival (observed)", "2026-05-09": "Victory over Fascism Day", "2026-05-11": "Victory over Fascism Day (observed)", @@ -804,7 +804,7 @@ "2027-05-10": "Victory over Fascism Day (observed)", "2027-05-16": "Eid al-Adha (estimated)", "2027-05-17": "Eid al-Adha (estimated)", - "2027-05-18": "Eid al-Adha (estimated) (observed)", + "2027-05-18": "Eid al-Adha (observed, estimated)", "2027-05-28": "Independence Day", "2027-06-15": "National Liberation Day", "2027-06-26": "Armed Forces Day", @@ -823,8 +823,8 @@ "2028-01-20": "Martyrs' Day", "2028-02-26": "Eid al-Fitr (estimated)", "2028-02-27": "Eid al-Fitr (estimated)", - "2028-02-28": "Eid al-Fitr (estimated) (observed)", - "2028-02-29": "Eid al-Fitr (estimated) (observed)", + "2028-02-28": "Eid al-Fitr (observed, estimated)", + "2028-02-29": "Eid al-Fitr (observed, estimated)", "2028-03-08": "Women's Day", "2028-03-20": "Spring Festival", "2028-03-21": "Spring Festival", @@ -833,7 +833,7 @@ "2028-03-24": "Spring Festival", "2028-05-05": "Eid al-Adha (estimated)", "2028-05-06": "Eid al-Adha (estimated)", - "2028-05-08": "Eid al-Adha (estimated) (observed)", + "2028-05-08": "Eid al-Adha (observed, estimated)", "2028-05-09": "Victory over Fascism Day", "2028-05-28": "Independence Day", "2028-05-29": "Independence Day (observed)", @@ -887,8 +887,8 @@ "2030-03-26": "Spring Festival (observed)", "2030-04-13": "Eid al-Adha (estimated)", "2030-04-14": "Eid al-Adha (estimated)", - "2030-04-15": "Eid al-Adha (estimated) (observed)", - "2030-04-16": "Eid al-Adha (estimated) (observed)", + "2030-04-15": "Eid al-Adha (observed, estimated)", + "2030-04-16": "Eid al-Adha (observed, estimated)", "2030-05-09": "Victory over Fascism Day", "2030-05-28": "Independence Day", "2030-06-15": "National Liberation Day", @@ -907,7 +907,7 @@ "2031-01-20": "Martyrs' Day", "2031-01-24": "Eid al-Fitr (estimated)", "2031-01-25": "Eid al-Fitr (estimated)", - "2031-01-27": "Eid al-Fitr (estimated) (observed)", + "2031-01-27": "Eid al-Fitr (observed, estimated)", "2031-03-08": "Women's Day", "2031-03-10": "Women's Day (observed)", "2031-03-20": "Spring Festival", @@ -963,12 +963,12 @@ "2033-01-02": "Eid al-Fitr (estimated); New Year's Day", "2033-01-03": "Eid al-Fitr (estimated)", "2033-01-04": "New Year's Day (observed)", - "2033-01-05": "Eid al-Fitr (estimated) (observed); New Year's Day (observed)", + "2033-01-05": "Eid al-Fitr (observed, estimated); New Year's Day (observed)", "2033-01-20": "Martyrs' Day", "2033-03-08": "Women's Day", "2033-03-11": "Eid al-Adha (estimated)", "2033-03-12": "Eid al-Adha (estimated)", - "2033-03-14": "Eid al-Adha (estimated) (observed)", + "2033-03-14": "Eid al-Adha (observed, estimated)", "2033-03-20": "Spring Festival", "2033-03-21": "Spring Festival", "2033-03-22": "Spring Festival", @@ -989,7 +989,7 @@ "2033-11-17": "National Revival Day", "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-24": "Eid al-Fitr (estimated)", - "2033-12-26": "Eid al-Fitr (estimated) (observed)", + "2033-12-26": "Eid al-Fitr (observed, estimated)", "2033-12-31": "International Azerbaijanis Solidarity Day", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day", @@ -1024,7 +1024,7 @@ "2035-01-20": "Martyrs' Day", "2035-02-18": "Eid al-Adha (estimated)", "2035-02-19": "Eid al-Adha (estimated)", - "2035-02-20": "Eid al-Adha (estimated) (observed)", + "2035-02-20": "Eid al-Adha (observed, estimated)", "2035-03-08": "Women's Day", "2035-03-20": "Spring Festival", "2035-03-21": "Spring Festival", @@ -1044,8 +1044,8 @@ "2035-11-17": "National Revival Day", "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-02": "Eid al-Fitr (estimated)", - "2035-12-03": "Eid al-Fitr (estimated) (observed)", - "2035-12-04": "Eid al-Fitr (estimated) (observed)", + "2035-12-03": "Eid al-Fitr (observed, estimated)", + "2035-12-04": "Eid al-Fitr (observed, estimated)", "2035-12-31": "International Azerbaijanis Solidarity Day", "2036-01-01": "New Year's Day", "2036-01-02": "New Year's Day", @@ -1100,7 +1100,7 @@ "2037-10-18": "Independence Restoration Day", "2037-11-08": "Eid al-Fitr (estimated); Victory Day", "2037-11-09": "Eid al-Fitr (estimated); National Flag Day", - "2037-11-10": "Eid al-Fitr (estimated) (observed); Victory Day (observed)", + "2037-11-10": "Eid al-Fitr (observed, estimated); Victory Day (observed)", "2037-11-12": "Constitution Day", "2037-11-17": "National Revival Day", "2037-12-31": "International Azerbaijanis Solidarity Day", @@ -1109,8 +1109,8 @@ "2038-01-04": "New Year's Day (observed)", "2038-01-16": "Eid al-Adha (estimated)", "2038-01-17": "Eid al-Adha (estimated)", - "2038-01-18": "Eid al-Adha (estimated) (observed)", - "2038-01-19": "Eid al-Adha (estimated) (observed)", + "2038-01-18": "Eid al-Adha (observed, estimated)", + "2038-01-19": "Eid al-Adha (observed, estimated)", "2038-01-20": "Martyrs' Day", "2038-03-08": "Women's Day", "2038-03-20": "Spring Festival", @@ -1130,7 +1130,7 @@ "2038-10-18": "Independence Restoration Day", "2038-10-29": "Eid al-Fitr (estimated)", "2038-10-30": "Eid al-Fitr (estimated)", - "2038-11-01": "Eid al-Fitr (estimated) (observed)", + "2038-11-01": "Eid al-Fitr (observed, estimated)", "2038-11-08": "Victory Day", "2038-11-09": "National Flag Day", "2038-11-12": "Constitution Day", @@ -1186,7 +1186,7 @@ "2040-09-27": "Memorial Day", "2040-10-07": "Eid al-Fitr (estimated)", "2040-10-08": "Eid al-Fitr (estimated)", - "2040-10-09": "Eid al-Fitr (estimated) (observed)", + "2040-10-09": "Eid al-Fitr (observed, estimated)", "2040-10-18": "Independence Restoration Day", "2040-11-08": "Victory Day", "2040-11-09": "National Flag Day", @@ -1194,7 +1194,7 @@ "2040-11-17": "National Revival Day", "2040-12-14": "Eid al-Adha (estimated)", "2040-12-15": "Eid al-Adha (estimated)", - "2040-12-17": "Eid al-Adha (estimated) (observed)", + "2040-12-17": "Eid al-Adha (observed, estimated)", "2040-12-31": "International Azerbaijanis Solidarity Day", "2041-01-01": "New Year's Day", "2041-01-02": "New Year's Day", @@ -1252,7 +1252,7 @@ "2042-11-17": "National Revival Day", "2042-11-23": "Eid al-Adha (estimated)", "2042-11-24": "Eid al-Adha (estimated)", - "2042-11-25": "Eid al-Adha (estimated) (observed)", + "2042-11-25": "Eid al-Adha (observed, estimated)", "2042-12-31": "International Azerbaijanis Solidarity Day", "2043-01-01": "New Year's Day", "2043-01-02": "New Year's Day", @@ -1273,7 +1273,7 @@ "2043-06-26": "Armed Forces Day", "2043-09-04": "Eid al-Fitr (estimated)", "2043-09-05": "Eid al-Fitr (estimated)", - "2043-09-07": "Eid al-Fitr (estimated) (observed)", + "2043-09-07": "Eid al-Fitr (observed, estimated)", "2043-09-27": "Memorial Day", "2043-10-18": "Independence Restoration Day", "2043-11-08": "Victory Day", @@ -1333,8 +1333,8 @@ "2045-10-18": "Independence Restoration Day", "2045-10-21": "Eid al-Adha (estimated)", "2045-10-22": "Eid al-Adha (estimated)", - "2045-10-23": "Eid al-Adha (estimated) (observed)", - "2045-10-24": "Eid al-Adha (estimated) (observed)", + "2045-10-23": "Eid al-Adha (observed, estimated)", + "2045-10-24": "Eid al-Adha (observed, estimated)", "2045-11-08": "Victory Day", "2045-11-09": "National Flag Day", "2045-11-12": "Constitution Day", @@ -1357,7 +1357,7 @@ "2046-06-26": "Armed Forces Day", "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-04": "Eid al-Fitr (estimated)", - "2046-08-06": "Eid al-Fitr (estimated) (observed)", + "2046-08-06": "Eid al-Fitr (observed, estimated)", "2046-09-27": "Memorial Day", "2046-10-10": "Eid al-Adha (estimated)", "2046-10-11": "Eid al-Adha (estimated)", @@ -1414,11 +1414,11 @@ "2048-06-26": "Armed Forces Day", "2048-07-12": "Eid al-Fitr (estimated)", "2048-07-13": "Eid al-Fitr (estimated)", - "2048-07-14": "Eid al-Fitr (estimated) (observed)", + "2048-07-14": "Eid al-Fitr (observed, estimated)", "2048-09-19": "Eid al-Adha (estimated)", "2048-09-20": "Eid al-Adha (estimated)", - "2048-09-21": "Eid al-Adha (estimated) (observed)", - "2048-09-22": "Eid al-Adha (estimated) (observed)", + "2048-09-21": "Eid al-Adha (observed, estimated)", + "2048-09-22": "Eid al-Adha (observed, estimated)", "2048-09-27": "Memorial Day", "2048-10-18": "Independence Restoration Day", "2048-11-08": "Victory Day", @@ -1478,7 +1478,7 @@ "2050-06-27": "Armed Forces Day (observed)", "2050-08-28": "Eid al-Adha (estimated)", "2050-08-29": "Eid al-Adha (estimated)", - "2050-08-30": "Eid al-Adha (estimated) (observed)", + "2050-08-30": "Eid al-Adha (observed, estimated)", "2050-09-27": "Memorial Day", "2050-10-18": "Independence Restoration Day", "2050-11-08": "Victory Day", diff --git a/snapshots/countries/BN_COMMON.json b/snapshots/countries/BN_COMMON.json index 93613458a..5c0449524 100644 --- a/snapshots/countries/BN_COMMON.json +++ b/snapshots/countries/BN_COMMON.json @@ -9,7 +9,7 @@ "1984-06-30": "Eid al-Fitr (estimated)", "1984-07-01": "Eid al-Fitr (estimated)", "1984-07-02": "Eid al-Fitr (estimated)", - "1984-07-03": "Eid al-Fitr (estimated) (observed)", + "1984-07-03": "Eid al-Fitr (observed, estimated)", "1984-07-15": "Sultan Hassanal Bolkiah's Birthday", "1984-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "1984-09-05": "Eid al-Adha (estimated)", @@ -27,13 +27,13 @@ "1985-06-19": "Eid al-Fitr (estimated)", "1985-06-20": "Eid al-Fitr (estimated)", "1985-06-21": "Eid al-Fitr (estimated)", - "1985-06-22": "Eid al-Fitr (estimated) (observed)", + "1985-06-22": "Eid al-Fitr (observed, estimated)", "1985-07-15": "Sultan Hassanal Bolkiah's Birthday", "1985-08-26": "Eid al-Adha (estimated)", "1985-09-15": "Islamic New Year (estimated)", - "1985-09-16": "Islamic New Year (estimated) (observed)", + "1985-09-16": "Islamic New Year (observed, estimated)", "1985-11-24": "Birth of the Prophet (estimated)", - "1985-11-25": "Birth of the Prophet (estimated) (observed)", + "1985-11-25": "Birth of the Prophet (observed, estimated)", "1985-12-25": "Christmas Day", "1986-01-01": "New Year's Day", "1986-02-09": "Lunar New Year", @@ -41,37 +41,37 @@ "1986-02-23": "National Day", "1986-02-24": "National Day (observed)", "1986-04-06": "Isra Mi'raj (estimated)", - "1986-04-07": "Isra Mi'raj (estimated) (observed)", + "1986-04-07": "Isra Mi'raj (observed, estimated)", "1986-05-09": "First Day of Ramadan (estimated)", - "1986-05-10": "First Day of Ramadan (estimated) (observed)", + "1986-05-10": "First Day of Ramadan (observed, estimated)", "1986-05-25": "Anniversary of the revelation of the Quran (estimated)", - "1986-05-26": "Anniversary of the revelation of the Quran (estimated) (observed)", + "1986-05-26": "Anniversary of the revelation of the Quran (observed, estimated)", "1986-05-31": "Armed Forces Day", "1986-06-08": "Eid al-Fitr (estimated)", "1986-06-09": "Eid al-Fitr (estimated)", "1986-06-10": "Eid al-Fitr (estimated)", - "1986-06-11": "Eid al-Fitr (estimated) (observed)", + "1986-06-11": "Eid al-Fitr (observed, estimated)", "1986-07-15": "Sultan Hassanal Bolkiah's Birthday", "1986-08-15": "Eid al-Adha (estimated)", - "1986-08-16": "Eid al-Adha (estimated) (observed)", + "1986-08-16": "Eid al-Adha (observed, estimated)", "1986-09-05": "Islamic New Year (estimated)", - "1986-09-06": "Islamic New Year (estimated) (observed)", + "1986-09-06": "Islamic New Year (observed, estimated)", "1986-11-14": "Birth of the Prophet (estimated)", - "1986-11-15": "Birth of the Prophet (estimated) (observed)", + "1986-11-15": "Birth of the Prophet (observed, estimated)", "1986-12-25": "Christmas Day", "1987-01-01": "New Year's Day", "1987-01-29": "Lunar New Year", "1987-02-23": "National Day", "1987-03-27": "Isra Mi'raj (estimated)", - "1987-03-28": "Isra Mi'raj (estimated) (observed)", + "1987-03-28": "Isra Mi'raj (observed, estimated)", "1987-04-29": "First Day of Ramadan (estimated)", "1987-05-15": "Anniversary of the revelation of the Quran (estimated)", - "1987-05-16": "Anniversary of the revelation of the Quran (estimated) (observed)", + "1987-05-16": "Anniversary of the revelation of the Quran (observed, estimated)", "1987-05-28": "Eid al-Fitr (estimated)", "1987-05-29": "Eid al-Fitr (estimated)", "1987-05-30": "Eid al-Fitr (estimated)", "1987-05-31": "Armed Forces Day", - "1987-06-01": "Armed Forces Day (observed); Eid al-Fitr (estimated) (observed)", + "1987-06-01": "Armed Forces Day (observed); Eid al-Fitr (observed, estimated)", "1987-07-15": "Sultan Hassanal Bolkiah's Birthday", "1987-08-04": "Eid al-Adha (estimated)", "1987-08-25": "Islamic New Year (estimated)", @@ -84,7 +84,7 @@ "1988-02-23": "National Day", "1988-03-15": "Isra Mi'raj (estimated)", "1988-04-17": "First Day of Ramadan (estimated)", - "1988-04-18": "First Day of Ramadan (estimated) (observed)", + "1988-04-18": "First Day of Ramadan (observed, estimated)", "1988-05-03": "Anniversary of the revelation of the Quran (estimated)", "1988-05-16": "Eid al-Fitr (estimated)", "1988-05-17": "Eid al-Fitr (estimated)", @@ -102,15 +102,15 @@ "1989-02-06": "Lunar New Year", "1989-02-23": "National Day", "1989-03-05": "Isra Mi'raj (estimated)", - "1989-03-06": "Isra Mi'raj (estimated) (observed)", + "1989-03-06": "Isra Mi'raj (observed, estimated)", "1989-04-07": "First Day of Ramadan (estimated)", - "1989-04-08": "First Day of Ramadan (estimated) (observed)", + "1989-04-08": "First Day of Ramadan (observed, estimated)", "1989-04-23": "Anniversary of the revelation of the Quran (estimated)", - "1989-04-24": "Anniversary of the revelation of the Quran (estimated) (observed)", + "1989-04-24": "Anniversary of the revelation of the Quran (observed, estimated)", "1989-05-06": "Eid al-Fitr (estimated)", "1989-05-07": "Eid al-Fitr (estimated)", "1989-05-08": "Eid al-Fitr (estimated)", - "1989-05-09": "Eid al-Fitr (estimated) (observed)", + "1989-05-09": "Eid al-Fitr (observed, estimated)", "1989-05-31": "Armed Forces Day", "1989-07-13": "Eid al-Adha (estimated)", "1989-07-15": "Sultan Hassanal Bolkiah's Birthday", @@ -127,7 +127,7 @@ "1990-04-26": "Eid al-Fitr (estimated)", "1990-04-27": "Eid al-Fitr (estimated)", "1990-04-28": "Eid al-Fitr (estimated)", - "1990-04-30": "Eid al-Fitr (estimated) (observed)", + "1990-04-30": "Eid al-Fitr (observed, estimated)", "1990-05-31": "Armed Forces Day", "1990-07-02": "Eid al-Adha (estimated)", "1990-07-15": "Sultan Hassanal Bolkiah's Birthday", @@ -141,7 +141,7 @@ "1991-02-16": "Lunar New Year (observed)", "1991-02-23": "National Day", "1991-03-17": "First Day of Ramadan (estimated)", - "1991-03-18": "First Day of Ramadan (estimated) (observed)", + "1991-03-18": "First Day of Ramadan (observed, estimated)", "1991-04-02": "Anniversary of the revelation of the Quran (estimated)", "1991-04-15": "Eid al-Fitr (estimated)", "1991-04-16": "Eid al-Fitr (estimated)", @@ -150,14 +150,14 @@ "1991-06-01": "Armed Forces Day (observed)", "1991-06-22": "Eid al-Adha (estimated)", "1991-07-12": "Islamic New Year (estimated)", - "1991-07-13": "Islamic New Year (estimated) (observed)", + "1991-07-13": "Islamic New Year (observed, estimated)", "1991-07-15": "Sultan Hassanal Bolkiah's Birthday", "1991-09-20": "Birth of the Prophet (estimated)", - "1991-09-21": "Birth of the Prophet (estimated) (observed)", + "1991-09-21": "Birth of the Prophet (observed, estimated)", "1991-12-25": "Christmas Day", "1992-01-01": "New Year's Day", "1992-01-31": "Isra Mi'raj (estimated)", - "1992-02-01": "Isra Mi'raj (estimated) (observed)", + "1992-02-01": "Isra Mi'raj (observed, estimated)", "1992-02-04": "Lunar New Year", "1992-02-23": "National Day", "1992-02-24": "National Day (observed)", @@ -166,7 +166,7 @@ "1992-04-04": "Eid al-Fitr (estimated)", "1992-04-05": "Eid al-Fitr (estimated)", "1992-04-06": "Eid al-Fitr (estimated)", - "1992-04-07": "Eid al-Fitr (estimated) (observed)", + "1992-04-07": "Eid al-Fitr (observed, estimated)", "1992-05-31": "Armed Forces Day", "1992-06-01": "Armed Forces Day (observed)", "1992-06-11": "Eid al-Adha (estimated)", @@ -185,35 +185,35 @@ "1993-03-24": "Eid al-Fitr (estimated)", "1993-03-25": "Eid al-Fitr (estimated)", "1993-03-26": "Eid al-Fitr (estimated)", - "1993-03-27": "Eid al-Fitr (estimated) (observed)", + "1993-03-27": "Eid al-Fitr (observed, estimated)", "1993-05-31": "Armed Forces Day; Eid al-Adha (estimated)", "1993-06-21": "Islamic New Year (estimated)", "1993-07-15": "Sultan Hassanal Bolkiah's Birthday", "1993-08-29": "Birth of the Prophet (estimated)", - "1993-08-30": "Birth of the Prophet (estimated) (observed)", + "1993-08-30": "Birth of the Prophet (observed, estimated)", "1993-12-25": "Christmas Day", "1994-01-01": "New Year's Day", "1994-01-09": "Isra Mi'raj (estimated)", - "1994-01-10": "Isra Mi'raj (estimated) (observed)", + "1994-01-10": "Isra Mi'raj (observed, estimated)", "1994-02-10": "Lunar New Year", "1994-02-11": "First Day of Ramadan (estimated)", - "1994-02-12": "First Day of Ramadan (estimated) (observed)", + "1994-02-12": "First Day of Ramadan (observed, estimated)", "1994-02-23": "National Day", "1994-02-27": "Anniversary of the revelation of the Quran (estimated)", - "1994-02-28": "Anniversary of the revelation of the Quran (estimated) (observed)", + "1994-02-28": "Anniversary of the revelation of the Quran (observed, estimated)", "1994-03-13": "Eid al-Fitr (estimated)", "1994-03-14": "Eid al-Fitr (estimated)", "1994-03-15": "Eid al-Fitr (estimated)", - "1994-03-16": "Eid al-Fitr (estimated) (observed)", + "1994-03-16": "Eid al-Fitr (observed, estimated)", "1994-05-20": "Eid al-Adha (estimated)", - "1994-05-21": "Eid al-Adha (estimated) (observed)", + "1994-05-21": "Eid al-Adha (observed, estimated)", "1994-05-31": "Armed Forces Day", "1994-06-10": "Islamic New Year (estimated)", - "1994-06-11": "Islamic New Year (estimated) (observed)", + "1994-06-11": "Islamic New Year (observed, estimated)", "1994-07-15": "Sultan Hassanal Bolkiah's Birthday", "1994-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "1994-08-19": "Birth of the Prophet (estimated)", - "1994-08-20": "Birth of the Prophet (estimated) (observed)", + "1994-08-20": "Birth of the Prophet (observed, estimated)", "1994-12-25": "Christmas Day", "1994-12-26": "Christmas Day (observed)", "1994-12-29": "Isra Mi'raj (estimated)", @@ -225,7 +225,7 @@ "1995-03-02": "Eid al-Fitr (estimated)", "1995-03-03": "Eid al-Fitr (estimated)", "1995-03-04": "Eid al-Fitr (estimated)", - "1995-03-06": "Eid al-Fitr (estimated) (observed)", + "1995-03-06": "Eid al-Fitr (observed, estimated)", "1995-05-09": "Eid al-Adha (estimated)", "1995-05-30": "Islamic New Year (estimated)", "1995-05-31": "Armed Forces Day", @@ -235,7 +235,7 @@ "1995-12-25": "Christmas Day", "1996-01-01": "New Year's Day", "1996-01-21": "First Day of Ramadan (estimated)", - "1996-01-22": "First Day of Ramadan (estimated) (observed)", + "1996-01-22": "First Day of Ramadan (observed, estimated)", "1996-02-06": "Anniversary of the revelation of the Quran (estimated)", "1996-02-19": "Eid al-Fitr (estimated); Lunar New Year", "1996-02-20": "Eid al-Fitr (estimated)", @@ -249,18 +249,18 @@ "1996-07-15": "Sultan Hassanal Bolkiah's Birthday", "1996-07-27": "Birth of the Prophet (estimated)", "1996-12-08": "Isra Mi'raj (estimated)", - "1996-12-09": "Isra Mi'raj (estimated) (observed)", + "1996-12-09": "Isra Mi'raj (observed, estimated)", "1996-12-25": "Christmas Day", "1997-01-01": "New Year's Day", "1997-01-10": "First Day of Ramadan (estimated)", - "1997-01-11": "First Day of Ramadan (estimated) (observed)", + "1997-01-11": "First Day of Ramadan (observed, estimated)", "1997-01-26": "Anniversary of the revelation of the Quran (estimated)", - "1997-01-27": "Anniversary of the revelation of the Quran (estimated) (observed)", + "1997-01-27": "Anniversary of the revelation of the Quran (observed, estimated)", "1997-02-07": "Lunar New Year", "1997-02-08": "Eid al-Fitr (estimated); Lunar New Year (observed)", "1997-02-09": "Eid al-Fitr (estimated)", "1997-02-10": "Eid al-Fitr (estimated)", - "1997-02-11": "Eid al-Fitr (estimated) (observed)", + "1997-02-11": "Eid al-Fitr (observed, estimated)", "1997-02-23": "National Day", "1997-02-24": "National Day (observed)", "1997-04-17": "Eid al-Adha (estimated)", @@ -277,7 +277,7 @@ "1998-01-29": "Eid al-Fitr (estimated)", "1998-01-30": "Eid al-Fitr (estimated)", "1998-01-31": "Eid al-Fitr (estimated)", - "1998-02-02": "Eid al-Fitr (estimated) (observed)", + "1998-02-02": "Eid al-Fitr (observed, estimated)", "1998-02-23": "National Day", "1998-04-07": "Eid al-Adha (estimated)", "1998-04-27": "Islamic New Year (estimated)", @@ -303,7 +303,7 @@ "1999-06-26": "Birth of the Prophet (estimated)", "1999-07-15": "Sultan Hassanal Bolkiah's Birthday", "1999-11-05": "Isra Mi'raj (estimated)", - "1999-11-06": "Isra Mi'raj (estimated) (observed)", + "1999-11-06": "Isra Mi'raj (observed, estimated)", "1999-12-09": "First Day of Ramadan (estimated)", "1999-12-25": "Anniversary of the revelation of the Quran (estimated); Christmas Day", "2000-01-01": "New Year's Day", @@ -771,16 +771,16 @@ "2024-04-10": "Eid al-Fitr (estimated)", "2024-04-11": "Eid al-Fitr (estimated)", "2024-04-12": "Eid al-Fitr (estimated)", - "2024-04-13": "Eid al-Fitr (estimated) (observed)", + "2024-04-13": "Eid al-Fitr (observed, estimated)", "2024-05-31": "Armed Forces Day", "2024-06-01": "Armed Forces Day (observed)", "2024-06-16": "Eid al-Adha (estimated)", - "2024-06-17": "Eid al-Adha (estimated) (observed)", + "2024-06-17": "Eid al-Adha (observed, estimated)", "2024-07-07": "Islamic New Year (estimated)", - "2024-07-08": "Islamic New Year (estimated) (observed)", + "2024-07-08": "Islamic New Year (observed, estimated)", "2024-07-15": "Sultan Hassanal Bolkiah's Birthday", "2024-09-15": "Birth of the Prophet (estimated)", - "2024-09-16": "Birth of the Prophet (estimated) (observed)", + "2024-09-16": "Birth of the Prophet (observed, estimated)", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-27": "Isra Mi'raj (estimated)", @@ -792,26 +792,26 @@ "2025-03-30": "Eid al-Fitr (estimated)", "2025-03-31": "Eid al-Fitr (estimated)", "2025-04-01": "Eid al-Fitr (estimated)", - "2025-04-02": "Eid al-Fitr (estimated) (observed)", + "2025-04-02": "Eid al-Fitr (observed, estimated)", "2025-05-31": "Armed Forces Day", "2025-06-06": "Eid al-Adha (estimated)", - "2025-06-07": "Eid al-Adha (estimated) (observed)", + "2025-06-07": "Eid al-Adha (observed, estimated)", "2025-06-26": "Islamic New Year (estimated)", "2025-07-15": "Sultan Hassanal Bolkiah's Birthday", "2025-09-04": "Birth of the Prophet (estimated)", "2025-12-25": "Christmas Day", "2026-01-01": "New Year's Day", "2026-01-16": "Isra Mi'raj (estimated)", - "2026-01-17": "Isra Mi'raj (estimated) (observed)", + "2026-01-17": "Isra Mi'raj (observed, estimated)", "2026-02-17": "Lunar New Year", "2026-02-18": "First Day of Ramadan (estimated)", "2026-02-23": "National Day", "2026-03-06": "Anniversary of the revelation of the Quran (estimated)", - "2026-03-07": "Anniversary of the revelation of the Quran (estimated) (observed)", + "2026-03-07": "Anniversary of the revelation of the Quran (observed, estimated)", "2026-03-20": "Eid al-Fitr (estimated)", "2026-03-21": "Eid al-Fitr (estimated)", "2026-03-22": "Eid al-Fitr (estimated)", - "2026-03-23": "Eid al-Fitr (estimated) (observed)", + "2026-03-23": "Eid al-Fitr (observed, estimated)", "2026-05-27": "Eid al-Adha (estimated)", "2026-05-31": "Armed Forces Day", "2026-06-01": "Armed Forces Day (observed)", @@ -831,26 +831,26 @@ "2027-03-10": "Eid al-Fitr (estimated)", "2027-03-11": "Eid al-Fitr (estimated)", "2027-05-16": "Eid al-Adha (estimated)", - "2027-05-17": "Eid al-Adha (estimated) (observed)", + "2027-05-17": "Eid al-Adha (observed, estimated)", "2027-05-31": "Armed Forces Day", "2027-06-06": "Islamic New Year (estimated)", - "2027-06-07": "Islamic New Year (estimated) (observed)", + "2027-06-07": "Islamic New Year (observed, estimated)", "2027-07-15": "Sultan Hassanal Bolkiah's Birthday", "2027-08-14": "Birth of the Prophet (estimated)", "2027-12-25": "Christmas Day; Isra Mi'raj (estimated)", "2028-01-01": "New Year's Day", "2028-01-26": "Lunar New Year", "2028-01-28": "First Day of Ramadan (estimated)", - "2028-01-29": "First Day of Ramadan (estimated) (observed)", + "2028-01-29": "First Day of Ramadan (observed, estimated)", "2028-02-13": "Anniversary of the revelation of the Quran (estimated)", - "2028-02-14": "Anniversary of the revelation of the Quran (estimated) (observed)", + "2028-02-14": "Anniversary of the revelation of the Quran (observed, estimated)", "2028-02-23": "National Day", "2028-02-26": "Eid al-Fitr (estimated)", "2028-02-27": "Eid al-Fitr (estimated)", "2028-02-28": "Eid al-Fitr (estimated)", - "2028-02-29": "Eid al-Fitr (estimated) (observed)", + "2028-02-29": "Eid al-Fitr (observed, estimated)", "2028-05-05": "Eid al-Adha (estimated)", - "2028-05-06": "Eid al-Adha (estimated) (observed)", + "2028-05-06": "Eid al-Adha (observed, estimated)", "2028-05-25": "Islamic New Year (estimated)", "2028-05-31": "Armed Forces Day", "2028-07-15": "Sultan Hassanal Bolkiah's Birthday", @@ -864,7 +864,7 @@ "2029-02-14": "Eid al-Fitr (estimated)", "2029-02-15": "Eid al-Fitr (estimated)", "2029-02-16": "Eid al-Fitr (estimated)", - "2029-02-17": "Eid al-Fitr (estimated) (observed)", + "2029-02-17": "Eid al-Fitr (observed, estimated)", "2029-02-23": "National Day", "2029-02-24": "National Day (observed)", "2029-04-24": "Eid al-Adha (estimated)", @@ -885,7 +885,7 @@ "2030-02-23": "National Day", "2030-04-13": "Eid al-Adha (estimated)", "2030-05-03": "Islamic New Year (estimated)", - "2030-05-04": "Islamic New Year (estimated) (observed)", + "2030-05-04": "Islamic New Year (observed, estimated)", "2030-05-31": "Armed Forces Day", "2030-06-01": "Armed Forces Day (observed)", "2030-07-13": "Birth of the Prophet (estimated)", @@ -899,7 +899,7 @@ "2031-01-24": "Eid al-Fitr (estimated)", "2031-01-25": "Eid al-Fitr (estimated)", "2031-01-26": "Eid al-Fitr (estimated)", - "2031-01-27": "Eid al-Fitr (estimated) (observed)", + "2031-01-27": "Eid al-Fitr (observed, estimated)", "2031-02-23": "National Day", "2031-02-24": "National Day (observed)", "2031-04-02": "Eid al-Adha (estimated)", @@ -915,15 +915,15 @@ "2032-01-14": "Eid al-Fitr (estimated)", "2032-01-15": "Eid al-Fitr (estimated)", "2032-01-16": "Eid al-Fitr (estimated)", - "2032-01-17": "Eid al-Fitr (estimated) (observed)", + "2032-01-17": "Eid al-Fitr (observed, estimated)", "2032-02-11": "Lunar New Year", "2032-02-23": "National Day", "2032-03-22": "Eid al-Adha (estimated)", "2032-04-11": "Islamic New Year (estimated)", - "2032-04-12": "Islamic New Year (estimated) (observed)", + "2032-04-12": "Islamic New Year (observed, estimated)", "2032-05-31": "Armed Forces Day", "2032-06-20": "Birth of the Prophet (estimated)", - "2032-06-21": "Birth of the Prophet (estimated) (observed)", + "2032-06-21": "Birth of the Prophet (observed, estimated)", "2032-07-15": "Sultan Hassanal Bolkiah's Birthday", "2032-11-01": "Isra Mi'raj (estimated)", "2032-12-04": "First Day of Ramadan (estimated)", @@ -933,26 +933,26 @@ "2033-01-02": "Eid al-Fitr (estimated)", "2033-01-03": "Eid al-Fitr (estimated)", "2033-01-04": "Eid al-Fitr (estimated)", - "2033-01-05": "Eid al-Fitr (estimated) (observed)", + "2033-01-05": "Eid al-Fitr (observed, estimated)", "2033-01-31": "Lunar New Year", "2033-02-23": "National Day", "2033-03-11": "Eid al-Adha (estimated)", - "2033-03-12": "Eid al-Adha (estimated) (observed)", + "2033-03-12": "Eid al-Adha (observed, estimated)", "2033-04-01": "Islamic New Year (estimated)", - "2033-04-02": "Islamic New Year (estimated) (observed)", + "2033-04-02": "Islamic New Year (observed, estimated)", "2033-05-31": "Armed Forces Day", "2033-06-09": "Birth of the Prophet (estimated)", "2033-07-15": "Sultan Hassanal Bolkiah's Birthday", "2033-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2033-10-21": "Isra Mi'raj (estimated)", - "2033-10-22": "Isra Mi'raj (estimated) (observed)", + "2033-10-22": "Isra Mi'raj (observed, estimated)", "2033-11-23": "First Day of Ramadan (estimated)", "2033-12-09": "Anniversary of the revelation of the Quran (estimated)", - "2033-12-10": "Anniversary of the revelation of the Quran (estimated) (observed)", + "2033-12-10": "Anniversary of the revelation of the Quran (observed, estimated)", "2033-12-23": "Eid al-Fitr (estimated)", "2033-12-24": "Eid al-Fitr (estimated)", "2033-12-25": "Christmas Day; Eid al-Fitr (estimated)", - "2033-12-26": "Christmas Day (observed); Eid al-Fitr (estimated) (observed)", + "2033-12-26": "Christmas Day (observed); Eid al-Fitr (observed, estimated)", "2034-01-01": "New Year's Day", "2034-01-02": "New Year's Day (observed)", "2034-02-19": "Lunar New Year", @@ -965,7 +965,7 @@ "2034-07-15": "Sultan Hassanal Bolkiah's Birthday", "2034-10-10": "Isra Mi'raj (estimated)", "2034-11-12": "First Day of Ramadan (estimated)", - "2034-11-13": "First Day of Ramadan (estimated) (observed)", + "2034-11-13": "First Day of Ramadan (observed, estimated)", "2034-11-28": "Anniversary of the revelation of the Quran (estimated)", "2034-12-12": "Eid al-Fitr (estimated)", "2034-12-13": "Eid al-Fitr (estimated)", @@ -974,13 +974,13 @@ "2035-01-01": "New Year's Day", "2035-02-08": "Lunar New Year", "2035-02-18": "Eid al-Adha (estimated)", - "2035-02-19": "Eid al-Adha (estimated) (observed)", + "2035-02-19": "Eid al-Adha (observed, estimated)", "2035-02-23": "National Day", "2035-02-24": "National Day (observed)", "2035-03-11": "Islamic New Year (estimated)", - "2035-03-12": "Islamic New Year (estimated) (observed)", + "2035-03-12": "Islamic New Year (observed, estimated)", "2035-05-20": "Birth of the Prophet (estimated)", - "2035-05-21": "Birth of the Prophet (estimated) (observed)", + "2035-05-21": "Birth of the Prophet (observed, estimated)", "2035-05-31": "Armed Forces Day", "2035-07-15": "Sultan Hassanal Bolkiah's Birthday", "2035-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", @@ -990,7 +990,7 @@ "2035-12-01": "Eid al-Fitr (estimated)", "2035-12-02": "Eid al-Fitr (estimated)", "2035-12-03": "Eid al-Fitr (estimated)", - "2035-12-04": "Eid al-Fitr (estimated) (observed)", + "2035-12-04": "Eid al-Fitr (observed, estimated)", "2035-12-25": "Christmas Day", "2036-01-01": "New Year's Day", "2036-01-28": "Lunar New Year", @@ -1006,7 +1006,7 @@ "2036-11-19": "Eid al-Fitr (estimated)", "2036-11-20": "Eid al-Fitr (estimated)", "2036-11-21": "Eid al-Fitr (estimated)", - "2036-11-22": "Eid al-Fitr (estimated) (observed)", + "2036-11-22": "Eid al-Fitr (observed, estimated)", "2036-12-25": "Christmas Day", "2037-01-01": "New Year's Day", "2037-01-26": "Eid al-Adha (estimated)", @@ -1023,7 +1023,7 @@ "2037-11-08": "Eid al-Fitr (estimated)", "2037-11-09": "Eid al-Fitr (estimated)", "2037-11-10": "Eid al-Fitr (estimated)", - "2037-11-11": "Eid al-Fitr (estimated) (observed)", + "2037-11-11": "Eid al-Fitr (observed, estimated)", "2037-12-25": "Christmas Day", "2037-12-26": "Christmas Day (observed)", "2038-01-01": "New Year's Day", @@ -1031,7 +1031,7 @@ "2038-01-16": "Eid al-Adha (estimated)", "2038-02-04": "Lunar New Year", "2038-02-05": "Islamic New Year (estimated)", - "2038-02-06": "Islamic New Year (estimated) (observed)", + "2038-02-06": "Islamic New Year (observed, estimated)", "2038-02-23": "National Day", "2038-04-17": "Birth of the Prophet (estimated)", "2038-05-31": "Armed Forces Day", @@ -1042,7 +1042,7 @@ "2038-10-29": "Eid al-Fitr (estimated)", "2038-10-30": "Eid al-Fitr (estimated)", "2038-10-31": "Eid al-Fitr (estimated)", - "2038-11-01": "Eid al-Fitr (estimated) (observed)", + "2038-11-01": "Eid al-Fitr (observed, estimated)", "2038-12-25": "Christmas Day", "2039-01-01": "New Year's Day", "2039-01-05": "Eid al-Adha (estimated)", @@ -1059,53 +1059,53 @@ "2039-10-19": "Eid al-Fitr (estimated)", "2039-10-20": "Eid al-Fitr (estimated)", "2039-10-21": "Eid al-Fitr (estimated)", - "2039-10-22": "Eid al-Fitr (estimated) (observed)", + "2039-10-22": "Eid al-Fitr (observed, estimated)", "2039-12-25": "Christmas Day", "2039-12-26": "Christmas Day (observed); Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", "2040-01-02": "New Year's Day (observed)", "2040-01-15": "Islamic New Year (estimated)", - "2040-01-16": "Islamic New Year (estimated) (observed)", + "2040-01-16": "Islamic New Year (observed, estimated)", "2040-02-12": "Lunar New Year", "2040-02-13": "Lunar New Year (observed)", "2040-02-23": "National Day", "2040-03-25": "Birth of the Prophet (estimated)", - "2040-03-26": "Birth of the Prophet (estimated) (observed)", + "2040-03-26": "Birth of the Prophet (observed, estimated)", "2040-05-31": "Armed Forces Day", "2040-07-15": "Sultan Hassanal Bolkiah's Birthday", "2040-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2040-08-05": "Isra Mi'raj (estimated)", - "2040-08-06": "Isra Mi'raj (estimated) (observed)", + "2040-08-06": "Isra Mi'raj (observed, estimated)", "2040-09-07": "First Day of Ramadan (estimated)", - "2040-09-08": "First Day of Ramadan (estimated) (observed)", + "2040-09-08": "First Day of Ramadan (observed, estimated)", "2040-09-23": "Anniversary of the revelation of the Quran (estimated)", - "2040-09-24": "Anniversary of the revelation of the Quran (estimated) (observed)", + "2040-09-24": "Anniversary of the revelation of the Quran (observed, estimated)", "2040-10-07": "Eid al-Fitr (estimated)", "2040-10-08": "Eid al-Fitr (estimated)", "2040-10-09": "Eid al-Fitr (estimated)", - "2040-10-10": "Eid al-Fitr (estimated) (observed)", + "2040-10-10": "Eid al-Fitr (observed, estimated)", "2040-12-14": "Eid al-Adha (estimated)", - "2040-12-15": "Eid al-Adha (estimated) (observed)", + "2040-12-15": "Eid al-Adha (observed, estimated)", "2040-12-25": "Christmas Day", "2041-01-01": "New Year's Day", "2041-01-04": "Islamic New Year (estimated)", - "2041-01-05": "Islamic New Year (estimated) (observed)", + "2041-01-05": "Islamic New Year (observed, estimated)", "2041-02-01": "Lunar New Year", "2041-02-02": "Lunar New Year (observed)", "2041-02-23": "National Day", "2041-03-15": "Birth of the Prophet (estimated)", - "2041-03-16": "Birth of the Prophet (estimated) (observed)", + "2041-03-16": "Birth of the Prophet (observed, estimated)", "2041-05-31": "Armed Forces Day", "2041-06-01": "Armed Forces Day (observed)", "2041-07-15": "Sultan Hassanal Bolkiah's Birthday", "2041-07-25": "Isra Mi'raj (estimated)", "2041-08-28": "First Day of Ramadan (estimated)", "2041-09-13": "Anniversary of the revelation of the Quran (estimated)", - "2041-09-14": "Anniversary of the revelation of the Quran (estimated) (observed)", + "2041-09-14": "Anniversary of the revelation of the Quran (observed, estimated)", "2041-09-26": "Eid al-Fitr (estimated)", "2041-09-27": "Eid al-Fitr (estimated)", "2041-09-28": "Eid al-Fitr (estimated)", - "2041-09-30": "Eid al-Fitr (estimated) (observed)", + "2041-09-30": "Eid al-Fitr (observed, estimated)", "2041-12-04": "Eid al-Adha (estimated)", "2041-12-24": "Islamic New Year (estimated)", "2041-12-25": "Christmas Day", @@ -1117,20 +1117,20 @@ "2042-05-31": "Armed Forces Day", "2042-07-15": "Isra Mi'raj (estimated); Sultan Hassanal Bolkiah's Birthday", "2042-08-17": "First Day of Ramadan (estimated)", - "2042-08-18": "First Day of Ramadan (estimated) (observed)", + "2042-08-18": "First Day of Ramadan (observed, estimated)", "2042-09-02": "Anniversary of the revelation of the Quran (estimated)", "2042-09-15": "Eid al-Fitr (estimated)", "2042-09-16": "Eid al-Fitr (estimated)", "2042-09-17": "Eid al-Fitr (estimated)", "2042-11-23": "Eid al-Adha (estimated)", - "2042-11-24": "Eid al-Adha (estimated) (observed)", + "2042-11-24": "Eid al-Adha (observed, estimated)", "2042-12-14": "Islamic New Year (estimated)", - "2042-12-15": "Islamic New Year (estimated) (observed)", + "2042-12-15": "Islamic New Year (observed, estimated)", "2042-12-25": "Christmas Day", "2043-01-01": "New Year's Day", "2043-02-10": "Lunar New Year", "2043-02-22": "Birth of the Prophet (estimated)", - "2043-02-23": "Birth of the Prophet (estimated) (observed); National Day", + "2043-02-23": "Birth of the Prophet (observed, estimated); National Day", "2043-05-31": "Armed Forces Day", "2043-06-01": "Armed Forces Day (observed)", "2043-07-04": "Isra Mi'raj (estimated)", @@ -1140,7 +1140,7 @@ "2043-09-04": "Eid al-Fitr (estimated)", "2043-09-05": "Eid al-Fitr (estimated)", "2043-09-06": "Eid al-Fitr (estimated)", - "2043-09-07": "Eid al-Fitr (estimated) (observed)", + "2043-09-07": "Eid al-Fitr (observed, estimated)", "2043-11-12": "Eid al-Adha (estimated)", "2043-12-03": "Islamic New Year (estimated)", "2043-12-25": "Christmas Day", @@ -1159,7 +1159,7 @@ "2044-08-24": "Eid al-Fitr (estimated)", "2044-08-25": "Eid al-Fitr (estimated)", "2044-08-26": "Eid al-Fitr (estimated)", - "2044-08-27": "Eid al-Fitr (estimated) (observed)", + "2044-08-27": "Eid al-Fitr (observed, estimated)", "2044-10-31": "Eid al-Adha (estimated)", "2044-11-21": "Islamic New Year (estimated)", "2044-12-25": "Christmas Day", @@ -1179,11 +1179,11 @@ "2045-08-16": "Eid al-Fitr (estimated)", "2045-10-21": "Eid al-Adha (estimated)", "2045-11-10": "Islamic New Year (estimated)", - "2045-11-11": "Islamic New Year (estimated) (observed)", + "2045-11-11": "Islamic New Year (observed, estimated)", "2045-12-25": "Christmas Day", "2046-01-01": "New Year's Day", "2046-01-19": "Birth of the Prophet (estimated)", - "2046-01-20": "Birth of the Prophet (estimated) (observed)", + "2046-01-20": "Birth of the Prophet (observed, estimated)", "2046-02-06": "Lunar New Year", "2046-02-23": "National Day", "2046-02-24": "National Day (observed)", @@ -1196,7 +1196,7 @@ "2046-08-03": "Eid al-Fitr (estimated)", "2046-08-04": "Eid al-Fitr (estimated)", "2046-08-05": "Eid al-Fitr (estimated)", - "2046-08-06": "Eid al-Fitr (estimated) (observed)", + "2046-08-06": "Eid al-Fitr (observed, estimated)", "2046-10-10": "Eid al-Adha (estimated)", "2046-10-31": "Islamic New Year (estimated)", "2046-12-25": "Christmas Day", @@ -1213,35 +1213,35 @@ "2047-07-24": "Eid al-Fitr (estimated)", "2047-07-25": "Eid al-Fitr (estimated)", "2047-07-26": "Eid al-Fitr (estimated)", - "2047-07-27": "Eid al-Fitr (estimated) (observed)", + "2047-07-27": "Eid al-Fitr (observed, estimated)", "2047-09-30": "Eid al-Adha (estimated)", "2047-10-20": "Islamic New Year (estimated)", - "2047-10-21": "Islamic New Year (estimated) (observed)", + "2047-10-21": "Islamic New Year (observed, estimated)", "2047-12-25": "Christmas Day", "2047-12-29": "Birth of the Prophet (estimated)", - "2047-12-30": "Birth of the Prophet (estimated) (observed)", + "2047-12-30": "Birth of the Prophet (observed, estimated)", "2048-01-01": "New Year's Day", "2048-02-14": "Lunar New Year", "2048-02-15": "Lunar New Year (observed)", "2048-02-23": "National Day", "2048-02-24": "National Day (observed)", "2048-05-10": "Isra Mi'raj (estimated)", - "2048-05-11": "Isra Mi'raj (estimated) (observed)", + "2048-05-11": "Isra Mi'raj (observed, estimated)", "2048-05-31": "Armed Forces Day", "2048-06-01": "Armed Forces Day (observed)", "2048-06-12": "First Day of Ramadan (estimated)", - "2048-06-13": "First Day of Ramadan (estimated) (observed)", + "2048-06-13": "First Day of Ramadan (observed, estimated)", "2048-06-28": "Anniversary of the revelation of the Quran (estimated)", - "2048-06-29": "Anniversary of the revelation of the Quran (estimated) (observed)", + "2048-06-29": "Anniversary of the revelation of the Quran (observed, estimated)", "2048-07-12": "Eid al-Fitr (estimated)", "2048-07-13": "Eid al-Fitr (estimated)", "2048-07-14": "Eid al-Fitr (estimated)", - "2048-07-15": "Eid al-Fitr (estimated) (observed); Sultan Hassanal Bolkiah's Birthday", + "2048-07-15": "Eid al-Fitr (observed, estimated); Sultan Hassanal Bolkiah's Birthday", "2048-09-19": "Eid al-Adha (estimated)", "2048-10-09": "Islamic New Year (estimated)", - "2048-10-10": "Islamic New Year (estimated) (observed)", + "2048-10-10": "Islamic New Year (observed, estimated)", "2048-12-18": "Birth of the Prophet (estimated)", - "2048-12-19": "Birth of the Prophet (estimated) (observed)", + "2048-12-19": "Birth of the Prophet (observed, estimated)", "2048-12-25": "Christmas Day", "2048-12-26": "Christmas Day (observed)", "2049-01-01": "New Year's Day", @@ -1252,11 +1252,11 @@ "2049-05-31": "Armed Forces Day", "2049-06-02": "First Day of Ramadan (estimated)", "2049-06-18": "Anniversary of the revelation of the Quran (estimated)", - "2049-06-19": "Anniversary of the revelation of the Quran (estimated) (observed)", + "2049-06-19": "Anniversary of the revelation of the Quran (observed, estimated)", "2049-07-01": "Eid al-Fitr (estimated)", "2049-07-02": "Eid al-Fitr (estimated)", "2049-07-03": "Eid al-Fitr (estimated)", - "2049-07-05": "Eid al-Fitr (estimated) (observed)", + "2049-07-05": "Eid al-Fitr (observed, estimated)", "2049-07-15": "Sultan Hassanal Bolkiah's Birthday", "2049-09-08": "Eid al-Adha (estimated)", "2049-09-28": "Islamic New Year (estimated)", @@ -1268,7 +1268,7 @@ "2050-02-23": "National Day", "2050-04-19": "Isra Mi'raj (estimated)", "2050-05-22": "First Day of Ramadan (estimated)", - "2050-05-23": "First Day of Ramadan (estimated) (observed)", + "2050-05-23": "First Day of Ramadan (observed, estimated)", "2050-05-31": "Armed Forces Day", "2050-06-07": "Anniversary of the revelation of the Quran (estimated)", "2050-06-20": "Eid al-Fitr (estimated)", @@ -1277,7 +1277,7 @@ "2050-07-15": "Sultan Hassanal Bolkiah's Birthday", "2050-07-16": "Sultan Hassanal Bolkiah's Birthday (observed)", "2050-08-28": "Eid al-Adha (estimated)", - "2050-08-29": "Eid al-Adha (estimated) (observed)", + "2050-08-29": "Eid al-Adha (observed, estimated)", "2050-09-17": "Islamic New Year (estimated)", "2050-11-26": "Birth of the Prophet (estimated)", "2050-12-25": "Christmas Day", diff --git a/snapshots/countries/SA_COMMON.json b/snapshots/countries/SA_COMMON.json index 6aa74f62f..c5bd73ce0 100644 --- a/snapshots/countries/SA_COMMON.json +++ b/snapshots/countries/SA_COMMON.json @@ -7,23 +7,23 @@ "1950-09-23": "Eid al-Adha Holiday (estimated)", "1950-09-24": "Eid al-Adha Holiday (estimated)", "1950-09-25": "Eid al-Adha Holiday (estimated)", - "1950-09-26": "Eid al-Adha Holiday (estimated) (observed)", + "1950-09-26": "Eid al-Adha Holiday (observed, estimated)", "1951-07-06": "Eid al-Fitr Holiday (estimated)", "1951-07-07": "Eid al-Fitr Holiday (estimated)", "1951-07-08": "Eid al-Fitr Holiday (estimated)", "1951-07-09": "Eid al-Fitr Holiday (estimated)", - "1951-07-10": "Eid al-Fitr Holiday (estimated) (observed)", + "1951-07-10": "Eid al-Fitr Holiday (observed, estimated)", "1951-09-11": "Arafat Day (estimated)", "1951-09-12": "Eid al-Adha Holiday (estimated)", "1951-09-13": "Eid al-Adha Holiday (estimated)", "1951-09-14": "Eid al-Adha Holiday (estimated)", - "1951-09-15": "Eid al-Adha Holiday (estimated) (observed)", - "1951-09-16": "Eid al-Adha Holiday (estimated) (observed)", + "1951-09-15": "Eid al-Adha Holiday (observed, estimated)", + "1951-09-16": "Eid al-Adha Holiday (observed, estimated)", "1952-06-23": "Eid al-Fitr Holiday (estimated)", "1952-06-24": "Eid al-Fitr Holiday (estimated)", "1952-06-25": "Eid al-Fitr Holiday (estimated)", "1952-06-26": "Eid al-Fitr Holiday (estimated)", - "1952-06-28": "Eid al-Fitr Holiday (estimated) (observed)", + "1952-06-28": "Eid al-Fitr Holiday (observed, estimated)", "1952-08-30": "Arafat Day (estimated)", "1952-08-31": "Eid al-Adha Holiday (estimated)", "1952-09-01": "Eid al-Adha Holiday (estimated)", @@ -36,14 +36,14 @@ "1953-08-20": "Eid al-Adha Holiday (estimated)", "1953-08-21": "Eid al-Adha Holiday (estimated)", "1953-08-22": "Eid al-Adha Holiday (estimated)", - "1953-08-23": "Eid al-Adha Holiday (estimated) (observed)", - "1953-08-24": "Eid al-Adha Holiday (estimated) (observed)", + "1953-08-23": "Eid al-Adha Holiday (observed, estimated)", + "1953-08-24": "Eid al-Adha Holiday (observed, estimated)", "1954-06-02": "Eid al-Fitr Holiday (estimated)", "1954-06-03": "Eid al-Fitr Holiday (estimated)", "1954-06-04": "Eid al-Fitr Holiday (estimated)", "1954-06-05": "Eid al-Fitr Holiday (estimated)", - "1954-06-06": "Eid al-Fitr Holiday (estimated) (observed)", - "1954-06-07": "Eid al-Fitr Holiday (estimated) (observed)", + "1954-06-06": "Eid al-Fitr Holiday (observed, estimated)", + "1954-06-07": "Eid al-Fitr Holiday (observed, estimated)", "1954-08-08": "Arafat Day (estimated)", "1954-08-09": "Eid al-Adha Holiday (estimated)", "1954-08-10": "Eid al-Adha Holiday (estimated)", @@ -52,29 +52,29 @@ "1955-05-24": "Eid al-Fitr Holiday (estimated)", "1955-05-25": "Eid al-Fitr Holiday (estimated)", "1955-05-26": "Eid al-Fitr Holiday (estimated)", - "1955-05-28": "Eid al-Fitr Holiday (estimated) (observed)", + "1955-05-28": "Eid al-Fitr Holiday (observed, estimated)", "1955-07-29": "Arafat Day (estimated)", "1955-07-30": "Eid al-Adha Holiday (estimated)", "1955-07-31": "Eid al-Adha Holiday (estimated)", "1955-08-01": "Eid al-Adha Holiday (estimated)", - "1955-08-02": "Eid al-Adha Holiday (estimated) (observed)", + "1955-08-02": "Eid al-Adha Holiday (observed, estimated)", "1956-05-11": "Eid al-Fitr Holiday (estimated)", "1956-05-12": "Eid al-Fitr Holiday (estimated)", "1956-05-13": "Eid al-Fitr Holiday (estimated)", "1956-05-14": "Eid al-Fitr Holiday (estimated)", - "1956-05-15": "Eid al-Fitr Holiday (estimated) (observed)", + "1956-05-15": "Eid al-Fitr Holiday (observed, estimated)", "1956-07-18": "Arafat Day (estimated)", "1956-07-19": "Eid al-Adha Holiday (estimated)", "1956-07-20": "Eid al-Adha Holiday (estimated)", "1956-07-21": "Eid al-Adha Holiday (estimated)", - "1956-07-22": "Eid al-Adha Holiday (estimated) (observed)", - "1956-07-23": "Eid al-Adha Holiday (estimated) (observed)", + "1956-07-22": "Eid al-Adha Holiday (observed, estimated)", + "1956-07-23": "Eid al-Adha Holiday (observed, estimated)", "1957-05-01": "Eid al-Fitr Holiday (estimated)", "1957-05-02": "Eid al-Fitr Holiday (estimated)", "1957-05-03": "Eid al-Fitr Holiday (estimated)", "1957-05-04": "Eid al-Fitr Holiday (estimated)", - "1957-05-05": "Eid al-Fitr Holiday (estimated) (observed)", - "1957-05-06": "Eid al-Fitr Holiday (estimated) (observed)", + "1957-05-05": "Eid al-Fitr Holiday (observed, estimated)", + "1957-05-06": "Eid al-Fitr Holiday (observed, estimated)", "1957-07-07": "Arafat Day (estimated)", "1957-07-08": "Eid al-Adha Holiday (estimated)", "1957-07-09": "Eid al-Adha Holiday (estimated)", @@ -87,29 +87,29 @@ "1958-06-27": "Eid al-Adha Holiday (estimated)", "1958-06-28": "Eid al-Adha Holiday (estimated)", "1958-06-29": "Eid al-Adha Holiday (estimated)", - "1958-06-30": "Eid al-Adha Holiday (estimated) (observed)", - "1958-07-01": "Eid al-Adha Holiday (estimated) (observed)", + "1958-06-30": "Eid al-Adha Holiday (observed, estimated)", + "1958-07-01": "Eid al-Adha Holiday (observed, estimated)", "1959-04-10": "Eid al-Fitr Holiday (estimated)", "1959-04-11": "Eid al-Fitr Holiday (estimated)", "1959-04-12": "Eid al-Fitr Holiday (estimated)", "1959-04-13": "Eid al-Fitr Holiday (estimated)", - "1959-04-14": "Eid al-Fitr Holiday (estimated) (observed)", + "1959-04-14": "Eid al-Fitr Holiday (observed, estimated)", "1959-06-16": "Arafat Day (estimated)", "1959-06-17": "Eid al-Adha Holiday (estimated)", "1959-06-18": "Eid al-Adha Holiday (estimated)", "1959-06-19": "Eid al-Adha Holiday (estimated)", - "1959-06-20": "Eid al-Adha Holiday (estimated) (observed)", - "1959-06-21": "Eid al-Adha Holiday (estimated) (observed)", + "1959-06-20": "Eid al-Adha Holiday (observed, estimated)", + "1959-06-21": "Eid al-Adha Holiday (observed, estimated)", "1960-03-28": "Eid al-Fitr Holiday (estimated)", "1960-03-29": "Eid al-Fitr Holiday (estimated)", "1960-03-30": "Eid al-Fitr Holiday (estimated)", "1960-03-31": "Eid al-Fitr Holiday (estimated)", - "1960-04-02": "Eid al-Fitr Holiday (estimated) (observed)", + "1960-04-02": "Eid al-Fitr Holiday (observed, estimated)", "1960-06-03": "Arafat Day (estimated)", "1960-06-04": "Eid al-Adha Holiday (estimated)", "1960-06-05": "Eid al-Adha Holiday (estimated)", "1960-06-06": "Eid al-Adha Holiday (estimated)", - "1960-06-07": "Eid al-Adha Holiday (estimated) (observed)", + "1960-06-07": "Eid al-Adha Holiday (observed, estimated)", "1961-03-18": "Eid al-Fitr Holiday (estimated)", "1961-03-19": "Eid al-Fitr Holiday (estimated)", "1961-03-20": "Eid al-Fitr Holiday (estimated)", @@ -118,14 +118,14 @@ "1961-05-25": "Eid al-Adha Holiday (estimated)", "1961-05-26": "Eid al-Adha Holiday (estimated)", "1961-05-27": "Eid al-Adha Holiday (estimated)", - "1961-05-28": "Eid al-Adha Holiday (estimated) (observed)", - "1961-05-29": "Eid al-Adha Holiday (estimated) (observed)", + "1961-05-28": "Eid al-Adha Holiday (observed, estimated)", + "1961-05-29": "Eid al-Adha Holiday (observed, estimated)", "1962-03-07": "Eid al-Fitr Holiday (estimated)", "1962-03-08": "Eid al-Fitr Holiday (estimated)", "1962-03-09": "Eid al-Fitr Holiday (estimated)", "1962-03-10": "Eid al-Fitr Holiday (estimated)", - "1962-03-11": "Eid al-Fitr Holiday (estimated) (observed)", - "1962-03-12": "Eid al-Fitr Holiday (estimated) (observed)", + "1962-03-11": "Eid al-Fitr Holiday (observed, estimated)", + "1962-03-12": "Eid al-Fitr Holiday (observed, estimated)", "1962-05-13": "Arafat Day (estimated)", "1962-05-14": "Eid al-Adha Holiday (estimated)", "1962-05-15": "Eid al-Adha Holiday (estimated)", @@ -138,25 +138,25 @@ "1963-05-03": "Eid al-Adha Holiday (estimated)", "1963-05-04": "Eid al-Adha Holiday (estimated)", "1963-05-05": "Eid al-Adha Holiday (estimated)", - "1963-05-06": "Eid al-Adha Holiday (estimated) (observed)", - "1963-05-07": "Eid al-Adha Holiday (estimated) (observed)", + "1963-05-06": "Eid al-Adha Holiday (observed, estimated)", + "1963-05-07": "Eid al-Adha Holiday (observed, estimated)", "1964-02-14": "Eid al-Fitr Holiday (estimated)", "1964-02-15": "Eid al-Fitr Holiday (estimated)", "1964-02-16": "Eid al-Fitr Holiday (estimated)", "1964-02-17": "Eid al-Fitr Holiday (estimated)", - "1964-02-18": "Eid al-Fitr Holiday (estimated) (observed)", + "1964-02-18": "Eid al-Fitr Holiday (observed, estimated)", "1964-04-21": "Arafat Day (estimated)", "1964-04-22": "Eid al-Adha Holiday (estimated)", "1964-04-23": "Eid al-Adha Holiday (estimated)", "1964-04-24": "Eid al-Adha Holiday (estimated)", - "1964-04-25": "Eid al-Adha Holiday (estimated) (observed)", - "1964-04-26": "Eid al-Adha Holiday (estimated) (observed)", + "1964-04-25": "Eid al-Adha Holiday (observed, estimated)", + "1964-04-26": "Eid al-Adha Holiday (observed, estimated)", "1965-02-02": "Eid al-Fitr Holiday (estimated)", "1965-02-03": "Eid al-Fitr Holiday (estimated)", "1965-02-04": "Eid al-Fitr Holiday (estimated)", "1965-02-05": "Eid al-Fitr Holiday (estimated)", - "1965-02-06": "Eid al-Fitr Holiday (estimated) (observed)", - "1965-02-07": "Eid al-Fitr Holiday (estimated) (observed)", + "1965-02-06": "Eid al-Fitr Holiday (observed, estimated)", + "1965-02-07": "Eid al-Fitr Holiday (observed, estimated)", "1965-04-10": "Arafat Day (estimated)", "1965-04-11": "Eid al-Adha Holiday (estimated)", "1965-04-12": "Eid al-Adha Holiday (estimated)", @@ -169,29 +169,29 @@ "1966-04-01": "Eid al-Adha Holiday (estimated)", "1966-04-02": "Eid al-Adha Holiday (estimated)", "1966-04-03": "Eid al-Adha Holiday (estimated)", - "1966-04-04": "Eid al-Adha Holiday (estimated) (observed)", - "1966-04-05": "Eid al-Adha Holiday (estimated) (observed)", + "1966-04-04": "Eid al-Adha Holiday (observed, estimated)", + "1966-04-05": "Eid al-Adha Holiday (observed, estimated)", "1967-01-12": "Eid al-Fitr Holiday (estimated)", "1967-01-13": "Eid al-Fitr Holiday (estimated)", "1967-01-14": "Eid al-Fitr Holiday (estimated)", "1967-01-15": "Eid al-Fitr Holiday (estimated)", - "1967-01-16": "Eid al-Fitr Holiday (estimated) (observed)", - "1967-01-17": "Eid al-Fitr Holiday (estimated) (observed)", + "1967-01-16": "Eid al-Fitr Holiday (observed, estimated)", + "1967-01-17": "Eid al-Fitr Holiday (observed, estimated)", "1967-03-20": "Arafat Day (estimated)", "1967-03-21": "Eid al-Adha Holiday (estimated)", "1967-03-22": "Eid al-Adha Holiday (estimated)", "1967-03-23": "Eid al-Adha Holiday (estimated)", - "1967-03-25": "Eid al-Adha Holiday (estimated) (observed)", + "1967-03-25": "Eid al-Adha Holiday (observed, estimated)", "1968-01-01": "Eid al-Fitr Holiday (estimated)", "1968-01-02": "Eid al-Fitr Holiday (estimated)", "1968-01-03": "Eid al-Fitr Holiday (estimated)", "1968-01-04": "Eid al-Fitr Holiday (estimated)", - "1968-01-06": "Eid al-Fitr Holiday (estimated) (observed)", + "1968-01-06": "Eid al-Fitr Holiday (observed, estimated)", "1968-03-08": "Arafat Day (estimated)", "1968-03-09": "Eid al-Adha Holiday (estimated)", "1968-03-10": "Eid al-Adha Holiday (estimated)", "1968-03-11": "Eid al-Adha Holiday (estimated)", - "1968-03-12": "Eid al-Adha Holiday (estimated) (observed)", + "1968-03-12": "Eid al-Adha Holiday (observed, estimated)", "1968-12-21": "Eid al-Fitr Holiday (estimated)", "1968-12-22": "Eid al-Fitr Holiday (estimated)", "1968-12-23": "Eid al-Fitr Holiday (estimated)", @@ -200,14 +200,14 @@ "1969-02-27": "Eid al-Adha Holiday (estimated)", "1969-02-28": "Eid al-Adha Holiday (estimated)", "1969-03-01": "Eid al-Adha Holiday (estimated)", - "1969-03-02": "Eid al-Adha Holiday (estimated) (observed)", - "1969-03-03": "Eid al-Adha Holiday (estimated) (observed)", + "1969-03-02": "Eid al-Adha Holiday (observed, estimated)", + "1969-03-03": "Eid al-Adha Holiday (observed, estimated)", "1969-12-10": "Eid al-Fitr Holiday (estimated)", "1969-12-11": "Eid al-Fitr Holiday (estimated)", "1969-12-12": "Eid al-Fitr Holiday (estimated)", "1969-12-13": "Eid al-Fitr Holiday (estimated)", - "1969-12-14": "Eid al-Fitr Holiday (estimated) (observed)", - "1969-12-15": "Eid al-Fitr Holiday (estimated) (observed)", + "1969-12-14": "Eid al-Fitr Holiday (observed, estimated)", + "1969-12-15": "Eid al-Fitr Holiday (observed, estimated)", "1970-02-15": "Arafat Day (estimated)", "1970-02-16": "Eid al-Adha Holiday (estimated)", "1970-02-17": "Eid al-Adha Holiday (estimated)", @@ -216,29 +216,29 @@ "1970-12-01": "Eid al-Fitr Holiday (estimated)", "1970-12-02": "Eid al-Fitr Holiday (estimated)", "1970-12-03": "Eid al-Fitr Holiday (estimated)", - "1970-12-05": "Eid al-Fitr Holiday (estimated) (observed)", + "1970-12-05": "Eid al-Fitr Holiday (observed, estimated)", "1971-02-05": "Arafat Day (estimated)", "1971-02-06": "Eid al-Adha Holiday (estimated)", "1971-02-07": "Eid al-Adha Holiday (estimated)", "1971-02-08": "Eid al-Adha Holiday (estimated)", - "1971-02-09": "Eid al-Adha Holiday (estimated) (observed)", + "1971-02-09": "Eid al-Adha Holiday (observed, estimated)", "1971-11-19": "Eid al-Fitr Holiday (estimated)", "1971-11-20": "Eid al-Fitr Holiday (estimated)", "1971-11-21": "Eid al-Fitr Holiday (estimated)", "1971-11-22": "Eid al-Fitr Holiday (estimated)", - "1971-11-23": "Eid al-Fitr Holiday (estimated) (observed)", + "1971-11-23": "Eid al-Fitr Holiday (observed, estimated)", "1972-01-25": "Arafat Day (estimated)", "1972-01-26": "Eid al-Adha Holiday (estimated)", "1972-01-27": "Eid al-Adha Holiday (estimated)", "1972-01-28": "Eid al-Adha Holiday (estimated)", - "1972-01-29": "Eid al-Adha Holiday (estimated) (observed)", - "1972-01-30": "Eid al-Adha Holiday (estimated) (observed)", + "1972-01-29": "Eid al-Adha Holiday (observed, estimated)", + "1972-01-30": "Eid al-Adha Holiday (observed, estimated)", "1972-11-07": "Eid al-Fitr Holiday (estimated)", "1972-11-08": "Eid al-Fitr Holiday (estimated)", "1972-11-09": "Eid al-Fitr Holiday (estimated)", "1972-11-10": "Eid al-Fitr Holiday (estimated)", - "1972-11-11": "Eid al-Fitr Holiday (estimated) (observed)", - "1972-11-12": "Eid al-Fitr Holiday (estimated) (observed)", + "1972-11-11": "Eid al-Fitr Holiday (observed, estimated)", + "1972-11-12": "Eid al-Fitr Holiday (observed, estimated)", "1973-01-13": "Arafat Day (estimated)", "1973-01-14": "Eid al-Adha Holiday (estimated)", "1973-01-15": "Eid al-Adha Holiday (estimated)", @@ -251,46 +251,46 @@ "1974-01-03": "Eid al-Adha Holiday (estimated)", "1974-01-04": "Eid al-Adha Holiday (estimated)", "1974-01-05": "Eid al-Adha Holiday (estimated)", - "1974-01-06": "Eid al-Adha Holiday (estimated) (observed)", - "1974-01-07": "Eid al-Adha Holiday (estimated) (observed)", + "1974-01-06": "Eid al-Adha Holiday (observed, estimated)", + "1974-01-07": "Eid al-Adha Holiday (observed, estimated)", "1974-10-16": "Eid al-Fitr Holiday (estimated)", "1974-10-17": "Eid al-Fitr Holiday (estimated)", "1974-10-18": "Eid al-Fitr Holiday (estimated)", "1974-10-19": "Eid al-Fitr Holiday (estimated)", - "1974-10-20": "Eid al-Fitr Holiday (estimated) (observed)", - "1974-10-21": "Eid al-Fitr Holiday (estimated) (observed)", + "1974-10-20": "Eid al-Fitr Holiday (observed, estimated)", + "1974-10-21": "Eid al-Fitr Holiday (observed, estimated)", "1974-12-23": "Arafat Day (estimated)", "1974-12-24": "Eid al-Adha Holiday (estimated)", "1974-12-25": "Eid al-Adha Holiday (estimated)", "1974-12-26": "Eid al-Adha Holiday (estimated)", - "1974-12-28": "Eid al-Adha Holiday (estimated) (observed)", + "1974-12-28": "Eid al-Adha Holiday (observed, estimated)", "1975-10-06": "Eid al-Fitr Holiday (estimated)", "1975-10-07": "Eid al-Fitr Holiday (estimated)", "1975-10-08": "Eid al-Fitr Holiday (estimated)", "1975-10-09": "Eid al-Fitr Holiday (estimated)", - "1975-10-11": "Eid al-Fitr Holiday (estimated) (observed)", + "1975-10-11": "Eid al-Fitr Holiday (observed, estimated)", "1975-12-12": "Arafat Day (estimated)", "1975-12-13": "Eid al-Adha Holiday (estimated)", "1975-12-14": "Eid al-Adha Holiday (estimated)", "1975-12-15": "Eid al-Adha Holiday (estimated)", - "1975-12-16": "Eid al-Adha Holiday (estimated) (observed)", + "1975-12-16": "Eid al-Adha Holiday (observed, estimated)", "1976-09-24": "Eid al-Fitr Holiday (estimated)", "1976-09-25": "Eid al-Fitr Holiday (estimated)", "1976-09-26": "Eid al-Fitr Holiday (estimated)", "1976-09-27": "Eid al-Fitr Holiday (estimated)", - "1976-09-28": "Eid al-Fitr Holiday (estimated) (observed)", + "1976-09-28": "Eid al-Fitr Holiday (observed, estimated)", "1976-11-30": "Arafat Day (estimated)", "1976-12-01": "Eid al-Adha Holiday (estimated)", "1976-12-02": "Eid al-Adha Holiday (estimated)", "1976-12-03": "Eid al-Adha Holiday (estimated)", - "1976-12-04": "Eid al-Adha Holiday (estimated) (observed)", - "1976-12-05": "Eid al-Adha Holiday (estimated) (observed)", + "1976-12-04": "Eid al-Adha Holiday (observed, estimated)", + "1976-12-05": "Eid al-Adha Holiday (observed, estimated)", "1977-09-14": "Eid al-Fitr Holiday (estimated)", "1977-09-15": "Eid al-Fitr Holiday (estimated)", "1977-09-16": "Eid al-Fitr Holiday (estimated)", "1977-09-17": "Eid al-Fitr Holiday (estimated)", - "1977-09-18": "Eid al-Fitr Holiday (estimated) (observed)", - "1977-09-19": "Eid al-Fitr Holiday (estimated) (observed)", + "1977-09-18": "Eid al-Fitr Holiday (observed, estimated)", + "1977-09-19": "Eid al-Fitr Holiday (observed, estimated)", "1977-11-20": "Arafat Day (estimated)", "1977-11-21": "Eid al-Adha Holiday (estimated)", "1977-11-22": "Eid al-Adha Holiday (estimated)", @@ -303,26 +303,26 @@ "1978-11-10": "Eid al-Adha Holiday (estimated)", "1978-11-11": "Eid al-Adha Holiday (estimated)", "1978-11-12": "Eid al-Adha Holiday (estimated)", - "1978-11-13": "Eid al-Adha Holiday (estimated) (observed)", - "1978-11-14": "Eid al-Adha Holiday (estimated) (observed)", + "1978-11-13": "Eid al-Adha Holiday (observed, estimated)", + "1978-11-14": "Eid al-Adha Holiday (observed, estimated)", "1979-08-23": "Eid al-Fitr Holiday (estimated)", "1979-08-24": "Eid al-Fitr Holiday (estimated)", "1979-08-25": "Eid al-Fitr Holiday (estimated)", "1979-08-26": "Eid al-Fitr Holiday (estimated)", - "1979-08-27": "Eid al-Fitr Holiday (estimated) (observed)", - "1979-08-28": "Eid al-Fitr Holiday (estimated) (observed)", + "1979-08-27": "Eid al-Fitr Holiday (observed, estimated)", + "1979-08-28": "Eid al-Fitr Holiday (observed, estimated)", "1979-10-30": "Arafat Day (estimated)", "1979-10-31": "Eid al-Adha Holiday (estimated)", "1979-11-01": "Eid al-Adha Holiday (estimated)", "1979-11-02": "Eid al-Adha Holiday (estimated)", - "1979-11-03": "Eid al-Adha Holiday (estimated) (observed)", - "1979-11-04": "Eid al-Adha Holiday (estimated) (observed)", + "1979-11-03": "Eid al-Adha Holiday (observed, estimated)", + "1979-11-04": "Eid al-Adha Holiday (observed, estimated)", "1980-08-12": "Eid al-Fitr Holiday (estimated)", "1980-08-13": "Eid al-Fitr Holiday (estimated)", "1980-08-14": "Eid al-Fitr Holiday (estimated)", "1980-08-15": "Eid al-Fitr Holiday (estimated)", - "1980-08-16": "Eid al-Fitr Holiday (estimated) (observed)", - "1980-08-17": "Eid al-Fitr Holiday (estimated) (observed)", + "1980-08-16": "Eid al-Fitr Holiday (observed, estimated)", + "1980-08-17": "Eid al-Fitr Holiday (observed, estimated)", "1980-10-18": "Arafat Day (estimated)", "1980-10-19": "Eid al-Adha Holiday (estimated)", "1980-10-20": "Eid al-Adha Holiday (estimated)", @@ -335,14 +335,14 @@ "1981-10-08": "Eid al-Adha Holiday (estimated)", "1981-10-09": "Eid al-Adha Holiday (estimated)", "1981-10-10": "Eid al-Adha Holiday (estimated)", - "1981-10-11": "Eid al-Adha Holiday (estimated) (observed)", - "1981-10-12": "Eid al-Adha Holiday (estimated) (observed)", + "1981-10-11": "Eid al-Adha Holiday (observed, estimated)", + "1981-10-12": "Eid al-Adha Holiday (observed, estimated)", "1982-07-21": "Eid al-Fitr Holiday (estimated)", "1982-07-22": "Eid al-Fitr Holiday (estimated)", "1982-07-23": "Eid al-Fitr Holiday (estimated)", "1982-07-24": "Eid al-Fitr Holiday (estimated)", - "1982-07-25": "Eid al-Fitr Holiday (estimated) (observed)", - "1982-07-26": "Eid al-Fitr Holiday (estimated) (observed)", + "1982-07-25": "Eid al-Fitr Holiday (observed, estimated)", + "1982-07-26": "Eid al-Fitr Holiday (observed, estimated)", "1982-09-26": "Arafat Day (estimated)", "1982-09-27": "Eid al-Adha Holiday (estimated)", "1982-09-28": "Eid al-Adha Holiday (estimated)", @@ -351,12 +351,12 @@ "1983-07-12": "Eid al-Fitr Holiday (estimated)", "1983-07-13": "Eid al-Fitr Holiday (estimated)", "1983-07-14": "Eid al-Fitr Holiday (estimated)", - "1983-07-16": "Eid al-Fitr Holiday (estimated) (observed)", + "1983-07-16": "Eid al-Fitr Holiday (observed, estimated)", "1983-09-16": "Arafat Day (estimated)", "1983-09-17": "Eid al-Adha Holiday (estimated)", "1983-09-18": "Eid al-Adha Holiday (estimated)", "1983-09-19": "Eid al-Adha Holiday (estimated)", - "1983-09-20": "Eid al-Adha Holiday (estimated) (observed)", + "1983-09-20": "Eid al-Adha Holiday (observed, estimated)", "1984-06-30": "Eid al-Fitr Holiday (estimated)", "1984-07-01": "Eid al-Fitr Holiday (estimated)", "1984-07-02": "Eid al-Fitr Holiday (estimated)", @@ -365,14 +365,14 @@ "1984-09-05": "Eid al-Adha Holiday (estimated)", "1984-09-06": "Eid al-Adha Holiday (estimated)", "1984-09-07": "Eid al-Adha Holiday (estimated)", - "1984-09-08": "Eid al-Adha Holiday (estimated) (observed)", - "1984-09-09": "Eid al-Adha Holiday (estimated) (observed)", + "1984-09-08": "Eid al-Adha Holiday (observed, estimated)", + "1984-09-09": "Eid al-Adha Holiday (observed, estimated)", "1985-06-19": "Eid al-Fitr Holiday (estimated)", "1985-06-20": "Eid al-Fitr Holiday (estimated)", "1985-06-21": "Eid al-Fitr Holiday (estimated)", "1985-06-22": "Eid al-Fitr Holiday (estimated)", - "1985-06-23": "Eid al-Fitr Holiday (estimated) (observed)", - "1985-06-24": "Eid al-Fitr Holiday (estimated) (observed)", + "1985-06-23": "Eid al-Fitr Holiday (observed, estimated)", + "1985-06-24": "Eid al-Fitr Holiday (observed, estimated)", "1985-08-25": "Arafat Day (estimated)", "1985-08-26": "Eid al-Adha Holiday (estimated)", "1985-08-27": "Eid al-Adha Holiday (estimated)", @@ -385,29 +385,29 @@ "1986-08-15": "Eid al-Adha Holiday (estimated)", "1986-08-16": "Eid al-Adha Holiday (estimated)", "1986-08-17": "Eid al-Adha Holiday (estimated)", - "1986-08-18": "Eid al-Adha Holiday (estimated) (observed)", - "1986-08-19": "Eid al-Adha Holiday (estimated) (observed)", + "1986-08-18": "Eid al-Adha Holiday (observed, estimated)", + "1986-08-19": "Eid al-Adha Holiday (observed, estimated)", "1987-05-28": "Eid al-Fitr Holiday (estimated)", "1987-05-29": "Eid al-Fitr Holiday (estimated)", "1987-05-30": "Eid al-Fitr Holiday (estimated)", "1987-05-31": "Eid al-Fitr Holiday (estimated)", - "1987-06-01": "Eid al-Fitr Holiday (estimated) (observed)", - "1987-06-02": "Eid al-Fitr Holiday (estimated) (observed)", + "1987-06-01": "Eid al-Fitr Holiday (observed, estimated)", + "1987-06-02": "Eid al-Fitr Holiday (observed, estimated)", "1987-08-03": "Arafat Day (estimated)", "1987-08-04": "Eid al-Adha Holiday (estimated)", "1987-08-05": "Eid al-Adha Holiday (estimated)", "1987-08-06": "Eid al-Adha Holiday (estimated)", - "1987-08-08": "Eid al-Adha Holiday (estimated) (observed)", + "1987-08-08": "Eid al-Adha Holiday (observed, estimated)", "1988-05-16": "Eid al-Fitr Holiday (estimated)", "1988-05-17": "Eid al-Fitr Holiday (estimated)", "1988-05-18": "Eid al-Fitr Holiday (estimated)", "1988-05-19": "Eid al-Fitr Holiday (estimated)", - "1988-05-21": "Eid al-Fitr Holiday (estimated) (observed)", + "1988-05-21": "Eid al-Fitr Holiday (observed, estimated)", "1988-07-22": "Arafat Day (estimated)", "1988-07-23": "Eid al-Adha Holiday (estimated)", "1988-07-24": "Eid al-Adha Holiday (estimated)", "1988-07-25": "Eid al-Adha Holiday (estimated)", - "1988-07-26": "Eid al-Adha Holiday (estimated) (observed)", + "1988-07-26": "Eid al-Adha Holiday (observed, estimated)", "1989-05-06": "Eid al-Fitr Holiday (estimated)", "1989-05-07": "Eid al-Fitr Holiday (estimated)", "1989-05-08": "Eid al-Fitr Holiday (estimated)", @@ -416,14 +416,14 @@ "1989-07-13": "Eid al-Adha Holiday (estimated)", "1989-07-14": "Eid al-Adha Holiday (estimated)", "1989-07-15": "Eid al-Adha Holiday (estimated)", - "1989-07-16": "Eid al-Adha Holiday (estimated) (observed)", - "1989-07-17": "Eid al-Adha Holiday (estimated) (observed)", + "1989-07-16": "Eid al-Adha Holiday (observed, estimated)", + "1989-07-17": "Eid al-Adha Holiday (observed, estimated)", "1990-04-26": "Eid al-Fitr Holiday (estimated)", "1990-04-27": "Eid al-Fitr Holiday (estimated)", "1990-04-28": "Eid al-Fitr Holiday (estimated)", "1990-04-29": "Eid al-Fitr Holiday (estimated)", - "1990-04-30": "Eid al-Fitr Holiday (estimated) (observed)", - "1990-05-01": "Eid al-Fitr Holiday (estimated) (observed)", + "1990-04-30": "Eid al-Fitr Holiday (observed, estimated)", + "1990-05-01": "Eid al-Fitr Holiday (observed, estimated)", "1990-07-01": "Arafat Day (estimated)", "1990-07-02": "Eid al-Adha Holiday (estimated)", "1990-07-03": "Eid al-Adha Holiday (estimated)", @@ -432,12 +432,12 @@ "1991-04-16": "Eid al-Fitr Holiday (estimated)", "1991-04-17": "Eid al-Fitr Holiday (estimated)", "1991-04-18": "Eid al-Fitr Holiday (estimated)", - "1991-04-20": "Eid al-Fitr Holiday (estimated) (observed)", + "1991-04-20": "Eid al-Fitr Holiday (observed, estimated)", "1991-06-21": "Arafat Day (estimated)", "1991-06-22": "Eid al-Adha Holiday (estimated)", "1991-06-23": "Eid al-Adha Holiday (estimated)", "1991-06-24": "Eid al-Adha Holiday (estimated)", - "1991-06-25": "Eid al-Adha Holiday (estimated) (observed)", + "1991-06-25": "Eid al-Adha Holiday (observed, estimated)", "1992-04-04": "Eid al-Fitr Holiday (estimated)", "1992-04-05": "Eid al-Fitr Holiday (estimated)", "1992-04-06": "Eid al-Fitr Holiday (estimated)", @@ -446,14 +446,14 @@ "1992-06-11": "Eid al-Adha Holiday (estimated)", "1992-06-12": "Eid al-Adha Holiday (estimated)", "1992-06-13": "Eid al-Adha Holiday (estimated)", - "1992-06-14": "Eid al-Adha Holiday (estimated) (observed)", - "1992-06-15": "Eid al-Adha Holiday (estimated) (observed)", + "1992-06-14": "Eid al-Adha Holiday (observed, estimated)", + "1992-06-15": "Eid al-Adha Holiday (observed, estimated)", "1993-03-24": "Eid al-Fitr Holiday (estimated)", "1993-03-25": "Eid al-Fitr Holiday (estimated)", "1993-03-26": "Eid al-Fitr Holiday (estimated)", "1993-03-27": "Eid al-Fitr Holiday (estimated)", - "1993-03-28": "Eid al-Fitr Holiday (estimated) (observed)", - "1993-03-29": "Eid al-Fitr Holiday (estimated) (observed)", + "1993-03-28": "Eid al-Fitr Holiday (observed, estimated)", + "1993-03-29": "Eid al-Fitr Holiday (observed, estimated)", "1993-05-30": "Arafat Day (estimated)", "1993-05-31": "Eid al-Adha Holiday (estimated)", "1993-06-01": "Eid al-Adha Holiday (estimated)", @@ -466,29 +466,29 @@ "1994-05-20": "Eid al-Adha Holiday (estimated)", "1994-05-21": "Eid al-Adha Holiday (estimated)", "1994-05-22": "Eid al-Adha Holiday (estimated)", - "1994-05-23": "Eid al-Adha Holiday (estimated) (observed)", - "1994-05-24": "Eid al-Adha Holiday (estimated) (observed)", + "1994-05-23": "Eid al-Adha Holiday (observed, estimated)", + "1994-05-24": "Eid al-Adha Holiday (observed, estimated)", "1995-03-02": "Eid al-Fitr Holiday (estimated)", "1995-03-03": "Eid al-Fitr Holiday (estimated)", "1995-03-04": "Eid al-Fitr Holiday (estimated)", "1995-03-05": "Eid al-Fitr Holiday (estimated)", - "1995-03-06": "Eid al-Fitr Holiday (estimated) (observed)", - "1995-03-07": "Eid al-Fitr Holiday (estimated) (observed)", + "1995-03-06": "Eid al-Fitr Holiday (observed, estimated)", + "1995-03-07": "Eid al-Fitr Holiday (observed, estimated)", "1995-05-08": "Arafat Day (estimated)", "1995-05-09": "Eid al-Adha Holiday (estimated)", "1995-05-10": "Eid al-Adha Holiday (estimated)", "1995-05-11": "Eid al-Adha Holiday (estimated)", - "1995-05-13": "Eid al-Adha Holiday (estimated) (observed)", + "1995-05-13": "Eid al-Adha Holiday (observed, estimated)", "1996-02-19": "Eid al-Fitr Holiday (estimated)", "1996-02-20": "Eid al-Fitr Holiday (estimated)", "1996-02-21": "Eid al-Fitr Holiday (estimated)", "1996-02-22": "Eid al-Fitr Holiday (estimated)", - "1996-02-24": "Eid al-Fitr Holiday (estimated) (observed)", + "1996-02-24": "Eid al-Fitr Holiday (observed, estimated)", "1996-04-26": "Arafat Day (estimated)", "1996-04-27": "Eid al-Adha Holiday (estimated)", "1996-04-28": "Eid al-Adha Holiday (estimated)", "1996-04-29": "Eid al-Adha Holiday (estimated)", - "1996-04-30": "Eid al-Adha Holiday (estimated) (observed)", + "1996-04-30": "Eid al-Adha Holiday (observed, estimated)", "1997-02-08": "Eid al-Fitr Holiday (estimated)", "1997-02-09": "Eid al-Fitr Holiday (estimated)", "1997-02-10": "Eid al-Fitr Holiday (estimated)", @@ -497,29 +497,29 @@ "1997-04-17": "Eid al-Adha Holiday (estimated)", "1997-04-18": "Eid al-Adha Holiday (estimated)", "1997-04-19": "Eid al-Adha Holiday (estimated)", - "1997-04-20": "Eid al-Adha Holiday (estimated) (observed)", - "1997-04-21": "Eid al-Adha Holiday (estimated) (observed)", + "1997-04-20": "Eid al-Adha Holiday (observed, estimated)", + "1997-04-21": "Eid al-Adha Holiday (observed, estimated)", "1998-01-29": "Eid al-Fitr Holiday (estimated)", "1998-01-30": "Eid al-Fitr Holiday (estimated)", "1998-01-31": "Eid al-Fitr Holiday (estimated)", "1998-02-01": "Eid al-Fitr Holiday (estimated)", - "1998-02-02": "Eid al-Fitr Holiday (estimated) (observed)", - "1998-02-03": "Eid al-Fitr Holiday (estimated) (observed)", + "1998-02-02": "Eid al-Fitr Holiday (observed, estimated)", + "1998-02-03": "Eid al-Fitr Holiday (observed, estimated)", "1998-04-06": "Arafat Day (estimated)", "1998-04-07": "Eid al-Adha Holiday (estimated)", "1998-04-08": "Eid al-Adha Holiday (estimated)", "1998-04-09": "Eid al-Adha Holiday (estimated)", - "1998-04-11": "Eid al-Adha Holiday (estimated) (observed)", + "1998-04-11": "Eid al-Adha Holiday (observed, estimated)", "1999-01-18": "Eid al-Fitr Holiday (estimated)", "1999-01-19": "Eid al-Fitr Holiday (estimated)", "1999-01-20": "Eid al-Fitr Holiday (estimated)", "1999-01-21": "Eid al-Fitr Holiday (estimated)", - "1999-01-23": "Eid al-Fitr Holiday (estimated) (observed)", + "1999-01-23": "Eid al-Fitr Holiday (observed, estimated)", "1999-03-26": "Arafat Day (estimated)", "1999-03-27": "Eid al-Adha Holiday (estimated)", "1999-03-28": "Eid al-Adha Holiday (estimated)", "1999-03-29": "Eid al-Adha Holiday (estimated)", - "1999-03-30": "Eid al-Adha Holiday (estimated) (observed)", + "1999-03-30": "Eid al-Adha Holiday (observed, estimated)", "2000-01-08": "Eid al-Fitr Holiday (estimated)", "2000-01-09": "Eid al-Fitr Holiday (estimated)", "2000-01-10": "Eid al-Fitr Holiday (estimated)", @@ -528,13 +528,13 @@ "2000-03-16": "Eid al-Adha Holiday (estimated)", "2000-03-17": "Eid al-Adha Holiday (estimated)", "2000-03-18": "Eid al-Adha Holiday (estimated)", - "2000-03-19": "Eid al-Adha Holiday (estimated) (observed)", - "2000-03-20": "Eid al-Adha Holiday (estimated) (observed)", + "2000-03-19": "Eid al-Adha Holiday (observed, estimated)", + "2000-03-20": "Eid al-Adha Holiday (observed, estimated)", "2000-12-27": "Eid al-Fitr Holiday (estimated)", "2000-12-28": "Eid al-Fitr Holiday (estimated)", "2000-12-29": "Eid al-Fitr Holiday (estimated)", "2000-12-30": "Eid al-Fitr Holiday (estimated)", - "2000-12-31": "Eid al-Fitr Holiday (estimated) (observed)", + "2000-12-31": "Eid al-Fitr Holiday (observed, estimated)", "2001-01-01": "Eid al-Fitr Holiday (observed)", "2001-03-04": "Arafat Day (estimated)", "2001-03-05": "Eid al-Adha Holiday (estimated)", @@ -548,25 +548,25 @@ "2002-02-22": "Eid al-Adha Holiday (estimated)", "2002-02-23": "Eid al-Adha Holiday (estimated)", "2002-02-24": "Eid al-Adha Holiday (estimated)", - "2002-02-25": "Eid al-Adha Holiday (estimated) (observed)", - "2002-02-26": "Eid al-Adha Holiday (estimated) (observed)", + "2002-02-25": "Eid al-Adha Holiday (observed, estimated)", + "2002-02-26": "Eid al-Adha Holiday (observed, estimated)", "2002-12-05": "Eid al-Fitr Holiday (estimated)", "2002-12-06": "Eid al-Fitr Holiday (estimated)", "2002-12-07": "Eid al-Fitr Holiday (estimated)", "2002-12-08": "Eid al-Fitr Holiday (estimated)", - "2002-12-09": "Eid al-Fitr Holiday (estimated) (observed)", - "2002-12-10": "Eid al-Fitr Holiday (estimated) (observed)", + "2002-12-09": "Eid al-Fitr Holiday (observed, estimated)", + "2002-12-10": "Eid al-Fitr Holiday (observed, estimated)", "2003-02-10": "Arafat Day (estimated)", "2003-02-11": "Eid al-Adha Holiday (estimated)", "2003-02-12": "Eid al-Adha Holiday (estimated)", "2003-02-13": "Eid al-Adha Holiday (estimated)", - "2003-02-15": "Eid al-Adha Holiday (estimated) (observed)", + "2003-02-15": "Eid al-Adha Holiday (observed, estimated)", "2003-11-25": "Eid al-Fitr Holiday (estimated)", "2003-11-26": "Eid al-Fitr Holiday (estimated)", "2003-11-27": "Eid al-Fitr Holiday (estimated)", "2003-11-28": "Eid al-Fitr Holiday (estimated)", - "2003-11-29": "Eid al-Fitr Holiday (estimated) (observed)", - "2003-11-30": "Eid al-Fitr Holiday (estimated) (observed)", + "2003-11-29": "Eid al-Fitr Holiday (observed, estimated)", + "2003-11-30": "Eid al-Fitr Holiday (observed, estimated)", "2004-01-31": "Arafat Day (estimated)", "2004-02-01": "Eid al-Adha Holiday (estimated)", "2004-02-02": "Eid al-Adha Holiday (estimated)", @@ -579,27 +579,27 @@ "2005-01-21": "Eid al-Adha Holiday (estimated)", "2005-01-22": "Eid al-Adha Holiday (estimated)", "2005-01-23": "Eid al-Adha Holiday (estimated)", - "2005-01-24": "Eid al-Adha Holiday (estimated) (observed)", - "2005-01-25": "Eid al-Adha Holiday (estimated) (observed)", + "2005-01-24": "Eid al-Adha Holiday (observed, estimated)", + "2005-01-25": "Eid al-Adha Holiday (observed, estimated)", "2005-09-23": "National Day Holiday", "2005-09-24": "National Day Holiday (observed)", "2005-11-03": "Eid al-Fitr Holiday (estimated)", "2005-11-04": "Eid al-Fitr Holiday (estimated)", "2005-11-05": "Eid al-Fitr Holiday (estimated)", "2005-11-06": "Eid al-Fitr Holiday (estimated)", - "2005-11-07": "Eid al-Fitr Holiday (estimated) (observed)", - "2005-11-08": "Eid al-Fitr Holiday (estimated) (observed)", + "2005-11-07": "Eid al-Fitr Holiday (observed, estimated)", + "2005-11-08": "Eid al-Fitr Holiday (observed, estimated)", "2006-01-09": "Arafat Day (estimated)", "2006-01-10": "Eid al-Adha Holiday (estimated)", "2006-01-11": "Eid al-Adha Holiday (estimated)", "2006-01-12": "Eid al-Adha Holiday (estimated)", - "2006-01-14": "Eid al-Adha Holiday (estimated) (observed)", + "2006-01-14": "Eid al-Adha Holiday (observed, estimated)", "2006-09-23": "National Day Holiday", "2006-10-23": "Eid al-Fitr Holiday (estimated)", "2006-10-24": "Eid al-Fitr Holiday (estimated)", "2006-10-25": "Eid al-Fitr Holiday (estimated)", "2006-10-26": "Eid al-Fitr Holiday (estimated)", - "2006-10-28": "Eid al-Fitr Holiday (estimated) (observed)", + "2006-10-28": "Eid al-Fitr Holiday (observed, estimated)", "2006-12-30": "Arafat Day (estimated)", "2006-12-31": "Eid al-Adha Holiday (estimated)", "2007-01-01": "Eid al-Adha Holiday (estimated)", @@ -613,15 +613,15 @@ "2007-12-20": "Eid al-Adha Holiday (estimated)", "2007-12-21": "Eid al-Adha Holiday (estimated)", "2007-12-22": "Eid al-Adha Holiday (estimated)", - "2007-12-23": "Eid al-Adha Holiday (estimated) (observed)", - "2007-12-24": "Eid al-Adha Holiday (estimated) (observed)", + "2007-12-23": "Eid al-Adha Holiday (observed, estimated)", + "2007-12-24": "Eid al-Adha Holiday (observed, estimated)", "2008-09-23": "National Day Holiday", "2008-10-01": "Eid al-Fitr Holiday (estimated)", "2008-10-02": "Eid al-Fitr Holiday (estimated)", "2008-10-03": "Eid al-Fitr Holiday (estimated)", "2008-10-04": "Eid al-Fitr Holiday (estimated)", - "2008-10-05": "Eid al-Fitr Holiday (estimated) (observed)", - "2008-10-06": "Eid al-Fitr Holiday (estimated) (observed)", + "2008-10-05": "Eid al-Fitr Holiday (observed, estimated)", + "2008-10-06": "Eid al-Fitr Holiday (observed, estimated)", "2008-12-07": "Arafat Day (estimated)", "2008-12-08": "Eid al-Adha Holiday (estimated)", "2008-12-09": "Eid al-Adha Holiday (estimated)", @@ -634,26 +634,26 @@ "2009-11-27": "Eid al-Adha Holiday (estimated)", "2009-11-28": "Eid al-Adha Holiday (estimated)", "2009-11-29": "Eid al-Adha Holiday (estimated)", - "2009-11-30": "Eid al-Adha Holiday (estimated) (observed)", - "2009-12-01": "Eid al-Adha Holiday (estimated) (observed)", + "2009-11-30": "Eid al-Adha Holiday (observed, estimated)", + "2009-12-01": "Eid al-Adha Holiday (observed, estimated)", "2010-09-10": "Eid al-Fitr Holiday (estimated)", "2010-09-11": "Eid al-Fitr Holiday (estimated)", "2010-09-12": "Eid al-Fitr Holiday (estimated)", "2010-09-13": "Eid al-Fitr Holiday (estimated)", - "2010-09-14": "Eid al-Fitr Holiday (estimated) (observed)", + "2010-09-14": "Eid al-Fitr Holiday (observed, estimated)", "2010-09-22": "National Day Holiday (observed)", "2010-09-23": "National Day Holiday", "2010-11-15": "Arafat Day (estimated)", "2010-11-16": "Eid al-Adha Holiday (estimated)", "2010-11-17": "Eid al-Adha Holiday (estimated)", "2010-11-18": "Eid al-Adha Holiday (estimated)", - "2010-11-20": "Eid al-Adha Holiday (estimated) (observed)", + "2010-11-20": "Eid al-Adha Holiday (observed, estimated)", "2011-08-30": "Eid al-Fitr Holiday (estimated)", "2011-08-31": "Eid al-Fitr Holiday (estimated)", "2011-09-01": "Eid al-Fitr Holiday (estimated)", "2011-09-02": "Eid al-Fitr Holiday (estimated)", - "2011-09-03": "Eid al-Fitr Holiday (estimated) (observed)", - "2011-09-04": "Eid al-Fitr Holiday (estimated) (observed)", + "2011-09-03": "Eid al-Fitr Holiday (observed, estimated)", + "2011-09-04": "Eid al-Fitr Holiday (observed, estimated)", "2011-09-23": "National Day Holiday", "2011-09-24": "National Day Holiday (observed)", "2011-11-05": "Arafat Day (estimated)", @@ -669,14 +669,14 @@ "2012-10-26": "Eid al-Adha Holiday (estimated)", "2012-10-27": "Eid al-Adha Holiday (estimated)", "2012-10-28": "Eid al-Adha Holiday (estimated)", - "2012-10-29": "Eid al-Adha Holiday (estimated) (observed)", - "2012-10-30": "Eid al-Adha Holiday (estimated) (observed)", + "2012-10-29": "Eid al-Adha Holiday (observed, estimated)", + "2012-10-30": "Eid al-Adha Holiday (observed, estimated)", "2013-08-08": "Eid al-Fitr Holiday (estimated)", "2013-08-09": "Eid al-Fitr Holiday (estimated)", "2013-08-10": "Eid al-Fitr Holiday (estimated)", "2013-08-11": "Eid al-Fitr Holiday (estimated)", - "2013-08-12": "Eid al-Fitr Holiday (estimated) (observed)", - "2013-08-13": "Eid al-Fitr Holiday (estimated) (observed)", + "2013-08-12": "Eid al-Fitr Holiday (observed, estimated)", + "2013-08-13": "Eid al-Fitr Holiday (observed, estimated)", "2013-09-23": "National Day Holiday", "2013-10-14": "Arafat Day (estimated)", "2013-10-15": "Eid al-Adha Holiday (estimated)", @@ -691,30 +691,30 @@ "2014-10-04": "Eid al-Adha Holiday (estimated)", "2014-10-05": "Eid al-Adha Holiday (estimated)", "2014-10-06": "Eid al-Adha Holiday (estimated)", - "2014-10-07": "Eid al-Adha Holiday (estimated) (observed)", - "2014-10-08": "Eid al-Adha Holiday (estimated) (observed)", + "2014-10-07": "Eid al-Adha Holiday (observed, estimated)", + "2014-10-08": "Eid al-Adha Holiday (observed, estimated)", "2015-07-17": "Eid al-Fitr Holiday (estimated)", "2015-07-18": "Eid al-Fitr Holiday (estimated)", "2015-07-19": "Eid al-Fitr Holiday (estimated)", "2015-07-20": "Eid al-Fitr Holiday (estimated)", - "2015-07-21": "Eid al-Fitr Holiday (estimated) (observed)", - "2015-07-22": "Eid al-Fitr Holiday (estimated) (observed)", + "2015-07-21": "Eid al-Fitr Holiday (observed, estimated)", + "2015-07-22": "Eid al-Fitr Holiday (observed, estimated)", "2015-09-22": "Arafat Day (estimated)", "2015-09-23": "Eid al-Adha Holiday (estimated)", "2015-09-24": "Eid al-Adha Holiday (estimated)", "2015-09-25": "Eid al-Adha Holiday (estimated)", - "2015-09-27": "Eid al-Adha Holiday (estimated) (observed)", + "2015-09-27": "Eid al-Adha Holiday (observed, estimated)", "2016-07-06": "Eid al-Fitr Holiday (estimated)", "2016-07-07": "Eid al-Fitr Holiday (estimated)", "2016-07-08": "Eid al-Fitr Holiday (estimated)", "2016-07-09": "Eid al-Fitr Holiday (estimated)", - "2016-07-10": "Eid al-Fitr Holiday (estimated) (observed)", - "2016-07-11": "Eid al-Fitr Holiday (estimated) (observed)", + "2016-07-10": "Eid al-Fitr Holiday (observed, estimated)", + "2016-07-11": "Eid al-Fitr Holiday (observed, estimated)", "2016-09-10": "Arafat Day (estimated)", "2016-09-11": "Eid al-Adha Holiday (estimated)", "2016-09-12": "Eid al-Adha Holiday (estimated)", "2016-09-13": "Eid al-Adha Holiday (estimated)", - "2016-09-14": "Eid al-Adha Holiday (estimated) (observed)", + "2016-09-14": "Eid al-Adha Holiday (observed, estimated)", "2016-09-22": "National Day Holiday (observed)", "2016-09-23": "National Day Holiday", "2017-06-25": "Eid al-Fitr Holiday (estimated)", @@ -725,16 +725,16 @@ "2017-09-01": "Eid al-Adha Holiday (estimated)", "2017-09-02": "Eid al-Adha Holiday (estimated)", "2017-09-03": "Eid al-Adha Holiday (estimated)", - "2017-09-04": "Eid al-Adha Holiday (estimated) (observed)", - "2017-09-05": "Eid al-Adha Holiday (estimated) (observed)", + "2017-09-04": "Eid al-Adha Holiday (observed, estimated)", + "2017-09-05": "Eid al-Adha Holiday (observed, estimated)", "2017-09-23": "National Day Holiday", "2017-09-24": "National Day Holiday (observed)", "2018-06-15": "Eid al-Fitr Holiday (estimated)", "2018-06-16": "Eid al-Fitr Holiday (estimated)", "2018-06-17": "Eid al-Fitr Holiday (estimated)", "2018-06-18": "Eid al-Fitr Holiday (estimated)", - "2018-06-19": "Eid al-Fitr Holiday (estimated) (observed)", - "2018-06-20": "Eid al-Fitr Holiday (estimated) (observed)", + "2018-06-19": "Eid al-Fitr Holiday (observed, estimated)", + "2018-06-20": "Eid al-Fitr Holiday (observed, estimated)", "2018-08-20": "Arafat Day (estimated)", "2018-08-21": "Eid al-Adha Holiday (estimated)", "2018-08-22": "Eid al-Adha Holiday (estimated)", @@ -744,12 +744,12 @@ "2019-06-05": "Eid al-Fitr Holiday (estimated)", "2019-06-06": "Eid al-Fitr Holiday (estimated)", "2019-06-07": "Eid al-Fitr Holiday (estimated)", - "2019-06-09": "Eid al-Fitr Holiday (estimated) (observed)", + "2019-06-09": "Eid al-Fitr Holiday (observed, estimated)", "2019-08-10": "Arafat Day (estimated)", "2019-08-11": "Eid al-Adha Holiday (estimated)", "2019-08-12": "Eid al-Adha Holiday (estimated)", "2019-08-13": "Eid al-Adha Holiday (estimated)", - "2019-08-14": "Eid al-Adha Holiday (estimated) (observed)", + "2019-08-14": "Eid al-Adha Holiday (observed, estimated)", "2019-09-23": "National Day Holiday", "2020-05-24": "Eid al-Fitr Holiday (estimated)", "2020-05-25": "Eid al-Fitr Holiday (estimated)", @@ -759,15 +759,15 @@ "2020-07-31": "Eid al-Adha Holiday (estimated)", "2020-08-01": "Eid al-Adha Holiday (estimated)", "2020-08-02": "Eid al-Adha Holiday (estimated)", - "2020-08-03": "Eid al-Adha Holiday (estimated) (observed)", - "2020-08-04": "Eid al-Adha Holiday (estimated) (observed)", + "2020-08-03": "Eid al-Adha Holiday (observed, estimated)", + "2020-08-04": "Eid al-Adha Holiday (observed, estimated)", "2020-09-23": "National Day Holiday", "2021-05-13": "Eid al-Fitr Holiday (estimated)", "2021-05-14": "Eid al-Fitr Holiday (estimated)", "2021-05-15": "Eid al-Fitr Holiday (estimated)", "2021-05-16": "Eid al-Fitr Holiday (estimated)", - "2021-05-17": "Eid al-Fitr Holiday (estimated) (observed)", - "2021-05-18": "Eid al-Fitr Holiday (estimated) (observed)", + "2021-05-17": "Eid al-Fitr Holiday (observed, estimated)", + "2021-05-18": "Eid al-Fitr Holiday (observed, estimated)", "2021-07-19": "Arafat Day (estimated)", "2021-07-20": "Eid al-Adha Holiday (estimated)", "2021-07-21": "Eid al-Adha Holiday (estimated)", @@ -782,8 +782,8 @@ "2022-07-09": "Eid al-Adha Holiday (estimated)", "2022-07-10": "Eid al-Adha Holiday (estimated)", "2022-07-11": "Eid al-Adha Holiday (estimated)", - "2022-07-12": "Eid al-Adha Holiday (estimated) (observed)", - "2022-07-13": "Eid al-Adha Holiday (estimated) (observed)", + "2022-07-12": "Eid al-Adha Holiday (observed, estimated)", + "2022-07-13": "Eid al-Adha Holiday (observed, estimated)", "2022-09-22": "National Day Holiday (observed)", "2022-09-23": "National Day Holiday", "2022-11-23": "A National Day", @@ -792,13 +792,13 @@ "2023-04-22": "Eid al-Fitr Holiday (estimated)", "2023-04-23": "Eid al-Fitr Holiday (estimated)", "2023-04-24": "Eid al-Fitr Holiday (estimated)", - "2023-04-25": "Eid al-Fitr Holiday (estimated) (observed)", - "2023-04-26": "Eid al-Fitr Holiday (estimated) (observed)", + "2023-04-25": "Eid al-Fitr Holiday (observed, estimated)", + "2023-04-26": "Eid al-Fitr Holiday (observed, estimated)", "2023-06-27": "Arafat Day (estimated)", "2023-06-28": "Eid al-Adha Holiday (estimated)", "2023-06-29": "Eid al-Adha Holiday (estimated)", "2023-06-30": "Eid al-Adha Holiday (estimated)", - "2023-07-02": "Eid al-Adha Holiday (estimated) (observed)", + "2023-07-02": "Eid al-Adha Holiday (observed, estimated)", "2023-09-23": "National Day Holiday", "2023-09-24": "National Day Holiday (observed)", "2024-02-22": "Founding Day Holiday", @@ -806,13 +806,13 @@ "2024-04-11": "Eid al-Fitr Holiday (estimated)", "2024-04-12": "Eid al-Fitr Holiday (estimated)", "2024-04-13": "Eid al-Fitr Holiday (estimated)", - "2024-04-14": "Eid al-Fitr Holiday (estimated) (observed)", - "2024-04-15": "Eid al-Fitr Holiday (estimated) (observed)", + "2024-04-14": "Eid al-Fitr Holiday (observed, estimated)", + "2024-04-15": "Eid al-Fitr Holiday (observed, estimated)", "2024-06-15": "Arafat Day (estimated)", "2024-06-16": "Eid al-Adha Holiday (estimated)", "2024-06-17": "Eid al-Adha Holiday (estimated)", "2024-06-18": "Eid al-Adha Holiday (estimated)", - "2024-06-19": "Eid al-Adha Holiday (estimated) (observed)", + "2024-06-19": "Eid al-Adha Holiday (observed, estimated)", "2024-09-23": "National Day Holiday", "2025-02-22": "Founding Day Holiday", "2025-02-23": "Founding Day Holiday (observed)", @@ -824,54 +824,54 @@ "2025-06-06": "Eid al-Adha Holiday (estimated)", "2025-06-07": "Eid al-Adha Holiday (estimated)", "2025-06-08": "Eid al-Adha Holiday (estimated)", - "2025-06-09": "Eid al-Adha Holiday (estimated) (observed)", - "2025-06-10": "Eid al-Adha Holiday (estimated) (observed)", + "2025-06-09": "Eid al-Adha Holiday (observed, estimated)", + "2025-06-10": "Eid al-Adha Holiday (observed, estimated)", "2025-09-23": "National Day Holiday", "2026-02-22": "Founding Day Holiday", "2026-03-20": "Eid al-Fitr Holiday (estimated)", "2026-03-21": "Eid al-Fitr Holiday (estimated)", "2026-03-22": "Eid al-Fitr Holiday (estimated)", "2026-03-23": "Eid al-Fitr Holiday (estimated)", - "2026-03-24": "Eid al-Fitr Holiday (estimated) (observed)", - "2026-03-25": "Eid al-Fitr Holiday (estimated) (observed)", + "2026-03-24": "Eid al-Fitr Holiday (observed, estimated)", + "2026-03-25": "Eid al-Fitr Holiday (observed, estimated)", "2026-05-26": "Arafat Day (estimated)", "2026-05-27": "Eid al-Adha Holiday (estimated)", "2026-05-28": "Eid al-Adha Holiday (estimated)", "2026-05-29": "Eid al-Adha Holiday (estimated)", - "2026-05-31": "Eid al-Adha Holiday (estimated) (observed)", + "2026-05-31": "Eid al-Adha Holiday (observed, estimated)", "2026-09-23": "National Day Holiday", "2027-02-22": "Founding Day Holiday", "2027-03-09": "Eid al-Fitr Holiday (estimated)", "2027-03-10": "Eid al-Fitr Holiday (estimated)", "2027-03-11": "Eid al-Fitr Holiday (estimated)", "2027-03-12": "Eid al-Fitr Holiday (estimated)", - "2027-03-14": "Eid al-Fitr Holiday (estimated) (observed)", + "2027-03-14": "Eid al-Fitr Holiday (observed, estimated)", "2027-05-15": "Arafat Day (estimated)", "2027-05-16": "Eid al-Adha Holiday (estimated)", "2027-05-17": "Eid al-Adha Holiday (estimated)", "2027-05-18": "Eid al-Adha Holiday (estimated)", - "2027-05-19": "Eid al-Adha Holiday (estimated) (observed)", + "2027-05-19": "Eid al-Adha Holiday (observed, estimated)", "2027-09-23": "National Day Holiday", "2028-02-22": "Founding Day Holiday", "2028-02-26": "Eid al-Fitr Holiday (estimated)", "2028-02-27": "Eid al-Fitr Holiday (estimated)", "2028-02-28": "Eid al-Fitr Holiday (estimated)", "2028-02-29": "Eid al-Fitr Holiday (estimated)", - "2028-03-01": "Eid al-Fitr Holiday (estimated) (observed)", + "2028-03-01": "Eid al-Fitr Holiday (observed, estimated)", "2028-05-04": "Arafat Day (estimated)", "2028-05-05": "Eid al-Adha Holiday (estimated)", "2028-05-06": "Eid al-Adha Holiday (estimated)", "2028-05-07": "Eid al-Adha Holiday (estimated)", - "2028-05-08": "Eid al-Adha Holiday (estimated) (observed)", - "2028-05-09": "Eid al-Adha Holiday (estimated) (observed)", + "2028-05-08": "Eid al-Adha Holiday (observed, estimated)", + "2028-05-09": "Eid al-Adha Holiday (observed, estimated)", "2028-09-23": "National Day Holiday", "2028-09-24": "National Day Holiday (observed)", "2029-02-14": "Eid al-Fitr Holiday (estimated)", "2029-02-15": "Eid al-Fitr Holiday (estimated)", "2029-02-16": "Eid al-Fitr Holiday (estimated)", "2029-02-17": "Eid al-Fitr Holiday (estimated)", - "2029-02-18": "Eid al-Fitr Holiday (estimated) (observed)", - "2029-02-19": "Eid al-Fitr Holiday (estimated) (observed)", + "2029-02-18": "Eid al-Fitr Holiday (observed, estimated)", + "2029-02-19": "Eid al-Fitr Holiday (observed, estimated)", "2029-02-22": "Founding Day Holiday", "2029-04-23": "Arafat Day (estimated)", "2029-04-24": "Eid al-Adha Holiday (estimated)", @@ -888,29 +888,29 @@ "2030-04-13": "Eid al-Adha Holiday (estimated)", "2030-04-14": "Eid al-Adha Holiday (estimated)", "2030-04-15": "Eid al-Adha Holiday (estimated)", - "2030-04-16": "Eid al-Adha Holiday (estimated) (observed)", - "2030-04-17": "Eid al-Adha Holiday (estimated) (observed)", + "2030-04-16": "Eid al-Adha Holiday (observed, estimated)", + "2030-04-17": "Eid al-Adha Holiday (observed, estimated)", "2030-09-23": "National Day Holiday", "2031-01-24": "Eid al-Fitr Holiday (estimated)", "2031-01-25": "Eid al-Fitr Holiday (estimated)", "2031-01-26": "Eid al-Fitr Holiday (estimated)", "2031-01-27": "Eid al-Fitr Holiday (estimated)", - "2031-01-28": "Eid al-Fitr Holiday (estimated) (observed)", - "2031-01-29": "Eid al-Fitr Holiday (estimated) (observed)", + "2031-01-28": "Eid al-Fitr Holiday (observed, estimated)", + "2031-01-29": "Eid al-Fitr Holiday (observed, estimated)", "2031-02-22": "Founding Day Holiday", "2031-02-23": "Founding Day Holiday (observed)", "2031-04-01": "Arafat Day (estimated)", "2031-04-02": "Eid al-Adha Holiday (estimated)", "2031-04-03": "Eid al-Adha Holiday (estimated)", "2031-04-04": "Eid al-Adha Holiday (estimated)", - "2031-04-06": "Eid al-Adha Holiday (estimated) (observed)", + "2031-04-06": "Eid al-Adha Holiday (observed, estimated)", "2031-09-23": "National Day Holiday", "2032-01-14": "Eid al-Fitr Holiday (estimated)", "2032-01-15": "Eid al-Fitr Holiday (estimated)", "2032-01-16": "Eid al-Fitr Holiday (estimated)", "2032-01-17": "Eid al-Fitr Holiday (estimated)", - "2032-01-18": "Eid al-Fitr Holiday (estimated) (observed)", - "2032-01-19": "Eid al-Fitr Holiday (estimated) (observed)", + "2032-01-18": "Eid al-Fitr Holiday (observed, estimated)", + "2032-01-19": "Eid al-Fitr Holiday (observed, estimated)", "2032-02-22": "Founding Day Holiday", "2032-03-21": "Arafat Day (estimated)", "2032-03-22": "Eid al-Adha Holiday (estimated)", @@ -926,47 +926,47 @@ "2033-03-11": "Eid al-Adha Holiday (estimated)", "2033-03-12": "Eid al-Adha Holiday (estimated)", "2033-03-13": "Eid al-Adha Holiday (estimated)", - "2033-03-14": "Eid al-Adha Holiday (estimated) (observed)", - "2033-03-15": "Eid al-Adha Holiday (estimated) (observed)", + "2033-03-14": "Eid al-Adha Holiday (observed, estimated)", + "2033-03-15": "Eid al-Adha Holiday (observed, estimated)", "2033-09-22": "National Day Holiday (observed)", "2033-09-23": "National Day Holiday", "2033-12-23": "Eid al-Fitr Holiday (estimated)", "2033-12-24": "Eid al-Fitr Holiday (estimated)", "2033-12-25": "Eid al-Fitr Holiday (estimated)", "2033-12-26": "Eid al-Fitr Holiday (estimated)", - "2033-12-27": "Eid al-Fitr Holiday (estimated) (observed)", - "2033-12-28": "Eid al-Fitr Holiday (estimated) (observed)", + "2033-12-27": "Eid al-Fitr Holiday (observed, estimated)", + "2033-12-28": "Eid al-Fitr Holiday (observed, estimated)", "2034-02-22": "Founding Day Holiday", "2034-02-28": "Arafat Day (estimated)", "2034-03-01": "Eid al-Adha Holiday (estimated)", "2034-03-02": "Eid al-Adha Holiday (estimated)", "2034-03-03": "Eid al-Adha Holiday (estimated)", - "2034-03-05": "Eid al-Adha Holiday (estimated) (observed)", + "2034-03-05": "Eid al-Adha Holiday (observed, estimated)", "2034-09-23": "National Day Holiday", "2034-09-24": "National Day Holiday (observed)", "2034-12-12": "Eid al-Fitr Holiday (estimated)", "2034-12-13": "Eid al-Fitr Holiday (estimated)", "2034-12-14": "Eid al-Fitr Holiday (estimated)", "2034-12-15": "Eid al-Fitr Holiday (estimated)", - "2034-12-17": "Eid al-Fitr Holiday (estimated) (observed)", + "2034-12-17": "Eid al-Fitr Holiday (observed, estimated)", "2035-02-17": "Arafat Day (estimated)", "2035-02-18": "Eid al-Adha Holiday (estimated)", "2035-02-19": "Eid al-Adha Holiday (estimated)", "2035-02-20": "Eid al-Adha Holiday (estimated)", - "2035-02-21": "Eid al-Adha Holiday (estimated) (observed)", + "2035-02-21": "Eid al-Adha Holiday (observed, estimated)", "2035-02-22": "Founding Day Holiday", "2035-09-23": "National Day Holiday", "2035-12-01": "Eid al-Fitr Holiday (estimated)", "2035-12-02": "Eid al-Fitr Holiday (estimated)", "2035-12-03": "Eid al-Fitr Holiday (estimated)", "2035-12-04": "Eid al-Fitr Holiday (estimated)", - "2035-12-05": "Eid al-Fitr Holiday (estimated) (observed)", + "2035-12-05": "Eid al-Fitr Holiday (observed, estimated)", "2036-02-06": "Arafat Day (estimated)", "2036-02-07": "Eid al-Adha Holiday (estimated)", "2036-02-08": "Eid al-Adha Holiday (estimated)", "2036-02-09": "Eid al-Adha Holiday (estimated)", - "2036-02-10": "Eid al-Adha Holiday (estimated) (observed)", - "2036-02-11": "Eid al-Adha Holiday (estimated) (observed)", + "2036-02-10": "Eid al-Adha Holiday (observed, estimated)", + "2036-02-11": "Eid al-Adha Holiday (observed, estimated)", "2036-02-21": "Founding Day Holiday (observed)", "2036-02-22": "Founding Day Holiday", "2036-09-23": "National Day Holiday", @@ -974,8 +974,8 @@ "2036-11-20": "Eid al-Fitr Holiday (estimated)", "2036-11-21": "Eid al-Fitr Holiday (estimated)", "2036-11-22": "Eid al-Fitr Holiday (estimated)", - "2036-11-23": "Eid al-Fitr Holiday (estimated) (observed)", - "2036-11-24": "Eid al-Fitr Holiday (estimated) (observed)", + "2036-11-23": "Eid al-Fitr Holiday (observed, estimated)", + "2036-11-24": "Eid al-Fitr Holiday (observed, estimated)", "2037-01-25": "Arafat Day (estimated)", "2037-01-26": "Eid al-Adha Holiday (estimated)", "2037-01-27": "Eid al-Adha Holiday (estimated)", @@ -990,21 +990,21 @@ "2038-01-16": "Eid al-Adha Holiday (estimated)", "2038-01-17": "Eid al-Adha Holiday (estimated)", "2038-01-18": "Eid al-Adha Holiday (estimated)", - "2038-01-19": "Eid al-Adha Holiday (estimated) (observed)", - "2038-01-20": "Eid al-Adha Holiday (estimated) (observed)", + "2038-01-19": "Eid al-Adha Holiday (observed, estimated)", + "2038-01-20": "Eid al-Adha Holiday (observed, estimated)", "2038-02-22": "Founding Day Holiday", "2038-09-23": "National Day Holiday", "2038-10-29": "Eid al-Fitr Holiday (estimated)", "2038-10-30": "Eid al-Fitr Holiday (estimated)", "2038-10-31": "Eid al-Fitr Holiday (estimated)", "2038-11-01": "Eid al-Fitr Holiday (estimated)", - "2038-11-02": "Eid al-Fitr Holiday (estimated) (observed)", - "2038-11-03": "Eid al-Fitr Holiday (estimated) (observed)", + "2038-11-02": "Eid al-Fitr Holiday (observed, estimated)", + "2038-11-03": "Eid al-Fitr Holiday (observed, estimated)", "2039-01-04": "Arafat Day (estimated)", "2039-01-05": "Eid al-Adha Holiday (estimated)", "2039-01-06": "Eid al-Adha Holiday (estimated)", "2039-01-07": "Eid al-Adha Holiday (estimated)", - "2039-01-09": "Eid al-Adha Holiday (estimated) (observed)", + "2039-01-09": "Eid al-Adha Holiday (observed, estimated)", "2039-02-22": "Founding Day Holiday", "2039-09-22": "National Day Holiday (observed)", "2039-09-23": "National Day Holiday", @@ -1012,8 +1012,8 @@ "2039-10-20": "Eid al-Fitr Holiday (estimated)", "2039-10-21": "Eid al-Fitr Holiday (estimated)", "2039-10-22": "Eid al-Fitr Holiday (estimated)", - "2039-10-23": "Eid al-Fitr Holiday (estimated) (observed)", - "2039-10-24": "Eid al-Fitr Holiday (estimated) (observed)", + "2039-10-23": "Eid al-Fitr Holiday (observed, estimated)", + "2039-10-24": "Eid al-Fitr Holiday (observed, estimated)", "2039-12-25": "Arafat Day (estimated)", "2039-12-26": "Eid al-Adha Holiday (estimated)", "2039-12-27": "Eid al-Adha Holiday (estimated)", @@ -1028,8 +1028,8 @@ "2040-12-14": "Eid al-Adha Holiday (estimated)", "2040-12-15": "Eid al-Adha Holiday (estimated)", "2040-12-16": "Eid al-Adha Holiday (estimated)", - "2040-12-17": "Eid al-Adha Holiday (estimated) (observed)", - "2040-12-18": "Eid al-Adha Holiday (estimated) (observed)", + "2040-12-17": "Eid al-Adha Holiday (observed, estimated)", + "2040-12-18": "Eid al-Adha Holiday (observed, estimated)", "2041-02-21": "Founding Day Holiday (observed)", "2041-02-22": "Founding Day Holiday", "2041-09-23": "National Day Holiday", @@ -1037,13 +1037,13 @@ "2041-09-27": "Eid al-Fitr Holiday (estimated)", "2041-09-28": "Eid al-Fitr Holiday (estimated)", "2041-09-29": "Eid al-Fitr Holiday (estimated)", - "2041-09-30": "Eid al-Fitr Holiday (estimated) (observed)", - "2041-10-01": "Eid al-Fitr Holiday (estimated) (observed)", + "2041-09-30": "Eid al-Fitr Holiday (observed, estimated)", + "2041-10-01": "Eid al-Fitr Holiday (observed, estimated)", "2041-12-03": "Arafat Day (estimated)", "2041-12-04": "Eid al-Adha Holiday (estimated)", "2041-12-05": "Eid al-Adha Holiday (estimated)", "2041-12-06": "Eid al-Adha Holiday (estimated)", - "2041-12-08": "Eid al-Adha Holiday (estimated) (observed)", + "2041-12-08": "Eid al-Adha Holiday (observed, estimated)", "2042-02-22": "Founding Day Holiday", "2042-02-23": "Founding Day Holiday (observed)", "2042-09-15": "Eid al-Fitr Holiday (estimated)", @@ -1055,28 +1055,28 @@ "2042-11-23": "Eid al-Adha Holiday (estimated)", "2042-11-24": "Eid al-Adha Holiday (estimated)", "2042-11-25": "Eid al-Adha Holiday (estimated)", - "2042-11-26": "Eid al-Adha Holiday (estimated) (observed)", + "2042-11-26": "Eid al-Adha Holiday (observed, estimated)", "2043-02-22": "Founding Day Holiday", "2043-09-04": "Eid al-Fitr Holiday (estimated)", "2043-09-05": "Eid al-Fitr Holiday (estimated)", "2043-09-06": "Eid al-Fitr Holiday (estimated)", "2043-09-07": "Eid al-Fitr Holiday (estimated)", - "2043-09-08": "Eid al-Fitr Holiday (estimated) (observed)", - "2043-09-09": "Eid al-Fitr Holiday (estimated) (observed)", + "2043-09-08": "Eid al-Fitr Holiday (observed, estimated)", + "2043-09-09": "Eid al-Fitr Holiday (observed, estimated)", "2043-09-23": "National Day Holiday", "2043-11-11": "Arafat Day (estimated)", "2043-11-12": "Eid al-Adha Holiday (estimated)", "2043-11-13": "Eid al-Adha Holiday (estimated)", "2043-11-14": "Eid al-Adha Holiday (estimated)", - "2043-11-15": "Eid al-Adha Holiday (estimated) (observed)", - "2043-11-16": "Eid al-Adha Holiday (estimated) (observed)", + "2043-11-15": "Eid al-Adha Holiday (observed, estimated)", + "2043-11-16": "Eid al-Adha Holiday (observed, estimated)", "2044-02-22": "Founding Day Holiday", "2044-08-24": "Eid al-Fitr Holiday (estimated)", "2044-08-25": "Eid al-Fitr Holiday (estimated)", "2044-08-26": "Eid al-Fitr Holiday (estimated)", "2044-08-27": "Eid al-Fitr Holiday (estimated)", - "2044-08-28": "Eid al-Fitr Holiday (estimated) (observed)", - "2044-08-29": "Eid al-Fitr Holiday (estimated) (observed)", + "2044-08-28": "Eid al-Fitr Holiday (observed, estimated)", + "2044-08-29": "Eid al-Fitr Holiday (observed, estimated)", "2044-09-22": "National Day Holiday (observed)", "2044-09-23": "National Day Holiday", "2044-10-30": "Arafat Day (estimated)", @@ -1094,29 +1094,29 @@ "2045-10-21": "Eid al-Adha Holiday (estimated)", "2045-10-22": "Eid al-Adha Holiday (estimated)", "2045-10-23": "Eid al-Adha Holiday (estimated)", - "2045-10-24": "Eid al-Adha Holiday (estimated) (observed)", - "2045-10-25": "Eid al-Adha Holiday (estimated) (observed)", + "2045-10-24": "Eid al-Adha Holiday (observed, estimated)", + "2045-10-25": "Eid al-Adha Holiday (observed, estimated)", "2046-02-22": "Founding Day Holiday", "2046-08-03": "Eid al-Fitr Holiday (estimated)", "2046-08-04": "Eid al-Fitr Holiday (estimated)", "2046-08-05": "Eid al-Fitr Holiday (estimated)", "2046-08-06": "Eid al-Fitr Holiday (estimated)", - "2046-08-07": "Eid al-Fitr Holiday (estimated) (observed)", - "2046-08-08": "Eid al-Fitr Holiday (estimated) (observed)", + "2046-08-07": "Eid al-Fitr Holiday (observed, estimated)", + "2046-08-08": "Eid al-Fitr Holiday (observed, estimated)", "2046-09-23": "National Day Holiday", "2046-10-09": "Arafat Day (estimated)", "2046-10-10": "Eid al-Adha Holiday (estimated)", "2046-10-11": "Eid al-Adha Holiday (estimated)", "2046-10-12": "Eid al-Adha Holiday (estimated)", - "2046-10-14": "Eid al-Adha Holiday (estimated) (observed)", + "2046-10-14": "Eid al-Adha Holiday (observed, estimated)", "2047-02-21": "Founding Day Holiday (observed)", "2047-02-22": "Founding Day Holiday", "2047-07-24": "Eid al-Fitr Holiday (estimated)", "2047-07-25": "Eid al-Fitr Holiday (estimated)", "2047-07-26": "Eid al-Fitr Holiday (estimated)", "2047-07-27": "Eid al-Fitr Holiday (estimated)", - "2047-07-28": "Eid al-Fitr Holiday (estimated) (observed)", - "2047-07-29": "Eid al-Fitr Holiday (estimated) (observed)", + "2047-07-28": "Eid al-Fitr Holiday (observed, estimated)", + "2047-07-29": "Eid al-Fitr Holiday (observed, estimated)", "2047-09-23": "National Day Holiday", "2047-09-29": "Arafat Day (estimated)", "2047-09-30": "Eid al-Adha Holiday (estimated)", @@ -1132,20 +1132,20 @@ "2048-09-19": "Eid al-Adha Holiday (estimated)", "2048-09-20": "Eid al-Adha Holiday (estimated)", "2048-09-21": "Eid al-Adha Holiday (estimated)", - "2048-09-22": "Eid al-Adha Holiday (estimated) (observed)", - "2048-09-23": "Eid al-Adha Holiday (estimated) (observed)", + "2048-09-22": "Eid al-Adha Holiday (observed, estimated)", + "2048-09-23": "Eid al-Adha Holiday (observed, estimated)", "2049-02-22": "Founding Day Holiday", "2049-07-01": "Eid al-Fitr Holiday (estimated)", "2049-07-02": "Eid al-Fitr Holiday (estimated)", "2049-07-03": "Eid al-Fitr Holiday (estimated)", "2049-07-04": "Eid al-Fitr Holiday (estimated)", - "2049-07-05": "Eid al-Fitr Holiday (estimated) (observed)", - "2049-07-06": "Eid al-Fitr Holiday (estimated) (observed)", + "2049-07-05": "Eid al-Fitr Holiday (observed, estimated)", + "2049-07-06": "Eid al-Fitr Holiday (observed, estimated)", "2049-09-07": "Arafat Day (estimated)", "2049-09-08": "Eid al-Adha Holiday (estimated)", "2049-09-09": "Eid al-Adha Holiday (estimated)", "2049-09-10": "Eid al-Adha Holiday (estimated)", - "2049-09-12": "Eid al-Adha Holiday (estimated) (observed)", + "2049-09-12": "Eid al-Adha Holiday (observed, estimated)", "2049-09-23": "National Day Holiday", "2050-02-22": "Founding Day Holiday", "2050-06-20": "Eid al-Fitr Holiday (estimated)", @@ -1156,7 +1156,7 @@ "2050-08-28": "Eid al-Adha Holiday (estimated)", "2050-08-29": "Eid al-Adha Holiday (estimated)", "2050-08-30": "Eid al-Adha Holiday (estimated)", - "2050-08-31": "Eid al-Adha Holiday (estimated) (observed)", + "2050-08-31": "Eid al-Adha Holiday (observed, estimated)", "2050-09-22": "National Day Holiday (observed)", "2050-09-23": "National Day Holiday" } diff --git a/snapshots/countries/UZ_COMMON.json b/snapshots/countries/UZ_COMMON.json index 2831a9eb8..7b550e029 100644 --- a/snapshots/countries/UZ_COMMON.json +++ b/snapshots/countries/UZ_COMMON.json @@ -322,7 +322,7 @@ "2023-06-30": "Additional day off by Presidential decree", "2023-09-01": "Independence Day", "2023-10-01": "Teachers and Instructors Day", - "2023-10-02": "Teachers and Instructors Day (Observed)", + "2023-10-02": "Teachers and Instructors Day (observed)", "2023-12-08": "Constitution Day", "2024-01-01": "New Year's Day", "2024-01-02": "Day off (substituted from 01/06/2024)", @@ -334,22 +334,22 @@ "2024-04-12": "Day off (substituted from 04/13/2024)", "2024-05-09": "Day of Memory and Honor", "2024-06-16": "Eid al-Adha (estimated)", - "2024-06-17": "Eid al-Adha (estimated) (Observed)", + "2024-06-17": "Eid al-Adha (observed, estimated)", "2024-06-18": "Additional day off by Presidential decree", "2024-09-01": "Independence Day", - "2024-09-02": "Independence Day (Observed)", + "2024-09-02": "Independence Day (observed)", "2024-09-03": "Additional day off by Presidential decree", "2024-10-01": "Teachers and Instructors Day", "2024-12-08": "Constitution Day", - "2024-12-09": "Constitution Day (Observed)", + "2024-12-09": "Constitution Day (observed)", "2024-12-30": "Day off (substituted from 12/14/2024)", "2024-12-31": "Additional day off by Presidential decree", "2025-01-01": "New Year's Day", "2025-03-08": "Women's Day", - "2025-03-10": "Women's Day (Observed)", + "2025-03-10": "Women's Day (observed)", "2025-03-21": "Nowruz", "2025-03-30": "Eid al-Fitr (estimated)", - "2025-03-31": "Eid al-Fitr (estimated) (Observed)", + "2025-03-31": "Eid al-Fitr (observed, estimated)", "2025-05-09": "Day of Memory and Honor", "2025-06-06": "Eid al-Adha (estimated)", "2025-09-01": "Independence Day", @@ -357,12 +357,12 @@ "2025-12-08": "Constitution Day", "2026-01-01": "New Year's Day", "2026-03-08": "Women's Day", - "2026-03-09": "Women's Day (Observed)", + "2026-03-09": "Women's Day (observed)", "2026-03-20": "Eid al-Fitr (estimated)", "2026-03-21": "Nowruz", - "2026-03-23": "Nowruz (Observed)", + "2026-03-23": "Nowruz (observed)", "2026-05-09": "Day of Memory and Honor", - "2026-05-11": "Day of Memory and Honor (Observed)", + "2026-05-11": "Day of Memory and Honor (observed)", "2026-05-27": "Eid al-Adha (estimated)", "2026-09-01": "Independence Day", "2026-10-01": "Teachers and Instructors Day", @@ -371,25 +371,25 @@ "2027-03-08": "Women's Day", "2027-03-09": "Eid al-Fitr (estimated)", "2027-03-21": "Nowruz", - "2027-03-22": "Nowruz (Observed)", + "2027-03-22": "Nowruz (observed)", "2027-05-09": "Day of Memory and Honor", - "2027-05-10": "Day of Memory and Honor (Observed)", + "2027-05-10": "Day of Memory and Honor (observed)", "2027-05-16": "Eid al-Adha (estimated)", - "2027-05-17": "Eid al-Adha (estimated) (Observed)", + "2027-05-17": "Eid al-Adha (observed, estimated)", "2027-09-01": "Independence Day", "2027-10-01": "Teachers and Instructors Day", "2027-12-08": "Constitution Day", "2028-01-01": "New Year's Day", - "2028-01-03": "New Year's Day (Observed)", + "2028-01-03": "New Year's Day (observed)", "2028-02-26": "Eid al-Fitr (estimated)", - "2028-02-28": "Eid al-Fitr (estimated) (Observed)", + "2028-02-28": "Eid al-Fitr (observed, estimated)", "2028-03-08": "Women's Day", "2028-03-21": "Nowruz", "2028-05-05": "Eid al-Adha (estimated)", "2028-05-09": "Day of Memory and Honor", "2028-09-01": "Independence Day", "2028-10-01": "Teachers and Instructors Day", - "2028-10-02": "Teachers and Instructors Day (Observed)", + "2028-10-02": "Teachers and Instructors Day (observed)", "2028-12-08": "Constitution Day", "2029-01-01": "New Year's Day", "2029-02-14": "Eid al-Fitr (estimated)", @@ -398,26 +398,26 @@ "2029-04-24": "Eid al-Adha (estimated)", "2029-05-09": "Day of Memory and Honor", "2029-09-01": "Independence Day", - "2029-09-03": "Independence Day (Observed)", + "2029-09-03": "Independence Day (observed)", "2029-10-01": "Teachers and Instructors Day", "2029-12-08": "Constitution Day", - "2029-12-10": "Constitution Day (Observed)", + "2029-12-10": "Constitution Day (observed)", "2030-01-01": "New Year's Day", "2030-02-04": "Eid al-Fitr (estimated)", "2030-03-08": "Women's Day", "2030-03-21": "Nowruz", "2030-04-13": "Eid al-Adha (estimated)", - "2030-04-15": "Eid al-Adha (estimated) (Observed)", + "2030-04-15": "Eid al-Adha (observed, estimated)", "2030-05-09": "Day of Memory and Honor", "2030-09-01": "Independence Day", - "2030-09-02": "Independence Day (Observed)", + "2030-09-02": "Independence Day (observed)", "2030-10-01": "Teachers and Instructors Day", "2030-12-08": "Constitution Day", - "2030-12-09": "Constitution Day (Observed)", + "2030-12-09": "Constitution Day (observed)", "2031-01-01": "New Year's Day", "2031-01-24": "Eid al-Fitr (estimated)", "2031-03-08": "Women's Day", - "2031-03-10": "Women's Day (Observed)", + "2031-03-10": "Women's Day (observed)", "2031-03-21": "Nowruz", "2031-04-02": "Eid al-Adha (estimated)", "2031-05-09": "Day of Memory and Honor", @@ -429,53 +429,53 @@ "2032-03-08": "Women's Day", "2032-03-21": "Nowruz", "2032-03-22": "Eid al-Adha (estimated)", - "2032-03-23": "Nowruz (Observed)", + "2032-03-23": "Nowruz (observed)", "2032-05-09": "Day of Memory and Honor", - "2032-05-10": "Day of Memory and Honor (Observed)", + "2032-05-10": "Day of Memory and Honor (observed)", "2032-09-01": "Independence Day", "2032-10-01": "Teachers and Instructors Day", "2032-12-08": "Constitution Day", "2033-01-01": "New Year's Day", "2033-01-02": "Eid al-Fitr (estimated)", - "2033-01-03": "New Year's Day (Observed)", - "2033-01-04": "Eid al-Fitr (estimated) (Observed)", + "2033-01-03": "New Year's Day (observed)", + "2033-01-04": "Eid al-Fitr (observed, estimated)", "2033-03-08": "Women's Day", "2033-03-11": "Eid al-Adha (estimated)", "2033-03-21": "Nowruz", "2033-05-09": "Day of Memory and Honor", "2033-09-01": "Independence Day", "2033-10-01": "Teachers and Instructors Day", - "2033-10-03": "Teachers and Instructors Day (Observed)", + "2033-10-03": "Teachers and Instructors Day (observed)", "2033-12-08": "Constitution Day", "2033-12-23": "Eid al-Fitr (estimated)", "2034-01-01": "New Year's Day", - "2034-01-02": "New Year's Day (Observed)", + "2034-01-02": "New Year's Day (observed)", "2034-03-01": "Eid al-Adha (estimated)", "2034-03-08": "Women's Day", "2034-03-21": "Nowruz", "2034-05-09": "Day of Memory and Honor", "2034-09-01": "Independence Day", "2034-10-01": "Teachers and Instructors Day", - "2034-10-02": "Teachers and Instructors Day (Observed)", + "2034-10-02": "Teachers and Instructors Day (observed)", "2034-12-08": "Constitution Day", "2034-12-12": "Eid al-Fitr (estimated)", "2035-01-01": "New Year's Day", "2035-02-18": "Eid al-Adha (estimated)", - "2035-02-19": "Eid al-Adha (estimated) (Observed)", + "2035-02-19": "Eid al-Adha (observed, estimated)", "2035-03-08": "Women's Day", "2035-03-21": "Nowruz", "2035-05-09": "Day of Memory and Honor", "2035-09-01": "Independence Day", - "2035-09-03": "Independence Day (Observed)", + "2035-09-03": "Independence Day (observed)", "2035-10-01": "Teachers and Instructors Day", "2035-12-01": "Eid al-Fitr (estimated)", - "2035-12-03": "Eid al-Fitr (estimated) (Observed)", + "2035-12-03": "Eid al-Fitr (observed, estimated)", "2035-12-08": "Constitution Day", - "2035-12-10": "Constitution Day (Observed)", + "2035-12-10": "Constitution Day (observed)", "2036-01-01": "New Year's Day", "2036-02-07": "Eid al-Adha (estimated)", "2036-03-08": "Women's Day", - "2036-03-10": "Women's Day (Observed)", + "2036-03-10": "Women's Day (observed)", "2036-03-21": "Nowruz", "2036-05-09": "Day of Memory and Honor", "2036-09-01": "Independence Day", @@ -485,82 +485,82 @@ "2037-01-01": "New Year's Day", "2037-01-26": "Eid al-Adha (estimated)", "2037-03-08": "Women's Day", - "2037-03-09": "Women's Day (Observed)", + "2037-03-09": "Women's Day (observed)", "2037-03-21": "Nowruz", - "2037-03-23": "Nowruz (Observed)", + "2037-03-23": "Nowruz (observed)", "2037-05-09": "Day of Memory and Honor", - "2037-05-11": "Day of Memory and Honor (Observed)", + "2037-05-11": "Day of Memory and Honor (observed)", "2037-09-01": "Independence Day", "2037-10-01": "Teachers and Instructors Day", "2037-11-08": "Eid al-Fitr (estimated)", - "2037-11-09": "Eid al-Fitr (estimated) (Observed)", + "2037-11-09": "Eid al-Fitr (observed, estimated)", "2037-12-08": "Constitution Day", "2038-01-01": "New Year's Day", "2038-01-16": "Eid al-Adha (estimated)", - "2038-01-18": "Eid al-Adha (estimated) (Observed)", + "2038-01-18": "Eid al-Adha (observed, estimated)", "2038-03-08": "Women's Day", "2038-03-21": "Nowruz", - "2038-03-22": "Nowruz (Observed)", + "2038-03-22": "Nowruz (observed)", "2038-05-09": "Day of Memory and Honor", - "2038-05-10": "Day of Memory and Honor (Observed)", + "2038-05-10": "Day of Memory and Honor (observed)", "2038-09-01": "Independence Day", "2038-10-01": "Teachers and Instructors Day", "2038-10-29": "Eid al-Fitr (estimated)", "2038-12-08": "Constitution Day", "2039-01-01": "New Year's Day", - "2039-01-03": "New Year's Day (Observed)", + "2039-01-03": "New Year's Day (observed)", "2039-01-05": "Eid al-Adha (estimated)", "2039-03-08": "Women's Day", "2039-03-21": "Nowruz", "2039-05-09": "Day of Memory and Honor", "2039-09-01": "Independence Day", "2039-10-01": "Teachers and Instructors Day", - "2039-10-03": "Teachers and Instructors Day (Observed)", + "2039-10-03": "Teachers and Instructors Day (observed)", "2039-10-19": "Eid al-Fitr (estimated)", "2039-12-08": "Constitution Day", "2039-12-26": "Eid al-Adha (estimated)", "2040-01-01": "New Year's Day", - "2040-01-02": "New Year's Day (Observed)", + "2040-01-02": "New Year's Day (observed)", "2040-03-08": "Women's Day", "2040-03-21": "Nowruz", "2040-05-09": "Day of Memory and Honor", "2040-09-01": "Independence Day", - "2040-09-03": "Independence Day (Observed)", + "2040-09-03": "Independence Day (observed)", "2040-10-01": "Teachers and Instructors Day", "2040-10-07": "Eid al-Fitr (estimated)", - "2040-10-08": "Eid al-Fitr (estimated) (Observed)", + "2040-10-08": "Eid al-Fitr (observed, estimated)", "2040-12-08": "Constitution Day", - "2040-12-10": "Constitution Day (Observed)", + "2040-12-10": "Constitution Day (observed)", "2040-12-14": "Eid al-Adha (estimated)", "2041-01-01": "New Year's Day", "2041-03-08": "Women's Day", "2041-03-21": "Nowruz", "2041-05-09": "Day of Memory and Honor", "2041-09-01": "Independence Day", - "2041-09-02": "Independence Day (Observed)", + "2041-09-02": "Independence Day (observed)", "2041-09-26": "Eid al-Fitr (estimated)", "2041-10-01": "Teachers and Instructors Day", "2041-12-04": "Eid al-Adha (estimated)", "2041-12-08": "Constitution Day", - "2041-12-09": "Constitution Day (Observed)", + "2041-12-09": "Constitution Day (observed)", "2042-01-01": "New Year's Day", "2042-03-08": "Women's Day", - "2042-03-10": "Women's Day (Observed)", + "2042-03-10": "Women's Day (observed)", "2042-03-21": "Nowruz", "2042-05-09": "Day of Memory and Honor", "2042-09-01": "Independence Day", "2042-09-15": "Eid al-Fitr (estimated)", "2042-10-01": "Teachers and Instructors Day", "2042-11-23": "Eid al-Adha (estimated)", - "2042-11-24": "Eid al-Adha (estimated) (Observed)", + "2042-11-24": "Eid al-Adha (observed, estimated)", "2042-12-08": "Constitution Day", "2043-01-01": "New Year's Day", "2043-03-08": "Women's Day", - "2043-03-09": "Women's Day (Observed)", + "2043-03-09": "Women's Day (observed)", "2043-03-21": "Nowruz", - "2043-03-23": "Nowruz (Observed)", + "2043-03-23": "Nowruz (observed)", "2043-05-09": "Day of Memory and Honor", - "2043-05-11": "Day of Memory and Honor (Observed)", + "2043-05-11": "Day of Memory and Honor (observed)", "2043-09-01": "Independence Day", "2043-09-04": "Eid al-Fitr (estimated)", "2043-10-01": "Teachers and Instructors Day", @@ -573,20 +573,20 @@ "2044-08-24": "Eid al-Fitr (estimated)", "2044-09-01": "Independence Day", "2044-10-01": "Teachers and Instructors Day", - "2044-10-03": "Teachers and Instructors Day (Observed)", + "2044-10-03": "Teachers and Instructors Day (observed)", "2044-10-31": "Eid al-Adha (estimated)", "2044-12-08": "Constitution Day", "2045-01-01": "New Year's Day", - "2045-01-02": "New Year's Day (Observed)", + "2045-01-02": "New Year's Day (observed)", "2045-03-08": "Women's Day", "2045-03-21": "Nowruz", "2045-05-09": "Day of Memory and Honor", "2045-08-14": "Eid al-Fitr (estimated)", "2045-09-01": "Independence Day", "2045-10-01": "Teachers and Instructors Day", - "2045-10-02": "Teachers and Instructors Day (Observed)", + "2045-10-02": "Teachers and Instructors Day (observed)", "2045-10-21": "Eid al-Adha (estimated)", - "2045-10-23": "Eid al-Adha (estimated) (Observed)", + "2045-10-23": "Eid al-Adha (observed, estimated)", "2045-12-08": "Constitution Day", "2046-01-01": "New Year's Day", "2046-03-08": "Women's Day", @@ -594,57 +594,57 @@ "2046-05-09": "Day of Memory and Honor", "2046-08-03": "Eid al-Fitr (estimated)", "2046-09-01": "Independence Day", - "2046-09-03": "Independence Day (Observed)", + "2046-09-03": "Independence Day (observed)", "2046-10-01": "Teachers and Instructors Day", "2046-10-10": "Eid al-Adha (estimated)", "2046-12-08": "Constitution Day", - "2046-12-10": "Constitution Day (Observed)", + "2046-12-10": "Constitution Day (observed)", "2047-01-01": "New Year's Day", "2047-03-08": "Women's Day", "2047-03-21": "Nowruz", "2047-05-09": "Day of Memory and Honor", "2047-07-24": "Eid al-Fitr (estimated)", "2047-09-01": "Independence Day", - "2047-09-02": "Independence Day (Observed)", + "2047-09-02": "Independence Day (observed)", "2047-09-30": "Eid al-Adha (estimated)", "2047-10-01": "Teachers and Instructors Day", "2047-12-08": "Constitution Day", - "2047-12-09": "Constitution Day (Observed)", + "2047-12-09": "Constitution Day (observed)", "2048-01-01": "New Year's Day", "2048-03-08": "Women's Day", - "2048-03-09": "Women's Day (Observed)", + "2048-03-09": "Women's Day (observed)", "2048-03-21": "Nowruz", - "2048-03-23": "Nowruz (Observed)", + "2048-03-23": "Nowruz (observed)", "2048-05-09": "Day of Memory and Honor", - "2048-05-11": "Day of Memory and Honor (Observed)", + "2048-05-11": "Day of Memory and Honor (observed)", "2048-07-12": "Eid al-Fitr (estimated)", - "2048-07-13": "Eid al-Fitr (estimated) (Observed)", + "2048-07-13": "Eid al-Fitr (observed, estimated)", "2048-09-01": "Independence Day", "2048-09-19": "Eid al-Adha (estimated)", - "2048-09-21": "Eid al-Adha (estimated) (Observed)", + "2048-09-21": "Eid al-Adha (observed, estimated)", "2048-10-01": "Teachers and Instructors Day", "2048-12-08": "Constitution Day", "2049-01-01": "New Year's Day", "2049-03-08": "Women's Day", "2049-03-21": "Nowruz", - "2049-03-22": "Nowruz (Observed)", + "2049-03-22": "Nowruz (observed)", "2049-05-09": "Day of Memory and Honor", - "2049-05-10": "Day of Memory and Honor (Observed)", + "2049-05-10": "Day of Memory and Honor (observed)", "2049-07-01": "Eid al-Fitr (estimated)", "2049-09-01": "Independence Day", "2049-09-08": "Eid al-Adha (estimated)", "2049-10-01": "Teachers and Instructors Day", "2049-12-08": "Constitution Day", "2050-01-01": "New Year's Day", - "2050-01-03": "New Year's Day (Observed)", + "2050-01-03": "New Year's Day (observed)", "2050-03-08": "Women's Day", "2050-03-21": "Nowruz", "2050-05-09": "Day of Memory and Honor", "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-28": "Eid al-Adha (estimated)", - "2050-08-29": "Eid al-Adha (estimated) (Observed)", + "2050-08-29": "Eid al-Adha (observed, estimated)", "2050-09-01": "Independence Day", "2050-10-01": "Teachers and Instructors Day", - "2050-10-03": "Teachers and Instructors Day (Observed)", + "2050-10-03": "Teachers and Instructors Day (observed)", "2050-12-08": "Constitution Day" } diff --git a/tests/common.py b/tests/common.py index c8809e793..bb320fa0c 100644 --- a/tests/common.py +++ b/tests/common.py @@ -340,6 +340,19 @@ def test_code(self): self.assertTrue(hasattr(self.holidays, "country")) self.assertFalse(hasattr(self.holidays, "market")) + def test_observed_estimated_label(self): + estimated_label = getattr(self.holidays, "estimated_label", None) + observed_label = getattr(self.holidays, "observed_label", None) + observed_estimated_label = getattr(self.holidays, "observed_estimated_label", None) + + if estimated_label and observed_label: + self.assertTrue( + observed_estimated_label, + "The 'observed_estimated_label' attribute must be set for entities containing " + "both 'observed_label' and 'estimated_label'.", + ) + self.assertIn(estimated_label.strip("%s ()"), observed_estimated_label) + class CommonFinancialTests(CommonTests): """Common test cases for financial entities.""" diff --git a/tests/countries/test_saudi_arabia.py b/tests/countries/test_saudi_arabia.py index 942aa2752..71d1f2eab 100644 --- a/tests/countries/test_saudi_arabia.py +++ b/tests/countries/test_saudi_arabia.py @@ -176,13 +176,13 @@ def test_l10n_default(self): ("2023-04-22", "(تقدير) عطلة عيد الفطر"), ("2023-04-23", "(تقدير) عطلة عيد الفطر"), ("2023-04-24", "(تقدير) عطلة عيد الفطر"), - ("2023-04-25", "(ملاحظة) (تقدير) عطلة عيد الفطر"), - ("2023-04-26", "(ملاحظة) (تقدير) عطلة عيد الفطر"), + ("2023-04-25", "(تقدير ملاحظة) عطلة عيد الفطر"), + ("2023-04-26", "(تقدير ملاحظة) عطلة عيد الفطر"), ("2023-06-27", "(تقدير) يوم عرفة"), ("2023-06-28", "(تقدير) عطلة عيد الأضحى"), ("2023-06-29", "(تقدير) عطلة عيد الأضحى"), ("2023-06-30", "(تقدير) عطلة عيد الأضحى"), - ("2023-07-02", "(ملاحظة) (تقدير) عطلة عيد الأضحى"), + ("2023-07-02", "(تقدير ملاحظة) عطلة عيد الأضحى"), ("2023-09-23", "اليوم الوطني"), ("2023-09-24", "(ملاحظة) اليوم الوطني"), ) @@ -195,13 +195,13 @@ def test_l10n_en_us(self): ("2023-04-22", "Eid al-Fitr Holiday (estimated)"), ("2023-04-23", "Eid al-Fitr Holiday (estimated)"), ("2023-04-24", "Eid al-Fitr Holiday (estimated)"), - ("2023-04-25", "Eid al-Fitr Holiday (estimated) (observed)"), - ("2023-04-26", "Eid al-Fitr Holiday (estimated) (observed)"), + ("2023-04-25", "Eid al-Fitr Holiday (observed, estimated)"), + ("2023-04-26", "Eid al-Fitr Holiday (observed, estimated)"), ("2023-06-27", "Arafat Day (estimated)"), ("2023-06-28", "Eid al-Adha Holiday (estimated)"), ("2023-06-29", "Eid al-Adha Holiday (estimated)"), ("2023-06-30", "Eid al-Adha Holiday (estimated)"), - ("2023-07-02", "Eid al-Adha Holiday (estimated) (observed)"), + ("2023-07-02", "Eid al-Adha Holiday (observed, estimated)"), ("2023-09-23", "National Day Holiday"), ("2023-09-24", "National Day Holiday (observed)"), ) diff --git a/tests/countries/test_uzbekistan.py b/tests/countries/test_uzbekistan.py index c7c03b4f7..8098ee20c 100644 --- a/tests/countries/test_uzbekistan.py +++ b/tests/countries/test_uzbekistan.py @@ -188,7 +188,7 @@ def test_l10n_en_us(self): ("2023-06-30", "Additional day off by Presidential decree"), ("2023-09-01", "Independence Day"), ("2023-10-01", "Teachers and Instructors Day"), - ("2023-10-02", "Teachers and Instructors Day (Observed)"), + ("2023-10-02", "Teachers and Instructors Day (observed)"), ("2023-12-08", "Constitution Day"), ) From ebd6b66a623ea076560600d9d7e146c8786a5fc9 Mon Sep 17 00:00:00 2001 From: shahonseven Date: Sat, 13 Jan 2024 02:45:40 +0800 Subject: [PATCH 21/23] Update Malaysia holidays (#1625) Co-authored-by: Arkadii Yakovets --- holidays/countries/malaysia.py | 11 +++++++++++ snapshots/countries/MY_COMMON.json | 23 ++++++++++------------- snapshots/countries/MY_JHR.json | 23 +++++++++++------------ snapshots/countries/MY_KDH.json | 26 +++++++++++++------------- snapshots/countries/MY_KTN.json | 25 ++++++++++++------------- snapshots/countries/MY_KUL.json | 25 +++++++++++-------------- snapshots/countries/MY_LBN.json | 25 +++++++++++-------------- snapshots/countries/MY_MLK.json | 25 +++++++++++-------------- snapshots/countries/MY_NSN.json | 25 +++++++++++-------------- snapshots/countries/MY_PHG.json | 25 +++++++++++-------------- snapshots/countries/MY_PJY.json | 25 +++++++++++-------------- snapshots/countries/MY_PLS.json | 29 +++++++++++++---------------- snapshots/countries/MY_PNG.json | 25 +++++++++++-------------- snapshots/countries/MY_PRK.json | 25 +++++++++++-------------- snapshots/countries/MY_SBH.json | 23 ++++++++++------------- snapshots/countries/MY_SGR.json | 25 +++++++++++-------------- snapshots/countries/MY_SWK.json | 21 +++++++++------------ snapshots/countries/MY_TRG.json | 30 ++++++++++++++---------------- tests/countries/test_malaysia.py | 19 +++++++++++++++++++ 19 files changed, 221 insertions(+), 234 deletions(-) diff --git a/holidays/countries/malaysia.py b/holidays/countries/malaysia.py index 2a40a5301..1edb325e3 100644 --- a/holidays/countries/malaysia.py +++ b/holidays/countries/malaysia.py @@ -423,6 +423,7 @@ class MalaysiaBuddhistHolidays(_CustomBuddhistHolidays): 2021: (MAY, 26), 2022: (MAY, 15), 2023: (MAY, 4), + 2024: (MAY, 22), } @@ -451,6 +452,7 @@ class MalaysiaChineseHolidays(_CustomChineseHolidays): 2021: (FEB, 12), 2022: (FEB, 1), 2023: (JAN, 22), + 2024: (FEB, 10), } @@ -479,6 +481,7 @@ class MalaysiaHinduHolidays(_CustomHinduHolidays): 2021: (NOV, 4), 2022: (OCT, 24), 2023: (NOV, 12), + 2024: (OCT, 31), } THAIPUSAM_DATES = { @@ -520,6 +523,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2021: (JUL, 20), 2022: (JUL, 10), 2023: (JUN, 29), + 2024: (JUN, 17), } EID_AL_FITR_DATES = { @@ -546,6 +550,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2021: (MAY, 13), 2022: (MAY, 2), 2023: (APR, 22), + 2024: (APR, 10), } HARI_HOL_JOHOR_DATES = { @@ -561,6 +566,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2020: (SEP, 24), 2021: (SEP, 13), 2022: (SEP, 3), + 2024: (AUG, 11), } HIJRI_NEW_YEAR_DATES = { @@ -586,6 +592,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2020: (AUG, 20), 2021: (AUG, 10), 2022: (JUL, 30), + 2024: (JUL, 7), } ISRA_AND_MIRAJ_DATES = { @@ -612,6 +619,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2021: (MAR, 11), 2022: (MAR, 1), 2023: (FEB, 18), + 2024: (FEB, 8), } MAWLID_DATES = { @@ -637,6 +645,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2020: (OCT, 29), 2021: (OCT, 19), 2022: (OCT, 10), + 2024: (SEP, 16), } NUZUL_AL_QURAN_DATES = { 2001: (DEC, 3), @@ -662,6 +671,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2021: (APR, 29), 2022: (APR, 19), 2023: (APR, 8), + 2024: (MAR, 28), } RAMADAN_BEGINNING_DATES = { @@ -688,6 +698,7 @@ class MalaysiaIslamicHolidays(_CustomIslamicHolidays): 2021: (APR, 13), 2022: (APR, 3), 2023: (MAR, 23), + 2024: (MAR, 12), } diff --git a/snapshots/countries/MY_COMMON.json b/snapshots/countries/MY_COMMON.json index b99796c84..c58fb1c1e 100644 --- a/snapshots/countries/MY_COMMON.json +++ b/snapshots/countries/MY_COMMON.json @@ -1084,22 +1084,19 @@ "2023-11-12": "Deepavali", "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-29": "Chinese New Year (estimated)", "2025-01-30": "Chinese New Year Holiday (estimated)", diff --git a/snapshots/countries/MY_JHR.json b/snapshots/countries/MY_JHR.json index 8f531481a..254b8ba67 100644 --- a/snapshots/countries/MY_JHR.json +++ b/snapshots/countries/MY_JHR.json @@ -1274,22 +1274,21 @@ "2023-11-12": "Deepavali", "2023-12-25": "Christmas Day", "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-03-11": "Beginning of Ramadan (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-03-12": "Beginning of Ramadan", "2024-03-23": "Birthday of the Sultan of Johor", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", - "2024-08-10": "Hari Hol of Sultan Iskandar of Johor (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", + "2024-08-11": "Hari Hol of Sultan Iskandar of Johor", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-29": "Chinese New Year (estimated)", "2025-01-30": "Chinese New Year Holiday (estimated)", diff --git a/snapshots/countries/MY_KDH.json b/snapshots/countries/MY_KDH.json index 5a42689d0..19bc83b9a 100644 --- a/snapshots/countries/MY_KDH.json +++ b/snapshots/countries/MY_KDH.json @@ -1342,22 +1342,22 @@ "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-12-25": "Christmas Day", - "2024-02-08": "Isra and Mi'raj (estimated)", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-03-11": "Beginning of Ramadan (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-08": "Isra and Mi'raj", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-03-12": "Beginning of Ramadan", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Birthday of The Sultan of Kedah; Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-16": "Birthday of The Sultan of Kedah", + "2024-06-17": "Hari Raya Haji", + "2024-06-18": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-27": "Isra and Mi'raj (estimated)", "2025-01-29": "Chinese New Year (estimated)", diff --git a/snapshots/countries/MY_KTN.json b/snapshots/countries/MY_KTN.json index 0abe5a441..301663000 100644 --- a/snapshots/countries/MY_KTN.json +++ b/snapshots/countries/MY_KTN.json @@ -1355,23 +1355,22 @@ "2023-11-11": "Birthday of the Sultan of Kelantan", "2023-11-12": "Birthday of the Sultan of Kelantan; Deepavali", "2023-12-25": "Christmas Day", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year (estimated) (in lieu)", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year (in lieu)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-06-18": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", "2024-09-01": "National Day (in lieu)", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-11-11": "Birthday of the Sultan of Kelantan", "2024-11-12": "Birthday of the Sultan of Kelantan", "2024-12-25": "Christmas Day", diff --git a/snapshots/countries/MY_KUL.json b/snapshots/countries/MY_KUL.json index 61c0fbf60..42d4f9075 100644 --- a/snapshots/countries/MY_KUL.json +++ b/snapshots/countries/MY_KUL.json @@ -1391,23 +1391,20 @@ "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", "2024-02-01": "Federal Territory Day", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-29": "Chinese New Year (estimated)", diff --git a/snapshots/countries/MY_LBN.json b/snapshots/countries/MY_LBN.json index 647789d33..610e95d0e 100644 --- a/snapshots/countries/MY_LBN.json +++ b/snapshots/countries/MY_LBN.json @@ -1446,25 +1446,22 @@ "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-02-01": "Federal Territory Day", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-05-30": "Pesta Kaamatan", "2024-05-31": "Pesta Kaamatan (Second day)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-29": "Chinese New Year (estimated)", diff --git a/snapshots/countries/MY_MLK.json b/snapshots/countries/MY_MLK.json index f60ed7e74..00350991a 100644 --- a/snapshots/countries/MY_MLK.json +++ b/snapshots/countries/MY_MLK.json @@ -1365,25 +1365,22 @@ "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-03-11": "Beginning of Ramadan (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-03-12": "Beginning of Ramadan", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-04-15": "Declaration of Malacca as a Historical City", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-24": "Birthday of the Governor of Malacca", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-29": "Chinese New Year (estimated)", diff --git a/snapshots/countries/MY_NSN.json b/snapshots/countries/MY_NSN.json index 3d043d3b8..b6d7f22dd 100644 --- a/snapshots/countries/MY_NSN.json +++ b/snapshots/countries/MY_NSN.json @@ -1361,23 +1361,20 @@ "2024-01-14": "Birthday of the Sultan of Negeri Sembilan", "2024-01-15": "Birthday of the Sultan of Negeri Sembilan (in lieu)", "2024-01-25": "Thaipusam", - "2024-02-08": "Isra and Mi'raj (estimated)", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-08": "Isra and Mi'raj", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-14": "Birthday of the Sultan of Negeri Sembilan", diff --git a/snapshots/countries/MY_PHG.json b/snapshots/countries/MY_PHG.json index 09b4d9ba1..e35d4a262 100644 --- a/snapshots/countries/MY_PHG.json +++ b/snapshots/countries/MY_PHG.json @@ -1352,24 +1352,21 @@ "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Hari Hol of Pahang; Vesak Day (estimated)", + "2024-05-22": "Hari Hol of Pahang; Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-07-30": "Birthday of the Sultan of Pahang", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-29": "Chinese New Year (estimated)", diff --git a/snapshots/countries/MY_PJY.json b/snapshots/countries/MY_PJY.json index 61c0fbf60..42d4f9075 100644 --- a/snapshots/countries/MY_PJY.json +++ b/snapshots/countries/MY_PJY.json @@ -1391,23 +1391,20 @@ "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", "2024-02-01": "Federal Territory Day", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-29": "Chinese New Year (estimated)", diff --git a/snapshots/countries/MY_PLS.json b/snapshots/countries/MY_PLS.json index 34913b475..99dc025ba 100644 --- a/snapshots/countries/MY_PLS.json +++ b/snapshots/countries/MY_PLS.json @@ -1366,26 +1366,23 @@ "2023-11-12": "Deepavali", "2023-11-13": "Deepavali (in lieu)", "2023-12-25": "Christmas Day", - "2024-02-08": "Isra and Mi'raj (estimated)", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-08": "Isra and Mi'raj", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated)", - "2024-06-18": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-06-18": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-07-17": "Birthday of The Raja of Perlis", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-27": "Isra and Mi'raj (estimated)", "2025-01-29": "Chinese New Year (estimated)", diff --git a/snapshots/countries/MY_PNG.json b/snapshots/countries/MY_PNG.json index a0952d1f0..93162601f 100644 --- a/snapshots/countries/MY_PNG.json +++ b/snapshots/countries/MY_PNG.json @@ -1427,25 +1427,22 @@ "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated); George Town Heritage Day", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year); George Town Heritage Day", "2024-07-08": "George Town Heritage Day (in lieu)", "2024-07-13": "Birthday of the Governor of Penang", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", "2025-01-29": "Chinese New Year (estimated)", diff --git a/snapshots/countries/MY_PRK.json b/snapshots/countries/MY_PRK.json index 693c35d10..5e00b5b45 100644 --- a/snapshots/countries/MY_PRK.json +++ b/snapshots/countries/MY_PRK.json @@ -1410,23 +1410,20 @@ "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-11-01": "Birthday of the Sultan of Perak", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", diff --git a/snapshots/countries/MY_SBH.json b/snapshots/countries/MY_SBH.json index 88d9e4bac..682b26583 100644 --- a/snapshots/countries/MY_SBH.json +++ b/snapshots/countries/MY_SBH.json @@ -1466,26 +1466,23 @@ "2023-12-24": "Christmas Eve", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", "2024-03-29": "Good Friday", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-05-30": "Pesta Kaamatan", "2024-05-31": "Pesta Kaamatan (Second day)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", "2024-10-05": "Birthday of the Governor of Sabah", - "2024-10-30": "Deepavali", + "2024-10-31": "Deepavali", "2024-12-24": "Christmas Eve", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", diff --git a/snapshots/countries/MY_SGR.json b/snapshots/countries/MY_SGR.json index b23e8b5b6..ac067dcd6 100644 --- a/snapshots/countries/MY_SGR.json +++ b/snapshots/countries/MY_SGR.json @@ -1420,23 +1420,20 @@ "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", "2024-01-25": "Thaipusam", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-11": "Birthday of The Sultan of Selangor", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", diff --git a/snapshots/countries/MY_SWK.json b/snapshots/countries/MY_SWK.json index 4cb711143..286523b32 100644 --- a/snapshots/countries/MY_SWK.json +++ b/snapshots/countries/MY_SWK.json @@ -1390,26 +1390,23 @@ "2023-10-14": "Birthday of the Governor of Sarawak", "2023-12-25": "Christmas Day", "2024-01-01": "New Year's Day", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year Holiday (estimated) (in lieu)", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year Holiday (in lieu)", "2024-03-29": "Good Friday", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-01": "Gawai Dayak", "2024-06-02": "Gawai Dayak (Second day)", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", "2024-06-04": "Gawai Dayak (Second day) (in lieu)", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-17": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-07-22": "Sarawak Day", "2024-08-31": "National Day", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-09-17": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated) (in lieu)", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", "2024-10-12": "Birthday of the Governor of Sarawak", "2024-12-25": "Christmas Day", "2025-01-01": "New Year's Day", diff --git a/snapshots/countries/MY_TRG.json b/snapshots/countries/MY_TRG.json index c244be84b..1e6c0ba0e 100644 --- a/snapshots/countries/MY_TRG.json +++ b/snapshots/countries/MY_TRG.json @@ -1471,28 +1471,26 @@ "2023-09-27": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", "2023-11-12": "Deepavali", "2023-12-25": "Christmas Day", - "2024-02-08": "Isra and Mi'raj (estimated)", - "2024-02-10": "Chinese New Year (estimated)", - "2024-02-11": "Chinese New Year Holiday (estimated)", - "2024-02-12": "Chinese New Year (estimated) (in lieu)", + "2024-02-08": "Isra and Mi'raj", + "2024-02-10": "Chinese New Year", + "2024-02-11": "Chinese New Year Holiday", + "2024-02-12": "Chinese New Year (in lieu)", "2024-03-04": "Anniversary of the Installation of the Sultan of Terengganu", - "2024-03-27": "Nuzul Al-Quran Day (estimated)", - "2024-04-10": "Hari Raya Puasa (estimated)", - "2024-04-11": "Second day of Hari Raya Puasa (estimated)", + "2024-03-28": "Nuzul Al-Quran Day", + "2024-04-10": "Hari Raya Puasa", + "2024-04-11": "Second day of Hari Raya Puasa", "2024-04-26": "Birthday of the Sultan of Terengganu", "2024-05-01": "Labour Day", - "2024-05-22": "Vesak Day (estimated)", + "2024-05-22": "Vesak Day", "2024-06-03": "Birthday of SPB Yang di-Pertuan Agong", - "2024-06-15": "Arafat Day (estimated)", - "2024-06-16": "Hari Raya Haji (estimated)", - "2024-06-17": "Hari Raya Haji (estimated)", - "2024-06-18": "Arafat Day (estimated) (in lieu)", - "2024-07-07": "Awal Muharram (Hijri New Year) (estimated)", + "2024-06-16": "Arafat Day", + "2024-06-17": "Hari Raya Haji", + "2024-06-18": "Hari Raya Haji", + "2024-07-07": "Awal Muharram (Hijri New Year)", "2024-08-31": "National Day", "2024-09-01": "National Day (in lieu)", - "2024-09-15": "Maulidur Rasul (Birthday of the Prophet Muhammad) (estimated)", - "2024-09-16": "Malaysia Day", - "2024-10-30": "Deepavali", + "2024-09-16": "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)", + "2024-10-31": "Deepavali", "2024-12-25": "Christmas Day", "2025-01-27": "Isra and Mi'raj (estimated)", "2025-01-29": "Chinese New Year (estimated)", diff --git a/tests/countries/test_malaysia.py b/tests/countries/test_malaysia.py index 9d2574054..cc9d16982 100644 --- a/tests/countries/test_malaysia.py +++ b/tests/countries/test_malaysia.py @@ -1308,3 +1308,22 @@ def test_PJY_holidays(self): state_holidays.observed = False self.assertNoNonObservedHoliday(state_holidays, dt) + + def test_2024(self): + self.assertHolidays( + Malaysia(years=2024), + ("2024-02-10", "Chinese New Year"), + ("2024-04-11", "Second day of Hari Raya Puasa"), + ("2024-10-31", "Deepavali"), + ("2024-05-01", "Labour Day"), + ("2024-05-22", "Vesak Day"), + ("2024-12-25", "Christmas Day"), + ("2024-07-07", "Awal Muharram (Hijri New Year)"), + ("2024-02-11", "Chinese New Year Holiday"), + ("2024-06-03", "Birthday of SPB Yang di-Pertuan Agong"), + ("2024-08-31", "National Day"), + ("2024-04-10", "Hari Raya Puasa"), + ("2024-06-17", "Hari Raya Haji"), + ("2024-09-16", "Malaysia Day; Maulidur Rasul (Birthday of the Prophet Muhammad)"), + ("2024-02-12", "Chinese New Year Holiday (in lieu)"), + ) From 591efcc04bb4b1648ba091a8052295a3c97dd072 Mon Sep 17 00:00:00 2001 From: ~Jhellico Date: Mon, 15 Jan 2024 20:13:44 +0200 Subject: [PATCH 22/23] Update Argentina holidays (#1641) --- holidays/countries/argentina.py | 7 +++++- holidays/locale/uk/LC_MESSAGES/AR.po | 14 ++++++------ snapshots/countries/AR_COMMON.json | 3 +++ tests/countries/test_argentina.py | 32 ++++++++++++++++++++++++---- 4 files changed, 44 insertions(+), 12 deletions(-) diff --git a/holidays/countries/argentina.py b/holidays/countries/argentina.py index e2a242acb..9e66aff5d 100644 --- a/holidays/countries/argentina.py +++ b/holidays/countries/argentina.py @@ -47,7 +47,7 @@ class Argentina(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, S http://servicios.lanacion.com.ar/feriados https://www.clarin.com/feriados/ - [Specific Calendar Year] - https://www.lanacion.com.ar/feriados/2024/ + https://www.argentina.gob.ar/interior/feriados-nacionales-2024 https://www.argentina.gob.ar/interior/feriados-nacionales-2023 https://www.argentina.gob.ar/interior/feriados-nacionales-2022 https://www.argentina.gob.ar/interior/feriados-nacionales-2021 @@ -339,4 +339,9 @@ class ArgentinaStaticHolidays: (JUN, 19, arg_bridge_public_holiday), (OCT, 13, arg_bridge_public_holiday), ), + 2024: ( + (APR, 1, arg_bridge_public_holiday), + (JUN, 21, arg_bridge_public_holiday), + (OCT, 11, arg_bridge_public_holiday), + ), } diff --git a/holidays/locale/uk/LC_MESSAGES/AR.po b/holidays/locale/uk/LC_MESSAGES/AR.po index 83591a5ce..06fd6b6ed 100644 --- a/holidays/locale/uk/LC_MESSAGES/AR.po +++ b/holidays/locale/uk/LC_MESSAGES/AR.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: Python Holidays 0.41\n" "POT-Creation-Date: 2023-03-02 00:39+0700\n" -"PO-Revision-Date: 2023-05-03 18:36-0700\n" -"Last-Translator: Arkadii Yakovets \n" +"PO-Revision-Date: 2024-01-15 18:59+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.3\n" +"X-Generator: Poedit 3.4\n" #. Bridge Public Holiday. msgid "Feriado con fines turísticos" @@ -66,7 +66,7 @@ msgstr "День ветеранів та загиблих на Мальвінс #. Good Friday. msgid "Viernes Santo" -msgstr "Страсна п'ятниця" +msgstr "Страсна пʼятниця" #. Labor Day. msgid "Día del Trabajo" @@ -87,7 +87,7 @@ msgstr "" #. Pass to the Immortality of General Don Manuel Belgrano. msgid "Paso a la Inmortalidad del General Don Manuel Belgrano" -msgstr "День пам’яті генерала Мануеля Бельграно" +msgstr "День памʼяті генерала Мануеля Бельграно" #. Independence Day. msgid "Día de la Independencia" @@ -103,11 +103,11 @@ msgstr "Різдво Христове" #. Pass to the Immortality of General Don Martin Miguel de Guemes. msgid "Paso a la Inmortalidad del General Don Martín Miguel de Güemes" -msgstr "День пам'яті генерала Мартіна Мігеля де Гуемеса" +msgstr "День памʼяті генерала Мартіна Мігеля де Гуемеса" #. Pass to the Immortality of General Don Jose de San Martin. msgid "Paso a la Inmortalidad del General Don José de San Martin" -msgstr "День пам'яті генерала Хосе де Сан-Мартіна" +msgstr "День памʼяті генерала Хосе де Сан-Мартіна" #. Respect for Cultural Diversity Day. msgid "Día del Respeto a la Diversidad Cultural" diff --git a/snapshots/countries/AR_COMMON.json b/snapshots/countries/AR_COMMON.json index cc10a7a10..e1981303a 100644 --- a/snapshots/countries/AR_COMMON.json +++ b/snapshots/countries/AR_COMMON.json @@ -931,13 +931,16 @@ "2024-02-13": "Carnival", "2024-03-24": "Memory's National Day for the Truth and Justice", "2024-03-29": "Good Friday", + "2024-04-01": "Bridge Public Holiday", "2024-04-02": "Veterans Day and the Fallen in the Malvinas War", "2024-05-01": "Labor Day", "2024-05-25": "May Revolution Day", "2024-06-17": "Pass to the Immortality of General Don Mart\u00edn Miguel de G\u00fcemes", "2024-06-20": "Pass to the Immortality of General Don Manuel Belgrano", + "2024-06-21": "Bridge Public Holiday", "2024-07-09": "Independence Day", "2024-08-17": "Pass to the Immortality of General Don Jos\u00e9 de San Martin", + "2024-10-11": "Bridge Public Holiday", "2024-10-12": "Respect for Cultural Diversity Day", "2024-11-18": "National Sovereignty Day (observed)", "2024-12-08": "Immaculate Conception", diff --git a/tests/countries/test_argentina.py b/tests/countries/test_argentina.py index 1c5ee614d..d8acbdd10 100644 --- a/tests/countries/test_argentina.py +++ b/tests/countries/test_argentina.py @@ -254,6 +254,30 @@ def test_2023(self): ("2023-12-25", "Navidad"), ) + def test_2024(self): + self.assertHolidays( + Argentina(years=2024), + ("2024-01-01", "Año Nuevo"), + ("2024-02-12", "Día de Carnaval"), + ("2024-02-13", "Día de Carnaval"), + ("2024-03-24", "Día Nacional de la Memoria por la Verdad y la Justicia"), + ("2024-03-29", "Viernes Santo"), + ("2024-04-01", "Feriado con fines turísticos"), + ("2024-04-02", "Día del Veterano y de los Caidos en la Guerra de Malvinas"), + ("2024-05-01", "Día del Trabajo"), + ("2024-05-25", "Día de la Revolución de Mayo"), + ("2024-06-17", "Paso a la Inmortalidad del General Don Martín Miguel de Güemes"), + ("2024-06-20", "Paso a la Inmortalidad del General Don Manuel Belgrano"), + ("2024-06-21", "Feriado con fines turísticos"), + ("2024-07-09", "Día de la Independencia"), + ("2024-08-17", "Paso a la Inmortalidad del General Don José de San Martin"), + ("2024-10-11", "Feriado con fines turísticos"), + ("2024-10-12", "Día del Respeto a la Diversidad Cultural"), + ("2024-11-18", "Día de la Soberanía Nacional (observado)"), + ("2024-12-08", "Inmaculada Concepción de María"), + ("2024-12-25", "Navidad"), + ) + def test_l10n_default(self): self.assertLocalizedHolidays( ("2022-01-01", "Año Nuevo"), @@ -314,14 +338,14 @@ def test_l10n_uk(self): ("2022-03-01", "Карнавал"), ("2022-03-24", "День памʼяті заради правди та правосуддя"), ("2022-04-02", "День ветеранів та загиблих на Мальвінській війні"), - ("2022-04-15", "Страсна п'ятниця"), + ("2022-04-15", "Страсна пʼятниця"), ("2022-05-01", "День праці"), ("2022-05-18", "День національного перепису 2022"), ("2022-05-25", "День Травневої революції"), - ("2022-06-17", "День пам'яті генерала Мартіна Мігеля де Гуемеса"), - ("2022-06-20", "День пам’яті генерала Мануеля Бельграно"), + ("2022-06-17", "День памʼяті генерала Мартіна Мігеля де Гуемеса"), + ("2022-06-20", "День памʼяті генерала Мануеля Бельграно"), ("2022-07-09", "День незалежності"), - ("2022-08-15", "День пам'яті генерала Хосе де Сан-Мартіна (вихідний)"), + ("2022-08-15", "День памʼяті генерала Хосе де Сан-Мартіна (вихідний)"), ("2022-10-07", "Додатковий вихідний"), ("2022-10-10", "День поваги до культурного різноманіття (вихідний)"), ("2022-11-20", "День національного суверенітету"), From 5cdeb5b165555b6ebb410661d245c02a880af63f Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Mon, 15 Jan 2024 10:20:25 -0800 Subject: [PATCH 23/23] Finalize v0.41 --- CHANGES | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/CHANGES b/CHANGES index 4c446c306..fd59f2dcb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,29 @@ +Version 0.41 +============ + +Released January 15, 2024 + +- Introduce observed_estimated_label (#1633 by @arkid15r) +- Refactor Thai calendar (#1628 by @KJhellico) +- Update Portugal holidays: add uk localization (#1616 by @KJhellico) +- Fix dev env setup issues (#1627 by @peter-ni-noob) +- Update Argentina holidays (#1641 by @KJhellico) +- Update China holidays: add observed and substituted holidays in 2001-2024 (#1613 by @KJhellico) +- Update Cyprus holidays (#1632 by @KJhellico) +- Update Malaysia holidays (#1625 by @shahonseven, @arkid15r) +- Update Paraguay holidays (#1634 by @KJhellico) +- Update Thailand holidays (#1626 by @PPsyrius) +- Update US holidays: add CO Cesar Chavez Day (#1629 by @nwithan8) +- Update Uzbekistan holidays, add l10n support (#1622 by @KJhellico) +- Update common tests (#1637 by @arkid15r) +- Update estimated label uk l10n (#1635 by @arkid15r) +- Document the release process (#1611 by @arkid15r) +- Implement en_US localization for all localized countries (#1614 by @KJhellico) +- Move RELEASE.rst to upper level (#1623 by @arkid15r) +- Refresh snapshots, reformat th/cn.po (#1631 by @arkid15r) +- Simplify estimated label text (#1615 by @KJhellico) +- Unify observed labels format (#1636 by @arkid15r) + Version 0.40 ============